Ethereal-dev: [Ethereal-dev] IS-IS IP Reach subTLV support
Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.
From: Hannes Gredler <hannes@xxxxxxxxxxx>
Date: Sun, 30 Mar 2003 03:06:54 +0200
hi, pls find attached a patch for - TLV 135 cleanup and support for subTLVs - a common IP Reach subTLV dissector which dissects subTLV 1 & 2 [32 & 64 Bit Admin Tags as per draft-ietf-isis-admin-tags-01.txt] /hannes
Index: packet-isis-lsp.c =================================================================== RCS file: /cvsroot/ethereal/packet-isis-lsp.c,v retrieving revision 1.37 diff -u -r1.37 packet-isis-lsp.c --- packet-isis-lsp.c 27 Mar 2003 19:42:31 -0000 1.37 +++ packet-isis-lsp.c 30 Mar 2003 00:59:15 -0000 @@ -74,6 +74,7 @@ static gint ett_isis_lsp_clv_ipv4_int_addr = -1; static gint ett_isis_lsp_clv_ipv6_int_addr = -1; /* CLV 232 */ static gint ett_isis_lsp_clv_ip_reachability = -1; +static gint ett_isis_lsp_clv_ip_reach_subclv = -1; static gint ett_isis_lsp_clv_ext_ip_reachability = -1; /* CLV 135 */ static gint ett_isis_lsp_part_of_clv_ext_ip_reachability = -1; static gint ett_isis_lsp_clv_ipv6_reachability = -1; /* CLV 236 */ @@ -140,8 +141,9 @@ static void dissect_lsp_ext_ip_reachability_clv(tvbuff_t *tvb, proto_tree *tree, int offset, int id_length, int length); static void dissect_lsp_ip_reachability_clv(tvbuff_t *tvb, - proto_tree *tree, int offset, int id_length, int length); - + proto_tree *tree, int offset, int id_length, int length); +static void dissect_ipreach_subclv(tvbuff_t *tvb, + proto_tree *tree, int offset, int clv_code, int clv_len); static const isis_clv_handle_t clv_l1_lsp_opts[] = { @@ -538,6 +540,55 @@ } /* + * Name: dissect_ipreach_subclv () + * + * Description: parses IP reach subTLVs + * Called by various IP Reachability dissectors. + * + * Input: + * tvbuff_t * : tvbuffer for packet data + * proto_tree * : protocol display tree to fill out. + * int : offset into packet data where we are (beginning of the sub_clv value). + * + * Output: + * void + */ +static void +dissect_ipreach_subclv(tvbuff_t *tvb, proto_tree *tree, int offset, int clv_code, int clv_len) +{ + + switch (clv_code) { + case 1: + while (clv_len >= 4) { + proto_tree_add_text(tree, tvb, offset, clv_len, + "32-Bit Administrative tag: 0x%08x (=%u)", + tvb_get_ntohl(tvb, offset), + tvb_get_ntohl(tvb, offset)); + offset+=4; + clv_len-=4; + } + break; + case 2: + while (clv_len >= 8) { + proto_tree_add_text(tree, tvb, offset, clv_len, + "64-Bit Administrative tag: 0x%08x%08x", + tvb_get_ntohl(tvb, offset), + tvb_get_ntohl(tvb, offset+4)); + offset+=8; + clv_len-=8; + } + break; + + default : + proto_tree_add_text (tree, tvb, offset, clv_len+2, + "Unknown sub-TLV: code %u, length %u", + clv_code, clv_len ); + break; + } +} + + +/* * Name: dissect_lsp_ext_ip_reachability_clv() * * Description: Decode an Extended IP Reachability CLV - code 135. @@ -563,10 +614,13 @@ { proto_item *pi = NULL; proto_tree *subtree = NULL; + proto_tree *subtree2 = NULL; guint8 ctrl_info; guint8 bit_length, byte_length; guint8 prefix [4]; - guint8 len; + guint8 len,i; + guint8 subclvs_len; + guint8 clv_code, clv_len; if (!tree) return; @@ -576,24 +630,60 @@ bit_length = ctrl_info & 0x3f; byte_length = (bit_length + 7) / 8; tvb_memcpy (tvb, prefix, offset+5, byte_length); - pi = proto_tree_add_text (tree, tvb, offset, -1, - "IPv4 prefix: %s/%d", - ip_to_str (prefix), - bit_length ); + subclvs_len=0; + if ((ctrl_info & 0x40) != 0) + subclvs_len = 1+tvb_get_guint8(tvb, offset+5+byte_length); + + pi = proto_tree_add_text (tree, tvb, offset, 5+byte_length+subclvs_len, + "IPv4 prefix: %s/%d, Metric: %d, Distribution: %s, %ssub-TLVs present", + ip_to_str (prefix), + bit_length, + tvb_get_ntohl(tvb, offset), + ((ctrl_info & 0x80) == 0) ? "up" : "down", + ((ctrl_info & 0x40) == 0) ? "no " : "" ); + + /* open up a new tree per prefix */ subtree = proto_item_add_subtree (pi, ett_isis_lsp_part_of_clv_ext_ip_reachability); - proto_tree_add_text (subtree, tvb, offset, 4, - "Metric: %d, Distribution: %s", tvb_get_ntohl(tvb, offset), ((ctrl_info & 0x80) == 0) ? "up" : "down" ); + proto_tree_add_text (subtree, tvb, offset+5, byte_length, "IPv4 prefix: %s/%d", + ip_to_str (prefix), + bit_length); + + proto_tree_add_text (subtree, tvb, offset, 4, "Metric: %d", + tvb_get_ntohl(tvb, offset)); - proto_tree_add_text (subtree, tvb, offset+4, 1, - "%s sub-TLVs present", - ((ctrl_info & 0x40) == 0) ? "no" : "" ); + proto_tree_add_text (subtree, tvb, offset+4, 1, "Distribution: %s", + ((ctrl_info & 0x80) == 0) ? "up" : "down"); len = 5 + byte_length; - if ((ctrl_info & 0x40) != 0) - len += 1 + tvb_get_guint8(tvb, offset+len) ; - proto_item_set_len (pi, len); + if ((ctrl_info & 0x40) != 0) { + subclvs_len = tvb_get_guint8(tvb, offset+len); + pi = proto_tree_add_text (subtree, tvb, offset+len, 1, "sub-TLVs present, total length: %u bytes", + subclvs_len); + proto_item_set_len (pi, subclvs_len); + /* open up a new tree for the subTLVs */ + subtree2 = proto_item_add_subtree (pi, ett_isis_lsp_clv_ip_reach_subclv); + + i =0; + while (i < subclvs_len) { + clv_code = tvb_get_guint8(tvb, offset+len+1); /* skip the total subtlv len indicator */ + clv_len = tvb_get_guint8(tvb, offset+len+2); + + /* + * we pass on now the raw data to the ipreach_subtlv dissector + * therefore we need to skip 3 bytes + * (total subtlv len, subtlv type, subtlv len) + */ + dissect_ipreach_subclv(tvb, subtree2, offset+len+3, clv_code, clv_len); + i += clv_len + 2; + } + len += 1 + subclvs_len; + } else { + proto_tree_add_text (subtree, tvb, offset+4, 1, "no sub-TLVs present"); + proto_item_set_len (pi, len); + } + offset += len; length -= len; } @@ -1712,6 +1802,7 @@ &ett_isis_lsp_clv_ipv6_int_addr, /* CLV 232 */ &ett_isis_lsp_clv_te_router_id, &ett_isis_lsp_clv_ip_reachability, + &ett_isis_lsp_clv_ip_reach_subclv, &ett_isis_lsp_clv_ext_ip_reachability, /* CLV 135 */ &ett_isis_lsp_part_of_clv_ext_ip_reachability, &ett_isis_lsp_clv_ipv6_reachability, /* CLV 236 */
- Follow-Ups:
- Re: [Ethereal-dev] IS-IS IP Reach subTLV support (2)
- From: Hannes Gredler
- Re: [Ethereal-dev] IS-IS IP Reach subTLV support (2)
- Prev by Date: Re: [Ethereal-dev] Searching on strings ...
- Next by Date: [Ethereal-dev] [patch] AFP bugfix and a new command decoded.
- Previous by thread: Re: [Ethereal-dev] Searching on strings ...
- Next by thread: Re: [Ethereal-dev] IS-IS IP Reach subTLV support (2)
- Index(es):