]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - can-utils/slcan_attach.c
4a91ba02c94edc43bbff24abd95783a72d001b3e
[socketcan-devel.git] / can-utils / slcan_attach.c
1 /*
2  *  $Id$
3  */
4
5 /*
6  * slcan_attach.c - userspace tool for serial line CAN interface driver SLCAN
7  *
8  * Copyright (c) 2002-2007 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 <string.h>
51 #include <fcntl.h>
52 #include <unistd.h>
53 #include <getopt.h>
54 #include <sys/ioctl.h>
55 #include <net/if.h>
56
57 #define LDISC_N_SLCAN 17 /* default slcan line discipline since Kernel 2.6.25 */
58
59 void print_usage(char *prg)
60 {
61         fprintf(stderr, "\nUsage: %s [options] tty\n\n", prg);
62         fprintf(stderr, "Options: -o         (send open command 'O\\r')\n");
63         fprintf(stderr, "         -c         (send close command 'C\\r')\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 -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 = LDISC_N_SLCAN;
82         int detach = 0;
83         int waitkey = 0;
84         int send_open = 0;
85         int send_close = 0;
86         char *speed = NULL;
87         char *btr = NULL;
88         char buf[IFNAMSIZ+1];
89         char *tty;
90         char *name = NULL;
91         int opt;
92
93         while ((opt = getopt(argc, argv, "l:dwocs:b:n:?")) != -1) {
94                 switch (opt) {
95                 case 'l':
96                         fprintf(stderr, "Ignored option '-l'\n");
97                         break;
98
99                 case 'd':
100                         detach = 1;
101                         break;
102
103                 case 'w':
104                         waitkey = 1;
105                         break;
106
107                 case 'o':
108                         send_open = 1;
109                         break;
110
111                 case 'c':
112                         send_close = 1;
113                         break;
114
115                 case 's':
116                         speed = optarg;
117                         if (strlen(speed) > 1)
118                                 print_usage(argv[0]);
119                         break;
120
121                 case 'b':
122                         btr = optarg;
123                         if (strlen(btr) > 6)
124                                 print_usage(argv[0]);
125                         break;
126
127                 case 'n':
128                         name = optarg;
129                         if (strlen(name) > IFNAMSIZ-1)
130                                 print_usage(argv[0]);
131                         break;
132
133                 case '?':
134                 default:
135                         print_usage(argv[0]);
136                         break;
137                 }
138         }
139
140         if (argc - optind != 1)
141                 print_usage(argv[0]);
142
143         tty = argv[optind];
144
145         if ((fd = open (tty, O_WRONLY | O_NOCTTY)) < 0) {
146                 perror(tty);
147                 exit(1);
148         }
149
150         if (waitkey || !detach) {
151
152                 if (speed) {
153                         sprintf(buf, "S%s\r", speed);
154                         write(fd, buf, strlen(buf));
155                 }
156
157                 if (btr) {
158                         sprintf(buf, "s%s\r", btr);
159                         write(fd, buf, strlen(buf));
160                 }
161
162                 if (send_open) {
163                         sprintf(buf, "O\r");
164                         write(fd, buf, strlen(buf));
165                 }
166
167                 /* set slcan line discipline on given tty */
168                 if (ioctl (fd, TIOCSETD, &ldisc) < 0) {
169                         perror("ioctl TIOCSETD");
170                         exit(1);
171                 }
172
173                 /* retrieve the name of the created CAN netdevice */
174                 if (ioctl (fd, SIOCGIFNAME, buf) < 0) {
175                         perror("ioctl SIOCGIFNAME");
176                         exit(1);
177                 }
178
179                 printf("attached tty %s to netdevice %s\n", tty, buf);
180
181                 /* try to rename the created device if requested */
182                 if (name) {
183                         struct ifreq ifr;
184                         int s = socket(PF_INET, SOCK_DGRAM, 0);
185  
186                         printf("rename netdevice %s to %s ... ", buf, name);
187
188                         if (s < 0)
189                                 perror("socket for interface rename");
190                         else {
191                                 strncpy (ifr.ifr_name, buf, IFNAMSIZ);
192                                 strncpy (ifr.ifr_newname, name, IFNAMSIZ);
193  
194                                 if (ioctl(s, SIOCSIFNAME, &ifr) < 0)
195                                         printf("failed!\n");
196                                 else
197                                         printf("ok.\n");
198  
199                                 close(s);
200                         }
201                 }
202         }
203
204         if (waitkey) {
205                 printf("Press any key to detach %s ...\n", tty);
206                 getchar();
207         }
208
209         if (waitkey || detach) {
210                 ldisc = N_TTY;
211                 if (ioctl (fd, TIOCSETD, &ldisc) < 0) {
212                         perror("ioctl");
213                         exit(1);
214                 }
215
216                 if (send_close) {
217                         sprintf(buf, "C\r");
218                         write(fd, buf, strlen(buf));
219                 }
220         }
221
222         close(fd);
223
224         return 0;
225 }