3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
6 * Ericsson SmartEdge tcpdump trace disassembly
7 * Copyright 2005-2014 Florian Lohoff <f@zz.de>
9 * SPDX-License-Identifier: GPL-2.0-or-later
13 #include <epan/packet.h>
14 #include <epan/expert.h>
15 #include <wiretap/wtap.h>
18 void proto_register_redback(void);
19 void proto_reg_handoff_redback(void);
21 static dissector_handle_t redback_handle
;
23 static int ett_redback
;
25 static dissector_table_t osinl_incl_subdissector_table
;
26 static dissector_table_t osinl_excl_subdissector_table
;
28 static dissector_handle_t ipv4_handle
;
29 static dissector_handle_t ipv6_handle
;
30 static dissector_handle_t ethnofcs_handle
;
31 static dissector_handle_t clnp_handle
;
32 static dissector_handle_t arp_handle
;
33 static dissector_handle_t ppp_handle
;
34 static dissector_handle_t ppphdlc_handle
;
36 static int proto_redback
;
38 static int hf_redback_circuit
;
39 static int hf_redback_context
;
40 static int hf_redback_dataoffset
;
41 static int hf_redback_flags
;
42 static int hf_redback_l3offset
;
43 static int hf_redback_length
;
44 static int hf_redback_padding
;
45 static int hf_redback_protocol
;
46 static int hf_redback_unknown
;
48 static expert_field ei_redback_protocol
;
51 dissect_redback(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
, void* data _U_
)
53 uint16_t l3off
, dataoff
, proto
;
54 proto_item
*ti
, *protocol_item
;
55 proto_tree
*rbtree
= NULL
;
58 col_set_str(pinfo
->cinfo
,COL_PROTOCOL
,"RBN");
60 dataoff
= tvb_get_ntohs(tvb
, 20);
61 l3off
= tvb_get_ntohs(tvb
, 22);
63 ti
= proto_tree_add_item(tree
, proto_redback
, tvb
, 0, -1, ENC_NA
);
64 rbtree
= proto_item_add_subtree(ti
, ett_redback
);
66 proto_tree_add_item(rbtree
, hf_redback_context
, tvb
, 0, 4, ENC_BIG_ENDIAN
);
67 proto_tree_add_item(rbtree
, hf_redback_flags
, tvb
, 4, 4, ENC_BIG_ENDIAN
);
68 proto_tree_add_item(rbtree
, hf_redback_circuit
, tvb
, 8, 8, ENC_BIG_ENDIAN
);
69 proto_tree_add_item(rbtree
, hf_redback_length
, tvb
, 16, 2, ENC_BIG_ENDIAN
);
70 protocol_item
= proto_tree_add_item(rbtree
, hf_redback_protocol
, tvb
, 18, 2, ENC_BIG_ENDIAN
);
71 proto_tree_add_item(rbtree
, hf_redback_dataoffset
, tvb
, 20, 2, ENC_BIG_ENDIAN
);
72 proto_tree_add_item(rbtree
, hf_redback_l3offset
, tvb
, 22, 2, ENC_BIG_ENDIAN
);
75 proto_tree_add_item(rbtree
, hf_redback_padding
, tvb
, 24, dataoff
-24, ENC_NA
);
78 proto
= tvb_get_ntohs(tvb
, 18);
82 * IP on Ethernet - Incoming data points to an ethernet header
83 * outgoing we have a pure IPv4 Packet
85 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
);
87 call_dissector(ipv4_handle
, next_tvb
, pinfo
, tree
);
88 else if (dataoff
+2 == l3off
)
89 call_dissector(ppp_handle
, next_tvb
, pinfo
, tree
);
90 else if (dataoff
+4 == l3off
)
91 call_dissector(ppphdlc_handle
, next_tvb
, pinfo
, tree
);
93 call_dissector(ethnofcs_handle
, next_tvb
, pinfo
, tree
);
97 * This is ISIS - Either incoming with ethernet FCS
98 * and CLNP - passed to the eth dissector or in case
99 * of outgoing it's pure ISIS and the linecard attaches
100 * the ethernet and CLNP headers ...
103 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
);
104 if (l3off
> dataoff
) {
105 call_dissector(ethnofcs_handle
, next_tvb
, pinfo
, tree
);
107 uint8_t nlpid
= tvb_get_uint8(tvb
, dataoff
);
108 if(dissector_try_uint(osinl_incl_subdissector_table
, nlpid
, next_tvb
, pinfo
, tree
))
110 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
+1);
111 if(dissector_try_uint(osinl_excl_subdissector_table
, nlpid
, next_tvb
, pinfo
, tree
))
113 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
);
114 call_data_dissector(next_tvb
, pinfo
, tree
);
119 * PPP Messages e.g. LCP, IPCP etc - possibly on ethernet in case of PPPoE.
120 * PPPoE messages are Protocol 8 ...
123 flags
= tvb_get_ntohl(tvb
, 4);
125 if (flags
& 0x04000000) {
126 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
);
129 proto_tree_add_item(rbtree
, hf_redback_unknown
, tvb
, dataoff
, 4, ENC_NA
);
130 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
+4);
133 if (l3off
== dataoff
) {
134 call_dissector(ppp_handle
, next_tvb
, pinfo
, tree
);
136 call_dissector(ethnofcs_handle
, next_tvb
, pinfo
, tree
);
140 case 0x03: /* Unicast Ethernet tx - Seen with PPPoE PADO */
141 case 0x04: /* Unicast Ethernet rx - Seen with ARP */
142 case 0x08: /* Broadcast Ethernet rx - Seen with PPPoE PADI */
143 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
);
144 call_dissector(ethnofcs_handle
, next_tvb
, pinfo
, tree
);
146 case 0x09: /* IPv6 either encapsulated as ethernet or native ip */
147 next_tvb
= tvb_new_subset_remaining(tvb
, dataoff
);
148 if (dataoff
== l3off
)
149 call_dissector(ipv6_handle
, next_tvb
, pinfo
, tree
);
151 call_dissector(ethnofcs_handle
, next_tvb
, pinfo
, tree
);
154 expert_add_info(pinfo
, protocol_item
, &ei_redback_protocol
);
157 return tvb_captured_length(tvb
);
161 proto_register_redback(void)
163 static hf_register_info hf
[] = {
164 { &hf_redback_context
,
165 { "Context", "redback.context",
166 FT_UINT32
, BASE_HEX
, NULL
, 0x0,
170 { "Flags", "redback.flags",
171 FT_UINT32
, BASE_HEX
, NULL
, 0x0,
174 { &hf_redback_circuit
,
175 { "Circuit", "redback.circuit",
176 FT_UINT64
, BASE_HEX
, NULL
, 0x0,
179 { &hf_redback_length
,
180 { "Length", "redback.length",
181 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
184 { &hf_redback_protocol
,
185 { "Protocol", "redback.protocol",
186 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
189 { &hf_redback_l3offset
,
190 { "Layer 3 Offset", "redback.l3offset",
191 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
194 { &hf_redback_dataoffset
,
195 { "Data Offset", "redback.dataoffset",
196 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
199 { &hf_redback_padding
,
200 { "Padding", "redback.padding",
201 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
204 { &hf_redback_unknown
,
205 { "Unknown", "redback.unknown",
206 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
211 static int *ett
[] = {
215 static ei_register_info ei
[] = {
216 { &ei_redback_protocol
, { "redback.protocol.unknown", PI_PROTOCOL
, PI_WARN
, "Unknown Protocol Data", EXPFILL
}},
219 expert_module_t
* expert_redback
;
221 proto_redback
= proto_register_protocol("Redback", "Redback", "redback");
222 proto_register_field_array(proto_redback
, hf
, array_length(hf
));
223 redback_handle
= register_dissector("redback", dissect_redback
, proto_redback
);
225 proto_register_subtree_array(ett
, array_length(ett
));
226 expert_redback
= expert_register_protocol(proto_redback
);
227 expert_register_field_array(expert_redback
, ei
, array_length(ei
));
231 proto_reg_handoff_redback(void)
233 osinl_incl_subdissector_table
= find_dissector_table("osinl.incl");
234 osinl_excl_subdissector_table
= find_dissector_table("osinl.excl");
236 ipv4_handle
= find_dissector_add_dependency("ip", proto_redback
);
237 ipv6_handle
= find_dissector_add_dependency("ipv6", proto_redback
);
238 ethnofcs_handle
= find_dissector_add_dependency("eth_withoutfcs", proto_redback
);
239 clnp_handle
= find_dissector_add_dependency("clnp", proto_redback
);
240 arp_handle
= find_dissector_add_dependency("arp", proto_redback
);
241 ppp_handle
= find_dissector_add_dependency("ppp", proto_redback
);
242 ppphdlc_handle
= find_dissector_add_dependency("ppp_hdlc", proto_redback
);
244 dissector_add_uint("wtap_encap", WTAP_ENCAP_REDBACK
, redback_handle
);
248 * Editor modelines - https://www.wireshark.org/tools/modelines.html
253 * indent-tabs-mode: t
256 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
257 * :indentSize=8:tabSize=8:noTabs=false: