getty: wait up to 5 seconds for the output buffer to drain
[platform/upstream/busybox.git] / loginutils / getty.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Based on agetty - another getty program for Linux. By W. Z. Venema 1989
4  * Ported to Linux by Peter Orbaek <poe@daimi.aau.dk>
5  * This program is freely distributable.
6  *
7  * option added by Eric Rasmussen <ear@usfirst.org> - 12/28/95
8  *
9  * 1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org>
10  * - Added Native Language Support
11  *
12  * 1999-05-05 Thorsten Kranzkowski <dl8bcu@gmx.net>
13  * - Enabled hardware flow control before displaying /etc/issue
14  *
15  * 2011-01 Venys Vlasenko
16  * - Removed parity detection code. It can't work reliably:
17  * if all chars received have bit 7 cleared and odd (or even) parity,
18  * it is impossible to determine whether other side is 8-bit,no-parity
19  * or 7-bit,odd(even)-parity. It also interferes with non-ASCII usernames.
20  * - From now on, we assume that parity is correctly set.
21  *
22  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
23  */
24
25 #include "libbb.h"
26 #include <syslog.h>
27 #ifndef IUCLC
28 # define IUCLC 0
29 #endif
30
31 #ifndef LOGIN_PROCESS
32 # undef ENABLE_FEATURE_UTMP
33 # undef ENABLE_FEATURE_WTMP
34 # define ENABLE_FEATURE_UTMP 0
35 # define ENABLE_FEATURE_WTMP 0
36 #endif
37
38
39 /* The following is used for understandable diagnostics */
40 #ifdef DEBUGGING
41 static FILE *dbf;
42 # define DEBUGTERM "/dev/ttyp0"
43 # define debug(...) do { fprintf(dbf, __VA_ARGS__); fflush(dbf); } while (0)
44 #else
45 # define debug(...) ((void)0)
46 #endif
47
48
49 /*
50  * Things you may want to modify.
51  *
52  * You may disagree with the default line-editing etc. characters defined
53  * below. Note, however, that DEL cannot be used for interrupt generation
54  * and for line editing at the same time.
55  */
56 #undef  _PATH_LOGIN
57 #define _PATH_LOGIN "/bin/login"
58
59 /* Displayed before the login prompt.
60  * If ISSUE is not defined, getty will never display the contents of the
61  * /etc/issue file. You will not want to spit out large "issue" files at the
62  * wrong baud rate.
63  */
64 #define ISSUE "/etc/issue"
65
66 /* Some shorthands for control characters */
67 #define CTL(x)          ((x) ^ 0100)    /* Assumes ASCII dialect */
68 #define BS              CTL('H')        /* back space */
69 #define DEL             CTL('?')        /* delete */
70
71 /* Defaults for line-editing etc. characters; you may want to change this */
72 #define DEF_INTR        CTL('C')        /* default interrupt character */
73 #define DEF_QUIT        CTL('\\')       /* default quit char */
74 #define DEF_KILL        CTL('U')        /* default kill char */
75 #define DEF_EOF         CTL('D')        /* default EOF char */
76 #define DEF_EOL         '\n'
77 #define DEF_SWITCH      0               /* default switch char (none) */
78
79 /*
80  * When multiple baud rates are specified on the command line,
81  * the first one we will try is the first one specified.
82  */
83 #define MAX_SPEED       10              /* max. nr. of baud rates */
84
85 struct globals {
86         unsigned timeout;               /* time-out period */
87         const char *login;              /* login program */
88         const char *fakehost;
89         const char *tty;                /* name of tty */
90         const char *initstring;         /* modem init string */
91         const char *issue;              /* alternative issue file */
92         int numspeed;                   /* number of baud rates to try */
93         int speeds[MAX_SPEED];          /* baud rates to be tried */
94         unsigned char eol;              /* end-of-line char seen (CR or NL) */
95         struct termios termios;         /* terminal mode bits */
96         char line_buf[128];
97 };
98
99 #define G (*ptr_to_globals)
100 #define INIT_G() do { \
101         SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
102 } while (0)
103
104 //usage:#define getty_trivial_usage
105 //usage:       "[OPTIONS] BAUD_RATE[,BAUD_RATE]... TTY [TERMTYPE]"
106 //usage:#define getty_full_usage "\n\n"
107 //usage:       "Open a tty, prompt for a login name, then invoke /bin/login\n"
108 //usage:     "\nOptions:"
109 //usage:     "\n        -h              Enable hardware RTS/CTS flow control"
110 //usage:     "\n        -L              Set CLOCAL (ignore Carrier Detect state)"
111 //usage:     "\n        -m              Get baud rate from modem's CONNECT status message"
112 //usage:     "\n        -n              Don't prompt for login name"
113 //usage:     "\n        -w              Wait for CR or LF before sending /etc/issue"
114 //usage:     "\n        -i              Don't display /etc/issue"
115 //usage:     "\n        -f ISSUE_FILE   Display ISSUE_FILE instead of /etc/issue"
116 //usage:     "\n        -l LOGIN        Invoke LOGIN instead of /bin/login"
117 //usage:     "\n        -t SEC          Terminate after SEC if no login name is read"
118 //usage:     "\n        -I INITSTR      Send INITSTR before anything else"
119 //usage:     "\n        -H HOST         Log HOST into the utmp file as the hostname"
120 //usage:     "\n"
121 //usage:     "\nBAUD_RATE of 0 leaves it unchanged"
122
123 static const char opt_string[] ALIGN1 = "I:LH:f:hil:mt:wn";
124 #define F_INITSTRING    (1 << 0)   /* -I */
125 #define F_LOCAL         (1 << 1)   /* -L */
126 #define F_FAKEHOST      (1 << 2)   /* -H */
127 #define F_CUSTISSUE     (1 << 3)   /* -f */
128 #define F_RTSCTS        (1 << 4)   /* -h */
129 #define F_NOISSUE       (1 << 5)   /* -i */
130 #define F_LOGIN         (1 << 6)   /* -l */
131 #define F_PARSE         (1 << 7)   /* -m */
132 #define F_TIMEOUT       (1 << 8)   /* -t */
133 #define F_WAITCRLF      (1 << 9)   /* -w */
134 #define F_NOPROMPT      (1 << 10)  /* -n */
135
136
137 /* convert speed string to speed code; return <= 0 on failure */
138 static int bcode(const char *s)
139 {
140         int value = bb_strtou(s, NULL, 10); /* yes, int is intended! */
141         if (value < 0) /* bad terminating char, overflow, etc */
142                 return value;
143         return tty_value_to_baud(value);
144 }
145
146 /* parse alternate baud rates */
147 static void parse_speeds(char *arg)
148 {
149         char *cp;
150
151         /* NB: at least one iteration is always done */
152         debug("entered parse_speeds\n");
153         while ((cp = strsep(&arg, ",")) != NULL) {
154                 G.speeds[G.numspeed] = bcode(cp);
155                 if (G.speeds[G.numspeed] < 0)
156                         bb_error_msg_and_die("bad speed: %s", cp);
157                 /* note: arg "0" turns into speed B0 */
158                 G.numspeed++;
159                 if (G.numspeed > MAX_SPEED)
160                         bb_error_msg_and_die("too many alternate speeds");
161         }
162         debug("exiting parse_speeds\n");
163 }
164
165 /* parse command-line arguments */
166 static void parse_args(char **argv)
167 {
168         char *ts;
169         int flags;
170
171         opt_complementary = "-2:t+"; /* at least 2 args; -t N */
172         flags = getopt32(argv, opt_string,
173                 &G.initstring, &G.fakehost, &G.issue,
174                 &G.login, &G.timeout
175         );
176         if (flags & F_INITSTRING) {
177                 G.initstring = xstrdup(G.initstring);
178                 /* decode \ddd octal codes into chars */
179                 strcpy_and_process_escape_sequences((char*)G.initstring, G.initstring);
180         }
181         argv += optind;
182         debug("after getopt\n");
183
184         /* We loosen up a bit and accept both "baudrate tty" and "tty baudrate" */
185         G.tty = argv[0];        /* tty name */
186         ts = argv[1];           /* baud rate(s) */
187         if (isdigit(argv[0][0])) {
188                 /* A number first, assume it's a speed (BSD style) */
189                 G.tty = ts;     /* tty name is in argv[1] */
190                 ts = argv[0];   /* baud rate(s) */
191         }
192         parse_speeds(ts);
193         applet_name = xasprintf("getty: %s", G.tty);
194
195         if (argv[2])
196                 xsetenv("TERM", argv[2]);
197
198         debug("exiting parse_args\n");
199 }
200
201 /* set up tty as standard input, output, error */
202 static void open_tty(void)
203 {
204         /* Set up new standard input, unless we are given an already opened port */
205         if (NOT_LONE_DASH(G.tty)) {
206                 if (G.tty[0] != '/')
207                         G.tty = xasprintf("/dev/%s", G.tty); /* will leak it */
208
209                 /* Open the tty as standard input */
210                 debug("open(2)\n");
211                 close(0);
212                 xopen(G.tty, O_RDWR | O_NONBLOCK); /* uses fd 0 */
213
214                 /* Set proper protections and ownership */
215                 fchown(0, 0, 0);        /* 0:0 */
216                 fchmod(0, 0620);        /* crw--w---- */
217         } else {
218                 /*
219                  * Standard input should already be connected to an open port. Make
220                  * sure it is open for read/write.
221                  */
222                 if ((fcntl(0, F_GETFL) & (O_RDWR|O_RDONLY|O_WRONLY)) != O_RDWR)
223                         bb_error_msg_and_die("stdin is not open for read/write");
224         }
225 }
226
227 static void set_termios(void)
228 {
229         if (tcsetattr_stdin_TCSANOW(&G.termios) < 0)
230                 bb_perror_msg_and_die("tcsetattr");
231 }
232
233 /* We manipulate termios this way:
234  * - first, we read existing termios settings
235  * - termios_init modifies some parts and sets it
236  * - auto_baud and/or BREAK processing can set different speed and set termios
237  * - termios_final again modifies some parts and sets termios before
238  *   execing login
239  */
240 static void termios_init(int speed)
241 {
242         /* Try to drain output buffer, with 5 sec timeout.
243          * Added on request from users of ~600 baud serial interface
244          * with biggish buffer on a 90MHz CPU.
245          * They were losing hundreds of bytes of buffered output
246          * on tcflush.
247          */
248         signal_no_SA_RESTART_empty_mask(SIGALRM, record_signo);
249         alarm(5);
250         tcdrain(STDIN_FILENO);
251         alarm(0);
252         signal(SIGALRM, SIG_DFL); /* do not break -t TIMEOUT! */
253
254         /* Flush input and output queues, important for modems! */
255         tcflush(STDIN_FILENO, TCIOFLUSH);
256
257         /* Set speed if it wasn't specified as "0" on command line */
258         if (speed != B0)
259                 cfsetspeed(&G.termios, speed);
260
261         /* Initial termios settings: 8-bit characters, raw-mode, blocking i/o.
262          * Special characters are set after we have read the login name; all
263          * reads will be done in raw mode anyway. Errors will be dealt with
264          * later on.
265          */
266         /* 8 bits; hang up (drop DTR) on last close; enable receive */
267         G.termios.c_cflag = CS8 | HUPCL | CREAD;
268         if (option_mask32 & F_LOCAL) {
269                 /* ignore Carrier Detect pin:
270                  * opens don't block when CD is low,
271                  * losing CD doesn't hang up processes whose ctty is this tty
272                  */
273                 G.termios.c_cflag |= CLOCAL;
274         }
275 #ifdef CRTSCTS
276         if (option_mask32 & F_RTSCTS)
277                 G.termios.c_cflag |= CRTSCTS; /* flow control using RTS/CTS pins */
278 #endif
279         /* Other bits in c_cflag:
280          * CSTOPB 2 stop bits (1 otherwise)
281          * PARENB Enable parity bit (both on input and output)
282          * PARODD Odd parity (else even)
283          */
284         G.termios.c_iflag = 0;
285         G.termios.c_lflag = 0;
286         /* non-raw output; add CR to each NL */
287         G.termios.c_oflag = OPOST | ONLCR;
288
289         G.termios.c_cc[VMIN] = 1; /* block reads if < 1 char is available */
290         G.termios.c_cc[VTIME] = 0; /* no timeout (reads block forever) */
291 #ifdef __linux__
292         G.termios.c_line = 0;
293 #endif
294
295         set_termios();
296
297         debug("term_io 2\n");
298 }
299
300 static void termios_final(void)
301 {
302         /* software flow control on output (stop sending if XOFF is recvd);
303          * and on input (send XOFF when buffer is full)
304          */
305         G.termios.c_iflag |= IXON | IXOFF;
306         if (G.eol == '\r') {
307                 G.termios.c_iflag |= ICRNL; /* map CR on input to NL */
308         }
309         /* Other bits in c_iflag:
310          * IXANY   Any recvd char enables output (any char is also a XON)
311          * INPCK   Enable parity check
312          * IGNPAR  Ignore parity errors (drop bad bytes)
313          * PARMRK  Mark parity errors with 0xff, 0x00 prefix
314          *         (else bad byte is received as 0x00)
315          * ISTRIP  Strip parity bit
316          * IGNBRK  Ignore break condition
317          * BRKINT  Send SIGINT on break - maybe set this?
318          * INLCR   Map NL to CR
319          * IGNCR   Ignore CR
320          * ICRNL   Map CR to NL
321          * IUCLC   Map uppercase to lowercase
322          * IMAXBEL Echo BEL on input line too long
323          * IUTF8   Appears to affect tty's idea of char widths,
324          *         observed to improve backspacing through Unicode chars
325          */
326
327         /* line buffered input (NL or EOL or EOF chars end a line);
328          * recognize INT/QUIT/SUSP chars;
329          * echo input chars;
330          * echo BS-SP-BS on erase character;
331          * echo kill char specially, not as ^c (ECHOKE controls how exactly);
332          * erase all input via BS-SP-BS on kill char (else go to next line)
333          */
334         G.termios.c_lflag |= ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHOKE;
335         /* Other bits in c_lflag:
336          * XCASE   Map uppercase to \lowercase [tried, doesn't work]
337          * ECHONL  Echo NL even if ECHO is not set
338          * ECHOCTL Echo ctrl chars as ^c (else don't echo) - maybe set this?
339          * ECHOPRT On erase, echo erased chars
340          *         [qwe<BS><BS><BS> input looks like "qwe\ewq/" on screen]
341          * NOFLSH  Don't flush input buffer after interrupt or quit chars
342          * IEXTEN  Enable extended functions (??)
343          *         [glibc says it enables c_cc[LNEXT] "enter literal char"
344          *         and c_cc[VDISCARD] "toggle discard buffered output" chars]
345          * FLUSHO  Output being flushed (c_cc[VDISCARD] is in effect)
346          * PENDIN  Retype pending input at next read or input char
347          *         (c_cc[VREPRINT] is being processed)
348          * TOSTOP  Send SIGTTOU for background output
349          *         (why "stty sane" unsets this bit?)
350          */
351
352         G.termios.c_cc[VINTR] = DEF_INTR;
353         G.termios.c_cc[VQUIT] = DEF_QUIT;
354         G.termios.c_cc[VEOF] = DEF_EOF;
355         G.termios.c_cc[VEOL] = DEF_EOL;
356 #ifdef VSWTC
357         G.termios.c_cc[VSWTC] = DEF_SWITCH;
358 #endif
359 #ifdef VSWTCH
360         G.termios.c_cc[VSWTCH] = DEF_SWITCH;
361 #endif
362         G.termios.c_cc[VKILL] = DEF_KILL;
363         /* Other control chars:
364          * VEOL2
365          * VERASE, VWERASE - (word) erase. we may set VERASE in get_logname
366          * VREPRINT - reprint current input buffer
367          * VLNEXT, VDISCARD, VSTATUS
368          * VSUSP, VDSUSP - send (delayed) SIGTSTP
369          * VSTART, VSTOP - chars used for IXON/IXOFF
370          */
371
372         set_termios();
373 }
374
375 /* extract baud rate from modem status message */
376 static void auto_baud(void)
377 {
378         int nread;
379
380         /*
381          * This works only if the modem produces its status code AFTER raising
382          * the DCD line, and if the computer is fast enough to set the proper
383          * baud rate before the message has gone by. We expect a message of the
384          * following format:
385          *
386          * <junk><number><junk>
387          *
388          * The number is interpreted as the baud rate of the incoming call. If the
389          * modem does not tell us the baud rate within one second, we will keep
390          * using the current baud rate. It is advisable to enable BREAK
391          * processing (comma-separated list of baud rates) if the processing of
392          * modem status messages is enabled.
393          */
394
395         G.termios.c_cc[VMIN] = 0; /* don't block reads (min read is 0 chars) */
396         set_termios();
397
398         /*
399          * Wait for a while, then read everything the modem has said so far and
400          * try to extract the speed of the dial-in call.
401          */
402         sleep(1);
403         nread = safe_read(STDIN_FILENO, G.line_buf, sizeof(G.line_buf) - 1);
404         if (nread > 0) {
405                 int speed;
406                 char *bp;
407                 G.line_buf[nread] = '\0';
408                 for (bp = G.line_buf; bp < G.line_buf + nread; bp++) {
409                         if (isdigit(*bp)) {
410                                 speed = bcode(bp);
411                                 if (speed > 0)
412                                         cfsetspeed(&G.termios, speed);
413                                 break;
414                         }
415                 }
416         }
417
418         /* Restore terminal settings. Errors will be dealt with later on */
419         G.termios.c_cc[VMIN] = 1; /* restore to value set by termios_init */
420         set_termios();
421 }
422
423 /* get user name, establish parity, speed, erase, kill, eol;
424  * return NULL on BREAK, logname on success
425  */
426 static char *get_logname(void)
427 {
428         char *bp;
429         char c;
430
431         /* Flush pending input (esp. after parsing or switching the baud rate) */
432         usleep(100*1000); /* 0.1 sec */
433         tcflush(STDIN_FILENO, TCIFLUSH);
434
435         /* Prompt for and read a login name */
436         G.line_buf[0] = '\0';
437         while (!G.line_buf[0]) {
438                 /* Write issue file and prompt */
439 #ifdef ISSUE
440                 if (!(option_mask32 & F_NOISSUE))
441                         print_login_issue(G.issue, G.tty);
442 #endif
443                 print_login_prompt();
444
445                 /* Read name, watch for break, parity, erase, kill, end-of-line */
446                 bp = G.line_buf;
447                 G.eol = '\0';
448                 while (1) {
449                         /* Do not report trivial EINTR/EIO errors */
450                         errno = EINTR; /* make read of 0 bytes be silent too */
451                         if (read(STDIN_FILENO, &c, 1) < 1) {
452                                 if (errno == EINTR || errno == EIO)
453                                         exit(EXIT_SUCCESS);
454                                 bb_perror_msg_and_die(bb_msg_read_error);
455                         }
456
457                         /* BREAK. If we have speeds to try,
458                          * return NULL (will switch speeds and return here) */
459                         if (c == '\0' && G.numspeed > 1)
460                                 return NULL;
461
462                         /* Do erase, kill and end-of-line processing */
463                         switch (c) {
464                         case '\r':
465                         case '\n':
466                                 *bp = '\0';
467                                 G.eol = c;
468                                 goto got_logname;
469                         case BS:
470                         case DEL:
471                                 G.termios.c_cc[VERASE] = c;
472                                 if (bp > G.line_buf) {
473                                         full_write(STDOUT_FILENO, "\010 \010", 3);
474                                         bp--;
475                                 }
476                                 break;
477                         case CTL('U'):
478                                 while (bp > G.line_buf) {
479                                         full_write(STDOUT_FILENO, "\010 \010", 3);
480                                         bp--;
481                                 }
482                                 break;
483                         case CTL('D'):
484                                 exit(EXIT_SUCCESS);
485                         default:
486                                 if ((unsigned char)c < ' ') {
487                                         /* ignore garbage characters */
488                                 } else if ((int)(bp - G.line_buf) < sizeof(G.line_buf) - 1) {
489                                         /* echo and store the character */
490                                         full_write(STDOUT_FILENO, &c, 1);
491                                         *bp++ = c;
492                                 }
493                                 break;
494                         }
495                 } /* end of get char loop */
496  got_logname: ;
497         } /* while logname is empty */
498
499         return G.line_buf;
500 }
501
502 int getty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
503 int getty_main(int argc UNUSED_PARAM, char **argv)
504 {
505         int n;
506         pid_t pid;
507         char *logname;
508
509         INIT_G();
510         G.login = _PATH_LOGIN;    /* default login program */
511 #ifdef ISSUE
512         G.issue = ISSUE;          /* default issue file */
513 #endif
514         G.eol = '\r';
515
516         /* Parse command-line arguments */
517         parse_args(argv);
518
519         logmode = LOGMODE_NONE;
520
521         /* Create new session, lose controlling tty, if any */
522         /* docs/ctty.htm says:
523          * "This is allowed only when the current process
524          *  is not a process group leader" - is this a problem? */
525         setsid();
526         /* close stdio, and stray descriptors, just in case */
527         n = xopen(bb_dev_null, O_RDWR);
528         /* dup2(n, 0); - no, we need to handle "getty - 9600" too */
529         xdup2(n, 1);
530         xdup2(n, 2);
531         while (n > 2)
532                 close(n--);
533
534         /* Logging. We want special flavor of error_msg_and_die */
535         die_sleep = 10;
536         msg_eol = "\r\n";
537         /* most likely will internally use fd #3 in CLOEXEC mode: */
538         openlog(applet_name, LOG_PID, LOG_AUTH);
539         logmode = LOGMODE_BOTH;
540
541 #ifdef DEBUGGING
542         dbf = xfopen_for_write(DEBUGTERM);
543         for (n = 1; argv[n]; n++) {
544                 debug(argv[n]);
545                 debug("\n");
546         }
547 #endif
548
549         /* Open the tty as standard input, if it is not "-" */
550         /* If it's not "-" and not taken yet, it will become our ctty */
551         debug("calling open_tty\n");
552         open_tty();
553         ndelay_off(0);
554         debug("duping\n");
555         xdup2(0, 1);
556         xdup2(0, 2);
557
558         /*
559          * The following ioctl will fail if stdin is not a tty, but also when
560          * there is noise on the modem control lines. In the latter case, the
561          * common course of action is (1) fix your cables (2) give the modem more
562          * time to properly reset after hanging up. SunOS users can achieve (2)
563          * by patching the SunOS kernel variable "zsadtrlow" to a larger value;
564          * 5 seconds seems to be a good value.
565          */
566         if (tcgetattr(STDIN_FILENO, &G.termios) < 0)
567                 bb_perror_msg_and_die("tcgetattr");
568
569         pid = getpid();
570 #ifdef __linux__
571 // FIXME: do we need this? Otherwise "-" case seems to be broken...
572         // /* Forcibly make fd 0 our controlling tty, even if another session
573         //  * has it as a ctty. (Another session loses ctty). */
574         // ioctl(STDIN_FILENO, TIOCSCTTY, (void*)1);
575         /* Make ourself a foreground process group within our session */
576         tcsetpgrp(STDIN_FILENO, pid);
577 #endif
578
579         /* Update the utmp file. This tty is ours now! */
580         update_utmp(pid, LOGIN_PROCESS, G.tty, "LOGIN", G.fakehost);
581
582         /* Initialize the termios settings (raw mode, eight-bit, blocking i/o) */
583         debug("calling termios_init\n");
584         termios_init(G.speeds[0]);
585
586         /* Write the modem init string and DON'T flush the buffers */
587         if (option_mask32 & F_INITSTRING) {
588                 debug("writing init string\n");
589                 full_write1_str(G.initstring);
590         }
591
592         /* Optionally detect the baud rate from the modem status message */
593         debug("before autobaud\n");
594         if (option_mask32 & F_PARSE)
595                 auto_baud();
596
597         /* Set the optional timer */
598         alarm(G.timeout); /* if 0, alarm is not set */
599 //BUG: death by signal won't restore termios
600
601         /* Optionally wait for CR or LF before writing /etc/issue */
602         if (option_mask32 & F_WAITCRLF) {
603                 char ch;
604                 debug("waiting for cr-lf\n");
605                 while (safe_read(STDIN_FILENO, &ch, 1) == 1) {
606                         debug("read %x\n", (unsigned char)ch);
607                         if (ch == '\n' || ch == '\r')
608                                 break;
609                 }
610         }
611
612         logname = NULL;
613         if (!(option_mask32 & F_NOPROMPT)) {
614                 /* NB: termios_init already set line speed
615                  * to G.speeds[0] */
616                 int baud_index = 0;
617
618                 while (1) {
619                         /* Read the login name */
620                         debug("reading login name\n");
621                         logname = get_logname();
622                         if (logname)
623                                 break;
624                         /* We are here only if G.numspeed > 1 */
625                         baud_index = (baud_index + 1) % G.numspeed;
626                         cfsetspeed(&G.termios, G.speeds[baud_index]);
627                         set_termios();
628                 }
629         }
630
631         /* Disable timer */
632         alarm(0);
633
634         /* Finalize the termios settings */
635         termios_final();
636
637         /* Now the newline character should be properly written */
638         full_write(STDOUT_FILENO, "\n", 1);
639
640         /* Let the login program take care of password validation */
641         /* We use PATH because we trust that root doesn't set "bad" PATH,
642          * and getty is not suid-root applet */
643         /* With -n, logname == NULL, and login will ask for username instead */
644         BB_EXECLP(G.login, G.login, "--", logname, NULL);
645         bb_error_msg_and_die("can't execute '%s'", G.login);
646 }