]> rtime.felk.cvut.cz Git - can-utils.git/blob - isotprecv.c
isotp[send|recv]: support PDU sizes greater than 4095
[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>    (extended addressing mode.)\n");
67         fprintf(stderr, "         -p <byte>    (set and enable padding byte)\n");
68         fprintf(stderr, "         -P <mode>    (check padding in SF/CF. (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, "\nCAN IDs and addresses are given and expected in hexadecimal values.\n");
75         fprintf(stderr, "The pdu data is written on STDOUT in space separated ASCII hex values.\n");
76         fprintf(stderr, "\n");
77 }
78
79 int main(int argc, char **argv)
80 {
81     int s;
82     struct sockaddr_can addr;
83     struct ifreq ifr;
84     static struct can_isotp_options opts;
85     static struct can_isotp_fc_options fcopts;
86     int opt, i;
87     extern int optind, opterr, optopt;
88     __u32 force_rx_stmin = 0;
89     int loop = 0;
90
91     unsigned char msg[BUFSIZE];
92     int nbytes;
93
94     addr.can_addr.tp.tx_id = addr.can_addr.tp.rx_id = NO_CAN_ID;
95
96     while ((opt = getopt(argc, argv, "s:d:x:p:P:b:m:w:f:l?")) != -1) {
97             switch (opt) {
98             case 's':
99                     addr.can_addr.tp.tx_id = strtoul(optarg, (char **)NULL, 16);
100                     if (strlen(optarg) > 7)
101                             addr.can_addr.tp.tx_id |= CAN_EFF_FLAG;
102                     break;
103
104             case 'd':
105                     addr.can_addr.tp.rx_id = strtoul(optarg, (char **)NULL, 16);
106                     if (strlen(optarg) > 7)
107                             addr.can_addr.tp.rx_id |= CAN_EFF_FLAG;
108                     break;
109
110             case 'x':
111                     opts.flags |= CAN_ISOTP_EXTEND_ADDR;
112                     opts.ext_address = strtoul(optarg, (char **)NULL, 16) & 0xFF;
113                     break;
114
115             case 'p':
116                     opts.flags |= CAN_ISOTP_RX_PADDING;
117                     opts.rxpad_content = strtoul(optarg, (char **)NULL, 16) & 0xFF;
118                     break;
119
120             case 'P':
121                     if (optarg[0] == 'l')
122                             opts.flags |= CAN_ISOTP_CHK_PAD_LEN;
123                     else if (optarg[0] == 'c')
124                             opts.flags |= CAN_ISOTP_CHK_PAD_DATA;
125                     else if (optarg[0] == 'a')
126                             opts.flags |= (CAN_ISOTP_CHK_PAD_LEN | CAN_ISOTP_CHK_PAD_DATA);
127                     else {
128                             printf("unknown padding check option '%c'.\n", optarg[0]);
129                             print_usage(basename(argv[0]));
130                             exit(0);
131                     }
132                     break;
133
134             case 'b':
135                     fcopts.bs = strtoul(optarg, (char **)NULL, 16) & 0xFF;
136                     break;
137
138             case 'm':
139                     fcopts.stmin = strtoul(optarg, (char **)NULL, 16) & 0xFF;
140                     break;
141
142             case 'w':
143                     fcopts.wftmax = strtoul(optarg, (char **)NULL, 16) & 0xFF;
144                     break;
145
146             case 'f':
147                     opts.flags |= CAN_ISOTP_FORCE_RXSTMIN;
148                     force_rx_stmin = strtoul(optarg, (char **)NULL, 10);
149                     break;
150
151             case 'l':
152                     loop = 1;
153                     break;
154
155             case '?':
156                     print_usage(basename(argv[0]));
157                     exit(0);
158                     break;
159
160             default:
161                     fprintf(stderr, "Unknown option %c\n", opt);
162                     print_usage(basename(argv[0]));
163                     exit(1);
164                     break;
165             }
166     }
167
168     if ((argc - optind != 1) ||
169         (addr.can_addr.tp.tx_id == NO_CAN_ID) ||
170         (addr.can_addr.tp.rx_id == NO_CAN_ID)) {
171             print_usage(basename(argv[0]));
172             exit(1);
173     }
174   
175     if ((s = socket(PF_CAN, SOCK_DGRAM, CAN_ISOTP)) < 0) {
176         perror("socket");
177         exit(1);
178     }
179
180     setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_OPTS, &opts, sizeof(opts));
181     setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_RECV_FC, &fcopts, sizeof(fcopts));
182
183     if (opts.flags & CAN_ISOTP_FORCE_RXSTMIN)
184             setsockopt(s, SOL_CAN_ISOTP, CAN_ISOTP_RX_STMIN, &force_rx_stmin, sizeof(force_rx_stmin));
185
186     addr.can_family = AF_CAN;
187     strcpy(ifr.ifr_name, argv[optind]);
188     ioctl(s, SIOCGIFINDEX, &ifr);
189     addr.can_ifindex = ifr.ifr_ifindex;
190
191     if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
192         perror("bind");
193         close(s);
194         exit(1);
195     }
196
197     do {
198             nbytes = read(s, msg, BUFSIZE);
199             if (nbytes > 0 && nbytes < BUFSIZE)
200                     for (i=0; i < nbytes; i++)
201                             printf("%02X ", msg[i]);
202             printf("\n");
203     } while (loop);
204
205     close(s);
206
207     return 0;
208 }