Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
| 4 | */ |
| 5 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 6 | #include "libbb.h" |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 7 | #include <syslog.h> |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 8 | #include <utmp.h> |
| 9 | #include <sys/resource.h> |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 10 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 11 | #if ENABLE_SELINUX |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 12 | #include <selinux/selinux.h> /* for is_selinux_enabled() */ |
| 13 | #include <selinux/get_context_list.h> /* for get_default_context() */ |
| 14 | #include <selinux/flask.h> /* for security class definitions */ |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 15 | #endif |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 16 | |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 17 | #if ENABLE_PAM |
Denis Vlasenko | c6c2345 | 2007-08-22 18:14:44 +0000 | [diff] [blame] | 18 | /* PAM may include <locale.h>. We may need to undefine bbox's stub define: */ |
| 19 | #undef setlocale |
| 20 | /* For some obscure reason, PAM is not in pam/xxx, but in security/xxx. |
| 21 | * Apparently they like to confuse people. */ |
| 22 | #include <security/pam_appl.h> |
| 23 | #include <security/pam_misc.h> |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 24 | static const struct pam_conv conv = { |
| 25 | misc_conv, |
| 26 | NULL |
| 27 | }; |
| 28 | #endif |
| 29 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 30 | enum { |
| 31 | TIMEOUT = 60, |
| 32 | EMPTY_USERNAME_COUNT = 10, |
| 33 | USERNAME_SIZE = 32, |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 34 | TTYNAME_SIZE = 32, |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 35 | }; |
Eric Andersen | 0fbff13 | 2002-06-22 17:49:29 +0000 | [diff] [blame] | 36 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 37 | static char* short_tty; |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 38 | |
| 39 | #if ENABLE_FEATURE_UTMP |
| 40 | /* vv Taken from tinylogin utmp.c vv */ |
| 41 | /* |
| 42 | * read_or_build_utent - see if utmp file is correct for this process |
| 43 | * |
| 44 | * System V is very picky about the contents of the utmp file |
| 45 | * and requires that a slot for the current process exist. |
| 46 | * The utmp file is scanned for an entry with the same process |
| 47 | * ID. If no entry exists the process exits with a message. |
| 48 | * |
| 49 | * The "picky" flag is for network and other logins that may |
| 50 | * use special flags. It allows the pid checks to be overridden. |
| 51 | * This means that getty should never invoke login with any |
| 52 | * command line flags. |
| 53 | */ |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 54 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 55 | static void read_or_build_utent(struct utmp *utptr, int picky) |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 56 | { |
| 57 | struct utmp *ut; |
| 58 | pid_t pid = getpid(); |
| 59 | |
| 60 | setutent(); |
| 61 | |
| 62 | /* First, try to find a valid utmp entry for this process. */ |
| 63 | while ((ut = getutent())) |
| 64 | if (ut->ut_pid == pid && ut->ut_line[0] && ut->ut_id[0] && |
| 65 | (ut->ut_type == LOGIN_PROCESS || ut->ut_type == USER_PROCESS)) |
| 66 | break; |
| 67 | |
| 68 | /* If there is one, just use it, otherwise create a new one. */ |
| 69 | if (ut) { |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 70 | *utptr = *ut; |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 71 | } else { |
| 72 | if (picky) |
| 73 | bb_error_msg_and_die("no utmp entry found"); |
| 74 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 75 | memset(utptr, 0, sizeof(*utptr)); |
| 76 | utptr->ut_type = LOGIN_PROCESS; |
| 77 | utptr->ut_pid = pid; |
| 78 | strncpy(utptr->ut_line, short_tty, sizeof(utptr->ut_line)); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 79 | /* This one is only 4 chars wide. Try to fit something |
| 80 | * remotely meaningful by skipping "tty"... */ |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 81 | strncpy(utptr->ut_id, short_tty + 3, sizeof(utptr->ut_id)); |
| 82 | strncpy(utptr->ut_user, "LOGIN", sizeof(utptr->ut_user)); |
Bernhard Reutner-Fischer | 62d8503 | 2008-06-01 10:10:22 +0000 | [diff] [blame^] | 83 | utptr->ut_tv.tv_sec = time(NULL); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 84 | } |
| 85 | if (!picky) /* root login */ |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 86 | memset(utptr->ut_host, 0, sizeof(utptr->ut_host)); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /* |
| 90 | * write_utent - put a USER_PROCESS entry in the utmp file |
| 91 | * |
| 92 | * write_utent changes the type of the current utmp entry to |
| 93 | * USER_PROCESS. the wtmp file will be updated as well. |
| 94 | */ |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 95 | static void write_utent(struct utmp *utptr, const char *username) |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 96 | { |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 97 | utptr->ut_type = USER_PROCESS; |
| 98 | strncpy(utptr->ut_user, username, sizeof(utptr->ut_user)); |
Bernhard Reutner-Fischer | 62d8503 | 2008-06-01 10:10:22 +0000 | [diff] [blame^] | 99 | utptr->ut_tv.tv_sec = time(NULL); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 100 | /* other fields already filled in by read_or_build_utent above */ |
| 101 | setutent(); |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 102 | pututline(utptr); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 103 | endutent(); |
| 104 | #if ENABLE_FEATURE_WTMP |
| 105 | if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) { |
| 106 | close(creat(bb_path_wtmp_file, 0664)); |
| 107 | } |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 108 | updwtmp(bb_path_wtmp_file, utptr); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 109 | #endif |
| 110 | } |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 111 | #else /* !ENABLE_FEATURE_UTMP */ |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 112 | #define read_or_build_utent(utptr, picky) ((void)0) |
| 113 | #define write_utent(utptr, username) ((void)0) |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 114 | #endif /* !ENABLE_FEATURE_UTMP */ |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 115 | |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 116 | #if ENABLE_FEATURE_NOLOGIN |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 117 | static void die_if_nologin(void) |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 118 | { |
| 119 | FILE *fp; |
| 120 | int c; |
| 121 | |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 122 | if (access("/etc/nologin", F_OK)) |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 123 | return; |
| 124 | |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 125 | fp = fopen("/etc/nologin", "r"); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 126 | if (fp) { |
| 127 | while ((c = getc(fp)) != EOF) |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 128 | bb_putchar((c=='\n') ? '\r' : c); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 129 | fflush(stdout); |
| 130 | fclose(fp); |
| 131 | } else |
| 132 | puts("\r\nSystem closed for routine maintenance\r"); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 133 | exit(EXIT_FAILURE); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 134 | } |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 135 | #else |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 136 | static ALWAYS_INLINE void die_if_nologin(void) {} |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 137 | #endif |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 139 | #if ENABLE_FEATURE_SECURETTY && !ENABLE_PAM |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 140 | static int check_securetty(void) |
| 141 | { |
| 142 | FILE *fp; |
| 143 | int i; |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 144 | char buf[256]; |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 145 | |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 146 | fp = fopen("/etc/securetty", "r"); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 147 | if (!fp) { |
| 148 | /* A missing securetty file is not an error. */ |
| 149 | return 1; |
| 150 | } |
| 151 | while (fgets(buf, sizeof(buf)-1, fp)) { |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 152 | for (i = strlen(buf)-1; i >= 0; --i) { |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 153 | if (!isspace(buf[i])) |
| 154 | break; |
| 155 | } |
| 156 | buf[++i] = '\0'; |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 157 | if (!buf[0] || (buf[0] == '#')) |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 158 | continue; |
| 159 | if (strcmp(buf, short_tty) == 0) { |
| 160 | fclose(fp); |
| 161 | return 1; |
| 162 | } |
| 163 | } |
| 164 | fclose(fp); |
| 165 | return 0; |
| 166 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 167 | #else |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 168 | static ALWAYS_INLINE int check_securetty(void) { return 1; } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 169 | #endif |
| 170 | |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 171 | static void get_username_or_die(char *buf, int size_buf) |
| 172 | { |
| 173 | int c, cntdown; |
Denis Vlasenko | d8540f7 | 2007-06-14 07:53:06 +0000 | [diff] [blame] | 174 | |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 175 | cntdown = EMPTY_USERNAME_COUNT; |
Denis Vlasenko | d8540f7 | 2007-06-14 07:53:06 +0000 | [diff] [blame] | 176 | prompt: |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 177 | print_login_prompt(); |
Denis Vlasenko | d8540f7 | 2007-06-14 07:53:06 +0000 | [diff] [blame] | 178 | /* skip whitespace */ |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 179 | do { |
| 180 | c = getchar(); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 181 | if (c == EOF) exit(EXIT_FAILURE); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 182 | if (c == '\n') { |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 183 | if (!--cntdown) exit(EXIT_FAILURE); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 184 | goto prompt; |
| 185 | } |
| 186 | } while (isspace(c)); |
| 187 | |
| 188 | *buf++ = c; |
| 189 | if (!fgets(buf, size_buf-2, stdin)) |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 190 | exit(EXIT_FAILURE); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 191 | if (!strchr(buf, '\n')) |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 192 | exit(EXIT_FAILURE); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 193 | while (isgraph(*buf)) buf++; |
| 194 | *buf = '\0'; |
| 195 | } |
| 196 | |
| 197 | static void motd(void) |
| 198 | { |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 199 | int fd; |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 200 | |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 201 | fd = open(bb_path_motd_file, O_RDONLY); |
Denis Vlasenko | 5281630 | 2007-11-06 05:26:51 +0000 | [diff] [blame] | 202 | if (fd >= 0) { |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 203 | fflush(stdout); |
| 204 | bb_copyfd_eof(fd, STDOUT_FILENO); |
| 205 | close(fd); |
Denis Vlasenko | 7ccf5cc | 2006-09-14 17:03:18 +0000 | [diff] [blame] | 206 | } |
| 207 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 208 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 209 | static void alarm_handler(int sig ATTRIBUTE_UNUSED) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 210 | { |
Denis Vlasenko | 2f50aa4 | 2006-09-08 17:56:52 +0000 | [diff] [blame] | 211 | /* This is the escape hatch! Poor serial line users and the like |
| 212 | * arrive here when their connection is broken. |
| 213 | * We don't want to block here */ |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 214 | ndelay_on(1); |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 215 | printf("\r\nLogin timed out after %d seconds\r\n", TIMEOUT); |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 216 | fflush(stdout); |
Denis Vlasenko | 5281630 | 2007-11-06 05:26:51 +0000 | [diff] [blame] | 217 | /* unix API is brain damaged regarding O_NONBLOCK, |
| 218 | * we should undo it, or else we can affect other processes */ |
| 219 | ndelay_off(1); |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 220 | _exit(EXIT_SUCCESS); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 223 | int login_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 224 | int login_main(int argc ATTRIBUTE_UNUSED, char **argv) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 225 | { |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 226 | enum { |
| 227 | LOGIN_OPT_f = (1<<0), |
| 228 | LOGIN_OPT_h = (1<<1), |
| 229 | LOGIN_OPT_p = (1<<2), |
| 230 | }; |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 231 | char *fromhost; |
Eric Andersen | 0fbff13 | 2002-06-22 17:49:29 +0000 | [diff] [blame] | 232 | char username[USERNAME_SIZE]; |
Glenn L McGrath | dc4e75e | 2003-09-02 02:36:18 +0000 | [diff] [blame] | 233 | const char *tmp; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 234 | int amroot; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 235 | unsigned opt; |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 236 | int count = 0; |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 237 | struct passwd *pw; |
Denis Vlasenko | cdf6277 | 2008-03-17 08:42:43 +0000 | [diff] [blame] | 238 | char *opt_host = opt_host; /* for compiler */ |
| 239 | char *opt_user = opt_user; /* for compiler */ |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 240 | char full_tty[TTYNAME_SIZE]; |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 241 | USE_SELINUX(security_context_t user_sid = NULL;) |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 242 | USE_FEATURE_UTMP(struct utmp utent;) |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 243 | #if ENABLE_PAM |
| 244 | int pamret; |
| 245 | pam_handle_t *pamh; |
| 246 | const char *pamuser; |
| 247 | const char *failed_msg; |
| 248 | struct passwd pwdstruct; |
| 249 | char pwdbuf[256]; |
| 250 | #endif |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 251 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 252 | short_tty = full_tty; |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 253 | username[0] = '\0'; |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 254 | signal(SIGALRM, alarm_handler); |
| 255 | alarm(TIMEOUT); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 256 | |
Denis Vlasenko | c9ca0a3 | 2008-02-18 11:08:33 +0000 | [diff] [blame] | 257 | /* More of suid paranoia if called by non-root */ |
| 258 | amroot = !sanitize_env_if_suid(); /* Clear dangerous stuff, set PATH */ |
| 259 | |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 260 | /* Mandatory paranoia for suid applet: |
| 261 | * ensure that fd# 0,1,2 are opened (at least to /dev/null) |
| 262 | * and any extra open fd's are closed. |
| 263 | * (The name of the function is misleading. Not daemonizing here.) */ |
| 264 | bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE | DAEMON_CLOSE_EXTRA_FDS, NULL); |
| 265 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 266 | opt = getopt32(argv, "f:h:p", &opt_user, &opt_host); |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 267 | if (opt & LOGIN_OPT_f) { |
| 268 | if (!amroot) |
| 269 | bb_error_msg_and_die("-f is for root only"); |
Denis Vlasenko | 22f6dcb | 2006-09-26 16:31:01 +0000 | [diff] [blame] | 270 | safe_strncpy(username, opt_user, sizeof(username)); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 271 | } |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 272 | argv += optind; |
| 273 | if (argv[0]) /* user from command line (getty) */ |
| 274 | safe_strncpy(username, argv[0], sizeof(username)); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 275 | |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 276 | /* Let's find out and memorize our tty */ |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 277 | if (!isatty(0) || !isatty(1) || !isatty(2)) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 278 | return EXIT_FAILURE; /* Must be a terminal */ |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 279 | safe_strncpy(full_tty, "UNKNOWN", sizeof(full_tty)); |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 280 | tmp = ttyname(0); |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 281 | if (tmp) { |
| 282 | safe_strncpy(full_tty, tmp, sizeof(full_tty)); |
| 283 | if (strncmp(full_tty, "/dev/", 5) == 0) |
| 284 | short_tty = full_tty + 5; |
| 285 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 286 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 287 | read_or_build_utent(&utent, !amroot); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 288 | |
Denis Vlasenko | cdf6277 | 2008-03-17 08:42:43 +0000 | [diff] [blame] | 289 | if (opt & LOGIN_OPT_h) { |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 290 | USE_FEATURE_UTMP( |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 291 | safe_strncpy(utent.ut_host, opt_host, sizeof(utent.ut_host)); |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 292 | ) |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 293 | fromhost = xasprintf(" on '%s' from '%s'", short_tty, opt_host); |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 294 | } else |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 295 | fromhost = xasprintf(" on '%s'", short_tty); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 296 | |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 297 | /* Was breaking "login <username>" from shell command line: */ |
| 298 | /*bb_setpgrp();*/ |
Eric Andersen | 0fbff13 | 2002-06-22 17:49:29 +0000 | [diff] [blame] | 299 | |
Denis Vlasenko | 8f8f268 | 2006-10-03 21:00:43 +0000 | [diff] [blame] | 300 | openlog(applet_name, LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 301 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 302 | while (1) { |
Paul Fox | 6e1b62b | 2007-11-07 15:51:35 +0000 | [diff] [blame] | 303 | /* flush away any type-ahead (as getty does) */ |
Denis Vlasenko | abbd363 | 2007-11-08 17:40:23 +0000 | [diff] [blame] | 304 | ioctl(0, TCFLSH, TCIFLUSH); |
Paul Fox | 6e1b62b | 2007-11-07 15:51:35 +0000 | [diff] [blame] | 305 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 306 | if (!username[0]) |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 307 | get_username_or_die(username, sizeof(username)); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 308 | |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 309 | #if ENABLE_PAM |
| 310 | pamret = pam_start("login", username, &conv, &pamh); |
| 311 | if (pamret != PAM_SUCCESS) { |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 312 | failed_msg = "start"; |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 313 | goto pam_auth_failed; |
| 314 | } |
| 315 | /* set TTY (so things like securetty work) */ |
| 316 | pamret = pam_set_item(pamh, PAM_TTY, short_tty); |
| 317 | if (pamret != PAM_SUCCESS) { |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 318 | failed_msg = "set_item(TTY)"; |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 319 | goto pam_auth_failed; |
| 320 | } |
| 321 | pamret = pam_authenticate(pamh, 0); |
Denis Vlasenko | 82f3b16 | 2007-09-03 11:56:27 +0000 | [diff] [blame] | 322 | if (pamret != PAM_SUCCESS) { |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 323 | failed_msg = "authenticate"; |
Denis Vlasenko | 82f3b16 | 2007-09-03 11:56:27 +0000 | [diff] [blame] | 324 | goto pam_auth_failed; |
| 325 | /* TODO: or just "goto auth_failed" |
| 326 | * since user seems to enter wrong password |
| 327 | * (in this case pamret == 7) |
| 328 | */ |
| 329 | } |
| 330 | /* check that the account is healthy */ |
| 331 | pamret = pam_acct_mgmt(pamh, 0); |
| 332 | if (pamret != PAM_SUCCESS) { |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 333 | failed_msg = "acct_mgmt"; |
Denis Vlasenko | 82f3b16 | 2007-09-03 11:56:27 +0000 | [diff] [blame] | 334 | goto pam_auth_failed; |
| 335 | } |
| 336 | /* read user back */ |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 337 | pamuser = NULL; |
| 338 | /* gcc: "dereferencing type-punned pointer breaks aliasing rules..." |
| 339 | * thus we cast to (void*) */ |
| 340 | if (pam_get_item(pamh, PAM_USER, (void*)&pamuser) != PAM_SUCCESS) { |
| 341 | failed_msg = "get_item(USER)"; |
| 342 | goto pam_auth_failed; |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 343 | } |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 344 | if (!pamuser || !pamuser[0]) |
| 345 | goto auth_failed; |
| 346 | safe_strncpy(username, pamuser, sizeof(username)); |
| 347 | /* Don't use "pw = getpwnam(username);", |
| 348 | * PAM is said to be capable of destroying static storage |
| 349 | * used by getpwnam(). We are using safe(r) function */ |
| 350 | pw = NULL; |
| 351 | getpwnam_r(username, &pwdstruct, pwdbuf, sizeof(pwdbuf), &pw); |
| 352 | if (!pw) |
| 353 | goto auth_failed; |
| 354 | pamret = pam_open_session(pamh, 0); |
| 355 | if (pamret != PAM_SUCCESS) { |
| 356 | failed_msg = "open_session"; |
| 357 | goto pam_auth_failed; |
| 358 | } |
| 359 | pamret = pam_setcred(pamh, PAM_ESTABLISH_CRED); |
| 360 | if (pamret != PAM_SUCCESS) { |
| 361 | failed_msg = "setcred"; |
| 362 | goto pam_auth_failed; |
| 363 | } |
| 364 | break; /* success, continue login process */ |
| 365 | |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 366 | pam_auth_failed: |
Denis Vlasenko | a29a5e4 | 2007-11-07 00:23:47 +0000 | [diff] [blame] | 367 | bb_error_msg("pam_%s call failed: %s (%d)", failed_msg, |
| 368 | pam_strerror(pamh, pamret), pamret); |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 369 | safe_strncpy(username, "UNKNOWN", sizeof(username)); |
| 370 | #else /* not PAM */ |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 371 | pw = getpwnam(username); |
| 372 | if (!pw) { |
Denis Vlasenko | 65e14b4 | 2007-06-08 15:27:06 +0000 | [diff] [blame] | 373 | strcpy(username, "UNKNOWN"); |
| 374 | goto fake_it; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 377 | if (pw->pw_passwd[0] == '!' || pw->pw_passwd[0] == '*') |
| 378 | goto auth_failed; |
| 379 | |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 380 | if (opt & LOGIN_OPT_f) |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 381 | break; /* -f USER: success without asking passwd */ |
| 382 | |
| 383 | if (pw->pw_uid == 0 && !check_securetty()) |
| 384 | goto auth_failed; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 385 | |
| 386 | /* Don't check the password if password entry is empty (!) */ |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 387 | if (!pw->pw_passwd[0]) |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 388 | break; |
Denis Vlasenko | 65e14b4 | 2007-06-08 15:27:06 +0000 | [diff] [blame] | 389 | fake_it: |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 390 | /* authorization takes place here */ |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 391 | if (correct_password(pw)) |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 392 | break; |
Denis Vlasenko | d6e81c7 | 2007-08-21 10:58:18 +0000 | [diff] [blame] | 393 | #endif /* ENABLE_PAM */ |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 394 | auth_failed: |
Denis Vlasenko | 66fabdb | 2006-09-17 14:45:09 +0000 | [diff] [blame] | 395 | opt &= ~LOGIN_OPT_f; |
Rob Landley | 84cb767 | 2006-01-06 20:59:09 +0000 | [diff] [blame] | 396 | bb_do_delay(FAIL_DELAY); |
Denis Vlasenko | 82f3b16 | 2007-09-03 11:56:27 +0000 | [diff] [blame] | 397 | /* TODO: doesn't sound like correct English phrase to me */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 398 | puts("Login incorrect"); |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 399 | if (++count == 3) { |
Denis Vlasenko | 89f0b34 | 2006-11-18 22:04:09 +0000 | [diff] [blame] | 400 | syslog(LOG_WARNING, "invalid password for '%s'%s", |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 401 | username, fromhost); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 402 | return EXIT_FAILURE; |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 403 | } |
Denis Vlasenko | 9a9edf2 | 2006-09-08 17:29:53 +0000 | [diff] [blame] | 404 | username[0] = '\0'; |
Eric Andersen | 0fbff13 | 2002-06-22 17:49:29 +0000 | [diff] [blame] | 405 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 406 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 407 | alarm(0); |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 408 | if (!amroot) |
| 409 | die_if_nologin(); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 410 | |
Denis Vlasenko | c0415a9 | 2007-03-24 17:04:07 +0000 | [diff] [blame] | 411 | write_utent(&utent, username); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 412 | |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 413 | #if ENABLE_SELINUX |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 414 | if (is_selinux_enabled()) { |
Rob Landley | d1f8c1c | 2006-03-27 23:04:42 +0000 | [diff] [blame] | 415 | security_context_t old_tty_sid, new_tty_sid; |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 416 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 417 | if (get_default_context(username, NULL, &user_sid)) { |
Denis Vlasenko | 89f0b34 | 2006-11-18 22:04:09 +0000 | [diff] [blame] | 418 | bb_error_msg_and_die("cannot get SID for %s", |
Denis Vlasenko | 6bbd174 | 2006-09-08 17:26:20 +0000 | [diff] [blame] | 419 | username); |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 420 | } |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 421 | if (getfilecon(full_tty, &old_tty_sid) < 0) { |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 422 | bb_perror_msg_and_die("getfilecon(%s) failed", |
Denis Vlasenko | 6bbd174 | 2006-09-08 17:26:20 +0000 | [diff] [blame] | 423 | full_tty); |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 424 | } |
Denis Vlasenko | 6bbd174 | 2006-09-08 17:26:20 +0000 | [diff] [blame] | 425 | if (security_compute_relabel(user_sid, old_tty_sid, |
| 426 | SECCLASS_CHR_FILE, &new_tty_sid) != 0) { |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 427 | bb_perror_msg_and_die("security_change_sid(%s) failed", |
Denis Vlasenko | 6bbd174 | 2006-09-08 17:26:20 +0000 | [diff] [blame] | 428 | full_tty); |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 429 | } |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 430 | if (setfilecon(full_tty, new_tty_sid) != 0) { |
Denis Vlasenko | 4a5cf16 | 2006-11-20 00:48:22 +0000 | [diff] [blame] | 431 | bb_perror_msg_and_die("chsid(%s, %s) failed", |
Denis Vlasenko | 6bbd174 | 2006-09-08 17:26:20 +0000 | [diff] [blame] | 432 | full_tty, new_tty_sid); |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 433 | } |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 434 | } |
| 435 | #endif |
Denis Vlasenko | 2f50aa4 | 2006-09-08 17:56:52 +0000 | [diff] [blame] | 436 | /* Try these, but don't complain if they fail. |
| 437 | * _f_chown is safe wrt race t=ttyname(0);...;chown(t); */ |
| 438 | fchown(0, pw->pw_uid, pw->pw_gid); |
| 439 | fchmod(0, 0600); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 440 | |
Denis Vlasenko | 5281630 | 2007-11-06 05:26:51 +0000 | [diff] [blame] | 441 | /* We trust environment only if we run by root */ |
| 442 | if (ENABLE_LOGIN_SCRIPTS && amroot) { |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 443 | char *t_argv[2]; |
| 444 | |
| 445 | t_argv[0] = getenv("LOGIN_PRE_SUID_SCRIPT"); |
| 446 | if (t_argv[0]) { |
| 447 | t_argv[1] = NULL; |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 448 | xsetenv("LOGIN_TTY", full_tty); |
| 449 | xsetenv("LOGIN_USER", pw->pw_name); |
| 450 | xsetenv("LOGIN_UID", utoa(pw->pw_uid)); |
| 451 | xsetenv("LOGIN_GID", utoa(pw->pw_gid)); |
| 452 | xsetenv("LOGIN_SHELL", pw->pw_shell); |
Denis Vlasenko | cdf6277 | 2008-03-17 08:42:43 +0000 | [diff] [blame] | 453 | spawn_and_wait(t_argv); /* NOMMU-friendly */ |
| 454 | unsetenv("LOGIN_TTY" ); |
| 455 | unsetenv("LOGIN_USER" ); |
| 456 | unsetenv("LOGIN_UID" ); |
| 457 | unsetenv("LOGIN_GID" ); |
| 458 | unsetenv("LOGIN_SHELL"); |
Denis Vlasenko | 2e50291 | 2006-09-08 17:22:45 +0000 | [diff] [blame] | 459 | } |
| 460 | } |
| 461 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 462 | change_identity(pw); |
| 463 | tmp = pw->pw_shell; |
| 464 | if (!tmp || !*tmp) |
Glenn L McGrath | dc4e75e | 2003-09-02 02:36:18 +0000 | [diff] [blame] | 465 | tmp = DEFAULT_SHELL; |
Denis Vlasenko | cdf6277 | 2008-03-17 08:42:43 +0000 | [diff] [blame] | 466 | /* setup_environment params: shell, clear_env, change_env, pw */ |
| 467 | setup_environment(tmp, !(opt & LOGIN_OPT_p), 1, pw); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 468 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 469 | motd(); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 470 | |
Denis Vlasenko | 942e429 | 2006-09-08 17:25:04 +0000 | [diff] [blame] | 471 | if (pw->pw_uid == 0) |
Denis Vlasenko | 2f50aa4 | 2006-09-08 17:56:52 +0000 | [diff] [blame] | 472 | syslog(LOG_INFO, "root login%s", fromhost); |
Denis Vlasenko | f312e32 | 2007-06-12 22:04:57 +0000 | [diff] [blame] | 473 | #if ENABLE_SELINUX |
Rob Landley | d1f8c1c | 2006-03-27 23:04:42 +0000 | [diff] [blame] | 474 | /* well, a simple setexeccon() here would do the job as well, |
| 475 | * but let's play the game for now */ |
| 476 | set_current_security_context(user_sid); |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 477 | #endif |
Denis Vlasenko | 6ae8079 | 2006-10-31 17:34:44 +0000 | [diff] [blame] | 478 | |
| 479 | // util-linux login also does: |
| 480 | // /* start new session */ |
| 481 | // setsid(); |
| 482 | // /* TIOCSCTTY: steal tty from other process group */ |
| 483 | // if (ioctl(0, TIOCSCTTY, 1)) error_msg... |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 484 | // BBox login used to do this (see above): |
| 485 | // bb_setpgrp(); |
| 486 | // If this stuff is really needed, add it and explain why! |
Denis Vlasenko | 6ae8079 | 2006-10-31 17:34:44 +0000 | [diff] [blame] | 487 | |
Denis Vlasenko | 8c76487 | 2006-10-31 18:30:56 +0000 | [diff] [blame] | 488 | /* set signals to defaults */ |
| 489 | signal(SIGALRM, SIG_DFL); |
| 490 | /* Is this correct? This way user can ctrl-c out of /etc/profile, |
| 491 | * potentially creating security breach (tested with bash 3.0). |
| 492 | * But without this, bash 3.0 will not enable ctrl-c either. |
| 493 | * Maybe bash is buggy? |
| 494 | * Need to find out what standards say about /bin/login - |
| 495 | * should it leave SIGINT etc enabled or disabled? */ |
Denis Vlasenko | 6ae8079 | 2006-10-31 17:34:44 +0000 | [diff] [blame] | 496 | signal(SIGINT, SIG_DFL); |
| 497 | |
Denis Vlasenko | a2f6101 | 2007-09-10 13:15:28 +0000 | [diff] [blame] | 498 | /* Exec login shell with no additional parameters */ |
| 499 | run_shell(tmp, 1, NULL, NULL); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 500 | |
Denis Vlasenko | a2f6101 | 2007-09-10 13:15:28 +0000 | [diff] [blame] | 501 | /* return EXIT_FAILURE; - not reached */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 502 | } |