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 * USB sniffing API implementation for Linux platform
31 * By Paolo Abeni <paolo.abeni@email.it>
32 * Modifications: Kris Katterjohn <katterjohn@gmail.com>
36 static const char rcsid
[] _U_
=
37 "@(#) $Header: /tcpdump/master/libpcap/pcap-usb-linux.c,v 1.33 2008-12-23 21:38:50 guy Exp $ (LBL)";
45 #include "pcap-usb-linux.h"
48 #ifdef NEED_STRERROR_H
60 #include <netinet/in.h>
61 #include <sys/ioctl.h>
63 #ifdef HAVE_LINUX_USBDEVICE_FS_H
65 * We might need <linux/compiler.h> to define __user for
66 * <linux/usbdevice_fs.h>.
68 #ifdef HAVE_LINUX_COMPILER_H
69 #include <linux/compiler.h>
70 #endif /* HAVE_LINUX_COMPILER_H */
71 #include <linux/usbdevice_fs.h>
72 #endif /* HAVE_LINUX_USBDEVICE_FS_H */
74 #define USB_IFACE "usbmon"
75 #define USB_TEXT_DIR_OLD "/sys/kernel/debug/usbmon"
76 #define USB_TEXT_DIR "/sys/kernel/debug/usb/usbmon"
77 #define SYS_USB_BUS_DIR "/sys/bus/usb/devices"
78 #define PROC_USB_BUS_DIR "/proc/bus/usb"
79 #define USB_LINE_LEN 4096
81 #if __BYTE_ORDER == __LITTLE_ENDIAN
86 #define htols(s) bswap_16(s)
87 #define htoll(l) bswap_32(l)
88 #define htol64(ll) bswap_64(ll)
91 struct mon_bin_stats
{
99 size_t data_len
; /* Length of data (can be zero) */
102 struct mon_bin_mfetch
{
103 int32_t *offvec
; /* Vector of events fetched */
104 int32_t nfetch
; /* Number of events to fetch (out: fetched) */
105 int32_t nflush
; /* Number of events to flush */
108 #define MON_IOC_MAGIC 0x92
110 #define MON_IOCQ_URB_LEN _IO(MON_IOC_MAGIC, 1)
111 #define MON_IOCX_URB _IOWR(MON_IOC_MAGIC, 2, struct mon_bin_hdr)
112 #define MON_IOCG_STATS _IOR(MON_IOC_MAGIC, 3, struct mon_bin_stats)
113 #define MON_IOCT_RING_SIZE _IO(MON_IOC_MAGIC, 4)
114 #define MON_IOCQ_RING_SIZE _IO(MON_IOC_MAGIC, 5)
115 #define MON_IOCX_GET _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get)
116 #define MON_IOCX_MFETCH _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch)
117 #define MON_IOCH_MFLUSH _IO(MON_IOC_MAGIC, 8)
119 #define MON_BIN_SETUP 0x1 /* setup hdr is present*/
120 #define MON_BIN_SETUP_ZERO 0x2 /* setup buffer is not available */
121 #define MON_BIN_DATA_ZERO 0x4 /* data buffer is not available */
122 #define MON_BIN_ERROR 0x8
124 /* forward declaration */
125 static int usb_activate(pcap_t
*);
126 static int usb_stats_linux(pcap_t
*, struct pcap_stat
*);
127 static int usb_stats_linux_bin(pcap_t
*, struct pcap_stat
*);
128 static int usb_read_linux(pcap_t
*, int , pcap_handler
, u_char
*);
129 static int usb_read_linux_bin(pcap_t
*, int , pcap_handler
, u_char
*);
130 static int usb_read_linux_mmap(pcap_t
*, int , pcap_handler
, u_char
*);
131 static int usb_inject_linux(pcap_t
*, const void *, size_t);
132 static int usb_setdirection_linux(pcap_t
*, pcap_direction_t
);
133 static void usb_cleanup_linux_mmap(pcap_t
*);
135 /* facility to add an USB device to the device list*/
137 usb_dev_add(pcap_if_t
** alldevsp
, int n
, char *err_str
)
141 snprintf(dev_name
, 10, USB_IFACE
"%d", n
);
142 snprintf(dev_descr
, 30, "USB bus number %d", n
);
144 if (pcap_add_if(alldevsp
, dev_name
, 0,
145 dev_descr
, err_str
) < 0)
151 usb_findalldevs(pcap_if_t
**alldevsp
, char *err_str
)
160 /* try scanning sysfs usb bus directory */
161 dir
= opendir(SYS_USB_BUS_DIR
);
163 while ((ret
== 0) && ((data
= readdir(dir
)) != 0)) {
166 if (strncmp(name
, "usb", 3) != 0)
169 if (sscanf(&name
[3], "%d", &n
) == 0)
172 ret
= usb_dev_add(alldevsp
, n
, err_str
);
179 /* that didn't work; try scanning procfs usb bus directory */
180 dir
= opendir(PROC_USB_BUS_DIR
);
182 while ((ret
== 0) && ((data
= readdir(dir
)) != 0)) {
186 /* if this file name does not end with a number it's not of our interest */
187 if ((len
< 1) || !isdigit(name
[--len
]))
189 while (isdigit(name
[--len
]));
190 if (sscanf(&name
[len
+1], "%d", &n
) != 1)
193 ret
= usb_dev_add(alldevsp
, n
, err_str
);
200 /* neither of them worked */
205 int usb_mmap(pcap_t
* handle
)
207 int len
= ioctl(handle
->fd
, MON_IOCQ_RING_SIZE
);
211 handle
->md
.mmapbuflen
= len
;
212 handle
->md
.mmapbuf
= mmap(0, handle
->md
.mmapbuflen
, PROT_READ
,
213 MAP_SHARED
, handle
->fd
, 0);
214 return handle
->md
.mmapbuf
!= MAP_FAILED
;
217 #define CTRL_TIMEOUT (5*1000) /* milliseconds */
219 #define USB_DIR_IN 0x80
220 #define USB_TYPE_STANDARD 0x00
221 #define USB_RECIP_DEVICE 0x00
223 #define USB_REQ_GET_DESCRIPTOR 6
225 #define USB_DT_DEVICE 1
227 /* probe the descriptors of the devices attached to the bus */
228 /* the descriptors will end up in the captured packet stream */
229 /* and be decoded by external apps like wireshark */
230 /* without these identifying probes packet data can't be fully decoded */
232 probe_devices(int bus
)
234 struct usbdevfs_ctrltransfer ctrl
;
240 /* scan usb bus directories for device nodes */
241 snprintf(buf
, sizeof(buf
), "/dev/bus/usb/%03d", bus
);
246 while ((ret
>= 0) && ((data
= readdir(dir
)) != 0)) {
248 char* name
= data
->d_name
;
253 snprintf(buf
, sizeof(buf
), "/dev/bus/usb/%03d/%s", bus
, data
->d_name
);
255 fd
= open(buf
, O_RDWR
);
260 * Sigh. Different kernels have different member names
261 * for this structure.
263 #ifdef HAVE_USBDEVFS_CTRLTRANSFER_BREQUESTTYPE
264 ctrl
.bRequestType
= USB_DIR_IN
| USB_TYPE_STANDARD
| USB_RECIP_DEVICE
;
265 ctrl
.bRequest
= USB_REQ_GET_DESCRIPTOR
;
266 ctrl
.wValue
= USB_DT_DEVICE
<< 8;
268 ctrl
.wLength
= sizeof(buf
);
270 ctrl
.requesttype
= USB_DIR_IN
| USB_TYPE_STANDARD
| USB_RECIP_DEVICE
;
271 ctrl
.request
= USB_REQ_GET_DESCRIPTOR
;
272 ctrl
.value
= USB_DT_DEVICE
<< 8;
274 ctrl
.length
= sizeof(buf
);
277 ctrl
.timeout
= CTRL_TIMEOUT
;
279 ret
= ioctl(fd
, USBDEVFS_CONTROL
, &ctrl
);
287 usb_create(const char *device
, char *ebuf
, int *is_ours
)
289 const char *cp
, *cpend
;
293 /* Does this look like a USB monitoring device? */
294 cp
= strrchr(device
, '/');
297 /* Does it begin with USB_IFACE? */
298 if (strncmp(cp
, USB_IFACE
, sizeof USB_IFACE
- 1) != 0) {
299 /* Nope, doesn't begin with USB_IFACE */
303 /* Yes - is USB_IFACE followed by a number? */
304 cp
+= sizeof USB_IFACE
- 1;
305 devnum
= strtol(cp
, &cpend
, 10);
306 if (cpend
== cp
|| *cpend
!= '\0') {
307 /* Not followed by a number. */
312 /* Followed by a non-valid number. */
317 /* OK, it's probably ours. */
320 p
= pcap_create_common(device
, ebuf
);
324 p
->activate_op
= usb_activate
;
329 usb_activate(pcap_t
* handle
)
331 char full_path
[USB_LINE_LEN
];
333 /* Initialize some components of the pcap structure. */
334 handle
->bufsize
= handle
->snapshot
;
336 handle
->linktype
= DLT_USB_LINUX
;
338 handle
->inject_op
= usb_inject_linux
;
339 handle
->setfilter_op
= install_bpf_program
; /* no kernel filtering */
340 handle
->setdirection_op
= usb_setdirection_linux
;
341 handle
->set_datalink_op
= NULL
; /* can't change data link type */
342 handle
->getnonblock_op
= pcap_getnonblock_fd
;
343 handle
->setnonblock_op
= pcap_setnonblock_fd
;
345 /*get usb bus index from device name */
346 if (sscanf(handle
->opt
.source
, USB_IFACE
"%d", &handle
->md
.ifindex
) != 1)
348 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
349 "Can't get USB bus index from %s", handle
->opt
.source
);
353 /*now select the read method: try to open binary interface */
354 snprintf(full_path
, USB_LINE_LEN
, LINUX_USB_MON_DEV
"%d", handle
->md
.ifindex
);
355 handle
->fd
= open(full_path
, O_RDONLY
, 0);
358 if (handle
->opt
.rfmon
) {
360 * Monitor mode doesn't apply to USB devices.
363 return PCAP_ERROR_RFMON_NOTSUP
;
366 /* binary api is available, try to use fast mmap access */
367 if (usb_mmap(handle
)) {
368 handle
->linktype
= DLT_USB_LINUX_MMAPPED
;
369 handle
->stats_op
= usb_stats_linux_bin
;
370 handle
->read_op
= usb_read_linux_mmap
;
371 handle
->cleanup_op
= usb_cleanup_linux_mmap
;
372 probe_devices(handle
->md
.ifindex
);
375 * "handle->fd" is a real file, so "select()" and
376 * "poll()" work on it.
378 handle
->selectable_fd
= handle
->fd
;
382 /* can't mmap, use plain binary interface access */
383 handle
->stats_op
= usb_stats_linux_bin
;
384 handle
->read_op
= usb_read_linux_bin
;
385 probe_devices(handle
->md
.ifindex
);
388 /*Binary interface not available, try open text interface */
389 snprintf(full_path
, USB_LINE_LEN
, USB_TEXT_DIR
"/%dt", handle
->md
.ifindex
);
390 handle
->fd
= open(full_path
, O_RDONLY
, 0);
396 * Not found at the new location; try
399 snprintf(full_path
, USB_LINE_LEN
, USB_TEXT_DIR_OLD
"/%dt", handle
->md
.ifindex
);
400 handle
->fd
= open(full_path
, O_RDONLY
, 0);
402 if (handle
->fd
< 0) {
403 /* no more fallback, give it up*/
404 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
405 "Can't open USB bus file %s: %s", full_path
, strerror(errno
));
410 if (handle
->opt
.rfmon
) {
412 * Monitor mode doesn't apply to USB devices.
415 return PCAP_ERROR_RFMON_NOTSUP
;
418 handle
->stats_op
= usb_stats_linux
;
419 handle
->read_op
= usb_read_linux
;
423 * "handle->fd" is a real file, so "select()" and "poll()"
426 handle
->selectable_fd
= handle
->fd
;
428 /* for plain binary access and text access we need to allocate the read
430 handle
->buffer
= malloc(handle
->bufsize
);
431 if (!handle
->buffer
) {
432 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
433 "malloc: %s", pcap_strerror(errno
));
443 return c
< 'A' ? c
- '0': ((c
<'a') ? c
- 'A' + 10: c
-'a'+10);
447 * see <linux-kernel-source>/Documentation/usb/usbmon.txt and
448 * <linux-kernel-source>/drivers/usb/mon/mon_text.c for urb string
452 usb_read_linux(pcap_t
*handle
, int max_packets
, pcap_handler callback
, u_char
*user
)
455 * /usr/src/linux/Documentation/usb/usbmon.txt
459 int tag
, cnt
, ep_num
, dev_addr
, dummy
, ret
, urb_len
, data_len
;
460 char etype
, pipeid1
, pipeid2
, status
[16], urb_tag
, line
[USB_LINE_LEN
];
462 u_char
* rawdata
= handle
->buffer
;
463 struct pcap_pkthdr pkth
;
464 pcap_usb_header
* uhdr
= (pcap_usb_header
*)handle
->buffer
;
465 u_char urb_transfer
=0;
468 /* ignore interrupt system call errors */
470 ret
= read(handle
->fd
, line
, USB_LINE_LEN
- 1);
471 if (handle
->break_loop
)
473 handle
->break_loop
= 0;
476 } while ((ret
== -1) && (errno
== EINTR
));
480 return 0; /* no data there */
482 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
483 "Can't read from fd %d: %s", handle
->fd
, strerror(errno
));
487 /* read urb header; %n argument may increment return value, but it's
488 * not mandatory, so does not count on it*/
490 ret
= sscanf(string
, "%x %d %c %c%c:%d:%d %s%n", &tag
, ×tamp
, &etype
,
491 &pipeid1
, &pipeid2
, &dev_addr
, &ep_num
, status
,
495 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
496 "Can't parse USB bus message '%s', too few tokens (expected 8 got %d)",
501 uhdr
->device_address
= dev_addr
;
502 uhdr
->bus_id
= handle
->md
.ifindex
;
506 /* don't use usbmon provided timestamp, since it have low precision*/
507 if (gettimeofday(&pkth
.ts
, NULL
) < 0)
509 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
510 "Can't get timestamp for message '%s' %d:%s",
511 string
, errno
, strerror(errno
));
514 uhdr
->ts_sec
= pkth
.ts
.tv_sec
;
515 uhdr
->ts_usec
= pkth
.ts
.tv_usec
;
517 /* parse endpoint information */
519 urb_transfer
= URB_CONTROL
;
520 else if (pipeid1
== 'Z')
521 urb_transfer
= URB_ISOCHRONOUS
;
522 else if (pipeid1
== 'I')
523 urb_transfer
= URB_INTERRUPT
;
524 else if (pipeid1
== 'B')
525 urb_transfer
= URB_BULK
;
526 if (pipeid2
== 'i') {
527 ep_num
|= URB_TRANSFER_IN
;
531 incoming
= !incoming
;
536 if (handle
->direction
== PCAP_D_OUT
)
540 if (handle
->direction
== PCAP_D_IN
)
542 uhdr
->event_type
= etype
;
543 uhdr
->transfer_type
= urb_transfer
;
544 uhdr
->endpoint_number
= ep_num
;
545 pkth
.caplen
= sizeof(pcap_usb_header
);
546 rawdata
+= sizeof(pcap_usb_header
);
548 /* check if this is a setup packet */
549 ret
= sscanf(status
, "%d", &dummy
);
552 /* this a setup packet, setup data can be filled with underscore if
553 * usbmon has not been able to read them, so we must parse this fields as
555 pcap_usb_setup
* shdr
;
556 char str1
[3], str2
[3], str3
[5], str4
[5], str5
[5];
557 ret
= sscanf(string
, "%s %s %s %s %s%n", str1
, str2
, str3
, str4
,
561 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
562 "Can't parse USB bus message '%s', too few tokens (expected 5 got %d)",
568 /* try to convert to corresponding integer */
570 shdr
->bmRequestType
= strtoul(str1
, 0, 16);
571 shdr
->bRequest
= strtoul(str2
, 0, 16);
572 shdr
->wValue
= htols(strtoul(str3
, 0, 16));
573 shdr
->wIndex
= htols(strtoul(str4
, 0, 16));
574 shdr
->wLength
= htols(strtoul(str5
, 0, 16));
576 uhdr
->setup_flag
= 0;
579 uhdr
->setup_flag
= 1;
582 ret
= sscanf(string
, " %d%n", &urb_len
, &cnt
);
585 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
586 "Can't parse urb length from '%s'", string
);
591 /* urb tag is not present if urb length is 0, so we can stop here
593 pkth
.len
= urb_len
+pkth
.caplen
;
594 uhdr
->urb_len
= urb_len
;
597 if (uhdr
->urb_len
== 0)
600 /* check for data presence; data is present if and only if urb tag is '=' */
601 if (sscanf(string
, " %c", &urb_tag
) != 1)
603 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
604 "Can't parse urb tag from '%s'", string
);
611 /* skip urb tag and following space */
614 /* if we reach this point we got some urb data*/
617 /* read all urb data; if urb length is greater then the usbmon internal
618 * buffer length used by the kernel to spool the URB, we get only
619 * a partial information.
620 * At least until linux 2.6.17 there is no way to set usbmon intenal buffer
621 * length and default value is 130. */
622 while ((string
[0] != 0) && (string
[1] != 0) && (pkth
.caplen
< handle
->snapshot
))
624 rawdata
[0] = ascii_to_int(string
[0]) * 16 + ascii_to_int(string
[1]);
627 if (string
[0] == ' ')
634 uhdr
->data_len
= data_len
;
635 if (pkth
.caplen
> handle
->snapshot
)
636 pkth
.caplen
= handle
->snapshot
;
638 if (handle
->fcode
.bf_insns
== NULL
||
639 bpf_filter(handle
->fcode
.bf_insns
, handle
->buffer
,
640 pkth
.len
, pkth
.caplen
)) {
641 handle
->md
.packets_read
++;
642 callback(user
, &pkth
, handle
->buffer
);
645 return 0; /* didn't pass filter */
649 usb_inject_linux(pcap_t
*handle
, const void *buf
, size_t size
)
651 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "inject not supported on "
657 usb_stats_linux(pcap_t
*handle
, struct pcap_stat
*stats
)
659 int dummy
, ret
, consumed
, cnt
;
660 char string
[USB_LINE_LEN
];
661 char token
[USB_LINE_LEN
];
665 snprintf(string
, USB_LINE_LEN
, USB_TEXT_DIR
"/%ds", handle
->md
.ifindex
);
666 fd
= open(string
, O_RDONLY
, 0);
672 * Not found at the new location; try the old
675 snprintf(string
, USB_LINE_LEN
, USB_TEXT_DIR_OLD
"/%ds", handle
->md
.ifindex
);
676 fd
= open(string
, O_RDONLY
, 0);
679 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
680 "Can't open USB stats file %s: %s",
681 string
, strerror(errno
));
686 /* read stats line */
688 ret
= read(fd
, string
, USB_LINE_LEN
-1);
689 } while ((ret
== -1) && (errno
== EINTR
));
694 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
695 "Can't read stats from fd %d ", fd
);
700 /* extract info on dropped urbs */
701 for (consumed
=0; consumed
< ret
; ) {
702 /* from the sscanf man page:
703 * The C standard says: "Execution of a %n directive does
704 * not increment the assignment count returned at the completion
705 * of execution" but the Corrigendum seems to contradict this.
706 * Do not make any assumptions on the effect of %n conversions
707 * on the return value and explicitly check for cnt assignmet*/
711 ntok
= sscanf(ptr
, "%s%n", token
, &cnt
);
712 if ((ntok
< 1) || (cnt
< 0))
716 if (strcmp(token
, "nreaders") == 0)
717 ret
= sscanf(ptr
, "%d", &stats
->ps_drop
);
719 ret
= sscanf(ptr
, "%d", &dummy
);
726 stats
->ps_recv
= handle
->md
.packets_read
;
727 stats
->ps_ifdrop
= 0;
732 usb_setdirection_linux(pcap_t
*p
, pcap_direction_t d
)
740 usb_stats_linux_bin(pcap_t
*handle
, struct pcap_stat
*stats
)
743 struct mon_bin_stats st
;
744 ret
= ioctl(handle
->fd
, MON_IOCG_STATS
, &st
);
747 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
748 "Can't read stats from fd %d:%s ", handle
->fd
, strerror(errno
));
752 stats
->ps_recv
= handle
->md
.packets_read
+ st
.queued
;
753 stats
->ps_drop
= st
.dropped
;
754 stats
->ps_ifdrop
= 0;
759 * see <linux-kernel-source>/Documentation/usb/usbmon.txt and
760 * <linux-kernel-source>/drivers/usb/mon/mon_bin.c binary ABI
763 usb_read_linux_bin(pcap_t
*handle
, int max_packets
, pcap_handler callback
, u_char
*user
)
765 struct mon_bin_get info
;
767 struct pcap_pkthdr pkth
;
768 int clen
= handle
->snapshot
- sizeof(pcap_usb_header
);
770 /* the usb header is going to be part of 'packet' data*/
771 info
.hdr
= (pcap_usb_header
*) handle
->buffer
;
772 info
.data
= handle
->buffer
+ sizeof(pcap_usb_header
);
773 info
.data_len
= clen
;
775 /* ignore interrupt system call errors */
777 ret
= ioctl(handle
->fd
, MON_IOCX_GET
, &info
);
778 if (handle
->break_loop
)
780 handle
->break_loop
= 0;
783 } while ((ret
== -1) && (errno
== EINTR
));
787 return 0; /* no data there */
789 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
790 "Can't read from fd %d: %s", handle
->fd
, strerror(errno
));
794 /* we can get less that than really captured from kernel, depending on
795 * snaplen, so adjust header accordingly */
796 if (info
.hdr
->data_len
< clen
)
797 clen
= info
.hdr
->data_len
;
798 info
.hdr
->data_len
= clen
;
799 pkth
.caplen
= clen
+ sizeof(pcap_usb_header
);
800 pkth
.len
= info
.hdr
->data_len
+ sizeof(pcap_usb_header
);
801 pkth
.ts
.tv_sec
= info
.hdr
->ts_sec
;
802 pkth
.ts
.tv_usec
= info
.hdr
->ts_usec
;
804 if (handle
->fcode
.bf_insns
== NULL
||
805 bpf_filter(handle
->fcode
.bf_insns
, handle
->buffer
,
806 pkth
.len
, pkth
.caplen
)) {
807 handle
->md
.packets_read
++;
808 callback(user
, &pkth
, handle
->buffer
);
812 return 0; /* didn't pass filter */
816 * see <linux-kernel-source>/Documentation/usb/usbmon.txt and
817 * <linux-kernel-source>/drivers/usb/mon/mon_bin.c binary ABI
821 usb_read_linux_mmap(pcap_t
*handle
, int max_packets
, pcap_handler callback
, u_char
*user
)
823 struct mon_bin_mfetch fetch
;
824 int32_t vec
[VEC_SIZE
];
825 struct pcap_pkthdr pkth
;
826 pcap_usb_header
* hdr
;
831 max_clen
= handle
->snapshot
- sizeof(pcap_usb_header
);
835 int limit
= max_packets
- packets
;
838 if (limit
> VEC_SIZE
)
841 /* try to fetch as many events as possible*/
843 fetch
.nfetch
= limit
;
844 fetch
.nflush
= nflush
;
845 /* ignore interrupt system call errors */
847 ret
= ioctl(handle
->fd
, MON_IOCX_MFETCH
, &fetch
);
848 if (handle
->break_loop
)
850 handle
->break_loop
= 0;
853 } while ((ret
== -1) && (errno
== EINTR
));
857 return 0; /* no data there */
859 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
,
860 "Can't mfetch fd %d: %s", handle
->fd
, strerror(errno
));
864 /* keep track of processed events, we will flush them later */
865 nflush
= fetch
.nfetch
;
866 for (i
=0; i
<fetch
.nfetch
; ++i
) {
868 hdr
= (pcap_usb_header
*) &handle
->md
.mmapbuf
[vec
[i
]];
869 if (hdr
->event_type
== '@')
872 /* we can get less that than really captured from kernel, depending on
873 * snaplen, so adjust header accordingly */
875 if (hdr
->data_len
< clen
)
876 clen
= hdr
->data_len
;
878 /* get packet info from header*/
879 pkth
.caplen
= clen
+ sizeof(pcap_usb_header_mmapped
);
880 pkth
.len
= hdr
->data_len
+ sizeof(pcap_usb_header_mmapped
);
881 pkth
.ts
.tv_sec
= hdr
->ts_sec
;
882 pkth
.ts
.tv_usec
= hdr
->ts_usec
;
884 if (handle
->fcode
.bf_insns
== NULL
||
885 bpf_filter(handle
->fcode
.bf_insns
, (u_char
*) hdr
,
886 pkth
.len
, pkth
.caplen
)) {
887 handle
->md
.packets_read
++;
888 callback(user
, &pkth
, (u_char
*) hdr
);
893 /* with max_packets <= 0 we stop afer the first chunk*/
894 if ((max_packets
<= 0) || (packets
== max_packets
))
898 /* flush pending events*/
899 ioctl(handle
->fd
, MON_IOCH_MFLUSH
, nflush
);
904 usb_cleanup_linux_mmap(pcap_t
* handle
)
906 /* if we have a memory-mapped buffer, unmap it */
907 if (handle
->md
.mmapbuf
!= NULL
) {
908 munmap(handle
->md
.mmapbuf
, handle
->md
.mmapbuflen
);
909 handle
->md
.mmapbuf
= NULL
;
911 pcap_cleanup_live_common(handle
);