]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blob - cangw.c
can-calc-bit-timing: fix indention
[sojka/can-utils.git] / cangw.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * cangw.c - manage PF_CAN netlink gateway
7  *
8  * Copyright (c) 2010 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 <libgen.h>
51 #include <string.h>
52 #include <unistd.h>
53 #include <errno.h>
54 #include <sys/socket.h>
55 #include <net/if.h>
56 #include <linux/netlink.h>
57 #include <linux/rtnetlink.h>
58 #include <linux/can/gw.h>
59
60 enum {
61         UNSPEC,
62         ADD,
63         DEL,
64         FLUSH,
65         LIST
66 };
67
68 struct modattr {
69         struct can_frame cf;
70         __u8 modtype;
71         __u8 instruction;
72 } __attribute__((packed));
73
74
75 #define RTCAN_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtcanmsg))))
76 #define RTCAN_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtcanmsg))
77
78 /* some netlink helpers stolen from iproute2 package */
79 #define NLMSG_TAIL(nmsg) \
80         ((struct rtattr *)(((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
81
82 int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data,
83               int alen)
84 {
85         int len = RTA_LENGTH(alen);
86         struct rtattr *rta;
87
88         if (NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len) > maxlen) {
89                 fprintf(stderr, "addattr_l: message exceeded bound of %d\n",
90                         maxlen);
91                 return -1;
92         }
93         rta = NLMSG_TAIL(n);
94         rta->rta_type = type;
95         rta->rta_len = len;
96         memcpy(RTA_DATA(rta), data, alen);
97         n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len);
98         return 0;
99 }
100
101 void printfilter(const void *data)
102 {
103         struct can_filter *filter = (struct can_filter *)data;
104
105         printf("-f %03X:%X ", filter->can_id, filter->can_mask);
106 }
107
108 void printmod(const char *type, const void *data)
109 {
110         struct modattr mod;
111         int i;
112
113         memcpy (&mod, data, CGW_MODATTR_LEN);
114
115         printf("-m %s:", type);
116
117         if (mod.modtype & CGW_MOD_ID)
118                 printf("I");
119
120         if (mod.modtype & CGW_MOD_DLC)
121                 printf("L");
122
123         if (mod.modtype & CGW_MOD_DATA)
124                 printf("D");
125
126         printf(":%03X.%X.", mod.cf.can_id, mod.cf.can_dlc);
127
128         for (i = 0; i < 8; i++)
129                 printf("%02X", mod.cf.data[i]);
130
131         printf(" ");
132 }
133
134 void print_cs_xor(struct cgw_csum_xor *cs_xor)
135 {
136         printf("-x %d:%d:%d:%02X ",
137                cs_xor->from_idx, cs_xor->to_idx,
138                cs_xor->result_idx, cs_xor->init_xor_val);
139 }
140
141 void print_cs_crc8_profile(struct cgw_csum_crc8 *cs_crc8)
142 {
143         int i;
144
145         printf("-p %d:", cs_crc8->profile);
146
147         switch (cs_crc8->profile) {
148
149         case  CGW_CRC8PRF_1U8:
150
151                 printf("%02X", cs_crc8->profile_data[0]);
152                 break;
153
154         case  CGW_CRC8PRF_16U8:
155
156                 for (i = 0; i < 16; i++)
157                         printf("%02X", cs_crc8->profile_data[i]);
158                 break;
159
160         case  CGW_CRC8PRF_SFFID_XOR:
161                 break;
162
163         default:
164                 printf("<unknown profile #%d>", cs_crc8->profile);
165         }
166
167         printf(" ");
168 }
169
170 void print_cs_crc8(struct cgw_csum_crc8 *cs_crc8)
171 {
172         int i;
173
174         printf("-c %d:%d:%d:%02X:%02X:",
175                cs_crc8->from_idx, cs_crc8->to_idx,
176                cs_crc8->result_idx, cs_crc8->init_crc_val,
177                cs_crc8->final_xor_val);
178
179         for (i = 0; i < 256; i++)
180                 printf("%02X", cs_crc8->crctab[i]);
181
182         printf(" ");
183
184         if (cs_crc8->profile != CGW_CRC8PRF_UNSPEC)
185                 print_cs_crc8_profile(cs_crc8);
186 }
187
188 void print_usage(char *prg)
189 {
190         fprintf(stderr, "\nUsage: %s [options]\n\n", prg);
191         fprintf(stderr, "Commands:  -A (add a new rule)\n");
192         fprintf(stderr, "           -D (delete a rule)\n");
193         fprintf(stderr, "           -F (flush / delete all rules)\n");
194         fprintf(stderr, "           -L (list all rules)\n");
195         fprintf(stderr, "Mandatory: -s <src_dev>  (source netdevice)\n");
196         fprintf(stderr, "           -d <dst_dev>  (destination netdevice)\n");
197         fprintf(stderr, "Options:   -t (preserve src_dev rx timestamp)\n");
198         fprintf(stderr, "           -e (echo sent frames - recommended on vcanx)\n");
199         fprintf(stderr, "           -f <filter> (set CAN filter)\n");
200         fprintf(stderr, "           -m <mod> (set frame modifications)\n");
201         fprintf(stderr, "           -x <from_idx>:<to_idx>:<result_idx>:<init_xor_val> (XOR checksum)\n");
202         fprintf(stderr, "           -c <from>:<to>:<result>:<init_val>:<xor_val>:<crctab[256]> (CRC8 cs)\n");
203         fprintf(stderr, "           -p <profile>:[<profile_data>] (CRC8 checksum profile & parameters)\n");
204         fprintf(stderr, "\nValues are given and expected in hexadecimal values. Leading 0s can be omitted.\n");
205         fprintf(stderr, "\n");
206         fprintf(stderr, "<filter> is a <value>:<mask> CAN identifier filter\n");
207         fprintf(stderr, "\n");
208         fprintf(stderr, "<mod> is a CAN frame modification instruction consisting of\n");
209         fprintf(stderr, "<instruction>:<can_frame-elements>:<can_id>.<can_dlc>.<can_data>\n");
210         fprintf(stderr, " - <instruction> is one of 'AND' 'OR' 'XOR' 'SET'\n");
211         fprintf(stderr, " - <can_frame-elements> is _one_ or _more_ of 'I'dentifier 'L'ength 'D'ata\n");
212         fprintf(stderr, " - <can_id> is an u32 value containing the CAN Identifier\n");
213         fprintf(stderr, " - <can_dlc> is an u8 value containing the data length code (0 .. 8)\n");
214         fprintf(stderr, " - <can_data> is always eight(!) u8 values containing the CAN frames data\n");
215         fprintf(stderr, "The max. four modifications are performed in the order AND -> OR -> XOR -> SET\n");
216         fprintf(stderr, "\n");
217         fprintf(stderr, "Example:\n");
218         fprintf(stderr, "%s -A -s can0 -d vcan3 -e -f 123:C00007FF -m SET:IL:333.4.1122334455667788\n", prg);
219         fprintf(stderr, "\n");
220         fprintf(stderr, "Supported CRC 8 profiles:\n");
221         fprintf(stderr, "Profile '%d' (1U8)       - add one additional u8 value\n", CGW_CRC8PRF_1U8);
222         fprintf(stderr, "Profile '%d' (16U8)      - add u8 value from table[16] indexed by (data[1] & 0xF)\n", CGW_CRC8PRF_16U8);
223         fprintf(stderr, "Profile '%d' (SFFID_XOR) - add u8 value (can_id & 0xFF) ^ (can_id >> 8 & 0xFF)\n", CGW_CRC8PRF_SFFID_XOR);
224         fprintf(stderr, "\n");
225 }
226
227 int b64hex(char *asc, unsigned char *bin, int len)
228 {
229         int i;
230
231         for (i = 0; i < len; i++) {
232                 if (!sscanf(asc+(i*2), "%2hhx", bin+i))
233                         return 1;       
234         }
235         return 0;
236 }
237
238 int parse_crc8_profile(char *optarg, struct cgw_csum_crc8 *crc8)
239 {
240         int ret = 1;
241         char *ptr;
242
243         if (sscanf(optarg, "%hhd:", &crc8->profile) != 1)
244                 return ret;
245
246         switch (crc8->profile) {
247
248         case  CGW_CRC8PRF_1U8:
249
250                 if (sscanf(optarg, "%hhd:%2hhx", &crc8->profile, &crc8->profile_data[0]) == 2)
251                         ret = 0;
252
253                 break;
254
255         case  CGW_CRC8PRF_16U8:
256
257                 ptr = strchr(optarg, ':');
258
259                 /* check if length contains 16 base64 hex values */
260                 if (ptr != NULL &&
261                     strlen(ptr) == strlen(":00112233445566778899AABBCCDDEEFF") &&
262                     b64hex(ptr+1, (unsigned char *)&crc8->profile_data[0], 16) == 0)
263                         ret = 0;
264
265                 break;
266
267         case  CGW_CRC8PRF_SFFID_XOR:
268
269                 /* no additional parameters needed */
270                 ret = 0;
271                 break;
272         }
273
274         return ret;
275 }
276
277 int parse_mod(char *optarg, struct modattr *modmsg)
278 {
279         char *ptr, *nptr;
280         char hexdata[17] = {0};
281
282         ptr = optarg;
283         nptr = strchr(ptr, ':');
284
285         if ((nptr - ptr > 3) || (nptr - ptr == 0))
286                 return 1;
287
288         if (!strncmp(ptr, "AND", 3))
289                 modmsg->instruction = CGW_MOD_AND;
290         else if (!strncmp(ptr, "OR", 2))
291                 modmsg->instruction = CGW_MOD_OR;
292         else if (!strncmp(ptr, "XOR", 3))
293                 modmsg->instruction = CGW_MOD_XOR;
294         else if (!strncmp(ptr, "SET", 3))
295                 modmsg->instruction = CGW_MOD_SET;
296         else
297                 return 2;
298
299         ptr = nptr+1;
300         nptr = strchr(ptr, ':');
301
302         if ((nptr - ptr > 3) || (nptr - ptr == 0))
303                 return 3;
304
305         modmsg->modtype = 0;
306
307         while (*ptr != ':') {
308
309                 switch (*ptr) {
310
311                 case 'I':
312                         modmsg->modtype |= CGW_MOD_ID;
313                         break;
314
315                 case 'L':
316                         modmsg->modtype |= CGW_MOD_DLC;
317                         break;
318
319                 case 'D':
320                         modmsg->modtype |= CGW_MOD_DATA;
321                         break;
322
323                 default:
324                         return 4;
325                 }
326                 ptr++;
327         }
328
329         if (sscanf(++ptr, "%lx.%hhx.%16s",
330                    (long unsigned int *)&modmsg->cf.can_id,
331                    (unsigned char *)&modmsg->cf.can_dlc, hexdata) != 3)
332                 return 5;
333
334         /* 4-bit masks can have values from 0 to 0xF */ 
335         if (modmsg->cf.can_dlc > 0xF)
336                 return 6;
337
338         /* but when setting CAN_DLC the value has to be limited to 8 */
339         if (modmsg->instruction == CGW_MOD_SET && modmsg->cf.can_dlc > 8)
340                 return 7;
341
342         if (strlen(hexdata) != 16)
343                 return 8;
344
345         if (b64hex(hexdata, &modmsg->cf.data[0], 8))
346                 return 9;
347
348         return 0; /* ok */
349 }
350
351 int parse_rtlist(char *prgname, unsigned char *rxbuf, int len)
352 {
353         char ifname[IF_NAMESIZE]; /* internface name for if_indextoname() */
354         struct rtcanmsg *rtc;
355         struct rtattr *rta;
356         struct nlmsghdr *nlh;
357         unsigned int src_ifindex = 0;
358         unsigned int dst_ifindex = 0;
359         __u32 handled, dropped;
360         int rtlen;
361
362
363         nlh = (struct nlmsghdr *)rxbuf;
364
365         while (1) {
366                 if (!NLMSG_OK(nlh, len))
367                         return 0;
368
369                 if (nlh->nlmsg_type == NLMSG_ERROR) {
370                         printf("NLMSG_ERROR\n");
371                         return 1;
372                 }
373
374                 if (nlh->nlmsg_type == NLMSG_DONE) {
375                         //printf("NLMSG_DONE\n");
376                         return 1;
377                 }
378
379                 rtc = (struct rtcanmsg *)NLMSG_DATA(nlh);
380                 if (rtc->can_family != AF_CAN) {
381                         printf("received msg from unknown family %d\n", rtc->can_family);
382                         return -EINVAL;
383                 }
384
385                 if (rtc->gwtype != CGW_TYPE_CAN_CAN) {
386                         printf("received msg with unknown gwtype %d\n", rtc->gwtype);
387                         return -EINVAL;
388                 }
389
390                 /*
391                  * print list in a representation that
392                  * can be used directly for start scripts.
393                  *
394                  * To order the mandatory and optional parameters in the
395                  * output string, the NLMSG is parsed twice.
396                  */
397
398                 handled = 0;
399                 dropped = 0;
400                 src_ifindex = 0;
401                 dst_ifindex = 0;
402
403                 printf("%s -A ", basename(prgname));
404
405                 /* first parse for mandatory options */
406                 rta = (struct rtattr *) RTCAN_RTA(rtc);
407                 rtlen = RTCAN_PAYLOAD(nlh);
408                 for(;RTA_OK(rta, rtlen);rta=RTA_NEXT(rta,rtlen))
409                 {
410                         //printf("(A-%d)", rta->rta_type);
411                         switch(rta->rta_type) {
412
413                         case CGW_FILTER:
414                         case CGW_MOD_AND:
415                         case CGW_MOD_OR:
416                         case CGW_MOD_XOR:
417                         case CGW_MOD_SET:
418                         case CGW_CS_XOR:
419                         case CGW_CS_CRC8:
420                                 break;
421
422                         case CGW_SRC_IF:
423                                 src_ifindex = *(__u32 *)RTA_DATA(rta);
424                                 break;
425
426                         case CGW_DST_IF:
427                                 dst_ifindex = *(__u32 *)RTA_DATA(rta);
428                                 break;
429
430                         case CGW_HANDLED:
431                                 handled = *(__u32 *)RTA_DATA(rta);
432                                 break;
433
434                         case CGW_DROPPED:
435                                 dropped = *(__u32 *)RTA_DATA(rta);
436                                 break;
437
438                         default:
439                                 printf("Unknown attribute %d!", rta->rta_type);
440                                 return -EINVAL;
441                                 break;
442                         }
443                 }
444
445
446                 printf("-s %s ", if_indextoname(src_ifindex, ifname));
447                 printf("-d %s ", if_indextoname(dst_ifindex, ifname));
448
449                 if (rtc->flags & CGW_FLAGS_CAN_ECHO)
450                         printf("-e ");
451
452                 if (rtc->flags & CGW_FLAGS_CAN_SRC_TSTAMP)
453                         printf("-t ");
454
455                 /* second parse for mod attributes */
456                 rta = (struct rtattr *) RTCAN_RTA(rtc);
457                 rtlen = RTCAN_PAYLOAD(nlh);
458                 for(;RTA_OK(rta, rtlen);rta=RTA_NEXT(rta,rtlen))
459                 {
460                         //printf("(B-%d)", rta->rta_type);
461                         switch(rta->rta_type) {
462
463                         case CGW_FILTER:
464                                 printfilter(RTA_DATA(rta));
465                                 break;
466
467                         case CGW_MOD_AND:
468                                 printmod("AND", RTA_DATA(rta));
469                                 break;
470
471                         case CGW_MOD_OR:
472                                 printmod("OR", RTA_DATA(rta));
473                                 break;
474
475                         case CGW_MOD_XOR:
476                                 printmod("XOR", RTA_DATA(rta));
477                                 break;
478
479                         case CGW_MOD_SET:
480                                 printmod("SET", RTA_DATA(rta));
481                                 break;
482
483                         case CGW_CS_XOR:
484                                 print_cs_xor((struct cgw_csum_xor *)RTA_DATA(rta));
485                                 break;
486
487                         case CGW_CS_CRC8:
488                                 print_cs_crc8((struct cgw_csum_crc8 *)RTA_DATA(rta));
489                                 break;
490
491                         case CGW_SRC_IF:
492                         case CGW_DST_IF:
493                         case CGW_HANDLED:
494                         case CGW_DROPPED:
495                                 break;
496
497                         default:
498                                 printf("Unknown attribute %d!", rta->rta_type);
499                                 return -EINVAL;
500                                 break;
501                         }
502                 }
503
504                 printf("# %d handled %d dropped\n", handled, dropped); /* end of entry */
505
506                 /* jump to next NLMSG in the given buffer */
507                 nlh = NLMSG_NEXT(nlh, len);
508         }
509 }
510
511 int main(int argc, char **argv)
512 {
513         int s;
514         int err = 0;
515
516         int opt;
517         extern int optind, opterr, optopt;
518
519         int cmd = UNSPEC;
520         int have_filter = 0;
521         int have_cs_xor = 0;
522         int have_cs_crc8 = 0;
523
524         struct {
525                 struct nlmsghdr nh;
526                 struct rtcanmsg rtcan;
527                 char buf[600];
528
529         } req;
530
531         unsigned char rxbuf[8192]; /* netlink receive buffer */
532         struct nlmsghdr *nlh;
533         struct nlmsgerr *rte;
534         unsigned int src_ifindex = 0;
535         unsigned int dst_ifindex = 0;
536         __u16 flags = 0;
537         int len;
538
539         struct can_filter filter;
540         struct sockaddr_nl nladdr;
541
542         struct cgw_csum_xor cs_xor;
543         struct cgw_csum_crc8 cs_crc8;
544         char crc8tab[513] = {0};
545
546         struct modattr modmsg[CGW_MOD_FUNCS];
547         int modidx = 0;
548         int i;
549
550         memset(&req, 0, sizeof(req));
551         memset(&cs_xor, 0, sizeof(cs_xor));
552         memset(&cs_crc8, 0, sizeof(cs_crc8));
553
554         while ((opt = getopt(argc, argv, "ADFLs:d:tef:c:p:x:m:?")) != -1) {
555                 switch (opt) {
556
557                 case 'A':
558                         if (cmd == UNSPEC)
559                                 cmd = ADD;
560                         break;
561
562                 case 'D':
563                         if (cmd == UNSPEC)
564                                 cmd = DEL;
565                         break;
566
567                 case 'F':
568                         if (cmd == UNSPEC)
569                                 cmd = FLUSH;
570                         break;
571
572                 case 'L':
573                         if (cmd == UNSPEC)
574                                 cmd = LIST;
575                         break;
576
577                 case 's':
578                         src_ifindex = if_nametoindex(optarg);
579                         break;
580
581                 case 'd':
582                         dst_ifindex = if_nametoindex(optarg);
583                         break;
584
585                 case 't':
586                         flags |= CGW_FLAGS_CAN_SRC_TSTAMP;
587                         break;
588
589                 case 'e':
590                         flags |= CGW_FLAGS_CAN_ECHO;
591                         break;
592
593                 case 'f':
594                         if (sscanf(optarg, "%lx:%lx",
595                                    (long unsigned int *)&filter.can_id, 
596                                    (long unsigned int *)&filter.can_mask) == 2) {
597                                 have_filter = 1;
598                         } else {
599                                 printf("Bad filter definition '%s'.\n", optarg);
600                                 exit(1);
601                         }
602                         break;
603
604                 case 'x':
605                         if (sscanf(optarg, "%hhd:%hhd:%hhd:%hhx",
606                                    &cs_xor.from_idx, &cs_xor.to_idx,
607                                    &cs_xor.result_idx, &cs_xor.init_xor_val) == 4) {
608                                 have_cs_xor = 1;
609                         } else {
610                                 printf("Bad XOR checksum definition '%s'.\n", optarg);
611                                 exit(1);
612                         }
613                         break;
614
615                 case 'c':
616                         if ((sscanf(optarg, "%hhd:%hhd:%hhd:%hhx:%hhx:%512s",
617                                     &cs_crc8.from_idx, &cs_crc8.to_idx,
618                                     &cs_crc8.result_idx, &cs_crc8.init_crc_val,
619                                     &cs_crc8.final_xor_val, crc8tab) == 6) &&
620                             (strlen(crc8tab) == 512) &&
621                             (b64hex(crc8tab, (unsigned char *)&cs_crc8.crctab, 256) == 0)) {
622                                 have_cs_crc8 = 1;
623                         } else {
624                                 printf("Bad CRC8 checksum definition '%s'.\n", optarg);
625                                 exit(1);
626                         }
627                         break;
628
629                 case 'p':
630                         if (parse_crc8_profile(optarg, &cs_crc8)) {
631                                 printf("Bad CRC8 profile definition '%s'.\n", optarg);
632                                 exit(1);
633                         }
634                         break;
635
636                 case 'm':
637                         /* may be triggered by each of the CGW_MOD_FUNCS functions */
638                         if ((modidx < CGW_MOD_FUNCS) && (err = parse_mod(optarg, &modmsg[modidx++]))) {
639                                 printf("Problem %d with modification definition '%s'.\n", err, optarg);
640                                 exit(1);
641                         }
642                         break;
643
644                 case '?':
645                         print_usage(basename(argv[0]));
646                         exit(0);
647                         break;
648
649                 default:
650                         fprintf(stderr, "Unknown option %c\n", opt);
651                         print_usage(basename(argv[0]));
652                         exit(1);
653                         break;
654                 }
655         }
656
657         if ((argc - optind != 0) || (cmd == UNSPEC)) {
658                 print_usage(basename(argv[0]));
659                 exit(1);
660         }
661
662         if ((cmd == ADD || cmd == DEL) &&
663             ((!src_ifindex) || (!dst_ifindex))) {
664                 print_usage(basename(argv[0]));
665                 exit(1);
666         }
667
668         s = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
669
670         switch (cmd) {
671
672         case ADD:
673                 req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
674                 req.nh.nlmsg_type  = RTM_NEWROUTE;
675                 break;
676
677         case DEL:
678                 req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
679                 req.nh.nlmsg_type  = RTM_DELROUTE;
680                 break;
681
682         case FLUSH:
683                 req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
684                 req.nh.nlmsg_type  = RTM_DELROUTE;
685                 /* if_index set to 0 => remove all entries */
686                 src_ifindex  = 0;
687                 dst_ifindex  = 0;
688                 break;
689
690         case LIST:
691                 req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
692                 req.nh.nlmsg_type  = RTM_GETROUTE;
693                 break;
694
695         default:
696                 printf("This function is not yet implemented.\n");
697                 exit(1);
698                 break;
699         }
700
701         req.nh.nlmsg_len   = NLMSG_LENGTH(sizeof(struct rtcanmsg));
702         req.nh.nlmsg_seq   = 0;
703
704         req.rtcan.can_family  = AF_CAN;
705         req.rtcan.gwtype = CGW_TYPE_CAN_CAN;
706         req.rtcan.flags = flags;
707
708         addattr_l(&req.nh, sizeof(req), CGW_SRC_IF, &src_ifindex, sizeof(src_ifindex));
709         addattr_l(&req.nh, sizeof(req), CGW_DST_IF, &dst_ifindex, sizeof(dst_ifindex));
710
711         /* add new attributes here */
712
713         if (have_filter)
714                 addattr_l(&req.nh, sizeof(req), CGW_FILTER, &filter, sizeof(filter));
715
716         if (have_cs_crc8)
717                 addattr_l(&req.nh, sizeof(req), CGW_CS_CRC8, &cs_crc8, sizeof(cs_crc8));
718
719         if (have_cs_xor)
720                 addattr_l(&req.nh, sizeof(req), CGW_CS_XOR, &cs_xor, sizeof(cs_xor));
721
722         /*
723          * a better example code
724          * modmsg.modtype = CGW_MOD_ID;
725          * addattr_l(&req.n, sizeof(req), CGW_MOD_SET, &modmsg, CGW_MODATTR_LEN);
726          */
727
728         /* add up to CGW_MOD_FUNCS modification definitions */
729         for (i = 0; i < modidx; i++)
730                 addattr_l(&req.nh, sizeof(req), modmsg[i].instruction, &modmsg[i], CGW_MODATTR_LEN);
731
732         memset(&nladdr, 0, sizeof(nladdr));
733         nladdr.nl_family = AF_NETLINK;
734         nladdr.nl_pid    = 0;
735         nladdr.nl_groups = 0;
736
737         err = sendto(s, &req, req.nh.nlmsg_len, 0,
738                      (struct sockaddr*)&nladdr, sizeof(nladdr));
739         if (err < 0) {
740                 perror("netlink sendto");
741                 return err;
742         }
743
744         /* clean netlink receive buffer */
745         memset(rxbuf, 0x0, sizeof(rxbuf));
746
747         if (cmd != LIST) {
748
749                 /*
750                  * cmd == ADD || cmd == DEL || cmd == FLUSH
751                  *
752                  * Parse the requested netlink acknowledge return values.
753                  */
754
755                 err = recv(s, &rxbuf, sizeof(rxbuf), 0);
756                 if (err < 0) {
757                         perror("netlink recv");
758                         return err;
759                 }
760                 nlh = (struct nlmsghdr *)rxbuf;
761                 if (nlh->nlmsg_type != NLMSG_ERROR) {
762                         fprintf(stderr, "unexpected netlink answer of type %d\n", nlh->nlmsg_type);
763                         return -EINVAL;
764                 }
765                 rte = (struct nlmsgerr *)NLMSG_DATA(nlh);
766                 err = rte->error;
767                 if (err < 0)
768                         fprintf(stderr, "netlink error %d (%s)\n", err, strerror(abs(err)));
769
770         } else {
771
772                 /* cmd == LIST */
773
774                 while (1) {
775                         len = recv(s, &rxbuf, sizeof(rxbuf), 0);
776                         if (len < 0) {
777                                 perror("netlink recv");
778                                 return len;
779                         }
780 #if 0
781                         printf("received msg len %d\n", len);
782
783                         for (i = 0; i < len; i++)
784                                 printf("%02X ", rxbuf[i]);
785
786                         printf("\n");
787 #endif
788                         /* leave on errors or NLMSG_DONE */
789                         if (parse_rtlist(argv[0], rxbuf, len))
790                                 break;
791                 }
792         }
793
794         close(s);
795
796         return err;
797 }
798