X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/ad7a38341c19e71e3595c17368ac18f08b71482d..a8abce5c5e2dce2ba6dbccd5d3829da104b80f9c:/print-vtp.c diff --git a/print-vtp.c b/print-vtp.c index cbc5868e..2718d2ac 100644 --- a/print-vtp.c +++ b/print-vtp.c @@ -12,35 +12,30 @@ * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE. * - * VLAN TRUNKING PROTOCOL (VTP) - * * Reference documentation: - * http://www.cisco.com/en/US/tech/tk389/tk689/technologies_tech_note09186a0080094c52.shtml - * http://www.cisco.com/warp/public/473/21.html - * http://www.cisco.com/univercd/cc/td/doc/product/lan/trsrb/frames.htm + * http://www.cisco.com/c/en/us/support/docs/lan-switching/vtp/10558-21.html + * http://docstore.mik.ua/univercd/cc/td/doc/product/lan/trsrb/frames.htm * * Original code ode by Carles Kishimoto */ +/* \summary: Cisco VLAN Trunking Protocol (VTP) printer */ + #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif -#include - -#include -#include +#include "netdissect-stdinc.h" -#include "interface.h" +#include "netdissect.h" #include "addrtoname.h" #include "extract.h" -#include "nlpid.h" #define VTP_HEADER_LEN 36 #define VTP_DOMAIN_NAME_LEN 32 #define VTP_MD5_DIGEST_LEN 16 #define VTP_UPDATE_TIMESTAMP_LEN 12 -#define VTP_VLAN_INFO_OFFSET 12 +#define VTP_VLAN_INFO_FIXED_PART_LEN 12 /* length of VLAN info before VLAN name */ #define VTP_SUMMARY_ADV 0x01 #define VTP_SUBSET_ADV 0x02 @@ -48,13 +43,13 @@ #define VTP_JOIN_MESSAGE 0x04 struct vtp_vlan_ { - u_int8_t len; - u_int8_t status; - u_int8_t type; - u_int8_t name_len; - u_int16_t vlanid; - u_int16_t mtu; - u_int32_t index; + nd_uint8_t len; + nd_uint8_t status; + nd_uint8_t type; + nd_uint8_t name_len; + nd_uint16_t vlanid; + nd_uint16_t mtu; + nd_uint32_t index; }; static const struct tok vtp_message_type_values[] = { @@ -121,37 +116,44 @@ static const struct tok vtp_stp_type_values[] = { }; void -vtp_print (const u_char *pptr, u_int length) +vtp_print(netdissect_options *ndo, + const u_char *pptr, u_int length) { - int type, len, tlv_len, tlv_value; + u_int type, len, name_len, tlv_len, tlv_value, mgmtd_len; const u_char *tptr; const struct vtp_vlan_ *vtp_vlan; + ndo->ndo_protocol = "vtp"; if (length < VTP_HEADER_LEN) goto trunc; tptr = pptr; - if (!TTEST2(*tptr, VTP_HEADER_LEN)) - goto trunc; + ND_TCHECK_LEN(tptr, VTP_HEADER_LEN); - type = *(tptr+1); - printf("VTPv%u, Message %s (0x%02x), length %u", - *tptr, + type = EXTRACT_U_1(tptr + 1); + ND_PRINT("VTPv%u, Message %s (0x%02x), length %u", + EXTRACT_U_1(tptr), tok2str(vtp_message_type_values,"Unknown message type", type), - *(tptr+1), + type, length); /* In non-verbose mode, just print version and message type */ - if (vflag < 1) { + if (ndo->ndo_vflag < 1) { return; } /* verbose mode print all fields */ - printf("\n\tDomain name: %s, %s: %u", - (tptr+4), - tok2str(vtp_header_values,"Unknown",*(tptr+1)), - *(tptr+2)); + ND_PRINT("\n\tDomain name: "); + mgmtd_len = EXTRACT_U_1(tptr + 3); + if (mgmtd_len < 1 || mgmtd_len > 32) { + ND_PRINT(" [invalid MgmtD Len %u]", mgmtd_len); + return; + } + nd_printzp(ndo, tptr + 4, mgmtd_len, NULL); + ND_PRINT(", %s: %u", + tok2str(vtp_header_values, "Unknown", type), + EXTRACT_U_1(tptr + 2)); tptr += VTP_HEADER_LEN; @@ -164,9 +166,9 @@ vtp_print (const u_char *pptr, u_int length) * * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Version | Code | Followers | MmgtD Len | + * | Version | Code | Followers | MgmtD Len | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Management Domain Name | + * | Management Domain Name (zero-padded to 32 bytes) | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | Configuration revision number | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ @@ -179,20 +181,23 @@ vtp_print (const u_char *pptr, u_int length) * */ - printf("\n\t Config Rev %x, Updater %s", - EXTRACT_32BITS(tptr), - ipaddr_string(tptr+4)); + ND_TCHECK_8(tptr); + ND_PRINT("\n\t Config Rev %x, Updater %s", + EXTRACT_BE_U_4(tptr), + ipaddr_string(ndo, tptr+4)); tptr += 8; - printf(", Timestamp 0x%08x 0x%08x 0x%08x", - EXTRACT_32BITS(tptr), - EXTRACT_32BITS(tptr + 4), - EXTRACT_32BITS(tptr + 8)); + ND_TCHECK_LEN(tptr, VTP_UPDATE_TIMESTAMP_LEN); + ND_PRINT(", Timestamp 0x%08x 0x%08x 0x%08x", + EXTRACT_BE_U_4(tptr), + EXTRACT_BE_U_4(tptr + 4), + EXTRACT_BE_U_4(tptr + 8)); tptr += VTP_UPDATE_TIMESTAMP_LEN; - printf(", MD5 digest: %08x%08x%08x%08x", - EXTRACT_32BITS(tptr), - EXTRACT_32BITS(tptr + 4), - EXTRACT_32BITS(tptr + 8), - EXTRACT_32BITS(tptr + 12)); + ND_TCHECK_LEN(tptr, VTP_MD5_DIGEST_LEN); + ND_PRINT(", MD5 digest: %08x%08x%08x%08x", + EXTRACT_BE_U_4(tptr), + EXTRACT_BE_U_4(tptr + 4), + EXTRACT_BE_U_4(tptr + 8), + EXTRACT_BE_U_4(tptr + 12)); tptr += VTP_MD5_DIGEST_LEN; break; @@ -203,9 +208,9 @@ vtp_print (const u_char *pptr, u_int length) * * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Version | Code | Seq number | MmgtD Len | + * | Version | Code | Seq number | MgmtD Len | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Management Domain Name | + * | Management Domain Name (zero-padded to 32 bytes) | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | Configuration revision number | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ @@ -218,7 +223,8 @@ vtp_print (const u_char *pptr, u_int length) * */ - printf(", Config Rev %x", EXTRACT_32BITS(tptr)); + ND_TCHECK_4(tptr); + ND_PRINT(", Config Rev %x", EXTRACT_BE_U_4(tptr)); /* * VLAN INFORMATION @@ -238,97 +244,117 @@ vtp_print (const u_char *pptr, u_int length) tptr += 4; while (tptr < (pptr+length)) { - len = *tptr; + ND_TCHECK_1(tptr); + len = EXTRACT_U_1(tptr); if (len == 0) break; - if (!TTEST2(*tptr, len)) + ND_TCHECK_LEN(tptr, len); + + vtp_vlan = (const struct vtp_vlan_*)tptr; + if (len < VTP_VLAN_INFO_FIXED_PART_LEN) goto trunc; + ND_TCHECK_SIZE(vtp_vlan); + ND_PRINT("\n\tVLAN info status %s, type %s, VLAN-id %u, MTU %u, SAID 0x%08x, Name ", + tok2str(vtp_vlan_status,"Unknown",EXTRACT_U_1(vtp_vlan->status)), + tok2str(vtp_vlan_type_values,"Unknown",EXTRACT_U_1(vtp_vlan->type)), + EXTRACT_BE_U_2(vtp_vlan->vlanid), + EXTRACT_BE_U_2(vtp_vlan->mtu), + EXTRACT_BE_U_4(vtp_vlan->index)); + len -= VTP_VLAN_INFO_FIXED_PART_LEN; + tptr += VTP_VLAN_INFO_FIXED_PART_LEN; + name_len = EXTRACT_U_1(vtp_vlan->name_len); + if (len < 4*((name_len + 3)/4)) + goto trunc; + ND_TCHECK_LEN(tptr, name_len); + nd_printzp(ndo, tptr, name_len, NULL); - vtp_vlan = (struct vtp_vlan_*)tptr; - printf("\n\tVLAN info status %s, type %s, VLAN-id %u, MTU %u, SAID 0x%08x, Name %s", - tok2str(vtp_vlan_status,"Unknown",vtp_vlan->status), - tok2str(vtp_vlan_type_values,"Unknown",vtp_vlan->type), - EXTRACT_16BITS(&vtp_vlan->vlanid), - EXTRACT_16BITS(&vtp_vlan->mtu), - EXTRACT_32BITS(&vtp_vlan->index), - (tptr + VTP_VLAN_INFO_OFFSET)); - - /* - * Vlan names are aligned to 32-bit boundaries. - */ - len -= VTP_VLAN_INFO_OFFSET + 4*((vtp_vlan->name_len + 3)/4); - tptr += VTP_VLAN_INFO_OFFSET + 4*((vtp_vlan->name_len + 3)/4); + /* + * Vlan names are aligned to 32-bit boundaries. + */ + len -= 4*((name_len + 3)/4); + tptr += 4*((name_len + 3)/4); /* TLV information follows */ while (len > 0) { /* - * Cisco specs says 2 bytes for type + 2 bytes for length, take only 1 - * See: http://www.cisco.com/univercd/cc/td/doc/product/lan/trsrb/frames.htm + * Cisco specs say 2 bytes for type + 2 bytes for length; + * see http://docstore.mik.ua/univercd/cc/td/doc/product/lan/trsrb/frames.htm + * However, actual packets on the wire appear to use 1 + * byte for the type and 1 byte for the length, so that's + * what we do. */ - type = *tptr; - tlv_len = *(tptr+1); + if (len < 2) + goto trunc; + ND_TCHECK_2(tptr); + type = EXTRACT_U_1(tptr); + tlv_len = EXTRACT_U_1(tptr + 1); - printf("\n\t\t%s (0x%04x) TLV", + ND_PRINT("\n\t\t%s (0x%04x) TLV", tok2str(vtp_vlan_tlv_values, "Unknown", type), type); - /* - * infinite loop check - */ - if (type == 0 || tlv_len == 0) { + if (len < tlv_len * 2 + 2) { + ND_PRINT(" (TLV goes past the end of the packet)"); return; } + ND_TCHECK_LEN(tptr, tlv_len * 2 + 2); - if (!TTEST2(*tptr, tlv_len*2 +2)) - goto trunc; - - tlv_value = EXTRACT_16BITS(tptr+2); - - switch (type) { - case VTP_VLAN_STE_HOP_COUNT: - printf(", %u", tlv_value); - break; - - case VTP_VLAN_PRUNING: - printf(", %s (%u)", - tlv_value == 1 ? "Enabled" : "Disabled", - tlv_value); - break; - - case VTP_VLAN_STP_TYPE: - printf(", %s (%u)", - tok2str(vtp_stp_type_values, "Unknown", tlv_value), - tlv_value); - break; - - case VTP_VLAN_BRIDGE_TYPE: - printf(", %s (%u)", - tlv_value == 1 ? "SRB" : "SRT", - tlv_value); - break; - - case VTP_VLAN_BACKUP_CRF_MODE: - printf(", %s (%u)", - tlv_value == 1 ? "Backup" : "Not backup", - tlv_value); - break; - - /* - * FIXME those are the defined TLVs that lack a decoder - * you are welcome to contribute code ;-) - */ - - case VTP_VLAN_SOURCE_ROUTING_RING_NUMBER: - case VTP_VLAN_SOURCE_ROUTING_BRIDGE_NUMBER: - case VTP_VLAN_PARENT_VLAN: - case VTP_VLAN_TRANS_BRIDGED_VLAN: - case VTP_VLAN_ARP_HOP_COUNT: - default: - print_unknown_data(gndo,tptr, "\n\t\t ", 2 + tlv_len*2); - break; + /* + * We assume the value is a 2-byte integer; the length is + * in units of 16-bit words. + */ + if (tlv_len != 1) { + ND_PRINT(" (invalid TLV length %u != 1)", tlv_len); + return; + } else { + tlv_value = EXTRACT_BE_U_2(tptr + 2); + + switch (type) { + case VTP_VLAN_STE_HOP_COUNT: + ND_PRINT(", %u", tlv_value); + break; + + case VTP_VLAN_PRUNING: + ND_PRINT(", %s (%u)", + tlv_value == 1 ? "Enabled" : "Disabled", + tlv_value); + break; + + case VTP_VLAN_STP_TYPE: + ND_PRINT(", %s (%u)", + tok2str(vtp_stp_type_values, "Unknown", tlv_value), + tlv_value); + break; + + case VTP_VLAN_BRIDGE_TYPE: + ND_PRINT(", %s (%u)", + tlv_value == 1 ? "SRB" : "SRT", + tlv_value); + break; + + case VTP_VLAN_BACKUP_CRF_MODE: + ND_PRINT(", %s (%u)", + tlv_value == 1 ? "Backup" : "Not backup", + tlv_value); + break; + + /* + * FIXME those are the defined TLVs that lack a decoder + * you are welcome to contribute code ;-) + */ + + case VTP_VLAN_SOURCE_ROUTING_RING_NUMBER: + case VTP_VLAN_SOURCE_ROUTING_BRIDGE_NUMBER: + case VTP_VLAN_PARENT_VLAN: + case VTP_VLAN_TRANS_BRIDGED_VLAN: + case VTP_VLAN_ARP_HOP_COUNT: + default: + print_unknown_data(ndo, tptr, "\n\t\t ", 2 + tlv_len*2); + break; + } } len -= 2 + tlv_len*2; tptr += 2 + tlv_len*2; @@ -343,16 +369,17 @@ vtp_print (const u_char *pptr, u_int length) * * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Version | Code | Reserved | MmgtD Len | + * | Version | Code | Reserved | MgmtD Len | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - * | Management Domain Name | + * | Management Domain Name (zero-padded to 32 bytes) | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | Start value | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * */ - printf("\n\tStart value: %u", EXTRACT_32BITS(tptr)); + ND_TCHECK_4(tptr); + ND_PRINT("\n\tStart value: %u", EXTRACT_BE_U_4(tptr)); break; case VTP_JOIN_MESSAGE: @@ -367,12 +394,5 @@ vtp_print (const u_char *pptr, u_int length) return; trunc: - printf("[|vtp]"); + nd_print_trunc(ndo); } - -/* - * Local Variables: - * c-style: whitesmith - * c-basic-offset: 4 - * End: - */