2 * Copyright (c) 2006 Paolo Abeni (Italy)
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote
15 * products derived from this software without specific prior written
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * Bluetooth sniffing API implementation for Linux platform
31 * By Paolo Abeni <paolo.abeni@email.it>
40 #include "pcap-bt-linux.h"
41 #include "pcap/bluetooth.h"
43 #ifdef NEED_STRERROR_H
52 #include <sys/ioctl.h>
53 #include <sys/socket.h>
54 #include <arpa/inet.h>
56 #include <bluetooth/bluetooth.h>
57 #include <bluetooth/hci.h>
59 #define BT_IFACE "bluetooth"
60 #define BT_CTRL_SIZE 128
62 /* forward declaration */
63 static int bt_activate(pcap_t
*);
64 static int bt_read_linux(pcap_t
*, int , pcap_handler
, u_char
*);
65 static int bt_inject_linux(pcap_t
*, const void *, size_t);
66 static int bt_setdirection_linux(pcap_t
*, pcap_direction_t
);
67 static int bt_stats_linux(pcap_t
*, struct pcap_stat
*);
70 * Private data for capturing on Linux Bluetooth devices.
73 int dev_id
; /* device ID of device we're bound to */
77 bt_findalldevs(pcap_if_list_t
*devlistp
, char *err_str
)
79 struct hci_dev_list_req
*dev_list
;
80 struct hci_dev_req
*dev_req
;
84 sock
= socket(AF_BLUETOOTH
, SOCK_RAW
, BTPROTO_HCI
);
87 /* if bluetooth is not supported this this is not fatal*/
88 if (errno
== EAFNOSUPPORT
)
90 pcap_snprintf(err_str
, PCAP_ERRBUF_SIZE
,
91 "Can't open raw Bluetooth socket: %s", strerror(errno
));
95 dev_list
= malloc(HCI_MAX_DEV
* sizeof(*dev_req
) + sizeof(*dev_list
));
98 pcap_snprintf(err_str
, PCAP_ERRBUF_SIZE
, "Can't allocate %zu bytes for Bluetooth device list",
99 HCI_MAX_DEV
* sizeof(*dev_req
) + sizeof(*dev_list
));
104 dev_list
->dev_num
= HCI_MAX_DEV
;
106 if (ioctl(sock
, HCIGETDEVLIST
, (void *) dev_list
) < 0)
108 pcap_snprintf(err_str
, PCAP_ERRBUF_SIZE
,
109 "Can't get Bluetooth device list via ioctl: %s",
115 dev_req
= dev_list
->dev_req
;
116 for (i
= 0; i
< dev_list
->dev_num
; i
++, dev_req
++) {
117 char dev_name
[20], dev_descr
[30];
119 pcap_snprintf(dev_name
, 20, BT_IFACE
"%d", dev_req
->dev_id
);
120 pcap_snprintf(dev_descr
, 30, "Bluetooth adapter number %d", i
);
122 if (add_dev(devlistp
, dev_name
, 0, dev_descr
, err_str
) == NULL
)
139 bt_create(const char *device
, char *ebuf
, int *is_ours
)
146 /* Does this look like a Bluetooth device? */
147 cp
= strrchr(device
, '/');
150 /* Does it begin with BT_IFACE? */
151 if (strncmp(cp
, BT_IFACE
, sizeof BT_IFACE
- 1) != 0) {
152 /* Nope, doesn't begin with BT_IFACE */
156 /* Yes - is BT_IFACE followed by a number? */
157 cp
+= sizeof BT_IFACE
- 1;
158 devnum
= strtol(cp
, &cpend
, 10);
159 if (cpend
== cp
|| *cpend
!= '\0') {
160 /* Not followed by a number. */
165 /* Followed by a non-valid number. */
170 /* OK, it's probably ours. */
173 p
= pcap_create_common(ebuf
, sizeof (struct pcap_bt
));
177 p
->activate_op
= bt_activate
;
182 bt_activate(pcap_t
* handle
)
184 struct pcap_bt
*handlep
= handle
->priv
;
185 struct sockaddr_hci addr
;
188 struct hci_filter flt
;
189 int err
= PCAP_ERROR
;
191 /* get bt interface id */
192 if (sscanf(handle
->opt
.device
, BT_IFACE
"%d", &dev_id
) != 1)
194 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
195 "Can't get Bluetooth device index from %s",
201 * Turn a negative snapshot value (invalid), a snapshot value of
202 * 0 (unspecified), or a value bigger than the normal maximum
203 * value, into the maximum allowed value.
205 * If some application really *needs* a bigger snapshot
206 * length, we should just increase MAXIMUM_SNAPLEN.
208 if (handle
->snapshot
<= 0 || handle
->snapshot
> MAXIMUM_SNAPLEN
)
209 handle
->snapshot
= MAXIMUM_SNAPLEN
;
211 /* Initialize some components of the pcap structure. */
212 handle
->bufsize
= BT_CTRL_SIZE
+sizeof(pcap_bluetooth_h4_header
)+handle
->snapshot
;
213 handle
->linktype
= DLT_BLUETOOTH_HCI_H4_WITH_PHDR
;
215 handle
->read_op
= bt_read_linux
;
216 handle
->inject_op
= bt_inject_linux
;
217 handle
->setfilter_op
= install_bpf_program
; /* no kernel filtering */
218 handle
->setdirection_op
= bt_setdirection_linux
;
219 handle
->set_datalink_op
= NULL
; /* can't change data link type */
220 handle
->getnonblock_op
= pcap_getnonblock_fd
;
221 handle
->setnonblock_op
= pcap_setnonblock_fd
;
222 handle
->stats_op
= bt_stats_linux
;
223 handlep
->dev_id
= dev_id
;
225 /* Create HCI socket */
226 handle
->fd
= socket(AF_BLUETOOTH
, SOCK_RAW
, BTPROTO_HCI
);
227 if (handle
->fd
< 0) {
228 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
229 "Can't create raw socket: %s", strerror(errno
));
233 handle
->buffer
= malloc(handle
->bufsize
);
234 if (!handle
->buffer
) {
235 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "Can't allocate dump buffer: %s",
236 pcap_strerror(errno
));
241 if (setsockopt(handle
->fd
, SOL_HCI
, HCI_DATA_DIR
, &opt
, sizeof(opt
)) < 0) {
242 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
243 "Can't enable data direction info: %s", strerror(errno
));
248 if (setsockopt(handle
->fd
, SOL_HCI
, HCI_TIME_STAMP
, &opt
, sizeof(opt
)) < 0) {
249 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
250 "Can't enable time stamp: %s", strerror(errno
));
254 /* Setup filter, do not call hci function to avoid dependence on
256 memset(&flt
, 0, sizeof(flt
));
257 memset((void *) &flt
.type_mask
, 0xff, sizeof(flt
.type_mask
));
258 memset((void *) &flt
.event_mask
, 0xff, sizeof(flt
.event_mask
));
259 if (setsockopt(handle
->fd
, SOL_HCI
, HCI_FILTER
, &flt
, sizeof(flt
)) < 0) {
260 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
261 "Can't set filter: %s", strerror(errno
));
266 /* Bind socket to the HCI device */
267 addr
.hci_family
= AF_BLUETOOTH
;
268 addr
.hci_dev
= handlep
->dev_id
;
269 #ifdef SOCKADDR_HCI_HAS_HCI_CHANNEL
270 addr
.hci_channel
= HCI_CHANNEL_RAW
;
272 if (bind(handle
->fd
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0) {
273 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
274 "Can't attach to device %d: %s", handlep
->dev_id
,
279 if (handle
->opt
.rfmon
) {
281 * Monitor mode doesn't apply to Bluetooth devices.
283 err
= PCAP_ERROR_RFMON_NOTSUP
;
287 if (handle
->opt
.buffer_size
!= 0) {
289 * Set the socket buffer size to the specified value.
291 if (setsockopt(handle
->fd
, SOL_SOCKET
, SO_RCVBUF
,
292 &handle
->opt
.buffer_size
,
293 sizeof(handle
->opt
.buffer_size
)) == -1) {
294 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
295 "SO_RCVBUF: %s", pcap_strerror(errno
));
300 handle
->selectable_fd
= handle
->fd
;
304 pcap_cleanup_live_common(handle
);
309 bt_read_linux(pcap_t
*handle
, int max_packets
, pcap_handler callback
, u_char
*user
)
311 struct cmsghdr
*cmsg
;
315 struct pcap_pkthdr pkth
;
316 pcap_bluetooth_h4_header
* bthdr
;
320 pktd
= (u_char
*)handle
->buffer
+ BT_CTRL_SIZE
;
321 bthdr
= (pcap_bluetooth_h4_header
*)(void *)pktd
;
322 iv
.iov_base
= pktd
+ sizeof(pcap_bluetooth_h4_header
);
323 iv
.iov_len
= handle
->snapshot
;
325 memset(&msg
, 0, sizeof(msg
));
328 msg
.msg_control
= handle
->buffer
;
329 msg
.msg_controllen
= BT_CTRL_SIZE
;
331 /* ignore interrupt system call error */
333 ret
= recvmsg(handle
->fd
, &msg
, 0);
334 if (handle
->break_loop
)
336 handle
->break_loop
= 0;
339 } while ((ret
== -1) && (errno
== EINTR
));
342 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
343 "Can't receive packet: %s", strerror(errno
));
349 /* get direction and timestamp*/
350 cmsg
= CMSG_FIRSTHDR(&msg
);
352 switch (cmsg
->cmsg_type
) {
354 memcpy(&in
, CMSG_DATA(cmsg
), sizeof in
);
356 case HCI_CMSG_TSTAMP
:
357 memcpy(&pkth
.ts
, CMSG_DATA(cmsg
),
361 cmsg
= CMSG_NXTHDR(&msg
, cmsg
);
363 if ((in
&& (handle
->direction
== PCAP_D_OUT
)) ||
364 ((!in
) && (handle
->direction
== PCAP_D_IN
)))
367 bthdr
->direction
= htonl(in
!= 0);
368 pkth
.caplen
+=sizeof(pcap_bluetooth_h4_header
);
369 pkth
.len
= pkth
.caplen
;
370 if (handle
->fcode
.bf_insns
== NULL
||
371 bpf_filter(handle
->fcode
.bf_insns
, pktd
, pkth
.len
, pkth
.caplen
)) {
372 callback(user
, &pkth
, pktd
);
375 return 0; /* didn't pass filter */
379 bt_inject_linux(pcap_t
*handle
, const void *buf
, size_t size
)
381 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "inject not supported on "
382 "bluetooth devices");
388 bt_stats_linux(pcap_t
*handle
, struct pcap_stat
*stats
)
390 struct pcap_bt
*handlep
= handle
->priv
;
392 struct hci_dev_info dev_info
;
393 struct hci_dev_stats
* s
= &dev_info
.stat
;
394 dev_info
.dev_id
= handlep
->dev_id
;
398 ret
= ioctl(handle
->fd
, HCIGETDEVINFO
, (void *)&dev_info
);
399 } while ((ret
== -1) && (errno
== EINTR
));
402 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
403 "Can't get stats via ioctl: %s", strerror(errno
));
408 /* we receive both rx and tx frames, so comulate all stats */
409 stats
->ps_recv
= s
->evt_rx
+ s
->acl_rx
+ s
->sco_rx
+ s
->cmd_tx
+
410 s
->acl_tx
+s
->sco_tx
;
411 stats
->ps_drop
= s
->err_rx
+ s
->err_tx
;
412 stats
->ps_ifdrop
= 0;
417 bt_setdirection_linux(pcap_t
*p
, pcap_direction_t d
)