blob: 4ba873bf3fcae1f402223d0a61dd04d40da3d83f [file] [log] [blame]
JP Abgrall53f17a92014-02-12 14:02:41 -08001/*
2 * Copyright (c) 1998-2006 The TCPDUMP project
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that: (1) source code
6 * distributions retain the above copyright notice and this paragraph
7 * in its entirety, and (2) distributions including binary code include
8 * the above copyright notice and this paragraph in its entirety in
9 * the documentation or other materials provided with the distribution.
10 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
11 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
12 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
13 * FOR A PARTICULAR PURPOSE.
14 *
Elliott Hughescec480a2017-12-19 16:54:57 -080015 * Original code by Hannes Gredler (hannes@gredler.at)
JP Abgrall53f17a92014-02-12 14:02:41 -080016 */
17
Elliott Hughese2e3bd12017-05-15 10:59:29 -070018/* \summary: IEEE 802.3ah Multi-Point Control Protocol (MPCP) printer */
19
JP Abgrall53f17a92014-02-12 14:02:41 -080020#ifdef HAVE_CONFIG_H
Elliott Hughes820eced2021-08-20 18:00:50 -070021#include <config.h>
JP Abgrall53f17a92014-02-12 14:02:41 -080022#endif
23
Elliott Hughes820eced2021-08-20 18:00:50 -070024#include "netdissect-stdinc.h"
JP Abgrall53f17a92014-02-12 14:02:41 -080025
Elliott Hughese2e3bd12017-05-15 10:59:29 -070026#include "netdissect.h"
JP Abgrall53f17a92014-02-12 14:02:41 -080027#include "extract.h"
JP Abgrall53f17a92014-02-12 14:02:41 -080028
JP Abgrall53f17a92014-02-12 14:02:41 -080029struct mpcp_common_header_t {
Elliott Hughes820eced2021-08-20 18:00:50 -070030 nd_uint16_t opcode;
31 nd_uint32_t timestamp;
JP Abgrall53f17a92014-02-12 14:02:41 -080032};
33
34#define MPCP_OPCODE_PAUSE 0x0001
35#define MPCP_OPCODE_GATE 0x0002
36#define MPCP_OPCODE_REPORT 0x0003
37#define MPCP_OPCODE_REG_REQ 0x0004
38#define MPCP_OPCODE_REG 0x0005
39#define MPCP_OPCODE_REG_ACK 0x0006
40
41static const struct tok mpcp_opcode_values[] = {
42 { MPCP_OPCODE_PAUSE, "Pause" },
43 { MPCP_OPCODE_GATE, "Gate" },
44 { MPCP_OPCODE_REPORT, "Report" },
45 { MPCP_OPCODE_REG_REQ, "Register Request" },
46 { MPCP_OPCODE_REG, "Register" },
47 { MPCP_OPCODE_REG_ACK, "Register ACK" },
48 { 0, NULL}
49};
50
51#define MPCP_GRANT_NUMBER_LEN 1
Elliott Hughes892a68b2015-10-19 14:43:53 -070052#define MPCP_GRANT_NUMBER_MASK 0x7
JP Abgrall53f17a92014-02-12 14:02:41 -080053static const struct tok mpcp_grant_flag_values[] = {
54 { 0x08, "Discovery" },
55 { 0x10, "Force Grant #1" },
56 { 0x20, "Force Grant #2" },
57 { 0x40, "Force Grant #3" },
58 { 0x80, "Force Grant #4" },
59 { 0, NULL}
60};
61
62struct mpcp_grant_t {
Elliott Hughes820eced2021-08-20 18:00:50 -070063 nd_uint32_t starttime;
64 nd_uint16_t duration;
JP Abgrall53f17a92014-02-12 14:02:41 -080065};
66
67struct mpcp_reg_req_t {
Elliott Hughes820eced2021-08-20 18:00:50 -070068 nd_uint8_t flags;
69 nd_uint8_t pending_grants;
JP Abgrall53f17a92014-02-12 14:02:41 -080070};
71
72
73static const struct tok mpcp_reg_req_flag_values[] = {
74 { 1, "Register" },
75 { 3, "De-Register" },
76 { 0, NULL}
77};
78
79struct mpcp_reg_t {
Elliott Hughes820eced2021-08-20 18:00:50 -070080 nd_uint16_t assigned_port;
81 nd_uint8_t flags;
82 nd_uint16_t sync_time;
83 nd_uint8_t echoed_pending_grants;
JP Abgrall53f17a92014-02-12 14:02:41 -080084};
85
86static const struct tok mpcp_reg_flag_values[] = {
87 { 1, "Re-Register" },
88 { 2, "De-Register" },
89 { 3, "ACK" },
90 { 4, "NACK" },
91 { 0, NULL}
92};
93
94#define MPCP_REPORT_QUEUESETS_LEN 1
95#define MPCP_REPORT_REPORTBITMAP_LEN 1
96static const struct tok mpcp_report_bitmap_values[] = {
97 { 0x01, "Q0" },
98 { 0x02, "Q1" },
99 { 0x04, "Q2" },
100 { 0x08, "Q3" },
101 { 0x10, "Q4" },
102 { 0x20, "Q5" },
103 { 0x40, "Q6" },
104 { 0x80, "Q7" },
105 { 0, NULL}
106};
107
108struct mpcp_reg_ack_t {
Elliott Hughes820eced2021-08-20 18:00:50 -0700109 nd_uint8_t flags;
110 nd_uint16_t echoed_assigned_port;
111 nd_uint16_t echoed_sync_time;
JP Abgrall53f17a92014-02-12 14:02:41 -0800112};
113
114static const struct tok mpcp_reg_ack_flag_values[] = {
115 { 0, "NACK" },
116 { 1, "ACK" },
117 { 0, NULL}
118};
119
120void
Elliott Hughes820eced2021-08-20 18:00:50 -0700121mpcp_print(netdissect_options *ndo, const u_char *pptr, u_int length)
Elliott Hughes892a68b2015-10-19 14:43:53 -0700122{
Elliott Hughes820eced2021-08-20 18:00:50 -0700123 const struct mpcp_common_header_t *mpcp_common_header;
124 const struct mpcp_reg_req_t *mpcp_reg_req;
125 const struct mpcp_reg_t *mpcp_reg;
126 const struct mpcp_reg_ack_t *mpcp_reg_ack;
JP Abgrall53f17a92014-02-12 14:02:41 -0800127
128
129 const u_char *tptr;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700130 uint16_t opcode;
Elliott Hughes820eced2021-08-20 18:00:50 -0700131 uint32_t timestamp;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700132 uint8_t grant_numbers, grant;
133 uint8_t queue_sets, queue_set, report_bitmap, report;
JP Abgrall53f17a92014-02-12 14:02:41 -0800134
Elliott Hughes820eced2021-08-20 18:00:50 -0700135 ndo->ndo_protocol = "mpcp";
JP Abgrall53f17a92014-02-12 14:02:41 -0800136 tptr=pptr;
Elliott Hughes820eced2021-08-20 18:00:50 -0700137 mpcp_common_header = (const struct mpcp_common_header_t *)pptr;
JP Abgrall53f17a92014-02-12 14:02:41 -0800138
Elliott Hughes820eced2021-08-20 18:00:50 -0700139 opcode = GET_BE_U_2(mpcp_common_header->opcode);
140 timestamp = GET_BE_U_4(mpcp_common_header->timestamp);
141 ND_PRINT("MPCP, Opcode %s", tok2str(mpcp_opcode_values, "Unknown (%u)", opcode));
JP Abgrall53f17a92014-02-12 14:02:41 -0800142 if (opcode != MPCP_OPCODE_PAUSE) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700143 ND_PRINT(", Timestamp %u ticks", timestamp);
JP Abgrall53f17a92014-02-12 14:02:41 -0800144 }
Elliott Hughes820eced2021-08-20 18:00:50 -0700145 ND_PRINT(", length %u", length);
JP Abgrall53f17a92014-02-12 14:02:41 -0800146
Elliott Hughes892a68b2015-10-19 14:43:53 -0700147 if (!ndo->ndo_vflag)
JP Abgrall53f17a92014-02-12 14:02:41 -0800148 return;
149
Elliott Hughes820eced2021-08-20 18:00:50 -0700150 tptr += sizeof(struct mpcp_common_header_t);
JP Abgrall53f17a92014-02-12 14:02:41 -0800151
152 switch (opcode) {
153 case MPCP_OPCODE_PAUSE:
154 break;
155
156 case MPCP_OPCODE_GATE:
Elliott Hughes820eced2021-08-20 18:00:50 -0700157 grant_numbers = GET_U_1(tptr) & MPCP_GRANT_NUMBER_MASK;
158 ND_PRINT("\n\tGrant Numbers %u, Flags [ %s ]",
JP Abgrall53f17a92014-02-12 14:02:41 -0800159 grant_numbers,
160 bittok2str(mpcp_grant_flag_values,
161 "?",
Elliott Hughes820eced2021-08-20 18:00:50 -0700162 GET_U_1(tptr) & ~MPCP_GRANT_NUMBER_MASK));
JP Abgrall53f17a92014-02-12 14:02:41 -0800163 tptr++;
164
165 for (grant = 1; grant <= grant_numbers; grant++) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700166 const struct mpcp_grant_t *mpcp_grant = (const struct mpcp_grant_t *)tptr;
167 ND_PRINT("\n\tGrant #%u, Start-Time %u ticks, duration %u ticks",
JP Abgrall53f17a92014-02-12 14:02:41 -0800168 grant,
Elliott Hughes820eced2021-08-20 18:00:50 -0700169 GET_BE_U_4(mpcp_grant->starttime),
170 GET_BE_U_2(mpcp_grant->duration));
171 tptr += sizeof(struct mpcp_grant_t);
JP Abgrall53f17a92014-02-12 14:02:41 -0800172 }
173
Elliott Hughes820eced2021-08-20 18:00:50 -0700174 ND_PRINT("\n\tSync-Time %u ticks", GET_BE_U_2(tptr));
JP Abgrall53f17a92014-02-12 14:02:41 -0800175 break;
176
177
178 case MPCP_OPCODE_REPORT:
Elliott Hughes820eced2021-08-20 18:00:50 -0700179 queue_sets = GET_U_1(tptr);
JP Abgrall53f17a92014-02-12 14:02:41 -0800180 tptr+=MPCP_REPORT_QUEUESETS_LEN;
Elliott Hughes820eced2021-08-20 18:00:50 -0700181 ND_PRINT("\n\tTotal Queue-Sets %u", queue_sets);
JP Abgrall53f17a92014-02-12 14:02:41 -0800182
183 for (queue_set = 1; queue_set < queue_sets; queue_set++) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700184 report_bitmap = GET_U_1(tptr);
185 ND_PRINT("\n\t Queue-Set #%u, Report-Bitmap [ %s ]",
JP Abgrall53f17a92014-02-12 14:02:41 -0800186 queue_sets,
Elliott Hughes820eced2021-08-20 18:00:50 -0700187 bittok2str(mpcp_report_bitmap_values, "Unknown", report_bitmap));
JP Abgrall53f17a92014-02-12 14:02:41 -0800188 tptr++;
189
190 report=1;
Elliott Hughes892a68b2015-10-19 14:43:53 -0700191 while (report_bitmap != 0) {
JP Abgrall53f17a92014-02-12 14:02:41 -0800192 if (report_bitmap & 1) {
Elliott Hughes820eced2021-08-20 18:00:50 -0700193 ND_PRINT("\n\t Q%u Report, Duration %u ticks",
JP Abgrall53f17a92014-02-12 14:02:41 -0800194 report,
Elliott Hughes820eced2021-08-20 18:00:50 -0700195 GET_BE_U_2(tptr));
196 tptr += 2;
JP Abgrall53f17a92014-02-12 14:02:41 -0800197 }
198 report++;
199 report_bitmap = report_bitmap >> 1;
200 }
201 }
202 break;
203
204 case MPCP_OPCODE_REG_REQ:
Elliott Hughes820eced2021-08-20 18:00:50 -0700205 mpcp_reg_req = (const struct mpcp_reg_req_t *)tptr;
206 ND_PRINT("\n\tFlags [ %s ], Pending-Grants %u",
207 bittok2str(mpcp_reg_req_flag_values, "Reserved", GET_U_1(mpcp_reg_req->flags)),
208 GET_U_1(mpcp_reg_req->pending_grants));
JP Abgrall53f17a92014-02-12 14:02:41 -0800209 break;
210
211 case MPCP_OPCODE_REG:
Elliott Hughes820eced2021-08-20 18:00:50 -0700212 mpcp_reg = (const struct mpcp_reg_t *)tptr;
213 ND_PRINT("\n\tAssigned-Port %u, Flags [ %s ]"
JP Abgrall53f17a92014-02-12 14:02:41 -0800214 "\n\tSync-Time %u ticks, Echoed-Pending-Grants %u",
Elliott Hughes820eced2021-08-20 18:00:50 -0700215 GET_BE_U_2(mpcp_reg->assigned_port),
216 bittok2str(mpcp_reg_flag_values, "Reserved", GET_U_1(mpcp_reg->flags)),
217 GET_BE_U_2(mpcp_reg->sync_time),
218 GET_U_1(mpcp_reg->echoed_pending_grants));
JP Abgrall53f17a92014-02-12 14:02:41 -0800219 break;
220
221 case MPCP_OPCODE_REG_ACK:
Elliott Hughes820eced2021-08-20 18:00:50 -0700222 mpcp_reg_ack = (const struct mpcp_reg_ack_t *)tptr;
223 ND_PRINT("\n\tEchoed-Assigned-Port %u, Flags [ %s ]"
JP Abgrall53f17a92014-02-12 14:02:41 -0800224 "\n\tEchoed-Sync-Time %u ticks",
Elliott Hughes820eced2021-08-20 18:00:50 -0700225 GET_BE_U_2(mpcp_reg_ack->echoed_assigned_port),
226 bittok2str(mpcp_reg_ack_flag_values, "Reserved", GET_U_1(mpcp_reg_ack->flags)),
227 GET_BE_U_2(mpcp_reg_ack->echoed_sync_time));
JP Abgrall53f17a92014-02-12 14:02:41 -0800228 break;
229
230 default:
231 /* unknown opcode - hexdump for now */
Elliott Hughes892a68b2015-10-19 14:43:53 -0700232 print_unknown_data(ndo,pptr, "\n\t", length);
JP Abgrall53f17a92014-02-12 14:02:41 -0800233 break;
234 }
JP Abgrall53f17a92014-02-12 14:02:41 -0800235}