]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blob - candump.c
disable default receive filter on the write-only bridge socket.
[sojka/can-utils.git] / candump.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * candump.c
7  *
8  * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
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.
22  *
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.
27  *
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.
30  *
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
42  * DAMAGE.
43  *
44  * Send feedback to <socketcan-users@lists.berlios.de>
45  *
46  */
47
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <unistd.h>
51 #include <string.h>
52 #include <signal.h>
53 #include <ctype.h>
54 #include <libgen.h>
55 #include <time.h>
56
57 #include <sys/time.h>
58 #include <sys/types.h>
59 #include <sys/socket.h>
60 #include <sys/ioctl.h>
61 #include <sys/uio.h>
62 #include <net/if.h>
63
64 #include <linux/can.h>
65 #include <linux/can/raw.h>
66
67 #include "terminal.h"
68 #include "lib.h"
69
70 #define MAXSOCK 16    /* max. number of CAN interfaces given on the cmdline */
71 #define MAXFILTER 30  /* max. number of possible filters for each socket */
72 #define MAXIFNAMES 30 /* size of receive name index to omit ioctls */
73 #define MAXCOL 6      /* number of different colors for colorized output */
74 #define ANYDEV "any"  /* name of interface to receive from any CAN interface */
75 #define ANL "\r\n"    /* newline in ASC mode */
76
77 #define SILENT_INI 42 /* detect user setting on commandline */
78 #define SILENT_OFF 0  /* no silent mode */
79 #define SILENT_ANI 1  /* silent mode with animation */
80 #define SILENT_ON  2  /* silent mode (completely silent) */
81
82 #define BOLD    ATTBOLD
83 #define RED     ATTBOLD FGRED
84 #define GREEN   ATTBOLD FGGREEN
85 #define YELLOW  ATTBOLD FGYELLOW
86 #define BLUE    ATTBOLD FGBLUE
87 #define MAGENTA ATTBOLD FGMAGENTA
88 #define CYAN    ATTBOLD FGCYAN
89
90 const char col_on [MAXCOL][19] = {BLUE, RED, GREEN, BOLD, MAGENTA, CYAN};
91 const char col_off [] = ATTRESET;
92
93 static char devname[MAXIFNAMES][IFNAMSIZ+1];
94 static int  dindex[MAXIFNAMES];
95 static int  max_devname_len; /* to prevent frazzled device name output */ 
96
97 #define MAXANI 4
98 const char anichar[MAXANI] = {'|', '/', '-', '\\'};
99
100 extern int optind, opterr, optopt;
101
102 static volatile int running = 1;
103
104 void print_usage(char *prg)
105 {
106         fprintf(stderr, "\nUsage: %s [options] <CAN interface>+\n", prg);
107         fprintf(stderr, "  (use CTRL-C to terminate %s)\n\n", prg);
108         fprintf(stderr, "Options: -t <type>   (timestamp: (a)bsolute/(d)elta/(z)ero/(A)bsolute w date)\n");
109         fprintf(stderr, "         -c          (increment color mode level)\n");
110         fprintf(stderr, "         -i          (binary output - may exceed 80 chars/line)\n");
111         fprintf(stderr, "         -a          (enable additional ASCII output)\n");
112         fprintf(stderr, "         -S          (swap byte order in printed CAN data[] - marked with '%c' )\n", SWAP_DELIMITER);
113         fprintf(stderr, "         -s <level>  (silent mode - %d: off (default) %d: animation %d: silent)\n", SILENT_OFF, SILENT_ANI, SILENT_ON);
114         fprintf(stderr, "         -b <can>    (bridge mode - send received frames to <can>)\n");
115         fprintf(stderr, "         -B <can>    (bridge mode - like '-b' with disabled loopback)\n");
116         fprintf(stderr, "         -l          (log CAN-frames into file. Sets '-s %d' by default)\n", SILENT_ON);
117         fprintf(stderr, "         -L          (use log file format on stdout)\n");
118         fprintf(stderr, "\n");
119         fprintf(stderr, "Up to %d CAN interfaces with optional filter sets can be specified\n", MAXSOCK);
120         fprintf(stderr, "on the commandline in the form: <ifname>[,filter]*\n");
121         fprintf(stderr, "\nUp to %d comma separated filters can be specified for each given CAN interface:\n", MAXFILTER);
122         fprintf(stderr, " <can_id>:<can_mask> (matches when <received_can_id> & mask == can_id & mask)\n");
123         fprintf(stderr, " <can_id>~<can_mask> (matches when <received_can_id> & mask != can_id & mask)\n");
124         fprintf(stderr, " #<error_mask>       (set error frame filter, see include/linux/can/error.h)\n");
125         fprintf(stderr, "\nCAN IDs, masks and data content are given and expected in hexadecimal values.\n");
126         fprintf(stderr, "When can_id and can_mask are both 8 digits, they are assumed to be 29 bit EFF.\n");
127         fprintf(stderr, "Without any given filter all data frames are received ('0:0' default filter).\n");
128         fprintf(stderr, "\nUse interface name '%s' to receive from all CAN interfaces.\n", ANYDEV);
129         fprintf(stderr, "\nExamples:\n");
130         fprintf(stderr, "%s -c -c -ta can0,123:7FF,400:700,#000000FF can2,400~7F0 can3 can8\n", prg);
131         fprintf(stderr, "%s -l any,0~0,#FFFFFFFF    (log only error frames but no(!) data frames)\n", prg);
132         fprintf(stderr, "%s -l any,0:0,#FFFFFFFF    (log error frames and also all data frames)\n", prg);
133         fprintf(stderr, "%s vcan2,92345678:DFFFFFFF (match only for extended CAN ID 12345678)\n", prg);
134         fprintf(stderr, "%s vcan2,123:7FF (matches CAN ID 123 - including EFF and RTR frames)\n", prg);
135         fprintf(stderr, "%s vcan2,123:C00007FF (matches CAN ID 123 - only SFF and non-RTR frames)\n", prg);
136         fprintf(stderr, "\n");
137 }
138
139 void sigterm(int signo)
140 {
141         running = 0;
142 }
143
144 int idx2dindex(int ifidx, int socket) {
145
146         int i;
147         struct ifreq ifr;
148
149         for (i=0; i < MAXIFNAMES; i++) {
150                 if (dindex[i] == ifidx)
151                         return i;
152         }
153
154         /* create new interface index cache entry */
155
156         /* remove index cache zombies first */
157         for (i=0; i < MAXIFNAMES; i++) {
158                 if (dindex[i]) {
159                         ifr.ifr_ifindex = dindex[i];
160                         if (ioctl(socket, SIOCGIFNAME, &ifr) < 0)
161                                 dindex[i] = 0;
162                 }
163         }
164
165         for (i=0; i < MAXIFNAMES; i++)
166                 if (!dindex[i]) /* free entry */
167                         break;
168
169         if (i == MAXIFNAMES) {
170                 fprintf(stderr, "Interface index cache only supports %d interfaces.\n",
171                        MAXIFNAMES);
172                 exit(1);
173         }
174
175         dindex[i] = ifidx;
176
177         ifr.ifr_ifindex = ifidx;
178         if (ioctl(socket, SIOCGIFNAME, &ifr) < 0)
179                 perror("SIOCGIFNAME");
180
181         if (max_devname_len < strlen(ifr.ifr_name))
182                 max_devname_len = strlen(ifr.ifr_name);
183
184         strcpy(devname[i], ifr.ifr_name);
185
186 #ifdef DEBUG
187         printf("new index %d (%s)\n", i, devname[i]);
188 #endif
189
190         return i;
191 }
192
193 int main(int argc, char **argv)
194 {
195         fd_set rdfs;
196         int s[MAXSOCK];
197         int bridge = 0;
198         unsigned char timestamp = 0;
199         unsigned char silent = SILENT_INI;
200         unsigned char silentani = 0;
201         unsigned char color = 0;
202         unsigned char view = 0;
203         unsigned char log = 0;
204         unsigned char logfrmt = 0;
205         int opt, ret;
206         int currmax, numfilter;
207         char *ptr, *nptr;
208         struct sockaddr_can addr;
209         struct can_filter rfilter[MAXFILTER];
210         can_err_mask_t err_mask;
211         struct can_frame frame;
212         int nbytes, i;
213         struct ifreq ifr;
214         struct timeval tv, last_tv;
215         FILE *logfile = NULL;
216
217         signal(SIGTERM, sigterm);
218         signal(SIGHUP, sigterm);
219         signal(SIGINT, sigterm);
220
221         last_tv.tv_sec  = 0;
222         last_tv.tv_usec = 0;
223
224         while ((opt = getopt(argc, argv, "t:ciaSs:b:B:lLh?")) != -1) {
225                 switch (opt) {
226                 case 't':
227                         timestamp = optarg[0];
228                         if ((timestamp != 'a') && (timestamp != 'A') &&
229                             (timestamp != 'd') && (timestamp != 'z')) {
230                                 fprintf(stderr, "%s: unknown timestamp mode '%c' - ignored\n",
231                                        basename(argv[0]), optarg[0]);
232                                 timestamp = 0;
233                         }
234                         break;
235
236                 case 'c':
237                         color++;
238                         break;
239
240                 case 'i':
241                         view |= CANLIB_VIEW_BINARY;
242                         break;
243
244                 case 'a':
245                         view |= CANLIB_VIEW_ASCII;
246                         break;
247
248                 case 'S':
249                         view |= CANLIB_VIEW_SWAP;
250                         break;
251
252                 case 's':
253                         silent = atoi(optarg);
254                         if (silent > SILENT_ON) {
255                                 print_usage(basename(argv[0]));
256                                 exit(1);
257                         }
258                         break;
259
260                 case 'b':
261                 case 'B':
262                         if (strlen(optarg) >= IFNAMSIZ) {
263                                 fprintf(stderr, "Name of CAN device '%s' is too long!\n\n", optarg);
264                                 return 1;
265                         } else {
266                                 bridge = socket(PF_CAN, SOCK_RAW, CAN_RAW);
267                                 if (bridge < 0) {
268                                         perror("bridge socket");
269                                         return 1;
270                                 }
271                                 addr.can_family = AF_CAN;
272                                 strcpy(ifr.ifr_name, optarg);
273                                 if (ioctl(bridge, SIOCGIFINDEX, &ifr) < 0)
274                                         perror("SIOCGIFINDEX");
275                                 addr.can_ifindex = ifr.ifr_ifindex;
276                 
277                                 if (!addr.can_ifindex) {
278                                         perror("invalid bridge interface");
279                                         return 1;
280                                 }
281
282                                 /* disable default receive filter on this write-only RAW socket */
283                                 setsockopt(bridge, SOL_CAN_RAW, CAN_RAW_FILTER, NULL, 0);
284
285                                 if (opt == 'B') {
286                                         int loopback = 0;
287
288                                         setsockopt(bridge, SOL_CAN_RAW, CAN_RAW_LOOPBACK,
289                                                    &loopback, sizeof(loopback));
290                                 }
291
292                                 if (bind(bridge, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
293                                         perror("bridge bind");
294                                         return 1;
295                                 }
296                         }
297                         break;
298             
299                 case 'l':
300                         log = 1;
301                         break;
302
303                 case 'L':
304                         logfrmt = 1;
305                         break;
306
307                 default:
308                         print_usage(basename(argv[0]));
309                         exit(1);
310                         break;
311                 }
312         }
313
314         if (optind == argc) {
315                 print_usage(basename(argv[0]));
316                 exit(0);
317         }
318         
319         if (logfrmt && view) {
320                 fprintf(stderr, "Log file format selected: Please disable ASCII/BINARY/SWAP options!\n");
321                 exit(0);
322         }
323
324         if (silent == SILENT_INI) {
325                 if (log) {
326                         fprintf(stderr, "\nDisabled standard output while logging.");
327                         silent = SILENT_ON; /* disable output on stdout */
328                 } else
329                         silent = SILENT_OFF; /* default output */
330         }
331
332         currmax = argc - optind; /* find real number of CAN devices */
333
334         if (currmax > MAXSOCK) {
335                 fprintf(stderr, "More than %d CAN devices given on commandline!\n", MAXSOCK);
336                 return 1;
337         }
338
339         for (i=0; i < currmax; i++) {
340
341                 ptr = argv[optind+i];
342                 nptr = strchr(ptr, ',');
343
344 #ifdef DEBUG
345                 printf("open %d '%s'.\n", i, ptr);
346 #endif
347
348                 s[i] = socket(PF_CAN, SOCK_RAW, CAN_RAW);
349                 if (s[i] < 0) {
350                         perror("socket");
351                         return 1;
352                 }
353
354                 if (nptr)
355                         nbytes = nptr - ptr;  /* interface name is up the first ',' */
356                 else
357                         nbytes = strlen(ptr); /* no ',' found => no filter definitions */
358
359                 if (nbytes >= IFNAMSIZ) {
360                         fprintf(stderr, "name of CAN device '%s' is too long!\n", ptr);
361                         return 1;
362                 }
363
364                 if (nbytes > max_devname_len)
365                         max_devname_len = nbytes; /* for nice printing */
366
367                 addr.can_family = AF_CAN;
368
369                 memset(&ifr.ifr_name, 0, sizeof(ifr.ifr_name));
370                 strncpy(ifr.ifr_name, ptr, nbytes);
371
372 #ifdef DEBUG
373                 printf("using interface name '%s'.\n", ifr.ifr_name);
374 #endif
375
376                 if (strcmp(ANYDEV, ifr.ifr_name)) {
377                         if (ioctl(s[i], SIOCGIFINDEX, &ifr) < 0) {
378                                 perror("SIOCGIFINDEX");
379                                 exit(1);
380                         }
381                         addr.can_ifindex = ifr.ifr_ifindex;
382                 } else
383                         addr.can_ifindex = 0; /* any can interface */
384
385                 if (nptr) {
386
387                         /* found a ',' after the interface name => check for filters */
388
389                         numfilter = 0;
390                         err_mask = 0;
391
392                         while (nptr) {
393
394                                 ptr = nptr+1; /* hop behind the ',' */
395                                 nptr = strchr(ptr, ','); /* update exit condition */
396
397                                 if (sscanf(ptr, "%lx:%lx",
398                                            (long unsigned int *)
399                                            &rfilter[numfilter].can_id, 
400                                            (long unsigned int *)
401                                            &rfilter[numfilter].can_mask) == 2) {
402                                         rfilter[numfilter].can_mask &= ~CAN_ERR_FLAG;
403                                         numfilter++;
404                                 } else if (sscanf(ptr, "%lx~%lx",
405                                                   (long unsigned int *)
406                                                   &rfilter[numfilter].can_id, 
407                                                   (long unsigned int *)
408                                                   &rfilter[numfilter].can_mask) == 2) {
409                                         rfilter[numfilter].can_id |= CAN_INV_FILTER;
410                                         rfilter[numfilter].can_mask &= ~CAN_ERR_FLAG;
411                                         numfilter++;
412                                 } else if (sscanf(ptr, "#%lx",
413                                                   (long unsigned int *)&err_mask) != 1) { 
414                                         fprintf(stderr, "Error in filter option parsing: '%s'\n", ptr);
415                                         exit(1);
416                                 }
417
418                                 if (numfilter > MAXFILTER) {
419                                         fprintf(stderr, "Too many filters specified for '%s'.\n",
420                                                ifr.ifr_name);
421                                         exit(1);
422                                 }
423                         }
424
425                         if (err_mask)
426                                 setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_ERR_FILTER,
427                                            &err_mask, sizeof(err_mask));
428
429                         if (numfilter)
430                                 setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_FILTER,
431                                            &rfilter, numfilter * sizeof(struct can_filter));
432                 } /* if (nptr) */
433
434                 if (bind(s[i], (struct sockaddr *)&addr, sizeof(addr)) < 0) {
435                         perror("bind");
436                         return 1;
437                 }
438         }
439
440         if (log) {
441                 time_t currtime;
442                 struct tm now;
443                 char fname[sizeof("candump-2006-11-20_202026.log")+1];
444
445                 if (time(&currtime) == (time_t)-1) {
446                         perror("time");
447                         return 1;
448                 }
449
450                 localtime_r(&currtime, &now);
451
452                 sprintf(fname, "candump-%04d-%02d-%02d_%02d%02d%02d.log",
453                         now.tm_year + 1900,
454                         now.tm_mon + 1,
455                         now.tm_mday,
456                         now.tm_hour,
457                         now.tm_min,
458                         now.tm_sec);
459
460                 if (silent != SILENT_ON)
461                         printf("\nWarning: console output active while logging!");
462
463                 fprintf(stderr, "\nEnabling Logfile '%s'\n\n", fname);
464
465                 logfile = fopen(fname, "w");
466                 if (!logfile) {
467                         perror("logfile");
468                         return 1;
469                 }
470         }
471
472         while (running) {
473
474                 FD_ZERO(&rdfs);
475                 for (i=0; i<currmax; i++)
476                         FD_SET(s[i], &rdfs);
477
478                 if ((ret = select(s[currmax-1]+1, &rdfs, NULL, NULL, NULL)) < 0) {
479                         //perror("select");
480                         running = 0;
481                         continue;
482                 }
483
484                 for (i=0; i<currmax; i++) {  /* check all CAN RAW sockets */
485
486                         if (FD_ISSET(s[i], &rdfs)) {
487
488                                 socklen_t len = sizeof(addr);
489                                 int idx;
490
491                                 nbytes = recvfrom(s[i], &frame, sizeof(struct can_frame), 0,
492                                                   (struct sockaddr*)&addr, &len);
493                                 if (nbytes < 0) {
494                                         perror("read");
495                                         return 1;
496                                 }
497
498                                 if (nbytes < sizeof(struct can_frame)) {
499                                         fprintf(stderr, "read: incomplete CAN frame\n");
500                                         return 1;
501                                 }
502
503                                 if (bridge) {
504                                         nbytes = write(bridge, &frame, sizeof(struct can_frame));
505                                         if (nbytes < 0) {
506                                                 perror("bridge write");
507                                                 return 1;
508                                         } else if (nbytes < sizeof(struct can_frame)) {
509                                                 fprintf(stderr,"bridge write: incomplete CAN frame\n");
510                                                 return 1;
511                                         }
512                                 }
513                     
514                                 if (timestamp || log || logfrmt)
515                                         if (ioctl(s[i], SIOCGSTAMP, &tv) < 0)
516                                                 perror("SIOCGSTAMP");
517
518
519                                 idx = idx2dindex(addr.can_ifindex, s[i]);
520
521                                 if (log) {
522                                         /* log CAN frame with absolute timestamp & device */
523                                         fprintf(logfile, "(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
524                                         fprintf(logfile, "%*s ", max_devname_len, devname[idx]);
525                                         /* without seperator as logfile use-case is parsing */
526                                         fprint_canframe(logfile, &frame, "\n", 0);
527                                 }
528
529                                 if (logfrmt) {
530                                         /* print CAN frame in log file style to stdout */
531                                         printf("(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
532                                         printf("%*s ", max_devname_len, devname[idx]);
533                                         fprint_canframe(stdout, &frame, "\n", 0);
534                                         goto out_fflush; /* no other output to stdout */
535                                 }
536
537                                 if (silent != SILENT_OFF){
538                                         if (silent == SILENT_ANI) {
539                                                 printf("%c\b", anichar[silentani%=MAXANI]);
540                                                 silentani++;
541                                         }
542                                         goto out_fflush; /* no other output to stdout */
543                                 }
544                       
545                                 printf(" %s", (color>2)?col_on[idx%MAXCOL]:"");
546
547                                 switch (timestamp) {
548
549                                 case 'a': /* absolute with timestamp */
550                                         printf("(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
551                                         break;
552
553                                 case 'A': /* absolute with date */
554                                 {
555                                         struct tm tm;
556                                         char timestring[25];
557
558                                         tm = *localtime(&tv.tv_sec);
559                                         strftime(timestring, 24, "%Y-%m-%d %H:%M:%S", &tm);
560                                         printf("(%s.%06ld) ", timestring, tv.tv_usec);
561                                 }
562                                 break;
563
564                                 case 'd': /* delta */
565                                 case 'z': /* starting with zero */
566                                 {
567                                         struct timeval diff;
568
569                                         if (last_tv.tv_sec == 0)   /* first init */
570                                                 last_tv = tv;
571                                         diff.tv_sec  = tv.tv_sec  - last_tv.tv_sec;
572                                         diff.tv_usec = tv.tv_usec - last_tv.tv_usec;
573                                         if (diff.tv_usec < 0)
574                                                 diff.tv_sec--, diff.tv_usec += 1000000;
575                                         if (diff.tv_sec < 0)
576                                                 diff.tv_sec = diff.tv_usec = 0;
577                                         printf("(%ld.%06ld) ", diff.tv_sec, diff.tv_usec);
578                                 
579                                         if (timestamp == 'd')
580                                                 last_tv = tv; /* update for delta calculation */
581                                 }
582                                 break;
583
584                                 default: /* no timestamp output */
585                                         break;
586                                 }
587
588                                 printf(" %s", (color && (color<3))?col_on[idx%MAXCOL]:"");
589                                 printf("%*s", max_devname_len, devname[idx]);
590                                 printf("%s  ", (color==1)?col_off:"");
591
592                                 fprint_long_canframe(stdout, &frame, NULL, view);
593
594                                 printf("%s", (color>1)?col_off:"");
595                                 printf("\n");
596                         }
597
598                 out_fflush:
599                         fflush(stdout);
600                 }
601         }
602
603         for (i=0; i<currmax; i++)
604                 close(s[i]);
605
606         if (bridge)
607                 close(bridge);
608
609         if (log)
610                 fclose(logfile);
611
612         return 0;
613 }