]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - can-utils/isotprecv.c
Add kernel version depency for Kernel 3.1.x which extended __rtnl_register().
[socketcan-devel.git] / can-utils / isotprecv.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * isotprecv.c
7  *
8  * Copyright (c) 2008 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 <unistd.h>
50 #include <stdlib.h>
51 #include <string.h>
52 #include <libgen.h>
53
54 #include <net/if.h>
55 #include <sys/types.h>
56 #include <sys/socket.h>
57 #include <sys/ioctl.h>
58
59 #include <linux/can.h>
60 #include <linux/can/isotp.h>
61
62 #define NO_CAN_ID 0xFFFFFFFFU
63
64 void print_usage(char *prg)
65 {
66         fprintf(stderr, "\nUsage: %s [options] <CAN interface>\n", prg);
67         fprintf(stderr, "Options: -s <can_id>  (source can_id. Use 8 digits for extended IDs)\n");
68         fprintf(stderr, "         -d <can_id>  (destination can_id. Use 8 digits for extended IDs)\n");
69         fprintf(stderr, "         -x <addr>    (extended addressing mode.)\n");
70         fprintf(stderr, "         -p <byte>    (set and enable padding byte)\n");
71         fprintf(stderr, "         -P <mode>    (check padding in SF/CF. (l)ength (c)ontent (a)ll)\n");
72         fprintf(stderr, "         -b <bs>      (blocksize. 0 = off)\n");
73         fprintf(stderr, "         -m <val>     (STmin in ms/ns. See spec.)\n");
74         fprintf(stderr, "         -f <time ns> (force rx stmin value in nanosecs)\n");
75         fprintf(stderr, "         -w <num>     (max. wait frame transmissions.)\n");
76         fprintf(stderr, "         -l           (loop: do not exit after pdu receiption.)\n");
77         fprintf(stderr, "\nCAN IDs and addresses are given and expected in hexadecimal values.\n");
78         fprintf(stderr, "The pdu data is written on STDOUT in space separated ASCII hex values.\n");
79         fprintf(stderr, "\n");
80 }
81
82 int main(int argc, char **argv)
83 {
84     int s;
85     struct sockaddr_can addr;
86     struct ifreq ifr;
87     static struct can_isotp_options opts;
88     static struct can_isotp_fc_options fcopts;
89     int opt, i;
90     extern int optind, opterr, optopt;
91     __u32 force_rx_stmin = 0;
92     int loop = 0;
93
94     unsigned char msg[4096];
95     int nbytes;
96
97     addr.can_addr.tp.tx_id = addr.can_addr.tp.rx_id = NO_CAN_ID;
98
99     while ((opt = getopt(argc, argv, "s:d:x:p:P:b:m:w:f:l?")) != -1) {
100             switch (opt) {
101             case 's':
102                     addr.can_addr.tp.tx_id = strtoul(optarg, (char **)NULL, 16);
103                     if (strlen(optarg) > 7)
104                             addr.can_addr.tp.tx_id |= CAN_EFF_FLAG;
105                     break;
106
107             case 'd':
108                     addr.can_addr.tp.rx_id = strtoul(optarg, (char **)NULL, 16);
109                     if (strlen(optarg) > 7)
110                             addr.can_addr.tp.rx_id |= CAN_EFF_FLAG;
111                     break;
112
113             case 'x':
114                     opts.flags |= CAN_ISOTP_EXTEND_ADDR;
115                     opts.ext_address = strtoul(optarg, (char **)NULL, 16) & 0xFF;
116                     break;
117
118             case 'p':
119                     opts.flags |= CAN_ISOTP_RX_PADDING;
120                     opts.rxpad_content = strtoul(optarg, (char **)NULL, 16) & 0xFF;
121                     break;
122
123             case 'P':
124                     if (optarg[0] == 'l')
125                             opts.flags |= CAN_ISOTP_CHK_PAD_LEN;
126                     else if (optarg[0] == 'c')
127                             opts.flags |= CAN_ISOTP_CHK_PAD_DATA;
128                     else if (optarg[0] == 'a')
129                             opts.flags |= (CAN_ISOTP_CHK_PAD_DATA | CAN_ISOTP_CHK_PAD_DATA);
130                     else {
131                             printf("unknown padding check option '%c'.\n", optarg[0]);
132                             print_usage(basename(argv[0]));
133                             exit(0);
134                     }
135                     break;
136
137             case 'b':
138                     fcopts.bs = strtoul(optarg, (char **)NULL, 16) & 0xFF;
139                     break;
140
141             case 'm':
142                     fcopts.stmin = strtoul(optarg, (char **)NULL, 16) & 0xFF;
143                     break;
144
145             case 'w':
146                     fcopts.wftmax = strtoul(optarg, (char **)NULL, 16) & 0xFF;
147                     break;
148
149             case 'f':
150                     opts.flags |= CAN_ISOTP_FORCE_RXSTMIN;
151                     force_rx_stmin = strtoul(optarg, (char **)NULL, 10);
152                     break;
153
154             case 'l':
155                     loop = 1;
156                     break;
157
158             case '?':
159                     print_usage(basename(argv[0]));
160                     exit(0);
161                     break;
162
163             default:
164                     fprintf(stderr, "Unknown option %c\n", opt);
165                     print_usage(basename(argv[0]));
166                     exit(1);
167                     break;
168             }
169     }
170
171     if ((argc - optind != 1) ||
172         (addr.can_addr.tp.tx_id == NO_CAN_ID) ||
173         (addr.can_addr.tp.rx_id == NO_CAN_ID)) {
174             print_usage(basename(argv[0]));
175             exit(1);
176     }
177   
178     if ((s = socket(PF_CAN, SOCK_DGRAM, CAN_ISOTP)) < 0) {
179         perror("socket");
180         exit(1);
181     }
182
183     setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_OPTS, &opts, sizeof(opts));
184     setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_RECV_FC, &fcopts, sizeof(fcopts));
185
186     if (opts.flags & CAN_ISOTP_FORCE_RXSTMIN)
187             setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_RX_STMIN, &force_rx_stmin, sizeof(force_rx_stmin));
188
189     addr.can_family = AF_CAN;
190     strcpy(ifr.ifr_name, argv[optind]);
191     ioctl(s, SIOCGIFINDEX, &ifr);
192     addr.can_ifindex = ifr.ifr_ifindex;
193
194     if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
195         perror("bind");
196         close(s);
197         exit(1);
198     }
199
200     do {
201             nbytes = read(s, msg, 4096);
202             if (nbytes > 0 && nbytes < 4096)
203                     for (i=0; i < nbytes; i++)
204                             printf("%02X ", msg[i]);
205             printf("\n");
206     } while (loop);
207
208     close(s);
209
210     return 0;
211 }