2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
23 static const char rcsid
[] _U_
=
24 "@(#) $Header: /tcpdump/master/tcpdump/print-arp.c,v 1.66 2006-03-03 22:53:21 hannes Exp $ (LBL)";
31 #include <tcpdump-stdinc.h>
36 #include "netdissect.h"
37 #include "addrtoname.h"
39 #include "ethertype.h"
40 #include "extract.h" /* must come after interface.h */
43 * Transparent Inter-Process Communication (TIPC) protocol.
45 * http://tipc.sourceforge.net/doc/draft-spec-tipc-07.html
46 * http://tipc.sourceforge.net/doc/tipc_message_formats.html
49 #define TIPC_USER_LOW_IMPORTANCE 0
50 #define TIPC_USER_MEDIUM_IMPORTANCE 1
51 #define TIPC_USER_HIGH_IMPORTANCE 2
52 #define TIPC_USER_CRITICAL_IMPORTANCE 3
53 #define TIPC_USER_BCAST_PROTOCOL 5
54 #define TIPC_USER_MSG_BUNDLER 6
55 #define TIPC_USER_LINK_PROTOCOL 7
56 #define TIPC_USER_CONN_MANAGER 8
57 #define TIPC_USER_CHANGEOVER_PROTOCOL 10
58 #define TIPC_USER_NAME_DISTRIBUTOR 11
59 #define TIPC_USER_MSG_FRAGMENTER 12
60 #define TIPC_USER_LINK_CONFIG 13
62 #define TIPC_CONN_MSG 0
63 #define TIPC_DIRECT_MSG 1
64 #define TIPC_NAMED_MSG 2
65 #define TIPC_MCAST_MSG 3
67 #define TIPC_ZONE(addr) (((addr) >> 24) & 0xFF)
68 #define TIPC_CLUSTER(addr) (((addr) >> 12) & 0xFFF)
69 #define TIPC_NODE(addr) (((addr) >> 0) & 0xFFF)
76 #define TIPC_VER(w0) (((w0) >> 29) & 0x07)
77 #define TIPC_USER(w0) (((w0) >> 25) & 0x0F)
78 #define TIPC_HSIZE(w0) (((w0) >> 21) & 0x0F)
79 #define TIPC_MSIZE(w0) (((w0) >> 0) & 0xFFFF)
80 #define TIPC_MTYPE(w1) (((w1) >> 29) & 0x07)
81 #define TIPC_BROADCAST_ACK(w1) (((w1) >> 0) & 0xFFFF)
82 #define TIPC_LINK_ACK(w2) (((w2) >> 16) & 0xFFFF)
83 #define TIPC_LINK_SEQ(w2) (((w2) >> 0) & 0xFFFF)
85 static const struct tok tipcuser_values
[] = {
86 { TIPC_USER_LOW_IMPORTANCE
, "Low Importance Data payload" },
87 { TIPC_USER_MEDIUM_IMPORTANCE
, "Medium Importance Data payload" },
88 { TIPC_USER_HIGH_IMPORTANCE
, "High Importance Data payload" },
89 { TIPC_USER_CRITICAL_IMPORTANCE
, "Critical Importance Data payload" },
90 { TIPC_USER_BCAST_PROTOCOL
, "Broadcast Link Protocol internal" },
91 { TIPC_USER_MSG_BUNDLER
, "Message Bundler Protocol internal" },
92 { TIPC_USER_LINK_PROTOCOL
, "Link State Protocol internal" },
93 { TIPC_USER_CONN_MANAGER
, "Connection Manager internal" },
94 { TIPC_USER_CHANGEOVER_PROTOCOL
, "Link Changeover Protocol internal" },
95 { TIPC_USER_NAME_DISTRIBUTOR
, "Name Table Update Protocol internal" },
96 { TIPC_USER_MSG_FRAGMENTER
, "Message Fragmentation Protocol internal" },
97 { TIPC_USER_LINK_CONFIG
, "Neighbor Detection Protocol internal" },
101 static const struct tok tipcmtype_values
[] = {
102 { TIPC_CONN_MSG
, "CONN_MSG" },
103 { TIPC_DIRECT_MSG
, "MCAST_MSG" },
104 { TIPC_NAMED_MSG
, "NAMED_MSG" },
105 { TIPC_MCAST_MSG
, "DIRECT_MSG" },
109 static const struct tok tipc_linkconf_mtype_values
[] = {
110 { 0, "Link request" },
111 { 1, "Link response" },
115 struct payload_tipc_pkthdr
{
129 struct internal_tipc_pkthdr
{
142 #define TIPC_SEQ_GAP(w1) (((w1) >> 16) & 0x1FFF)
143 #define TIPC_BC_GAP_AFTER(w2) (((w2) >> 16) & 0xFFFF)
144 #define TIPC_BC_GAP_TO(w2) (((w2) >> 0) & 0xFFFF)
145 #define TIPC_LAST_SENT_FRAG(w4) (((w4) >> 16) & 0xFFFF)
146 #define TIPC_NEXT_SENT_FRAG(w4) (((w4) >> 0) & 0xFFFF)
147 #define TIPC_SESS_NO(w5) (((w5) >> 16) & 0xFFFF)
148 #define TIPC_MSG_CNT(w9) (((w9) >> 16) & 0xFFFF)
149 #define TIPC_LINK_TOL(w9) (((w9) >> 0) & 0xFFFF)
151 struct link_conf_tipc_pkthdr
{
154 u_int32_t dest_domain
;
158 u_int8_t media_address
[16];
161 #define TIPC_NODE_SIG(w1) (((w1) >> 0) & 0xFFFF)
162 #define TIPC_MEDIA_ID(w5) (((w5) >> 0) & 0xFF)
165 print_payload(netdissect_options
*ndo
, struct payload_tipc_pkthdr
*ap
)
167 u_int32_t w0
, w1
, w2
;
182 w0
= EXTRACT_32BITS(&ap
->w0
);
183 user
= TIPC_USER(w0
);
184 hsize
= TIPC_HSIZE(w0
);
185 msize
= TIPC_MSIZE(w0
);
186 w1
= EXTRACT_32BITS(&ap
->w1
);
187 mtype
= TIPC_MTYPE(w1
);
188 broadcast_ack
= TIPC_BROADCAST_ACK(w1
);
189 w2
= EXTRACT_32BITS(&ap
->w2
);
190 link_ack
= TIPC_LINK_ACK(w2
);
191 link_seq
= TIPC_LINK_SEQ(w2
);
192 orig_node
= EXTRACT_32BITS(&ap
->orig_node
);
193 orig_port
= EXTRACT_32BITS(&ap
->orig_port
);
194 dest_node
= EXTRACT_32BITS(&ap
->dest_node
);
195 dest_port
= EXTRACT_32BITS(&ap
->dest_port
);
196 prev_node
= EXTRACT_32BITS(&ap
->prev_node
);
198 ND_PRINT((ndo
, " messageType %s: <%u.%u.%u> : %u > <%u.%u.%u> : %u",
199 tok2str(tipcmtype_values
, "Unknown", mtype
),
200 TIPC_ZONE(orig_node
), TIPC_CLUSTER(orig_node
), TIPC_NODE(orig_node
),
202 TIPC_ZONE(dest_node
), TIPC_CLUSTER(dest_node
), TIPC_NODE(dest_node
),
204 if (ndo
->ndo_vflag
) {
205 ND_PRINT((ndo
, "\n\tPrevious Node <%u.%u.%u>, Broadcast Ack %u, Link Ack %u, Link Sequence %u",
206 TIPC_ZONE(prev_node
), TIPC_CLUSTER(prev_node
), TIPC_NODE(prev_node
),
207 broadcast_ack
, link_ack
, link_seq
));
212 ND_PRINT((ndo
, "[|TIPC]"));
216 print_internal(netdissect_options
*ndo
, struct internal_tipc_pkthdr
*ap
)
218 u_int32_t w0
, w1
, w2
, w4
, w5
, w9
;
227 u_int last_sent_frag
;
228 u_int next_sent_frag
;
237 w0
= EXTRACT_32BITS(&ap
->w0
);
238 hsize
= TIPC_HSIZE(w0
);
239 msize
= TIPC_MSIZE(w0
);
240 w1
= EXTRACT_32BITS(&ap
->w1
);
241 mtype
= TIPC_MTYPE(w1
);
242 seq_gap
= TIPC_SEQ_GAP(w1
);
243 broadcast_ack
= TIPC_BROADCAST_ACK(w1
);
244 w2
= EXTRACT_32BITS(&ap
->w2
);
245 bc_gap_after
= TIPC_BC_GAP_AFTER(w2
);
246 bc_gap_to
= TIPC_BC_GAP_TO(w2
);
247 prev_node
= EXTRACT_32BITS(&ap
->prev_node
);
248 w4
= EXTRACT_32BITS(&ap
->w4
);
249 last_sent_frag
= TIPC_LAST_SENT_FRAG(w4
);
250 next_sent_frag
= TIPC_NEXT_SENT_FRAG(w4
);
251 w5
= EXTRACT_32BITS(&ap
->w5
);
252 sess_no
= TIPC_SESS_NO(w5
);
253 orig_node
= EXTRACT_32BITS(&ap
->orig_node
);
254 dest_node
= EXTRACT_32BITS(&ap
->dest_node
);
255 trans_seq
= EXTRACT_32BITS(&ap
->trans_seq
);
256 w9
= EXTRACT_32BITS(&ap
->w9
);
257 msg_cnt
= TIPC_MSG_CNT(w9
);
258 link_tol
= TIPC_LINK_TOL(w9
);
260 ND_PRINT((ndo
, " messageType %s: <%u.%u.%u> > <%u.%u.%u>",
261 tok2str(tipcmtype_values
, "Unknown", mtype
),
262 TIPC_ZONE(orig_node
), TIPC_CLUSTER(orig_node
), TIPC_NODE(orig_node
),
263 TIPC_ZONE(dest_node
), TIPC_CLUSTER(dest_node
), TIPC_NODE(dest_node
)));
264 if (ndo
->ndo_vflag
) {
265 ND_PRINT((ndo
, "\n\tPrevious Node <%u.%u.%u>, Session No. %u, Broadcast Ack %u, Sequence Gap %u, Broadcast Gap After %u, Broadcast Gap To %u, Last Sent Packet No. %u, Next sent Packet No. %u, Transport Sequence %u, msg_count %u, Link Tolerance %u",
266 TIPC_ZONE(prev_node
), TIPC_CLUSTER(prev_node
), TIPC_NODE(prev_node
),
267 sess_no
, broadcast_ack
, seq_gap
, bc_gap_after
, bc_gap_to
,
268 last_sent_frag
, next_sent_frag
, trans_seq
, msg_cnt
,
274 ND_PRINT((ndo
, "[|TIPC]"));
278 print_link_conf(netdissect_options
*ndo
, struct link_conf_tipc_pkthdr
*ap
)
280 u_int32_t w0
, w1
, w5
;
290 w0
= EXTRACT_32BITS(&ap
->w0
);
291 user
= TIPC_USER(w0
);
292 w1
= EXTRACT_32BITS(&ap
->w1
);
293 mtype
= TIPC_MTYPE(w1
);
294 node_sig
= TIPC_NODE_SIG(w1
);
295 prev_node
= EXTRACT_32BITS(&ap
->prev_node
);
296 dest_domain
= EXTRACT_32BITS(&ap
->dest_domain
);
297 prev_node
= EXTRACT_32BITS(&ap
->prev_node
);
298 ntwrk_id
= EXTRACT_32BITS(&ap
->ntwrk_id
);
299 w5
= EXTRACT_32BITS(&ap
->w5
);
300 media_id
= TIPC_MEDIA_ID(w5
);
302 ND_PRINT((ndo
, " messageType %s: <%u.%u.%u> > <%u.%u.%u>",
303 tok2str(tipc_linkconf_mtype_values
, "Unknown", mtype
),
304 TIPC_ZONE(prev_node
), TIPC_CLUSTER(prev_node
), TIPC_NODE(prev_node
),
305 TIPC_ZONE(dest_domain
), TIPC_CLUSTER(dest_domain
), TIPC_NODE(dest_domain
)));
306 if (ndo
->ndo_vflag
) {
307 ND_PRINT((ndo
, "\n\tNodeSignature %u, network_id %u, media_id %u",
308 node_sig
, ntwrk_id
, media_id
));
313 ND_PRINT((ndo
, "[|TIPC]"));
317 tipc_print(netdissect_options
*ndo
, const u_char
*bp
, u_int length _U_
,
320 struct tipc_pkthdr
*ap
;
326 ap
= (struct tipc_pkthdr
*)bp
;
328 w0
= EXTRACT_32BITS(&ap
->w0
);
329 user
= TIPC_USER(w0
);
330 hsize
= TIPC_HSIZE(w0
);
331 msize
= TIPC_MSIZE(w0
);
332 w1
= EXTRACT_32BITS(&ap
->w1
);
333 ND_PRINT((ndo
, "TIPC v%u.0, headerlength %u bytes, MessageSize %u bytes, %s",
334 TIPC_VER(w0
), hsize
*4, msize
,
335 tok2str(tipcuser_values
, "unknown", user
)));
339 case TIPC_USER_LOW_IMPORTANCE
:
340 case TIPC_USER_MEDIUM_IMPORTANCE
:
341 case TIPC_USER_HIGH_IMPORTANCE
:
342 case TIPC_USER_CRITICAL_IMPORTANCE
:
343 case TIPC_USER_NAME_DISTRIBUTOR
:
344 case TIPC_USER_CONN_MANAGER
:
345 print_payload(ndo
, (struct payload_tipc_pkthdr
*)bp
);
348 case TIPC_USER_LINK_CONFIG
:
349 print_link_conf(ndo
, (struct link_conf_tipc_pkthdr
*)bp
);
352 case TIPC_USER_BCAST_PROTOCOL
:
353 case TIPC_USER_MSG_BUNDLER
:
354 case TIPC_USER_LINK_PROTOCOL
:
355 case TIPC_USER_CHANGEOVER_PROTOCOL
:
356 case TIPC_USER_MSG_FRAGMENTER
:
357 print_internal(ndo
, (struct internal_tipc_pkthdr
*)bp
);
364 ND_PRINT((ndo
, "[|TIPC]"));