]> rtime.felk.cvut.cz Git - can-utils.git/blob - slcand.c
b72fa4e8eeb756a7c5fc9ec4ef1f790899e83864
[can-utils.git] / slcand.c
1 /*
2  * slcand.c - userspace daemon for serial line CAN interface driver SLCAN
3  *
4  * Copyright (c) 2009 Robert Haddon <robert.haddon@verari.com>
5  * Copyright (c) 2009 Verari Systems Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  * Send feedback to <linux-can@vger.kernel.org>
22  *
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <sys/socket.h>
32 #include <fcntl.h>
33 #include <syslog.h>
34 #include <errno.h>
35 #include <pwd.h>
36 #include <signal.h>
37 #include <sys/ioctl.h>
38 #include <net/if.h>
39 #include <termios.h>
40
41 /* default slcan line discipline since Kernel 2.6.25 */
42 #define LDISC_N_SLCAN 17
43
44 /* Change this to whatever your daemon is called */
45 #define DAEMON_NAME "slcand"
46
47 /* Change this to the user under which to run */
48 #define RUN_AS_USER "root"
49
50 /* The length of ttypath buffer */
51 #define TTYPATH_LENGTH  64
52
53 /* UART flow control types */
54 #define FLOW_NONE 0
55 #define FLOW_HW 1
56 #define FLOW_SW 2
57
58 void print_usage(char *prg)
59 {
60         fprintf(stderr, "\nUsage: %s [options] <tty> [canif-name]\n\n", prg);
61         fprintf(stderr, "Options: -o         (send open command 'O\\r')\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, "         -S <speed> (set UART speed in baud)\n");
66         fprintf(stderr, "         -t <type>  (set UART flow control type 'hw' or 'sw')\n");
67         fprintf(stderr, "         -b <btr>   (set bit time register value)\n");
68         fprintf(stderr, "         -F         (stay in foreground; no daemonize)\n");
69         fprintf(stderr, "         -h         (show this help page)\n");
70         fprintf(stderr, "\nExamples:\n");
71         fprintf(stderr, "slcand -o -c -f -s6 ttyUSB0\n");
72         fprintf(stderr, "slcand -o -c -f -s6 ttyUSB0 can0\n");
73         fprintf(stderr, "slcand -o -c -f -s6 /dev/ttyUSB0\n");
74         fprintf(stderr, "\n");
75         exit(EXIT_FAILURE);
76 }
77
78 static int slcand_running;
79 static int exit_code;
80 static char ttypath[TTYPATH_LENGTH];
81
82 static void child_handler(int signum)
83 {
84         switch (signum) {
85
86         case SIGUSR1:
87                 /* exit parent */
88                 exit(EXIT_SUCCESS);
89                 break;
90         case SIGALRM:
91         case SIGCHLD:
92                 syslog(LOG_NOTICE, "received signal %i on %s", signum, ttypath);
93                 exit_code = EXIT_FAILURE;
94                 slcand_running = 0;
95                 break;
96         case SIGINT:
97         case SIGTERM:
98                 syslog(LOG_NOTICE, "received signal %i on %s", signum, ttypath);
99                 exit_code = EXIT_SUCCESS;
100                 slcand_running = 0;
101                 break;
102         }
103 }
104
105 static int look_up_uart_speed(long int s)
106 {
107         switch (s) {
108
109         case 9600:
110                 return B9600;
111         case 19200:
112                 return B19200;
113         case 38400:
114                 return B38400;
115         case 57600:
116                 return B57600;
117         case 115200:
118                 return B115200;
119         case 230400:
120                 return B230400;
121         case 460800:
122                 return B460800;
123         case 500000:
124                 return B500000;
125         case 576000:
126                 return B576000;
127         case 921600:
128                 return B921600;
129         case 1000000:
130                 return B1000000;
131         case 1152000:
132                 return B1152000;
133         case 1500000:
134                 return B1500000;
135         case 2000000:
136                 return B2000000;
137 #ifdef B2500000
138         case 2500000:
139                 return B2500000;
140 #endif
141 #ifdef B3000000
142         case 3000000:
143                 return B3000000;
144 #endif
145 #ifdef B3500000
146         case 3500000:
147                 return B3500000;
148 #endif
149 #ifdef B3710000
150         case 3710000
151                 return B3710000;
152 #endif
153 #ifdef B4000000
154         case 4000000:
155                 return B4000000;
156 #endif
157         default:
158                 return -1;
159         }
160 }
161
162 int main(int argc, char *argv[])
163 {
164         char *tty = NULL;
165         char const *devprefix = "/dev/";
166         char *name = NULL;
167         char buf[IFNAMSIZ+1];
168         struct termios tios;
169         speed_t old_ispeed;
170         speed_t old_ospeed;
171
172         int opt;
173         int send_open = 0;
174         int send_close = 0;
175         int send_read_status_flags = 0;
176         char *speed = NULL;
177         char *uart_speed_str = NULL;
178         long int uart_speed = 0;
179         int flow_type = FLOW_NONE;
180         char *btr = NULL;
181         int run_as_daemon = 1;
182         char *pch;
183         int ldisc = LDISC_N_SLCAN;
184         int fd;
185
186         ttypath[0] = '\0';
187
188         while ((opt = getopt(argc, argv, "ocfs:S:t:b:?hF")) != -1) {
189                 switch (opt) {
190                 case 'o':
191                         send_open = 1;
192                         break;
193                 case 'c':
194                         send_close = 1;
195                         break;
196                 case 'f':
197                         send_read_status_flags = 1;
198                         break;
199                 case 's':
200                         speed = optarg;
201                         if (strlen(speed) > 1)
202                                 print_usage(argv[0]);
203                         break;
204                 case 'S':
205                         uart_speed_str = optarg;
206                         errno = 0;
207                         uart_speed = strtol(uart_speed_str, NULL, 10);
208                         if (errno)
209                                 print_usage(argv[0]);
210                         if (look_up_uart_speed(uart_speed) == -1) {
211                                 fprintf(stderr, "Unsupported UART speed (%lu)\n", uart_speed);
212                                 exit(EXIT_FAILURE);
213                         }
214                         break;
215                 case 't':
216                         if (!strcmp(optarg, "hw")) {
217                                 flow_type = FLOW_HW;
218                         } else if (!strcmp(optarg, "sw")) {
219                                 flow_type = FLOW_SW;
220                         } else {
221                                 fprintf(stderr, "Unsupported flow type (%s)\n", optarg);
222                                 exit(EXIT_FAILURE);
223                         }
224                         break;
225                 case 'b':
226                         btr = optarg;
227                         if (strlen(btr) > 6)
228                                 print_usage(argv[0]);
229                         break;
230                 case 'F':
231                         run_as_daemon = 0;
232                         break;
233                 case 'h':
234                 case '?':
235                 default:
236                         print_usage(argv[0]);
237                         break;
238                 }
239         }
240
241         /* Initialize the logging interface */
242         openlog(DAEMON_NAME, LOG_PID, LOG_LOCAL5);
243
244         /* Parse serial device name and optional can interface name */
245         tty = argv[optind];
246         if (NULL == tty)
247                 print_usage(argv[0]);
248
249         name = argv[optind + 1];
250
251         /* Prepare the tty device name string */
252         pch = strstr(tty, devprefix);
253         if (pch != tty)
254                 snprintf(ttypath, TTYPATH_LENGTH, "%s%s", devprefix, tty);
255         else
256                 snprintf(ttypath, TTYPATH_LENGTH, "%s", tty);
257
258         syslog(LOG_INFO, "starting on TTY device %s", ttypath);
259
260         /* Daemonize */
261         if (run_as_daemon) {
262                 if (daemon(0, 0)) {
263                         syslog(LOG_ERR, "failed to daemonize");
264                         exit(EXIT_FAILURE);
265                 }
266         }
267         else {
268                 /* Trap signals that we expect to receive */
269                 signal(SIGINT, child_handler);
270                 signal(SIGTERM, child_handler);
271         }
272
273         /* */
274         slcand_running = 1;
275
276         /* Now we are a daemon -- do the work for which we were paid */
277         fd = open(ttypath, O_RDWR | O_NONBLOCK | O_NOCTTY);
278         if (fd < 0) {
279                 syslog(LOG_NOTICE, "failed to open TTY device %s\n", ttypath);
280                 perror(ttypath);
281                 exit(EXIT_FAILURE);
282         }
283
284         /* Configure baud rate */
285         memset(&tios, 0, sizeof(struct termios));
286         if (tcgetattr(fd, &tios) < 0) {
287                 syslog(LOG_NOTICE, "failed to get attributes for TTY device %s: %s\n", ttypath, strerror(errno));
288                 exit(EXIT_FAILURE);
289         }
290
291         /* Get old values for later restore */
292         old_ispeed = cfgetispeed(&tios);
293         old_ospeed = cfgetospeed(&tios);
294
295         /* Reset UART settings */
296         cfmakeraw(&tios);
297         tios.c_iflag &= ~IXOFF;
298         tios.c_cflag &= ~CRTSCTS;
299
300         /* Baud Rate */
301         cfsetispeed(&tios, look_up_uart_speed(uart_speed));
302         cfsetospeed(&tios, look_up_uart_speed(uart_speed));
303
304         /* Flow control */
305         if (flow_type == FLOW_HW)
306                 tios.c_cflag |= CRTSCTS;
307         else if (flow_type == FLOW_SW)
308                 tios.c_iflag |= (IXON | IXOFF);
309
310         /* apply changes */
311         if (tcsetattr(fd, TCSADRAIN, &tios) < 0)
312                 syslog(LOG_NOTICE, "Cannot set attributes for device \"%s\": %s!\n", ttypath, strerror(errno));
313
314         if (speed) {
315                 sprintf(buf, "C\rS%s\r", speed);
316                 write(fd, buf, strlen(buf));
317         }
318
319         if (btr) {
320                 sprintf(buf, "C\rs%s\r", btr);
321                 write(fd, buf, strlen(buf));
322         }
323
324         if (send_read_status_flags) {
325                 sprintf(buf, "F\r");
326                 write(fd, buf, strlen(buf));
327         }
328
329         if (send_open) {
330                 sprintf(buf, "O\r");
331                 write(fd, buf, strlen(buf));
332         }
333
334         /* set slcan like discipline on given tty */
335         if (ioctl(fd, TIOCSETD, &ldisc) < 0) {
336                 perror("ioctl TIOCSETD");
337                 exit(EXIT_FAILURE);
338         }
339         
340         /* retrieve the name of the created CAN netdevice */
341         if (ioctl(fd, SIOCGIFNAME, buf) < 0) {
342                 perror("ioctl SIOCGIFNAME");
343                 exit(EXIT_FAILURE);
344         }
345
346         syslog(LOG_NOTICE, "attached TTY %s to netdevice %s\n", ttypath, buf);
347         
348         /* try to rename the created netdevice */
349         if (name) {
350                 struct ifreq ifr;
351                 int s = socket(PF_INET, SOCK_DGRAM, 0);
352
353                 if (s < 0)
354                         perror("socket for interface rename");
355                 else {
356                         strncpy(ifr.ifr_name, buf, IFNAMSIZ);
357                         strncpy(ifr.ifr_newname, name, IFNAMSIZ);
358
359                         if (ioctl(s, SIOCSIFNAME, &ifr) < 0) {
360                                 syslog(LOG_NOTICE, "netdevice %s rename to %s failed\n", buf, name);
361                                 perror("ioctl SIOCSIFNAME rename");
362                                 exit(EXIT_FAILURE);
363                         } else
364                                 syslog(LOG_NOTICE, "netdevice %s renamed to %s\n", buf, name);
365
366                         close(s);
367                 }       
368         }
369
370         /* The Big Loop */
371         while (slcand_running)
372                 sleep(1); /* wait 1 second */
373
374         /* Reset line discipline */
375         syslog(LOG_INFO, "stopping on TTY device %s", ttypath);
376         ldisc = N_TTY;
377         if (ioctl(fd, TIOCSETD, &ldisc) < 0) {
378                 perror("ioctl TIOCSETD");
379                 exit(EXIT_FAILURE);
380         }
381
382         if (send_close) {
383                 sprintf(buf, "C\r");
384                 write(fd, buf, strlen(buf));
385         }
386
387         /* Reset old rates */
388         cfsetispeed(&tios, old_ispeed);
389         cfsetospeed(&tios, old_ospeed);
390
391         /* apply changes */
392         if (tcsetattr(fd, TCSADRAIN, &tios) < 0)
393                 syslog(LOG_NOTICE, "Cannot set attributes for device \"%s\": %s!\n", ttypath, strerror(errno));
394
395         /* Finish up */
396         syslog(LOG_NOTICE, "terminated on %s", ttypath);
397         closelog();
398         return exit_code;
399 }