52baaca511b15ec694a706b6831eaa757f2d7b07
[oweals/busybox.git] / miscutils / microcom.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * bare bones 'talk to modem' program - similar to 'cu -l $device'
4  * inspired by mgetty's microcom
5  *
6  * Copyright (C) 2007 by Vladimir Dronnikov <dronnikov@gmail.ru>
7  *
8  * Licensed under GPLv2, see file LICENSE in this tarball for details.
9  */
10 #include "libbb.h"
11
12 /* All known arches use small ints for signals */
13 static volatile smallint signalled;
14
15 static void signal_handler(int signo)
16 {
17         signalled = signo;
18 }
19
20 // set raw tty mode
21 static void xget1(int fd, struct termios *t, struct termios *oldt)
22
23         tcgetattr(fd, oldt);
24         *t = *oldt;
25         cfmakeraw(t);
26 //      t->c_lflag &= ~(ISIG|ICANON|ECHO|IEXTEN);
27 //      t->c_iflag &= ~(BRKINT|IXON|ICRNL);
28 //      t->c_oflag &= ~(ONLCR);
29 //      t->c_cc[VMIN]  = 1;
30 //      t->c_cc[VTIME] = 0;
31 }
32
33 static int xset1(int fd, struct termios *tio, const char *device)
34 {
35         int ret = tcsetattr(fd, TCSAFLUSH, tio);
36
37         if (ret) {
38                 bb_perror_msg("can't tcsetattr for %s", device);
39         }
40         return ret;
41 }
42
43 int microcom_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
44 int microcom_main(int argc, char **argv)
45 {
46         int sfd;
47         int nfd;
48         struct pollfd pfd[2];
49         struct termios tio0, tiosfd, tio;
50         char *device_lock_file;
51         enum {
52                 OPT_X = 1 << 0, // do not respect Ctrl-X, Ctrl-@
53                 OPT_s = 1 << 1, // baudrate
54                 OPT_d = 1 << 2  // wait for device response, msecs
55                 OPT_t = 1 << 3  // timeout, ms
56         };
57         speed_t speed = 9600;
58         int delay = -1;
59         int timeout = -1;
60
61         // fetch options
62         char *opt_s;
63         char *opt_t;
64         unsigned opts;
65         opt_complementary = "=1"; /* exactly one arg should be there */
66         opts = getopt32(argv, "Xs:d:t:", &opt_s, &opt_d, &opt_t);
67
68         // apply options
69         if (opts & OPT_s)
70                 speed = xatoi_u(opt_s);
71         if (opts & OPT_d)
72                 delay = xatoi_u(opt_d);
73         if (opts & OPT_t)
74                 timeout = xatoi_u(opt_t);
75
76 //      argc -= optind;
77         argv += optind;
78
79         // try to create lock file in /var/lock
80         device_lock_file = (char *)bb_basename(argv[0]);
81         device_lock_file = xasprintf("/var/lock/LCK..%s", device_lock_file);
82         sfd = open(device_lock_file, O_CREAT | O_WRONLY | O_TRUNC | O_EXCL, 0644);
83         if (sfd < 0) {
84                 if (errno == EEXIST)
85                         bb_perror_msg_and_die("can't create %s", device_lock_file);
86                 if (ENABLE_FEATURE_CLEAN_UP)
87                         free(device_lock_file);
88                 device_lock_file = NULL;
89         }
90         if (sfd > 0) {
91                 // %4d to make mgetty happy. It treats 4-bytes lock files as binary,
92                 // not text, PID. Making 5+ char file. Brrr...
93                 char *s = xasprintf("%4d\n", getpid());
94                 write(sfd, s, strlen(s));
95                 if (ENABLE_FEATURE_CLEAN_UP)
96                         free(s);
97                 close(sfd);
98         }
99
100         // setup signals
101         sig_catch(SIGHUP,  signal_handler);
102         sig_catch(SIGINT,  signal_handler);
103         sig_catch(SIGTERM, signal_handler);
104         sig_catch(SIGPIPE, signal_handler);
105
106         // error exit code if we fail to open the device
107         signalled = 1;
108
109         // open device
110         sfd = open_or_warn(argv[0], O_RDWR | O_NOCTTY | O_NONBLOCK);
111         if (sfd < 0)
112                 goto done;
113         fcntl(sfd, F_SETFL, O_RDWR | O_NOCTTY);
114
115         // put stdin to "raw mode" (if stdin is a TTY),
116         // handle one character at a time
117         if (isatty(STDIN_FILENO)) {
118                 xget1(STDIN_FILENO, &tio, &tio0);
119                 if (xset1(STDIN_FILENO, &tio, "stdin"))
120                         goto done;
121         }
122
123         // same thing for modem
124         xget1(sfd, &tio, &tiosfd);
125         // order device to hang up at exit
126         tio.c_cflag |= (CREAD|HUPCL);
127 //      if (!istty)
128 //              tio.c_iflag |= (IGNCR);
129         // set device speed
130         cfsetspeed(&tio, tty_value_to_baud(speed));
131         if (xset1(sfd, &tio, argv[0]))
132                 goto restore0_and_done;
133
134         // main loop: check with poll(), then read/write bytes across
135         pfd[0].fd = sfd;
136         pfd[0].events = POLLIN;
137         pfd[1].fd = STDIN_FILENO;
138         pfd[1].events = POLLIN;
139
140         signalled = 0;
141         nfd = 2;
142         while (!signalled && safe_poll(pfd, nfd, timeout) > 0) {
143                 char c;
144                 if (pfd[0].revents) {
145 serial_ready:
146                         // read from device -> write to stdout
147                         if (safe_read(sfd, &c, 1) > 0)
148                                 write(STDOUT_FILENO, &c, 1);
149                         // else { EOF/error - what to do? }
150                 }
151                 if (pfd[1].revents) {
152                         pfd[1].revents = 0;
153                         // read from stdin -> write to device
154                         if (safe_read(STDIN_FILENO, &c, 1) < 1) {
155                                 // don't poll stdin anymore if we got EOF/error
156                                 nfd--;
157                                 continue;
158                         }
159                         // do we need special processing?
160                         if (!(opts & OPT_X)) {
161                                 // ^@ sends Break
162                                 if (VINTR == c) {
163                                         tcsendbreak(sfd, 0);
164                                         continue;
165                                 }
166                                 // ^X exits
167                                 if (24 == c)
168                                         break;
169                         }
170                         write(sfd, &c, 1);
171                         if (delay >= 0 && safe_poll(pfd, 1, delay) > 0)
172                                 goto serial_ready;
173                 }
174         }
175
176         tcsetattr(sfd, TCSAFLUSH, &tiosfd);
177
178 restore0_and_done:
179         if (isatty(STDIN_FILENO))
180                 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio0);
181
182 done:
183         if (device_lock_file)
184                 unlink(device_lock_file);
185
186         return signalled;
187 }