2 * Copyright (c) 2009 Felix Obenhuber
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 * Sockettrace sniffing API implementation for Linux platform
31 * By Felix Obenhuber <felix@obenhuber.de>
39 #include <libusb-1.0/libusb.h>
49 #include "pcap-canusb-linux.h"
51 #define CANUSB_IFACE "canusb"
53 #define CANUSB_VID 0x0403
54 #define CANUSB_PID 0x8990
63 /* forward declaration */
64 static int canusb_activate(pcap_t
*);
65 static int canusb_read_linux(pcap_t
*, int , pcap_handler
, u_char
*);
66 static int canusb_inject_linux(pcap_t
*, const void *, size_t);
67 static int canusb_setfilter_linux(pcap_t
*, struct bpf_program
*);
68 static int canusb_setdirection_linux(pcap_t
*, pcap_direction_t
);
69 static int canusb_stats_linux(pcap_t
*, struct pcap_stat
*);
80 * Private data for capturing on Linux CANbus USB devices.
84 libusb_device_handle
*dev
;
90 int canusb_findalldevs(pcap_if_t
**alldevsp
, char *err_str
)
92 libusb_context
*fdctx
;
94 unsigned char sernum
[65];
97 if (libusb_init(&fdctx
) != 0) {
99 * XXX - if this doesn't just mean "no USB file system mounted",
100 * perhaps we should report a real error rather than just
101 * saying "no CANUSB devices".
106 cnt
= libusb_get_device_list(fdctx
,&devs
);
111 /* Check if this device is interesting. */
112 struct libusb_device_descriptor desc
;
113 libusb_device_handle
*dh
;
115 libusb_get_device_descriptor(devs
[i
],&desc
);
117 if ((desc
.idVendor
!= CANUSB_VID
) || (desc
.idProduct
!= CANUSB_PID
))
118 continue; /* It is not, check next device */
123 if ((ret
= libusb_open(devs
[i
],&dh
)) == 0)
127 int n
= libusb_get_string_descriptor_ascii(dh
,desc
.iSerialNumber
,sernum
,64);
130 pcap_snprintf(dev_name
, 30, CANUSB_IFACE
"%s", sernum
);
131 pcap_snprintf(dev_descr
, 50, "CanUSB [%s]", sernum
);
135 if (pcap_add_if(alldevsp
, dev_name
, 0, dev_descr
, err_str
) < 0)
137 libusb_free_device_list(devs
,1);
144 libusb_free_device_list(devs
,1);
149 static libusb_device_handle
* canusb_opendevice(struct libusb_context
*ctx
, char* devserial
)
151 libusb_device
** devs
;
152 unsigned char serial
[65];
155 cnt
= libusb_get_device_list(ctx
,&devs
);
159 /* Check if this device is interesting. */
160 struct libusb_device_descriptor desc
;
161 libusb_device_handle
*dh
;
163 libusb_get_device_descriptor(devs
[i
],&desc
);
165 if ((desc
.idVendor
!= CANUSB_VID
) || (desc
.idProduct
!= CANUSB_PID
))
171 if (libusb_open(devs
[i
],&dh
) != 0) continue;
173 n
= libusb_get_string_descriptor_ascii(dh
,desc
.iSerialNumber
,serial
,64);
176 if ((devserial
) && (strcmp((char *)serial
,devserial
) != 0))
182 if ((libusb_kernel_driver_active(dh
,0)) && (libusb_detach_kernel_driver(dh
,0) != 0))
188 if (libusb_set_configuration(dh
,1) != 0)
194 if (libusb_claim_interface(dh
,0) != 0)
201 libusb_free_device_list(devs
,1);
205 libusb_free_device_list(devs
,1);
211 canusb_create(const char *device
, char *ebuf
, int *is_ours
)
217 struct pcap_canusb
*canusb
;
219 /* Does this look like a DAG device? */
220 cp
= strrchr(device
, '/');
223 /* Does it begin with "canusb"? */
224 if (strncmp(cp
, "canusb", 6) != 0) {
225 /* Nope, doesn't begin with "canusb" */
229 /* Yes - is "canusb" followed by a number? */
231 devnum
= strtol(cp
, &cpend
, 10);
232 if (cpend
== cp
|| *cpend
!= '\0') {
233 /* Not followed by a number. */
238 /* Followed by a non-valid number. */
243 /* OK, it's probably ours. */
246 p
= pcap_create_common(ebuf
, sizeof (struct pcap_canusb
));
256 p
->activate_op
= canusb_activate
;
262 static void* canusb_capture_thread(void *arg
)
264 struct pcap_canusb
*canusb
= arg
;
271 fcntl(canusb
->wrpipe
, F_SETFL
, O_NONBLOCK
);
278 libusb_interrupt_transfer(canusb
->dev
, 0x81, (unsigned char*)&status
, sizeof(status
), &sz
, 100);
279 /* HACK!!!!! -> drop buffered data, read new one by reading twice. */
280 libusb_interrupt_transfer(canusb
->dev
, 0x81, (unsigned char*)&status
, sizeof(status
), &sz
, 100);
282 for(i
= 0; i
<status
.rxsz
; i
++)
284 libusb_bulk_transfer(canusb
->dev
, 0x85, (unsigned char*)&msg
, sizeof(msg
), &sz
, 100);
285 if(write(canusb
->wrpipe
, &msg
, sizeof(msg
)) < 0)
286 fprintf(stderr
,"write() error: %s\n", strerror(errno
));
294 static int canusb_startcapture(struct pcap_canusb
* this)
298 if (pipe(pipefd
) == -1)
301 this->rdpipe
= pipefd
[0];
302 this->wrpipe
= pipefd
[1];
305 pthread_create(&this->worker
, NULL
, canusb_capture_thread
, this);
310 static void canusb_clearbufs(struct pcap_canusb
* this)
312 unsigned char cmd
[16];
315 cmd
[0] = 1; /* Empty incoming buffer */
316 cmd
[1] = 1; /* Empty outgoing buffer */
317 cmd
[3] = 0; /* Not a write to serial number */
318 memset(&cmd
[4],0,16-4);
320 libusb_interrupt_transfer(this->dev
, 0x1,cmd
,16,&al
,100);
324 static void canusb_close(pcap_t
* handle
)
326 struct pcap_canusb
*canusb
= handle
->priv
;
329 pthread_join(canusb
->worker
, NULL
);
333 libusb_close(canusb
->dev
);
338 libusb_exit(canusb
->ctx
);
345 static int canusb_activate(pcap_t
* handle
)
347 struct pcap_canusb
*canusb
= handle
->priv
;
350 if (libusb_init(&canusb
->ctx
) != 0) {
352 * XXX - what causes this to fail?
354 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "libusb_init() failed");
358 handle
->read_op
= canusb_read_linux
;
360 handle
->inject_op
= canusb_inject_linux
;
361 handle
->setfilter_op
= canusb_setfilter_linux
;
362 handle
->setdirection_op
= canusb_setdirection_linux
;
363 handle
->getnonblock_op
= pcap_getnonblock_fd
;
364 handle
->setnonblock_op
= pcap_setnonblock_fd
;
365 handle
->stats_op
= canusb_stats_linux
;
366 handle
->cleanup_op
= canusb_close
;
368 /* Initialize some components of the pcap structure. */
369 handle
->bufsize
= 32;
371 handle
->linktype
= DLT_CAN_SOCKETCAN
;
372 handle
->set_datalink_op
= NULL
;
374 serial
= handle
->opt
.device
+ strlen(CANUSB_IFACE
);
376 canusb
->dev
= canusb_opendevice(canusb
->ctx
, serial
);
379 libusb_exit(canusb
->ctx
);
380 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "Can't open USB Device");
384 canusb_clearbufs(canusb
);
386 handle
->fd
= canusb_startcapture(canusb
);
387 handle
->selectable_fd
= handle
->fd
;
396 canusb_read_linux(pcap_t
*handle
, int max_packets
, pcap_handler callback
, u_char
*user
)
398 static struct timeval firstpacket
= { -1, -1};
401 struct pcap_pkthdr pkth
;
403 while(i
< max_packets
)
407 n
= read(handle
->fd
, &msg
, sizeof(msg
));
410 pkth
.caplen
= pkth
.len
= n
;
412 pkth
.caplen
-= 8 - msg
.length
;
414 if ((firstpacket
.tv_sec
== -1) && (firstpacket
.tv_usec
== -1))
415 gettimeofday(&firstpacket
, NULL
);
417 pkth
.ts
.tv_usec
= firstpacket
.tv_usec
+ (msg
.timestamp
% 100) * 10000;
418 pkth
.ts
.tv_sec
= firstpacket
.tv_usec
+ (msg
.timestamp
/ 100);
419 if (pkth
.ts
.tv_usec
> 1000000)
421 pkth
.ts
.tv_usec
-= 1000000;
425 callback(user
, &pkth
, (void*)&msg
.id
);
434 canusb_inject_linux(pcap_t
*handle
, const void *buf
, size_t size
)
436 /* not yet implemented */
437 pcap_snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "inject not supported on canusb devices");
443 canusb_stats_linux(pcap_t
*handle
, struct pcap_stat
*stats
)
445 /* not yet implemented */
446 stats
->ps_recv
= 0; /* number of packets received */
447 stats
->ps_drop
= 0; /* number of packets dropped */
448 stats
->ps_ifdrop
= 0; /* drops by interface -- only supported on some platforms */
454 canusb_setfilter_linux(pcap_t
*p
, struct bpf_program
*fp
)
456 /* not yet implemented */
462 canusb_setdirection_linux(pcap_t
*p
, pcap_direction_t d
)
464 /* no support for PCAP_D_OUT */
467 pcap_snprintf(p
->errbuf
, sizeof(p
->errbuf
),
468 "Setting direction to PCAP_D_OUT is not supported on this interface");