X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/c1c3c77463d592cc576eaa491e604752044ca55a..0f328b4aa16b0b47f05a85c440ce1d07719e3cac:/print-igmp.c diff --git a/print-igmp.c b/print-igmp.c index dcbe1050..082919e1 100644 --- a/print-igmp.c +++ b/print-igmp.c @@ -19,15 +19,25 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* \summary: Internet Group Management Protocol (IGMP) printer */ + +/* + * specification: + * + * RFC 2236 for IGMPv2 + * RFC 3376 for IGMPv3 + * draft-asaeda-mboned-mtrace-v2 for the mtrace message + */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif -#include +#include #include "netdissect.h" #include "addrtoname.h" -#include "extract.h" /* must come after interface.h */ +#include "extract.h" #ifndef IN_CLASSD #define IN_CLASSD(i) (((int32_t)(i) & 0xf0000000) == 0xe0000000) @@ -41,15 +51,13 @@ static const char tstr[] = "[|igmp]"; * The packet format for a traceroute request. */ struct tr_query { - uint32_t tr_src; /* traceroute source */ - uint32_t tr_dst; /* traceroute destination */ - uint32_t tr_raddr; /* traceroute response address */ - uint32_t tr_rttlqid; /* response ttl and qid */ + nd_uint32_t tr_src; /* traceroute source */ + nd_uint32_t tr_dst; /* traceroute destination */ + nd_uint32_t tr_raddr; /* traceroute response address */ + nd_uint8_t tr_rttl; /* response ttl */ + nd_uint24_t tr_qid; /* qid */ }; -#define TR_GETTTL(x) (int)(((x) >> 24) & 0xff) -#define TR_GETQID(x) ((x) & 0x00ffffff) - /* * Traceroute response format. A traceroute response has a tr_query at the * beginning, followed by one tr_resp for each hop taken. @@ -112,11 +120,11 @@ print_mtrace(netdissect_options *ndo, return; } ND_PRINT((ndo, "mtrace %u: %s to %s reply-to %s", - TR_GETQID(EXTRACT_32BITS(&tr->tr_rttlqid)), - ipaddr_string(ndo, &tr->tr_src), ipaddr_string(ndo, &tr->tr_dst), - ipaddr_string(ndo, &tr->tr_raddr))); - if (IN_CLASSD(EXTRACT_32BITS(&tr->tr_raddr))) - ND_PRINT((ndo, " with-ttl %d", TR_GETTTL(EXTRACT_32BITS(&tr->tr_rttlqid)))); + EXTRACT_BE_U_3(tr->tr_qid), + ipaddr_string(ndo, tr->tr_src), ipaddr_string(ndo, tr->tr_dst), + ipaddr_string(ndo, tr->tr_raddr))); + if (IN_CLASSD(EXTRACT_BE_U_4(tr->tr_raddr))) + ND_PRINT((ndo, " with-ttl %u", EXTRACT_U_1(tr->tr_rttl))); return; trunc: ND_PRINT((ndo, "%s", tstr)); @@ -133,12 +141,12 @@ print_mresp(netdissect_options *ndo, ND_PRINT((ndo, " [invalid len %d]", len)); return; } - ND_PRINT((ndo, "mresp %lu: %s to %s reply-to %s", - (u_long)TR_GETQID(EXTRACT_32BITS(&tr->tr_rttlqid)), - ipaddr_string(ndo, &tr->tr_src), ipaddr_string(ndo, &tr->tr_dst), - ipaddr_string(ndo, &tr->tr_raddr))); - if (IN_CLASSD(EXTRACT_32BITS(&tr->tr_raddr))) - ND_PRINT((ndo, " with-ttl %d", TR_GETTTL(EXTRACT_32BITS(&tr->tr_rttlqid)))); + ND_PRINT((ndo, "mresp %u: %s to %s reply-to %s", + EXTRACT_BE_U_3(tr->tr_qid), + ipaddr_string(ndo, tr->tr_src), ipaddr_string(ndo, tr->tr_dst), + ipaddr_string(ndo, tr->tr_raddr))); + if (IN_CLASSD(EXTRACT_BE_U_4(tr->tr_raddr))) + ND_PRINT((ndo, " with-ttl %u", EXTRACT_U_1(tr->tr_rttl))); return; trunc: ND_PRINT((ndo, "%s", tstr)); @@ -156,8 +164,8 @@ print_igmpv3_report(netdissect_options *ndo, ND_PRINT((ndo, " [invalid len %d]", len)); return; } - ND_TCHECK2(bp[6], 2); - ngroups = EXTRACT_16BITS(&bp[6]); + ND_TCHECK_2(bp + 6); + ngroups = EXTRACT_BE_U_2(bp + 6); ND_PRINT((ndo, ", %d group record(s)", ngroups)); if (ndo->ndo_vflag > 0) { /* Print the group records */ @@ -167,11 +175,11 @@ print_igmpv3_report(netdissect_options *ndo, ND_PRINT((ndo, " [invalid number of groups]")); return; } - ND_TCHECK2(bp[group+4], 4); - ND_PRINT((ndo, " [gaddr %s", ipaddr_string(ndo, &bp[group+4]))); + ND_TCHECK_4(bp + (group + 4)); + ND_PRINT((ndo, " [gaddr %s", ipaddr_string(ndo, bp + group + 4))); ND_PRINT((ndo, " %s", tok2str(igmpv3report2str, " [v3-report-#%d]", - bp[group]))); - nsrcs = EXTRACT_16BITS(&bp[group+2]); + EXTRACT_U_1(bp + group)))); + nsrcs = EXTRACT_BE_U_2(bp + group + 2); /* Check the number of sources and print them */ if (len < group+8+(nsrcs<<2)) { ND_PRINT((ndo, " [invalid number of sources %d]", nsrcs)); @@ -183,8 +191,8 @@ print_igmpv3_report(netdissect_options *ndo, /* Print the sources */ ND_PRINT((ndo, " {")); for (j=0; j 0) { if (len < 12 + (nsrcs << 2)) ND_PRINT((ndo, " [invalid number of sources]")); else if (ndo->ndo_vflag > 1) { ND_PRINT((ndo, " {")); for (i=0; i= 12) print_igmpv3_query(ndo, bp, len); else { - ND_TCHECK(bp[1]); - if (bp[1]) { + ND_TCHECK_1(bp + 1); + if (EXTRACT_U_1(bp + 1)) { ND_PRINT((ndo, " v2")); - if (bp[1] != 100) - ND_PRINT((ndo, " [max resp time %d]", bp[1])); + if (EXTRACT_U_1(bp + 1) != 100) + ND_PRINT((ndo, " [max resp time %u]", EXTRACT_U_1(bp + 1))); } else ND_PRINT((ndo, " v1")); - ND_TCHECK2(bp[4], 4); - if (EXTRACT_32BITS(&bp[4])) - ND_PRINT((ndo, " [gaddr %s]", ipaddr_string(ndo, &bp[4]))); + ND_TCHECK_4(bp + 4); + if (EXTRACT_BE_U_4(bp + 4)) + ND_PRINT((ndo, " [gaddr %s]", ipaddr_string(ndo, bp + 4))); if (len != 8) ND_PRINT((ndo, " [len %d]", len)); } break; case 0x12: - ND_TCHECK2(bp[4], 4); - ND_PRINT((ndo, "igmp v1 report %s", ipaddr_string(ndo, &bp[4]))); + ND_TCHECK_4(bp + 4); + ND_PRINT((ndo, "igmp v1 report %s", ipaddr_string(ndo, bp + 4))); if (len != 8) ND_PRINT((ndo, " [len %d]", len)); break; case 0x16: - ND_TCHECK2(bp[4], 4); - ND_PRINT((ndo, "igmp v2 report %s", ipaddr_string(ndo, &bp[4]))); + ND_TCHECK_4(bp + 4); + ND_PRINT((ndo, "igmp v2 report %s", ipaddr_string(ndo, bp + 4))); break; case 0x22: ND_PRINT((ndo, "igmp v3 report")); print_igmpv3_report(ndo, bp, len); break; case 0x17: - ND_TCHECK2(bp[4], 4); - ND_PRINT((ndo, "igmp leave %s", ipaddr_string(ndo, &bp[4]))); + ND_TCHECK_4(bp + 4); + ND_PRINT((ndo, "igmp leave %s", ipaddr_string(ndo, bp + 4))); break; case 0x13: ND_PRINT((ndo, "igmp dvmrp")); @@ -322,16 +330,16 @@ igmp_print(netdissect_options *ndo, print_mtrace(ndo, bp, len); break; default: - ND_PRINT((ndo, "igmp-%d", bp[0])); + ND_PRINT((ndo, "igmp-%d", EXTRACT_U_1(bp))); break; } - if (ndo->ndo_vflag && ND_TTEST2(bp[0], len)) { + if (ndo->ndo_vflag && len >= 4 && ND_TTEST2(bp[0], len)) { /* Check the IGMP checksum */ vec[0].ptr = bp; vec[0].len = len; if (in_cksum(vec, 1)) - ND_PRINT((ndo, " bad igmp cksum %x!", EXTRACT_16BITS(&bp[2]))); + ND_PRINT((ndo, " bad igmp cksum %x!", EXTRACT_BE_U_2(bp + 2))); } return; trunc: