print-slow.c revision 1.1.1.7 1 1.1 christos /*
2 1.1 christos * Copyright (c) 1998-2006 The TCPDUMP project
3 1.1 christos *
4 1.1 christos * Redistribution and use in source and binary forms, with or without
5 1.1 christos * modification, are permitted provided that: (1) source code
6 1.1 christos * distributions retain the above copyright notice and this paragraph
7 1.1 christos * in its entirety, and (2) distributions including binary code include
8 1.1 christos * the above copyright notice and this paragraph in its entirety in
9 1.1 christos * the documentation or other materials provided with the distribution.
10 1.1 christos * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
11 1.1 christos * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
12 1.1 christos * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
13 1.1 christos * FOR A PARTICULAR PURPOSE.
14 1.1 christos *
15 1.1 christos * support for the IEEE "slow protocols" LACP, MARKER as per 802.3ad
16 1.1 christos * OAM as per 802.3ah
17 1.1 christos *
18 1.1.1.7 christos * Original code by Hannes Gredler (hannes (at) gredler.at)
19 1.1 christos */
20 1.1 christos
21 1.1.1.6 spz /* \summary: IEEE "slow protocols" (802.3ad/802.3ah) printer */
22 1.1.1.6 spz
23 1.1 christos #ifdef HAVE_CONFIG_H
24 1.1 christos #include "config.h"
25 1.1 christos #endif
26 1.1 christos
27 1.1.1.5 christos #include <netdissect-stdinc.h>
28 1.1 christos
29 1.1.1.5 christos #include "netdissect.h"
30 1.1 christos #include "extract.h"
31 1.1 christos #include "addrtoname.h"
32 1.1 christos #include "ether.h"
33 1.1 christos #include "oui.h"
34 1.1 christos
35 1.1 christos #define SLOW_PROTO_LACP 1
36 1.1 christos #define SLOW_PROTO_MARKER 2
37 1.1 christos #define SLOW_PROTO_OAM 3
38 1.1 christos
39 1.1 christos #define LACP_VERSION 1
40 1.1 christos #define MARKER_VERSION 1
41 1.1 christos
42 1.1 christos static const struct tok slow_proto_values[] = {
43 1.1 christos { SLOW_PROTO_LACP, "LACP" },
44 1.1 christos { SLOW_PROTO_MARKER, "MARKER" },
45 1.1 christos { SLOW_PROTO_OAM, "OAM" },
46 1.1 christos { 0, NULL}
47 1.1 christos };
48 1.1 christos
49 1.1 christos static const struct tok slow_oam_flag_values[] = {
50 1.1 christos { 0x0001, "Link Fault" },
51 1.1 christos { 0x0002, "Dying Gasp" },
52 1.1 christos { 0x0004, "Critical Event" },
53 1.1 christos { 0x0008, "Local Evaluating" },
54 1.1 christos { 0x0010, "Local Stable" },
55 1.1 christos { 0x0020, "Remote Evaluating" },
56 1.1 christos { 0x0040, "Remote Stable" },
57 1.1 christos { 0, NULL}
58 1.1.1.3 christos };
59 1.1 christos
60 1.1 christos #define SLOW_OAM_CODE_INFO 0x00
61 1.1 christos #define SLOW_OAM_CODE_EVENT_NOTIF 0x01
62 1.1 christos #define SLOW_OAM_CODE_VAR_REQUEST 0x02
63 1.1 christos #define SLOW_OAM_CODE_VAR_RESPONSE 0x03
64 1.1 christos #define SLOW_OAM_CODE_LOOPBACK_CTRL 0x04
65 1.1 christos #define SLOW_OAM_CODE_PRIVATE 0xfe
66 1.1 christos
67 1.1 christos static const struct tok slow_oam_code_values[] = {
68 1.1 christos { SLOW_OAM_CODE_INFO, "Information" },
69 1.1 christos { SLOW_OAM_CODE_EVENT_NOTIF, "Event Notification" },
70 1.1 christos { SLOW_OAM_CODE_VAR_REQUEST, "Variable Request" },
71 1.1 christos { SLOW_OAM_CODE_VAR_RESPONSE, "Variable Response" },
72 1.1 christos { SLOW_OAM_CODE_LOOPBACK_CTRL, "Loopback Control" },
73 1.1 christos { SLOW_OAM_CODE_PRIVATE, "Vendor Private" },
74 1.1 christos { 0, NULL}
75 1.1 christos };
76 1.1 christos
77 1.1 christos struct slow_oam_info_t {
78 1.1.1.3 christos uint8_t info_type;
79 1.1.1.3 christos uint8_t info_length;
80 1.1.1.3 christos uint8_t oam_version;
81 1.1.1.3 christos uint8_t revision[2];
82 1.1.1.3 christos uint8_t state;
83 1.1.1.3 christos uint8_t oam_config;
84 1.1.1.3 christos uint8_t oam_pdu_config[2];
85 1.1.1.3 christos uint8_t oui[3];
86 1.1.1.3 christos uint8_t vendor_private[4];
87 1.1 christos };
88 1.1 christos
89 1.1 christos #define SLOW_OAM_INFO_TYPE_END_OF_TLV 0x00
90 1.1 christos #define SLOW_OAM_INFO_TYPE_LOCAL 0x01
91 1.1 christos #define SLOW_OAM_INFO_TYPE_REMOTE 0x02
92 1.1 christos #define SLOW_OAM_INFO_TYPE_ORG_SPECIFIC 0xfe
93 1.1 christos
94 1.1 christos static const struct tok slow_oam_info_type_values[] = {
95 1.1 christos { SLOW_OAM_INFO_TYPE_END_OF_TLV, "End of TLV marker" },
96 1.1 christos { SLOW_OAM_INFO_TYPE_LOCAL, "Local" },
97 1.1 christos { SLOW_OAM_INFO_TYPE_REMOTE, "Remote" },
98 1.1 christos { SLOW_OAM_INFO_TYPE_ORG_SPECIFIC, "Organization specific" },
99 1.1 christos { 0, NULL}
100 1.1 christos };
101 1.1 christos
102 1.1 christos #define OAM_INFO_TYPE_PARSER_MASK 0x3
103 1.1 christos static const struct tok slow_oam_info_type_state_parser_values[] = {
104 1.1 christos { 0x00, "forwarding" },
105 1.1 christos { 0x01, "looping back" },
106 1.1 christos { 0x02, "discarding" },
107 1.1 christos { 0x03, "reserved" },
108 1.1 christos { 0, NULL}
109 1.1 christos };
110 1.1 christos
111 1.1 christos #define OAM_INFO_TYPE_MUX_MASK 0x4
112 1.1 christos static const struct tok slow_oam_info_type_state_mux_values[] = {
113 1.1 christos { 0x00, "forwarding" },
114 1.1 christos { 0x04, "discarding" },
115 1.1 christos { 0, NULL}
116 1.1 christos };
117 1.1 christos
118 1.1 christos static const struct tok slow_oam_info_type_oam_config_values[] = {
119 1.1 christos { 0x01, "Active" },
120 1.1 christos { 0x02, "Unidirectional" },
121 1.1 christos { 0x04, "Remote-Loopback" },
122 1.1 christos { 0x08, "Link-Events" },
123 1.1 christos { 0x10, "Variable-Retrieval" },
124 1.1 christos { 0, NULL}
125 1.1 christos };
126 1.1 christos
127 1.1 christos /* 11 Bits */
128 1.1 christos #define OAM_INFO_TYPE_PDU_SIZE_MASK 0x7ff
129 1.1 christos
130 1.1 christos #define SLOW_OAM_LINK_EVENT_END_OF_TLV 0x00
131 1.1 christos #define SLOW_OAM_LINK_EVENT_ERR_SYM_PER 0x01
132 1.1 christos #define SLOW_OAM_LINK_EVENT_ERR_FRM 0x02
133 1.1 christos #define SLOW_OAM_LINK_EVENT_ERR_FRM_PER 0x03
134 1.1 christos #define SLOW_OAM_LINK_EVENT_ERR_FRM_SUMM 0x04
135 1.1 christos #define SLOW_OAM_LINK_EVENT_ORG_SPECIFIC 0xfe
136 1.1 christos
137 1.1 christos static const struct tok slow_oam_link_event_values[] = {
138 1.1 christos { SLOW_OAM_LINK_EVENT_END_OF_TLV, "End of TLV marker" },
139 1.1 christos { SLOW_OAM_LINK_EVENT_ERR_SYM_PER, "Errored Symbol Period Event" },
140 1.1 christos { SLOW_OAM_LINK_EVENT_ERR_FRM, "Errored Frame Event" },
141 1.1 christos { SLOW_OAM_LINK_EVENT_ERR_FRM_PER, "Errored Frame Period Event" },
142 1.1 christos { SLOW_OAM_LINK_EVENT_ERR_FRM_SUMM, "Errored Frame Seconds Summary Event" },
143 1.1 christos { SLOW_OAM_LINK_EVENT_ORG_SPECIFIC, "Organization specific" },
144 1.1 christos { 0, NULL}
145 1.1 christos };
146 1.1 christos
147 1.1 christos struct slow_oam_link_event_t {
148 1.1.1.3 christos uint8_t event_type;
149 1.1.1.3 christos uint8_t event_length;
150 1.1.1.3 christos uint8_t time_stamp[2];
151 1.1.1.3 christos uint8_t window[8];
152 1.1.1.3 christos uint8_t threshold[8];
153 1.1.1.3 christos uint8_t errors[8];
154 1.1.1.3 christos uint8_t errors_running_total[8];
155 1.1.1.3 christos uint8_t event_running_total[4];
156 1.1 christos };
157 1.1 christos
158 1.1 christos struct slow_oam_variablerequest_t {
159 1.1.1.3 christos uint8_t branch;
160 1.1.1.3 christos uint8_t leaf[2];
161 1.1 christos };
162 1.1 christos
163 1.1 christos struct slow_oam_variableresponse_t {
164 1.1.1.3 christos uint8_t branch;
165 1.1.1.3 christos uint8_t leaf[2];
166 1.1.1.3 christos uint8_t length;
167 1.1 christos };
168 1.1 christos
169 1.1 christos struct slow_oam_loopbackctrl_t {
170 1.1.1.3 christos uint8_t command;
171 1.1 christos };
172 1.1 christos
173 1.1 christos static const struct tok slow_oam_loopbackctrl_cmd_values[] = {
174 1.1 christos { 0x01, "Enable OAM Remote Loopback" },
175 1.1 christos { 0x02, "Disable OAM Remote Loopback" },
176 1.1 christos { 0, NULL}
177 1.1 christos };
178 1.1 christos
179 1.1 christos struct tlv_header_t {
180 1.1.1.3 christos uint8_t type;
181 1.1.1.3 christos uint8_t length;
182 1.1 christos };
183 1.1 christos
184 1.1.1.6 spz #define LACP_MARKER_TLV_TERMINATOR 0x00 /* same code for LACP and Marker */
185 1.1.1.6 spz
186 1.1.1.6 spz #define LACP_TLV_ACTOR_INFO 0x01
187 1.1.1.6 spz #define LACP_TLV_PARTNER_INFO 0x02
188 1.1.1.6 spz #define LACP_TLV_COLLECTOR_INFO 0x03
189 1.1 christos
190 1.1.1.6 spz #define MARKER_TLV_MARKER_INFO 0x01
191 1.1 christos
192 1.1 christos static const struct tok slow_tlv_values[] = {
193 1.1.1.6 spz { (SLOW_PROTO_LACP << 8) + LACP_MARKER_TLV_TERMINATOR, "Terminator"},
194 1.1 christos { (SLOW_PROTO_LACP << 8) + LACP_TLV_ACTOR_INFO, "Actor Information"},
195 1.1 christos { (SLOW_PROTO_LACP << 8) + LACP_TLV_PARTNER_INFO, "Partner Information"},
196 1.1 christos { (SLOW_PROTO_LACP << 8) + LACP_TLV_COLLECTOR_INFO, "Collector Information"},
197 1.1 christos
198 1.1.1.6 spz { (SLOW_PROTO_MARKER << 8) + LACP_MARKER_TLV_TERMINATOR, "Terminator"},
199 1.1 christos { (SLOW_PROTO_MARKER << 8) + MARKER_TLV_MARKER_INFO, "Marker Information"},
200 1.1 christos { 0, NULL}
201 1.1 christos };
202 1.1 christos
203 1.1 christos struct lacp_tlv_actor_partner_info_t {
204 1.1.1.3 christos uint8_t sys_pri[2];
205 1.1.1.3 christos uint8_t sys[ETHER_ADDR_LEN];
206 1.1.1.3 christos uint8_t key[2];
207 1.1.1.3 christos uint8_t port_pri[2];
208 1.1.1.3 christos uint8_t port[2];
209 1.1.1.3 christos uint8_t state;
210 1.1.1.3 christos uint8_t pad[3];
211 1.1.1.3 christos };
212 1.1 christos
213 1.1 christos static const struct tok lacp_tlv_actor_partner_info_state_values[] = {
214 1.1 christos { 0x01, "Activity"},
215 1.1 christos { 0x02, "Timeout"},
216 1.1 christos { 0x04, "Aggregation"},
217 1.1 christos { 0x08, "Synchronization"},
218 1.1 christos { 0x10, "Collecting"},
219 1.1 christos { 0x20, "Distributing"},
220 1.1 christos { 0x40, "Default"},
221 1.1 christos { 0x80, "Expired"},
222 1.1 christos { 0, NULL}
223 1.1 christos };
224 1.1 christos
225 1.1 christos struct lacp_tlv_collector_info_t {
226 1.1.1.3 christos uint8_t max_delay[2];
227 1.1.1.3 christos uint8_t pad[12];
228 1.1.1.3 christos };
229 1.1 christos
230 1.1 christos struct marker_tlv_marker_info_t {
231 1.1.1.3 christos uint8_t req_port[2];
232 1.1.1.3 christos uint8_t req_sys[ETHER_ADDR_LEN];
233 1.1.1.3 christos uint8_t req_trans_id[4];
234 1.1.1.3 christos uint8_t pad[2];
235 1.1.1.3 christos };
236 1.1 christos
237 1.1 christos struct lacp_marker_tlv_terminator_t {
238 1.1.1.3 christos uint8_t pad[50];
239 1.1.1.3 christos };
240 1.1 christos
241 1.1.1.6 spz static void slow_marker_lacp_print(netdissect_options *, register const u_char *, register u_int, u_int);
242 1.1.1.3 christos static void slow_oam_print(netdissect_options *, register const u_char *, register u_int);
243 1.1 christos
244 1.1 christos void
245 1.1.1.3 christos slow_print(netdissect_options *ndo,
246 1.1.1.4 christos register const u_char *pptr, register u_int len)
247 1.1.1.4 christos {
248 1.1 christos int print_version;
249 1.1.1.6 spz u_int subtype;
250 1.1 christos
251 1.1.1.6 spz if (len < 1)
252 1.1.1.6 spz goto tooshort;
253 1.1.1.6 spz ND_TCHECK(*pptr);
254 1.1.1.6 spz subtype = *pptr;
255 1.1 christos
256 1.1 christos /*
257 1.1 christos * Sanity checking of the header.
258 1.1 christos */
259 1.1.1.6 spz switch (subtype) {
260 1.1 christos case SLOW_PROTO_LACP:
261 1.1.1.6 spz if (len < 2)
262 1.1.1.6 spz goto tooshort;
263 1.1.1.6 spz ND_TCHECK(*(pptr+1));
264 1.1.1.6 spz if (*(pptr+1) != LACP_VERSION) {
265 1.1.1.6 spz ND_PRINT((ndo, "LACP version %u packet not supported", *(pptr+1)));
266 1.1 christos return;
267 1.1 christos }
268 1.1 christos print_version = 1;
269 1.1 christos break;
270 1.1 christos
271 1.1 christos case SLOW_PROTO_MARKER:
272 1.1.1.6 spz if (len < 2)
273 1.1.1.6 spz goto tooshort;
274 1.1.1.6 spz ND_TCHECK(*(pptr+1));
275 1.1.1.6 spz if (*(pptr+1) != MARKER_VERSION) {
276 1.1.1.6 spz ND_PRINT((ndo, "MARKER version %u packet not supported", *(pptr+1)));
277 1.1 christos return;
278 1.1 christos }
279 1.1 christos print_version = 1;
280 1.1 christos break;
281 1.1 christos
282 1.1 christos case SLOW_PROTO_OAM: /* fall through */
283 1.1 christos print_version = 0;
284 1.1 christos break;
285 1.1 christos
286 1.1 christos default:
287 1.1 christos /* print basic information and exit */
288 1.1 christos print_version = -1;
289 1.1 christos break;
290 1.1 christos }
291 1.1 christos
292 1.1.1.6 spz if (print_version == 1) {
293 1.1.1.3 christos ND_PRINT((ndo, "%sv%u, length %u",
294 1.1.1.6 spz tok2str(slow_proto_values, "unknown (%u)", subtype),
295 1.1.1.6 spz *(pptr+1),
296 1.1.1.3 christos len));
297 1.1 christos } else {
298 1.1 christos /* some slow protos don't have a version number in the header */
299 1.1.1.3 christos ND_PRINT((ndo, "%s, length %u",
300 1.1.1.6 spz tok2str(slow_proto_values, "unknown (%u)", subtype),
301 1.1.1.3 christos len));
302 1.1 christos }
303 1.1 christos
304 1.1 christos /* unrecognized subtype */
305 1.1 christos if (print_version == -1) {
306 1.1.1.3 christos print_unknown_data(ndo, pptr, "\n\t", len);
307 1.1 christos return;
308 1.1 christos }
309 1.1 christos
310 1.1.1.3 christos if (!ndo->ndo_vflag)
311 1.1 christos return;
312 1.1 christos
313 1.1.1.6 spz switch (subtype) {
314 1.1 christos default: /* should not happen */
315 1.1 christos break;
316 1.1 christos
317 1.1 christos case SLOW_PROTO_OAM:
318 1.1.1.6 spz /* skip subtype */
319 1.1.1.6 spz len -= 1;
320 1.1.1.6 spz pptr += 1;
321 1.1.1.6 spz slow_oam_print(ndo, pptr, len);
322 1.1 christos break;
323 1.1 christos
324 1.1 christos case SLOW_PROTO_LACP: /* LACP and MARKER share the same semantics */
325 1.1 christos case SLOW_PROTO_MARKER:
326 1.1.1.6 spz /* skip subtype and version */
327 1.1.1.6 spz len -= 2;
328 1.1.1.6 spz pptr += 2;
329 1.1.1.6 spz slow_marker_lacp_print(ndo, pptr, len, subtype);
330 1.1 christos break;
331 1.1 christos }
332 1.1 christos return;
333 1.1 christos
334 1.1.1.6 spz tooshort:
335 1.1.1.6 spz if (!ndo->ndo_vflag)
336 1.1.1.6 spz ND_PRINT((ndo, " (packet is too short)"));
337 1.1.1.6 spz else
338 1.1.1.6 spz ND_PRINT((ndo, "\n\t\t packet is too short"));
339 1.1.1.6 spz return;
340 1.1.1.6 spz
341 1.1 christos trunc:
342 1.1.1.6 spz if (!ndo->ndo_vflag)
343 1.1.1.6 spz ND_PRINT((ndo, " (packet exceeded snapshot)"));
344 1.1.1.6 spz else
345 1.1.1.6 spz ND_PRINT((ndo, "\n\t\t packet exceeded snapshot"));
346 1.1 christos }
347 1.1 christos
348 1.1.1.3 christos static void
349 1.1.1.3 christos slow_marker_lacp_print(netdissect_options *ndo,
350 1.1.1.6 spz register const u_char *tptr, register u_int tlen,
351 1.1.1.6 spz u_int proto_subtype)
352 1.1.1.4 christos {
353 1.1 christos const struct tlv_header_t *tlv_header;
354 1.1 christos const u_char *tlv_tptr;
355 1.1 christos u_int tlv_len, tlv_tlen;
356 1.1 christos
357 1.1 christos union {
358 1.1 christos const struct lacp_marker_tlv_terminator_t *lacp_marker_tlv_terminator;
359 1.1 christos const struct lacp_tlv_actor_partner_info_t *lacp_tlv_actor_partner_info;
360 1.1 christos const struct lacp_tlv_collector_info_t *lacp_tlv_collector_info;
361 1.1 christos const struct marker_tlv_marker_info_t *marker_tlv_marker_info;
362 1.1 christos } tlv_ptr;
363 1.1.1.3 christos
364 1.1 christos while(tlen>0) {
365 1.1.1.6 spz /* is the packet big enough to include the tlv header ? */
366 1.1.1.6 spz if (tlen < sizeof(struct tlv_header_t))
367 1.1.1.6 spz goto tooshort;
368 1.1 christos /* did we capture enough for fully decoding the tlv header ? */
369 1.1.1.3 christos ND_TCHECK2(*tptr, sizeof(struct tlv_header_t));
370 1.1 christos tlv_header = (const struct tlv_header_t *)tptr;
371 1.1 christos tlv_len = tlv_header->length;
372 1.1 christos
373 1.1.1.3 christos ND_PRINT((ndo, "\n\t%s TLV (0x%02x), length %u",
374 1.1 christos tok2str(slow_tlv_values,
375 1.1 christos "Unknown",
376 1.1.1.6 spz (proto_subtype << 8) + tlv_header->type),
377 1.1 christos tlv_header->type,
378 1.1.1.3 christos tlv_len));
379 1.1 christos
380 1.1.1.6 spz if (tlv_header->type == LACP_MARKER_TLV_TERMINATOR) {
381 1.1.1.6 spz /*
382 1.1.1.6 spz * This TLV has a length of zero, and means there are no
383 1.1.1.6 spz * more TLVs to process.
384 1.1.1.6 spz */
385 1.1 christos return;
386 1.1 christos }
387 1.1 christos
388 1.1.1.6 spz /* length includes the type and length fields */
389 1.1.1.6 spz if (tlv_len < sizeof(struct tlv_header_t)) {
390 1.1.1.6 spz ND_PRINT((ndo, "\n\t ERROR: illegal length - should be >= %lu",
391 1.1.1.6 spz (unsigned long) sizeof(struct tlv_header_t)));
392 1.1.1.6 spz return;
393 1.1.1.6 spz }
394 1.1 christos
395 1.1.1.6 spz /* is the packet big enough to include the tlv ? */
396 1.1.1.6 spz if (tlen < tlv_len)
397 1.1.1.6 spz goto tooshort;
398 1.1 christos /* did we capture enough for fully decoding the tlv ? */
399 1.1.1.3 christos ND_TCHECK2(*tptr, tlv_len);
400 1.1 christos
401 1.1.1.6 spz tlv_tptr=tptr+sizeof(struct tlv_header_t);
402 1.1.1.6 spz tlv_tlen=tlv_len-sizeof(struct tlv_header_t);
403 1.1.1.6 spz
404 1.1.1.6 spz switch((proto_subtype << 8) + tlv_header->type) {
405 1.1 christos
406 1.1 christos /* those two TLVs have the same structure -> fall through */
407 1.1 christos case ((SLOW_PROTO_LACP << 8) + LACP_TLV_ACTOR_INFO):
408 1.1 christos case ((SLOW_PROTO_LACP << 8) + LACP_TLV_PARTNER_INFO):
409 1.1.1.6 spz if (tlv_tlen !=
410 1.1.1.6 spz sizeof(struct lacp_tlv_actor_partner_info_t)) {
411 1.1.1.6 spz ND_PRINT((ndo, "\n\t ERROR: illegal length - should be %lu",
412 1.1.1.6 spz (unsigned long) (sizeof(struct tlv_header_t) + sizeof(struct lacp_tlv_actor_partner_info_t))));
413 1.1.1.6 spz goto badlength;
414 1.1.1.6 spz }
415 1.1.1.6 spz
416 1.1 christos tlv_ptr.lacp_tlv_actor_partner_info = (const struct lacp_tlv_actor_partner_info_t *)tlv_tptr;
417 1.1 christos
418 1.1.1.3 christos ND_PRINT((ndo, "\n\t System %s, System Priority %u, Key %u" \
419 1.1 christos ", Port %u, Port Priority %u\n\t State Flags [%s]",
420 1.1.1.3 christos etheraddr_string(ndo, tlv_ptr.lacp_tlv_actor_partner_info->sys),
421 1.1 christos EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->sys_pri),
422 1.1 christos EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->key),
423 1.1 christos EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->port),
424 1.1 christos EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->port_pri),
425 1.1 christos bittok2str(lacp_tlv_actor_partner_info_state_values,
426 1.1 christos "none",
427 1.1.1.3 christos tlv_ptr.lacp_tlv_actor_partner_info->state)));
428 1.1 christos
429 1.1 christos break;
430 1.1 christos
431 1.1 christos case ((SLOW_PROTO_LACP << 8) + LACP_TLV_COLLECTOR_INFO):
432 1.1.1.6 spz if (tlv_tlen !=
433 1.1.1.6 spz sizeof(struct lacp_tlv_collector_info_t)) {
434 1.1.1.6 spz ND_PRINT((ndo, "\n\t ERROR: illegal length - should be %lu",
435 1.1.1.6 spz (unsigned long) (sizeof(struct tlv_header_t) + sizeof(struct lacp_tlv_collector_info_t))));
436 1.1.1.6 spz goto badlength;
437 1.1.1.6 spz }
438 1.1.1.6 spz
439 1.1 christos tlv_ptr.lacp_tlv_collector_info = (const struct lacp_tlv_collector_info_t *)tlv_tptr;
440 1.1 christos
441 1.1.1.3 christos ND_PRINT((ndo, "\n\t Max Delay %u",
442 1.1.1.3 christos EXTRACT_16BITS(tlv_ptr.lacp_tlv_collector_info->max_delay)));
443 1.1 christos
444 1.1 christos break;
445 1.1 christos
446 1.1 christos case ((SLOW_PROTO_MARKER << 8) + MARKER_TLV_MARKER_INFO):
447 1.1.1.6 spz if (tlv_tlen !=
448 1.1.1.6 spz sizeof(struct marker_tlv_marker_info_t)) {
449 1.1.1.6 spz ND_PRINT((ndo, "\n\t ERROR: illegal length - should be %lu",
450 1.1.1.6 spz (unsigned long) (sizeof(struct tlv_header_t) + sizeof(struct marker_tlv_marker_info_t))));
451 1.1.1.6 spz goto badlength;
452 1.1.1.6 spz }
453 1.1.1.6 spz
454 1.1 christos tlv_ptr.marker_tlv_marker_info = (const struct marker_tlv_marker_info_t *)tlv_tptr;
455 1.1 christos
456 1.1.1.3 christos ND_PRINT((ndo, "\n\t Request System %s, Request Port %u, Request Transaction ID 0x%08x",
457 1.1.1.3 christos etheraddr_string(ndo, tlv_ptr.marker_tlv_marker_info->req_sys),
458 1.1 christos EXTRACT_16BITS(tlv_ptr.marker_tlv_marker_info->req_port),
459 1.1.1.3 christos EXTRACT_32BITS(tlv_ptr.marker_tlv_marker_info->req_trans_id)));
460 1.1 christos
461 1.1 christos break;
462 1.1 christos
463 1.1 christos default:
464 1.1.1.3 christos if (ndo->ndo_vflag <= 1)
465 1.1.1.3 christos print_unknown_data(ndo, tlv_tptr, "\n\t ", tlv_tlen);
466 1.1 christos break;
467 1.1 christos }
468 1.1.1.6 spz
469 1.1.1.6 spz badlength:
470 1.1 christos /* do we want to see an additional hexdump ? */
471 1.1.1.3 christos if (ndo->ndo_vflag > 1) {
472 1.1.1.3 christos print_unknown_data(ndo, tptr+sizeof(struct tlv_header_t), "\n\t ",
473 1.1 christos tlv_len-sizeof(struct tlv_header_t));
474 1.1 christos }
475 1.1 christos
476 1.1 christos tptr+=tlv_len;
477 1.1 christos tlen-=tlv_len;
478 1.1 christos }
479 1.1 christos return;
480 1.1.1.6 spz
481 1.1.1.6 spz tooshort:
482 1.1.1.6 spz ND_PRINT((ndo, "\n\t\t packet is too short"));
483 1.1.1.6 spz return;
484 1.1.1.6 spz
485 1.1 christos trunc:
486 1.1.1.3 christos ND_PRINT((ndo, "\n\t\t packet exceeded snapshot"));
487 1.1 christos }
488 1.1 christos
489 1.1.1.3 christos static void
490 1.1.1.3 christos slow_oam_print(netdissect_options *ndo,
491 1.1.1.4 christos register const u_char *tptr, register u_int tlen)
492 1.1.1.4 christos {
493 1.1 christos u_int hexdump;
494 1.1 christos
495 1.1 christos struct slow_oam_common_header_t {
496 1.1.1.3 christos uint8_t flags[2];
497 1.1.1.3 christos uint8_t code;
498 1.1 christos };
499 1.1 christos
500 1.1 christos struct slow_oam_tlv_header_t {
501 1.1.1.3 christos uint8_t type;
502 1.1.1.3 christos uint8_t length;
503 1.1 christos };
504 1.1 christos
505 1.1 christos union {
506 1.1 christos const struct slow_oam_common_header_t *slow_oam_common_header;
507 1.1 christos const struct slow_oam_tlv_header_t *slow_oam_tlv_header;
508 1.1 christos } ptr;
509 1.1 christos
510 1.1 christos union {
511 1.1 christos const struct slow_oam_info_t *slow_oam_info;
512 1.1 christos const struct slow_oam_link_event_t *slow_oam_link_event;
513 1.1 christos const struct slow_oam_variablerequest_t *slow_oam_variablerequest;
514 1.1 christos const struct slow_oam_variableresponse_t *slow_oam_variableresponse;
515 1.1 christos const struct slow_oam_loopbackctrl_t *slow_oam_loopbackctrl;
516 1.1 christos } tlv;
517 1.1.1.3 christos
518 1.1.1.5 christos ptr.slow_oam_common_header = (const struct slow_oam_common_header_t *)tptr;
519 1.1.1.6 spz if (tlen < sizeof(*ptr.slow_oam_common_header))
520 1.1.1.6 spz goto tooshort;
521 1.1.1.6 spz ND_TCHECK(*ptr.slow_oam_common_header);
522 1.1 christos tptr += sizeof(struct slow_oam_common_header_t);
523 1.1 christos tlen -= sizeof(struct slow_oam_common_header_t);
524 1.1 christos
525 1.1.1.3 christos ND_PRINT((ndo, "\n\tCode %s OAM PDU, Flags [%s]",
526 1.1 christos tok2str(slow_oam_code_values, "Unknown (%u)", ptr.slow_oam_common_header->code),
527 1.1 christos bittok2str(slow_oam_flag_values,
528 1.1 christos "none",
529 1.1.1.3 christos EXTRACT_16BITS(&ptr.slow_oam_common_header->flags))));
530 1.1 christos
531 1.1 christos switch (ptr.slow_oam_common_header->code) {
532 1.1 christos case SLOW_OAM_CODE_INFO:
533 1.1 christos while (tlen > 0) {
534 1.1 christos ptr.slow_oam_tlv_header = (const struct slow_oam_tlv_header_t *)tptr;
535 1.1.1.6 spz if (tlen < sizeof(*ptr.slow_oam_tlv_header))
536 1.1.1.6 spz goto tooshort;
537 1.1.1.6 spz ND_TCHECK(*ptr.slow_oam_tlv_header);
538 1.1.1.3 christos ND_PRINT((ndo, "\n\t %s Information Type (%u), length %u",
539 1.1 christos tok2str(slow_oam_info_type_values, "Reserved",
540 1.1 christos ptr.slow_oam_tlv_header->type),
541 1.1 christos ptr.slow_oam_tlv_header->type,
542 1.1.1.3 christos ptr.slow_oam_tlv_header->length));
543 1.1 christos
544 1.1.1.6 spz if (ptr.slow_oam_tlv_header->type == SLOW_OAM_INFO_TYPE_END_OF_TLV) {
545 1.1.1.6 spz /*
546 1.1.1.6 spz * As IEEE Std 802.3-2015 says for the End of TLV Marker,
547 1.1.1.6 spz * "(the length and value of the Type 0x00 TLV can be ignored)".
548 1.1.1.6 spz */
549 1.1.1.6 spz return;
550 1.1.1.6 spz }
551 1.1.1.6 spz
552 1.1.1.6 spz /* length includes the type and length fields */
553 1.1.1.6 spz if (ptr.slow_oam_tlv_header->length < sizeof(struct slow_oam_tlv_header_t)) {
554 1.1.1.6 spz ND_PRINT((ndo, "\n\t ERROR: illegal length - should be >= %u",
555 1.1.1.6 spz (u_int)sizeof(struct slow_oam_tlv_header_t)));
556 1.1 christos return;
557 1.1.1.6 spz }
558 1.1.1.6 spz
559 1.1.1.6 spz if (tlen < ptr.slow_oam_tlv_header->length)
560 1.1.1.6 spz goto tooshort;
561 1.1.1.6 spz ND_TCHECK2(*tptr, ptr.slow_oam_tlv_header->length);
562 1.1.1.3 christos
563 1.1.1.6 spz hexdump = FALSE;
564 1.1.1.6 spz switch (ptr.slow_oam_tlv_header->type) {
565 1.1 christos case SLOW_OAM_INFO_TYPE_LOCAL: /* identical format - fall through */
566 1.1 christos case SLOW_OAM_INFO_TYPE_REMOTE:
567 1.1 christos tlv.slow_oam_info = (const struct slow_oam_info_t *)tptr;
568 1.1.1.3 christos
569 1.1 christos if (tlv.slow_oam_info->info_length !=
570 1.1 christos sizeof(struct slow_oam_info_t)) {
571 1.1.1.3 christos ND_PRINT((ndo, "\n\t ERROR: illegal length - should be %lu",
572 1.1.1.3 christos (unsigned long) sizeof(struct slow_oam_info_t)));
573 1.1.1.6 spz hexdump = TRUE;
574 1.1.1.6 spz goto badlength_code_info;
575 1.1 christos }
576 1.1 christos
577 1.1.1.3 christos ND_PRINT((ndo, "\n\t OAM-Version %u, Revision %u",
578 1.1 christos tlv.slow_oam_info->oam_version,
579 1.1.1.3 christos EXTRACT_16BITS(&tlv.slow_oam_info->revision)));
580 1.1 christos
581 1.1.1.3 christos ND_PRINT((ndo, "\n\t State-Parser-Action %s, State-MUX-Action %s",
582 1.1 christos tok2str(slow_oam_info_type_state_parser_values, "Reserved",
583 1.1 christos tlv.slow_oam_info->state & OAM_INFO_TYPE_PARSER_MASK),
584 1.1 christos tok2str(slow_oam_info_type_state_mux_values, "Reserved",
585 1.1.1.3 christos tlv.slow_oam_info->state & OAM_INFO_TYPE_MUX_MASK)));
586 1.1.1.3 christos ND_PRINT((ndo, "\n\t OAM-Config Flags [%s], OAM-PDU-Config max-PDU size %u",
587 1.1 christos bittok2str(slow_oam_info_type_oam_config_values, "none",
588 1.1 christos tlv.slow_oam_info->oam_config),
589 1.1 christos EXTRACT_16BITS(&tlv.slow_oam_info->oam_pdu_config) &
590 1.1.1.3 christos OAM_INFO_TYPE_PDU_SIZE_MASK));
591 1.1.1.3 christos ND_PRINT((ndo, "\n\t OUI %s (0x%06x), Vendor-Private 0x%08x",
592 1.1 christos tok2str(oui_values, "Unknown",
593 1.1 christos EXTRACT_24BITS(&tlv.slow_oam_info->oui)),
594 1.1 christos EXTRACT_24BITS(&tlv.slow_oam_info->oui),
595 1.1.1.3 christos EXTRACT_32BITS(&tlv.slow_oam_info->vendor_private)));
596 1.1 christos break;
597 1.1.1.3 christos
598 1.1 christos case SLOW_OAM_INFO_TYPE_ORG_SPECIFIC:
599 1.1 christos hexdump = TRUE;
600 1.1 christos break;
601 1.1.1.3 christos
602 1.1 christos default:
603 1.1 christos hexdump = TRUE;
604 1.1 christos break;
605 1.1 christos }
606 1.1 christos
607 1.1.1.6 spz badlength_code_info:
608 1.1 christos /* do we also want to see a hex dump ? */
609 1.1.1.3 christos if (ndo->ndo_vflag > 1 || hexdump==TRUE) {
610 1.1.1.3 christos print_unknown_data(ndo, tptr, "\n\t ",
611 1.1 christos ptr.slow_oam_tlv_header->length);
612 1.1 christos }
613 1.1 christos
614 1.1 christos tlen -= ptr.slow_oam_tlv_header->length;
615 1.1 christos tptr += ptr.slow_oam_tlv_header->length;
616 1.1 christos }
617 1.1 christos break;
618 1.1 christos
619 1.1 christos case SLOW_OAM_CODE_EVENT_NOTIF:
620 1.1.1.6 spz /* Sequence number */
621 1.1.1.6 spz if (tlen < 2)
622 1.1.1.6 spz goto tooshort;
623 1.1.1.6 spz ND_TCHECK2(*tptr, 2);
624 1.1.1.6 spz ND_PRINT((ndo, "\n\t Sequence Number %u", EXTRACT_16BITS(tptr)));
625 1.1.1.6 spz tlen -= 2;
626 1.1.1.6 spz tptr += 2;
627 1.1.1.6 spz
628 1.1.1.6 spz /* TLVs */
629 1.1 christos while (tlen > 0) {
630 1.1 christos ptr.slow_oam_tlv_header = (const struct slow_oam_tlv_header_t *)tptr;
631 1.1.1.6 spz if (tlen < sizeof(*ptr.slow_oam_tlv_header))
632 1.1.1.6 spz goto tooshort;
633 1.1.1.6 spz ND_TCHECK(*ptr.slow_oam_tlv_header);
634 1.1.1.3 christos ND_PRINT((ndo, "\n\t %s Link Event Type (%u), length %u",
635 1.1 christos tok2str(slow_oam_link_event_values, "Reserved",
636 1.1 christos ptr.slow_oam_tlv_header->type),
637 1.1 christos ptr.slow_oam_tlv_header->type,
638 1.1.1.3 christos ptr.slow_oam_tlv_header->length));
639 1.1 christos
640 1.1.1.6 spz if (ptr.slow_oam_tlv_header->type == SLOW_OAM_INFO_TYPE_END_OF_TLV) {
641 1.1.1.6 spz /*
642 1.1.1.6 spz * As IEEE Std 802.3-2015 says for the End of TLV Marker,
643 1.1.1.6 spz * "(the length and value of the Type 0x00 TLV can be ignored)".
644 1.1.1.6 spz */
645 1.1.1.6 spz return;
646 1.1.1.6 spz }
647 1.1.1.6 spz
648 1.1.1.6 spz /* length includes the type and length fields */
649 1.1.1.6 spz if (ptr.slow_oam_tlv_header->length < sizeof(struct slow_oam_tlv_header_t)) {
650 1.1.1.6 spz ND_PRINT((ndo, "\n\t ERROR: illegal length - should be >= %u",
651 1.1.1.6 spz (u_int)sizeof(struct slow_oam_tlv_header_t)));
652 1.1 christos return;
653 1.1.1.6 spz }
654 1.1.1.6 spz
655 1.1.1.6 spz if (tlen < ptr.slow_oam_tlv_header->length)
656 1.1.1.6 spz goto tooshort;
657 1.1.1.6 spz ND_TCHECK2(*tptr, ptr.slow_oam_tlv_header->length);
658 1.1.1.3 christos
659 1.1.1.6 spz hexdump = FALSE;
660 1.1.1.6 spz switch (ptr.slow_oam_tlv_header->type) {
661 1.1 christos case SLOW_OAM_LINK_EVENT_ERR_SYM_PER: /* identical format - fall through */
662 1.1 christos case SLOW_OAM_LINK_EVENT_ERR_FRM:
663 1.1 christos case SLOW_OAM_LINK_EVENT_ERR_FRM_PER:
664 1.1 christos case SLOW_OAM_LINK_EVENT_ERR_FRM_SUMM:
665 1.1 christos tlv.slow_oam_link_event = (const struct slow_oam_link_event_t *)tptr;
666 1.1.1.3 christos
667 1.1 christos if (tlv.slow_oam_link_event->event_length !=
668 1.1 christos sizeof(struct slow_oam_link_event_t)) {
669 1.1.1.3 christos ND_PRINT((ndo, "\n\t ERROR: illegal length - should be %lu",
670 1.1.1.3 christos (unsigned long) sizeof(struct slow_oam_link_event_t)));
671 1.1.1.6 spz hexdump = TRUE;
672 1.1.1.6 spz goto badlength_event_notif;
673 1.1 christos }
674 1.1 christos
675 1.1.1.3 christos ND_PRINT((ndo, "\n\t Timestamp %u ms, Errored Window %" PRIu64
676 1.1 christos "\n\t Errored Threshold %" PRIu64
677 1.1 christos "\n\t Errors %" PRIu64
678 1.1 christos "\n\t Error Running Total %" PRIu64
679 1.1 christos "\n\t Event Running Total %u",
680 1.1 christos EXTRACT_16BITS(&tlv.slow_oam_link_event->time_stamp)*100,
681 1.1 christos EXTRACT_64BITS(&tlv.slow_oam_link_event->window),
682 1.1 christos EXTRACT_64BITS(&tlv.slow_oam_link_event->threshold),
683 1.1 christos EXTRACT_64BITS(&tlv.slow_oam_link_event->errors),
684 1.1 christos EXTRACT_64BITS(&tlv.slow_oam_link_event->errors_running_total),
685 1.1.1.3 christos EXTRACT_32BITS(&tlv.slow_oam_link_event->event_running_total)));
686 1.1 christos break;
687 1.1.1.3 christos
688 1.1 christos case SLOW_OAM_LINK_EVENT_ORG_SPECIFIC:
689 1.1 christos hexdump = TRUE;
690 1.1 christos break;
691 1.1.1.3 christos
692 1.1 christos default:
693 1.1 christos hexdump = TRUE;
694 1.1 christos break;
695 1.1 christos }
696 1.1 christos
697 1.1.1.6 spz badlength_event_notif:
698 1.1 christos /* do we also want to see a hex dump ? */
699 1.1.1.3 christos if (ndo->ndo_vflag > 1 || hexdump==TRUE) {
700 1.1.1.3 christos print_unknown_data(ndo, tptr, "\n\t ",
701 1.1 christos ptr.slow_oam_tlv_header->length);
702 1.1 christos }
703 1.1 christos
704 1.1 christos tlen -= ptr.slow_oam_tlv_header->length;
705 1.1 christos tptr += ptr.slow_oam_tlv_header->length;
706 1.1 christos }
707 1.1 christos break;
708 1.1.1.3 christos
709 1.1 christos case SLOW_OAM_CODE_LOOPBACK_CTRL:
710 1.1 christos tlv.slow_oam_loopbackctrl = (const struct slow_oam_loopbackctrl_t *)tptr;
711 1.1.1.6 spz if (tlen < sizeof(*tlv.slow_oam_loopbackctrl))
712 1.1.1.6 spz goto tooshort;
713 1.1.1.6 spz ND_TCHECK(*tlv.slow_oam_loopbackctrl);
714 1.1.1.3 christos ND_PRINT((ndo, "\n\t Command %s (%u)",
715 1.1 christos tok2str(slow_oam_loopbackctrl_cmd_values,
716 1.1 christos "Unknown",
717 1.1 christos tlv.slow_oam_loopbackctrl->command),
718 1.1.1.3 christos tlv.slow_oam_loopbackctrl->command));
719 1.1.1.6 spz tptr ++;
720 1.1.1.6 spz tlen --;
721 1.1 christos break;
722 1.1 christos
723 1.1 christos /*
724 1.1 christos * FIXME those are the defined codes that lack a decoder
725 1.1 christos * you are welcome to contribute code ;-)
726 1.1 christos */
727 1.1 christos case SLOW_OAM_CODE_VAR_REQUEST:
728 1.1 christos case SLOW_OAM_CODE_VAR_RESPONSE:
729 1.1 christos case SLOW_OAM_CODE_PRIVATE:
730 1.1 christos default:
731 1.1.1.3 christos if (ndo->ndo_vflag <= 1) {
732 1.1.1.3 christos print_unknown_data(ndo, tptr, "\n\t ", tlen);
733 1.1 christos }
734 1.1 christos break;
735 1.1 christos }
736 1.1 christos return;
737 1.1.1.6 spz
738 1.1.1.6 spz tooshort:
739 1.1.1.6 spz ND_PRINT((ndo, "\n\t\t packet is too short"));
740 1.1.1.6 spz return;
741 1.1.1.6 spz
742 1.1.1.6 spz trunc:
743 1.1.1.6 spz ND_PRINT((ndo, "\n\t\t packet exceeded snapshot"));
744 1.1 christos }
745