2002-06-05 02:15:46 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2011-01-24 19:05:09 +05:30
|
|
|
/*
|
|
|
|
* Based on agetty - another getty program for Linux. By W. Z. Venema 1989
|
2006-07-12 13:26:04 +05:30
|
|
|
* Ported to Linux by Peter Orbaek <poe@daimi.aau.dk>
|
2011-01-24 04:46:50 +05:30
|
|
|
* This program is freely distributable.
|
2006-07-12 13:26:04 +05:30
|
|
|
*
|
|
|
|
* option added by Eric Rasmussen <ear@usfirst.org> - 12/28/95
|
|
|
|
*
|
2008-03-17 14:59:43 +05:30
|
|
|
* 1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org>
|
2011-01-24 19:05:09 +05:30
|
|
|
* - Added Native Language Support
|
2008-03-17 14:59:43 +05:30
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* 1999-05-05 Thorsten Kranzkowski <dl8bcu@gmx.net>
|
2011-01-24 19:05:09 +05:30
|
|
|
* - Enabled hardware flow control before displaying /etc/issue
|
|
|
|
*
|
|
|
|
* 2011-01 Venys Vlasenko
|
|
|
|
* - Removed parity detection code. It can't work reliably:
|
|
|
|
* if all chars received have bit 7 cleared and odd (or even) parity,
|
|
|
|
* it is impossible to determine whether other side is 8-bit,no-parity
|
|
|
|
* or 7-bit,odd(even)-parity. It also interferes with non-ASCII usernames.
|
|
|
|
* - From now on, we assume that parity is correctly set.
|
2006-07-12 13:26:04 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-07-12 13:26:04 +05:30
|
|
|
*/
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-09-19 19:20:55 +05:30
|
|
|
#include <syslog.h>
|
2006-11-07 07:22:10 +05:30
|
|
|
#if ENABLE_FEATURE_UTMP
|
2010-04-06 01:40:38 +05:30
|
|
|
# include <utmp.h> /* LOGIN_PROCESS */
|
2005-07-01 06:59:44 +05:30
|
|
|
#endif
|
2009-07-05 07:04:12 +05:30
|
|
|
#ifndef IUCLC
|
|
|
|
# define IUCLC 0
|
|
|
|
#endif
|
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
#ifndef LOGIN_PROCESS
|
2011-01-10 02:14:51 +05:30
|
|
|
# undef ENABLE_FEATURE_UTMP
|
|
|
|
# undef ENABLE_FEATURE_WTMP
|
|
|
|
# define ENABLE_FEATURE_UTMP 0
|
|
|
|
# define ENABLE_FEATURE_WTMP 0
|
2011-01-24 09:13:04 +05:30
|
|
|
#endif
|
2006-10-23 07:41:22 +05:30
|
|
|
|
2011-01-10 02:14:51 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* The following is used for understandable diagnostics */
|
2011-01-10 02:14:51 +05:30
|
|
|
#ifdef DEBUGGING
|
|
|
|
static FILE *dbf;
|
|
|
|
# define DEBUGTERM "/dev/ttyp0"
|
|
|
|
# define debug(...) do { fprintf(dbf, __VA_ARGS__); fflush(dbf); } while (0)
|
|
|
|
#else
|
|
|
|
# define debug(...) ((void)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-11-07 07:22:10 +05:30
|
|
|
/*
|
|
|
|
* Things you may want to modify.
|
|
|
|
*
|
|
|
|
* You may disagree with the default line-editing etc. characters defined
|
|
|
|
* below. Note, however, that DEL cannot be used for interrupt generation
|
|
|
|
* and for line editing at the same time.
|
|
|
|
*/
|
2011-01-10 02:14:51 +05:30
|
|
|
#undef _PATH_LOGIN
|
2006-11-07 07:22:10 +05:30
|
|
|
#define _PATH_LOGIN "/bin/login"
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-10 02:14:51 +05:30
|
|
|
/* Displayed before the login prompt.
|
|
|
|
* If ISSUE is not defined, getty will never display the contents of the
|
2006-11-07 07:22:10 +05:30
|
|
|
* /etc/issue file. You will not want to spit out large "issue" files at the
|
|
|
|
* wrong baud rate.
|
|
|
|
*/
|
2011-01-10 02:14:51 +05:30
|
|
|
#define ISSUE "/etc/issue"
|
2005-07-27 11:35:38 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Some shorthands for control characters */
|
2008-03-17 14:25:44 +05:30
|
|
|
#define CTL(x) ((x) ^ 0100) /* Assumes ASCII dialect */
|
2005-09-29 17:01:26 +05:30
|
|
|
#define CR CTL('M') /* carriage return */
|
|
|
|
#define NL CTL('J') /* line feed */
|
|
|
|
#define BS CTL('H') /* back space */
|
|
|
|
#define DEL CTL('?') /* delete */
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Defaults for line-editing etc. characters; you may want to change this */
|
2005-09-29 17:01:26 +05:30
|
|
|
#define DEF_ERASE DEL /* default erase character */
|
|
|
|
#define DEF_INTR CTL('C') /* default interrupt character */
|
|
|
|
#define DEF_QUIT CTL('\\') /* default quit char */
|
|
|
|
#define DEF_KILL CTL('U') /* default kill char */
|
|
|
|
#define DEF_EOF CTL('D') /* default EOF char */
|
|
|
|
#define DEF_EOL '\n'
|
|
|
|
#define DEF_SWITCH 0 /* default switch char */
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2006-11-07 07:22:10 +05:30
|
|
|
/*
|
2011-01-24 19:05:09 +05:30
|
|
|
* When multiple baud rates are specified on the command line,
|
|
|
|
* the first one we will try is the first one specified.
|
2006-11-07 07:22:10 +05:30
|
|
|
*/
|
2005-09-29 17:01:26 +05:30
|
|
|
#define MAX_SPEED 10 /* max. nr. of baud rates */
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 09:13:04 +05:30
|
|
|
struct globals {
|
2006-10-08 18:19:22 +05:30
|
|
|
unsigned timeout; /* time-out period */
|
2007-12-04 15:18:40 +05:30
|
|
|
const char *login; /* login program */
|
2011-01-24 19:05:09 +05:30
|
|
|
const char *fakehost;
|
2007-12-04 15:18:40 +05:30
|
|
|
const char *tty; /* name of tty */
|
|
|
|
const char *initstring; /* modem init string */
|
|
|
|
const char *issue; /* alternative issue file */
|
2005-09-29 17:01:26 +05:30
|
|
|
int numspeed; /* number of baud rates to try */
|
|
|
|
int speeds[MAX_SPEED]; /* baud rates to be tried */
|
2011-01-24 19:05:09 +05:30
|
|
|
unsigned char eol; /* end-of-line char seen (CR or NL) */
|
2011-01-24 09:13:04 +05:30
|
|
|
struct termios termios; /* terminal mode bits */
|
|
|
|
char line_buf[128];
|
2002-06-05 02:15:46 +05:30
|
|
|
};
|
|
|
|
|
2011-01-24 09:13:04 +05:30
|
|
|
#define G (*ptr_to_globals)
|
|
|
|
#define INIT_G() do { \
|
|
|
|
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
|
|
|
|
} while (0)
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-10 02:14:51 +05:30
|
|
|
//usage:#define getty_trivial_usage
|
2011-01-22 07:36:40 +05:30
|
|
|
//usage: "[OPTIONS] BAUD_RATE[,BAUD_RATE]... TTY [TERMTYPE]"
|
2011-01-10 02:14:51 +05:30
|
|
|
//usage:#define getty_full_usage "\n\n"
|
|
|
|
//usage: "Open a tty, prompt for a login name, then invoke /bin/login\n"
|
|
|
|
//usage: "\nOptions:"
|
|
|
|
//usage: "\n -h Enable hardware (RTS/CTS) flow control"
|
|
|
|
//usage: "\n -i Don't display /etc/issue"
|
2011-01-22 07:36:40 +05:30
|
|
|
//usage: "\n -L Local line, set CLOCAL on it"
|
2011-01-10 02:14:51 +05:30
|
|
|
//usage: "\n -m Get baud rate from modem's CONNECT status message"
|
2011-01-22 07:36:40 +05:30
|
|
|
//usage: "\n -w Wait for CR or LF before sending /etc/issue"
|
|
|
|
//usage: "\n -n Don't prompt for a login name"
|
2011-01-10 02:14:51 +05:30
|
|
|
//usage: "\n -f ISSUE_FILE Display ISSUE_FILE instead of /etc/issue"
|
|
|
|
//usage: "\n -l LOGIN Invoke LOGIN instead of /bin/login"
|
|
|
|
//usage: "\n -t SEC Terminate after SEC if no username is read"
|
|
|
|
//usage: "\n -I INITSTR Send INITSTR before anything else"
|
|
|
|
//usage: "\n -H HOST Log HOST into the utmp file as the hostname"
|
2011-01-22 07:36:40 +05:30
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\nBAUD_RATE of 0 leaves it unchanged"
|
2011-01-10 02:14:51 +05:30
|
|
|
|
|
|
|
static const char opt_string[] ALIGN1 = "I:LH:f:hil:mt:wn";
|
|
|
|
#define F_INITSTRING (1 << 0) /* -I */
|
|
|
|
#define F_LOCAL (1 << 1) /* -L */
|
|
|
|
#define F_FAKEHOST (1 << 2) /* -H */
|
|
|
|
#define F_CUSTISSUE (1 << 3) /* -f */
|
|
|
|
#define F_RTSCTS (1 << 4) /* -h */
|
|
|
|
#define F_NOISSUE (1 << 5) /* -i */
|
|
|
|
#define F_LOGIN (1 << 6) /* -l */
|
|
|
|
#define F_PARSE (1 << 7) /* -m */
|
|
|
|
#define F_TIMEOUT (1 << 8) /* -t */
|
|
|
|
#define F_WAITCRLF (1 << 9) /* -w */
|
|
|
|
#define F_NOPROMPT (1 << 10) /* -n */
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
|
2011-01-24 04:46:50 +05:30
|
|
|
/* convert speed string to speed code; return <= 0 on failure */
|
2006-06-16 22:07:07 +05:30
|
|
|
static int bcode(const char *s)
|
|
|
|
{
|
2008-03-17 14:25:44 +05:30
|
|
|
int value = bb_strtou(s, NULL, 10); /* yes, int is intended! */
|
|
|
|
if (value < 0) /* bad terminating char, overflow, etc */
|
|
|
|
return value;
|
|
|
|
return tty_value_to_baud(value);
|
2006-06-16 22:07:07 +05:30
|
|
|
}
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 04:46:50 +05:30
|
|
|
/* parse alternate baud rates */
|
2011-01-24 09:13:04 +05:30
|
|
|
static void parse_speeds(char *arg)
|
2006-06-16 22:07:07 +05:30
|
|
|
{
|
|
|
|
char *cp;
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* NB: at least one iteration is always done */
|
2006-06-16 22:07:07 +05:30
|
|
|
debug("entered parse_speeds\n");
|
2007-12-04 15:18:40 +05:30
|
|
|
while ((cp = strsep(&arg, ",")) != NULL) {
|
2011-01-24 09:13:04 +05:30
|
|
|
G.speeds[G.numspeed] = bcode(cp);
|
|
|
|
if (G.speeds[G.numspeed] < 0)
|
2006-09-07 21:50:03 +05:30
|
|
|
bb_error_msg_and_die("bad speed: %s", cp);
|
2009-04-12 18:35:40 +05:30
|
|
|
/* note: arg "0" turns into speed B0 */
|
2011-01-24 09:13:04 +05:30
|
|
|
G.numspeed++;
|
|
|
|
if (G.numspeed > MAX_SPEED)
|
2006-09-07 21:50:03 +05:30
|
|
|
bb_error_msg_and_die("too many alternate speeds");
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
2007-12-04 15:18:40 +05:30
|
|
|
debug("exiting parse_speeds\n");
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
|
2011-01-24 04:46:50 +05:30
|
|
|
/* parse command-line arguments */
|
2011-01-24 19:05:09 +05:30
|
|
|
static void parse_args(char **argv)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
2005-09-29 17:01:26 +05:30
|
|
|
char *ts;
|
2011-01-10 02:14:51 +05:30
|
|
|
int flags;
|
2005-09-29 17:01:26 +05:30
|
|
|
|
2008-03-17 14:25:44 +05:30
|
|
|
opt_complementary = "-2:t+"; /* at least 2 args; -t N */
|
2011-01-10 02:14:51 +05:30
|
|
|
flags = getopt32(argv, opt_string,
|
2011-01-24 19:05:09 +05:30
|
|
|
&G.initstring, &G.fakehost, &G.issue,
|
2011-01-24 09:13:04 +05:30
|
|
|
&G.login, &G.timeout
|
|
|
|
);
|
2011-01-10 02:14:51 +05:30
|
|
|
if (flags & F_INITSTRING) {
|
2011-01-24 09:13:04 +05:30
|
|
|
G.initstring = xstrdup(G.initstring);
|
2010-10-24 00:36:06 +05:30
|
|
|
/* decode \ddd octal codes into chars */
|
2011-01-24 09:13:04 +05:30
|
|
|
strcpy_and_process_escape_sequences((char*)G.initstring, G.initstring);
|
2005-09-29 17:01:26 +05:30
|
|
|
}
|
2011-01-10 02:14:51 +05:30
|
|
|
argv += optind;
|
2007-12-04 15:18:40 +05:30
|
|
|
debug("after getopt\n");
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 09:13:04 +05:30
|
|
|
/* We loosen up a bit and accept both "baudrate tty" and "tty baudrate" */
|
|
|
|
G.tty = argv[0]; /* tty name */
|
2007-12-04 15:18:40 +05:30
|
|
|
ts = argv[1]; /* baud rate(s) */
|
2007-01-20 02:49:35 +05:30
|
|
|
if (isdigit(argv[0][0])) {
|
2011-01-24 09:13:04 +05:30
|
|
|
/* A number first, assume it's a speed (BSD style) */
|
|
|
|
G.tty = ts; /* tty name is in argv[1] */
|
2007-12-04 15:18:40 +05:30
|
|
|
ts = argv[0]; /* baud rate(s) */
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
2011-01-24 09:13:04 +05:30
|
|
|
parse_speeds(ts);
|
|
|
|
applet_name = xasprintf("getty: %s", G.tty);
|
2008-03-17 14:25:44 +05:30
|
|
|
|
2006-10-23 07:41:22 +05:30
|
|
|
if (argv[2])
|
2008-03-17 14:25:44 +05:30
|
|
|
xsetenv("TERM", argv[2]);
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
debug("exiting parse_args\n");
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
|
2011-01-24 04:46:50 +05:30
|
|
|
/* set up tty as standard input, output, error */
|
2011-01-24 09:13:04 +05:30
|
|
|
static void open_tty(void)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Set up new standard input, unless we are given an already opened port */
|
2011-01-24 09:13:04 +05:30
|
|
|
if (NOT_LONE_DASH(G.tty)) {
|
|
|
|
if (G.tty[0] != '/')
|
|
|
|
G.tty = xasprintf("/dev/%s", G.tty); /* will leak it */
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Open the tty as standard input */
|
2002-06-05 02:15:46 +05:30
|
|
|
debug("open(2)\n");
|
2008-03-17 14:25:44 +05:30
|
|
|
close(0);
|
2011-01-24 09:13:04 +05:30
|
|
|
xopen(G.tty, O_RDWR | O_NONBLOCK); /* uses fd 0 */
|
2007-12-04 15:18:40 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Set proper protections and ownership */
|
2007-12-04 15:18:40 +05:30
|
|
|
fchown(0, 0, 0); /* 0:0 */
|
2008-03-17 14:25:44 +05:30
|
|
|
fchmod(0, 0620); /* crw--w---- */
|
2002-06-05 02:15:46 +05:30
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Standard input should already be connected to an open port. Make
|
|
|
|
* sure it is open for read/write.
|
|
|
|
*/
|
2011-01-22 21:59:53 +05:30
|
|
|
if ((fcntl(0, F_GETFL) & (O_RDWR|O_RDONLY|O_WRONLY)) != O_RDWR)
|
2007-01-28 03:51:12 +05:30
|
|
|
bb_error_msg_and_die("stdin is not open for read/write");
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* We manipulate termios this way:
|
|
|
|
* - first, we read existing termios settings
|
|
|
|
* - termios_init modifies some parts and sets it
|
|
|
|
* - auto_baud and/or BREAK processing can set different speed and set termios
|
|
|
|
* - termios_final again modifies some parts and sets termios before
|
|
|
|
* execing login
|
|
|
|
*/
|
2011-01-24 09:13:04 +05:30
|
|
|
static void termios_init(int speed)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
2011-01-24 04:58:43 +05:30
|
|
|
/* Flush input and output queues, important for modems!
|
|
|
|
* Users report losing previously queued output chars, and I hesitate
|
|
|
|
* to use tcdrain here instead of tcflush - I imagine it can block.
|
|
|
|
* Using small sleep instead.
|
|
|
|
*/
|
|
|
|
usleep(100*1000); /* 0.1 sec */
|
|
|
|
tcflush(STDIN_FILENO, TCIOFLUSH);
|
2011-01-22 07:36:40 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Set speed if it wasn't specified as "0" on command line */
|
2011-01-24 04:46:50 +05:30
|
|
|
if (speed != B0)
|
2011-01-24 09:13:04 +05:30
|
|
|
cfsetspeed(&G.termios, speed);
|
2011-01-24 04:46:50 +05:30
|
|
|
|
2002-06-05 02:15:46 +05:30
|
|
|
/*
|
2006-11-07 07:22:10 +05:30
|
|
|
* Initial termios settings: 8-bit characters, raw-mode, blocking i/o.
|
2002-06-05 02:15:46 +05:30
|
|
|
* Special characters are set after we have read the login name; all
|
|
|
|
* reads will be done in raw mode anyway. Errors will be dealt with
|
2006-10-23 15:47:34 +05:30
|
|
|
* later on.
|
2002-06-05 02:15:46 +05:30
|
|
|
*/
|
2011-01-24 09:13:04 +05:30
|
|
|
G.termios.c_cflag = CS8 | HUPCL | CREAD;
|
2011-01-10 02:14:51 +05:30
|
|
|
if (option_mask32 & F_LOCAL)
|
2011-01-24 09:13:04 +05:30
|
|
|
G.termios.c_cflag |= CLOCAL;
|
|
|
|
G.termios.c_iflag = 0;
|
|
|
|
G.termios.c_lflag = 0;
|
|
|
|
G.termios.c_oflag = OPOST | ONLCR;
|
|
|
|
G.termios.c_cc[VMIN] = 1;
|
|
|
|
G.termios.c_cc[VTIME] = 0;
|
2010-05-27 19:07:32 +05:30
|
|
|
#ifdef __linux__
|
2011-01-24 09:13:04 +05:30
|
|
|
G.termios.c_line = 0;
|
2010-05-27 19:07:32 +05:30
|
|
|
#endif
|
2007-12-04 15:18:40 +05:30
|
|
|
#ifdef CRTSCTS
|
2011-01-10 02:14:51 +05:30
|
|
|
if (option_mask32 & F_RTSCTS)
|
2011-01-24 09:13:04 +05:30
|
|
|
G.termios.c_cflag |= CRTSCTS;
|
2002-06-05 02:15:46 +05:30
|
|
|
#endif
|
|
|
|
|
2011-01-24 09:13:04 +05:30
|
|
|
tcsetattr_stdin_TCSANOW(&G.termios);
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
debug("term_io 2\n");
|
|
|
|
}
|
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
static void termios_final(void)
|
|
|
|
{
|
|
|
|
/* General terminal-independent stuff */
|
|
|
|
G.termios.c_iflag |= IXON | IXOFF; /* 2-way flow control */
|
|
|
|
G.termios.c_lflag |= ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHOKE;
|
|
|
|
/* no longer in lflag: | ECHOCTL | ECHOPRT */
|
|
|
|
G.termios.c_oflag |= OPOST;
|
|
|
|
/* G.termios.c_cflag = 0; */
|
|
|
|
G.termios.c_cc[VINTR] = DEF_INTR;
|
|
|
|
G.termios.c_cc[VQUIT] = DEF_QUIT;
|
|
|
|
G.termios.c_cc[VEOF] = DEF_EOF;
|
|
|
|
G.termios.c_cc[VEOL] = DEF_EOL;
|
|
|
|
#ifdef VSWTC
|
|
|
|
G.termios.c_cc[VSWTC] = DEF_SWITCH;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Account for special characters seen in input */
|
|
|
|
if (G.eol == CR) {
|
|
|
|
G.termios.c_iflag |= ICRNL; /* map CR in input to NL */
|
|
|
|
/* already done by termios_init */
|
|
|
|
/* G.termios.c_oflag |= ONLCR; map NL in output to CR-NL */
|
|
|
|
}
|
|
|
|
G.termios.c_cc[VKILL] = DEF_KILL;
|
|
|
|
|
|
|
|
#ifdef CRTSCTS
|
|
|
|
/* Optionally enable hardware flow control */
|
|
|
|
if (option_mask32 & F_RTSCTS)
|
|
|
|
G.termios.c_cflag |= CRTSCTS;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Finally, make the new settings effective */
|
|
|
|
if (tcsetattr_stdin_TCSANOW(&G.termios) < 0)
|
|
|
|
bb_perror_msg_and_die("tcsetattr");
|
|
|
|
}
|
|
|
|
|
2011-01-24 04:46:50 +05:30
|
|
|
/* extract baud rate from modem status message */
|
2011-01-24 09:13:04 +05:30
|
|
|
static void auto_baud(void)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
|
|
|
int nread;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This works only if the modem produces its status code AFTER raising
|
|
|
|
* the DCD line, and if the computer is fast enough to set the proper
|
|
|
|
* baud rate before the message has gone by. We expect a message of the
|
|
|
|
* following format:
|
2004-03-15 13:59:22 +05:30
|
|
|
*
|
2002-06-05 02:15:46 +05:30
|
|
|
* <junk><number><junk>
|
2004-03-15 13:59:22 +05:30
|
|
|
*
|
2002-06-05 02:15:46 +05:30
|
|
|
* The number is interpreted as the baud rate of the incoming call. If the
|
|
|
|
* modem does not tell us the baud rate within one second, we will keep
|
|
|
|
* using the current baud rate. It is advisable to enable BREAK
|
|
|
|
* processing (comma-separated list of baud rates) if the processing of
|
|
|
|
* modem status messages is enabled.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2011-01-24 19:05:09 +05:30
|
|
|
* Don't block if input queue is empty.
|
|
|
|
* Errors will be dealt with later on.
|
2002-06-05 02:15:46 +05:30
|
|
|
*/
|
2011-01-24 09:13:04 +05:30
|
|
|
G.termios.c_cc[VMIN] = 0; /* don't block if queue empty */
|
|
|
|
tcsetattr_stdin_TCSANOW(&G.termios);
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Wait for a while, then read everything the modem has said so far and
|
|
|
|
* try to extract the speed of the dial-in call.
|
|
|
|
*/
|
2006-10-23 07:41:22 +05:30
|
|
|
sleep(1);
|
2011-01-24 09:13:04 +05:30
|
|
|
nread = safe_read(STDIN_FILENO, G.line_buf, sizeof(G.line_buf) - 1);
|
2006-10-23 07:40:45 +05:30
|
|
|
if (nread > 0) {
|
2011-01-24 19:05:09 +05:30
|
|
|
int speed;
|
|
|
|
char *bp;
|
2011-01-24 09:13:04 +05:30
|
|
|
G.line_buf[nread] = '\0';
|
|
|
|
for (bp = G.line_buf; bp < G.line_buf + nread; bp++) {
|
2007-12-04 15:18:40 +05:30
|
|
|
if (isdigit(*bp)) {
|
2006-10-08 18:19:22 +05:30
|
|
|
speed = bcode(bp);
|
2010-05-27 19:07:32 +05:30
|
|
|
if (speed > 0)
|
2011-01-24 09:13:04 +05:30
|
|
|
cfsetspeed(&G.termios, speed);
|
2002-06-05 02:15:46 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Restore terminal settings. Errors will be dealt with later on */
|
|
|
|
G.termios.c_cc[VMIN] = 1; /* restore to value set by termios_init */
|
2011-01-24 09:13:04 +05:30
|
|
|
tcsetattr_stdin_TCSANOW(&G.termios);
|
2006-06-16 22:07:07 +05:30
|
|
|
}
|
|
|
|
|
2011-01-24 04:46:50 +05:30
|
|
|
/* get user name, establish parity, speed, erase, kill, eol;
|
2011-01-24 19:05:09 +05:30
|
|
|
* return NULL on BREAK, logname on success
|
|
|
|
*/
|
2011-01-24 09:13:04 +05:30
|
|
|
static char *get_logname(void)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
|
|
|
char *bp;
|
2011-01-24 09:13:04 +05:30
|
|
|
char c;
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Flush pending input (esp. after parsing or switching the baud rate) */
|
2011-01-24 04:58:43 +05:30
|
|
|
usleep(100*1000); /* 0.1 sec */
|
|
|
|
tcflush(STDIN_FILENO, TCIOFLUSH);
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Prompt for and read a login name */
|
2011-01-24 09:13:04 +05:30
|
|
|
G.line_buf[0] = '\0';
|
|
|
|
while (!G.line_buf[0]) {
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Write issue file and prompt */
|
2011-01-24 04:46:50 +05:30
|
|
|
#ifdef ISSUE
|
|
|
|
if (!(option_mask32 & F_NOISSUE))
|
2011-01-24 09:13:04 +05:30
|
|
|
print_login_issue(G.issue, G.tty);
|
2011-01-24 04:46:50 +05:30
|
|
|
#endif
|
|
|
|
print_login_prompt();
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Read name, watch for break, parity, erase, kill, end-of-line */
|
2011-01-24 09:13:04 +05:30
|
|
|
bp = G.line_buf;
|
|
|
|
G.eol = '\0';
|
2011-01-22 07:36:40 +05:30
|
|
|
while (1) {
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Do not report trivial EINTR/EIO errors */
|
2010-05-23 00:47:46 +05:30
|
|
|
errno = EINTR; /* make read of 0 bytes be silent too */
|
2008-05-19 15:18:17 +05:30
|
|
|
if (read(STDIN_FILENO, &c, 1) < 1) {
|
2002-06-05 02:15:46 +05:30
|
|
|
if (errno == EINTR || errno == EIO)
|
2008-05-19 14:59:47 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
2010-09-01 15:01:43 +05:30
|
|
|
bb_perror_msg_and_die(bb_msg_read_error);
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* BREAK. If we have speeds to try,
|
|
|
|
* return NULL (will switch speeds and return here) */
|
2011-01-24 09:13:04 +05:30
|
|
|
if (c == '\0' && G.numspeed > 1)
|
2002-06-05 02:15:46 +05:30
|
|
|
return NULL;
|
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Do erase, kill and end-of-line processing */
|
2011-01-24 09:13:04 +05:30
|
|
|
switch (c) {
|
2002-06-05 02:15:46 +05:30
|
|
|
case CR:
|
|
|
|
case NL:
|
2011-01-24 09:13:04 +05:30
|
|
|
*bp = '\0';
|
|
|
|
G.eol = c;
|
2011-01-22 07:36:40 +05:30
|
|
|
goto got_logname;
|
2002-06-05 02:15:46 +05:30
|
|
|
case BS:
|
|
|
|
case DEL:
|
2011-01-24 19:05:09 +05:30
|
|
|
G.termios.c_cc[VERASE] = c;
|
2011-01-24 09:13:04 +05:30
|
|
|
if (bp > G.line_buf) {
|
2011-01-22 07:36:40 +05:30
|
|
|
full_write(STDOUT_FILENO, "\010 \010", 3);
|
2002-06-05 02:15:46 +05:30
|
|
|
bp--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CTL('U'):
|
2011-01-24 09:13:04 +05:30
|
|
|
while (bp > G.line_buf) {
|
2011-01-22 07:36:40 +05:30
|
|
|
full_write(STDOUT_FILENO, "\010 \010", 3);
|
2002-06-05 02:15:46 +05:30
|
|
|
bp--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CTL('D'):
|
2008-05-19 14:59:47 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
2002-06-05 02:15:46 +05:30
|
|
|
default:
|
2011-01-24 09:13:04 +05:30
|
|
|
if ((unsigned char)c < ' ') {
|
2006-10-24 04:13:02 +05:30
|
|
|
/* ignore garbage characters */
|
2011-01-24 09:13:04 +05:30
|
|
|
} else if ((int)(bp - G.line_buf) < sizeof(G.line_buf) - 1) {
|
|
|
|
/* echo and store the character */
|
|
|
|
full_write(STDOUT_FILENO, &c, 1);
|
|
|
|
*bp++ = c;
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2011-01-22 07:36:40 +05:30
|
|
|
} /* end of get char loop */
|
|
|
|
got_logname: ;
|
|
|
|
} /* while logname is empty */
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2011-01-24 09:13:04 +05:30
|
|
|
return G.line_buf;
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int getty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int getty_main(int argc UNUSED_PARAM, char **argv)
|
2006-06-16 22:07:07 +05:30
|
|
|
{
|
2007-12-04 15:18:40 +05:30
|
|
|
int n;
|
2010-04-06 01:40:38 +05:30
|
|
|
pid_t pid;
|
2011-01-24 09:13:04 +05:30
|
|
|
char *logname;
|
2008-03-17 14:25:44 +05:30
|
|
|
|
2011-01-24 09:13:04 +05:30
|
|
|
INIT_G();
|
|
|
|
G.login = _PATH_LOGIN; /* default login program */
|
2006-06-16 22:07:07 +05:30
|
|
|
#ifdef ISSUE
|
2011-01-24 09:13:04 +05:30
|
|
|
G.issue = ISSUE; /* default issue file */
|
2006-06-16 22:07:07 +05:30
|
|
|
#endif
|
2011-01-24 09:13:04 +05:30
|
|
|
G.eol = CR;
|
2005-09-29 17:01:26 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Parse command-line arguments */
|
|
|
|
parse_args(argv);
|
2008-03-17 14:25:44 +05:30
|
|
|
|
2006-10-23 07:40:45 +05:30
|
|
|
logmode = LOGMODE_NONE;
|
2007-12-04 15:18:40 +05:30
|
|
|
|
|
|
|
/* Create new session, lose controlling tty, if any */
|
|
|
|
/* docs/ctty.htm says:
|
|
|
|
* "This is allowed only when the current process
|
|
|
|
* is not a process group leader" - is this a problem? */
|
2006-09-07 21:50:03 +05:30
|
|
|
setsid();
|
2008-03-17 14:25:44 +05:30
|
|
|
/* close stdio, and stray descriptors, just in case */
|
2007-12-04 15:18:40 +05:30
|
|
|
n = xopen(bb_dev_null, O_RDWR);
|
2008-03-17 14:25:44 +05:30
|
|
|
/* dup2(n, 0); - no, we need to handle "getty - 9600" too */
|
|
|
|
xdup2(n, 1);
|
|
|
|
xdup2(n, 2);
|
2007-12-04 15:18:40 +05:30
|
|
|
while (n > 2)
|
|
|
|
close(n--);
|
2008-03-17 14:25:44 +05:30
|
|
|
|
|
|
|
/* Logging. We want special flavor of error_msg_and_die */
|
2006-10-23 07:40:45 +05:30
|
|
|
die_sleep = 10;
|
|
|
|
msg_eol = "\r\n";
|
2008-03-17 14:25:44 +05:30
|
|
|
/* most likely will internally use fd #3 in CLOEXEC mode: */
|
2006-10-04 02:30:43 +05:30
|
|
|
openlog(applet_name, LOG_PID, LOG_AUTH);
|
2006-09-07 21:50:03 +05:30
|
|
|
logmode = LOGMODE_BOTH;
|
|
|
|
|
2006-06-16 22:07:07 +05:30
|
|
|
#ifdef DEBUGGING
|
2008-07-22 04:35:26 +05:30
|
|
|
dbf = xfopen_for_write(DEBUGTERM);
|
2008-03-17 14:30:54 +05:30
|
|
|
for (n = 1; argv[n]; n++) {
|
2007-12-04 15:18:40 +05:30
|
|
|
debug(argv[n]);
|
|
|
|
debug("\n");
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
#endif
|
2005-09-29 17:01:26 +05:30
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* Open the tty as standard input, if it is not "-" */
|
2008-03-17 14:25:44 +05:30
|
|
|
/* If it's not "-" and not taken yet, it will become our ctty */
|
|
|
|
debug("calling open_tty\n");
|
2011-01-24 09:13:04 +05:30
|
|
|
open_tty();
|
2007-12-04 15:18:40 +05:30
|
|
|
ndelay_off(0);
|
2008-03-17 14:25:44 +05:30
|
|
|
debug("duping\n");
|
2007-12-04 15:18:40 +05:30
|
|
|
xdup2(0, 1);
|
|
|
|
xdup2(0, 2);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following ioctl will fail if stdin is not a tty, but also when
|
|
|
|
* there is noise on the modem control lines. In the latter case, the
|
|
|
|
* common course of action is (1) fix your cables (2) give the modem more
|
|
|
|
* time to properly reset after hanging up. SunOS users can achieve (2)
|
|
|
|
* by patching the SunOS kernel variable "zsadtrlow" to a larger value;
|
|
|
|
* 5 seconds seems to be a good value.
|
|
|
|
*/
|
2011-01-24 09:13:04 +05:30
|
|
|
if (tcgetattr(STDIN_FILENO, &G.termios) < 0)
|
2010-09-01 15:01:43 +05:30
|
|
|
bb_perror_msg_and_die("tcgetattr");
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2010-04-06 01:40:38 +05:30
|
|
|
pid = getpid();
|
2006-06-16 22:07:07 +05:30
|
|
|
#ifdef __linux__
|
2008-03-17 14:25:44 +05:30
|
|
|
// FIXME: do we need this? Otherwise "-" case seems to be broken...
|
2007-12-04 15:18:40 +05:30
|
|
|
// /* Forcibly make fd 0 our controlling tty, even if another session
|
|
|
|
// * has it as a ctty. (Another session loses ctty). */
|
2011-01-24 04:58:43 +05:30
|
|
|
// ioctl(STDIN_FILENO, TIOCSCTTY, (void*)1);
|
2008-03-17 14:25:44 +05:30
|
|
|
/* Make ourself a foreground process group within our session */
|
2011-01-24 04:58:43 +05:30
|
|
|
tcsetpgrp(STDIN_FILENO, pid);
|
2008-03-17 14:25:44 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Update the utmp file. This tty is ours now! */
|
2011-01-24 19:05:09 +05:30
|
|
|
update_utmp(pid, LOGIN_PROCESS, G.tty, "LOGIN", G.fakehost);
|
2007-12-04 15:18:40 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Initialize the termios settings (raw mode, eight-bit, blocking i/o) */
|
2006-11-07 07:22:10 +05:30
|
|
|
debug("calling termios_init\n");
|
2011-01-24 09:13:04 +05:30
|
|
|
termios_init(G.speeds[0]);
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* Write the modem init string and DON'T flush the buffers */
|
2011-01-10 02:14:51 +05:30
|
|
|
if (option_mask32 & F_INITSTRING) {
|
2006-06-16 22:07:07 +05:30
|
|
|
debug("writing init string\n");
|
2011-01-24 09:13:04 +05:30
|
|
|
full_write1_str(G.initstring);
|
2006-06-16 22:07:07 +05:30
|
|
|
}
|
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* Optionally detect the baud rate from the modem status message */
|
2006-06-16 22:07:07 +05:30
|
|
|
debug("before autobaud\n");
|
2011-01-10 02:14:51 +05:30
|
|
|
if (option_mask32 & F_PARSE)
|
2011-01-24 09:13:04 +05:30
|
|
|
auto_baud();
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* Set the optional timer */
|
2011-01-24 09:13:04 +05:30
|
|
|
alarm(G.timeout); /* if 0, alarm is not set */
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
/* Optionally wait for CR or LF before writing /etc/issue */
|
2011-01-10 02:14:51 +05:30
|
|
|
if (option_mask32 & F_WAITCRLF) {
|
2006-06-16 22:07:07 +05:30
|
|
|
char ch;
|
|
|
|
|
|
|
|
debug("waiting for cr-lf\n");
|
2008-05-19 15:18:17 +05:30
|
|
|
while (safe_read(STDIN_FILENO, &ch, 1) == 1) {
|
2008-03-17 14:25:44 +05:30
|
|
|
debug("read %x\n", (unsigned char)ch);
|
2006-06-16 22:07:07 +05:30
|
|
|
if (ch == '\n' || ch == '\r')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-04 15:18:40 +05:30
|
|
|
logname = NULL;
|
2011-01-10 02:14:51 +05:30
|
|
|
if (!(option_mask32 & F_NOPROMPT)) {
|
2011-01-22 07:36:40 +05:30
|
|
|
/* NB: termios_init already set line speed
|
2011-01-24 09:13:04 +05:30
|
|
|
* to G.speeds[0] */
|
2007-12-04 15:18:40 +05:30
|
|
|
int baud_index = 0;
|
|
|
|
|
|
|
|
while (1) {
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Read the login name */
|
2007-12-04 15:18:40 +05:30
|
|
|
debug("reading login name\n");
|
2011-01-24 09:13:04 +05:30
|
|
|
logname = get_logname();
|
2007-12-04 15:18:40 +05:30
|
|
|
if (logname)
|
|
|
|
break;
|
2011-01-24 19:05:09 +05:30
|
|
|
/* We are here only if G.numspeed > 1 */
|
2011-01-24 09:13:04 +05:30
|
|
|
baud_index = (baud_index + 1) % G.numspeed;
|
|
|
|
cfsetspeed(&G.termios, G.speeds[baud_index]);
|
|
|
|
tcsetattr_stdin_TCSANOW(&G.termios);
|
2007-12-04 15:18:40 +05:30
|
|
|
}
|
2006-06-16 22:07:07 +05:30
|
|
|
}
|
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Disable timer */
|
2008-03-17 14:25:44 +05:30
|
|
|
alarm(0);
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Finalize the termios settings */
|
2011-01-24 09:13:04 +05:30
|
|
|
termios_final();
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Now the newline character should be properly written */
|
2008-05-19 15:18:17 +05:30
|
|
|
full_write(STDOUT_FILENO, "\n", 1);
|
2006-06-16 22:07:07 +05:30
|
|
|
|
2011-01-24 19:05:09 +05:30
|
|
|
/* Let the login program take care of password validation */
|
2007-12-04 15:18:40 +05:30
|
|
|
/* We use PATH because we trust that root doesn't set "bad" PATH,
|
2011-01-24 19:05:09 +05:30
|
|
|
* and getty is not suid-root applet */
|
2008-03-17 14:25:44 +05:30
|
|
|
/* With -n, logname == NULL, and login will ask for username instead */
|
2011-01-24 09:13:04 +05:30
|
|
|
BB_EXECLP(G.login, G.login, "--", logname, NULL);
|
|
|
|
bb_error_msg_and_die("can't execute '%s'", G.login);
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|