getty: fix "ifdef CMSPAR"
[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.
264          */
265         /* Clear all bits except: */
266         G.termios.c_cflag &= (0
267                 /* 2 stop bits (1 otherwise)
268                  * Enable parity bit (both on input and output)
269                  * Odd parity (else even)
270                  */
271                 | CSTOPB | PARENB | PARODD
272 #ifdef CMSPAR
273                 | CMSPAR  /* mark or space parity */
274 #endif
275                 | CBAUD   /* (output) baud rate */
276 #ifdef CBAUDEX
277                 | CBAUDEX /* (output) baud rate */
278 #endif
279 #ifdef CIBAUD
280                 | CIBAUD   /* input baud rate */
281 #endif
282         );
283         /* Set: 8 bits; hang up (drop DTR) on last close; enable receive */
284         G.termios.c_cflag |= CS8 | HUPCL | CREAD;
285         if (option_mask32 & F_LOCAL) {
286                 /* ignore Carrier Detect pin:
287                  * opens don't block when CD is low,
288                  * losing CD doesn't hang up processes whose ctty is this tty
289                  */
290                 G.termios.c_cflag |= CLOCAL;
291         }
292 #ifdef CRTSCTS
293         if (option_mask32 & F_RTSCTS)
294                 G.termios.c_cflag |= CRTSCTS; /* flow control using RTS/CTS pins */
295 #endif
296         G.termios.c_iflag = 0;
297         G.termios.c_lflag = 0;
298         /* non-raw output; add CR to each NL */
299         G.termios.c_oflag = OPOST | ONLCR;
300
301         G.termios.c_cc[VMIN] = 1; /* block reads if < 1 char is available */
302         G.termios.c_cc[VTIME] = 0; /* no timeout (reads block forever) */
303 #ifdef __linux__
304         G.termios.c_line = 0;
305 #endif
306
307         set_termios();
308
309         debug("term_io 2\n");
310 }
311
312 static void termios_final(void)
313 {
314         /* software flow control on output (stop sending if XOFF is recvd);
315          * and on input (send XOFF when buffer is full)
316          */
317         G.termios.c_iflag |= IXON | IXOFF;
318         if (G.eol == '\r') {
319                 G.termios.c_iflag |= ICRNL; /* map CR on input to NL */
320         }
321         /* Other bits in c_iflag:
322          * IXANY   Any recvd char enables output (any char is also a XON)
323          * INPCK   Enable parity check
324          * IGNPAR  Ignore parity errors (drop bad bytes)
325          * PARMRK  Mark parity errors with 0xff, 0x00 prefix
326          *         (else bad byte is received as 0x00)
327          * ISTRIP  Strip parity bit
328          * IGNBRK  Ignore break condition
329          * BRKINT  Send SIGINT on break - maybe set this?
330          * INLCR   Map NL to CR
331          * IGNCR   Ignore CR
332          * ICRNL   Map CR to NL
333          * IUCLC   Map uppercase to lowercase
334          * IMAXBEL Echo BEL on input line too long
335          * IUTF8   Appears to affect tty's idea of char widths,
336          *         observed to improve backspacing through Unicode chars
337          */
338
339         /* line buffered input (NL or EOL or EOF chars end a line);
340          * recognize INT/QUIT/SUSP chars;
341          * echo input chars;
342          * echo BS-SP-BS on erase character;
343          * echo kill char specially, not as ^c (ECHOKE controls how exactly);
344          * erase all input via BS-SP-BS on kill char (else go to next line)
345          */
346         G.termios.c_lflag |= ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHOKE;
347         /* Other bits in c_lflag:
348          * XCASE   Map uppercase to \lowercase [tried, doesn't work]
349          * ECHONL  Echo NL even if ECHO is not set
350          * ECHOCTL Echo ctrl chars as ^c (else don't echo) - maybe set this?
351          * ECHOPRT On erase, echo erased chars
352          *         [qwe<BS><BS><BS> input looks like "qwe\ewq/" on screen]
353          * NOFLSH  Don't flush input buffer after interrupt or quit chars
354          * IEXTEN  Enable extended functions (??)
355          *         [glibc says it enables c_cc[LNEXT] "enter literal char"
356          *         and c_cc[VDISCARD] "toggle discard buffered output" chars]
357          * FLUSHO  Output being flushed (c_cc[VDISCARD] is in effect)
358          * PENDIN  Retype pending input at next read or input char
359          *         (c_cc[VREPRINT] is being processed)
360          * TOSTOP  Send SIGTTOU for background output
361          *         (why "stty sane" unsets this bit?)
362          */
363
364         G.termios.c_cc[VINTR] = DEF_INTR;
365         G.termios.c_cc[VQUIT] = DEF_QUIT;
366         G.termios.c_cc[VEOF] = DEF_EOF;
367         G.termios.c_cc[VEOL] = DEF_EOL;
368 #ifdef VSWTC
369         G.termios.c_cc[VSWTC] = DEF_SWITCH;
370 #endif
371 #ifdef VSWTCH
372         G.termios.c_cc[VSWTCH] = DEF_SWITCH;
373 #endif
374         G.termios.c_cc[VKILL] = DEF_KILL;
375         /* Other control chars:
376          * VEOL2
377          * VERASE, VWERASE - (word) erase. we may set VERASE in get_logname
378          * VREPRINT - reprint current input buffer
379          * VLNEXT, VDISCARD, VSTATUS
380          * VSUSP, VDSUSP - send (delayed) SIGTSTP
381          * VSTART, VSTOP - chars used for IXON/IXOFF
382          */
383
384         set_termios();
385 }
386
387 /* extract baud rate from modem status message */
388 static void auto_baud(void)
389 {
390         int nread;
391
392         /*
393          * This works only if the modem produces its status code AFTER raising
394          * the DCD line, and if the computer is fast enough to set the proper
395          * baud rate before the message has gone by. We expect a message of the
396          * following format:
397          *
398          * <junk><number><junk>
399          *
400          * The number is interpreted as the baud rate of the incoming call. If the
401          * modem does not tell us the baud rate within one second, we will keep
402          * using the current baud rate. It is advisable to enable BREAK
403          * processing (comma-separated list of baud rates) if the processing of
404          * modem status messages is enabled.
405          */
406
407         G.termios.c_cc[VMIN] = 0; /* don't block reads (min read is 0 chars) */
408         set_termios();
409
410         /*
411          * Wait for a while, then read everything the modem has said so far and
412          * try to extract the speed of the dial-in call.
413          */
414         sleep(1);
415         nread = safe_read(STDIN_FILENO, G.line_buf, sizeof(G.line_buf) - 1);
416         if (nread > 0) {
417                 int speed;
418                 char *bp;
419                 G.line_buf[nread] = '\0';
420                 for (bp = G.line_buf; bp < G.line_buf + nread; bp++) {
421                         if (isdigit(*bp)) {
422                                 speed = bcode(bp);
423                                 if (speed > 0)
424                                         cfsetspeed(&G.termios, speed);
425                                 break;
426                         }
427                 }
428         }
429
430         /* Restore terminal settings */
431         G.termios.c_cc[VMIN] = 1; /* restore to value set by termios_init */
432         set_termios();
433 }
434
435 /* get user name, establish parity, speed, erase, kill, eol;
436  * return NULL on BREAK, logname on success
437  */
438 static char *get_logname(void)
439 {
440         char *bp;
441         char c;
442
443         /* Flush pending input (esp. after parsing or switching the baud rate) */
444         usleep(100*1000); /* 0.1 sec */
445         tcflush(STDIN_FILENO, TCIFLUSH);
446
447         /* Prompt for and read a login name */
448         G.line_buf[0] = '\0';
449         while (!G.line_buf[0]) {
450                 /* Write issue file and prompt */
451 #ifdef ISSUE
452                 if (!(option_mask32 & F_NOISSUE))
453                         print_login_issue(G.issue, G.tty);
454 #endif
455                 print_login_prompt();
456
457                 /* Read name, watch for break, parity, erase, kill, end-of-line */
458                 bp = G.line_buf;
459                 G.eol = '\0';
460                 while (1) {
461                         /* Do not report trivial EINTR/EIO errors */
462                         errno = EINTR; /* make read of 0 bytes be silent too */
463                         if (read(STDIN_FILENO, &c, 1) < 1) {
464                                 if (errno == EINTR || errno == EIO)
465                                         exit(EXIT_SUCCESS);
466                                 bb_perror_msg_and_die(bb_msg_read_error);
467                         }
468
469                         /* BREAK. If we have speeds to try,
470                          * return NULL (will switch speeds and return here) */
471                         if (c == '\0' && G.numspeed > 1)
472                                 return NULL;
473
474                         /* Do erase, kill and end-of-line processing */
475                         switch (c) {
476                         case '\r':
477                         case '\n':
478                                 *bp = '\0';
479                                 G.eol = c;
480                                 goto got_logname;
481                         case BS:
482                         case DEL:
483                                 G.termios.c_cc[VERASE] = c;
484                                 if (bp > G.line_buf) {
485                                         full_write(STDOUT_FILENO, "\010 \010", 3);
486                                         bp--;
487                                 }
488                                 break;
489                         case CTL('U'):
490                                 while (bp > G.line_buf) {
491                                         full_write(STDOUT_FILENO, "\010 \010", 3);
492                                         bp--;
493                                 }
494                                 break;
495                         case CTL('D'):
496                                 exit(EXIT_SUCCESS);
497                         default:
498                                 if ((unsigned char)c < ' ') {
499                                         /* ignore garbage characters */
500                                 } else if ((int)(bp - G.line_buf) < sizeof(G.line_buf) - 1) {
501                                         /* echo and store the character */
502                                         full_write(STDOUT_FILENO, &c, 1);
503                                         *bp++ = c;
504                                 }
505                                 break;
506                         }
507                 } /* end of get char loop */
508  got_logname: ;
509         } /* while logname is empty */
510
511         return G.line_buf;
512 }
513
514 int getty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
515 int getty_main(int argc UNUSED_PARAM, char **argv)
516 {
517         int n;
518         pid_t pid;
519         char *logname;
520
521         INIT_G();
522         G.login = _PATH_LOGIN;    /* default login program */
523 #ifdef ISSUE
524         G.issue = ISSUE;          /* default issue file */
525 #endif
526         G.eol = '\r';
527
528         /* Parse command-line arguments */
529         parse_args(argv);
530
531         logmode = LOGMODE_NONE;
532
533         /* Create new session, lose controlling tty, if any */
534         /* docs/ctty.htm says:
535          * "This is allowed only when the current process
536          *  is not a process group leader" - is this a problem? */
537         setsid();
538         /* close stdio, and stray descriptors, just in case */
539         n = xopen(bb_dev_null, O_RDWR);
540         /* dup2(n, 0); - no, we need to handle "getty - 9600" too */
541         xdup2(n, 1);
542         xdup2(n, 2);
543         while (n > 2)
544                 close(n--);
545
546         /* Logging. We want special flavor of error_msg_and_die */
547         die_sleep = 10;
548         msg_eol = "\r\n";
549         /* most likely will internally use fd #3 in CLOEXEC mode: */
550         openlog(applet_name, LOG_PID, LOG_AUTH);
551         logmode = LOGMODE_BOTH;
552
553 #ifdef DEBUGGING
554         dbf = xfopen_for_write(DEBUGTERM);
555         for (n = 1; argv[n]; n++) {
556                 debug(argv[n]);
557                 debug("\n");
558         }
559 #endif
560
561         /* Open the tty as standard input, if it is not "-" */
562         /* If it's not "-" and not taken yet, it will become our ctty */
563         debug("calling open_tty\n");
564         open_tty();
565         ndelay_off(0);
566         debug("duping\n");
567         xdup2(0, 1);
568         xdup2(0, 2);
569
570         /*
571          * The following ioctl will fail if stdin is not a tty, but also when
572          * there is noise on the modem control lines. In the latter case, the
573          * common course of action is (1) fix your cables (2) give the modem more
574          * time to properly reset after hanging up. SunOS users can achieve (2)
575          * by patching the SunOS kernel variable "zsadtrlow" to a larger value;
576          * 5 seconds seems to be a good value.
577          */
578         if (tcgetattr(STDIN_FILENO, &G.termios) < 0)
579                 bb_perror_msg_and_die("tcgetattr");
580
581         pid = getpid();
582 #ifdef __linux__
583 // FIXME: do we need this? Otherwise "-" case seems to be broken...
584         // /* Forcibly make fd 0 our controlling tty, even if another session
585         //  * has it as a ctty. (Another session loses ctty). */
586         // ioctl(STDIN_FILENO, TIOCSCTTY, (void*)1);
587         /* Make ourself a foreground process group within our session */
588         tcsetpgrp(STDIN_FILENO, pid);
589 #endif
590
591         /* Update the utmp file. This tty is ours now! */
592         update_utmp(pid, LOGIN_PROCESS, G.tty, "LOGIN", G.fakehost);
593
594         /* Initialize the termios settings (raw mode, eight-bit, blocking i/o) */
595         debug("calling termios_init\n");
596         termios_init(G.speeds[0]);
597
598         /* Write the modem init string and DON'T flush the buffers */
599         if (option_mask32 & F_INITSTRING) {
600                 debug("writing init string\n");
601                 full_write1_str(G.initstring);
602         }
603
604         /* Optionally detect the baud rate from the modem status message */
605         debug("before autobaud\n");
606         if (option_mask32 & F_PARSE)
607                 auto_baud();
608
609         /* Set the optional timer */
610         alarm(G.timeout); /* if 0, alarm is not set */
611 //BUG: death by signal won't restore termios
612
613         /* Optionally wait for CR or LF before writing /etc/issue */
614         if (option_mask32 & F_WAITCRLF) {
615                 char ch;
616                 debug("waiting for cr-lf\n");
617                 while (safe_read(STDIN_FILENO, &ch, 1) == 1) {
618                         debug("read %x\n", (unsigned char)ch);
619                         if (ch == '\n' || ch == '\r')
620                                 break;
621                 }
622         }
623
624         logname = NULL;
625         if (!(option_mask32 & F_NOPROMPT)) {
626                 /* NB: termios_init already set line speed
627                  * to G.speeds[0] */
628                 int baud_index = 0;
629
630                 while (1) {
631                         /* Read the login name */
632                         debug("reading login name\n");
633                         logname = get_logname();
634                         if (logname)
635                                 break;
636                         /* We are here only if G.numspeed > 1 */
637                         baud_index = (baud_index + 1) % G.numspeed;
638                         cfsetspeed(&G.termios, G.speeds[baud_index]);
639                         set_termios();
640                 }
641         }
642
643         /* Disable timer */
644         alarm(0);
645
646         /* Finalize the termios settings */
647         termios_final();
648
649         /* Now the newline character should be properly written */
650         full_write(STDOUT_FILENO, "\n", 1);
651
652         /* Let the login program take care of password validation */
653         /* We use PATH because we trust that root doesn't set "bad" PATH,
654          * and getty is not suid-root applet */
655         /* With -n, logname == NULL, and login will ask for username instead */
656         BB_EXECLP(G.login, G.login, "--", logname, NULL);
657         bb_error_msg_and_die("can't execute '%s'", G.login);
658 }