/src/wireshark/epan/dissectors/packet-hci_usb.c
Line | Count | Source |
1 | | /* packet-hci_usb.c |
2 | | * Routines for Bluetooth HCI USB dissection |
3 | | * |
4 | | * Copyright 2012, Michal Labedzki for Tieto Corporation |
5 | | * |
6 | | * Wireshark - Network traffic analyzer |
7 | | * By Gerald Combs <gerald@wireshark.org> |
8 | | * Copyright 1998 Gerald Combs |
9 | | * |
10 | | * SPDX-License-Identifier: GPL-2.0-or-later |
11 | | */ |
12 | | |
13 | | #include "config.h" |
14 | | |
15 | | #include <epan/packet.h> |
16 | | #include <epan/prefs.h> |
17 | | #include <epan/reassemble.h> |
18 | | |
19 | | #include "packet-bluetooth.h" |
20 | | #include "packet-usb.h" |
21 | | |
22 | | static int proto_hci_usb; |
23 | | static int hf_bthci_usb_data; |
24 | | static int hf_bthci_usb_packet_fragment; |
25 | | static int hf_bthci_usb_packet_complete; |
26 | | static int hf_bthci_usb_packet_unknown_fragment; |
27 | | static int hf_bthci_usb_setup_request; |
28 | | static int hf_bthci_usb_setup_value; |
29 | | static int hf_bthci_usb_setup_adapter_id; |
30 | | static int hf_bthci_usb_setup_length; |
31 | | |
32 | | static int ett_hci_usb; |
33 | | static int ett_hci_usb_msg_fragment; |
34 | | static int ett_hci_usb_msg_fragments; |
35 | | |
36 | | static int hf_msg_fragments; |
37 | | static int hf_msg_fragment; |
38 | | static int hf_msg_fragment_overlap; |
39 | | static int hf_msg_fragment_overlap_conflicts; |
40 | | static int hf_msg_fragment_multiple_tails; |
41 | | static int hf_msg_fragment_too_long_fragment; |
42 | | static int hf_msg_fragment_error; |
43 | | static int hf_msg_fragment_count; |
44 | | static int hf_msg_reassembled_in; |
45 | | static int hf_msg_reassembled_length; |
46 | | |
47 | | static wmem_tree_t *fragment_info_table; |
48 | | |
49 | | static reassembly_table hci_usb_reassembly_table; |
50 | | |
51 | | static dissector_handle_t hci_usb_handle; |
52 | | static dissector_handle_t bthci_cmd_handle; |
53 | | static dissector_handle_t bthci_evt_handle; |
54 | | static dissector_handle_t bthci_acl_handle; |
55 | | static dissector_handle_t bthci_sco_handle; |
56 | | |
57 | | typedef struct _fragment_info_t { |
58 | | int remaining_length; |
59 | | int fragment_id; |
60 | | } fragment_info_t; |
61 | | |
62 | | static const fragment_items hci_usb_msg_frag_items = { |
63 | | /* Fragment subtrees */ |
64 | | &ett_hci_usb_msg_fragment, |
65 | | &ett_hci_usb_msg_fragments, |
66 | | /* Fragment fields */ |
67 | | &hf_msg_fragments, |
68 | | &hf_msg_fragment, |
69 | | &hf_msg_fragment_overlap, |
70 | | &hf_msg_fragment_overlap_conflicts, |
71 | | &hf_msg_fragment_multiple_tails, |
72 | | &hf_msg_fragment_too_long_fragment, |
73 | | &hf_msg_fragment_error, |
74 | | &hf_msg_fragment_count, |
75 | | /* Reassembled in field */ |
76 | | &hf_msg_reassembled_in, |
77 | | /* Reassembled length field */ |
78 | | &hf_msg_reassembled_length, |
79 | | /* Reassembled data field */ |
80 | | NULL, |
81 | | /* Tag */ |
82 | | "Message fragments" |
83 | | }; |
84 | | |
85 | | static const value_string request_vals[] = { |
86 | | { 0x00, "Primary Controller Function" }, |
87 | | { 0x2B, "AMP Controller Function" }, |
88 | | { 0xE0, "Primary Controller Function (Historical)" }, |
89 | | { 0x00, NULL } |
90 | | }; |
91 | | static value_string_ext(request_vals_ext) = VALUE_STRING_EXT_INIT(request_vals); |
92 | | |
93 | | |
94 | | void proto_register_hci_usb(void); |
95 | | void proto_reg_handoff_hci_usb(void); |
96 | | |
97 | | static int |
98 | | dissect_hci_usb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data) |
99 | 0 | { |
100 | 0 | proto_item *ttree = NULL; |
101 | 0 | proto_tree *titem = NULL; |
102 | 0 | proto_item *pitem = NULL; |
103 | 0 | int offset = 0; |
104 | 0 | urb_info_t *urb; |
105 | 0 | tvbuff_t *next_tvb = NULL; |
106 | 0 | bluetooth_data_t *bluetooth_data; |
107 | 0 | int p2p_dir_save; |
108 | 0 | uint32_t session_id; |
109 | 0 | fragment_head *reassembled; |
110 | |
|
111 | 0 | bluetooth_data = (bluetooth_data_t *) data; |
112 | | |
113 | | /* Reject the packet if data is NULL */ |
114 | 0 | if (data == NULL) |
115 | 0 | return 0; |
116 | | |
117 | 0 | DISSECTOR_ASSERT(bluetooth_data->previous_protocol_data_type == BT_PD_URB_INFO); |
118 | 0 | urb = bluetooth_data->previous_protocol_data.urb; |
119 | |
|
120 | 0 | titem = proto_tree_add_item(tree, proto_hci_usb, tvb, offset, -1, ENC_NA); |
121 | 0 | ttree = proto_item_add_subtree(titem, ett_hci_usb); |
122 | |
|
123 | 0 | col_set_str(pinfo->cinfo, COL_PROTOCOL, "HCI_USB"); |
124 | |
|
125 | 0 | p2p_dir_save = pinfo->p2p_dir; |
126 | 0 | pinfo->p2p_dir = (urb->is_request) ? P2P_DIR_SENT : P2P_DIR_RECV; |
127 | |
|
128 | 0 | switch (pinfo->p2p_dir) { |
129 | | |
130 | 0 | case P2P_DIR_SENT: |
131 | 0 | col_set_str(pinfo->cinfo, COL_INFO, "Sent"); |
132 | 0 | break; |
133 | | |
134 | 0 | case P2P_DIR_RECV: |
135 | 0 | col_set_str(pinfo->cinfo, COL_INFO, "Rcvd"); |
136 | 0 | break; |
137 | | |
138 | 0 | default: |
139 | 0 | col_set_str(pinfo->cinfo, COL_INFO, "UnknownDirection"); |
140 | 0 | break; |
141 | 0 | } |
142 | | |
143 | 0 | if (urb->is_setup) { |
144 | 0 | proto_tree_add_item(ttree, hf_bthci_usb_setup_request, tvb, offset, 1, ENC_LITTLE_ENDIAN); |
145 | 0 | offset += 1; |
146 | |
|
147 | 0 | proto_tree_add_item(ttree, hf_bthci_usb_setup_value, tvb, offset, 2, ENC_LITTLE_ENDIAN); |
148 | 0 | offset += 2; |
149 | |
|
150 | 0 | proto_tree_add_item(ttree, hf_bthci_usb_setup_adapter_id, tvb, offset, 2, ENC_LITTLE_ENDIAN); |
151 | 0 | offset += 2; |
152 | |
|
153 | 0 | proto_tree_add_item(ttree, hf_bthci_usb_setup_length, tvb, offset, 2, ENC_LITTLE_ENDIAN); |
154 | 0 | offset += 2; |
155 | 0 | } |
156 | |
|
157 | 0 | session_id = urb->bus_id << 16 | urb->device_address << 8 | ((pinfo->p2p_dir == P2P_DIR_RECV) ? 1 : 0 ) << 7 | urb->endpoint; |
158 | |
|
159 | 0 | bluetooth_data->adapter_id = urb->bus_id << 8 | urb->device_address; |
160 | | /* TODO: adapter disconnect on some USB action, for now do not support adapter disconnection */ |
161 | 0 | bluetooth_data->adapter_disconnect_in_frame = &bluetooth_max_disconnect_in_frame; |
162 | |
|
163 | 0 | next_tvb = tvb_new_subset_remaining(tvb, offset); |
164 | 0 | if (!pinfo->fd->visited && urb->transfer_type != URB_ISOCHRONOUS && |
165 | 0 | tvb_captured_length(tvb) == tvb_reported_length(tvb)) { |
166 | 0 | fragment_info_t *fragment_info; |
167 | |
|
168 | 0 | fragment_info = (fragment_info_t *) wmem_tree_lookup32(fragment_info_table, session_id); |
169 | 0 | if (fragment_info == NULL) { |
170 | 0 | fragment_info = (fragment_info_t *) wmem_new(wmem_file_scope(), fragment_info_t); |
171 | 0 | fragment_info->fragment_id = 0; |
172 | 0 | fragment_info->remaining_length = 0; |
173 | |
|
174 | 0 | wmem_tree_insert32(fragment_info_table, session_id, fragment_info); |
175 | 0 | } |
176 | |
|
177 | 0 | if (fragment_info->fragment_id == 0) { |
178 | 0 | switch(urb->transfer_type) |
179 | 0 | { |
180 | 0 | case URB_CONTROL: |
181 | 0 | fragment_info->remaining_length = tvb_get_uint8(tvb, offset + 2) + 3; |
182 | 0 | break; |
183 | 0 | case URB_INTERRUPT: |
184 | 0 | fragment_info->remaining_length = tvb_get_uint8(tvb, offset + 1) + 2; |
185 | 0 | break; |
186 | 0 | case URB_BULK: |
187 | 0 | fragment_info->remaining_length = tvb_get_letohs(tvb, offset + 2) + 4; |
188 | 0 | break; |
189 | 0 | } |
190 | 0 | } |
191 | | |
192 | 0 | fragment_info->remaining_length -= tvb_reported_length_remaining(tvb, offset); |
193 | |
|
194 | 0 | fragment_add_seq_check(&hci_usb_reassembly_table, |
195 | 0 | tvb, offset, pinfo, session_id, NULL, |
196 | 0 | fragment_info->fragment_id, tvb_reported_length_remaining(tvb, offset), (fragment_info->remaining_length == 0) ? false : true); |
197 | 0 | if (fragment_info->remaining_length > 0) |
198 | 0 | fragment_info->fragment_id += 1; |
199 | 0 | else |
200 | 0 | fragment_info->fragment_id = 0; |
201 | 0 | } |
202 | | |
203 | 0 | reassembled = fragment_get_reassembled_id(&hci_usb_reassembly_table, pinfo, session_id); |
204 | 0 | if (reassembled && pinfo->num < reassembled->reassembled_in) { |
205 | 0 | pitem = proto_tree_add_item(ttree, hf_bthci_usb_packet_fragment, tvb, offset, -1, ENC_NA); |
206 | 0 | proto_item_set_generated(pitem); |
207 | |
|
208 | 0 | col_append_str(pinfo->cinfo, COL_INFO, " Fragment"); |
209 | 0 | } else if (reassembled && pinfo->num == reassembled->reassembled_in) { |
210 | 0 | pitem = proto_tree_add_item(ttree, hf_bthci_usb_packet_complete, tvb, offset, -1, ENC_NA); |
211 | 0 | proto_item_set_generated(pitem); |
212 | |
|
213 | 0 | if (reassembled->len > (unsigned) tvb_reported_length_remaining(tvb, offset)) { |
214 | 0 | next_tvb = process_reassembled_data(tvb, 0, pinfo, |
215 | 0 | "Reassembled HCI_USB", |
216 | 0 | reassembled, &hci_usb_msg_frag_items, |
217 | 0 | NULL, ttree); |
218 | 0 | } |
219 | |
|
220 | 0 | switch(urb->transfer_type) |
221 | 0 | { |
222 | 0 | case URB_CONTROL: |
223 | 0 | call_dissector_with_data(bthci_cmd_handle, next_tvb, pinfo, tree, bluetooth_data); |
224 | 0 | break; |
225 | 0 | case URB_INTERRUPT: |
226 | 0 | call_dissector_with_data(bthci_evt_handle, next_tvb, pinfo, tree, bluetooth_data); |
227 | 0 | break; |
228 | 0 | case URB_BULK: |
229 | 0 | call_dissector_with_data(bthci_acl_handle, next_tvb, pinfo, tree, bluetooth_data); |
230 | 0 | break; |
231 | 0 | } |
232 | 0 | } else { |
233 | 0 | pitem = proto_tree_add_item(ttree, hf_bthci_usb_packet_unknown_fragment, tvb, offset, -1, ENC_NA); |
234 | 0 | proto_item_set_generated(pitem); |
235 | 0 | } |
236 | | |
237 | 0 | if (urb->transfer_type == URB_ISOCHRONOUS) { |
238 | 0 | call_dissector_with_data(bthci_sco_handle, next_tvb, pinfo, tree, bluetooth_data); |
239 | 0 | } else if (urb->transfer_type == URB_UNKNOWN) { |
240 | 0 | proto_tree_add_item(ttree, hf_bthci_usb_data, tvb, offset, -1, ENC_NA); |
241 | 0 | } |
242 | |
|
243 | 0 | offset += tvb_reported_length_remaining(tvb, offset); |
244 | |
|
245 | 0 | pinfo->p2p_dir = p2p_dir_save; |
246 | |
|
247 | 0 | return offset; |
248 | 0 | } |
249 | | |
250 | | void |
251 | | proto_register_hci_usb(void) |
252 | 14 | { |
253 | 14 | module_t *module; |
254 | | |
255 | 14 | static hf_register_info hf[] = { |
256 | 14 | { &hf_msg_fragments, |
257 | 14 | { "Message fragments", "hci_usb.msg.fragments", |
258 | 14 | FT_NONE, BASE_NONE, NULL, 0x00, |
259 | 14 | NULL, HFILL } |
260 | 14 | }, |
261 | 14 | { &hf_msg_fragment, |
262 | 14 | { "Message fragment", "hci_usb.msg.fragment", |
263 | 14 | FT_FRAMENUM, BASE_NONE, NULL, 0x00, |
264 | 14 | NULL, HFILL } |
265 | 14 | }, |
266 | 14 | { &hf_msg_fragment_overlap, |
267 | 14 | { "Message fragment overlap", "hci_usb.msg.fragment.overlap", |
268 | 14 | FT_BOOLEAN, BASE_NONE, NULL, 0x00, |
269 | 14 | NULL, HFILL } |
270 | 14 | }, |
271 | 14 | { &hf_msg_fragment_overlap_conflicts, |
272 | 14 | { "Message fragment overlapping with conflicting data", "hci_usb.msg.fragment.overlap.conflicts", |
273 | 14 | FT_BOOLEAN, BASE_NONE, NULL, 0x00, |
274 | 14 | NULL, HFILL } |
275 | 14 | }, |
276 | 14 | { &hf_msg_fragment_multiple_tails, |
277 | 14 | { "Message has multiple tail fragments", "hci_usb.msg.fragment.multiple_tails", |
278 | 14 | FT_BOOLEAN, BASE_NONE, NULL, 0x00, |
279 | 14 | NULL, HFILL } |
280 | 14 | }, |
281 | 14 | { &hf_msg_fragment_too_long_fragment, |
282 | 14 | { "Message fragment too long", "hci_usb.msg.fragment.too_long_fragment", |
283 | 14 | FT_BOOLEAN, BASE_NONE, NULL, 0x00, |
284 | 14 | NULL, HFILL } |
285 | 14 | }, |
286 | 14 | { &hf_msg_fragment_error, |
287 | 14 | { "Message defragmentation error", "hci_usb.msg.fragment.error", |
288 | 14 | FT_FRAMENUM, BASE_NONE, NULL, 0x00, |
289 | 14 | NULL, HFILL } |
290 | 14 | }, |
291 | 14 | { &hf_msg_fragment_count, |
292 | 14 | { "Message fragment count", "hci_usb.msg.fragment.count", |
293 | 14 | FT_UINT32, BASE_DEC, NULL, 0x00, |
294 | 14 | NULL, HFILL } |
295 | 14 | }, |
296 | 14 | { &hf_msg_reassembled_in, |
297 | 14 | { "Reassembled in", "hci_usb.msg.reassembled.in", |
298 | 14 | FT_FRAMENUM, BASE_NONE, NULL, 0x00, |
299 | 14 | NULL, HFILL } |
300 | 14 | }, |
301 | 14 | { &hf_msg_reassembled_length, |
302 | 14 | { "Reassembled MP2T length", "hci_usb.msg.reassembled.length", |
303 | 14 | FT_UINT32, BASE_DEC, NULL, 0x00, |
304 | 14 | NULL, HFILL } |
305 | 14 | }, |
306 | 14 | { &hf_bthci_usb_packet_fragment, |
307 | 14 | { "Packet Fragment", "hci_usb.packet.fragment", |
308 | 14 | FT_NONE, BASE_NONE, NULL, 0x00, |
309 | 14 | NULL, HFILL } |
310 | 14 | }, |
311 | 14 | { &hf_bthci_usb_packet_complete, |
312 | 14 | { "Packet Complete", "hci_usb.packet.complete", |
313 | 14 | FT_NONE, BASE_NONE, NULL, 0x00, |
314 | 14 | NULL, HFILL } |
315 | 14 | }, |
316 | 14 | { &hf_bthci_usb_packet_unknown_fragment, |
317 | 14 | { "Unknown Packet Fragment", "hci_usb.packet.unknown_fragment", |
318 | 14 | FT_NONE, BASE_NONE, NULL, 0x00, |
319 | 14 | NULL, HFILL } |
320 | 14 | }, |
321 | 14 | { &hf_bthci_usb_setup_request, |
322 | 14 | { "bRequest", "hci_usb.setup.bRequest", |
323 | 14 | FT_UINT8, BASE_DEC | BASE_EXT_STRING, &request_vals_ext, 0x0, |
324 | 14 | NULL, HFILL }}, |
325 | | |
326 | 14 | { &hf_bthci_usb_setup_value, |
327 | 14 | { "wValue", "hci_usb.setup.wValue", |
328 | 14 | FT_UINT16, BASE_HEX, NULL, 0x0, |
329 | 14 | NULL, HFILL }}, |
330 | | |
331 | 14 | { &hf_bthci_usb_setup_adapter_id, |
332 | 14 | { "Adapter ID", "hci_usb.setup.adapter_id", |
333 | 14 | FT_UINT16, BASE_DEC, NULL, 0x0, |
334 | 14 | NULL, HFILL }}, |
335 | | |
336 | 14 | { &hf_bthci_usb_setup_length, |
337 | 14 | { "wLength", "hci_usb.setup.wLength", |
338 | 14 | FT_UINT16, BASE_DEC, NULL, 0x0, |
339 | 14 | NULL, HFILL }}, |
340 | 14 | { &hf_bthci_usb_data, |
341 | 14 | { "Unknown Data", "hci_usb.data", |
342 | 14 | FT_NONE, BASE_NONE, NULL, 0x00, |
343 | 14 | NULL, HFILL } |
344 | 14 | } |
345 | 14 | }; |
346 | | |
347 | 14 | static int *ett[] = { |
348 | 14 | &ett_hci_usb, |
349 | 14 | &ett_hci_usb_msg_fragment, |
350 | 14 | &ett_hci_usb_msg_fragments, |
351 | 14 | }; |
352 | | |
353 | 14 | reassembly_table_register(&hci_usb_reassembly_table, |
354 | 14 | &addresses_reassembly_table_functions); |
355 | 14 | fragment_info_table = wmem_tree_new_autoreset(wmem_epan_scope(), wmem_file_scope()); |
356 | | |
357 | 14 | proto_hci_usb = proto_register_protocol("Bluetooth HCI USB Transport", "HCI_USB", "hci_usb"); |
358 | 14 | proto_register_field_array(proto_hci_usb, hf, array_length(hf)); |
359 | 14 | proto_register_subtree_array(ett, array_length(ett)); |
360 | 14 | hci_usb_handle = register_dissector("hci_usb", dissect_hci_usb, proto_hci_usb); |
361 | | |
362 | 14 | module = prefs_register_protocol_subtree("Bluetooth", proto_hci_usb, NULL); |
363 | 14 | prefs_register_static_text_preference(module, "bthci_usb.version", |
364 | 14 | "Bluetooth HCI USB Transport from Core 4.0", |
365 | 14 | "Version of protocol supported by this dissector."); |
366 | 14 | } |
367 | | |
368 | | void |
369 | | proto_reg_handoff_hci_usb(void) |
370 | 14 | { |
371 | 14 | bthci_cmd_handle = find_dissector_add_dependency("bthci_cmd", proto_hci_usb); |
372 | 14 | bthci_evt_handle = find_dissector_add_dependency("bthci_evt", proto_hci_usb); |
373 | 14 | bthci_acl_handle = find_dissector_add_dependency("bthci_acl", proto_hci_usb); |
374 | 14 | bthci_sco_handle = find_dissector_add_dependency("bthci_sco", proto_hci_usb); |
375 | 14 | } |
376 | | |
377 | | /* |
378 | | * Editor modelines - https://www.wireshark.org/tools/modelines.html |
379 | | * |
380 | | * Local variables: |
381 | | * c-basic-offset: 4 |
382 | | * tab-width: 8 |
383 | | * indent-tabs-mode: nil |
384 | | * End: |
385 | | * |
386 | | * vi: set shiftwidth=4 tabstop=8 expandtab: |
387 | | * :indentSize=4:tabSize=8:noTabs=true: |
388 | | */ |