]> rtime.felk.cvut.cz Git - can-utils.git/blob - slcan_attach.c
candump: Enable HW timestamping before using it
[can-utils.git] / slcan_attach.c
1 /*
2  * slcan_attach.c - userspace tool for serial line CAN interface driver SLCAN
3  *
4  * Copyright (c) 2002-2007 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 <stdlib.h>
46 #include <string.h>
47 #include <fcntl.h>
48 #include <unistd.h>
49 #include <getopt.h>
50 #include <sys/socket.h>
51 #include <sys/ioctl.h>
52 #include <net/if.h>
53 #include <termios.h>
54 #include <linux/tty.h>
55 #include <linux/sockios.h>
56
57 void print_usage(char *prg)
58 {
59         fprintf(stderr, "\nUsage: %s [options] tty\n\n", prg);
60         fprintf(stderr, "Options: -o         (send open command 'O\\r')\n");
61         fprintf(stderr, "         -l         (send listen only command 'L\\r', overrides -o)\n");
62         fprintf(stderr, "         -c         (send close command 'C\\r')\n");
63         fprintf(stderr, "         -f         (read status flags with 'F\\r' to reset error states)\n");
64         fprintf(stderr, "         -s <speed> (set CAN speed 0..8)\n");
65         fprintf(stderr, "         -b <btr>   (set bit time register value)\n");
66         fprintf(stderr, "         -d         (only detach line discipline)\n");
67         fprintf(stderr, "         -w         (attach - wait for keypess - detach)\n");
68         fprintf(stderr, "         -n <name>  (assign created netdevice name)\n");
69         fprintf(stderr, "\nExamples:\n");
70         fprintf(stderr, "slcan_attach -w -o -f -s6 -c /dev/ttyS1\n");
71         fprintf(stderr, "slcan_attach /dev/ttyS1\n");
72         fprintf(stderr, "slcan_attach -d /dev/ttyS1\n");
73         fprintf(stderr, "slcan_attach -w -n can15 /dev/ttyS1\n");
74         fprintf(stderr, "\n");
75         exit(1);
76 }
77
78 int main(int argc, char **argv)
79 {
80         int fd;
81         int ldisc = N_SLCAN;
82         int detach = 0;
83         int waitkey = 0;
84         int send_open = 0;
85         int send_listen = 0;
86         int send_close = 0;
87         int send_read_status_flags = 0;
88         char *speed = NULL;
89         char *btr = NULL;
90         char buf[IFNAMSIZ+1];
91         char *tty;
92         char *name = NULL;
93         int opt;
94
95         while ((opt = getopt(argc, argv, "ldwocfs:b:n:?")) != -1) {
96                 switch (opt) {
97                 case 'd':
98                         detach = 1;
99                         break;
100
101                 case 'w':
102                         waitkey = 1;
103                         break;
104
105                 case 'o':
106                         send_open = 1;
107                         break;
108
109                 case 'l':
110                         send_listen = 1;
111                         break;
112
113                 case 'c':
114                         send_close = 1;
115                         break;
116
117                 case 'f':
118                         send_read_status_flags = 1;
119                         break;
120
121                 case 's':
122                         speed = optarg;
123                         if (strlen(speed) > 1)
124                                 print_usage(argv[0]);
125                         break;
126
127                 case 'b':
128                         btr = optarg;
129                         if (strlen(btr) > 6)
130                                 print_usage(argv[0]);
131                         break;
132
133                 case 'n':
134                         name = optarg;
135                         if (strlen(name) > IFNAMSIZ-1)
136                                 print_usage(argv[0]);
137                         break;
138
139                 case '?':
140                 default:
141                         print_usage(argv[0]);
142                         break;
143                 }
144         }
145
146         if (argc - optind != 1)
147                 print_usage(argv[0]);
148
149         tty = argv[optind];
150
151         if ((fd = open (tty, O_WRONLY | O_NOCTTY)) < 0) {
152                 perror(tty);
153                 exit(1);
154         }
155
156         if (waitkey || !detach) {
157
158                 if (speed) {
159                         sprintf(buf, "C\rS%s\r", speed);
160                         write(fd, buf, strlen(buf));
161                 }
162
163                 if (btr) {
164                         sprintf(buf, "C\rs%s\r", btr);
165                         write(fd, buf, strlen(buf));
166                 }
167
168                 if (send_read_status_flags) {
169                         sprintf(buf, "F\r");
170                         write(fd, buf, strlen(buf));
171                 }
172
173                 if (send_listen) {
174                         sprintf(buf, "L\r");
175                         write(fd, buf, strlen(buf));
176                 } else if (send_open) {
177                         sprintf(buf, "O\r");
178                         write(fd, buf, strlen(buf));
179                 }
180
181                 /* set slcan line discipline on given tty */
182                 if (ioctl (fd, TIOCSETD, &ldisc) < 0) {
183                         perror("ioctl TIOCSETD");
184                         exit(1);
185                 }
186
187                 /* retrieve the name of the created CAN netdevice */
188                 if (ioctl (fd, SIOCGIFNAME, buf) < 0) {
189                         perror("ioctl SIOCGIFNAME");
190                         exit(1);
191                 }
192
193                 printf("attached tty %s to netdevice %s\n", tty, buf);
194
195                 /* try to rename the created device if requested */
196                 if (name) {
197                         struct ifreq ifr;
198                         int s = socket(PF_INET, SOCK_DGRAM, 0);
199  
200                         printf("rename netdevice %s to %s ... ", buf, name);
201
202                         if (s < 0)
203                                 perror("socket for interface rename");
204                         else {
205                                 strncpy (ifr.ifr_name, buf, IFNAMSIZ);
206                                 strncpy (ifr.ifr_newname, name, IFNAMSIZ);
207  
208                                 if (ioctl(s, SIOCSIFNAME, &ifr) < 0)
209                                         printf("failed!\n");
210                                 else
211                                         printf("ok.\n");
212  
213                                 close(s);
214                         }
215                 }
216         }
217
218         if (waitkey) {
219                 printf("Press any key to detach %s ...\n", tty);
220                 getchar();
221         }
222
223         if (waitkey || detach) {
224                 ldisc = N_TTY;
225                 if (ioctl (fd, TIOCSETD, &ldisc) < 0) {
226                         perror("ioctl");
227                         exit(1);
228                 }
229
230                 if (send_close) {
231                         sprintf(buf, "C\r");
232                         write(fd, buf, strlen(buf));
233                 }
234         }
235
236         close(fd);
237
238         return 0;
239 }