microcom: read more than 1 byte from device, if possible
[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_d;
64         char *opt_t;
65         unsigned opts;
66         opt_complementary = "=1"; // exactly one arg should be there
67         opts = getopt32(argv, "Xs:d:t:", &opt_s, &opt_d, &opt_t);
68
69         // apply options
70         if (opts & OPT_s)
71                 speed = xatoi_u(opt_s);
72         if (opts & OPT_d)
73                 delay = xatoi_u(opt_d);
74         if (opts & OPT_t)
75                 timeout = xatoi_u(opt_t);
76
77 //      argc -= optind;
78         argv += optind;
79
80         // try to create lock file in /var/lock
81         device_lock_file = (char *)bb_basename(argv[0]);
82         device_lock_file = xasprintf("/var/lock/LCK..%s", device_lock_file);
83         sfd = open(device_lock_file, O_CREAT | O_WRONLY | O_TRUNC | O_EXCL, 0644);
84         if (sfd < 0) {
85                 if (errno == EEXIST)
86                         bb_perror_msg_and_die("can't create %s", device_lock_file);
87                 if (ENABLE_FEATURE_CLEAN_UP)
88                         free(device_lock_file);
89                 device_lock_file = NULL;
90         }
91         if (sfd > 0) {
92                 // %4d to make mgetty happy. It treats 4-bytes lock files as binary,
93                 // not text, PID. Making 5+ char file. Brrr...
94                 char *s = xasprintf("%4d\n", getpid());
95                 write(sfd, s, strlen(s));
96                 if (ENABLE_FEATURE_CLEAN_UP)
97                         free(s);
98                 close(sfd);
99         }
100
101         // setup signals
102         sig_catch(SIGHUP,  signal_handler);
103         sig_catch(SIGINT,  signal_handler);
104         sig_catch(SIGTERM, signal_handler);
105         sig_catch(SIGPIPE, signal_handler);
106
107         // error exit code if we fail to open the device
108         signalled = 1;
109
110         // open device
111         sfd = open_or_warn(argv[0], O_RDWR | O_NOCTTY | O_NONBLOCK);
112         if (sfd < 0)
113                 goto done;
114         fcntl(sfd, F_SETFL, O_RDWR | O_NOCTTY);
115
116         // put stdin to "raw mode" (if stdin is a TTY),
117         // handle one character at a time
118         if (isatty(STDIN_FILENO)) {
119                 xget1(STDIN_FILENO, &tio, &tio0);
120                 if (xset1(STDIN_FILENO, &tio, "stdin"))
121                         goto done;
122         }
123
124         // same thing for modem
125         xget1(sfd, &tio, &tiosfd);
126         // order device to hang up at exit
127         tio.c_cflag |= (CREAD|HUPCL);
128 //      if (!istty)
129 //              tio.c_iflag |= (IGNCR);
130         // set device speed
131         cfsetspeed(&tio, tty_value_to_baud(speed));
132         if (xset1(sfd, &tio, argv[0]))
133                 goto restore0_and_done;
134
135         // main loop: check with poll(), then read/write bytes across
136         pfd[0].fd = sfd;
137         pfd[0].events = POLLIN;
138         pfd[1].fd = STDIN_FILENO;
139         pfd[1].events = POLLIN;
140
141         signalled = 0;
142         nfd = 2;
143         while (!signalled && safe_poll(pfd, nfd, timeout) > 0) {
144                 if (pfd[1].revents) {
145                         char c;
146                         // read from stdin -> write to device
147                         if (safe_read(STDIN_FILENO, &c, 1) < 1) {
148                                 // don't poll stdin anymore if we got EOF/error
149                                 pfd[1].revents = 0;
150                                 nfd--;
151                                 goto check_stdin;
152                         }
153                         // do we need special processing?
154                         if (!(opts & OPT_X)) {
155                                 // ^@ sends Break
156                                 if (VINTR == c) {
157                                         tcsendbreak(sfd, 0);
158                                         goto check_stdin;
159                                 }
160                                 // ^X exits
161                                 if (24 == c)
162                                         break;
163                         }
164                         write(sfd, &c, 1);
165                         if (delay >= 0)
166                                 safe_poll(pfd, 1, delay);
167                 }
168 check_stdin:
169                 if (pfd[0].revents) {
170                         ssize_t len;
171                         // read from device -> write to stdout
172                         len = safe_read(sfd, bb_common_bufsiz1, sizeof(bb_common_bufsiz1));
173                         if (len > 0)
174                                 full_write(STDOUT_FILENO, bb_common_bufsiz1, len);
175                         // else { EOF/error - what to do? }
176                 }
177         }
178
179         tcsetattr(sfd, TCSAFLUSH, &tiosfd);
180
181 restore0_and_done:
182         if (isatty(STDIN_FILENO))
183                 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio0);
184
185 done:
186         if (device_lock_file)
187                 unlink(device_lock_file);
188
189         return signalled;
190 }