]> rtime.felk.cvut.cz Git - can-utils.git/blob - canlogserver.c
696781514b70f0bb34f6823eebec59e5914618bb
[can-utils.git] / canlogserver.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * canlogserver.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 <linux-can@vger.kernel.org>
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/wait.h>
59 #include <sys/types.h>
60 #include <sys/socket.h>
61 #include <sys/ioctl.h>
62 #include <sys/uio.h>
63 #include <net/if.h>
64 #include <netinet/in.h>
65
66 #include <linux/can.h>
67 #include <linux/can/raw.h>
68 #include <signal.h>
69 #include <errno.h>
70
71 #include "lib.h"
72
73 #define MAXDEV 6 /* change sscanf()'s manually if changed here */
74 #define ANYDEV "any"
75 #define ANL "\r\n" /* newline in ASC mode */
76
77 #define COMMENTSZ 200
78 #define BUFSZ (sizeof("(1345212884.318850)") + IFNAMSIZ + 4 + CL_CFSZ + COMMENTSZ) /* for one line in the logfile */
79
80 #define DEFPORT 28700
81
82 static char devname[MAXDEV][IFNAMSIZ+1];
83 static int  dindex[MAXDEV];
84 static int  max_devname_len;
85
86 extern int optind, opterr, optopt;
87
88 static volatile int running = 1;
89
90 void print_usage(char *prg)
91 {
92         fprintf(stderr, "\nUsage: %s [options] <CAN interface>+\n", prg);
93         fprintf(stderr, "  (use CTRL-C to terminate %s)\n\n", prg);
94         fprintf(stderr, "Options: -m <mask>   (ID filter mask.  Default 0x00000000) *\n");
95         fprintf(stderr, "         -v <value>  (ID filter value. Default 0x00000000) *\n");
96         fprintf(stderr, "         -i <0|1>    (invert the specified ID filter) *\n");
97         fprintf(stderr, "         -e <emask>  (mask for error frames)\n");
98         fprintf(stderr, "         -p <port>   (listen on port <port>. Default: %d)\n", DEFPORT);
99         fprintf(stderr, "\n");
100         fprintf(stderr, "* The CAN ID filter matches, when ...\n");
101         fprintf(stderr, "       <received_can_id> & mask == value & mask\n");
102         fprintf(stderr, "\n");
103         fprintf(stderr, "When using more than one CAN interface the options\n");
104         fprintf(stderr, "m/v/i/e have comma seperated values e.g. '-m 0,7FF,0'\n");
105         fprintf(stderr, "\nUse interface name '%s' to receive from all CAN interfaces.\n\n", ANYDEV);
106 }
107
108 int idx2dindex(int ifidx, int socket)
109 {
110         int i;
111         struct ifreq ifr;
112
113         for (i=0; i<MAXDEV; i++) {
114                 if (dindex[i] == ifidx)
115                         return i;
116         }
117
118         /* create new interface index cache entry */
119
120         /* remove index cache zombies first */
121         for (i=0; i < MAXDEV; i++) {
122                 if (dindex[i]) {
123                         ifr.ifr_ifindex = dindex[i];
124                         if (ioctl(socket, SIOCGIFNAME, &ifr) < 0)
125                                 dindex[i] = 0;
126                 }
127         }
128
129         for (i=0; i < MAXDEV; i++)
130                 if (!dindex[i]) /* free entry */
131                         break;
132
133         if (i == MAXDEV) {
134                 printf("Interface index cache only supports %d interfaces.\n", MAXDEV);
135                 exit(1);
136         }
137
138         dindex[i] = ifidx;
139
140         ifr.ifr_ifindex = ifidx;
141         if (ioctl(socket, SIOCGIFNAME, &ifr) < 0)
142                 perror("SIOCGIFNAME");
143
144         if (max_devname_len < strlen(ifr.ifr_name))
145                 max_devname_len = strlen(ifr.ifr_name);
146
147         strcpy(devname[i], ifr.ifr_name);
148
149 #ifdef DEBUG
150         printf("new index %d (%s)\n", i, devname[i]);
151 #endif
152
153         return i;
154 }
155
156 /* 
157  * This is a Signalhandler. When we get a signal, that a child
158  * terminated, we wait for it, so the zombie will disappear.
159  */
160 void childdied(int i)
161 {
162         wait(NULL);
163 }
164
165 /*
166  * This is a Signalhandler for a cought SIGTERM
167  */
168 void shutdown_gra(int i)
169 {
170         exit(0);
171 }
172
173
174 int main(int argc, char **argv)
175 {
176         struct sigaction signalaction;
177         sigset_t sigset;
178         fd_set rdfs;
179         int s[MAXDEV];
180         int socki, accsocket;
181         canid_t mask[MAXDEV] = {0};
182         canid_t value[MAXDEV] = {0};
183         int inv_filter[MAXDEV] = {0};
184         can_err_mask_t err_mask[MAXDEV] = {0};
185         int opt, ret;
186         int currmax = 1; /* we assume at least one can bus ;-) */
187         struct sockaddr_can addr;
188         struct can_filter rfilter;
189         struct canfd_frame frame;
190         const int canfd_on = 1;
191         int nbytes, i, j, maxdlen;
192         struct ifreq ifr;
193         struct timeval tv;
194         int port = DEFPORT;
195         struct sockaddr_in inaddr;
196         struct sockaddr_in clientaddr;
197         socklen_t sin_size = sizeof(clientaddr);
198         char temp[BUFSZ];
199
200         sigemptyset(&sigset);
201         signalaction.sa_handler = &childdied;
202         signalaction.sa_mask = sigset;
203         signalaction.sa_flags = 0;
204         sigaction(SIGCHLD, &signalaction, NULL);  /* install signal for dying child */
205         signalaction.sa_handler = &shutdown_gra;
206         signalaction.sa_mask = sigset;
207         signalaction.sa_flags = 0;
208         sigaction(SIGTERM, &signalaction, NULL); /* install Signal for termination */
209         sigaction(SIGINT, &signalaction, NULL); /* install Signal for termination */
210
211         while ((opt = getopt(argc, argv, "m:v:i:e:p:?")) != -1) {
212
213                 switch (opt) {
214                 case 'm':
215                         i = sscanf(optarg, "%x,%x,%x,%x,%x,%x",
216                                    &mask[0], &mask[1], &mask[2],
217                                    &mask[3], &mask[4], &mask[5]);
218                         if (i > currmax)
219                                 currmax = i;
220                         break;
221
222                 case 'v':
223                         i = sscanf(optarg, "%x,%x,%x,%x,%x,%x",
224                                    &value[0], &value[1], &value[2],
225                                    &value[3], &value[4], &value[5]);
226                         if (i > currmax)
227                                 currmax = i;
228                         break;
229
230                 case 'i':
231                         i = sscanf(optarg, "%d,%d,%d,%d,%d,%d",
232                                    &inv_filter[0], &inv_filter[1], &inv_filter[2],
233                                    &inv_filter[3], &inv_filter[4], &inv_filter[5]);
234                         if (i > currmax)
235                                 currmax = i;
236                         break;
237
238                 case 'e':
239                         i = sscanf(optarg, "%x,%x,%x,%x,%x,%x",
240                                    &err_mask[0], &err_mask[1], &err_mask[2],
241                                    &err_mask[3], &err_mask[4], &err_mask[5]);
242                         if (i > currmax)
243                                 currmax = i;
244                         break;
245                 case 'p':
246                         port = atoi(optarg);
247                         break;
248                 default:
249                         print_usage(basename(argv[0]));
250                         exit(1);
251                         break;
252                 }
253         }
254
255         if (optind == argc) {
256                 print_usage(basename(argv[0]));
257                 exit(0);
258         }
259
260         /* count in options higher than device count ? */
261         if (optind + currmax > argc) {
262                 printf("low count of CAN devices!\n");
263                 return 1;
264         }
265
266         currmax = argc - optind; /* find real number of CAN devices */
267
268         if (currmax > MAXDEV) {
269                 printf("More than %d CAN devices!\n", MAXDEV);
270                 return 1;
271         }
272
273
274         socki = socket(PF_INET, SOCK_STREAM, 0);
275         if (socki < 0) {
276                 perror("socket");
277                 exit(1);
278         }
279
280         inaddr.sin_family = AF_INET;
281         inaddr.sin_addr.s_addr = htonl(INADDR_ANY);
282         inaddr.sin_port = htons(port);
283
284         while(bind(socki, (struct sockaddr*)&inaddr, sizeof(inaddr)) < 0) {
285                 printf(".");fflush(NULL);
286                 usleep(100000);
287         }
288
289         if (listen(socki, 3) != 0) {
290                 perror("listen");
291                 exit(1);
292         }
293
294         while(1) {
295                 accsocket = accept(socki, (struct sockaddr*)&clientaddr, &sin_size);
296                 if (accsocket > 0) {
297                         //printf("accepted\n");
298                         if (!fork())
299                                 break;
300                         else
301                                 close(accsocket);
302                 }
303                 else if (errno != EINTR) {
304                         perror("accept");
305                         exit(1);
306                 }
307         }
308   
309         for (i=0; i<currmax; i++) {
310
311 #ifdef DEBUG
312                 printf("open %d '%s' m%08X v%08X i%d e%d.\n",
313                        i, argv[optind+i], mask[i], value[i],
314                        inv_filter[i], err_mask[i]);
315 #endif
316
317                 if ((s[i] = socket(PF_CAN, SOCK_RAW, CAN_RAW)) < 0) {
318                         perror("socket");
319                         return 1;
320                 }
321
322                 if (mask[i] || value[i]) {
323
324                         printf("CAN ID filter[%d] for %s set to "
325                                "mask = %08X, value = %08X %s\n",
326                                i, argv[optind+i], mask[i], value[i],
327                                (inv_filter[i]) ? "(inv_filter)" : "");
328
329                         rfilter.can_id   = value[i];
330                         rfilter.can_mask = mask[i];
331                         if (inv_filter[i])
332                                 rfilter.can_id |= CAN_INV_FILTER;
333
334                         setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_FILTER,
335                                    &rfilter, sizeof(rfilter));
336                 }
337
338                 if (err_mask[i])
339                         setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_ERR_FILTER,
340                                    &err_mask[i], sizeof(err_mask[i]));
341
342                 /* try to switch the socket into CAN FD mode */
343                 setsockopt(s[i], SOL_CAN_RAW, CAN_RAW_FD_FRAMES, &canfd_on, sizeof(canfd_on));
344
345                 j = strlen(argv[optind+i]);
346
347                 if (!(j < IFNAMSIZ)) {
348                         printf("name of CAN device '%s' is too long!\n", argv[optind+i]);
349                         return 1;
350                 }
351
352                 if (j > max_devname_len)
353                         max_devname_len = j; /* for nice printing */
354
355                 addr.can_family = AF_CAN;
356
357                 if (strcmp(ANYDEV, argv[optind+i])) {
358                         strcpy(ifr.ifr_name, argv[optind+i]);
359                         if (ioctl(s[i], SIOCGIFINDEX, &ifr) < 0) {
360                                 perror("SIOCGIFINDEX");
361                                 exit(1);
362                         }
363                         addr.can_ifindex = ifr.ifr_ifindex;
364                 }
365                 else
366                         addr.can_ifindex = 0; /* any can interface */
367
368                 if (bind(s[i], (struct sockaddr *)&addr, sizeof(addr)) < 0) {
369                         perror("bindcan");
370                         return 1;
371                 }
372         }
373
374         while (running) {
375
376                 FD_ZERO(&rdfs);
377                 for (i=0; i<currmax; i++)
378                         FD_SET(s[i], &rdfs);
379
380                 if ((ret = select(s[currmax-1]+1, &rdfs, NULL, NULL, NULL)) < 0) {
381                         //perror("select");
382                         running = 0;
383                         continue;
384                 }
385
386                 for (i=0; i<currmax; i++) {  /* check all CAN RAW sockets */
387
388                         if (FD_ISSET(s[i], &rdfs)) {
389
390                                 socklen_t len = sizeof(addr);
391                                 int idx;
392
393                                 if ((nbytes = recvfrom(s[i], &frame, CANFD_MTU, 0,
394                                                        (struct sockaddr*)&addr, &len)) < 0) {
395                                         perror("read");
396                                         return 1;
397                                 }
398
399                                 if ((size_t)nbytes == CAN_MTU)
400                                         maxdlen = CAN_MAX_DLEN;
401                                 else if ((size_t)nbytes == CANFD_MTU)
402                                         maxdlen = CANFD_MAX_DLEN;
403                                 else {
404                                         fprintf(stderr, "read: incomplete CAN frame\n");
405                                         return 1;
406                                 }
407
408                                 if (ioctl(s[i], SIOCGSTAMP, &tv) < 0)
409                                         perror("SIOCGSTAMP");
410
411
412                                 idx = idx2dindex(addr.can_ifindex, s[i]);
413
414                                 sprintf(temp, "(%ld.%06ld) %*s ",
415                                         tv.tv_sec, tv.tv_usec, max_devname_len, devname[idx]);
416                                 sprint_canframe(temp+strlen(temp), &frame, 0, maxdlen); 
417                                 strcat(temp, "\n");
418
419                                 if (write(accsocket, temp, strlen(temp)) < 0) {
420                                         perror("writeaccsock");
421                                         return 1;
422                                 }
423                     
424 #if 0
425                                 /* print CAN frame in log file style to stdout */
426                                 printf("(%ld.%06ld) ", tv.tv_sec, tv.tv_usec);
427                                 printf("%*s ", max_devname_len, devname[idx]);
428                                 fprint_canframe(stdout, &frame, "\n", 0, maxdlen);
429 #endif
430                         }
431
432                 }
433         }
434
435         for (i=0; i<currmax; i++)
436                 close(s[i]);
437
438         close(accsocket);
439         return 0;
440 }