8 * Copyright (c) 2002-2009 Volkswagen Group Electronic Research
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of Volkswagen nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * Alternatively, provided that this notice is retained in full, this
24 * software may be distributed under the terms of the GNU General
25 * Public License ("GPL") version 2, in which case the provisions of the
26 * GPL apply INSTEAD OF those given above.
28 * The provided data structures and external interfaces from this code
29 * are not restricted to be used by modules with a GPL compatible license.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
44 * Send feedback to <socketcan-users@lists.berlios.de>
58 #include <sys/types.h>
59 #include <sys/socket.h>
60 #include <sys/ioctl.h>
64 #include <linux/can.h>
65 #include <linux/can/raw.h>
70 #define MAXSOCK 16 /* max. number of CAN interfaces given on the cmdline */
71 #define MAXIFNAMES 30 /* size of receive name index to omit ioctls */
72 #define MAXCOL 6 /* number of different colors for colorized output */
73 #define ANYDEV "any" /* name of interface to receive from any CAN interface */
74 #define ANL "\r\n" /* newline in ASC mode */
76 #define SILENT_INI 42 /* detect user setting on commandline */
77 #define SILENT_OFF 0 /* no silent mode */
78 #define SILENT_ANI 1 /* silent mode with animation */
79 #define SILENT_ON 2 /* silent mode (completely silent) */
82 #define RED ATTBOLD FGRED
83 #define GREEN ATTBOLD FGGREEN
84 #define YELLOW ATTBOLD FGYELLOW
85 #define BLUE ATTBOLD FGBLUE
86 #define MAGENTA ATTBOLD FGMAGENTA
87 #define CYAN ATTBOLD FGCYAN
89 const char col_on [MAXCOL][19] = {BLUE, RED, GREEN, BOLD, MAGENTA, CYAN};
90 const char col_off [] = ATTRESET;
92 static char *cmdlinename[MAXSOCK];
93 static __u32 dropcnt[MAXSOCK];
94 static __u32 last_dropcnt[MAXSOCK];
95 static char devname[MAXIFNAMES][IFNAMSIZ+1];
96 static int dindex[MAXIFNAMES];
97 static int max_devname_len; /* to prevent frazzled device name output */
100 const char anichar[MAXANI] = {'|', '/', '-', '\\'};
102 extern int optind, opterr, optopt;
104 static volatile int running = 1;
106 void print_usage(char *prg)
108 fprintf(stderr, "\nUsage: %s [options] <CAN interface>+\n", prg);
109 fprintf(stderr, " (use CTRL-C to terminate %s)\n\n", prg);
110 fprintf(stderr, "Options: -t <type> (timestamp: (a)bsolute/(d)elta/(z)ero/(A)bsolute w date)\n");
111 fprintf(stderr, " -c (increment color mode level)\n");
112 fprintf(stderr, " -i (binary output - may exceed 80 chars/line)\n");
113 fprintf(stderr, " -a (enable additional ASCII output)\n");
114 fprintf(stderr, " -S (swap byte order in printed CAN data[] - marked with '%c' )\n", SWAP_DELIMITER);
115 fprintf(stderr, " -s <level> (silent mode - %d: off (default) %d: animation %d: silent)\n", SILENT_OFF, SILENT_ANI, SILENT_ON);
116 fprintf(stderr, " -b <can> (bridge mode - send received frames to <can>)\n");
117 fprintf(stderr, " -B <can> (bridge mode - like '-b' with disabled loopback)\n");
118 fprintf(stderr, " -u <usecs> (delay bridge forwarding by <usecs> microseconds)\n");
119 fprintf(stderr, " -l (log CAN-frames into file. Sets '-s %d' by default)\n", SILENT_ON);
120 fprintf(stderr, " -L (use log file format on stdout)\n");
121 fprintf(stderr, " -n <count> (terminate after receiption of <count> CAN frames)\n");
122 fprintf(stderr, " -r <size> (set socket receive buffer to <size>)\n");
123 fprintf(stderr, " -d (monitor dropped CAN frames)\n");
124 fprintf(stderr, "\n");
125 fprintf(stderr, "Up to %d CAN interfaces with optional filter sets can be specified\n", MAXSOCK);
126 fprintf(stderr, "on the commandline in the form: <ifname>[,filter]*\n");
127 fprintf(stderr, "\nComma separated filters can be specified for each given CAN interface:\n");
128 fprintf(stderr, " <can_id>:<can_mask> (matches when <received_can_id> & mask == can_id & mask)\n");
129 fprintf(stderr, " <can_id>~<can_mask> (matches when <received_can_id> & mask != can_id & mask)\n");
130 fprintf(stderr, " #<error_mask> (set error frame filter, see include/linux/can/error.h)\n");
131 fprintf(stderr, "\nCAN IDs, masks and data content are given and expected in hexadecimal values.\n");
132 fprintf(stderr, "When can_id and can_mask are both 8 digits, they are assumed to be 29 bit EFF.\n");
133 fprintf(stderr, "Without any given filter all data frames are received ('0:0' default filter).\n");
134 fprintf(stderr, "\nUse interface name '%s' to receive from all CAN interfaces.\n", ANYDEV);
135 fprintf(stderr, "\nExamples:\n");
136 fprintf(stderr, "%s -c -c -ta can0,123:7FF,400:700,#000000FF can2,400~7F0 can3 can8\n", prg);
137 fprintf(stderr, "%s -l any,0~0,#FFFFFFFF (log only error frames but no(!) data frames)\n", prg);
138 fprintf(stderr, "%s -l any,0:0,#FFFFFFFF (log error frames and also all data frames)\n", prg);
139 fprintf(stderr, "%s vcan2,92345678:DFFFFFFF (match only for extended CAN ID 12345678)\n", prg);
140 fprintf(stderr, "%s vcan2,123:7FF (matches CAN ID 123 - including EFF and RTR frames)\n", prg);
141 fprintf(stderr, "%s vcan2,123:C00007FF (matches CAN ID 123 - only SFF and non-RTR frames)\n", prg);
142 fprintf(stderr, "\n");
145 void sigterm(int signo)
150 int idx2dindex(int ifidx, int socket) {
155 for (i=0; i < MAXIFNAMES; i++) {
156 if (dindex[i] == ifidx)
160 /* create new interface index cache entry */
162 /* remove index cache zombies first */
163 for (i=0; i < MAXIFNAMES; i++) {
165 ifr.ifr_ifindex = dindex[i];
166 if (ioctl(socket, SIOCGIFNAME, &ifr) < 0)
171 for (i=0; i < MAXIFNAMES; i++)
172 if (!dindex[i]) /* free entry */
175 if (i == MAXIFNAMES) {
176 fprintf(stderr, "Interface index cache only supports %d interfaces.\n",
183 ifr.ifr_ifindex = ifidx;
184 if (ioctl(socket, SIOCGIFNAME, &ifr) < 0)
185 perror("SIOCGIFNAME");
187 if (max_devname_len < strlen(ifr.ifr_name))
188 max_devname_len = strlen(ifr.ifr_name);
190 strcpy(devname[i], ifr.ifr_name);
193 printf("new index %d (%s)\n", i, devname[i]);
199 int main(int argc, char **argv)
204 useconds_t bridge_delay = 0;
205 unsigned char timestamp = 0;
206 unsigned char dropmonitor = 0;
207 unsigned char silent = SILENT_INI;
208 unsigned char silentani = 0;
209 unsigned char color = 0;
210 unsigned char view = 0;
211 unsigned char log = 0;
212 unsigned char logfrmt = 0;
216 int currmax, numfilter;
218 struct sockaddr_can addr;
219 char ctrlmsg[CMSG_SPACE(sizeof(struct timeval)) + CMSG_SPACE(sizeof(__u32))];
222 struct cmsghdr *cmsg;
223 struct can_filter *rfilter;
224 can_err_mask_t err_mask;
225 struct can_frame frame;
228 struct timeval tv, last_tv;
229 FILE *logfile = NULL;
231 signal(SIGTERM, sigterm);
232 signal(SIGHUP, sigterm);
233 signal(SIGINT, sigterm);
238 while ((opt = getopt(argc, argv, "t:ciaSs:b:B:u:ldLn:r:h?")) != -1) {
241 timestamp = optarg[0];
242 if ((timestamp != 'a') && (timestamp != 'A') &&
243 (timestamp != 'd') && (timestamp != 'z')) {
244 fprintf(stderr, "%s: unknown timestamp mode '%c' - ignored\n",
245 basename(argv[0]), optarg[0]);
255 view |= CANLIB_VIEW_BINARY;
259 view |= CANLIB_VIEW_ASCII;
263 view |= CANLIB_VIEW_SWAP;
267 silent = atoi(optarg);
268 if (silent > SILENT_ON) {
269 print_usage(basename(argv[0]));
276 if (strlen(optarg) >= IFNAMSIZ) {
277 fprintf(stderr, "Name of CAN device '%s' is too long!\n\n", optarg);
280 bridge = socket(PF_CAN, SOCK_RAW, CAN_RAW);
282 perror("bridge socket");
285 addr.can_family = AF_CAN;
286 strcpy(ifr.ifr_name, optarg);
287 if (ioctl(bridge, SIOCGIFINDEX, &ifr) < 0)
288 perror("SIOCGIFINDEX");
289 addr.can_ifindex = ifr.ifr_ifindex;
291 if (!addr.can_ifindex) {
292 perror("invalid bridge interface");
296 /* disable default receive filter on this write-only RAW socket */
297 setsockopt(bridge, SOL_CAN_RAW, CAN_RAW_FILTER, NULL, 0);
300 const int loopback = 0;
302 setsockopt(bridge, SOL_CAN_RAW, CAN_RAW_LOOPBACK,
303 &loopback, sizeof(loopback));
306 if (bind(bridge, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
307 perror("bridge bind");
314 bridge_delay = (useconds_t)strtoul(optarg, (char **)NULL, 10);
330 count = atoi(optarg);
332 print_usage(basename(argv[0]));
338 rcvbuf_size = atoi(optarg);
339 if (rcvbuf_size < 1) {
340 print_usage(basename(argv[0]));
346 print_usage(basename(argv[0]));
352 if (optind == argc) {
353 print_usage(basename(argv[0]));
357 if (logfrmt && view) {
358 fprintf(stderr, "Log file format selected: Please disable ASCII/BINARY/SWAP options!\n");
362 if (silent == SILENT_INI) {
364 fprintf(stderr, "Disabled standard output while logging.\n");
365 silent = SILENT_ON; /* disable output on stdout */
367 silent = SILENT_OFF; /* default output */
370 currmax = argc - optind; /* find real number of CAN devices */
372 if (currmax > MAXSOCK) {
373 fprintf(stderr, "More than %d CAN devices given on commandline!\n", MAXSOCK);
377 for (i=0; i < currmax; i++) {
379 ptr = argv[optind+i];
380 nptr = strchr(ptr, ',');
383 printf("open %d '%s'.\n", i, ptr);
386 s[i] = socket(PF_CAN, SOCK_RAW, CAN_RAW);
392 cmdlinename[i] = ptr; /* save pointer to cmdline name of this socket */
395 nbytes = nptr - ptr; /* interface name is up the first ',' */
397 nbytes = strlen(ptr); /* no ',' found => no filter definitions */
399 if (nbytes >= IFNAMSIZ) {
400 fprintf(stderr, "name of CAN device '%s' is too long!\n", ptr);
404 if (nbytes > max_devname_len)
405 max_devname_len = nbytes; /* for nice printing */
407 addr.can_family = AF_CAN;
409 memset(&ifr.ifr_name, 0, sizeof(ifr.ifr_name));
410 strncpy(ifr.ifr_name, ptr, nbytes);
413 printf("using interface name '%s'.\n", ifr.ifr_name);
416 if (strcmp(ANYDEV, ifr.ifr_name)) {
417 if (ioctl(s[i], SIOCGIFINDEX, &ifr) < 0) {
418 perror("SIOCGIFINDEX");
421 addr.can_ifindex = ifr.ifr_ifindex;
423 addr.can_ifindex = 0; /* any can interface */
427 /* found a ',' after the interface name => check for filters */
429 /* determine number of filters to alloc the filter space */
434 ptr++; /* hop behind the ',' */
435 ptr = strchr(ptr, ','); /* exit condition */
438 rfilter = malloc(sizeof(struct can_filter) * numfilter);
440 fprintf(stderr, "Failed to create filter space!\n");
449 ptr = nptr+1; /* hop behind the ',' */
450 nptr = strchr(ptr, ','); /* update exit condition */
452 if (sscanf(ptr, "%x:%x",
453 &rfilter[numfilter].can_id,
454 &rfilter[numfilter].can_mask) == 2) {
455 rfilter[numfilter].can_mask &= ~CAN_ERR_FLAG;
457 } else if (sscanf(ptr, "%x~%x",
458 &rfilter[numfilter].can_id,
459 &rfilter[numfilter].can_mask) == 2) {
460 rfilter[numfilter].can_id |= CAN_INV_FILTER;
461 rfilter[numfilter].can_mask &= ~CAN_ERR_FLAG;
463 } else if (sscanf(ptr, "#%x", &err_mask) != 1) {
464 fprintf(stderr, "Error in filter option parsing: '%s'\n", ptr);
470 setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_ERR_FILTER,
471 &err_mask, sizeof(err_mask));
474 setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_FILTER,
475 rfilter, numfilter * sizeof(struct can_filter));
483 int curr_rcvbuf_size;
484 socklen_t curr_rcvbuf_size_len = sizeof(curr_rcvbuf_size);
486 /* try SO_RCVBUFFORCE first, if we run with CAP_NET_ADMIN */
487 if (setsockopt(s[i], SOL_SOCKET, SO_RCVBUFFORCE,
488 &rcvbuf_size, sizeof(rcvbuf_size)) < 0) {
490 printf("SO_RCVBUFFORCE failed so try SO_RCVBUF ...\n");
492 if (setsockopt(s[i], SOL_SOCKET, SO_RCVBUF,
493 &rcvbuf_size, sizeof(rcvbuf_size)) < 0) {
494 perror("setsockopt SO_RCVBUF");
498 if (getsockopt(s[i], SOL_SOCKET, SO_RCVBUF,
499 &curr_rcvbuf_size, &curr_rcvbuf_size_len) < 0) {
500 perror("getsockopt SO_RCVBUF");
504 /* Only print a warning the first time we detect the adjustment */
505 /* n.b.: The wanted size is doubled in Linux in net/sore/sock.c */
506 if (!i && curr_rcvbuf_size < rcvbuf_size*2)
507 fprintf(stderr, "The socket receive buffer size was "
508 "adjusted due to /proc/sys/net/core/rmem_max.\n");
512 if (timestamp || log || logfrmt) {
514 const int timestamp_on = 1;
516 if (setsockopt(s[i], SOL_SOCKET, SO_TIMESTAMP,
517 ×tamp_on, sizeof(timestamp_on)) < 0) {
518 perror("setsockopt SO_TIMESTAMP");
525 const int dropmonitor_on = 1;
527 if (setsockopt(s[i], SOL_SOCKET, SO_RXQ_OVFL,
528 &dropmonitor_on, sizeof(dropmonitor_on)) < 0) {
529 perror("setsockopt SO_RXQ_OVFL not supported by your Linux Kernel");
534 if (bind(s[i], (struct sockaddr *)&addr, sizeof(addr)) < 0) {
543 char fname[sizeof("candump-2006-11-20_202026.log")+1];
545 if (time(&currtime) == (time_t)-1) {
550 localtime_r(&currtime, &now);
552 sprintf(fname, "candump-%04d-%02d-%02d_%02d%02d%02d.log",
560 if (silent != SILENT_ON)
561 printf("\nWarning: console output active while logging!");
563 fprintf(stderr, "\nEnabling Logfile '%s'\n\n", fname);
565 logfile = fopen(fname, "w");
572 /* these settings are static and can be held out of the hot path */
573 iov.iov_base = &frame;
574 msg.msg_name = &addr;
577 msg.msg_control = &ctrlmsg;
582 for (i=0; i<currmax; i++)
585 if ((ret = select(s[currmax-1]+1, &rdfs, NULL, NULL, NULL)) < 0) {
591 for (i=0; i<currmax; i++) { /* check all CAN RAW sockets */
593 if (FD_ISSET(s[i], &rdfs)) {
597 /* these settings may be modified by recvmsg() */
598 iov.iov_len = sizeof(frame);
599 msg.msg_namelen = sizeof(addr);
600 msg.msg_controllen = sizeof(ctrlmsg);
603 nbytes = recvmsg(s[i], &msg, 0);
609 if (nbytes < sizeof(struct can_frame)) {
610 fprintf(stderr, "read: incomplete CAN frame\n");
614 if (count && (--count == 0))
619 usleep(bridge_delay);
621 nbytes = write(bridge, &frame, sizeof(struct can_frame));
623 perror("bridge write");
625 } else if (nbytes < sizeof(struct can_frame)) {
626 fprintf(stderr,"bridge write: incomplete CAN frame\n");
631 for (cmsg = CMSG_FIRSTHDR(&msg);
632 cmsg && (cmsg->cmsg_level == SOL_SOCKET);
633 cmsg = CMSG_NXTHDR(&msg,cmsg)) {
634 if (cmsg->cmsg_type == SO_TIMESTAMP)
635 tv = *(struct timeval *)CMSG_DATA(cmsg);
636 else if (cmsg->cmsg_type == SO_RXQ_OVFL)
637 dropcnt[i] = *(__u32 *)CMSG_DATA(cmsg);
640 /* check for (unlikely) dropped frames on this specific socket */
641 if (dropcnt[i] != last_dropcnt[i]) {
645 if (dropcnt[i] > last_dropcnt[i])
646 frames = dropcnt[i] - last_dropcnt[i];
648 frames = 4294967295U - last_dropcnt[i] + dropcnt[i]; /* 4294967295U == UINT32_MAX */
650 if (silent != SILENT_ON)
651 printf("DROPCOUNT: dropped %d CAN frame%s on '%s' socket (total drops %d)\n",
652 frames, (frames > 1)?"s":"", cmdlinename[i], dropcnt[i]);
655 fprintf(logfile, "DROPCOUNT: dropped %d CAN frame%s on '%s' socket (total drops %d)\n",
656 frames, (frames > 1)?"s":"", cmdlinename[i], dropcnt[i]);
658 last_dropcnt[i] = dropcnt[i];
661 idx = idx2dindex(addr.can_ifindex, s[i]);
664 /* log CAN frame with absolute timestamp & device */
665 fprintf(logfile, "(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
666 fprintf(logfile, "%*s ", max_devname_len, devname[idx]);
667 /* without seperator as logfile use-case is parsing */
668 fprint_canframe(logfile, &frame, "\n", 0);
672 /* print CAN frame in log file style to stdout */
673 printf("(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
674 printf("%*s ", max_devname_len, devname[idx]);
675 fprint_canframe(stdout, &frame, "\n", 0);
676 goto out_fflush; /* no other output to stdout */
679 if (silent != SILENT_OFF){
680 if (silent == SILENT_ANI) {
681 printf("%c\b", anichar[silentani%=MAXANI]);
684 goto out_fflush; /* no other output to stdout */
687 printf(" %s", (color>2)?col_on[idx%MAXCOL]:"");
691 case 'a': /* absolute with timestamp */
692 printf("(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
695 case 'A': /* absolute with date */
700 tm = *localtime(&tv.tv_sec);
701 strftime(timestring, 24, "%Y-%m-%d %H:%M:%S", &tm);
702 printf("(%s.%06ld) ", timestring, tv.tv_usec);
706 case 'd': /* delta */
707 case 'z': /* starting with zero */
711 if (last_tv.tv_sec == 0) /* first init */
713 diff.tv_sec = tv.tv_sec - last_tv.tv_sec;
714 diff.tv_usec = tv.tv_usec - last_tv.tv_usec;
715 if (diff.tv_usec < 0)
716 diff.tv_sec--, diff.tv_usec += 1000000;
718 diff.tv_sec = diff.tv_usec = 0;
719 printf("(%ld.%06ld) ", diff.tv_sec, diff.tv_usec);
721 if (timestamp == 'd')
722 last_tv = tv; /* update for delta calculation */
726 default: /* no timestamp output */
730 printf(" %s", (color && (color<3))?col_on[idx%MAXCOL]:"");
731 printf("%*s", max_devname_len, devname[idx]);
732 printf("%s ", (color==1)?col_off:"");
734 fprint_long_canframe(stdout, &frame, NULL, view);
736 printf("%s", (color>1)?col_off:"");
745 for (i=0; i<currmax; i++)