2 * Copyright (c) 2000 Lennert Buytenhek
4 * This software may be distributed either under the terms of the
5 * BSD-style license that accompanies tcpdump or the GNU General
8 * Format and print IEEE 802.1d spanning tree protocol packets.
9 * Contributed by Lennert Buytenhek <buytenh@gnu.org>
13 static const char rcsid
[] _U_
=
14 "@(#) $Header: /tcpdump/master/tcpdump/print-stp.c,v 1.20 2007-03-18 17:11:46 hannes Exp $";
21 #include <tcpdump-stdinc.h>
27 #include "interface.h"
28 #include "addrtoname.h"
31 #define RSTP_EXTRACT_PORT_ROLE(x) (((x)&0x0C)>>2)
32 /* STP timers are expressed in multiples of 1/256th second */
33 #define STP_TIME_BASE 256
34 #define STP_BPDU_MSTP_MIN_LEN 102
37 u_int8_t protocol_id
[2];
38 u_int8_t protocol_version
;
42 u_int8_t root_path_cost
[4];
43 u_int8_t bridge_id
[8];
45 u_int8_t message_age
[2];
47 u_int8_t hello_time
[2];
48 u_int8_t forward_delay
[2];
52 #define STP_PROTO_REGULAR 0x00
53 #define STP_PROTO_RAPID 0x02
54 #define STP_PROTO_MSTP 0x03
55 #define STP_PROTO_SPB 0x04
57 struct tok stp_proto_values
[] = {
58 { STP_PROTO_REGULAR
, "802.1d" },
59 { STP_PROTO_RAPID
, "802.1w" },
60 { STP_PROTO_MSTP
, "802.1s" },
61 { STP_PROTO_SPB
, "802.1aq" },
65 #define STP_BPDU_TYPE_CONFIG 0x00
66 #define STP_BPDU_TYPE_RSTP 0x02
67 #define STP_BPDU_TYPE_TOPO_CHANGE 0x80
69 struct tok stp_bpdu_flag_values
[] = {
70 { 0x01, "Topology change" },
74 { 0x40, "Agreement" },
75 { 0x80, "Topology change ACK" },
79 struct tok stp_bpdu_type_values
[] = {
80 { STP_BPDU_TYPE_CONFIG
, "Config" },
81 { STP_BPDU_TYPE_RSTP
, "Rapid STP" },
82 { STP_BPDU_TYPE_TOPO_CHANGE
, "Topology Change" },
86 struct tok rstp_obj_port_role_values
[] = {
88 { 0x01, "Alternate" },
90 { 0x03, "Designated" },
95 stp_print_bridge_id(const u_char
*p
)
97 static char bridge_id_str
[sizeof("pppp.aa:bb:cc:dd:ee:ff")];
99 snprintf(bridge_id_str
, sizeof(bridge_id_str
),
100 "%.2x%.2x.%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
101 p
[0], p
[1], p
[2], p
[3], p
[4], p
[5], p
[6], p
[7]);
103 return bridge_id_str
;
107 stp_print_config_bpdu(const struct stp_bpdu_
*stp_bpdu
, u_int length
)
109 printf(", Flags [%s]",
110 bittok2str(stp_bpdu_flag_values
, "none", stp_bpdu
->flags
));
112 printf(", bridge-id %s.%04x, length %u",
113 stp_print_bridge_id((const u_char
*)&stp_bpdu
->bridge_id
),
114 EXTRACT_16BITS(&stp_bpdu
->port_id
), length
);
116 /* in non-verbose mode just print the bridge-id */
121 printf("\n\tmessage-age %.2fs, max-age %.2fs"
122 ", hello-time %.2fs, forwarding-delay %.2fs",
123 (float)EXTRACT_16BITS(&stp_bpdu
->message_age
) / STP_TIME_BASE
,
124 (float)EXTRACT_16BITS(&stp_bpdu
->max_age
) / STP_TIME_BASE
,
125 (float)EXTRACT_16BITS(&stp_bpdu
->hello_time
) / STP_TIME_BASE
,
126 (float)EXTRACT_16BITS(&stp_bpdu
->forward_delay
) / STP_TIME_BASE
);
128 printf("\n\troot-id %s, root-pathcost %u",
129 stp_print_bridge_id((const u_char
*)&stp_bpdu
->root_id
),
130 EXTRACT_32BITS(&stp_bpdu
->root_path_cost
));
132 /* Port role is only valid for 802.1w */
133 if (stp_bpdu
->protocol_version
== STP_PROTO_RAPID
) {
134 printf(", port-role %s",
135 tok2str(rstp_obj_port_role_values
, "Unknown",
136 RSTP_EXTRACT_PORT_ROLE(stp_bpdu
->flags
)));
142 * Ref. IEEE 802.1Q 2003 Ed. Section 14
146 * 2 - bytes Protocol Id
147 * 1 - byte Protocol Ver.
150 * 8 - bytes CIST Root Identifier
151 * 4 - bytes CIST External Path Cost
152 * 8 - bytes CIST Regional Root Identifier
153 * 2 - bytes CIST Port Identifier
154 * 2 - bytes Message Age
156 * 2 - bytes Hello Time
157 * 2 - bytes Forward delay
158 * 1 - byte Version 1 length. Must be 0
159 * 2 - bytes Version 3 length
160 * 1 - byte Config Identifier
161 * 32 - bytes Config Name
162 * 2 - bytes Revision level
163 * 16 - bytes Config Digest [MD5]
164 * 4 - bytes CIST Internal Root Path Cost
165 * 8 - bytes CIST Bridge Identifier
166 * 1 - byte CIST Remaining Hops
167 * 16 - bytes MSTI information [Max 64 MSTI, each 16 bytes]
171 * Ref. IEEE 802.1aq. Section 14
173 * 2 - bytes Version 4 length
174 * 1 - byte Aux Config Identifier
175 * 32 - bytes Aux Config Name
176 * 2 - bytes Aux Revision level
177 * 16 - bytes Aux Config Digest [MD5]
178 * 1 - byte (1 - 2) Agreement Number
179 * (3 - 4) Discarded Agreement Number
180 * (5) Agreement Valid Flag
181 * (6) Restricted Role Flag
182 * (7 - 8) Unused sent zero
184 * 1 - byte (1 - 4) Agreement Digest Format Identifier
185 * (5 - 8) Agreement Digest Format Capabilities
186 * 1 - byte (1 - 4) Agreement Digest Convention Identifier
187 * (5 - 8) Agreement Digest Convention Capabilities
188 * 2 - bytes Agreement Digest Edge Count
189 * 8 - byte Reserved Set
190 * 20 - bytes Computed Topology Digest
196 * 8 - bytes MSTI Regional Root Identifier
197 * 4 - bytes MSTI Regional Path Cost
198 * 1 - byte MSTI Bridge Priority
199 * 1 - byte MSTI Port Priority
200 * 1 - byte MSTI Remaining Hops
204 #define MST_BPDU_MSTI_LENGTH 16
205 #define MST_BPDU_CONFIG_INFO_LENGTH 64
207 /* Offsets of fields from the begginning for the packet */
208 #define MST_BPDU_VER3_LEN_OFFSET 36
209 #define MST_BPDU_CONFIG_NAME_OFFSET 39
210 #define MST_BPDU_CONFIG_DIGEST_OFFSET 73
211 #define MST_BPDU_CIST_INT_PATH_COST_OFFSET 89
212 #define MST_BPDU_CIST_BRIDGE_ID_OFFSET 93
213 #define MST_BPDU_CIST_REMAIN_HOPS_OFFSET 101
214 #define MST_BPDU_MSTI_OFFSET 102
215 /* Offsets within an MSTI */
216 #define MST_BPDU_MSTI_ROOT_PRIO_OFFSET 1
217 #define MST_BPDU_MSTI_ROOT_PATH_COST_OFFSET 9
218 #define MST_BPDU_MSTI_BRIDGE_PRIO_OFFSET 13
219 #define MST_BPDU_MSTI_PORT_PRIO_OFFSET 14
220 #define MST_BPDU_MSTI_REMAIN_HOPS_OFFSET 15
222 #define SPB_BPDU_MIN_LEN 87
223 #define SPB_BPDU_CONFIG_NAME_OFFSET 3
224 #define SPB_BPDU_CONFIG_REV_OFFSET SPB_BPDU_CONFIG_NAME_OFFSET + 32
225 #define SPB_BPDU_CONFIG_DIGEST_OFFSET SPB_BPDU_CONFIG_REV_OFFSET + 2
226 #define SPB_BPDU_AGREEMENT_OFFSET SPB_BPDU_CONFIG_DIGEST_OFFSET + 16
227 #define SPB_BPDU_AGREEMENT_UNUSED_OFFSET SPB_BPDU_AGREEMENT_OFFSET + 1
228 #define SPB_BPDU_AGREEMENT_FORMAT_OFFSET SPB_BPDU_AGREEMENT_UNUSED_OFFSET + 1
229 #define SPB_BPDU_AGREEMENT_CON_OFFSET SPB_BPDU_AGREEMENT_FORMAT_OFFSET + 1
230 #define SPB_BPDU_AGREEMENT_EDGE_OFFSET SPB_BPDU_AGREEMENT_CON_OFFSET + 1
231 #define SPB_BPDU_AGREEMENT_RES1_OFFSET SPB_BPDU_AGREEMENT_EDGE_OFFSET + 2
232 #define SPB_BPDU_AGREEMENT_RES2_OFFSET SPB_BPDU_AGREEMENT_RES1_OFFSET + 4
233 #define SPB_BPDU_AGREEMENT_DIGEST_OFFSET SPB_BPDU_AGREEMENT_RES2_OFFSET + 4
237 stp_print_mstp_bpdu(const struct stp_bpdu_
*stp_bpdu
, u_int length
)
245 ptr
= (const u_char
*)stp_bpdu
;
246 printf(", CIST Flags [%s], length %u",
247 bittok2str(stp_bpdu_flag_values
, "none", stp_bpdu
->flags
), length
);
250 * in non-verbose mode just print the flags. We dont read that much
251 * of the packet (DEFAULT_SNAPLEN) to print out cist bridge-id
257 printf("\n\tport-role %s, ",
258 tok2str(rstp_obj_port_role_values
, "Unknown",
259 RSTP_EXTRACT_PORT_ROLE(stp_bpdu
->flags
)));
261 printf("CIST root-id %s, CIST ext-pathcost %u ",
262 stp_print_bridge_id((const u_char
*)&stp_bpdu
->root_id
),
263 EXTRACT_32BITS(&stp_bpdu
->root_path_cost
));
265 printf("\n\tCIST regional-root-id %s, ",
266 stp_print_bridge_id((const u_char
*)&stp_bpdu
->bridge_id
));
268 printf("CIST port-id %04x, ", EXTRACT_16BITS(&stp_bpdu
->port_id
));
270 printf("\n\tmessage-age %.2fs, max-age %.2fs"
271 ", hello-time %.2fs, forwarding-delay %.2fs",
272 (float)EXTRACT_16BITS(&stp_bpdu
->message_age
) / STP_TIME_BASE
,
273 (float)EXTRACT_16BITS(&stp_bpdu
->max_age
) / STP_TIME_BASE
,
274 (float)EXTRACT_16BITS(&stp_bpdu
->hello_time
) / STP_TIME_BASE
,
275 (float)EXTRACT_16BITS(&stp_bpdu
->forward_delay
) / STP_TIME_BASE
);
277 printf ("\n\tv3len %d, ", EXTRACT_16BITS(ptr
+ MST_BPDU_VER3_LEN_OFFSET
));
278 printf("MCID Name %s, rev %u, "
279 "\n\t\tdigest %08x%08x%08x%08x, ",
280 ptr
+ MST_BPDU_CONFIG_NAME_OFFSET
,
281 EXTRACT_16BITS(ptr
+ MST_BPDU_CONFIG_NAME_OFFSET
+ 32),
282 EXTRACT_32BITS(ptr
+ MST_BPDU_CONFIG_DIGEST_OFFSET
),
283 EXTRACT_32BITS(ptr
+ MST_BPDU_CONFIG_DIGEST_OFFSET
+ 4),
284 EXTRACT_32BITS(ptr
+ MST_BPDU_CONFIG_DIGEST_OFFSET
+ 8),
285 EXTRACT_32BITS(ptr
+ MST_BPDU_CONFIG_DIGEST_OFFSET
+ 12));
287 printf ("CIST int-root-pathcost %u, ",
288 EXTRACT_32BITS(ptr
+ MST_BPDU_CIST_INT_PATH_COST_OFFSET
));
290 printf("\n\tCIST bridge-id %s, ",
291 stp_print_bridge_id(ptr
+ MST_BPDU_CIST_BRIDGE_ID_OFFSET
));
293 printf("CIST remaining-hops %d", ptr
[MST_BPDU_CIST_REMAIN_HOPS_OFFSET
]);
295 /* Dump all MSTI's */
296 v3len
= EXTRACT_16BITS(ptr
+ MST_BPDU_VER3_LEN_OFFSET
);
297 if (v3len
> MST_BPDU_CONFIG_INFO_LENGTH
) {
298 len
= v3len
- MST_BPDU_CONFIG_INFO_LENGTH
;
299 offset
= MST_BPDU_MSTI_OFFSET
;
300 while (len
>= MST_BPDU_MSTI_LENGTH
) {
301 msti
= EXTRACT_16BITS(ptr
+ offset
+
302 MST_BPDU_MSTI_ROOT_PRIO_OFFSET
);
303 msti
= msti
& 0x0FFF;
305 printf("\n\tMSTI %d, Flags [%s], port-role %s",
306 msti
, bittok2str(stp_bpdu_flag_values
, "none", ptr
[offset
]),
307 tok2str(rstp_obj_port_role_values
, "Unknown",
308 RSTP_EXTRACT_PORT_ROLE(ptr
[offset
])));
309 printf("\n\t\tMSTI regional-root-id %s, pathcost %u",
310 stp_print_bridge_id(ptr
+ offset
+
311 MST_BPDU_MSTI_ROOT_PRIO_OFFSET
),
312 EXTRACT_32BITS(ptr
+ offset
+
313 MST_BPDU_MSTI_ROOT_PATH_COST_OFFSET
));
314 printf("\n\t\tMSTI bridge-prio %d, port-prio %d, hops %d",
315 ptr
[offset
+ MST_BPDU_MSTI_BRIDGE_PRIO_OFFSET
] >> 4,
316 ptr
[offset
+ MST_BPDU_MSTI_PORT_PRIO_OFFSET
] >> 4,
317 ptr
[offset
+ MST_BPDU_MSTI_REMAIN_HOPS_OFFSET
]);
319 len
-= MST_BPDU_MSTI_LENGTH
;
320 offset
+= MST_BPDU_MSTI_LENGTH
;
324 if ((length
-offset
) >= SPB_BPDU_MIN_LEN
)
326 printf("\n\tv4len %d AUXMCID Name %s, Rev %u, \n\t\tdigest %08x%08x%08x%08x",
327 EXTRACT_16BITS (ptr
+ offset
),
328 ptr
+ offset
+ SPB_BPDU_CONFIG_NAME_OFFSET
,
329 EXTRACT_16BITS(ptr
+ offset
+ SPB_BPDU_CONFIG_REV_OFFSET
),
330 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_CONFIG_DIGEST_OFFSET
),
331 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_CONFIG_DIGEST_OFFSET
+ 4),
332 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_CONFIG_DIGEST_OFFSET
+ 8),
333 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_CONFIG_DIGEST_OFFSET
+ 12));
335 printf("\n\tAgreement num %d, Discarded Agreement num %d, Agreement valid-"
336 "flag %d, \n\tRestricted role-flag: %d, Format id %d cap %d, "
337 "Convention id %d cap %d, \n\tEdge count %d, "
338 "Agreement digest %08x%08x%08x%08x%08x\n",
339 ptr
[offset
+ SPB_BPDU_AGREEMENT_OFFSET
]>>6,
340 ptr
[offset
+ SPB_BPDU_AGREEMENT_OFFSET
]>>4 & 0x3,
341 ptr
[offset
+ SPB_BPDU_AGREEMENT_OFFSET
]>>3 & 0x1,
342 ptr
[offset
+ SPB_BPDU_AGREEMENT_OFFSET
]>>2 & 0x1,
343 ptr
[offset
+ SPB_BPDU_AGREEMENT_FORMAT_OFFSET
]>>4,
344 ptr
[offset
+ SPB_BPDU_AGREEMENT_FORMAT_OFFSET
]&0x00ff,
345 ptr
[offset
+ SPB_BPDU_AGREEMENT_CON_OFFSET
]>>4,
346 ptr
[offset
+ SPB_BPDU_AGREEMENT_CON_OFFSET
]&0x00ff,
347 EXTRACT_16BITS(ptr
+ offset
+ SPB_BPDU_AGREEMENT_EDGE_OFFSET
),
348 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_AGREEMENT_DIGEST_OFFSET
),
349 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_AGREEMENT_DIGEST_OFFSET
)+4,
350 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_AGREEMENT_DIGEST_OFFSET
)+8,
351 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_AGREEMENT_DIGEST_OFFSET
)+12,
352 EXTRACT_32BITS(ptr
+ offset
+ SPB_BPDU_AGREEMENT_DIGEST_OFFSET
)+16);
357 * Print 802.1d / 802.1w / 802.1q (mstp) / 802.1aq (spb) packets.
360 stp_print(const u_char
*p
, u_int length
)
362 const struct stp_bpdu_
*stp_bpdu
;
366 stp_bpdu
= (struct stp_bpdu_
*)p
;
368 /* Minimum STP Frame size. */
372 if (EXTRACT_16BITS(&stp_bpdu
->protocol_id
)) {
373 printf("unknown STP version, length %u", length
);
377 printf("STP %s", tok2str(stp_proto_values
, "Unknown STP protocol (0x%02x)",
378 stp_bpdu
->protocol_version
));
380 switch (stp_bpdu
->protocol_version
) {
381 case STP_PROTO_REGULAR
:
382 case STP_PROTO_RAPID
:
390 printf(", %s", tok2str(stp_bpdu_type_values
, "Unknown BPDU Type (0x%02x)",
391 stp_bpdu
->bpdu_type
));
393 switch (stp_bpdu
->bpdu_type
) {
394 case STP_BPDU_TYPE_CONFIG
:
395 if (length
< sizeof(struct stp_bpdu_
) - 1) {
398 stp_print_config_bpdu(stp_bpdu
, length
);
401 case STP_BPDU_TYPE_RSTP
:
402 if (stp_bpdu
->protocol_version
== STP_PROTO_RAPID
) {
403 if (length
< sizeof(struct stp_bpdu_
)) {
406 stp_print_config_bpdu(stp_bpdu
, length
);
407 } else if (stp_bpdu
->protocol_version
== STP_PROTO_MSTP
||
408 stp_bpdu
->protocol_version
== STP_PROTO_SPB
) {
409 if (length
< STP_BPDU_MSTP_MIN_LEN
) {
413 if (stp_bpdu
->v1_length
!= 0) {
414 /* FIX ME: Emit a message here ? */
418 /* Validate v3 length */
419 mstp_len
= EXTRACT_16BITS(p
+ MST_BPDU_VER3_LEN_OFFSET
);
420 mstp_len
+= 2; /* length encoding itself is 2 bytes */
421 if (length
< (sizeof(struct stp_bpdu_
) + mstp_len
)) {
425 if (stp_bpdu
->protocol_version
== STP_PROTO_SPB
)
427 /* Validate v4 length */
428 spb_len
= EXTRACT_16BITS (p
+ MST_BPDU_VER3_LEN_OFFSET
+ mstp_len
);
430 if (length
< (sizeof(struct stp_bpdu_
) + mstp_len
+ spb_len
) ||
431 spb_len
< SPB_BPDU_MIN_LEN
) {
436 stp_print_mstp_bpdu(stp_bpdu
, length
);
440 case STP_BPDU_TYPE_TOPO_CHANGE
:
441 /* always empty message - just break out */
450 printf("[|stp %d]", length
);
455 * c-style: whitesmith