]> The Tcpdump Group git mirrors - tcpdump/commitdiff
from Carles Kishimoto <[email protected]>:
authorhannes <hannes>
Fri, 3 Mar 2006 22:31:16 +0000 (22:31 +0000)
committerhannes <hannes>
Fri, 3 Mar 2006 22:31:16 +0000 (22:31 +0000)
  basic support for Ciscos prop. VQP protocol

FILES
Makefile.in
interface.h
print-udp.c
print-vqp.c [new file with mode: 0644]
udp.h
win32/prj/GNUmakefile
win32/prj/WinDump.dsp

diff --git a/FILES b/FILES
index 35fd3b47d981e72d5d5e53086e003e2e5cc04db1..110c268aaef114a4b650efaba39f5b2b7cfcac77 100644 (file)
--- a/FILES
+++ b/FILES
@@ -209,6 +209,7 @@ print-timed.c
 print-token.c
 print-udp.c
 print-vjc.c
+print-vqp.c
 print-vrrp.c
 print-wb.c
 print-zephyr.c
index 1b1fb6cc7b556db34b73a3126913cf071c79063e..6c1134f225c10f14eb254cc26ed88ccd020a6eda 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.299 2006-02-21 10:27:40 hannes Exp $ (LBL)
+# @(#) $Header: /tcpdump/master/tcpdump/Makefile.in,v 1.300 2006-03-03 22:31:57 hannes Exp $ (LBL)
 
 #
 # Various configurable paths (remember to edit Makefile.in, not Makefile)
@@ -86,7 +86,7 @@ CSRC =        addrtoname.c af.c checksum.c cpack.c gmpls.c oui.c gmt2local.c ipproto.c
        print-rsvp.c print-rx.c print-sctp.c print-sip.c print-sl.c print-sll.c \
        print-slow.c print-snmp.c print-stp.c print-sunatm.c print-sunrpc.c \
        print-symantec.c print-syslog.c print-tcp.c print-telnet.c print-tftp.c \
-       print-timed.c print-token.c print-udp.c print-vjc.c print-vrrp.c \
+       print-timed.c print-token.c print-udp.c print-vjc.c print-vqp.c print-vrrp.c \
        print-wb.c print-zephyr.c setsignal.c tcpdump.c util.c
 
 LOCALSRC = @LOCALSRC@
index 86369042fd861e14951c1685bd1f46b5fdd75d45..73a49700093f70d7c1ef0e306dcbfed903a7ad48 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.268 2006-02-11 22:11:40 hannes Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/interface.h,v 1.269 2006-03-03 22:31:16 hannes Exp $ (LBL)
  */
 
 #ifndef tcpdump_interface_h
@@ -250,6 +250,7 @@ extern u_int pppoe_if_print(const struct pcap_pkthdr *, const u_char *);
 extern u_int prism_if_print(const struct pcap_pkthdr *, const u_char *);
 extern void q933_print(const u_char *, u_int);
 extern int vjc_print(register const char *, u_short);
+extern void vqp_print(register const u_char *, register u_int);
 extern u_int raw_if_print(const struct pcap_pkthdr *, const u_char *);
 extern void rip_print(const u_char *, u_int);
 extern u_int sl_if_print(const struct pcap_pkthdr *, const u_char *);
index 2109a72cffdf04d5154731bbb2d9d8b2ef2a2eaa..e8239fc1ecbb856b127eead99acc8ff443774235 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] _U_ =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-udp.c,v 1.138 2005-04-07 00:28:17 mcr Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-udp.c,v 1.139 2006-03-03 22:31:16 hannes Exp $ (LBL)";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -681,6 +681,8 @@ udp_print(register const u_char *bp, u_int length,
                        bfd_print((const u_char *)(up+1), length, dport);
                 else if (ISPORT(LMP_PORT))
                        lmp_print((const u_char *)(up + 1), length);
+               else if (ISPORT(VQP_PORT))
+                       vqp_print((const u_char *)(up + 1), length);
                 else if (ISPORT(SIP_PORT))
                        sip_print((const u_char *)(up + 1), length);
                 else if (ISPORT(SYSLOG_PORT))
diff --git a/print-vqp.c b/print-vqp.c
new file mode 100644 (file)
index 0000000..21d89fc
--- /dev/null
@@ -0,0 +1,237 @@
+/*
+ * Copyright (c) 1998-2006 The TCPDUMP project
+ *
+ * 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, and (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.
+ * 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.
+ *
+ * support for the Cisco prop. VQP Protocol 
+ *
+ * Original code by Carles Kishimoto <[email protected]>
+ */
+
+#ifndef lint
+static const char rcsid[] _U_ =
+    "@(#) $Header: /tcpdump/master/tcpdump/print-vqp.c,v 1.1 2006-03-03 22:31:16 hannes Exp $";
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <tcpdump-stdinc.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "interface.h"
+#include "extract.h"
+#include "addrtoname.h"
+
+#define VQP_VERSION                            1
+#define VQP_EXTRACT_VERSION(x) ((x)&0xFF)
+
+/*
+ * VQP common header
+ *
+ *  0                   1                   2                   3
+ *  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
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+ * |   Constant    | Packet type   |  Error Code   |    nitems     |
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+ * |                Packet Sequence Number (4 bytes)               |
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+ */
+
+struct vqp_common_header_t {
+    u_int8_t version;
+    u_int8_t msg_type;
+    u_int8_t error_code;
+    u_int8_t nitems;
+    u_int8_t sequence[4];
+};
+
+struct vqp_tlv_reqjoinport_t {
+    u_int8_t obj_type[4];
+    u_int8_t obj_length[2];
+};
+
+struct vqp_tlv_respvlan_t {
+    u_int8_t obj_type[4];
+    u_int8_t unknown1[8]; /* XXX */
+    u_int8_t obj_length[2];
+    u_int8_t unknown2[4]; /* XXX */
+};
+
+#define VQP_OBJ_REQ_JOIN_PORT  0x01
+#define VQP_OBJ_RESP_VLAN      0x02
+#define VQP_OBJ_REQ_RECONFIRM  0x03
+#define VQP_OBJ_RESP_RECONFIRM 0x04
+
+static const struct tok vqp_msg_type_values[] = {
+    { VQP_OBJ_REQ_JOIN_PORT, "Request, Join Port"},
+    { VQP_OBJ_RESP_VLAN, "Response, VLAN"},
+    { VQP_OBJ_REQ_RECONFIRM, "Request, Reconfirm"},
+    { VQP_OBJ_RESP_RECONFIRM, "Response, Reconfirm"},
+    { 0, NULL}
+};
+
+static const struct tok vqp_error_code_values[] = {
+    { 0x00, "No error"},
+    { 0x03, "Access denied"},
+    { 0x04, "Shutdown port"},
+    { 0x05, "Wrong VTP domain"},
+    { 0, NULL}
+};
+
+/* FIXME the heading 0x0c looks ugly - those must be flags etc. */
+#define VQP_OBJ_IP_ADDRESS    0x0c01
+#define VQP_OBJ_PORT_NAME     0x0c02
+#define VQP_OBJ_VLAN_NAME     0x0c03
+#define VQP_OBJ_VTP_DOMAIN    0x0c04
+#define VQP_OBJ_ETHERNET_PKT  0x0c05
+#define VQP_OBJ_MAC_NULL      0x0c06
+#define VQP_OBJ_MAC_ADDRESS   0x0c08
+
+static const struct tok vqp_obj_values[] = {
+    { VQP_OBJ_IP_ADDRESS, "Client IP Address" },
+    { VQP_OBJ_PORT_NAME, "Port Name" },
+    { VQP_OBJ_VLAN_NAME, "VLAN Name" },
+    { VQP_OBJ_VTP_DOMAIN, "VTP Domain" },
+    { VQP_OBJ_ETHERNET_PKT, "Ethernet Packet" },
+    { VQP_OBJ_MAC_NULL, "MAC Null" },
+    { VQP_OBJ_MAC_ADDRESS, "MAC Address" },
+    { 0, NULL}
+};
+
+#define FALSE 0
+#define TRUE  1
+
+void
+vqp_print(register const u_char *pptr, register u_int len) 
+{
+    const struct vqp_common_header_t *vqp_common_header;
+    union {
+        const struct vqp_tlv_reqjoinport_t *reqjoinport;
+        const struct vqp_tlv_respvlan_t *respvlan;
+    } vqp_tlv;
+
+    const u_char *tptr;
+    u_int16_t vqp_obj_len;
+    u_int32_t vqp_obj_type;
+    int tlen, hexdump;
+    u_int8_t nitems;
+
+    tptr=pptr;
+    tlen = len;
+    vqp_common_header = (const struct vqp_common_header_t *)pptr;
+    TCHECK(*vqp_common_header);
+
+    /*
+     * Sanity checking of the header.
+     */
+    if (VQP_EXTRACT_VERSION(vqp_common_header->version) != VQP_VERSION) {
+       printf("VQP version %u packet not supported",
+               VQP_EXTRACT_VERSION(vqp_common_header->version));
+       return;
+    }
+
+    /* in non-verbose mode just lets print the basic Message Type */
+    if (vflag < 1) {
+        printf("VQPv%u %s Message, error-code %s (%u), length %u",
+               VQP_EXTRACT_VERSION(vqp_common_header->version),
+               tok2str(vqp_msg_type_values, "unknown (%u)",vqp_common_header->msg_type),
+               tok2str(vqp_error_code_values, "unknown (%u)",vqp_common_header->error_code),
+              vqp_common_header->error_code,
+               len);
+        return;
+    }
+    
+    /* ok they seem to want to know everything - lets fully decode it */
+    nitems = vqp_common_header->nitems;
+    printf("\n\tVQPv%u, %s Message, error-code %s (%u), seq 0x%08x, items %u, length %u",
+           VQP_EXTRACT_VERSION(vqp_common_header->version),
+          tok2str(vqp_msg_type_values, "unknown (%u)",vqp_common_header->msg_type),
+          tok2str(vqp_error_code_values, "unknown (%u)",vqp_common_header->error_code),
+          vqp_common_header->error_code,
+           EXTRACT_32BITS(&vqp_common_header->sequence),
+           nitems,
+           len);
+
+    /* skip VQP Common header */
+    tptr+=sizeof(const struct vqp_common_header_t);
+    tlen-=sizeof(const struct vqp_common_header_t);
+
+    while (nitems > 0) {
+
+        switch (vqp_common_header->msg_type) {
+        case VQP_OBJ_REQ_JOIN_PORT:
+            vqp_tlv.reqjoinport = (const struct vqp_tlv_reqjoinport_t *)tptr;
+            vqp_obj_type = EXTRACT_32BITS(vqp_tlv.reqjoinport->obj_type);
+            vqp_obj_len = EXTRACT_16BITS(vqp_tlv.reqjoinport->obj_length);
+            tptr+=sizeof(struct vqp_tlv_reqjoinport_t);
+            tlen-=sizeof(struct vqp_tlv_reqjoinport_t);
+            break;
+        case VQP_OBJ_RESP_VLAN:
+            vqp_tlv.respvlan = (const struct vqp_tlv_respvlan_t *)tptr;
+            vqp_obj_type = EXTRACT_32BITS(vqp_tlv.respvlan->obj_type);
+            vqp_obj_len = EXTRACT_16BITS(vqp_tlv.respvlan->obj_length);
+            tptr+=sizeof(struct vqp_tlv_respvlan_t);
+            tlen-=sizeof(struct vqp_tlv_respvlan_t);
+            break;
+        default:
+            /* bail - don't know the TLV format of the message type */
+            return;
+        }
+
+        /* did we capture enough for fully decoding the object ? */
+        if (!TTEST2(*tptr, vqp_obj_len)) 
+            goto trunc;
+        hexdump=FALSE;
+
+        printf("\n\t  %s Object (0x%08x), length %u, value: ",
+               tok2str(vqp_obj_values, "Unknown", vqp_obj_type),
+               vqp_obj_type, vqp_obj_len);
+
+        /* basic sanity check */
+        if (vqp_obj_type == 0 || vqp_obj_len ==0) {
+            return;
+        }
+
+        switch(vqp_obj_type) {
+       case VQP_OBJ_IP_ADDRESS:
+            printf("%s (0x%08x)", ipaddr_string(tptr), EXTRACT_32BITS(tptr));
+            break;
+            /* those objects have similar semantics - fall through */
+        case VQP_OBJ_PORT_NAME:
+       case VQP_OBJ_VLAN_NAME:
+       case VQP_OBJ_VTP_DOMAIN:
+       case VQP_OBJ_ETHERNET_PKT:
+            safeputs(tptr, vqp_obj_len);
+            break;
+            /* those objects have similar semantics - fall through */
+       case VQP_OBJ_MAC_ADDRESS:
+       case VQP_OBJ_MAC_NULL:
+             printf("%s", etheraddr_string(tptr));
+              break;
+        default:
+            if (vflag <= 1)
+                print_unknown_data(tptr, "\n\t    ", vqp_obj_len);
+            break;
+        }
+       tptr += vqp_obj_len;
+       tlen -= vqp_obj_len;
+       nitems--;
+    }
+    return;
+trunc:
+    printf("\n\t[|VQP]");
+}
diff --git a/udp.h b/udp.h
index 81f8a912e7e3c7d9292bfa44207ba04a3e217f86..292ce9a40a0771cf3935ff40e2eecaed23b8e3c2 100644 (file)
--- a/udp.h
+++ b/udp.h
@@ -1,4 +1,4 @@
-/* @(#) $Header: /tcpdump/master/tcpdump/udp.h,v 1.9 2006-02-09 23:33:36 hannes Exp $ (LBL) */
+/* @(#) $Header: /tcpdump/master/tcpdump/udp.h,v 1.10 2006-03-03 22:31:16 hannes Exp $ (LBL) */
 /*
  * Copyright (c) 1982, 1986, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -75,6 +75,7 @@ struct udphdr {
 #define HSRP_PORT 1985         /*XXX*/
 #define LMP_PORT                701 /* rfc4204 */
 #define LWRES_PORT             921
+#define VQP_PORT               1589
 #define ZEPHYR_SRV_PORT                2103
 #define ZEPHYR_CLT_PORT                2104
 #define MPLS_LSP_PING_PORT      3503 /* draft-ietf-mpls-lsp-ping-02.txt */
index 95ecdca3aea88ebe41e9ceb9f0c35444fc8b2daf..6013f1f4ad9c300f1c3fd19023b511e4183a0207 100644 (file)
@@ -131,6 +131,7 @@ OBJS = \
        ../../print-token.o \
        ../../print-udp.o \
        ../../print-vjc.o \
+       ../../print-vqp.o \
        ../../print-vrrp.o \
        ../../print-wb.o \
        ../../print-zephyr.o \
index 8c725eb7a22662051c1a7b788cea5451a4d7777c..03611b53f9803b5aadfc0d71bd222acbb273a727 100644 (file)
@@ -545,6 +545,10 @@ SOURCE="..\..\print-udp.c"
 # End Source File
 # Begin Source File
 
+SOURCE="..\..\print-vqp.c"
+# End Source File
+# Begin Source File
+
 SOURCE="..\..\print-vjc.c"
 # End Source File
 # Begin Source File