init,loginutils: termios portability fixes
[oweals/busybox.git] / loginutils / getty.c
1 /* vi: set sw=4 ts=4: */
2 /* agetty.c - another getty program for Linux. By W. Z. Venema 1989
3  * Ported to Linux by Peter Orbaek <poe@daimi.aau.dk>
4  * This program is freely distributable. The entire man-page used to
5  * be here. Now read the real man-page agetty.8 instead.
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  * - enable hardware flow control before displaying /etc/issue
14  *
15  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
16  */
17
18 #include "libbb.h"
19 #include <syslog.h>
20
21 #if ENABLE_FEATURE_UTMP
22 # include <utmp.h> /* LOGIN_PROCESS */
23 #endif
24
25 #ifndef IUCLC
26 # define IUCLC 0
27 #endif
28
29 /*
30  * Some heuristics to find out what environment we are in: if it is not
31  * System V, assume it is SunOS 4.
32  */
33 #ifdef LOGIN_PROCESS                    /* defined in System V utmp.h */
34 #include <sys/utsname.h>
35 #else /* if !sysV style, wtmp/utmp code is off */
36 #undef ENABLE_FEATURE_UTMP
37 #undef ENABLE_FEATURE_WTMP
38 #define ENABLE_FEATURE_UTMP 0
39 #define ENABLE_FEATURE_WTMP 0
40 #endif  /* LOGIN_PROCESS */
41
42 /*
43  * Things you may want to modify.
44  *
45  * You may disagree with the default line-editing etc. characters defined
46  * below. Note, however, that DEL cannot be used for interrupt generation
47  * and for line editing at the same time.
48  */
49
50 /* I doubt there are systems which still need this */
51 #undef HANDLE_ALLCAPS
52 #undef ANCIENT_BS_KILL_CHARS
53
54 #define _PATH_LOGIN "/bin/login"
55
56 /* If ISSUE is not defined, getty will never display the contents of the
57  * /etc/issue file. You will not want to spit out large "issue" files at the
58  * wrong baud rate.
59  */
60 #define ISSUE "/etc/issue"              /* displayed before the login prompt */
61
62 /* Some shorthands for control characters. */
63 #define CTL(x)          ((x) ^ 0100)    /* Assumes ASCII dialect */
64 #define CR              CTL('M')        /* carriage return */
65 #define NL              CTL('J')        /* line feed */
66 #define BS              CTL('H')        /* back space */
67 #define DEL             CTL('?')        /* delete */
68
69 /* Defaults for line-editing etc. characters; you may want to change this. */
70 #define DEF_ERASE       DEL             /* default erase character */
71 #define DEF_INTR        CTL('C')        /* default interrupt character */
72 #define DEF_QUIT        CTL('\\')       /* default quit char */
73 #define DEF_KILL        CTL('U')        /* default kill char */
74 #define DEF_EOF         CTL('D')        /* default EOF char */
75 #define DEF_EOL         '\n'
76 #define DEF_SWITCH      0               /* default switch char */
77
78 /*
79  * When multiple baud rates are specified on the command line, the first one
80  * we will try is the first one specified.
81  */
82 #define MAX_SPEED       10              /* max. nr. of baud rates */
83
84 /* Storage for command-line options. */
85 struct options {
86         int flags;                      /* toggle switches, see below */
87         unsigned timeout;               /* time-out period */
88         const char *login;              /* login program */
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 };
95
96 /* Storage for things detected while the login name was read. */
97 struct chardata {
98         unsigned char erase;    /* erase character */
99         unsigned char kill;     /* kill character */
100         unsigned char eol;      /* end-of-line character */
101         unsigned char parity;   /* what parity did we see */
102         /* (parity & 1): saw odd parity char with 7th bit set */
103         /* (parity & 2): saw even parity char with 7th bit set */
104         /* parity == 0: probably 7-bit, space parity? */
105         /* parity == 1: probably 7-bit, odd parity? */
106         /* parity == 2: probably 7-bit, even parity? */
107         /* parity == 3: definitely 8 bit, no parity! */
108         /* Hmm... with any value of "parity" 8 bit, no parity is possible */
109 #ifdef HANDLE_ALLCAPS
110         unsigned char capslock; /* upper case without lower case */
111 #endif
112 };
113
114
115 /* Initial values for the above. */
116 static const struct chardata init_chardata = {
117         DEF_ERASE,                              /* default erase character */
118         DEF_KILL,                               /* default kill character */
119         13,                                     /* default eol char */
120         0,                                      /* space parity */
121 #ifdef HANDLE_ALLCAPS
122         0,                                      /* no capslock */
123 #endif
124 };
125
126 static const char opt_string[] ALIGN1 = "I:LH:f:hil:mt:wn";
127 #define F_INITSTRING    (1 << 0)        /* -I initstring is set */
128 #define F_LOCAL         (1 << 1)        /* -L force local */
129 #define F_FAKEHOST      (1 << 2)        /* -H fake hostname */
130 #define F_CUSTISSUE     (1 << 3)        /* -f give alternative issue file */
131 #define F_RTSCTS        (1 << 4)        /* -h enable RTS/CTS flow control */
132 #define F_ISSUE         (1 << 5)        /* -i display /etc/issue */
133 #define F_LOGIN         (1 << 6)        /* -l non-default login program */
134 #define F_PARSE         (1 << 7)        /* -m process modem status messages */
135 #define F_TIMEOUT       (1 << 8)        /* -t time out */
136 #define F_WAITCRLF      (1 << 9)        /* -w wait for CR or LF */
137 #define F_NOPROMPT      (1 << 10)       /* -n don't ask for login name */
138
139
140 #define line_buf bb_common_bufsiz1
141
142 /* The following is used for understandable diagnostics. */
143 #ifdef DEBUGGING
144 static FILE *dbf;
145 #define DEBUGTERM "/dev/ttyp0"
146 #define debug(...) do { fprintf(dbf, __VA_ARGS__); fflush(dbf); } while (0)
147 #else
148 #define debug(...) ((void)0)
149 #endif
150
151
152 /* bcode - convert speed string to speed code; return <= 0 on failure */
153 static int bcode(const char *s)
154 {
155         int value = bb_strtou(s, NULL, 10); /* yes, int is intended! */
156         if (value < 0) /* bad terminating char, overflow, etc */
157                 return value;
158         return tty_value_to_baud(value);
159 }
160
161 /* parse_speeds - parse alternate baud rates */
162 static void parse_speeds(struct options *op, char *arg)
163 {
164         char *cp;
165
166         /* NB: at least one iteration is always done */
167         debug("entered parse_speeds\n");
168         while ((cp = strsep(&arg, ",")) != NULL) {
169                 op->speeds[op->numspeed] = bcode(cp);
170                 if (op->speeds[op->numspeed] < 0)
171                         bb_error_msg_and_die("bad speed: %s", cp);
172                 /* note: arg "0" turns into speed B0 */
173                 op->numspeed++;
174                 if (op->numspeed > MAX_SPEED)
175                         bb_error_msg_and_die("too many alternate speeds");
176         }
177         debug("exiting parse_speeds\n");
178 }
179
180 /* parse_args - parse command-line arguments */
181 static void parse_args(char **argv, struct options *op, char **fakehost_p)
182 {
183         char *ts;
184
185         opt_complementary = "-2:t+"; /* at least 2 args; -t N */
186         op->flags = getopt32(argv, opt_string,
187                 &(op->initstring), fakehost_p, &(op->issue),
188                 &(op->login), &op->timeout);
189         argv += optind;
190         if (op->flags & F_INITSTRING) {
191                 const char *p = op->initstring;
192                 char *q;
193
194                 op->initstring = q = xstrdup(p);
195                 /* copy optarg into op->initstring decoding \ddd
196                    octal codes into chars */
197                 while (*p) {
198                         if (*p == '\\') {
199                                 p++;
200                                 *q++ = bb_process_escape_sequence(&p);
201                         } else {
202                                 *q++ = *p++;
203                         }
204                 }
205                 *q = '\0';
206         }
207         op->flags ^= F_ISSUE;           /* invert flag "show /etc/issue" */
208         debug("after getopt\n");
209
210         /* we loosen up a bit and accept both "baudrate tty" and "tty baudrate" */
211         op->tty = argv[0];      /* tty name */
212         ts = argv[1];           /* baud rate(s) */
213         if (isdigit(argv[0][0])) {
214                 /* a number first, assume it's a speed (BSD style) */
215                 op->tty = ts;   /* tty name is in argv[1] */
216                 ts = argv[0];   /* baud rate(s) */
217         }
218         parse_speeds(op, ts);
219
220 // TODO: if applet_name is set to "getty: TTY", bb_error_msg's get simpler!
221 // grep for "%s:"
222
223         if (argv[2])
224                 xsetenv("TERM", argv[2]);
225
226         debug("exiting parse_args\n");
227 }
228
229 /* open_tty - set up tty as standard { input, output, error } */
230 static void open_tty(const char *tty)
231 {
232         /* Set up new standard input, unless we are given an already opened port. */
233         if (NOT_LONE_DASH(tty)) {
234 //              struct stat st;
235 //              int cur_dir_fd;
236 //              int fd;
237
238                 /* Sanity checks... */
239 //              cur_dir_fd = xopen(".", O_DIRECTORY | O_NONBLOCK);
240 //              xchdir("/dev");
241 //              xstat(tty, &st);
242 //              if (!S_ISCHR(st.st_mode))
243 //                      bb_error_msg_and_die("%s: not a character device", tty);
244
245                 if (tty[0] != '/')
246                         tty = xasprintf("/dev/%s", tty); /* will leak it */
247
248                 /* Open the tty as standard input. */
249                 debug("open(2)\n");
250                 close(0);
251                 /*fd =*/ xopen(tty, O_RDWR | O_NONBLOCK); /* uses fd 0 */
252
253 //              /* Restore current directory */
254 //              fchdir(cur_dir_fd);
255
256                 /* Open the tty as standard input, continued */
257 //              xmove_fd(fd, 0);
258 //              /* fd is >= cur_dir_fd, and cur_dir_fd gets closed too here: */
259 //              while (fd > 2)
260 //                      close(fd--);
261
262                 /* Set proper protections and ownership. */
263                 fchown(0, 0, 0);        /* 0:0 */
264                 fchmod(0, 0620);        /* crw--w---- */
265         } else {
266                 /*
267                  * Standard input should already be connected to an open port. Make
268                  * sure it is open for read/write.
269                  */
270                 if ((fcntl(0, F_GETFL) & O_RDWR) != O_RDWR)
271                         bb_error_msg_and_die("stdin is not open for read/write");
272         }
273 }
274
275 /* termios_init - initialize termios settings */
276 static void termios_init(struct termios *tp, int speed, struct options *op)
277 {
278         speed_t ispeed, ospeed;
279         /*
280          * Initial termios settings: 8-bit characters, raw-mode, blocking i/o.
281          * Special characters are set after we have read the login name; all
282          * reads will be done in raw mode anyway. Errors will be dealt with
283          * later on.
284          */
285         /* flush input and output queues, important for modems! */
286         tcflush(0, TCIOFLUSH);
287         ispeed = ospeed = speed;
288         if (speed == B0) {
289                 /* Speed was specified as "0" on command line.
290                  * Just leave it unchanged */
291                 ispeed = cfgetispeed(tp);
292                 ospeed = cfgetospeed(tp);
293         }
294         tp->c_cflag = CS8 | HUPCL | CREAD;
295         if (op->flags & F_LOCAL)
296                 tp->c_cflag |= CLOCAL;
297         cfsetispeed(tp, ispeed);
298         cfsetospeed(tp, ospeed);
299
300         tp->c_iflag = tp->c_lflag = 0;
301         tp->c_oflag = OPOST | ONLCR;
302         tp->c_cc[VMIN] = 1;
303         tp->c_cc[VTIME] = 0;
304 #ifdef __linux__
305         tp->c_line = 0;
306 #endif
307
308         /* Optionally enable hardware flow control */
309 #ifdef CRTSCTS
310         if (op->flags & F_RTSCTS)
311                 tp->c_cflag |= CRTSCTS;
312 #endif
313
314         tcsetattr_stdin_TCSANOW(tp);
315
316         debug("term_io 2\n");
317 }
318
319 /* auto_baud - extract baud rate from modem status message */
320 static void auto_baud(char *buf, unsigned size_buf, struct termios *tp)
321 {
322         int speed;
323         int vmin;
324         unsigned iflag;
325         char *bp;
326         int nread;
327
328         /*
329          * This works only if the modem produces its status code AFTER raising
330          * the DCD line, and if the computer is fast enough to set the proper
331          * baud rate before the message has gone by. We expect a message of the
332          * following format:
333          *
334          * <junk><number><junk>
335          *
336          * The number is interpreted as the baud rate of the incoming call. If the
337          * modem does not tell us the baud rate within one second, we will keep
338          * using the current baud rate. It is advisable to enable BREAK
339          * processing (comma-separated list of baud rates) if the processing of
340          * modem status messages is enabled.
341          */
342
343         /*
344          * Use 7-bit characters, don't block if input queue is empty. Errors will
345          * be dealt with later on.
346          */
347         iflag = tp->c_iflag;
348         tp->c_iflag |= ISTRIP;          /* enable 8th-bit stripping */
349         vmin = tp->c_cc[VMIN];
350         tp->c_cc[VMIN] = 0;             /* don't block if queue empty */
351         tcsetattr_stdin_TCSANOW(tp);
352
353         /*
354          * Wait for a while, then read everything the modem has said so far and
355          * try to extract the speed of the dial-in call.
356          */
357         sleep(1);
358         nread = safe_read(STDIN_FILENO, buf, size_buf - 1);
359         if (nread > 0) {
360                 buf[nread] = '\0';
361                 for (bp = buf; bp < buf + nread; bp++) {
362                         if (isdigit(*bp)) {
363                                 speed = bcode(bp);
364                                 if (speed > 0)
365                                         cfsetspeed(tp, speed);
366                                 break;
367                         }
368                 }
369         }
370
371         /* Restore terminal settings. Errors will be dealt with later on. */
372         tp->c_iflag = iflag;
373         tp->c_cc[VMIN] = vmin;
374         tcsetattr_stdin_TCSANOW(tp);
375 }
376
377 /* do_prompt - show login prompt, optionally preceded by /etc/issue contents */
378 static void do_prompt(struct options *op)
379 {
380 #ifdef ISSUE
381         print_login_issue(op->issue, op->tty);
382 #endif
383         print_login_prompt();
384 }
385
386 #ifdef HANDLE_ALLCAPS
387 /* all_is_upcase - string contains upper case without lower case */
388 /* returns 1 if true, 0 if false */
389 static int all_is_upcase(const char *s)
390 {
391         while (*s)
392                 if (islower(*s++))
393                         return 0;
394         return 1;
395 }
396 #endif
397
398 /* get_logname - get user name, establish parity, speed, erase, kill, eol;
399  * return NULL on BREAK, logname on success */
400 static char *get_logname(char *logname, unsigned size_logname,
401                 struct options *op, struct chardata *cp)
402 {
403         char *bp;
404         char c;                         /* input character, full eight bits */
405         char ascval;                    /* low 7 bits of input character */
406         int bits;                       /* # of "1" bits per character */
407         int mask;                       /* mask with 1 bit up */
408         static const char erase[][3] = {/* backspace-space-backspace */
409                 "\010\040\010",                 /* space parity */
410                 "\010\040\010",                 /* odd parity */
411                 "\210\240\210",                 /* even parity */
412                 "\010\040\010",                 /* 8 bit no parity */
413         };
414
415         /* NB: *cp is pre-initialized with init_chardata */
416
417         /* Flush pending input (esp. after parsing or switching the baud rate). */
418         sleep(1);
419         tcflush(0, TCIOFLUSH);
420
421         /* Prompt for and read a login name. */
422         logname[0] = '\0';
423         while (!logname[0]) {
424                 /* Write issue file and prompt, with "parity" bit == 0. */
425                 do_prompt(op);
426
427                 /* Read name, watch for break, parity, erase, kill, end-of-line. */
428                 bp = logname;
429                 cp->eol = '\0';
430                 while (cp->eol == '\0') {
431
432                         /* Do not report trivial EINTR/EIO errors. */
433                         errno = EINTR; /* make read of 0 bytes be silent too */
434                         if (read(STDIN_FILENO, &c, 1) < 1) {
435                                 if (errno == EINTR || errno == EIO)
436                                         exit(EXIT_SUCCESS);
437                                 bb_perror_msg_and_die("%s: read", op->tty);
438                         }
439
440                         /* BREAK. If we have speeds to try,
441                          * return NULL (will switch speeds and return here) */
442                         if (c == '\0' && op->numspeed > 1)
443                                 return NULL;
444
445                         /* Do parity bit handling. */
446                         if (!(op->flags & F_LOCAL) && (c & 0x80)) {       /* "parity" bit on? */
447                                 bits = 1;
448                                 mask = 1;
449                                 while (mask & 0x7f) {
450                                         if (mask & c)
451                                                 bits++; /* count "1" bits */
452                                         mask <<= 1;
453                                 }
454                                 /* ... |= 2 - even, 1 - odd */
455                                 cp->parity |= 2 - (bits & 1);
456                         }
457
458                         /* Do erase, kill and end-of-line processing. */
459                         ascval = c & 0x7f;
460                         switch (ascval) {
461                         case CR:
462                         case NL:
463                                 *bp = '\0';             /* terminate logname */
464                                 cp->eol = ascval;       /* set end-of-line char */
465                                 break;
466                         case BS:
467                         case DEL:
468 #ifdef ANCIENT_BS_KILL_CHARS
469                         case '#':
470 #endif
471                                 cp->erase = ascval;     /* set erase character */
472                                 if (bp > logname) {
473                                         full_write(STDOUT_FILENO, erase[cp->parity], 3);
474                                         bp--;
475                                 }
476                                 break;
477                         case CTL('U'):
478 #ifdef ANCIENT_BS_KILL_CHARS
479                         case '@':
480 #endif
481                                 cp->kill = ascval;      /* set kill character */
482                                 while (bp > logname) {
483                                         full_write(STDOUT_FILENO, erase[cp->parity], 3);
484                                         bp--;
485                                 }
486                                 break;
487                         case CTL('D'):
488                                 exit(EXIT_SUCCESS);
489                         default:
490                                 if (ascval < ' ') {
491                                         /* ignore garbage characters */
492                                 } else if ((int)(bp - logname) >= size_logname - 1) {
493                                         bb_error_msg_and_die("%s: input overrun", op->tty);
494                                 } else {
495                                         full_write(STDOUT_FILENO, &c, 1); /* echo the character */
496                                         *bp++ = ascval; /* and store it */
497                                 }
498                                 break;
499                         }
500                 }
501         }
502         /* Handle names with upper case and no lower case. */
503
504 #ifdef HANDLE_ALLCAPS
505         cp->capslock = all_is_upcase(logname);
506         if (cp->capslock) {
507                 for (bp = logname; *bp; bp++)
508                         if (isupper(*bp))
509                                 *bp = tolower(*bp);     /* map name to lower case */
510         }
511 #endif
512         return logname;
513 }
514
515 /* termios_final - set the final tty mode bits */
516 static void termios_final(struct options *op, struct termios *tp, struct chardata *cp)
517 {
518         /* General terminal-independent stuff. */
519         tp->c_iflag |= IXON | IXOFF;    /* 2-way flow control */
520         tp->c_lflag |= ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHOKE;
521         /* no longer| ECHOCTL | ECHOPRT */
522         tp->c_oflag |= OPOST;
523         /* tp->c_cflag = 0; */
524         tp->c_cc[VINTR] = DEF_INTR;     /* default interrupt */
525         tp->c_cc[VQUIT] = DEF_QUIT;     /* default quit */
526         tp->c_cc[VEOF] = DEF_EOF;       /* default EOF character */
527         tp->c_cc[VEOL] = DEF_EOL;
528 #ifdef VSWTC
529         tp->c_cc[VSWTC] = DEF_SWITCH;   /* default switch character */
530 #endif
531
532         /* Account for special characters seen in input. */
533         if (cp->eol == CR) {
534                 tp->c_iflag |= ICRNL;   /* map CR in input to NL */
535                 tp->c_oflag |= ONLCR;   /* map NL in output to CR-NL */
536         }
537         tp->c_cc[VERASE] = cp->erase;   /* set erase character */
538         tp->c_cc[VKILL] = cp->kill;     /* set kill character */
539
540         /* Account for the presence or absence of parity bits in input. */
541         switch (cp->parity) {
542         case 0:                                 /* space (always 0) parity */
543 // I bet most people go here - they use only 7-bit chars in usernames....
544                 break;
545         case 1:                                 /* odd parity */
546                 tp->c_cflag |= PARODD;
547                 /* FALLTHROUGH */
548         case 2:                                 /* even parity */
549                 tp->c_cflag |= PARENB;
550                 tp->c_iflag |= INPCK | ISTRIP;
551                 /* FALLTHROUGH */
552         case (1 | 2):                           /* no parity bit */
553                 tp->c_cflag &= ~CSIZE;
554                 tp->c_cflag |= CS7;
555 // FIXME: wtf? case 3: we saw both even and odd 8-bit bytes -
556 // it's probably some umlauts etc, but definitely NOT 7-bit!!!
557 // Entire parity detection madness here just begs for deletion...
558                 break;
559         }
560
561         /* Account for upper case without lower case. */
562 #ifdef HANDLE_ALLCAPS
563         if (cp->capslock) {
564                 tp->c_iflag |= IUCLC;
565                 tp->c_lflag |= XCASE;
566                 tp->c_oflag |= OLCUC;
567         }
568 #endif
569         /* Optionally enable hardware flow control */
570 #ifdef CRTSCTS
571         if (op->flags & F_RTSCTS)
572                 tp->c_cflag |= CRTSCTS;
573 #endif
574
575         /* Finally, make the new settings effective */
576         if (tcsetattr_stdin_TCSANOW(tp) < 0)
577                 bb_perror_msg_and_die("%s: tcsetattr", op->tty);
578 }
579
580 int getty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
581 int getty_main(int argc UNUSED_PARAM, char **argv)
582 {
583         int n;
584         pid_t pid;
585         char *fakehost = NULL;          /* Fake hostname for ut_host */
586         char *logname;                  /* login name, given to /bin/login */
587         /* Merging these into "struct local" may _seem_ to reduce
588          * parameter passing, but today's gcc will inline
589          * statics which are called once anyway, so don't do that */
590         struct chardata chardata;       /* set by get_logname() */
591         struct termios termios;         /* terminal mode bits */
592         struct options options;
593
594         chardata = init_chardata;
595
596         memset(&options, 0, sizeof(options));
597         options.login = _PATH_LOGIN;    /* default login program */
598         options.tty = "tty1";           /* default tty line */
599         options.initstring = "";        /* modem init string */
600 #ifdef ISSUE
601         options.issue = ISSUE;          /* default issue file */
602 #endif
603
604         /* Parse command-line arguments. */
605         parse_args(argv, &options, &fakehost);
606
607         logmode = LOGMODE_NONE;
608
609         /* Create new session, lose controlling tty, if any */
610         /* docs/ctty.htm says:
611          * "This is allowed only when the current process
612          *  is not a process group leader" - is this a problem? */
613         setsid();
614         /* close stdio, and stray descriptors, just in case */
615         n = xopen(bb_dev_null, O_RDWR);
616         /* dup2(n, 0); - no, we need to handle "getty - 9600" too */
617         xdup2(n, 1);
618         xdup2(n, 2);
619         while (n > 2)
620                 close(n--);
621
622         /* Logging. We want special flavor of error_msg_and_die */
623         die_sleep = 10;
624         msg_eol = "\r\n";
625         /* most likely will internally use fd #3 in CLOEXEC mode: */
626         openlog(applet_name, LOG_PID, LOG_AUTH);
627         logmode = LOGMODE_BOTH;
628
629 #ifdef DEBUGGING
630         dbf = xfopen_for_write(DEBUGTERM);
631         for (n = 1; argv[n]; n++) {
632                 debug(argv[n]);
633                 debug("\n");
634         }
635 #endif
636
637         /* Open the tty as standard input, if it is not "-" */
638         /* If it's not "-" and not taken yet, it will become our ctty */
639         debug("calling open_tty\n");
640         open_tty(options.tty);
641         ndelay_off(0);
642         debug("duping\n");
643         xdup2(0, 1);
644         xdup2(0, 2);
645
646         /*
647          * The following ioctl will fail if stdin is not a tty, but also when
648          * there is noise on the modem control lines. In the latter case, the
649          * common course of action is (1) fix your cables (2) give the modem more
650          * time to properly reset after hanging up. SunOS users can achieve (2)
651          * by patching the SunOS kernel variable "zsadtrlow" to a larger value;
652          * 5 seconds seems to be a good value.
653          */
654         if (tcgetattr(0, &termios) < 0)
655                 bb_perror_msg_and_die("%s: tcgetattr", options.tty);
656
657         pid = getpid();
658 #ifdef __linux__
659 // FIXME: do we need this? Otherwise "-" case seems to be broken...
660         // /* Forcibly make fd 0 our controlling tty, even if another session
661         //  * has it as a ctty. (Another session loses ctty). */
662         // ioctl(0, TIOCSCTTY, (void*)1);
663         /* Make ourself a foreground process group within our session */
664         tcsetpgrp(0, pid);
665 #endif
666
667         /* Update the utmp file. This tty is ours now! */
668         update_utmp(pid, LOGIN_PROCESS, options.tty, "LOGIN", fakehost);
669
670         /* Initialize the termios settings (raw mode, eight-bit, blocking i/o). */
671         debug("calling termios_init\n");
672         termios_init(&termios, options.speeds[0], &options);
673
674         /* Write the modem init string and DON'T flush the buffers */
675         if (options.flags & F_INITSTRING) {
676                 debug("writing init string\n");
677                 full_write1_str(options.initstring);
678         }
679
680         /* Optionally detect the baud rate from the modem status message */
681         debug("before autobaud\n");
682         if (options.flags & F_PARSE)
683                 auto_baud(line_buf, sizeof(line_buf), &termios);
684
685         /* Set the optional timer */
686         alarm(options.timeout); /* if 0, alarm is not set */
687
688         /* Optionally wait for CR or LF before writing /etc/issue */
689         if (options.flags & F_WAITCRLF) {
690                 char ch;
691
692                 debug("waiting for cr-lf\n");
693                 while (safe_read(STDIN_FILENO, &ch, 1) == 1) {
694                         debug("read %x\n", (unsigned char)ch);
695                         ch &= 0x7f;                     /* strip "parity bit" */
696                         if (ch == '\n' || ch == '\r')
697                                 break;
698                 }
699         }
700
701         logname = NULL;
702         if (!(options.flags & F_NOPROMPT)) {
703                 /* NB:termios_init already set line speed
704                  * to options.speeds[0] */
705                 int baud_index = 0;
706
707                 while (1) {
708                         /* Read the login name. */
709                         debug("reading login name\n");
710                         logname = get_logname(line_buf, sizeof(line_buf),
711                                         &options, &chardata);
712                         if (logname)
713                                 break;
714                         /* we are here only if options.numspeed > 1 */
715                         baud_index = (baud_index + 1) % options.numspeed;
716                         cfsetispeed(&termios, options.speeds[baud_index]);
717                         cfsetospeed(&termios, options.speeds[baud_index]);
718                         tcsetattr_stdin_TCSANOW(&termios);
719                 }
720         }
721
722         /* Disable timer. */
723         alarm(0);
724
725         /* Finalize the termios settings. */
726         termios_final(&options, &termios, &chardata);
727
728         /* Now the newline character should be properly written. */
729         full_write(STDOUT_FILENO, "\n", 1);
730
731         /* Let the login program take care of password validation. */
732         /* We use PATH because we trust that root doesn't set "bad" PATH,
733          * and getty is not suid-root applet. */
734         /* With -n, logname == NULL, and login will ask for username instead */
735         BB_EXECLP(options.login, options.login, "--", logname, NULL);
736         bb_error_msg_and_die("%s: can't exec %s", options.tty, options.login);
737 }