d9e9b532b60b2b1e785dfd59294f71f653bb06f2
[oweals/busybox.git] / loginutils / login.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
4  */
5
6 #include "libbb.h"
7 #include <syslog.h>
8 #include <utmp.h>
9 #include <sys/resource.h>
10
11 #if ENABLE_SELINUX
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  */
15 #endif
16
17 #if ENABLE_PAM
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>
24 static const struct pam_conv conv = {
25         misc_conv,
26         NULL
27 };
28 #endif
29
30 enum {
31         TIMEOUT = 60,
32         EMPTY_USERNAME_COUNT = 10,
33         USERNAME_SIZE = 32,
34         TTYNAME_SIZE = 32,
35 };
36
37 static char* short_tty;
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  */
54
55 static void read_or_build_utent(struct utmp *utptr, int run_by_root)
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         /* If there is one, just use it.  */
64         while ((ut = getutent()) != NULL)
65                 if (ut->ut_pid == pid && ut->ut_line[0] && ut->ut_id[0]
66                  && (ut->ut_type == LOGIN_PROCESS || ut->ut_type == USER_PROCESS)
67                 ) {
68                         *utptr = *ut; /* struct copy */
69                         if (run_by_root) /* why only for root? */
70                                 memset(utptr->ut_host, 0, sizeof(utptr->ut_host));
71                         return;
72                 }
73
74 // Why? Do we require non-root to exec login from another
75 // former login process (e.g. login shell)? Some login's have
76 // login shells as children, so it won't work...
77 //      if (!run_by_root)
78 //              bb_error_msg_and_die("no utmp entry found");
79
80         /* Otherwise create a new one.  */
81         memset(utptr, 0, sizeof(*utptr));
82         utptr->ut_type = LOGIN_PROCESS;
83         utptr->ut_pid = pid;
84         strncpy(utptr->ut_line, short_tty, sizeof(utptr->ut_line));
85         /* This one is only 4 chars wide. Try to fit something
86          * remotely meaningful by skipping "tty"... */
87         strncpy(utptr->ut_id, short_tty + 3, sizeof(utptr->ut_id));
88         strncpy(utptr->ut_user, "LOGIN", sizeof(utptr->ut_user));
89         utptr->ut_tv.tv_sec = time(NULL);
90 }
91
92 /*
93  * write_utent - put a USER_PROCESS entry in the utmp file
94  *
95  *      write_utent changes the type of the current utmp entry to
96  *      USER_PROCESS.  the wtmp file will be updated as well.
97  */
98 static void write_utent(struct utmp *utptr, const char *username)
99 {
100         utptr->ut_type = USER_PROCESS;
101         strncpy(utptr->ut_user, username, sizeof(utptr->ut_user));
102         utptr->ut_tv.tv_sec = time(NULL);
103         /* other fields already filled in by read_or_build_utent above */
104         setutent();
105         pututline(utptr);
106         endutent();
107 #if ENABLE_FEATURE_WTMP
108         if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
109                 close(creat(bb_path_wtmp_file, 0664));
110         }
111         updwtmp(bb_path_wtmp_file, utptr);
112 #endif
113 }
114 #else /* !ENABLE_FEATURE_UTMP */
115 #define read_or_build_utent(utptr, run_by_root) ((void)0)
116 #define write_utent(utptr, username) ((void)0)
117 #endif /* !ENABLE_FEATURE_UTMP */
118
119 #if ENABLE_FEATURE_NOLOGIN
120 static void die_if_nologin(void)
121 {
122         FILE *fp;
123         int c;
124         int empty = 1;
125
126         fp = fopen_for_read("/etc/nologin");
127         if (!fp) /* assuming it does not exist */
128                 return;
129
130         while ((c = getc(fp)) != EOF) {
131                 if (c == '\n')
132                         bb_putchar('\r');
133                 bb_putchar(c);
134                 empty = 0;
135         }
136         if (empty)
137                 puts("\r\nSystem closed for routine maintenance\r");
138
139         fclose(fp);
140         fflush(NULL);
141         /* Users say that they do need this prior to exit: */
142         tcdrain(STDOUT_FILENO);
143         exit(EXIT_FAILURE);
144 }
145 #else
146 static ALWAYS_INLINE void die_if_nologin(void) {}
147 #endif
148
149 #if ENABLE_FEATURE_SECURETTY && !ENABLE_PAM
150 static int check_securetty(void)
151 {
152         char *buf = (char*)"/etc/securetty"; /* any non-NULL is ok */
153         parser_t *parser = config_open2("/etc/securetty", fopen_for_read);
154         while (config_read(parser, &buf, 1, 1, "# \t", PARSE_NORMAL)) {
155                 if (strcmp(buf, short_tty) == 0)
156                         break;
157                 buf = NULL;
158         }
159         config_close(parser);
160         /* buf != NULL here if config file was not found, empty
161          * or line was found which equals short_tty */
162         return buf != NULL;
163 }
164 #else
165 static ALWAYS_INLINE int check_securetty(void) { return 1; }
166 #endif
167
168 #if ENABLE_SELINUX
169 static void initselinux(char *username, char *full_tty,
170                                                 security_context_t *user_sid)
171 {
172         security_context_t old_tty_sid, new_tty_sid;
173
174         if (!is_selinux_enabled())
175                 return;
176
177         if (get_default_context(username, NULL, user_sid)) {
178                 bb_error_msg_and_die("cannot get SID for %s", username);
179         }
180         if (getfilecon(full_tty, &old_tty_sid) < 0) {
181                 bb_perror_msg_and_die("getfilecon(%s) failed", full_tty);
182         }
183         if (security_compute_relabel(user_sid, old_tty_sid,
184                                 SECCLASS_CHR_FILE, &new_tty_sid) != 0) {
185                 bb_perror_msg_and_die("security_change_sid(%s) failed", full_tty);
186         }
187         if (setfilecon(full_tty, new_tty_sid) != 0) {
188                 bb_perror_msg_and_die("chsid(%s, %s) failed", full_tty, new_tty_sid);
189         }
190 }
191 #endif
192
193 #if ENABLE_LOGIN_SCRIPTS
194 static void run_login_script(struct passwd *pw, char *full_tty)
195 {
196         char *t_argv[2];
197
198         t_argv[0] = getenv("LOGIN_PRE_SUID_SCRIPT");
199         if (t_argv[0]) {
200                 t_argv[1] = NULL;
201                 xsetenv("LOGIN_TTY", full_tty);
202                 xsetenv("LOGIN_USER", pw->pw_name);
203                 xsetenv("LOGIN_UID", utoa(pw->pw_uid));
204                 xsetenv("LOGIN_GID", utoa(pw->pw_gid));
205                 xsetenv("LOGIN_SHELL", pw->pw_shell);
206                 spawn_and_wait(t_argv); /* NOMMU-friendly */
207                 unsetenv("LOGIN_TTY");
208                 unsetenv("LOGIN_USER");
209                 unsetenv("LOGIN_UID");
210                 unsetenv("LOGIN_GID");
211                 unsetenv("LOGIN_SHELL");
212         }
213 }
214 #else
215 void run_login_script(struct passwd *pw, char *full_tty);
216 #endif
217
218 static void get_username_or_die(char *buf, int size_buf)
219 {
220         int c, cntdown;
221
222         cntdown = EMPTY_USERNAME_COUNT;
223  prompt:
224         print_login_prompt();
225         /* skip whitespace */
226         do {
227                 c = getchar();
228                 if (c == EOF) exit(EXIT_FAILURE);
229                 if (c == '\n') {
230                         if (!--cntdown) exit(EXIT_FAILURE);
231                         goto prompt;
232                 }
233         } while (isspace(c));
234
235         *buf++ = c;
236         if (!fgets(buf, size_buf-2, stdin))
237                 exit(EXIT_FAILURE);
238         if (!strchr(buf, '\n'))
239                 exit(EXIT_FAILURE);
240         while (isgraph(*buf)) buf++;
241         *buf = '\0';
242 }
243
244 static void motd(void)
245 {
246         int fd;
247
248         fd = open(bb_path_motd_file, O_RDONLY);
249         if (fd >= 0) {
250                 fflush(stdout);
251                 bb_copyfd_eof(fd, STDOUT_FILENO);
252                 close(fd);
253         }
254 }
255
256 static void alarm_handler(int sig UNUSED_PARAM)
257 {
258         /* This is the escape hatch!  Poor serial line users and the like
259          * arrive here when their connection is broken.
260          * We don't want to block here */
261         ndelay_on(1);
262         printf("\r\nLogin timed out after %d seconds\r\n", TIMEOUT);
263         fflush(stdout);
264         /* unix API is brain damaged regarding O_NONBLOCK,
265          * we should undo it, or else we can affect other processes */
266         ndelay_off(1);
267         _exit(EXIT_SUCCESS);
268 }
269
270 int login_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
271 int login_main(int argc UNUSED_PARAM, char **argv)
272 {
273         enum {
274                 LOGIN_OPT_f = (1<<0),
275                 LOGIN_OPT_h = (1<<1),
276                 LOGIN_OPT_p = (1<<2),
277         };
278         char *fromhost;
279         char username[USERNAME_SIZE];
280         const char *tmp;
281         int run_by_root;
282         unsigned opt;
283         int count = 0;
284         struct passwd *pw;
285         char *opt_host = opt_host; /* for compiler */
286         char *opt_user = opt_user; /* for compiler */
287         char full_tty[TTYNAME_SIZE];
288         USE_SELINUX(security_context_t user_sid = NULL;)
289         USE_FEATURE_UTMP(struct utmp utent;)
290 #if ENABLE_PAM
291         int pamret;
292         pam_handle_t *pamh;
293         const char *pamuser;
294         const char *failed_msg;
295         struct passwd pwdstruct;
296         char pwdbuf[256];
297 #endif
298
299         short_tty = full_tty;
300         username[0] = '\0';
301         signal(SIGALRM, alarm_handler);
302         alarm(TIMEOUT);
303
304         /* More of suid paranoia if called by non-root: */
305         /* Clear dangerous stuff, set PATH */
306         run_by_root = !sanitize_env_if_suid();
307
308         /* Mandatory paranoia for suid applet:
309          * ensure that fd# 0,1,2 are opened (at least to /dev/null)
310          * and any extra open fd's are closed.
311          * (The name of the function is misleading. Not daemonizing here.) */
312         bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE | DAEMON_CLOSE_EXTRA_FDS, NULL);
313
314         opt = getopt32(argv, "f:h:p", &opt_user, &opt_host);
315         if (opt & LOGIN_OPT_f) {
316                 if (!run_by_root)
317                         bb_error_msg_and_die("-f is for root only");
318                 safe_strncpy(username, opt_user, sizeof(username));
319         }
320         argv += optind;
321         if (argv[0]) /* user from command line (getty) */
322                 safe_strncpy(username, argv[0], sizeof(username));
323
324         /* Let's find out and memorize our tty */
325         if (!isatty(0) || !isatty(1) || !isatty(2))
326                 return EXIT_FAILURE;            /* Must be a terminal */
327         safe_strncpy(full_tty, "UNKNOWN", sizeof(full_tty));
328         tmp = xmalloc_ttyname(STDIN_FILENO);
329         if (tmp) {
330                 safe_strncpy(full_tty, tmp, sizeof(full_tty));
331                 if (strncmp(full_tty, "/dev/", 5) == 0)
332                         short_tty = full_tty + 5;
333         }
334
335         read_or_build_utent(&utent, run_by_root);
336
337         if (opt & LOGIN_OPT_h) {
338                 USE_FEATURE_UTMP(safe_strncpy(utent.ut_host, opt_host, sizeof(utent.ut_host));)
339                 fromhost = xasprintf(" on '%s' from '%s'", short_tty, opt_host);
340         } else {
341                 fromhost = xasprintf(" on '%s'", short_tty);
342         }
343
344         /* Was breaking "login <username>" from shell command line: */
345         /*bb_setpgrp();*/
346
347         openlog(applet_name, LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH);
348
349         while (1) {
350                 /* flush away any type-ahead (as getty does) */
351                 ioctl(0, TCFLSH, TCIFLUSH);
352
353                 if (!username[0])
354                         get_username_or_die(username, sizeof(username));
355
356 #if ENABLE_PAM
357                 pamret = pam_start("login", username, &conv, &pamh);
358                 if (pamret != PAM_SUCCESS) {
359                         failed_msg = "start";
360                         goto pam_auth_failed;
361                 }
362                 /* set TTY (so things like securetty work) */
363                 pamret = pam_set_item(pamh, PAM_TTY, short_tty);
364                 if (pamret != PAM_SUCCESS) {
365                         failed_msg = "set_item(TTY)";
366                         goto pam_auth_failed;
367                 }
368                 pamret = pam_authenticate(pamh, 0);
369                 if (pamret != PAM_SUCCESS) {
370                         failed_msg = "authenticate";
371                         goto pam_auth_failed;
372                         /* TODO: or just "goto auth_failed"
373                          * since user seems to enter wrong password
374                          * (in this case pamret == 7)
375                          */
376                 }
377                 /* check that the account is healthy */
378                 pamret = pam_acct_mgmt(pamh, 0);
379                 if (pamret != PAM_SUCCESS) {
380                         failed_msg = "acct_mgmt";
381                         goto pam_auth_failed;
382                 }
383                 /* read user back */
384                 pamuser = NULL;
385                 /* gcc: "dereferencing type-punned pointer breaks aliasing rules..."
386                  * thus we cast to (void*) */
387                 if (pam_get_item(pamh, PAM_USER, (void*)&pamuser) != PAM_SUCCESS) {
388                         failed_msg = "get_item(USER)";
389                         goto pam_auth_failed;
390                 }
391                 if (!pamuser || !pamuser[0])
392                         goto auth_failed;
393                 safe_strncpy(username, pamuser, sizeof(username));
394                 /* Don't use "pw = getpwnam(username);",
395                  * PAM is said to be capable of destroying static storage
396                  * used by getpwnam(). We are using safe(r) function */
397                 pw = NULL;
398                 getpwnam_r(username, &pwdstruct, pwdbuf, sizeof(pwdbuf), &pw);
399                 if (!pw)
400                         goto auth_failed;
401                 pamret = pam_open_session(pamh, 0);
402                 if (pamret != PAM_SUCCESS) {
403                         failed_msg = "open_session";
404                         goto pam_auth_failed;
405                 }
406                 pamret = pam_setcred(pamh, PAM_ESTABLISH_CRED);
407                 if (pamret != PAM_SUCCESS) {
408                         failed_msg = "setcred";
409                         goto pam_auth_failed;
410                 }
411                 break; /* success, continue login process */
412
413  pam_auth_failed:
414                 bb_error_msg("pam_%s call failed: %s (%d)", failed_msg,
415                                         pam_strerror(pamh, pamret), pamret);
416                 safe_strncpy(username, "UNKNOWN", sizeof(username));
417 #else /* not PAM */
418                 pw = getpwnam(username);
419                 if (!pw) {
420                         strcpy(username, "UNKNOWN");
421                         goto fake_it;
422                 }
423
424                 if (pw->pw_passwd[0] == '!' || pw->pw_passwd[0] == '*')
425                         goto auth_failed;
426
427                 if (opt & LOGIN_OPT_f)
428                         break; /* -f USER: success without asking passwd */
429
430                 if (pw->pw_uid == 0 && !check_securetty())
431                         goto auth_failed;
432
433                 /* Don't check the password if password entry is empty (!) */
434                 if (!pw->pw_passwd[0])
435                         break;
436  fake_it:
437                 /* authorization takes place here */
438                 if (correct_password(pw))
439                         break;
440 #endif /* ENABLE_PAM */
441  auth_failed:
442                 opt &= ~LOGIN_OPT_f;
443                 bb_do_delay(FAIL_DELAY);
444                 /* TODO: doesn't sound like correct English phrase to me */
445                 puts("Login incorrect");
446                 if (++count == 3) {
447                         syslog(LOG_WARNING, "invalid password for '%s'%s",
448                                                 username, fromhost);
449                         return EXIT_FAILURE;
450                 }
451                 username[0] = '\0';
452         } /* while (1) */
453
454         alarm(0);
455         /* We can ignore /etc/nologin if we are logging in as root,
456          * it doesn't matter whether we are run by root or not */
457         if (pw->pw_uid != 0)
458                 die_if_nologin();
459
460         write_utent(&utent, username);
461
462         USE_SELINUX(initselinux(username, full_tty, &user_sid));
463
464         /* Try these, but don't complain if they fail.
465          * _f_chown is safe wrt race t=ttyname(0);...;chown(t); */
466         fchown(0, pw->pw_uid, pw->pw_gid);
467         fchmod(0, 0600);
468
469         /* We trust environment only if we run by root */
470         if (ENABLE_LOGIN_SCRIPTS && run_by_root) 
471                 run_login_script(pw, full_tty);
472
473         change_identity(pw);
474         tmp = pw->pw_shell;
475         if (!tmp || !*tmp)
476                 tmp = DEFAULT_SHELL;
477         /* setup_environment params: shell, clear_env, change_env, pw */
478         setup_environment(tmp, !(opt & LOGIN_OPT_p), 1, pw);
479
480         motd();
481
482         if (pw->pw_uid == 0)
483                 syslog(LOG_INFO, "root login%s", fromhost);
484
485         /* well, a simple setexeccon() here would do the job as well,
486          * but let's play the game for now */
487         USE_SELINUX(set_current_security_context(user_sid);)
488
489         // util-linux login also does:
490         // /* start new session */
491         // setsid();
492         // /* TIOCSCTTY: steal tty from other process group */
493         // if (ioctl(0, TIOCSCTTY, 1)) error_msg...
494         // BBox login used to do this (see above):
495         // bb_setpgrp();
496         // If this stuff is really needed, add it and explain why!
497
498         /* Set signals to defaults */
499         /* Non-ignored signals revert to SIG_DFL on exec anyway */
500         /*signal(SIGALRM, SIG_DFL);*/
501
502         /* Is this correct? This way user can ctrl-c out of /etc/profile,
503          * potentially creating security breach (tested with bash 3.0).
504          * But without this, bash 3.0 will not enable ctrl-c either.
505          * Maybe bash is buggy?
506          * Need to find out what standards say about /bin/login -
507          * should we leave SIGINT etc enabled or disabled? */
508         signal(SIGINT, SIG_DFL);
509
510         /* Exec login shell with no additional parameters */
511         run_shell(tmp, 1, NULL, NULL);
512
513         /* return EXIT_FAILURE; - not reached */
514 }