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>
47 #include "pcap-canusb-linux.h"
49 #define CANUSB_IFACE "canusb"
51 #define CANUSB_VID 0x0403
52 #define CANUSB_PID 0x8990
61 /* forward declaration */
62 static int canusb_activate(pcap_t
*);
63 static int canusb_read_linux(pcap_t
*, int , pcap_handler
, u_char
*);
64 static int canusb_inject_linux(pcap_t
*, const void *, size_t);
65 static int canusb_setfilter_linux(pcap_t
*, struct bpf_program
*);
66 static int canusb_setdirection_linux(pcap_t
*, pcap_direction_t
);
67 static int canusb_stats_linux(pcap_t
*, struct pcap_stat
*);
80 libusb_device_handle
*dev
;
87 static struct canusb_t canusb
;
88 static volatile int loop
;
90 int canusb_findalldevs(pcap_if_t
**alldevsp
, char *err_str
)
92 libusb_context
*fdctx
;
94 unsigned char sernum
[65];
95 unsigned char buf
[96];
98 if (libusb_init(&fdctx
) != 0) {
100 * XXX - if this doesn't just mean "no USB file system mounted",
101 * perhaps we should report a real error rather than just
102 * saying "no CANUSB devices".
107 cnt
= libusb_get_device_list(fdctx
,&devs
);
112 // Check if this device is interesting.
113 struct libusb_device_descriptor desc
;
114 libusb_get_device_descriptor(devs
[i
],&desc
);
116 if ((desc
.idVendor
!= CANUSB_VID
) || (desc
.idProduct
!= CANUSB_PID
))
117 continue; //It is not, check next device
120 libusb_device_handle
*dh
= NULL
;
122 if (ret
= libusb_open(devs
[i
],&dh
) == 0)
126 int n
= libusb_get_string_descriptor_ascii(dh
,desc
.iSerialNumber
,sernum
,64);
129 snprintf(dev_name
, 30, CANUSB_IFACE
"%s", sernum
);
130 snprintf(dev_descr
, 50, "CanUSB [%s]", sernum
);
134 if (pcap_add_if(alldevsp
, dev_name
, 0, dev_descr
, err_str
) < 0)
136 libusb_free_device_list(devs
,1);
142 libusb_free_device_list(devs
,1);
147 static libusb_device_handle
* canusb_opendevice(struct libusb_context
*ctx
, char* devserial
)
149 libusb_device_handle
* dh
;
150 libusb_device
** devs
;
151 unsigned char serial
[65];
154 cnt
= libusb_get_device_list(ctx
,&devs
);
158 // Check if this device is interesting.
159 struct libusb_device_descriptor desc
;
160 libusb_get_device_descriptor(devs
[i
],&desc
);
162 if ((desc
.idVendor
!= CANUSB_VID
) || (desc
.idProduct
!= CANUSB_PID
))
166 libusb_device_handle
*dh
= NULL
;
168 if (libusb_open(devs
[i
],&dh
) != 0) continue;
170 n
= libusb_get_string_descriptor_ascii(dh
,desc
.iSerialNumber
,serial
,64);
173 if ((devserial
) && (strcmp(serial
,devserial
) != 0))
179 if ((libusb_kernel_driver_active(dh
,0)) && (libusb_detach_kernel_driver(dh
,0) != 0))
185 if (libusb_set_configuration(dh
,1) != 0)
191 if (libusb_claim_interface(dh
,0) != 0)
198 libusb_free_device_list(devs
,1);
202 libusb_free_device_list(devs
,1);
208 canusb_create(const char *device
, char *ebuf
, int *is_ours
)
215 libusb_init(&canusb
.ctx
);
217 /* Does this look like a DAG device? */
218 cp
= strrchr(device
, '/');
221 /* Does it begin with "canusb"? */
222 if (strncmp(cp
, "canusb", 6) != 0) {
223 /* Nope, doesn't begin with "canusb" */
227 /* Yes - is "canusb" followed by a number? */
229 devnum
= strtol(cp
, &cpend
, 10);
230 if (cpend
== cp
|| *cpend
!= '\0') {
231 /* Not followed by a number. */
236 /* Followed by a non-valid number. */
241 /* OK, it's probably ours. */
244 p
= pcap_create_common(device
, ebuf
);
248 memset(&canusb
, 0x00, sizeof(canusb
));
250 p
->activate_op
= canusb_activate
;
256 static void* canusb_capture_thread(struct canusb_t
*canusb
)
258 struct libusb_context
*ctx
;
259 libusb_device_handle
*dev
;
269 serial
= canusb
->serial
;
270 dev
= canusb_opendevice(ctx
, serial
);
272 fcntl(canusb
->wrpipe
, F_SETFL
, O_NONBLOCK
);
279 libusb_interrupt_transfer(dev
, 0x81, (unsigned char*)&status
, sizeof(status
), &sz
, 100);
280 //HACK!!!!! -> drop buffered data, read new one by reading twice.
281 ret
= libusb_interrupt_transfer(dev
, 0x81, (unsigned char*)&status
, sizeof(status
), &sz
, 100);
283 for(i
= 0; i
<status
.rxsz
; i
++)
285 libusb_bulk_transfer(dev
, 0x85, (unsigned char*)&msg
, sizeof(msg
), &sz
, 100);
286 n
= write(canusb
->wrpipe
, &msg
, sizeof(msg
));
297 static int canusb_startcapture(struct canusb_t
* this)
301 if (pipe(pipefd
) == -1)
304 canusb
.rdpipe
= pipefd
[0];
305 canusb
.wrpipe
= pipefd
[1];
309 pthread_create(&this->worker
, NULL
, canusb_capture_thread
, &canusb
);
311 return canusb
.rdpipe
;
314 static void canusb_clearbufs(struct canusb_t
* this)
316 unsigned char cmd
[16];
319 cmd
[0] = 1; //Empty incoming buffer
320 cmd
[1] = 1; //Empty outgoing buffer
321 cmd
[3] = 0; //Not a write to serial number
322 memset(&cmd
[4],0,16-4);
324 libusb_interrupt_transfer(this->dev
, 0x1,cmd
,16,&al
,100);
328 static void canusb_close(pcap_t
* handle
)
331 pthread_join(canusb
.worker
, NULL
);
335 libusb_close(canusb
.dev
);
342 static int canusb_activate(pcap_t
* handle
)
346 handle
->read_op
= canusb_read_linux
;
348 handle
->inject_op
= canusb_inject_linux
;
349 handle
->setfilter_op
= canusb_setfilter_linux
;
350 handle
->setdirection_op
= canusb_setdirection_linux
;
351 handle
->getnonblock_op
= pcap_getnonblock_fd
;
352 handle
->setnonblock_op
= pcap_setnonblock_fd
;
353 handle
->stats_op
= canusb_stats_linux
;
354 handle
->cleanup_op
= canusb_close
;
356 /* Initialize some components of the pcap structure. */
357 handle
->bufsize
= 32;
359 handle
->linktype
= DLT_CAN_SOCKETCAN
;
360 handle
->set_datalink_op
= NULL
;
362 serial
= handle
->opt
.source
+ strlen(CANUSB_IFACE
);
363 canusb
.serial
= strdup(serial
);
365 canusb
.dev
= canusb_opendevice(canusb
.ctx
,serial
);
368 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "Can't open USB Device:");
372 canusb_clearbufs(&canusb
);
374 handle
->fd
= canusb_startcapture(&canusb
);
375 handle
->selectable_fd
= handle
->fd
;
384 canusb_read_linux(pcap_t
*handle
, int max_packets
, pcap_handler callback
, u_char
*user
)
386 static struct timeval firstpacket
= { -1, -1};
391 struct pcap_pkthdr pkth
;
393 while(i
< max_packets
)
397 n
= read(handle
->fd
, &msg
, sizeof(msg
));
400 pkth
.caplen
= pkth
.len
= n
;
402 pkth
.caplen
-= 8 - msg
.length
;
404 if ((firstpacket
.tv_sec
== -1) && (firstpacket
.tv_usec
== -1))
405 gettimeofday(&firstpacket
, NULL
);
407 pkth
.ts
.tv_usec
= firstpacket
.tv_usec
+ (msg
.timestamp
% 100) * 10000;
408 pkth
.ts
.tv_sec
= firstpacket
.tv_usec
+ (msg
.timestamp
/ 100);
409 if (pkth
.ts
.tv_usec
> 1000000)
411 pkth
.ts
.tv_usec
-= 1000000;
415 callback(user
, &pkth
, (void*)&msg
.id
);
424 canusb_inject_linux(pcap_t
*handle
, const void *buf
, size_t size
)
426 /* not yet implemented */
427 snprintf(handle
->errbuf
, PCAP_ERRBUF_SIZE
, "inject not supported on canusb devices");
433 canusb_stats_linux(pcap_t
*handle
, struct pcap_stat
*stats
)
435 /* not yet implemented */
436 stats
->ps_recv
= 0; /* number of packets received */
437 stats
->ps_drop
= 0; /* number of packets dropped */
438 stats
->ps_ifdrop
= 0; /* drops by interface -- only supported on some platforms */
444 canusb_setfilter_linux(pcap_t
*p
, struct bpf_program
*fp
)
446 /* not yet implemented */
452 canusb_setdirection_linux(pcap_t
*p
, pcap_direction_t d
)
454 /* no support for PCAP_D_OUT */
457 snprintf(p
->errbuf
, sizeof(p
->errbuf
),
458 "Setting direction to PCAP_D_OUT is not supported on this interface");