]> rtime.felk.cvut.cz Git - can-utils.git/blob - isotprecv.c
isotpperf: fix printed FC STMin value
[can-utils.git] / isotprecv.c
1 /*
2  * isotprecv.c
3  *
4  * Copyright (c) 2008 Volkswagen Group Electronic Research
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of Volkswagen nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * Alternatively, provided that this notice is retained in full, this
20  * software may be distributed under the terms of the GNU General
21  * Public License ("GPL") version 2, in which case the provisions of the
22  * GPL apply INSTEAD OF those given above.
23  *
24  * The provided data structures and external interfaces from this code
25  * are not restricted to be used by modules with a GPL compatible license.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
38  * DAMAGE.
39  *
40  * Send feedback to <linux-can@vger.kernel.org>
41  *
42  */
43
44 #include <stdio.h>
45 #include <unistd.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <libgen.h>
49
50 #include <net/if.h>
51 #include <sys/types.h>
52 #include <sys/socket.h>
53 #include <sys/ioctl.h>
54
55 #include <linux/can.h>
56 #include <linux/can/isotp.h>
57
58 #define NO_CAN_ID 0xFFFFFFFFU
59 #define BUFSIZE 5000 /* size > 4095 to check socket API internal checks */
60
61 void print_usage(char *prg)
62 {
63         fprintf(stderr, "\nUsage: %s [options] <CAN interface>\n", prg);
64         fprintf(stderr, "Options: -s <can_id>  (source can_id. Use 8 digits for extended IDs)\n");
65         fprintf(stderr, "         -d <can_id>  (destination can_id. Use 8 digits for extended IDs)\n");
66         fprintf(stderr, "         -x <addr>[:<rxaddr>] (extended addressing / opt. separate rxaddr)\n");
67         fprintf(stderr, "         -p [tx]:[rx] (set and enable tx/rx padding bytes)\n");
68         fprintf(stderr, "         -P <mode>    (check rx padding for (l)ength (c)ontent (a)ll)\n");
69         fprintf(stderr, "         -b <bs>      (blocksize. 0 = off)\n");
70         fprintf(stderr, "         -m <val>     (STmin in ms/ns. See spec.)\n");
71         fprintf(stderr, "         -f <time ns> (force rx stmin value in nanosecs)\n");
72         fprintf(stderr, "         -w <num>     (max. wait frame transmissions.)\n");
73         fprintf(stderr, "         -l           (loop: do not exit after pdu receiption.)\n");
74         fprintf(stderr, "         -L <mtu>:<tx_dl>:<tx_flags> (link layer options for CAN FD)\n");
75         fprintf(stderr, "\nCAN IDs and addresses are given and expected in hexadecimal values.\n");
76         fprintf(stderr, "The pdu data is written on STDOUT in space separated ASCII hex values.\n");
77         fprintf(stderr, "\n");
78 }
79
80 int main(int argc, char **argv)
81 {
82     int s;
83     struct sockaddr_can addr;
84     struct ifreq ifr;
85     static struct can_isotp_options opts;
86     static struct can_isotp_fc_options fcopts;
87     static struct can_isotp_ll_options llopts;
88     int opt, i;
89     extern int optind, opterr, optopt;
90     __u32 force_rx_stmin = 0;
91     int loop = 0;
92
93     unsigned char msg[BUFSIZE];
94     int nbytes;
95
96     addr.can_addr.tp.tx_id = addr.can_addr.tp.rx_id = NO_CAN_ID;
97
98     while ((opt = getopt(argc, argv, "s:d:x:p:P:b:m:w:f:lL:?")) != -1) {
99             switch (opt) {
100             case 's':
101                     addr.can_addr.tp.tx_id = strtoul(optarg, (char **)NULL, 16);
102                     if (strlen(optarg) > 7)
103                             addr.can_addr.tp.tx_id |= CAN_EFF_FLAG;
104                     break;
105
106             case 'd':
107                     addr.can_addr.tp.rx_id = strtoul(optarg, (char **)NULL, 16);
108                     if (strlen(optarg) > 7)
109                             addr.can_addr.tp.rx_id |= CAN_EFF_FLAG;
110                     break;
111
112             case 'x':
113             {
114                     int elements = sscanf(optarg, "%hhx:%hhx",
115                                           &opts.ext_address,
116                                           &opts.rx_ext_address);
117
118                     if (elements == 1)
119                             opts.flags |= CAN_ISOTP_EXTEND_ADDR;
120                     else if (elements == 2)
121                             opts.flags |= (CAN_ISOTP_EXTEND_ADDR | CAN_ISOTP_RX_EXT_ADDR);
122                     else {
123                             printf("incorrect extended addr values '%s'.\n", optarg);
124                             print_usage(basename(argv[0]));
125                             exit(0);
126                     }
127                     break;
128             }
129
130             case 'p':
131             {
132                     int elements = sscanf(optarg, "%hhx:%hhx",
133                                           &opts.txpad_content,
134                                           &opts.rxpad_content);
135
136                     if (elements == 1)
137                             opts.flags |= CAN_ISOTP_TX_PADDING;
138                     else if (elements == 2)
139                             opts.flags |= (CAN_ISOTP_TX_PADDING | CAN_ISOTP_RX_PADDING);
140                     else if (sscanf(optarg, ":%hhx", &opts.rxpad_content) == 1)
141                             opts.flags |= CAN_ISOTP_RX_PADDING;
142                     else {
143                             printf("incorrect padding values '%s'.\n", optarg);
144                             print_usage(basename(argv[0]));
145                             exit(0);
146                     }
147                     break;
148             }
149
150             case 'P':
151                     if (optarg[0] == 'l')
152                             opts.flags |= CAN_ISOTP_CHK_PAD_LEN;
153                     else if (optarg[0] == 'c')
154                             opts.flags |= CAN_ISOTP_CHK_PAD_DATA;
155                     else if (optarg[0] == 'a')
156                             opts.flags |= (CAN_ISOTP_CHK_PAD_LEN | CAN_ISOTP_CHK_PAD_DATA);
157                     else {
158                             printf("unknown padding check option '%c'.\n", optarg[0]);
159                             print_usage(basename(argv[0]));
160                             exit(0);
161                     }
162                     break;
163
164             case 'b':
165                     fcopts.bs = strtoul(optarg, (char **)NULL, 16) & 0xFF;
166                     break;
167
168             case 'm':
169                     fcopts.stmin = strtoul(optarg, (char **)NULL, 16) & 0xFF;
170                     break;
171
172             case 'w':
173                     fcopts.wftmax = strtoul(optarg, (char **)NULL, 16) & 0xFF;
174                     break;
175
176             case 'f':
177                     opts.flags |= CAN_ISOTP_FORCE_RXSTMIN;
178                     force_rx_stmin = strtoul(optarg, (char **)NULL, 10);
179                     break;
180
181             case 'l':
182                     loop = 1;
183                     break;
184
185             case 'L':
186                     if (sscanf(optarg, "%hhu:%hhu:%hhu",
187                                &llopts.mtu,
188                                &llopts.tx_dl,
189                                &llopts.tx_flags) != 3) {
190                             printf("unknown link layer options '%s'.\n", optarg);
191                             print_usage(basename(argv[0]));
192                             exit(0);
193                     }
194                     break;
195
196             case '?':
197                     print_usage(basename(argv[0]));
198                     exit(0);
199                     break;
200
201             default:
202                     fprintf(stderr, "Unknown option %c\n", opt);
203                     print_usage(basename(argv[0]));
204                     exit(1);
205                     break;
206             }
207     }
208
209     if ((argc - optind != 1) ||
210         (addr.can_addr.tp.tx_id == NO_CAN_ID) ||
211         (addr.can_addr.tp.rx_id == NO_CAN_ID)) {
212             print_usage(basename(argv[0]));
213             exit(1);
214     }
215   
216     if ((s = socket(PF_CAN, SOCK_DGRAM, CAN_ISOTP)) < 0) {
217         perror("socket");
218         exit(1);
219     }
220
221     setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_OPTS, &opts, sizeof(opts));
222     setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_RECV_FC, &fcopts, sizeof(fcopts));
223
224     if (llopts.tx_dl) {
225         if (setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_LL_OPTS, &llopts, sizeof(llopts)) < 0) {
226             perror("link layer sockopt");
227             exit(1);
228         }
229     }
230
231     if (opts.flags & CAN_ISOTP_FORCE_RXSTMIN)
232             setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_RX_STMIN, &force_rx_stmin, sizeof(force_rx_stmin));
233
234     addr.can_family = AF_CAN;
235     strcpy(ifr.ifr_name, argv[optind]);
236     ioctl(s, SIOCGIFINDEX, &ifr);
237     addr.can_ifindex = ifr.ifr_ifindex;
238
239     if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
240         perror("bind");
241         close(s);
242         exit(1);
243     }
244
245     do {
246             nbytes = read(s, msg, BUFSIZE);
247             if (nbytes > 0 && nbytes < BUFSIZE)
248                     for (i=0; i < nbytes; i++)
249                             printf("%02X ", msg[i]);
250             printf("\n");
251     } while (loop);
252
253     close(s);
254
255     return 0;
256 }