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