mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-27 20:14:12 +08:00
VTP: Add bounds checks
This commit is contained in:
parent
ba983e34ca
commit
4a15e7e839
@ -176,15 +176,18 @@ vtp_print (netdissect_options *ndo,
|
||||
*
|
||||
*/
|
||||
|
||||
ND_TCHECK2(*tptr, 8);
|
||||
ND_PRINT((ndo, "\n\t Config Rev %x, Updater %s",
|
||||
EXTRACT_32BITS(tptr),
|
||||
ipaddr_string(ndo, tptr+4)));
|
||||
tptr += 8;
|
||||
ND_TCHECK2(*tptr, VTP_UPDATE_TIMESTAMP_LEN);
|
||||
ND_PRINT((ndo, ", Timestamp 0x%08x 0x%08x 0x%08x",
|
||||
EXTRACT_32BITS(tptr),
|
||||
EXTRACT_32BITS(tptr + 4),
|
||||
EXTRACT_32BITS(tptr + 8)));
|
||||
tptr += VTP_UPDATE_TIMESTAMP_LEN;
|
||||
ND_TCHECK2(*tptr, VTP_MD5_DIGEST_LEN);
|
||||
ND_PRINT((ndo, ", MD5 digest: %08x%08x%08x%08x",
|
||||
EXTRACT_32BITS(tptr),
|
||||
EXTRACT_32BITS(tptr + 4),
|
||||
@ -242,6 +245,7 @@ vtp_print (netdissect_options *ndo,
|
||||
ND_TCHECK2(*tptr, len);
|
||||
|
||||
vtp_vlan = (const struct vtp_vlan_*)tptr;
|
||||
ND_TCHECK(*vtp_vlan);
|
||||
ND_PRINT((ndo, "\n\tVLAN info status %s, type %s, VLAN-id %u, MTU %u, SAID 0x%08x, Name ",
|
||||
tok2str(vtp_vlan_status,"Unknown",vtp_vlan->status),
|
||||
tok2str(vtp_vlan_type_values,"Unknown",vtp_vlan->type),
|
||||
@ -347,6 +351,7 @@ vtp_print (netdissect_options *ndo,
|
||||
*
|
||||
*/
|
||||
|
||||
ND_TCHECK2(*tptr, 4);
|
||||
ND_PRINT((ndo, "\n\tStart value: %u", EXTRACT_32BITS(tptr)));
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user