2 * Copyright (c) 1998-2006 The TCPDUMP project
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.
15 * Original code by Hannes Gredler (hannes@gredler.at)
18 /* \summary: IEEE 802.3ah Multi-Point Control Protocol (MPCP) printer */
22 #include "netdissect-stdinc.h"
24 #include "netdissect.h"
27 struct mpcp_common_header_t
{
29 nd_uint32_t timestamp
;
32 #define MPCP_OPCODE_PAUSE 0x0001
33 #define MPCP_OPCODE_GATE 0x0002
34 #define MPCP_OPCODE_REPORT 0x0003
35 #define MPCP_OPCODE_REG_REQ 0x0004
36 #define MPCP_OPCODE_REG 0x0005
37 #define MPCP_OPCODE_REG_ACK 0x0006
39 static const struct tok mpcp_opcode_values
[] = {
40 { MPCP_OPCODE_PAUSE
, "Pause" },
41 { MPCP_OPCODE_GATE
, "Gate" },
42 { MPCP_OPCODE_REPORT
, "Report" },
43 { MPCP_OPCODE_REG_REQ
, "Register Request" },
44 { MPCP_OPCODE_REG
, "Register" },
45 { MPCP_OPCODE_REG_ACK
, "Register ACK" },
49 #define MPCP_GRANT_NUMBER_LEN 1
50 #define MPCP_GRANT_NUMBER_MASK 0x7
51 static const struct tok mpcp_grant_flag_values
[] = {
52 { 0x08, "Discovery" },
53 { 0x10, "Force Grant #1" },
54 { 0x20, "Force Grant #2" },
55 { 0x40, "Force Grant #3" },
56 { 0x80, "Force Grant #4" },
61 nd_uint32_t starttime
;
65 struct mpcp_reg_req_t
{
67 nd_uint8_t pending_grants
;
71 static const struct tok mpcp_reg_req_flag_values
[] = {
78 nd_uint16_t assigned_port
;
80 nd_uint16_t sync_time
;
81 nd_uint8_t echoed_pending_grants
;
84 static const struct tok mpcp_reg_flag_values
[] = {
92 #define MPCP_REPORT_QUEUESETS_LEN 1
93 #define MPCP_REPORT_REPORTBITMAP_LEN 1
94 static const struct tok mpcp_report_bitmap_values
[] = {
106 struct mpcp_reg_ack_t
{
108 nd_uint16_t echoed_assigned_port
;
109 nd_uint16_t echoed_sync_time
;
112 static const struct tok mpcp_reg_ack_flag_values
[] = {
119 mpcp_print(netdissect_options
*ndo
, const u_char
*pptr
, u_int length
)
121 const struct mpcp_common_header_t
*mpcp_common_header
;
122 const struct mpcp_reg_req_t
*mpcp_reg_req
;
123 const struct mpcp_reg_t
*mpcp_reg
;
124 const struct mpcp_reg_ack_t
*mpcp_reg_ack
;
130 uint8_t grant_numbers
, grant
;
131 uint8_t queue_sets
, queue_set
, report_bitmap
, report
;
133 ndo
->ndo_protocol
= "mpcp";
135 mpcp_common_header
= (const struct mpcp_common_header_t
*)pptr
;
137 opcode
= GET_BE_U_2(mpcp_common_header
->opcode
);
138 timestamp
= GET_BE_U_4(mpcp_common_header
->timestamp
);
139 ND_PRINT("MPCP, Opcode %s", tok2str(mpcp_opcode_values
, "Unknown (%u)", opcode
));
140 if (opcode
!= MPCP_OPCODE_PAUSE
) {
141 ND_PRINT(", Timestamp %u ticks", timestamp
);
143 ND_PRINT(", length %u", length
);
148 tptr
+= sizeof(struct mpcp_common_header_t
);
151 case MPCP_OPCODE_PAUSE
:
154 case MPCP_OPCODE_GATE
:
155 grant_numbers
= GET_U_1(tptr
) & MPCP_GRANT_NUMBER_MASK
;
156 ND_PRINT("\n\tGrant Numbers %u, Flags [ %s ]",
158 bittok2str(mpcp_grant_flag_values
,
160 GET_U_1(tptr
) & ~MPCP_GRANT_NUMBER_MASK
));
163 for (grant
= 1; grant
<= grant_numbers
; grant
++) {
164 const struct mpcp_grant_t
*mpcp_grant
= (const struct mpcp_grant_t
*)tptr
;
165 ND_PRINT("\n\tGrant #%u, Start-Time %u ticks, duration %u ticks",
167 GET_BE_U_4(mpcp_grant
->starttime
),
168 GET_BE_U_2(mpcp_grant
->duration
));
169 tptr
+= sizeof(struct mpcp_grant_t
);
172 ND_PRINT("\n\tSync-Time %u ticks", GET_BE_U_2(tptr
));
176 case MPCP_OPCODE_REPORT
:
177 queue_sets
= GET_U_1(tptr
);
178 tptr
+=MPCP_REPORT_QUEUESETS_LEN
;
179 ND_PRINT("\n\tTotal Queue-Sets %u", queue_sets
);
181 for (queue_set
= 1; queue_set
< queue_sets
; queue_set
++) {
182 report_bitmap
= GET_U_1(tptr
);
183 ND_PRINT("\n\t Queue-Set #%u, Report-Bitmap [ %s ]",
185 bittok2str(mpcp_report_bitmap_values
, "Unknown", report_bitmap
));
189 while (report_bitmap
!= 0) {
190 if (report_bitmap
& 1) {
191 ND_PRINT("\n\t Q%u Report, Duration %u ticks",
197 report_bitmap
= report_bitmap
>> 1;
202 case MPCP_OPCODE_REG_REQ
:
203 mpcp_reg_req
= (const struct mpcp_reg_req_t
*)tptr
;
204 ND_PRINT("\n\tFlags [ %s ], Pending-Grants %u",
205 bittok2str(mpcp_reg_req_flag_values
, "Reserved", GET_U_1(mpcp_reg_req
->flags
)),
206 GET_U_1(mpcp_reg_req
->pending_grants
));
209 case MPCP_OPCODE_REG
:
210 mpcp_reg
= (const struct mpcp_reg_t
*)tptr
;
211 ND_PRINT("\n\tAssigned-Port %u, Flags [ %s ]"
212 "\n\tSync-Time %u ticks, Echoed-Pending-Grants %u",
213 GET_BE_U_2(mpcp_reg
->assigned_port
),
214 bittok2str(mpcp_reg_flag_values
, "Reserved", GET_U_1(mpcp_reg
->flags
)),
215 GET_BE_U_2(mpcp_reg
->sync_time
),
216 GET_U_1(mpcp_reg
->echoed_pending_grants
));
219 case MPCP_OPCODE_REG_ACK
:
220 mpcp_reg_ack
= (const struct mpcp_reg_ack_t
*)tptr
;
221 ND_PRINT("\n\tEchoed-Assigned-Port %u, Flags [ %s ]"
222 "\n\tEchoed-Sync-Time %u ticks",
223 GET_BE_U_2(mpcp_reg_ack
->echoed_assigned_port
),
224 bittok2str(mpcp_reg_ack_flag_values
, "Reserved", GET_U_1(mpcp_reg_ack
->flags
)),
225 GET_BE_U_2(mpcp_reg_ack
->echoed_sync_time
));
229 /* unknown opcode - hexdump for now */
230 print_unknown_data(ndo
,pptr
, "\n\t", length
);