]>
The Tcpdump Group git mirrors - tcpdump/blob - print-cdp.c
2 * Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * Code by Gert Doering, SpaceNet GmbH, gert@space.net
23 * Reference documentation:
24 * http://www.cisco.com/univercd/cc/td/doc/product/lan/trsrb/frames.htm
28 static const char rcsid
[] =
29 "@(#) $Header: /tcpdump/master/tcpdump/print-cdp.c,v 1.15 2002-08-01 08:53:02 risso Exp $";
36 #include <tcpdump-stdinc.h>
41 #include "interface.h"
42 #include "addrtoname.h"
43 #include "extract.h" /* must come after interface.h */
45 static int cdp_print_addr(const u_char
*, int);
46 static int cdp_print_prefixes(const u_char
*, int);
47 static unsigned long cdp_get_number(const u_char
*, int);
50 cdp_print(const u_char
*p
, u_int length
, u_int caplen
,
51 const u_char
*esrc
, const u_char
*edst
)
56 /* Cisco Discovery Protocol */
59 (void)printf("[|cdp]");
63 i
= 0; /* CDP data starts at offset 0 */
64 printf("CDP v%u, ttl=%us", p
[i
], p
[i
+ 1]);
65 i
+= 4; /* skip version, TTL and chksum */
70 type
= (p
[i
] << 8) + p
[i
+ 1];
71 len
= (p
[i
+ 2] << 8) + p
[i
+ 3];
77 printf(" %02x/%02x", type
, len
);
87 printf(" DevID '%.*s'", len
- 4, p
+ i
+ 4);
91 if (cdp_print_addr(p
+ i
+ 4, len
- 4) < 0)
95 printf(" PortID '%.*s'", len
- 4, p
+ i
+ 4);
98 printf(" CAP 0x%02x", (unsigned) p
[i
+ 7]);
102 printf(" Version:\n%.*s", len
- 4, p
+ i
+ 4);
104 printf(" Version: (suppressed)");
107 printf(" Platform: '%.*s'", len
- 4, p
+ i
+ 4);
110 if (cdp_print_prefixes(p
+ i
+ 4, len
- 4) < 0)
113 case 0x08: /* guess - not documented */
114 printf(" Protocol-Hello option" );
116 case 0x09: /* guess - not documented */
117 printf(" VTP Management Domain: '%.*s'", len
- 4,
120 case 0x0a: /* guess - not documented */
121 printf(" Native VLAN ID: %d",
122 (p
[i
+ 4] << 8) + p
[i
+ 4 + 1] );
124 case 0x0b: /* guess - not documented */
125 printf(" Duplex: %s", p
[i
+ 4] ? "full": "half");
127 /* http://www.cisco.com/univercd/cc/td/doc/product/voice/ata/atarn/186rn21m.htm
128 * plus more details from other sources
130 case 0x0e: /* incomplete doc. */
131 printf(" ATA-186 VoIP VLAN request, app %d, vlan %d",
132 p
[i
+ 4], EXTRACT_16BITS(&p
[i
+4+1]));
134 case 0x0f: /* incomplete doc. */
135 printf(" ATA-186 VoIP VLAN assignment" );
137 case 0x10: /* incomplete doc. */
138 printf(" power consumption: %1.2fW",
139 cdp_get_number(p
+i
+4, len
-4)/1000.0 );
141 case 0x11: /* guess - not documented */
142 printf(" MTU %u bytes", EXTRACT_32BITS(&p
[i
+4]));
144 case 0x12: /* guess - not documented */
145 printf(" AVVID trust bitmap 0x%02x", p
[i
+4] );
147 case 0x13: /* guess - not documented */
148 printf(" AVVID untrusted ports CoS: 0x%02x", p
[i
+4]);
150 case 0x14: /* guess - not documented */
151 printf(" sysName='%.*s'", len
- 4, p
+ i
+ 4 );
153 case 0x15: /* guess - not documented */
154 printf(" sysObjectID" ); /* TODO */
156 case 0x16: /* guess - not documented */
157 printf(" management address(es)" );
159 case 0x17: /* guess - not documented */
160 printf(" phys. location 0x%02x/%.*s",
161 p
[i
+4], len
- 5, p
+ i
+ 5 );
164 printf(" unknown field type %02x, len %d", type
, len
);
168 /* avoid infinite loop */
181 * Protocol type values.
183 * PT_NLPID means that the protocol type field contains an OSI NLPID.
185 * PT_IEEE_802_2 means that the protocol type field contains an IEEE 802.2
186 * LLC header that specifies that the payload is for that protocol.
188 #define PT_NLPID 1 /* OSI NLPID */
189 #define PT_IEEE_802_2 2 /* IEEE 802.2 LLC header */
192 cdp_print_addr(const u_char
* p
, int l
)
195 const u_char
*endp
= p
+ l
;
197 static u_char prot_ipv6
[] = {
198 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00, 0x86, 0xdd
202 num
= EXTRACT_32BITS(p
);
205 printf(" (%d): ", num
);
207 while (p
< endp
&& num
>= 0) {
210 pt
= p
[0]; /* type of "protocol" field */
211 pl
= p
[1]; /* length of "protocol" field */
214 if (p
+ pl
+ 2 > endp
)
216 al
= EXTRACT_16BITS(&p
[pl
]); /* address length */
218 if (pt
== PT_NLPID
&& pl
== 1 && *p
== 0xcc && al
== 4) {
220 * IPv4: protocol type = NLPID, protocol length = 1
221 * (1-byte NLPID), protocol = 0xcc (NLPID for IPv4),
228 printf("IPv4 %u.%u.%u.%u", p
[0], p
[1], p
[2], p
[3]);
232 else if (pt
== PT_IEEE_802_2
&& pl
== 8 &&
233 memcmp(p
, prot_ipv6
, 8) == 0 && al
== 16) {
235 * IPv6: protocol type = IEEE 802.2 header,
236 * protocol length = 8 (size of LLC+SNAP header),
237 * protocol = LLC+SNAP header with the IPv6
238 * Ethertype, address length = 16
244 printf("IPv6 %s", ip6addr_string(p
));
250 * Generic case: just print raw data
254 printf("pt=0x%02x, pl=%d, pb=", *(p
- 2), pl
);
256 printf(" %02x", *p
++);
259 al
= (*p
<< 8) + *(p
+ 1);
260 printf(", al=%d, a=", al
);
265 printf(" %02x", *p
++);
280 cdp_print_prefixes(const u_char
* p
, int l
)
285 printf(" IPv4 Prefixes (%d):", l
/ 5);
288 printf(" %u.%u.%u.%u/%u", p
[0], p
[1], p
[2], p
[3], p
[4]);
299 /* read in a <n>-byte number, MSB first
300 * (of course this can handle max sizeof(long))
302 static unsigned long cdp_get_number(const u_char
* p
, int l
)