Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Based on agetty - another getty program for Linux. By W. Z. Venema 1989 |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 4 | * Ported to Linux by Peter Orbaek <poe@daimi.aau.dk> |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 5 | * This program is freely distributable. |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 6 | * |
| 7 | * option added by Eric Rasmussen <ear@usfirst.org> - 12/28/95 |
| 8 | * |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 9 | * 1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org> |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 10 | * - Added Native Language Support |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 11 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 12 | * 1999-05-05 Thorsten Kranzkowski <dl8bcu@gmx.net> |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 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. |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 21 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 22 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 23 | */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 24 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 25 | #include "libbb.h" |
Denis Vlasenko | f702652 | 2006-09-19 13:50:55 +0000 | [diff] [blame] | 26 | #include <syslog.h> |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 27 | #ifndef IUCLC |
| 28 | # define IUCLC 0 |
| 29 | #endif |
| 30 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 31 | #ifndef LOGIN_PROCESS |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 32 | # undef ENABLE_FEATURE_UTMP |
| 33 | # undef ENABLE_FEATURE_WTMP |
| 34 | # define ENABLE_FEATURE_UTMP 0 |
| 35 | # define ENABLE_FEATURE_WTMP 0 |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 36 | #endif |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 37 | |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 38 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 39 | /* The following is used for understandable diagnostics */ |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 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 | |
Denis Vlasenko | 6476cc1 | 2006-11-07 01:52:10 +0000 | [diff] [blame] | 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 | */ |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 56 | #undef _PATH_LOGIN |
Denis Vlasenko | 6476cc1 | 2006-11-07 01:52:10 +0000 | [diff] [blame] | 57 | #define _PATH_LOGIN "/bin/login" |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 58 | |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 59 | /* Displayed before the login prompt. |
| 60 | * If ISSUE is not defined, getty will never display the contents of the |
Denis Vlasenko | 6476cc1 | 2006-11-07 01:52:10 +0000 | [diff] [blame] | 61 | * /etc/issue file. You will not want to spit out large "issue" files at the |
| 62 | * wrong baud rate. |
| 63 | */ |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 64 | #define ISSUE "/etc/issue" |
Eric Andersen | 77804ce | 2005-07-27 06:05:38 +0000 | [diff] [blame] | 65 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 66 | /* Some shorthands for control characters */ |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 67 | #define CTL(x) ((x) ^ 0100) /* Assumes ASCII dialect */ |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 68 | #define BS CTL('H') /* back space */ |
| 69 | #define DEL CTL('?') /* delete */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 70 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 71 | /* Defaults for line-editing etc. characters; you may want to change this */ |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 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' |
Denys Vlasenko | 7073964 | 2011-01-24 18:17:19 +0100 | [diff] [blame] | 77 | #define DEF_SWITCH 0 /* default switch char (none) */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 6476cc1 | 2006-11-07 01:52:10 +0000 | [diff] [blame] | 79 | /* |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 80 | * When multiple baud rates are specified on the command line, |
| 81 | * the first one we will try is the first one specified. |
Denis Vlasenko | 6476cc1 | 2006-11-07 01:52:10 +0000 | [diff] [blame] | 82 | */ |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 83 | #define MAX_SPEED 10 /* max. nr. of baud rates */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 84 | |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 85 | struct globals { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 86 | unsigned timeout; /* time-out period */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 87 | const char *login; /* login program */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 88 | const char *fakehost; |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 89 | const char *tty; /* name of tty */ |
| 90 | const char *initstring; /* modem init string */ |
| 91 | const char *issue; /* alternative issue file */ |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 92 | int numspeed; /* number of baud rates to try */ |
| 93 | int speeds[MAX_SPEED]; /* baud rates to be tried */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 94 | unsigned char eol; /* end-of-line char seen (CR or NL) */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 95 | struct termios termios; /* terminal mode bits */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 96 | char line_buf[128]; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 97 | }; |
| 98 | |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 99 | #define G (*ptr_to_globals) |
| 100 | #define INIT_G() do { \ |
| 101 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 102 | } while (0) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 103 | |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 104 | //usage:#define getty_trivial_usage |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 105 | //usage: "[OPTIONS] BAUD_RATE[,BAUD_RATE]... TTY [TERMTYPE]" |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 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:" |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 109 | //usage: "\n -h Enable hardware RTS/CTS flow control" |
| 110 | //usage: "\n -L Set CLOCAL (ignore Carrier Detect state)" |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 111 | //usage: "\n -m Get baud rate from modem's CONNECT status message" |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 112 | //usage: "\n -n Don't prompt for login name" |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 113 | //usage: "\n -w Wait for CR or LF before sending /etc/issue" |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 114 | //usage: "\n -i Don't display /etc/issue" |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 115 | //usage: "\n -f ISSUE_FILE Display ISSUE_FILE instead of /etc/issue" |
| 116 | //usage: "\n -l LOGIN Invoke LOGIN instead of /bin/login" |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 117 | //usage: "\n -t SEC Terminate after SEC if no login name is read" |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 118 | //usage: "\n -I INITSTR Send INITSTR before anything else" |
| 119 | //usage: "\n -H HOST Log HOST into the utmp file as the hostname" |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 120 | //usage: "\n" |
| 121 | //usage: "\nBAUD_RATE of 0 leaves it unchanged" |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 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 */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 135 | |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 136 | |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 137 | /* convert speed string to speed code; return <= 0 on failure */ |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 138 | static int bcode(const char *s) |
| 139 | { |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 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); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 146 | /* parse alternate baud rates */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 147 | static void parse_speeds(char *arg) |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 148 | { |
| 149 | char *cp; |
| 150 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 151 | /* NB: at least one iteration is always done */ |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 152 | debug("entered parse_speeds\n"); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 153 | while ((cp = strsep(&arg, ",")) != NULL) { |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 154 | G.speeds[G.numspeed] = bcode(cp); |
| 155 | if (G.speeds[G.numspeed] < 0) |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 156 | bb_error_msg_and_die("bad speed: %s", cp); |
Denis Vlasenko | 32a385f | 2009-04-12 13:05:40 +0000 | [diff] [blame] | 157 | /* note: arg "0" turns into speed B0 */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 158 | G.numspeed++; |
| 159 | if (G.numspeed > MAX_SPEED) |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 160 | bb_error_msg_and_die("too many alternate speeds"); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 161 | } |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 162 | debug("exiting parse_speeds\n"); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 165 | /* parse command-line arguments */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 166 | static void parse_args(char **argv) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 167 | { |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 168 | char *ts; |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 169 | int flags; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 170 | |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 171 | opt_complementary = "-2:t+"; /* at least 2 args; -t N */ |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 172 | flags = getopt32(argv, opt_string, |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 173 | &G.initstring, &G.fakehost, &G.issue, |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 174 | &G.login, &G.timeout |
| 175 | ); |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 176 | if (flags & F_INITSTRING) { |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 177 | G.initstring = xstrdup(G.initstring); |
Denys Vlasenko | 5360059 | 2010-10-23 21:06:06 +0200 | [diff] [blame] | 178 | /* decode \ddd octal codes into chars */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 179 | strcpy_and_process_escape_sequences((char*)G.initstring, G.initstring); |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 180 | } |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 181 | argv += optind; |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 182 | debug("after getopt\n"); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 183 | |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 184 | /* We loosen up a bit and accept both "baudrate tty" and "tty baudrate" */ |
| 185 | G.tty = argv[0]; /* tty name */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 186 | ts = argv[1]; /* baud rate(s) */ |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 187 | if (isdigit(argv[0][0])) { |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 188 | /* A number first, assume it's a speed (BSD style) */ |
| 189 | G.tty = ts; /* tty name is in argv[1] */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 190 | ts = argv[0]; /* baud rate(s) */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 191 | } |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 192 | parse_speeds(ts); |
| 193 | applet_name = xasprintf("getty: %s", G.tty); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 194 | |
Denis Vlasenko | 50e77e1 | 2006-10-23 02:11:22 +0000 | [diff] [blame] | 195 | if (argv[2]) |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 196 | xsetenv("TERM", argv[2]); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 197 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 198 | debug("exiting parse_args\n"); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 201 | /* set up tty as standard input, output, error */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 202 | static void open_tty(void) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 203 | { |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 204 | /* Set up new standard input, unless we are given an already opened port */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 205 | if (NOT_LONE_DASH(G.tty)) { |
| 206 | if (G.tty[0] != '/') |
| 207 | G.tty = xasprintf("/dev/%s", G.tty); /* will leak it */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 208 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 209 | /* Open the tty as standard input */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 210 | debug("open(2)\n"); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 211 | close(0); |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 212 | xopen(G.tty, O_RDWR | O_NONBLOCK); /* uses fd 0 */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 213 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 214 | /* Set proper protections and ownership */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 215 | fchown(0, 0, 0); /* 0:0 */ |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 216 | fchmod(0, 0620); /* crw--w---- */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 217 | } else { |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 218 | /* |
| 219 | * Standard input should already be connected to an open port. Make |
| 220 | * sure it is open for read/write. |
| 221 | */ |
Denys Vlasenko | 006416e | 2011-01-22 17:29:53 +0100 | [diff] [blame] | 222 | if ((fcntl(0, F_GETFL) & (O_RDWR|O_RDONLY|O_WRONLY)) != O_RDWR) |
Denis Vlasenko | e06bed3 | 2007-01-27 22:21:12 +0000 | [diff] [blame] | 223 | bb_error_msg_and_die("stdin is not open for read/write"); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 224 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 227 | static void set_termios(void) |
| 228 | { |
| 229 | if (tcsetattr_stdin_TCSANOW(&G.termios) < 0) |
| 230 | bb_perror_msg_and_die("tcsetattr"); |
| 231 | } |
| 232 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 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 | */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 240 | static void termios_init(int speed) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 241 | { |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 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. |
Denys Vlasenko | dc6cd12 | 2011-01-24 00:28:43 +0100 | [diff] [blame] | 247 | */ |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 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! */ |
Denys Vlasenko | dc6cd12 | 2011-01-24 00:28:43 +0100 | [diff] [blame] | 255 | tcflush(STDIN_FILENO, TCIOFLUSH); |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 256 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 257 | /* Set speed if it wasn't specified as "0" on command line */ |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 258 | if (speed != B0) |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 259 | cfsetspeed(&G.termios, speed); |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 260 | |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 261 | /* Initial termios settings: 8-bit characters, raw-mode, blocking i/o. |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 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 |
Denis Vlasenko | 4e70bf4 | 2006-10-23 10:17:34 +0000 | [diff] [blame] | 264 | * later on. |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 265 | */ |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 266 | /* 8 bits; hang up (drop DTR) on last close; enable receive */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 267 | G.termios.c_cflag = CS8 | HUPCL | CREAD; |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 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 | */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 273 | G.termios.c_cflag |= CLOCAL; |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 274 | } |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 275 | #ifdef CRTSCTS |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 276 | if (option_mask32 & F_RTSCTS) |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 277 | G.termios.c_cflag |= CRTSCTS; /* flow control using RTS/CTS pins */ |
| 278 | #endif |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 279 | /* Other bits in c_cflag: |
| 280 | * CSTOPB 2 stop bits (1 otherwise) |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 281 | * PARENB Enable parity bit (both on input and output) |
| 282 | * PARODD Odd parity (else even) |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 283 | */ |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 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; |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 288 | |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 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; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 293 | #endif |
| 294 | |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 295 | set_termios(); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 296 | |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 297 | debug("term_io 2\n"); |
| 298 | } |
| 299 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 300 | static void termios_final(void) |
| 301 | { |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 302 | /* software flow control on output (stop sending if XOFF is recvd); |
| 303 | * and on input (send XOFF when buffer is full) |
| 304 | */ |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 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 | } |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 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 |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 323 | * IUTF8 Appears to affect tty's idea of char widths, |
| 324 | * observed to improve backspacing through Unicode chars |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 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 | */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 334 | G.termios.c_lflag |= ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHOKE; |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 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 |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 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] |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 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] |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 345 | * FLUSHO Output being flushed (c_cc[VDISCARD] is in effect) |
| 346 | * PENDIN Retype pending input at next read or input char |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 347 | * (c_cc[VREPRINT] is being processed) |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 348 | * TOSTOP Send SIGTTOU for background output |
| 349 | * (why "stty sane" unsets this bit?) |
| 350 | */ |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 351 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 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 |
Denys Vlasenko | 7073964 | 2011-01-24 18:17:19 +0100 | [diff] [blame] | 359 | #ifdef VSWTCH |
| 360 | G.termios.c_cc[VSWTCH] = DEF_SWITCH; |
| 361 | #endif |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 362 | G.termios.c_cc[VKILL] = DEF_KILL; |
Denys Vlasenko | 3ff9be3 | 2011-01-26 11:28:43 +0100 | [diff] [blame] | 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 | */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 371 | |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 372 | set_termios(); |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 373 | } |
| 374 | |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 375 | /* extract baud rate from modem status message */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 376 | static void auto_baud(void) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 377 | { |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 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: |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 385 | * |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 386 | * <junk><number><junk> |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 387 | * |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 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 | |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 395 | G.termios.c_cc[VMIN] = 0; /* don't block reads (min read is 0 chars) */ |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 396 | set_termios(); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 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 | */ |
Denis Vlasenko | 50e77e1 | 2006-10-23 02:11:22 +0000 | [diff] [blame] | 402 | sleep(1); |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 403 | nread = safe_read(STDIN_FILENO, G.line_buf, sizeof(G.line_buf) - 1); |
Denis Vlasenko | dce3fde | 2006-10-23 02:10:45 +0000 | [diff] [blame] | 404 | if (nread > 0) { |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 405 | int speed; |
| 406 | char *bp; |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 407 | G.line_buf[nread] = '\0'; |
| 408 | for (bp = G.line_buf; bp < G.line_buf + nread; bp++) { |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 409 | if (isdigit(*bp)) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 410 | speed = bcode(bp); |
Jeremie Koenig | f812eac | 2010-05-27 15:37:32 +0200 | [diff] [blame] | 411 | if (speed > 0) |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 412 | cfsetspeed(&G.termios, speed); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 413 | break; |
| 414 | } |
| 415 | } |
| 416 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 417 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 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 */ |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 420 | set_termios(); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 421 | } |
| 422 | |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 423 | /* get user name, establish parity, speed, erase, kill, eol; |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 424 | * return NULL on BREAK, logname on success |
| 425 | */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 426 | static char *get_logname(void) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 427 | { |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 428 | char *bp; |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 429 | char c; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 430 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 431 | /* Flush pending input (esp. after parsing or switching the baud rate) */ |
Denys Vlasenko | dc6cd12 | 2011-01-24 00:28:43 +0100 | [diff] [blame] | 432 | usleep(100*1000); /* 0.1 sec */ |
Denys Vlasenko | 1360918 | 2011-01-24 23:45:22 +0100 | [diff] [blame] | 433 | tcflush(STDIN_FILENO, TCIFLUSH); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 434 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 435 | /* Prompt for and read a login name */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 436 | G.line_buf[0] = '\0'; |
| 437 | while (!G.line_buf[0]) { |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 438 | /* Write issue file and prompt */ |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 439 | #ifdef ISSUE |
| 440 | if (!(option_mask32 & F_NOISSUE)) |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 441 | print_login_issue(G.issue, G.tty); |
Denys Vlasenko | 1f08404 | 2011-01-24 00:16:50 +0100 | [diff] [blame] | 442 | #endif |
| 443 | print_login_prompt(); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 444 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 445 | /* Read name, watch for break, parity, erase, kill, end-of-line */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 446 | bp = G.line_buf; |
| 447 | G.eol = '\0'; |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 448 | while (1) { |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 449 | /* Do not report trivial EINTR/EIO errors */ |
Denys Vlasenko | 765b0ee | 2010-05-22 21:17:46 +0200 | [diff] [blame] | 450 | errno = EINTR; /* make read of 0 bytes be silent too */ |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 451 | if (read(STDIN_FILENO, &c, 1) < 1) { |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 452 | if (errno == EINTR || errno == EIO) |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 453 | exit(EXIT_SUCCESS); |
Denys Vlasenko | 9dc0412 | 2010-09-01 11:31:43 +0200 | [diff] [blame] | 454 | bb_perror_msg_and_die(bb_msg_read_error); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 455 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 456 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 457 | /* BREAK. If we have speeds to try, |
| 458 | * return NULL (will switch speeds and return here) */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 459 | if (c == '\0' && G.numspeed > 1) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 460 | return NULL; |
| 461 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 462 | /* Do erase, kill and end-of-line processing */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 463 | switch (c) { |
Denys Vlasenko | 7073964 | 2011-01-24 18:17:19 +0100 | [diff] [blame] | 464 | case '\r': |
| 465 | case '\n': |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 466 | *bp = '\0'; |
| 467 | G.eol = c; |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 468 | goto got_logname; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 469 | case BS: |
| 470 | case DEL: |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 471 | G.termios.c_cc[VERASE] = c; |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 472 | if (bp > G.line_buf) { |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 473 | full_write(STDOUT_FILENO, "\010 \010", 3); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 474 | bp--; |
| 475 | } |
| 476 | break; |
| 477 | case CTL('U'): |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 478 | while (bp > G.line_buf) { |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 479 | full_write(STDOUT_FILENO, "\010 \010", 3); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 480 | bp--; |
| 481 | } |
| 482 | break; |
| 483 | case CTL('D'): |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 484 | exit(EXIT_SUCCESS); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 485 | default: |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 486 | if ((unsigned char)c < ' ') { |
Denis Vlasenko | 703aa13 | 2006-10-23 22:43:02 +0000 | [diff] [blame] | 487 | /* ignore garbage characters */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 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; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 492 | } |
| 493 | break; |
| 494 | } |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 495 | } /* end of get char loop */ |
| 496 | got_logname: ; |
| 497 | } /* while logname is empty */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 498 | |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 499 | return G.line_buf; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 500 | } |
| 501 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 502 | int getty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 503 | int getty_main(int argc UNUSED_PARAM, char **argv) |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 504 | { |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 505 | int n; |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 506 | pid_t pid; |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 507 | char *logname; |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 508 | |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 509 | INIT_G(); |
| 510 | G.login = _PATH_LOGIN; /* default login program */ |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 511 | #ifdef ISSUE |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 512 | G.issue = ISSUE; /* default issue file */ |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 513 | #endif |
Denys Vlasenko | 7073964 | 2011-01-24 18:17:19 +0100 | [diff] [blame] | 514 | G.eol = '\r'; |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 515 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 516 | /* Parse command-line arguments */ |
| 517 | parse_args(argv); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 518 | |
Denis Vlasenko | dce3fde | 2006-10-23 02:10:45 +0000 | [diff] [blame] | 519 | logmode = LOGMODE_NONE; |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 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? */ |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 525 | setsid(); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 526 | /* close stdio, and stray descriptors, just in case */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 527 | n = xopen(bb_dev_null, O_RDWR); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 528 | /* dup2(n, 0); - no, we need to handle "getty - 9600" too */ |
| 529 | xdup2(n, 1); |
| 530 | xdup2(n, 2); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 531 | while (n > 2) |
| 532 | close(n--); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 533 | |
| 534 | /* Logging. We want special flavor of error_msg_and_die */ |
Denis Vlasenko | dce3fde | 2006-10-23 02:10:45 +0000 | [diff] [blame] | 535 | die_sleep = 10; |
| 536 | msg_eol = "\r\n"; |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 537 | /* most likely will internally use fd #3 in CLOEXEC mode: */ |
Denis Vlasenko | 8f8f268 | 2006-10-03 21:00:43 +0000 | [diff] [blame] | 538 | openlog(applet_name, LOG_PID, LOG_AUTH); |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 539 | logmode = LOGMODE_BOTH; |
| 540 | |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 541 | #ifdef DEBUGGING |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 542 | dbf = xfopen_for_write(DEBUGTERM); |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 543 | for (n = 1; argv[n]; n++) { |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 544 | debug(argv[n]); |
| 545 | debug("\n"); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 546 | } |
| 547 | #endif |
"Vladimir N. Oleynik" | 3e245c9 | 2005-09-29 11:31:26 +0000 | [diff] [blame] | 548 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 549 | /* Open the tty as standard input, if it is not "-" */ |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 550 | /* If it's not "-" and not taken yet, it will become our ctty */ |
| 551 | debug("calling open_tty\n"); |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 552 | open_tty(); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 553 | ndelay_off(0); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 554 | debug("duping\n"); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 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 | */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 566 | if (tcgetattr(STDIN_FILENO, &G.termios) < 0) |
Denys Vlasenko | 9dc0412 | 2010-09-01 11:31:43 +0200 | [diff] [blame] | 567 | bb_perror_msg_and_die("tcgetattr"); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 568 | |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 569 | pid = getpid(); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 570 | #ifdef __linux__ |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 571 | // FIXME: do we need this? Otherwise "-" case seems to be broken... |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 572 | // /* Forcibly make fd 0 our controlling tty, even if another session |
| 573 | // * has it as a ctty. (Another session loses ctty). */ |
Denys Vlasenko | dc6cd12 | 2011-01-24 00:28:43 +0100 | [diff] [blame] | 574 | // ioctl(STDIN_FILENO, TIOCSCTTY, (void*)1); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 575 | /* Make ourself a foreground process group within our session */ |
Denys Vlasenko | dc6cd12 | 2011-01-24 00:28:43 +0100 | [diff] [blame] | 576 | tcsetpgrp(STDIN_FILENO, pid); |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 577 | #endif |
| 578 | |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 579 | /* Update the utmp file. This tty is ours now! */ |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 580 | update_utmp(pid, LOGIN_PROCESS, G.tty, "LOGIN", G.fakehost); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 581 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 582 | /* Initialize the termios settings (raw mode, eight-bit, blocking i/o) */ |
Denis Vlasenko | 6476cc1 | 2006-11-07 01:52:10 +0000 | [diff] [blame] | 583 | debug("calling termios_init\n"); |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 584 | termios_init(G.speeds[0]); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 585 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 586 | /* Write the modem init string and DON'T flush the buffers */ |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 587 | if (option_mask32 & F_INITSTRING) { |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 588 | debug("writing init string\n"); |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 589 | full_write1_str(G.initstring); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 592 | /* Optionally detect the baud rate from the modem status message */ |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 593 | debug("before autobaud\n"); |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 594 | if (option_mask32 & F_PARSE) |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 595 | auto_baud(); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 596 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 597 | /* Set the optional timer */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 598 | alarm(G.timeout); /* if 0, alarm is not set */ |
Denys Vlasenko | d849493 | 2011-01-26 03:26:38 +0100 | [diff] [blame] | 599 | //BUG: death by signal won't restore termios |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 600 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 601 | /* Optionally wait for CR or LF before writing /etc/issue */ |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 602 | if (option_mask32 & F_WAITCRLF) { |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 603 | char ch; |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 604 | debug("waiting for cr-lf\n"); |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 605 | while (safe_read(STDIN_FILENO, &ch, 1) == 1) { |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 606 | debug("read %x\n", (unsigned char)ch); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 607 | if (ch == '\n' || ch == '\r') |
| 608 | break; |
| 609 | } |
| 610 | } |
| 611 | |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 612 | logname = NULL; |
Denys Vlasenko | bcdb9b8 | 2011-01-09 21:44:51 +0100 | [diff] [blame] | 613 | if (!(option_mask32 & F_NOPROMPT)) { |
Denys Vlasenko | 2b57b6c | 2011-01-22 03:06:40 +0100 | [diff] [blame] | 614 | /* NB: termios_init already set line speed |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 615 | * to G.speeds[0] */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 616 | int baud_index = 0; |
| 617 | |
| 618 | while (1) { |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 619 | /* Read the login name */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 620 | debug("reading login name\n"); |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 621 | logname = get_logname(); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 622 | if (logname) |
| 623 | break; |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 624 | /* We are here only if G.numspeed > 1 */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 625 | baud_index = (baud_index + 1) % G.numspeed; |
| 626 | cfsetspeed(&G.termios, G.speeds[baud_index]); |
Peter Korsgaard | ddd1ec1 | 2011-01-26 15:15:19 +0100 | [diff] [blame^] | 627 | set_termios(); |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 628 | } |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 629 | } |
| 630 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 631 | /* Disable timer */ |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 632 | alarm(0); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 633 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 634 | /* Finalize the termios settings */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 635 | termios_final(); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 636 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 637 | /* Now the newline character should be properly written */ |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 638 | full_write(STDOUT_FILENO, "\n", 1); |
Bernhard Reutner-Fischer | 6d82f94 | 2006-06-16 16:37:07 +0000 | [diff] [blame] | 639 | |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 640 | /* Let the login program take care of password validation */ |
Denis Vlasenko | d0bbbdc | 2007-12-04 09:48:40 +0000 | [diff] [blame] | 641 | /* We use PATH because we trust that root doesn't set "bad" PATH, |
Denys Vlasenko | faaf8cb | 2011-01-24 14:35:09 +0100 | [diff] [blame] | 642 | * and getty is not suid-root applet */ |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 643 | /* With -n, logname == NULL, and login will ask for username instead */ |
Denys Vlasenko | 6596380 | 2011-01-24 04:43:04 +0100 | [diff] [blame] | 644 | BB_EXECLP(G.login, G.login, "--", logname, NULL); |
| 645 | bb_error_msg_and_die("can't execute '%s'", G.login); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 646 | } |