2 * Routines for arcnet dissection
3 * Copyright 2001-2002, Peter Fales <ethereal@fales-lorenz.net>
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
14 #include <epan/packet.h>
15 #include <epan/capture_dissectors.h>
16 #include <epan/address_types.h>
17 #include <epan/arcnet_pids.h>
18 #include <epan/to_str.h>
19 #include "packet-ip.h"
20 #include "packet-arp.h"
22 void proto_register_arcnet(void);
23 void proto_reg_handoff_arcnet(void);
25 static dissector_handle_t arcnet_handle
;
26 static dissector_handle_t arcnet_linux_handle
;
27 static capture_dissector_handle_t arcnet_cap_handle
;
28 static capture_dissector_handle_t arcnet_cap_has_ex_handle
;
30 /* Initialize the protocol and registered fields */
31 static int proto_arcnet
;
32 static int hf_arcnet_src
;
33 static int hf_arcnet_dst
;
34 static int hf_arcnet_offset
;
35 static int hf_arcnet_protID
;
36 static int hf_arcnet_exception_flag
;
37 static int hf_arcnet_split_flag
;
38 static int hf_arcnet_sequence
;
39 static int hf_arcnet_padding
;
41 /* Initialize the subtree pointers */
42 static int ett_arcnet
;
44 static int arcnet_address_type
= -1;
46 static dissector_table_t arcnet_dissector_table
;
48 static capture_dissector_handle_t ip_cap_handle
;
49 static capture_dissector_handle_t arp_cap_handle
;
51 /* Cache protocol for packet counting */
54 static int arcnet_str_len(const address
* addr _U_
)
59 static int arcnet_to_str(const address
* addr
, char *buf
, int buf_len _U_
)
63 buf
= bytes_to_hexstr(buf
, (const uint8_t *)addr
->data
, 1);
64 *buf
= '\0'; /* NULL terminate */
66 return arcnet_str_len(addr
);
69 static const char* arcnet_col_filter_str(const address
* addr _U_
, bool is_src
)
77 static int arcnet_len(void)
83 capture_arcnet_common(const unsigned char *pd
, int offset
, int len
, capture_packet_info_t
*cpinfo
, const union wtap_pseudo_header
*pseudo_header
, bool has_exception
)
85 if (!BYTES_ARE_IN_FRAME(offset
, len
, 1)) {
91 case ARCNET_PROTO_IP_1051
:
92 /* No fragmentation stuff in the header */
93 return call_capture_dissector(ip_cap_handle
, pd
, offset
+ 1, len
, cpinfo
, pseudo_header
);
95 case ARCNET_PROTO_IP_1201
:
97 * There's fragmentation stuff in the header.
99 * XXX - on at least some versions of NetBSD, it appears that we
100 * might we get ARCNET frames, not reassembled packets; we should
101 * perhaps bump "counts->other" for all but the first frame of a packet.
103 * XXX - but on FreeBSD it appears that we get reassembled packets
104 * on input (but apparently we get frames on output - or maybe
105 * we get the packet *and* all its frames!); how to tell the
106 * difference? It looks from the FreeBSD reassembly code as if
107 * the reassembled packet arrives with the header for the first
108 * frame. It also looks as if, on output, we first get the
109 * full packet, with a header containing none of the fragmentation
110 * stuff, and then get the frames.
112 * On Linux, we get only reassembled packets, and the exception
113 * frame stuff is hidden - there's a split flag and sequence
114 * number, but it appears that it will never have the exception
117 * XXX - what about OpenBSD? And, for that matter, what about
118 * Windows? (I suspect Windows supplies reassembled frames,
119 * as WinPcap, like PF_PACKET sockets, taps into the networking
120 * stack just as other protocols do.)
123 if (!BYTES_ARE_IN_FRAME(offset
, len
, 1)) {
126 if (has_exception
&& pd
[offset
] == 0xff) {
127 /* This is an exception packet. The flag value there is the
128 "this is an exception flag" packet; the next two bytes
129 after it are padding, and another copy of the packet
130 type appears after the padding. */
133 return call_capture_dissector(ip_cap_handle
, pd
, offset
+ 3, len
, cpinfo
, pseudo_header
);
135 case ARCNET_PROTO_ARP_1051
:
136 case ARCNET_PROTO_ARP_1201
:
138 * XXX - do we have to worry about fragmentation for ARP?
140 return call_capture_dissector(arp_cap_handle
, pd
, offset
+ 1, len
, cpinfo
, pseudo_header
);
142 case ARCNET_PROTO_IPX
:
143 capture_dissector_increment_count(cpinfo
, proto_ipx
);
154 capture_arcnet (const unsigned char *pd
, int offset _U_
, int len
, capture_packet_info_t
*cpinfo
, const union wtap_pseudo_header
*pseudo_header
)
156 return capture_arcnet_common(pd
, 4, len
, cpinfo
, pseudo_header
, false);
160 capture_arcnet_has_exception(const unsigned char *pd
, int offset _U_
, int len
, capture_packet_info_t
*cpinfo
, const union wtap_pseudo_header
*pseudo_header
)
162 return capture_arcnet_common(pd
, 2, len
, cpinfo
, pseudo_header
, true);
166 dissect_arcnet_common (tvbuff_t
* tvb
, packet_info
* pinfo
, proto_tree
* tree
,
167 bool has_offset
, bool has_exception
)
170 uint8_t dst
, src
, protID
, split_flag
;
173 proto_tree
*arcnet_tree
;
175 col_set_str (pinfo
->cinfo
, COL_PROTOCOL
, "ARCNET");
177 col_set_str(pinfo
->cinfo
, COL_INFO
, "ARCNET");
179 src
= tvb_get_uint8 (tvb
, 0);
180 dst
= tvb_get_uint8 (tvb
, 1);
181 set_address_tvb(&pinfo
->dl_src
, arcnet_address_type
, 1, tvb
, 0);
182 copy_address_shallow(&pinfo
->src
, &pinfo
->dl_src
);
183 set_address_tvb(&pinfo
->dl_dst
, arcnet_address_type
, 1, tvb
, 1);
184 copy_address_shallow(&pinfo
->dst
, &pinfo
->dl_dst
);
186 ti
= proto_tree_add_item (tree
, proto_arcnet
, tvb
, 0, -1, ENC_NA
);
188 arcnet_tree
= proto_item_add_subtree (ti
, ett_arcnet
);
190 proto_tree_add_uint (arcnet_tree
, hf_arcnet_src
, tvb
, offset
, 1, src
);
193 proto_tree_add_uint (arcnet_tree
, hf_arcnet_dst
, tvb
, offset
, 1, dst
);
197 proto_tree_add_item (arcnet_tree
, hf_arcnet_offset
, tvb
, offset
, 2, ENC_NA
);
201 protID
= tvb_get_uint8 (tvb
, offset
);
202 proto_tree_add_uint (arcnet_tree
, hf_arcnet_protID
, tvb
, offset
, 1, protID
);
207 case ARCNET_PROTO_IP_1051
:
208 case ARCNET_PROTO_ARP_1051
:
209 case ARCNET_PROTO_DIAGNOSE
:
210 case ARCNET_PROTO_BACNET
: /* XXX - no fragmentation? */
211 /* No fragmentation stuff in the header */
216 * Show the fragmentation stuff - flag and sequence ID.
218 * XXX - on at least some versions of NetBSD, it appears that
219 * we might get ARCNET frames, not reassembled packets; if so,
220 * we should reassemble them.
222 * XXX - but on FreeBSD it appears that we get reassembled packets
223 * on input (but apparently we get frames on output - or maybe
224 * we get the packet *and* all its frames!); how to tell the
225 * difference? It looks from the FreeBSD reassembly code as if
226 * the reassembled packet arrives with the header for the first
227 * frame. It also looks as if, on output, we first get the
228 * full packet, with a header containing none of the fragmentation
229 * stuff, and then get the frames.
231 * On Linux, we get only reassembled packets, and the exception
232 * frame stuff is hidden - there's a split flag and sequence
233 * number, but it appears that it will never have the exception
236 * XXX - what about OpenBSD? And, for that matter, what about
237 * Windows? (I suspect Windows supplies reassembled frames,
238 * as WinPcap, like PF_PACKET sockets, taps into the networking
239 * stack just as other protocols do.)
241 split_flag
= tvb_get_uint8 (tvb
, offset
);
242 if (has_exception
&& split_flag
== 0xff) {
243 /* This is an exception packet. The flag value there is the
244 "this is an exception flag" packet; the next two bytes
245 after it are padding. */
246 proto_tree_add_uint (arcnet_tree
, hf_arcnet_exception_flag
, tvb
, offset
, 1,
250 proto_tree_add_item(arcnet_tree
, hf_arcnet_padding
, tvb
, offset
, 2, ENC_BIG_ENDIAN
);
253 /* Another copy of the packet type appears after the padding. */
254 proto_tree_add_item (arcnet_tree
, hf_arcnet_protID
, tvb
, offset
, 1, ENC_BIG_ENDIAN
);
257 /* And after that comes the real split flag. */
258 split_flag
= tvb_get_uint8 (tvb
, offset
);
261 proto_tree_add_uint (arcnet_tree
, hf_arcnet_split_flag
, tvb
, offset
, 1,
265 proto_tree_add_item (arcnet_tree
, hf_arcnet_sequence
, tvb
, offset
, 2, ENC_BIG_ENDIAN
);
271 /* Set the length of the ARCNET header protocol tree item. */
272 proto_item_set_len(ti
, offset
);
274 next_tvb
= tvb_new_subset_remaining (tvb
, offset
);
276 if (!dissector_try_uint (arcnet_dissector_table
, protID
,
277 next_tvb
, pinfo
, tree
))
279 col_add_fstr (pinfo
->cinfo
, COL_PROTOCOL
, "0x%04x", protID
);
280 call_data_dissector(next_tvb
, pinfo
, tree
);
286 * BSD-style ARCNET headers - they don't have the offset field from the
287 * ARCNET hardware packet, but we might get an exception frame header.
290 dissect_arcnet (tvbuff_t
* tvb
, packet_info
* pinfo
, proto_tree
* tree
, void* data _U_
)
292 dissect_arcnet_common (tvb
, pinfo
, tree
, false, true);
293 return tvb_captured_length(tvb
);
297 * Linux-style ARCNET headers - they *do* have the offset field from the
298 * ARCNET hardware packet, but we should never see an exception frame
302 dissect_arcnet_linux (tvbuff_t
* tvb
, packet_info
* pinfo
, proto_tree
* tree
, void* data _U_
)
304 dissect_arcnet_common (tvb
, pinfo
, tree
, true, false);
305 return tvb_captured_length(tvb
);
308 static const value_string arcnet_prot_id_vals
[] = {
309 {ARCNET_PROTO_IP_1051
, "RFC 1051 IP"},
310 {ARCNET_PROTO_ARP_1051
, "RFC 1051 ARP"},
311 {ARCNET_PROTO_IP_1201
, "RFC 1201 IP"},
312 {ARCNET_PROTO_ARP_1201
, "RFC 1201 ARP"},
313 {ARCNET_PROTO_RARP_1201
, "RFC 1201 RARP"},
314 {ARCNET_PROTO_IPX
, "IPX"},
315 {ARCNET_PROTO_NOVELL_EC
, "Novell of some sort"},
316 {ARCNET_PROTO_IPv6
, "IPv6"},
317 {ARCNET_PROTO_ETHERNET
, "Encapsulated Ethernet"},
318 {ARCNET_PROTO_DATAPOINT_BOOT
, "Datapoint boot"},
319 {ARCNET_PROTO_DATAPOINT_MOUNT
, "Datapoint mount"},
320 {ARCNET_PROTO_POWERLAN_BEACON
, "PowerLAN beacon"},
321 {ARCNET_PROTO_POWERLAN_BEACON2
, "PowerLAN beacon2"},
322 {ARCNET_PROTO_APPLETALK
, "Appletalk"},
323 {ARCNET_PROTO_BANYAN
, "Banyan VINES"},
324 {ARCNET_PROTO_DIAGNOSE
, "Diagnose"},
325 {ARCNET_PROTO_BACNET
, "BACnet"},
330 proto_register_arcnet (void)
333 /* Setup list of header fields See Section 1.6.1 for details*/
334 static hf_register_info hf
[] = {
336 {"Source", "arcnet.src",
337 FT_UINT8
, BASE_HEX
, NULL
, 0,
341 {"Dest", "arcnet.dst",
342 FT_UINT8
, BASE_HEX
, NULL
, 0,
346 {"Offset", "arcnet.offset",
347 FT_BYTES
, BASE_NONE
, NULL
, 0,
351 {"Protocol ID", "arcnet.protID",
352 FT_UINT8
, BASE_HEX
, VALS(arcnet_prot_id_vals
), 0,
355 {&hf_arcnet_split_flag
,
356 {"Split Flag", "arcnet.split_flag",
357 FT_UINT8
, BASE_DEC
, NULL
, 0,
360 {&hf_arcnet_exception_flag
,
361 {"Exception Flag", "arcnet.exception_flag",
362 FT_UINT8
, BASE_HEX
, NULL
, 0,
365 {&hf_arcnet_sequence
,
366 {"Sequence", "arcnet.sequence",
367 FT_UINT16
, BASE_DEC
, NULL
, 0,
368 "Sequence number", HFILL
}
371 {"Padding", "arcnet.padding",
372 FT_UINT16
, BASE_HEX
, NULL
, 0,
377 /* Setup protocol subtree array */
378 static int *ett
[] = {
382 /* Register the protocol name and description */
383 proto_arcnet
= proto_register_protocol ("ARCNET", "ARCNET", "arcnet");
385 /* Required function calls to register the header fields and subtrees used */
386 proto_register_field_array (proto_arcnet
, hf
, array_length (hf
));
387 proto_register_subtree_array (ett
, array_length (ett
));
389 arcnet_dissector_table
= register_dissector_table ("arcnet.protocol_id", "ARCNET Protocol ID",
390 proto_arcnet
, FT_UINT8
, BASE_HEX
);
392 arcnet_address_type
= address_type_dissector_register("AT_ARCNET", "ARCNET Address", arcnet_to_str
, arcnet_str_len
, NULL
, arcnet_col_filter_str
, arcnet_len
, NULL
, NULL
);
394 arcnet_handle
= register_dissector("arcnet", dissect_arcnet
, proto_arcnet
);
395 arcnet_linux_handle
= register_dissector("arcnet_linux", dissect_arcnet_linux
, proto_arcnet
);
397 arcnet_cap_handle
= register_capture_dissector("arcnet_linux", capture_arcnet
, proto_arcnet
);
398 arcnet_cap_has_ex_handle
= register_capture_dissector("arcnet", capture_arcnet_has_exception
, proto_arcnet
);
403 proto_reg_handoff_arcnet (void)
405 dissector_add_uint ("wtap_encap", WTAP_ENCAP_ARCNET
, arcnet_handle
);
406 dissector_add_uint ("wtap_encap", WTAP_ENCAP_ARCNET_LINUX
, arcnet_linux_handle
);
408 proto_ipx
= proto_get_id_by_filter_name("ipx");
410 capture_dissector_add_uint("wtap_encap", WTAP_ENCAP_ARCNET_LINUX
, arcnet_cap_handle
);
411 capture_dissector_add_uint("wtap_encap", WTAP_ENCAP_ARCNET
, arcnet_cap_has_ex_handle
);
413 ip_cap_handle
= find_capture_dissector("ip");
414 arp_cap_handle
= find_capture_dissector("arp");
418 * Editor modelines - https://www.wireshark.org/tools/modelines.html
423 * indent-tabs-mode: nil
426 * ex: set shiftwidth=2 tabstop=8 expandtab:
427 * :indentSize=2:tabSize=8:noTabs=true: