blob: 2f5c9175acf5340f9cf3155c98987809f820488e [file] [log] [blame]
The Android Open Source Project2949f582009-03-03 19:30:46 -08001/*
2 * Copyright (c) 2000 Lennert Buytenhek
3 *
4 * This software may be distributed either under the terms of the
5 * BSD-style license that accompanies tcpdump or the GNU General
6 * Public License
7 *
The Android Open Source Project2949f582009-03-03 19:30:46 -08008 * Contributed by Lennert Buytenhek <buytenh@gnu.org>
9 */
10
Elliott Hughese2e3bd12017-05-15 10:59:29 -070011/* \summary: IEEE 802.1d Spanning Tree Protocol (STP) printer */
12
The Android Open Source Project2949f582009-03-03 19:30:46 -080013#ifdef HAVE_CONFIG_H
14#include "config.h"
15#endif
16
Elliott Hughese2e3bd12017-05-15 10:59:29 -070017#include <netdissect-stdinc.h>
The Android Open Source Project2949f582009-03-03 19:30:46 -080018
The Android Open Source Project2949f582009-03-03 19:30:46 -080019#include <stdio.h>
The Android Open Source Project2949f582009-03-03 19:30:46 -080020
Elliott Hughese2e3bd12017-05-15 10:59:29 -070021#include "netdissect.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080022#include "extract.h"
23
Elliott Hughes892a68b2015-10-19 14:43:53 -070024#define RSTP_EXTRACT_PORT_ROLE(x) (((x)&0x0C)>>2)
The Android Open Source Project2949f582009-03-03 19:30:46 -080025/* STP timers are expressed in multiples of 1/256th second */
26#define STP_TIME_BASE 256
27#define STP_BPDU_MSTP_MIN_LEN 102
28
29struct stp_bpdu_ {
Elliott Hughes892a68b2015-10-19 14:43:53 -070030 uint8_t protocol_id[2];
31 uint8_t protocol_version;
32 uint8_t bpdu_type;
33 uint8_t flags;
34 uint8_t root_id[8];
35 uint8_t root_path_cost[4];
36 uint8_t bridge_id[8];
37 uint8_t port_id[2];
38 uint8_t message_age[2];
39 uint8_t max_age[2];
40 uint8_t hello_time[2];
41 uint8_t forward_delay[2];
42 uint8_t v1_length;
The Android Open Source Project2949f582009-03-03 19:30:46 -080043};
44
45#define STP_PROTO_REGULAR 0x00
46#define STP_PROTO_RAPID 0x02
47#define STP_PROTO_MSTP 0x03
JP Abgrall53f17a92014-02-12 14:02:41 -080048#define STP_PROTO_SPB 0x04
The Android Open Source Project2949f582009-03-03 19:30:46 -080049
JP Abgrall53f17a92014-02-12 14:02:41 -080050static const struct tok stp_proto_values[] = {
The Android Open Source Project2949f582009-03-03 19:30:46 -080051 { STP_PROTO_REGULAR, "802.1d" },
52 { STP_PROTO_RAPID, "802.1w" },
53 { STP_PROTO_MSTP, "802.1s" },
JP Abgrall53f17a92014-02-12 14:02:41 -080054 { STP_PROTO_SPB, "802.1aq" },
The Android Open Source Project2949f582009-03-03 19:30:46 -080055 { 0, NULL}
56};
57
58#define STP_BPDU_TYPE_CONFIG 0x00
59#define STP_BPDU_TYPE_RSTP 0x02
60#define STP_BPDU_TYPE_TOPO_CHANGE 0x80
61
JP Abgrall53f17a92014-02-12 14:02:41 -080062static const struct tok stp_bpdu_flag_values[] = {
The Android Open Source Project2949f582009-03-03 19:30:46 -080063 { 0x01, "Topology change" },
64 { 0x02, "Proposal" },
65 { 0x10, "Learn" },
66 { 0x20, "Forward" },
67 { 0x40, "Agreement" },
68 { 0x80, "Topology change ACK" },
69 { 0, NULL}
70};
71
JP Abgrall53f17a92014-02-12 14:02:41 -080072static const struct tok stp_bpdu_type_values[] = {
The Android Open Source Project2949f582009-03-03 19:30:46 -080073 { STP_BPDU_TYPE_CONFIG, "Config" },
74 { STP_BPDU_TYPE_RSTP, "Rapid STP" },
75 { STP_BPDU_TYPE_TOPO_CHANGE, "Topology Change" },
76 { 0, NULL}
77};
78
JP Abgrall53f17a92014-02-12 14:02:41 -080079static const struct tok rstp_obj_port_role_values[] = {
The Android Open Source Project2949f582009-03-03 19:30:46 -080080 { 0x00, "Unknown" },
81 { 0x01, "Alternate" },
82 { 0x02, "Root" },
83 { 0x03, "Designated" },
84 { 0, NULL}
85};
86
Elliott Hughese2e3bd12017-05-15 10:59:29 -070087#define ND_TCHECK_BRIDGE_ID(p) ND_TCHECK2(*(p), 8)
88
The Android Open Source Project2949f582009-03-03 19:30:46 -080089static char *
90stp_print_bridge_id(const u_char *p)
91{
92 static char bridge_id_str[sizeof("pppp.aa:bb:cc:dd:ee:ff")];
93
94 snprintf(bridge_id_str, sizeof(bridge_id_str),
95 "%.2x%.2x.%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
96 p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
97
98 return bridge_id_str;
99}
100
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700101static int
Elliott Hughes892a68b2015-10-19 14:43:53 -0700102stp_print_config_bpdu(netdissect_options *ndo, const struct stp_bpdu_ *stp_bpdu,
103 u_int length)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800104{
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700105 ND_TCHECK(stp_bpdu->flags);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700106 ND_PRINT((ndo, ", Flags [%s]",
107 bittok2str(stp_bpdu_flag_values, "none", stp_bpdu->flags)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800108
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700109 ND_TCHECK(stp_bpdu->port_id);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700110 ND_PRINT((ndo, ", bridge-id %s.%04x, length %u",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800111 stp_print_bridge_id((const u_char *)&stp_bpdu->bridge_id),
Elliott Hughes892a68b2015-10-19 14:43:53 -0700112 EXTRACT_16BITS(&stp_bpdu->port_id), length));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800113
114 /* in non-verbose mode just print the bridge-id */
Elliott Hughes892a68b2015-10-19 14:43:53 -0700115 if (!ndo->ndo_vflag) {
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700116 return 1;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800117 }
118
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700119 ND_TCHECK(stp_bpdu->forward_delay);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700120 ND_PRINT((ndo, "\n\tmessage-age %.2fs, max-age %.2fs"
The Android Open Source Project2949f582009-03-03 19:30:46 -0800121 ", hello-time %.2fs, forwarding-delay %.2fs",
122 (float)EXTRACT_16BITS(&stp_bpdu->message_age) / STP_TIME_BASE,
123 (float)EXTRACT_16BITS(&stp_bpdu->max_age) / STP_TIME_BASE,
124 (float)EXTRACT_16BITS(&stp_bpdu->hello_time) / STP_TIME_BASE,
Elliott Hughes892a68b2015-10-19 14:43:53 -0700125 (float)EXTRACT_16BITS(&stp_bpdu->forward_delay) / STP_TIME_BASE));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800126
Elliott Hughes892a68b2015-10-19 14:43:53 -0700127 ND_PRINT((ndo, "\n\troot-id %s, root-pathcost %u",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800128 stp_print_bridge_id((const u_char *)&stp_bpdu->root_id),
Elliott Hughes892a68b2015-10-19 14:43:53 -0700129 EXTRACT_32BITS(&stp_bpdu->root_path_cost)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800130
131 /* Port role is only valid for 802.1w */
132 if (stp_bpdu->protocol_version == STP_PROTO_RAPID) {
Elliott Hughes892a68b2015-10-19 14:43:53 -0700133 ND_PRINT((ndo, ", port-role %s",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800134 tok2str(rstp_obj_port_role_values, "Unknown",
Elliott Hughes892a68b2015-10-19 14:43:53 -0700135 RSTP_EXTRACT_PORT_ROLE(stp_bpdu->flags))));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800136 }
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700137 return 1;
138
139trunc:
140 return 0;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800141}
142
143/*
144 * MSTP packet format
145 * Ref. IEEE 802.1Q 2003 Ed. Section 14
146 *
147 * MSTP BPDU
148 *
149 * 2 - bytes Protocol Id
Elliott Hughes892a68b2015-10-19 14:43:53 -0700150 * 1 - byte Protocol Ver.
The Android Open Source Project2949f582009-03-03 19:30:46 -0800151 * 1 - byte BPDU tye
152 * 1 - byte Flags
153 * 8 - bytes CIST Root Identifier
154 * 4 - bytes CIST External Path Cost
155 * 8 - bytes CIST Regional Root Identifier
156 * 2 - bytes CIST Port Identifier
157 * 2 - bytes Message Age
158 * 2 - bytes Max age
159 * 2 - bytes Hello Time
160 * 2 - bytes Forward delay
161 * 1 - byte Version 1 length. Must be 0
162 * 2 - bytes Version 3 length
163 * 1 - byte Config Identifier
164 * 32 - bytes Config Name
165 * 2 - bytes Revision level
166 * 16 - bytes Config Digest [MD5]
167 * 4 - bytes CIST Internal Root Path Cost
168 * 8 - bytes CIST Bridge Identifier
169 * 1 - byte CIST Remaining Hops
170 * 16 - bytes MSTI information [Max 64 MSTI, each 16 bytes]
171 *
JP Abgrall53f17a92014-02-12 14:02:41 -0800172 *
173 * SPB BPDU
174 * Ref. IEEE 802.1aq. Section 14
175 *
176 * 2 - bytes Version 4 length
Elliott Hughes892a68b2015-10-19 14:43:53 -0700177 * 1 - byte Aux Config Identifier
JP Abgrall53f17a92014-02-12 14:02:41 -0800178 * 32 - bytes Aux Config Name
179 * 2 - bytes Aux Revision level
180 * 16 - bytes Aux Config Digest [MD5]
Elliott Hughes892a68b2015-10-19 14:43:53 -0700181 * 1 - byte (1 - 2) Agreement Number
JP Abgrall53f17a92014-02-12 14:02:41 -0800182 * (3 - 4) Discarded Agreement Number
183 * (5) Agreement Valid Flag
184 * (6) Restricted Role Flag
185 * (7 - 8) Unused sent zero
186 * 1 - byte Unused
187 * 1 - byte (1 - 4) Agreement Digest Format Identifier
188 * (5 - 8) Agreement Digest Format Capabilities
189 * 1 - byte (1 - 4) Agreement Digest Convention Identifier
190 * (5 - 8) Agreement Digest Convention Capabilities
191 * 2 - bytes Agreement Digest Edge Count
192 * 8 - byte Reserved Set
193 * 20 - bytes Computed Topology Digest
194 *
195 *
The Android Open Source Project2949f582009-03-03 19:30:46 -0800196 * MSTI Payload
197 *
198 * 1 - byte MSTI flag
199 * 8 - bytes MSTI Regional Root Identifier
200 * 4 - bytes MSTI Regional Path Cost
201 * 1 - byte MSTI Bridge Priority
202 * 1 - byte MSTI Port Priority
203 * 1 - byte MSTI Remaining Hops
JP Abgrall53f17a92014-02-12 14:02:41 -0800204 *
The Android Open Source Project2949f582009-03-03 19:30:46 -0800205 */
206
207#define MST_BPDU_MSTI_LENGTH 16
208#define MST_BPDU_CONFIG_INFO_LENGTH 64
209
210/* Offsets of fields from the begginning for the packet */
211#define MST_BPDU_VER3_LEN_OFFSET 36
212#define MST_BPDU_CONFIG_NAME_OFFSET 39
213#define MST_BPDU_CONFIG_DIGEST_OFFSET 73
214#define MST_BPDU_CIST_INT_PATH_COST_OFFSET 89
215#define MST_BPDU_CIST_BRIDGE_ID_OFFSET 93
216#define MST_BPDU_CIST_REMAIN_HOPS_OFFSET 101
217#define MST_BPDU_MSTI_OFFSET 102
218/* Offsets within an MSTI */
219#define MST_BPDU_MSTI_ROOT_PRIO_OFFSET 1
220#define MST_BPDU_MSTI_ROOT_PATH_COST_OFFSET 9
221#define MST_BPDU_MSTI_BRIDGE_PRIO_OFFSET 13
222#define MST_BPDU_MSTI_PORT_PRIO_OFFSET 14
223#define MST_BPDU_MSTI_REMAIN_HOPS_OFFSET 15
224
JP Abgrall53f17a92014-02-12 14:02:41 -0800225#define SPB_BPDU_MIN_LEN 87
226#define SPB_BPDU_CONFIG_NAME_OFFSET 3
227#define SPB_BPDU_CONFIG_REV_OFFSET SPB_BPDU_CONFIG_NAME_OFFSET + 32
228#define SPB_BPDU_CONFIG_DIGEST_OFFSET SPB_BPDU_CONFIG_REV_OFFSET + 2
229#define SPB_BPDU_AGREEMENT_OFFSET SPB_BPDU_CONFIG_DIGEST_OFFSET + 16
230#define SPB_BPDU_AGREEMENT_UNUSED_OFFSET SPB_BPDU_AGREEMENT_OFFSET + 1
231#define SPB_BPDU_AGREEMENT_FORMAT_OFFSET SPB_BPDU_AGREEMENT_UNUSED_OFFSET + 1
232#define SPB_BPDU_AGREEMENT_CON_OFFSET SPB_BPDU_AGREEMENT_FORMAT_OFFSET + 1
233#define SPB_BPDU_AGREEMENT_EDGE_OFFSET SPB_BPDU_AGREEMENT_CON_OFFSET + 1
234#define SPB_BPDU_AGREEMENT_RES1_OFFSET SPB_BPDU_AGREEMENT_EDGE_OFFSET + 2
235#define SPB_BPDU_AGREEMENT_RES2_OFFSET SPB_BPDU_AGREEMENT_RES1_OFFSET + 4
236#define SPB_BPDU_AGREEMENT_DIGEST_OFFSET SPB_BPDU_AGREEMENT_RES2_OFFSET + 4
237
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700238static int
Elliott Hughes892a68b2015-10-19 14:43:53 -0700239stp_print_mstp_bpdu(netdissect_options *ndo, const struct stp_bpdu_ *stp_bpdu,
240 u_int length)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800241{
JP Abgrall53f17a92014-02-12 14:02:41 -0800242 const u_char *ptr;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700243 uint16_t v3len;
244 uint16_t len;
245 uint16_t msti;
JP Abgrall53f17a92014-02-12 14:02:41 -0800246 u_int offset;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800247
248 ptr = (const u_char *)stp_bpdu;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700249 ND_PRINT((ndo, ", CIST Flags [%s], length %u",
250 bittok2str(stp_bpdu_flag_values, "none", stp_bpdu->flags), length));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800251
252 /*
JP Abgrall53f17a92014-02-12 14:02:41 -0800253 * in non-verbose mode just print the flags.
The Android Open Source Project2949f582009-03-03 19:30:46 -0800254 */
Elliott Hughes892a68b2015-10-19 14:43:53 -0700255 if (!ndo->ndo_vflag) {
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700256 return 1;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800257 }
258
Elliott Hughes892a68b2015-10-19 14:43:53 -0700259 ND_PRINT((ndo, "\n\tport-role %s, ",
JP Abgrall53f17a92014-02-12 14:02:41 -0800260 tok2str(rstp_obj_port_role_values, "Unknown",
Elliott Hughes892a68b2015-10-19 14:43:53 -0700261 RSTP_EXTRACT_PORT_ROLE(stp_bpdu->flags))));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800262
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700263 ND_TCHECK(stp_bpdu->root_path_cost);
264 ND_PRINT((ndo, "CIST root-id %s, CIST ext-pathcost %u",
JP Abgrall53f17a92014-02-12 14:02:41 -0800265 stp_print_bridge_id((const u_char *)&stp_bpdu->root_id),
Elliott Hughes892a68b2015-10-19 14:43:53 -0700266 EXTRACT_32BITS(&stp_bpdu->root_path_cost)));
JP Abgrall53f17a92014-02-12 14:02:41 -0800267
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700268 ND_TCHECK(stp_bpdu->bridge_id);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700269 ND_PRINT((ndo, "\n\tCIST regional-root-id %s, ",
270 stp_print_bridge_id((const u_char *)&stp_bpdu->bridge_id)));
JP Abgrall53f17a92014-02-12 14:02:41 -0800271
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700272 ND_TCHECK(stp_bpdu->port_id);
273 ND_PRINT((ndo, "CIST port-id %04x,", EXTRACT_16BITS(&stp_bpdu->port_id)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800274
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700275 ND_TCHECK(stp_bpdu->forward_delay);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700276 ND_PRINT((ndo, "\n\tmessage-age %.2fs, max-age %.2fs"
The Android Open Source Project2949f582009-03-03 19:30:46 -0800277 ", hello-time %.2fs, forwarding-delay %.2fs",
278 (float)EXTRACT_16BITS(&stp_bpdu->message_age) / STP_TIME_BASE,
279 (float)EXTRACT_16BITS(&stp_bpdu->max_age) / STP_TIME_BASE,
280 (float)EXTRACT_16BITS(&stp_bpdu->hello_time) / STP_TIME_BASE,
Elliott Hughes892a68b2015-10-19 14:43:53 -0700281 (float)EXTRACT_16BITS(&stp_bpdu->forward_delay) / STP_TIME_BASE));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800282
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700283 ND_TCHECK_16BITS(ptr + MST_BPDU_VER3_LEN_OFFSET);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700284 ND_PRINT((ndo, "\n\tv3len %d, ", EXTRACT_16BITS(ptr + MST_BPDU_VER3_LEN_OFFSET)));
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700285 ND_TCHECK_32BITS(ptr + MST_BPDU_CONFIG_DIGEST_OFFSET + 12);
286 ND_PRINT((ndo, "MCID Name "));
287 if (fn_printzp(ndo, ptr + MST_BPDU_CONFIG_NAME_OFFSET, 32, ndo->ndo_snapend))
288 goto trunc;
289 ND_PRINT((ndo, ", rev %u,"
JP Abgrall53f17a92014-02-12 14:02:41 -0800290 "\n\t\tdigest %08x%08x%08x%08x, ",
JP Abgrall53f17a92014-02-12 14:02:41 -0800291 EXTRACT_16BITS(ptr + MST_BPDU_CONFIG_NAME_OFFSET + 32),
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700292 EXTRACT_32BITS(ptr + MST_BPDU_CONFIG_DIGEST_OFFSET),
293 EXTRACT_32BITS(ptr + MST_BPDU_CONFIG_DIGEST_OFFSET + 4),
JP Abgrall53f17a92014-02-12 14:02:41 -0800294 EXTRACT_32BITS(ptr + MST_BPDU_CONFIG_DIGEST_OFFSET + 8),
Elliott Hughes892a68b2015-10-19 14:43:53 -0700295 EXTRACT_32BITS(ptr + MST_BPDU_CONFIG_DIGEST_OFFSET + 12)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800296
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700297 ND_TCHECK_32BITS(ptr + MST_BPDU_CIST_INT_PATH_COST_OFFSET);
298 ND_PRINT((ndo, "CIST int-root-pathcost %u,",
Elliott Hughes892a68b2015-10-19 14:43:53 -0700299 EXTRACT_32BITS(ptr + MST_BPDU_CIST_INT_PATH_COST_OFFSET)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800300
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700301 ND_TCHECK_BRIDGE_ID(ptr + MST_BPDU_CIST_BRIDGE_ID_OFFSET);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700302 ND_PRINT((ndo, "\n\tCIST bridge-id %s, ",
303 stp_print_bridge_id(ptr + MST_BPDU_CIST_BRIDGE_ID_OFFSET)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800304
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700305 ND_TCHECK(ptr[MST_BPDU_CIST_REMAIN_HOPS_OFFSET]);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700306 ND_PRINT((ndo, "CIST remaining-hops %d", ptr[MST_BPDU_CIST_REMAIN_HOPS_OFFSET]));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800307
308 /* Dump all MSTI's */
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700309 ND_TCHECK_16BITS(ptr + MST_BPDU_VER3_LEN_OFFSET);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800310 v3len = EXTRACT_16BITS(ptr + MST_BPDU_VER3_LEN_OFFSET);
311 if (v3len > MST_BPDU_CONFIG_INFO_LENGTH) {
312 len = v3len - MST_BPDU_CONFIG_INFO_LENGTH;
313 offset = MST_BPDU_MSTI_OFFSET;
314 while (len >= MST_BPDU_MSTI_LENGTH) {
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700315 ND_TCHECK2(*(ptr + offset), MST_BPDU_MSTI_LENGTH);
316
The Android Open Source Project2949f582009-03-03 19:30:46 -0800317 msti = EXTRACT_16BITS(ptr + offset +
318 MST_BPDU_MSTI_ROOT_PRIO_OFFSET);
319 msti = msti & 0x0FFF;
320
Elliott Hughes892a68b2015-10-19 14:43:53 -0700321 ND_PRINT((ndo, "\n\tMSTI %d, Flags [%s], port-role %s",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800322 msti, bittok2str(stp_bpdu_flag_values, "none", ptr[offset]),
323 tok2str(rstp_obj_port_role_values, "Unknown",
Elliott Hughes892a68b2015-10-19 14:43:53 -0700324 RSTP_EXTRACT_PORT_ROLE(ptr[offset]))));
325 ND_PRINT((ndo, "\n\t\tMSTI regional-root-id %s, pathcost %u",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800326 stp_print_bridge_id(ptr + offset +
327 MST_BPDU_MSTI_ROOT_PRIO_OFFSET),
328 EXTRACT_32BITS(ptr + offset +
Elliott Hughes892a68b2015-10-19 14:43:53 -0700329 MST_BPDU_MSTI_ROOT_PATH_COST_OFFSET)));
330 ND_PRINT((ndo, "\n\t\tMSTI bridge-prio %d, port-prio %d, hops %d",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800331 ptr[offset + MST_BPDU_MSTI_BRIDGE_PRIO_OFFSET] >> 4,
332 ptr[offset + MST_BPDU_MSTI_PORT_PRIO_OFFSET] >> 4,
Elliott Hughes892a68b2015-10-19 14:43:53 -0700333 ptr[offset + MST_BPDU_MSTI_REMAIN_HOPS_OFFSET]));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800334
335 len -= MST_BPDU_MSTI_LENGTH;
336 offset += MST_BPDU_MSTI_LENGTH;
337 }
338 }
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700339 return 1;
340
341trunc:
342 return 0;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800343}
344
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700345static int
Elliott Hughes892a68b2015-10-19 14:43:53 -0700346stp_print_spb_bpdu(netdissect_options *ndo, const struct stp_bpdu_ *stp_bpdu,
347 u_int offset)
JP Abgrall53f17a92014-02-12 14:02:41 -0800348{
349 const u_char *ptr;
350
351 /*
352 * in non-verbose mode don't print anything.
353 */
Elliott Hughes892a68b2015-10-19 14:43:53 -0700354 if (!ndo->ndo_vflag) {
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700355 return 1;
JP Abgrall53f17a92014-02-12 14:02:41 -0800356 }
357
358 ptr = (const u_char *)stp_bpdu;
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700359 ND_TCHECK_32BITS(ptr + offset + SPB_BPDU_AGREEMENT_DIGEST_OFFSET + 16);
360
361 ND_PRINT((ndo, "\n\tv4len %d, ", EXTRACT_16BITS (ptr + offset)));
362 ND_PRINT((ndo, "AUXMCID Name "));
363 if (fn_printzp(ndo, ptr + offset + SPB_BPDU_CONFIG_NAME_OFFSET, 32,
364 ndo->ndo_snapend))
365 goto trunc;
366 ND_PRINT((ndo, ", Rev %u,\n\t\tdigest %08x%08x%08x%08x",
JP Abgrall53f17a92014-02-12 14:02:41 -0800367 EXTRACT_16BITS(ptr + offset + SPB_BPDU_CONFIG_REV_OFFSET),
368 EXTRACT_32BITS(ptr + offset + SPB_BPDU_CONFIG_DIGEST_OFFSET),
369 EXTRACT_32BITS(ptr + offset + SPB_BPDU_CONFIG_DIGEST_OFFSET + 4),
370 EXTRACT_32BITS(ptr + offset + SPB_BPDU_CONFIG_DIGEST_OFFSET + 8),
Elliott Hughes892a68b2015-10-19 14:43:53 -0700371 EXTRACT_32BITS(ptr + offset + SPB_BPDU_CONFIG_DIGEST_OFFSET + 12)));
372
373 ND_PRINT((ndo, "\n\tAgreement num %d, Discarded Agreement num %d, Agreement valid-"
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700374 "flag %d,\n\tRestricted role-flag: %d, Format id %d cap %d, "
375 "Convention id %d cap %d,\n\tEdge count %d, "
JP Abgrall53f17a92014-02-12 14:02:41 -0800376 "Agreement digest %08x%08x%08x%08x%08x\n",
Elliott Hughes892a68b2015-10-19 14:43:53 -0700377 ptr[offset + SPB_BPDU_AGREEMENT_OFFSET]>>6,
JP Abgrall53f17a92014-02-12 14:02:41 -0800378 ptr[offset + SPB_BPDU_AGREEMENT_OFFSET]>>4 & 0x3,
379 ptr[offset + SPB_BPDU_AGREEMENT_OFFSET]>>3 & 0x1,
380 ptr[offset + SPB_BPDU_AGREEMENT_OFFSET]>>2 & 0x1,
381 ptr[offset + SPB_BPDU_AGREEMENT_FORMAT_OFFSET]>>4,
382 ptr[offset + SPB_BPDU_AGREEMENT_FORMAT_OFFSET]&0x00ff,
383 ptr[offset + SPB_BPDU_AGREEMENT_CON_OFFSET]>>4,
384 ptr[offset + SPB_BPDU_AGREEMENT_CON_OFFSET]&0x00ff,
385 EXTRACT_16BITS(ptr + offset + SPB_BPDU_AGREEMENT_EDGE_OFFSET),
386 EXTRACT_32BITS(ptr + offset + SPB_BPDU_AGREEMENT_DIGEST_OFFSET),
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700387 EXTRACT_32BITS(ptr + offset + SPB_BPDU_AGREEMENT_DIGEST_OFFSET+4),
388 EXTRACT_32BITS(ptr + offset + SPB_BPDU_AGREEMENT_DIGEST_OFFSET+8),
389 EXTRACT_32BITS(ptr + offset + SPB_BPDU_AGREEMENT_DIGEST_OFFSET+12),
390 EXTRACT_32BITS(ptr + offset + SPB_BPDU_AGREEMENT_DIGEST_OFFSET+16)));
391 return 1;
392
393trunc:
394 return 0;
JP Abgrall53f17a92014-02-12 14:02:41 -0800395}
396
The Android Open Source Project2949f582009-03-03 19:30:46 -0800397/*
JP Abgrall53f17a92014-02-12 14:02:41 -0800398 * Print 802.1d / 802.1w / 802.1q (mstp) / 802.1aq (spb) packets.
The Android Open Source Project2949f582009-03-03 19:30:46 -0800399 */
400void
Elliott Hughes892a68b2015-10-19 14:43:53 -0700401stp_print(netdissect_options *ndo, const u_char *p, u_int length)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800402{
403 const struct stp_bpdu_ *stp_bpdu;
JP Abgrall53f17a92014-02-12 14:02:41 -0800404 u_int mstp_len;
405 u_int spb_len;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700406
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700407 stp_bpdu = (const struct stp_bpdu_*)p;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800408
409 /* Minimum STP Frame size. */
410 if (length < 4)
411 goto trunc;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700412
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700413 ND_TCHECK(stp_bpdu->protocol_id);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800414 if (EXTRACT_16BITS(&stp_bpdu->protocol_id)) {
Elliott Hughes892a68b2015-10-19 14:43:53 -0700415 ND_PRINT((ndo, "unknown STP version, length %u", length));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800416 return;
417 }
418
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700419 ND_TCHECK(stp_bpdu->protocol_version);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700420 ND_PRINT((ndo, "STP %s", tok2str(stp_proto_values, "Unknown STP protocol (0x%02x)",
421 stp_bpdu->protocol_version)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800422
423 switch (stp_bpdu->protocol_version) {
424 case STP_PROTO_REGULAR:
425 case STP_PROTO_RAPID:
426 case STP_PROTO_MSTP:
JP Abgrall53f17a92014-02-12 14:02:41 -0800427 case STP_PROTO_SPB:
The Android Open Source Project2949f582009-03-03 19:30:46 -0800428 break;
429 default:
430 return;
431 }
432
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700433 ND_TCHECK(stp_bpdu->bpdu_type);
Elliott Hughes892a68b2015-10-19 14:43:53 -0700434 ND_PRINT((ndo, ", %s", tok2str(stp_bpdu_type_values, "Unknown BPDU Type (0x%02x)",
435 stp_bpdu->bpdu_type)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800436
437 switch (stp_bpdu->bpdu_type) {
438 case STP_BPDU_TYPE_CONFIG:
439 if (length < sizeof(struct stp_bpdu_) - 1) {
440 goto trunc;
441 }
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700442 if (!stp_print_config_bpdu(ndo, stp_bpdu, length))
443 goto trunc;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800444 break;
445
446 case STP_BPDU_TYPE_RSTP:
447 if (stp_bpdu->protocol_version == STP_PROTO_RAPID) {
448 if (length < sizeof(struct stp_bpdu_)) {
449 goto trunc;
450 }
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700451 if (!stp_print_config_bpdu(ndo, stp_bpdu, length))
452 goto trunc;
JP Abgrall53f17a92014-02-12 14:02:41 -0800453 } else if (stp_bpdu->protocol_version == STP_PROTO_MSTP ||
454 stp_bpdu->protocol_version == STP_PROTO_SPB) {
The Android Open Source Project2949f582009-03-03 19:30:46 -0800455 if (length < STP_BPDU_MSTP_MIN_LEN) {
456 goto trunc;
457 }
JP Abgrall53f17a92014-02-12 14:02:41 -0800458
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700459 ND_TCHECK(stp_bpdu->v1_length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800460 if (stp_bpdu->v1_length != 0) {
461 /* FIX ME: Emit a message here ? */
462 goto trunc;
463 }
JP Abgrall53f17a92014-02-12 14:02:41 -0800464
The Android Open Source Project2949f582009-03-03 19:30:46 -0800465 /* Validate v3 length */
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700466 ND_TCHECK_16BITS(p + MST_BPDU_VER3_LEN_OFFSET);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800467 mstp_len = EXTRACT_16BITS(p + MST_BPDU_VER3_LEN_OFFSET);
468 mstp_len += 2; /* length encoding itself is 2 bytes */
469 if (length < (sizeof(struct stp_bpdu_) + mstp_len)) {
470 goto trunc;
471 }
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700472 if (!stp_print_mstp_bpdu(ndo, stp_bpdu, length))
473 goto trunc;
JP Abgrall53f17a92014-02-12 14:02:41 -0800474
475 if (stp_bpdu->protocol_version == STP_PROTO_SPB)
476 {
477 /* Validate v4 length */
478 spb_len = EXTRACT_16BITS (p + MST_BPDU_VER3_LEN_OFFSET + mstp_len);
479 spb_len += 2;
480 if (length < (sizeof(struct stp_bpdu_) + mstp_len + spb_len) ||
481 spb_len < SPB_BPDU_MIN_LEN) {
482 goto trunc;
483 }
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700484 if (!stp_print_spb_bpdu(ndo, stp_bpdu, (sizeof(struct stp_bpdu_) + mstp_len)))
485 goto trunc;
JP Abgrall53f17a92014-02-12 14:02:41 -0800486 }
The Android Open Source Project2949f582009-03-03 19:30:46 -0800487 }
488 break;
489
490 case STP_BPDU_TYPE_TOPO_CHANGE:
491 /* always empty message - just break out */
492 break;
493
494 default:
495 break;
496 }
497
498 return;
Elliott Hughese2e3bd12017-05-15 10:59:29 -0700499trunc:
Elliott Hughes892a68b2015-10-19 14:43:53 -0700500 ND_PRINT((ndo, "[|stp %d]", length));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800501}
502
503/*
504 * Local Variables:
505 * c-style: whitesmith
506 * c-basic-offset: 4
507 * End:
508 */