inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]
[oweals/busybox.git] / loginutils / su.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  *  Mini su implementation for busybox
4  *
5  *  Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6  */
7
8 #include "busybox.h"
9 #include <syslog.h>
10
11 int su_main(int argc, char **argv)
12 {
13         unsigned long flags;
14         char *opt_shell = 0;
15         char *opt_command = 0;
16         char *opt_username = "root";
17         struct passwd *pw;
18         uid_t cur_uid = getuid();
19         const char *tty;
20         char *old_user;
21
22         flags = getopt32(argc, argv, "mplc:s:", &opt_command, &opt_shell);
23         argc -= optind;
24         argv -= optind;
25 #define SU_OPT_mp (3)
26 #define SU_OPT_l (4)
27
28         if (argc && LONE_DASH(argv[0])) {
29                 flags |= SU_OPT_l;
30                 argc--;
31                 argv++;
32         }
33
34         /* get user if specified */
35         if (argc) {
36                 opt_username = argv[0];
37 //              argc--;
38                 argv++;
39         }
40
41         if (ENABLE_SU_SYSLOG) {
42                 /* The utmp entry (via getlogin) is probably the best way to identify
43                 the user, especially if someone su's from a su-shell.
44                 But getlogin can fail -- usually due to lack of utmp entry.
45                 in this case resort to getpwuid.  */
46                 old_user = xstrdup(USE_FEATURE_UTMP(getlogin() ? : ) (pw = getpwuid(cur_uid)) ? pw->pw_name : "");
47                 tty = ttyname(2) ? : "none";
48                 openlog(applet_name, 0, LOG_AUTH);
49         }
50
51         pw = getpwnam(opt_username);
52         if (!pw) bb_error_msg_and_die("unknown id: %s", opt_username);
53
54         /* Make sure pw->pw_shell is non-NULL.  It may be NULL when NEW_USER
55            is a username that is retrieved via NIS (YP), but that doesn't have
56            a default shell listed.  */
57         if (!pw->pw_shell || !pw->pw_shell[0]) pw->pw_shell = (char *)DEFAULT_SHELL;
58
59         if ((cur_uid == 0) || correct_password(pw)) {
60                 if (ENABLE_SU_SYSLOG)
61                         syslog(LOG_NOTICE, "+ %s %s:%s", tty, old_user, opt_username);
62         } else {
63                 if (ENABLE_SU_SYSLOG)
64                         syslog(LOG_NOTICE, "- %s %s:%s", tty, old_user, opt_username);
65                 bb_error_msg_and_die("incorrect password");
66         }
67
68         if (ENABLE_FEATURE_CLEAN_UP && ENABLE_SU_SYSLOG) {
69                 closelog();
70                 free(old_user);
71         }
72
73         if (!opt_shell && (flags & SU_OPT_mp)) opt_shell = getenv("SHELL");
74
75         if (opt_shell && cur_uid && restricted_shell(pw->pw_shell)) {
76                 /* The user being su'd to has a nonstandard shell, and so is
77                    probably a uucp account or has restricted access.  Don't
78                    compromise the account by allowing access with a standard
79                    shell.  */
80                 bb_error_msg("using restricted shell");
81                 opt_shell = 0;
82         }
83
84         if (!opt_shell) opt_shell = pw->pw_shell;
85
86         change_identity(pw);
87         setup_environment(opt_shell, flags & SU_OPT_l, !(flags & SU_OPT_mp), pw);
88         USE_SELINUX(set_current_security_context(NULL);)
89
90         /* Never returns */
91         run_shell(opt_shell, flags & SU_OPT_l, opt_command, (const char**)argv);
92
93         return EXIT_FAILURE;
94 }