]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Move IGMP to its own file.
authorfenner <fenner>
Thu, 2 Nov 2000 02:18:28 +0000 (02:18 +0000)
committerfenner <fenner>
Thu, 2 Nov 2000 02:18:28 +0000 (02:18 +0000)
Add IGMPv3 support.

Contributed by: Wilbert de Graaf <[email protected]>

Makefile.in
interface.h
print-igmp.c [new file with mode: 0644]
print-ip.c

index a5d0e7ba991eb6aeb52c23a625d3f423327e70af..ecb581b7938399f807fc871d7f7243e713cb4226 100644 (file)
@@ -17,7 +17,7 @@
 #  WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 #  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 #
-# @(#) $Header: /tcpdump/master/tcpdump/Makefile.in,v 1.242 2000-10-06 06:49:20 guy Exp $ (LBL)
+# @(#) $Header: /tcpdump/master/tcpdump/Makefile.in,v 1.243 2000-11-02 02:18:28 fenner Exp $ (LBL)
 
 #
 # Various configurable paths (remember to edit Makefile.in, not Makefile)
@@ -68,7 +68,7 @@ INSTALL_DATA = @INSTALL_DATA@
 CSRC = tcpdump.c \
        print-arp.c print-atalk.c print-atm.c print-bootp.c \
        print-decnet.c print-domain.c print-dvmrp.c print-egp.c \
-       print-ether.c print-fddi.c print-gre.c print-icmp.c \
+       print-ether.c print-fddi.c print-gre.c print-icmp.c print-igmp.c \
        print-igrp.c print-ip.c print-ipx.c print-isoclns.c print-krb.c \
        print-llc.c print-nfs.c print-ntp.c print-null.c print-ospf.c \
        print-pim.c print-ppp.c print-raw.c print-rip.c print-sl.c \
index 6f4e6321ea078aea6f0c84025381474386a03ed2..46bb1f047d73b4563281df306fb13ef8abee4db5 100644 (file)
@@ -18,7 +18,7 @@
  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- * @(#) $Header: /tcpdump/master/tcpdump/interface.h,v 1.143 2000-10-30 06:22:14 guy Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/interface.h,v 1.144 2000-11-02 02:18:30 fenner Exp $ (LBL)
  */
 
 #ifndef tcpdump_interface_h
@@ -223,6 +223,7 @@ extern void token_if_print(u_char *, const struct pcap_pkthdr *,
 extern void fddi_if_print(u_char *, const struct pcap_pkthdr *, const u_char *);
 extern void gre_print(const u_char *, u_int);
 extern void icmp_print(const u_char *, u_int, const u_char *);
+extern void igmp_print(const u_char *, u_int, const u_char *);
 extern void igrp_print(const u_char *, u_int, const u_char *);
 extern void ip_print(const u_char *, u_int);
 extern void ipN_print(const u_char *, u_int);
diff --git a/print-igmp.c b/print-igmp.c
new file mode 100644 (file)
index 0000000..ac335ac
--- /dev/null
@@ -0,0 +1,327 @@
+/*
+ * Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994, 1995, 1996
+ *  The Regents of the University of California.  All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that: (1) source code distributions
+ * retain the above copyright notice and this paragraph in its entirety, (2)
+ * distributions including binary code include the above copyright notice and
+ * this paragraph in its entirety in the documentation or other materials
+ * provided with the distribution, and (3) all advertising materials mentioning
+ * features or use of this software display the following acknowledgement:
+ * ``This product includes software developed by the University of California,
+ * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
+ * the University nor the names of its contributors may be used to endorse
+ * or promote products derived from this software without specific prior
+ * written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ */
+
+#ifndef lint
+static const char rcsid[] =
+    "@(#) $Header: /tcpdump/master/tcpdump/print-igmp.c,v 1.1 2000-11-02 02:18:30 fenner Exp $ (LBL)";
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <sys/param.h>
+#include <sys/time.h>
+#include <sys/socket.h>
+
+#if __STDC__
+struct mbuf;
+struct rtentry;
+#endif
+#include <net/if.h>
+
+#include <netinet/in.h>
+#include <netinet/if_ether.h>
+#include <netinet/in_systm.h>
+#include <netinet/ip.h>
+#include <netinet/ip_icmp.h>
+#include <netinet/ip_var.h>
+#include <netinet/udp.h>
+#include <netinet/udp_var.h>
+#include <netinet/tcp.h>
+
+#include <stdio.h>
+#include <string.h>
+
+#include "interface.h"
+#include "addrtoname.h"
+#include "extract.h"            /* must come after interface.h */
+
+#ifndef IN_CLASSD
+#define IN_CLASSD(i) (((int32_t)(i) & 0xf0000000) == 0xe0000000)
+#endif
+
+/* (following from ipmulti/mrouted/prune.h) */
+
+/*
+ * The packet format for a traceroute request.
+ */
+struct tr_query {
+    u_int  tr_src;          /* traceroute source */
+    u_int  tr_dst;          /* traceroute destination */
+    u_int  tr_raddr;        /* traceroute response address */
+    u_int  tr_rttlqid;      /* response ttl and 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.
+ */
+struct tr_resp {
+    u_int tr_qarr;          /* query arrival time */
+    u_int tr_inaddr;        /* incoming interface address */
+    u_int tr_outaddr;       /* outgoing interface address */
+    u_int tr_rmtaddr;       /* parent address in source tree */
+    u_int tr_vifin;         /* input packet count on interface */
+    u_int tr_vifout;        /* output packet count on interface */
+    u_int tr_pktcnt;        /* total incoming packets for src-grp */
+    u_char  tr_rproto;      /* routing proto deployed on router */
+    u_char  tr_fttl;        /* ttl required to forward on outvif */
+    u_char  tr_smask;       /* subnet mask for src addr */
+    u_char  tr_rflags;      /* forwarding error codes */
+};
+
+/* defs within mtrace */
+#define TR_QUERY 1
+#define TR_RESP 2
+
+/* fields for tr_rflags (forwarding error codes) */
+#define TR_NO_ERR   0
+#define TR_WRONG_IF 1
+#define TR_PRUNED   2
+#define TR_OPRUNED  3
+#define TR_SCOPED   4
+#define TR_NO_RTE   5
+#define TR_NO_FWD   7
+#define TR_NO_SPACE 0x81
+#define TR_OLD_ROUTER   0x82
+
+/* fields for tr_rproto (routing protocol) */
+#define TR_PROTO_DVMRP  1
+#define TR_PROTO_MOSPF  2
+#define TR_PROTO_PIM    3
+#define TR_PROTO_CBT    4
+
+/* igmpv3 report types */
+static struct tok igmpv3report2str[] = {
+       { 1,    "is_in" },
+       { 2,    "is_ex" },
+       { 3,    "to_in" },
+       { 4,    "to_ex" },
+       { 5,    "allow" },
+       { 6,    "block" },
+       { 0,    NULL }
+};
+
+static void 
+print_mtrace(register const u_char *bp, register u_int len)
+{
+    register struct tr_query *tr = (struct tr_query *)(bp + 8);
+
+    printf("mtrace %lu: %s to %s reply-to %s",
+        (u_long)TR_GETQID(ntohl(tr->tr_rttlqid)),
+        ipaddr_string(&tr->tr_src), ipaddr_string(&tr->tr_dst),
+        ipaddr_string(&tr->tr_raddr));
+    if (IN_CLASSD(ntohl(tr->tr_raddr)))
+        printf(" with-ttl %d", TR_GETTTL(ntohl(tr->tr_rttlqid)));
+}
+
+static void 
+print_mresp(register const u_char *bp, register u_int len)
+{
+    register struct tr_query *tr = (struct tr_query *)(bp + 8);
+
+    printf("mresp %lu: %s to %s reply-to %s",
+        (u_long)TR_GETQID(ntohl(tr->tr_rttlqid)),
+        ipaddr_string(&tr->tr_src), ipaddr_string(&tr->tr_dst),
+        ipaddr_string(&tr->tr_raddr));
+    if (IN_CLASSD(ntohl(tr->tr_raddr)))
+        printf(" with-ttl %d", TR_GETTTL(ntohl(tr->tr_rttlqid)));
+}
+
+static void 
+print_igmpv3_report(register const u_char *bp, register u_int len,
+       register const u_char *bp2)
+{
+    int group, nsrcs, ngroups;
+    register int i, j;
+
+    /* Minimum len is 16, and should be a multiple of 4 */
+    if (len < 16 || len & 0x03) {
+       (void)printf(" [invalid len %d]", len);
+       return;
+    }
+    TCHECK2(bp[6], 2);
+    ngroups = EXTRACT_16BITS(&bp[6]);
+    (void)printf(", %d group record(s)", ngroups); 
+    if (vflag > 0) {
+       /* Print the group records */
+       group = 8;
+        for (i=0; i<ngroups; i++) {
+           if (len < group+8) {
+               (void)printf(" [invalid number of groups]");
+               return;
+           }
+           TCHECK2(bp[group+4], 4);
+            (void)printf(" [gaddr %s", ipaddr_string(&bp[group+4]));
+           (void)printf(" %s", tok2str(igmpv3report2str, " [v3-report-#%d]",
+                                                               bp[group]));
+            nsrcs = EXTRACT_16BITS(&bp[group+2]);
+           /* Check the number of sources and print them */
+           if (len < group+8+(nsrcs<<2)) {
+               (void)printf(" [invalid number of sources %d]", nsrcs);
+               return;
+           }
+            if (vflag == 1)
+                (void)printf(", %d source(s)", nsrcs);
+            else {
+               /* Print the sources */
+                (void)printf(" {");
+                for (j=0; j<nsrcs; j++) {
+                   TCHECK2(bp[group+8+(j<<2)], 4);
+                   (void)printf(" %s", ipaddr_string(&bp[group+8+(j<<2)]));
+               }
+                (void)printf(" }");
+            }
+           /* Next group record */
+            group += 8 + (nsrcs << 2);
+           (void)printf("]");
+        }
+    }
+    return;
+trunc:
+    (void)printf("[|igmp]");
+    return;
+}
+
+static void
+print_igmpv3_query(register const u_char *bp, register u_int len,
+       register const u_char *bp2)
+{
+    int nsrcs;
+    register int i;
+
+    (void)printf(" v3");
+    /* Minimum len is 12, and should be a multiple of 4 */
+    if (len < 12 || len & 0x03) {
+       (void)printf(" [invalid len %d]", len);
+       return;
+    }
+    TCHECK2(bp[4], 4);
+    if (EXTRACT_32BITS(&bp[4]) == 0)
+       return;
+    (void)printf(" [gaddr %s", ipaddr_string(&bp[4]));
+    TCHECK2(bp[10], 2);
+    nsrcs = EXTRACT_16BITS(&bp[10]);
+    if (nsrcs > 0) {
+       if (len < 12 + (nsrcs << 2))
+           (void)printf(" [invalid number of sources]");
+       else if (vflag > 1) {
+           (void)printf(" {");
+           for (i=0; i<nsrcs; i++) {
+               TCHECK2(bp[12+(i<<2)], 4);
+               (void)printf(" %s", ipaddr_string(&bp[12+(i<<2)]));
+           }
+           (void)printf(" }");
+       } else
+           (void)printf(", %d source(s)", nsrcs);
+    }
+    (void)printf("]");
+    return;
+trunc:
+    (void)printf("[|igmp]");
+    return;
+}
+
+void
+igmp_print(register const u_char *bp, register u_int len,
+       register const u_char *bp2)
+{
+    register const struct ip *ip;
+
+    ip = (const struct ip *)bp2;
+    (void)printf("%s > %s: ",
+        ipaddr_string(&ip->ip_src),
+        ipaddr_string(&ip->ip_dst));
+
+    if (qflag) {
+        (void)printf("igmp");
+        return;
+    }
+
+    TCHECK2(bp[0], 8);
+    switch (bp[0]) {
+    case 0x11:
+        (void)printf("igmp query");
+       if (len >= 12)
+           print_igmpv3_query(bp, len, bp2);
+       else {
+           if (bp[1]) {
+               (void)printf(" v2");
+               if (bp[1] != 100)
+                   (void)printf(" [max resp time %d]", bp[1]);
+           } else
+               (void)printf(" v1");
+                   if (EXTRACT_32BITS(&bp[4]))
+                (void)printf(" [gaddr %s]", ipaddr_string(&bp[4]));
+            if (len != 8)
+                (void)printf(" [len %d]", len);
+       }
+        break;
+    case 0x12:
+        (void)printf("igmp v1 report %s", ipaddr_string(&bp[4]));
+        if (len != 8)
+            (void)printf(" [len %d]", len);
+        break;
+    case 0x16:
+        (void)printf("igmp v2 report %s", ipaddr_string(&bp[4]));
+        break;
+    case 0x22:
+        (void)printf("igmp v3 report");
+       print_igmpv3_report(bp, len, bp2);
+        break;
+    case 0x17:
+        (void)printf("igmp leave %s", ipaddr_string(&bp[4]));
+        break;
+    case 0x13:
+        (void)printf("igmp dvmrp");
+        if (len < 8)
+            (void)printf(" [len %d]", len);
+        else
+            dvmrp_print(bp, len);
+        break;
+    case 0x14:
+        (void)printf("igmp pimv1");
+        pimv1_print(bp, len);
+        break;
+    case 0x1e:
+        print_mresp(bp, len);
+        break;
+    case 0x1f:
+        print_mtrace(bp, len);
+        break;
+    default:
+        (void)printf("igmp-%d", bp[0]);
+        break;
+    }
+
+    if (vflag && TTEST2(bp[0], len)) {
+        /* Check the IGMP checksum */
+        if (in_cksum((const u_short*)bp, len, 0))
+            printf(" bad igmp cksum %x!", EXTRACT_16BITS(&bp[2]));
+    }
+    return;
+trunc:
+    fputs("[|igmp]", stdout);
+}
index 505cf847b665b9f5b9c6969aa44357ef7cf93dc2..b97fcd5e49b19728e853f4d212d96f6f2a33658e 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.89 2000-10-03 02:54:58 itojun Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.90 2000-11-02 02:18:30 fenner Exp $ (LBL)";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -50,156 +50,6 @@ static const char rcsid[] =
 #define        IPPROTO_ND      77
 #endif
 
-#ifndef IN_CLASSD
-#define IN_CLASSD(i) (((int32_t)(i) & 0xf0000000) == 0xe0000000)
-#endif
-
-/* (following from ipmulti/mrouted/prune.h) */
-
-/*
- * The packet format for a traceroute request.
- */
-struct tr_query {
-       u_int  tr_src;                  /* traceroute source */
-       u_int  tr_dst;                  /* traceroute destination */
-       u_int  tr_raddr;                /* traceroute response address */
-       u_int  tr_rttlqid;              /* response ttl and 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.
- */
-struct tr_resp {
-       u_int tr_qarr;                  /* query arrival time */
-       u_int tr_inaddr;                /* incoming interface address */
-       u_int tr_outaddr;               /* outgoing interface address */
-       u_int tr_rmtaddr;               /* parent address in source tree */
-       u_int tr_vifin;                 /* input packet count on interface */
-       u_int tr_vifout;                /* output packet count on interface */
-       u_int tr_pktcnt;                /* total incoming packets for src-grp */
-       u_char  tr_rproto;              /* routing proto deployed on router */
-       u_char  tr_fttl;                /* ttl required to forward on outvif */
-       u_char  tr_smask;               /* subnet mask for src addr */
-       u_char  tr_rflags;              /* forwarding error codes */
-};
-
-/* defs within mtrace */
-#define TR_QUERY 1
-#define TR_RESP        2
-
-/* fields for tr_rflags (forwarding error codes) */
-#define TR_NO_ERR      0
-#define TR_WRONG_IF    1
-#define TR_PRUNED      2
-#define TR_OPRUNED     3
-#define TR_SCOPED      4
-#define TR_NO_RTE      5
-#define TR_NO_FWD      7
-#define TR_NO_SPACE    0x81
-#define TR_OLD_ROUTER  0x82
-
-/* fields for tr_rproto (routing protocol) */
-#define TR_PROTO_DVMRP 1
-#define TR_PROTO_MOSPF 2
-#define TR_PROTO_PIM   3
-#define TR_PROTO_CBT   4
-
-static void print_mtrace(register const u_char *bp, register u_int len)
-{
-       register struct tr_query *tr = (struct tr_query *)(bp + 8);
-
-       printf("mtrace %lu: %s to %s reply-to %s",
-               (u_long)TR_GETQID(ntohl(tr->tr_rttlqid)),
-               ipaddr_string(&tr->tr_src), ipaddr_string(&tr->tr_dst),
-               ipaddr_string(&tr->tr_raddr));
-       if (IN_CLASSD(ntohl(tr->tr_raddr)))
-               printf(" with-ttl %d", TR_GETTTL(ntohl(tr->tr_rttlqid)));
-}
-
-static void print_mresp(register const u_char *bp, register u_int len)
-{
-       register struct tr_query *tr = (struct tr_query *)(bp + 8);
-
-       printf("mresp %lu: %s to %s reply-to %s",
-               (u_long)TR_GETQID(ntohl(tr->tr_rttlqid)),
-               ipaddr_string(&tr->tr_src), ipaddr_string(&tr->tr_dst),
-               ipaddr_string(&tr->tr_raddr));
-       if (IN_CLASSD(ntohl(tr->tr_raddr)))
-               printf(" with-ttl %d", TR_GETTTL(ntohl(tr->tr_rttlqid)));
-}
-
-static void
-igmp_print(register const u_char *bp, register u_int len,
-          register const u_char *bp2)
-{
-       register const struct ip *ip;
-
-       ip = (const struct ip *)bp2;
-        (void)printf("%s > %s: ",
-               ipaddr_string(&ip->ip_src),
-               ipaddr_string(&ip->ip_dst));
-
-       if (qflag) {
-               (void)printf("igmp");
-               return;
-       }
-
-       TCHECK2(bp[0], 8);
-       switch (bp[0]) {
-       case 0x11:
-               (void)printf("igmp query");
-               if (EXTRACT_32BITS(&bp[4]))
-                       (void)printf(" [gaddr %s]", ipaddr_string(&bp[4]));
-               if (len != 8)
-                       (void)printf(" [len %d]", len);
-               break;
-       case 0x12:
-               (void)printf("igmp v1 report %s", ipaddr_string(&bp[4]));
-               if (len != 8)
-                       (void)printf(" [len %d]", len);
-               break;
-       case 0x16:
-               (void)printf("igmp v2 report %s", ipaddr_string(&bp[4]));
-               break;
-       case 0x17:
-               (void)printf("igmp leave %s", ipaddr_string(&bp[4]));
-               break;
-       case 0x13:
-               (void)printf("igmp dvmrp");
-               if (len < 8)
-                       (void)printf(" [len %d]", len);
-               else
-                       dvmrp_print(bp, len);
-               break;
-       case 0x14:
-               (void)printf("igmp pimv1");
-               pimv1_print(bp, len);
-               break;
-       case 0x1e:
-               print_mresp(bp, len);
-               break;
-       case 0x1f:
-               print_mtrace(bp, len);
-               break;
-       default:
-               (void)printf("igmp-%d", bp[0]);
-               break;
-       }
-
-       if (vflag && TTEST2(bp[0], len)) {
-               /* Check the IGMP checksum */
-               if (in_cksum((const u_short*)bp, len, 0))
-                       printf(" bad igmp cksum %x!", EXTRACT_16BITS(&bp[2]));
-       }
-       return;
-trunc:
-       fputs("[|igmp]", stdout);
-}
-
 /*
  * print the recorded route in an IP RR, LSRR or SSRR option.
  */