]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-msdp.c
On Solaris, for 64-bit builds, use the 64-bit pcap-config.
[tcpdump] / print-msdp.c
index b7025452fb7699e26692149224fc6ffd92f360d9..7845116bdc7e03001d64b4e07a1ba2ece4441c60 100644 (file)
  * FOR A PARTICULAR PURPOSE.
  */
 
+/* \summary: Multicast Source Discovery Protocol (MSDP) printer */
+
 #ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
 #endif
 
-#include <tcpdump-stdinc.h>
-
-#include <stdio.h>
-#include <stdlib.h>
+#include "netdissect-stdinc.h"
 
-#include "interface.h"
+#include "netdissect.h"
 #include "addrtoname.h"
 #include "extract.h"
 
-#ifndef lint
-static const char rcsid[] _U_ =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-msdp.c,v 1.5 2003-11-15 00:39:32 guy Exp $";
-#endif
 #define MSDP_TYPE_MAX  7
 
 void
-msdp_print(const unsigned char *sp, u_int length)
+msdp_print(netdissect_options *ndo, const u_char *sp, u_int length)
 {
        unsigned int type, len;
 
-       TCHECK2(*sp, 3);
+       ndo->ndo_protocol = "msdp";
+       ND_PRINT(": ");
+       nd_print_protocol(ndo);
        /* See if we think we're at the beginning of a compound packet */
-       type = *sp;
-       len = EXTRACT_16BITS(sp + 1);
+       type = GET_U_1(sp);
+       len = GET_BE_U_2(sp + 1);
        if (len > 1500 || len < 3 || type == 0 || type > MSDP_TYPE_MAX)
                goto trunc;     /* not really truncated, but still not decodable */
-       (void)printf(" msdp:");
-       while (length > 0) {
-               TCHECK2(*sp, 3);
-               type = *sp;
-               len = EXTRACT_16BITS(sp + 1);
-               if (len > 1400 || vflag)
-                       printf(" [len %u]", len);
+       while (length != 0) {
+               type = GET_U_1(sp);
+               len = GET_BE_U_2(sp + 1);
+               if (len > 1400 || ndo->ndo_vflag)
+                       ND_PRINT(" [len %u]", len);
                if (len < 3)
                        goto trunc;
+               if (length < len)
+                       goto trunc;
                sp += 3;
                length -= 3;
                switch (type) {
                case 1: /* IPv4 Source-Active */
                case 3: /* IPv4 Source-Active Response */
                        if (type == 1)
-                               (void)printf(" SA");
+                               ND_PRINT(" SA");
                        else
-                               (void)printf(" SA-Response");
-                       TCHECK(*sp);
-                       (void)printf(" %u entries", *sp);
-                       if ((u_int)((*sp * 12) + 8) < len) {
-                               (void)printf(" [w/data]");
-                               if (vflag > 1) {
-                                       (void)printf(" ");
-                                       ip_print(sp + *sp * 12 + 8 - 3,
-                                                len - (*sp * 12 + 8));
+                               ND_PRINT(" SA-Response");
+                       ND_PRINT(" %u entries", GET_U_1(sp));
+                       if ((u_int)((GET_U_1(sp) * 12) + 8) < len) {
+                               ND_PRINT(" [w/data]");
+                               if (ndo->ndo_vflag > 1) {
+                                       ND_PRINT(" ");
+                                       ip_print(ndo, sp +
+                                                GET_U_1(sp) * 12 + 8 - 3,
+                                                len - (GET_U_1(sp) * 12 + 8));
                                }
                        }
                        break;
                case 2:
-                       (void)printf(" SA-Request");
-                       TCHECK2(*sp, 5);
-                       (void)printf(" for %s", ipaddr_string(sp + 1));
+                       ND_PRINT(" SA-Request");
+                       ND_PRINT(" for %s", GET_IPADDR_STRING(sp + 1));
                        break;
                case 4:
-                       (void)printf(" Keepalive");
+                       ND_PRINT(" Keepalive");
                        if (len != 3)
-                               (void)printf("[len=%d] ", len);
+                               ND_PRINT("[len=%u] ", len);
                        break;
                case 5:
-                       (void)printf(" Notification");
+                       ND_PRINT(" Notification");
                        break;
                default:
-                       (void)printf(" [type=%d len=%d]", type, len);
+                       ND_PRINT(" [type=%u len=%u]", type, len);
                        break;
                }
                sp += (len - 3);
@@ -97,5 +93,5 @@ msdp_print(const unsigned char *sp, u_int length)
        }
        return;
 trunc:
-       (void)printf(" [|msdp]");
+       nd_print_trunc(ndo);
 }