Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Bernhard Reutner-Fischer | 5a620ea | 2006-01-19 18:04:15 +0000 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Mini su implementation for busybox |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 4 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 6 | */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 7 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 8 | #include "libbb.h" |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 9 | #include <syslog.h> |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 10 | |
Denys Vlasenko | 26ffe81 | 2010-02-26 10:01:18 +0100 | [diff] [blame] | 11 | #if ENABLE_FEATURE_SU_CHECKS_SHELLS |
| 12 | /* Return 1 if SHELL is a restricted shell (one not returned by |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 13 | * getusershell), else 0, meaning it is a standard shell. */ |
Denys Vlasenko | 26ffe81 | 2010-02-26 10:01:18 +0100 | [diff] [blame] | 14 | static int restricted_shell(const char *shell) |
| 15 | { |
| 16 | char *line; |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 17 | int result = 1; |
Denys Vlasenko | 26ffe81 | 2010-02-26 10:01:18 +0100 | [diff] [blame] | 18 | |
| 19 | /*setusershell(); - getusershell does it itself*/ |
| 20 | while ((line = getusershell()) != NULL) { |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 21 | if (/* *line != '#' && */ strcmp(line, shell) == 0) { |
| 22 | result = 0; |
| 23 | break; |
| 24 | } |
Denys Vlasenko | 26ffe81 | 2010-02-26 10:01:18 +0100 | [diff] [blame] | 25 | } |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 26 | if (ENABLE_FEATURE_CLEAN_UP) |
| 27 | endusershell(); |
| 28 | return result; |
Denys Vlasenko | 26ffe81 | 2010-02-26 10:01:18 +0100 | [diff] [blame] | 29 | } |
| 30 | #endif |
| 31 | |
Bernhard Reutner-Fischer | 359d7ca | 2006-12-19 08:55:38 +0000 | [diff] [blame] | 32 | #define SU_OPT_mp (3) |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 33 | #define SU_OPT_l (4) |
Bernhard Reutner-Fischer | 359d7ca | 2006-12-19 08:55:38 +0000 | [diff] [blame] | 34 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 35 | int su_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 36 | int su_main(int argc UNUSED_PARAM, char **argv) |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 37 | { |
Denis Vlasenko | 15b213e | 2006-12-19 00:20:20 +0000 | [diff] [blame] | 38 | unsigned flags; |
Denis Vlasenko | 06c0a71 | 2007-01-29 22:51:44 +0000 | [diff] [blame] | 39 | char *opt_shell = NULL; |
| 40 | char *opt_command = NULL; |
| 41 | const char *opt_username = "root"; |
Glenn L McGrath | a6b7bdc | 2003-08-29 07:38:56 +0000 | [diff] [blame] | 42 | struct passwd *pw; |
| 43 | uid_t cur_uid = getuid(); |
Glenn L McGrath | a6b7bdc | 2003-08-29 07:38:56 +0000 | [diff] [blame] | 44 | const char *tty; |
Denys Vlasenko | 631fd5c | 2010-11-30 09:47:56 +0100 | [diff] [blame^] | 45 | #if ENABLE_FEATURE_UTMP |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 46 | char user_buf[64]; |
Denys Vlasenko | 631fd5c | 2010-11-30 09:47:56 +0100 | [diff] [blame^] | 47 | #endif |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 48 | const char *old_user; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 49 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 50 | flags = getopt32(argv, "mplc:s:", &opt_command, &opt_shell); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 51 | //argc -= optind; |
Denis Vlasenko | e13a537 | 2006-12-23 02:59:06 +0000 | [diff] [blame] | 52 | argv += optind; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 53 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 54 | if (argv[0] && LONE_DASH(argv[0])) { |
Bernhard Reutner-Fischer | df798b7 | 2006-06-14 16:36:45 +0000 | [diff] [blame] | 55 | flags |= SU_OPT_l; |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 56 | argv++; |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 57 | } |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 58 | |
| 59 | /* get user if specified */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 60 | if (argv[0]) { |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 61 | opt_username = argv[0]; |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 62 | argv++; |
| 63 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 64 | |
Bernhard Reutner-Fischer | 359d7ca | 2006-12-19 08:55:38 +0000 | [diff] [blame] | 65 | if (ENABLE_FEATURE_SU_SYSLOG) { |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 66 | /* The utmp entry (via getlogin) is probably the best way to |
| 67 | * identify the user, especially if someone su's from a su-shell. |
Denys Vlasenko | d069e53 | 2009-09-09 23:12:10 +0200 | [diff] [blame] | 68 | * But getlogin can fail -- usually due to lack of utmp entry. |
| 69 | * in this case resort to getpwuid. */ |
Denys Vlasenko | d069e53 | 2009-09-09 23:12:10 +0200 | [diff] [blame] | 70 | #if ENABLE_FEATURE_UTMP |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 71 | old_user = user_buf; |
Denys Vlasenko | d069e53 | 2009-09-09 23:12:10 +0200 | [diff] [blame] | 72 | if (getlogin_r(user_buf, sizeof(user_buf)) != 0) |
| 73 | #endif |
| 74 | { |
| 75 | pw = getpwuid(cur_uid); |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 76 | old_user = pw ? xstrdup(pw->pw_name) : ""; |
Denys Vlasenko | d069e53 | 2009-09-09 23:12:10 +0200 | [diff] [blame] | 77 | } |
Denys Vlasenko | d069e53 | 2009-09-09 23:12:10 +0200 | [diff] [blame] | 78 | tty = xmalloc_ttyname(2); |
| 79 | if (!tty) { |
| 80 | tty = "none"; |
| 81 | } |
Denis Vlasenko | 8f8f268 | 2006-10-03 21:00:43 +0000 | [diff] [blame] | 82 | openlog(applet_name, 0, LOG_AUTH); |
Glenn L McGrath | a6b7bdc | 2003-08-29 07:38:56 +0000 | [diff] [blame] | 83 | } |
Glenn L McGrath | a6b7bdc | 2003-08-29 07:38:56 +0000 | [diff] [blame] | 84 | |
Denis Vlasenko | d7a805e | 2008-12-03 19:05:55 +0000 | [diff] [blame] | 85 | pw = xgetpwnam(opt_username); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 86 | |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 87 | if (cur_uid == 0 || correct_password(pw)) { |
Bernhard Reutner-Fischer | 359d7ca | 2006-12-19 08:55:38 +0000 | [diff] [blame] | 88 | if (ENABLE_FEATURE_SU_SYSLOG) |
Denis Vlasenko | 15b213e | 2006-12-19 00:20:20 +0000 | [diff] [blame] | 89 | syslog(LOG_NOTICE, "%c %s %s:%s", |
| 90 | '+', tty, old_user, opt_username); |
Glenn L McGrath | a6b7bdc | 2003-08-29 07:38:56 +0000 | [diff] [blame] | 91 | } else { |
Bernhard Reutner-Fischer | 359d7ca | 2006-12-19 08:55:38 +0000 | [diff] [blame] | 92 | if (ENABLE_FEATURE_SU_SYSLOG) |
Denis Vlasenko | 15b213e | 2006-12-19 00:20:20 +0000 | [diff] [blame] | 93 | syslog(LOG_NOTICE, "%c %s %s:%s", |
| 94 | '-', tty, old_user, opt_username); |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 95 | bb_error_msg_and_die("incorrect password"); |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Bernhard Reutner-Fischer | 359d7ca | 2006-12-19 08:55:38 +0000 | [diff] [blame] | 98 | if (ENABLE_FEATURE_CLEAN_UP && ENABLE_FEATURE_SU_SYSLOG) { |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 99 | closelog(); |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 100 | } |
Glenn L McGrath | a6b7bdc | 2003-08-29 07:38:56 +0000 | [diff] [blame] | 101 | |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 102 | if (!opt_shell && (flags & SU_OPT_mp)) { |
| 103 | /* -s SHELL is not given, but "preserve env" opt is */ |
Denis Vlasenko | 15b213e | 2006-12-19 00:20:20 +0000 | [diff] [blame] | 104 | opt_shell = getenv("SHELL"); |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /* Make sure pw->pw_shell is non-NULL. It may be NULL when NEW_USER |
| 108 | * is a username that is retrieved via NIS (YP), that doesn't have |
| 109 | * a default shell listed. */ |
| 110 | if (!pw->pw_shell || !pw->pw_shell[0]) |
| 111 | pw->pw_shell = (char *)DEFAULT_SHELL; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 112 | |
Denis Vlasenko | 15b213e | 2006-12-19 00:20:20 +0000 | [diff] [blame] | 113 | #if ENABLE_FEATURE_SU_CHECKS_SHELLS |
Denys Vlasenko | 26ffe81 | 2010-02-26 10:01:18 +0100 | [diff] [blame] | 114 | if (opt_shell && cur_uid != 0 && restricted_shell(pw->pw_shell)) { |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 115 | /* The user being su'd to has a nonstandard shell, and so is |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 116 | * probably a uucp account or has restricted access. Don't |
| 117 | * compromise the account by allowing access with a standard |
| 118 | * shell. */ |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 119 | bb_error_msg("using restricted shell"); |
Denis Vlasenko | a2f6101 | 2007-09-10 13:15:28 +0000 | [diff] [blame] | 120 | opt_shell = NULL; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 121 | } |
Ladislav Michl | a73b87e | 2010-06-27 03:23:31 +0200 | [diff] [blame] | 122 | /* else: user can run whatever he wants via "su -s PROG USER". |
| 123 | * This is safe since PROG is run under user's uid/gid. */ |
Denis Vlasenko | 15b213e | 2006-12-19 00:20:20 +0000 | [diff] [blame] | 124 | #endif |
| 125 | if (!opt_shell) |
| 126 | opt_shell = pw->pw_shell; |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 127 | |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 128 | change_identity(pw); |
Denys Vlasenko | fd686a2 | 2010-02-26 09:52:45 +0100 | [diff] [blame] | 129 | setup_environment(opt_shell, |
| 130 | ((flags & SU_OPT_l) / SU_OPT_l * SETUP_ENV_CLEARENV) |
| 131 | + (!(flags & SU_OPT_mp) * SETUP_ENV_CHANGEENV), |
| 132 | pw); |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 133 | IF_SELINUX(set_current_security_context(NULL);) |
Rob Landley | 3bfcf3c | 2006-07-10 03:05:46 +0000 | [diff] [blame] | 134 | |
Rob Landley | 1870737 | 2006-07-15 19:46:46 +0000 | [diff] [blame] | 135 | /* Never returns */ |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 136 | run_shell(opt_shell, flags & SU_OPT_l, opt_command, (const char**)argv); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 137 | |
Denis Vlasenko | a2f6101 | 2007-09-10 13:15:28 +0000 | [diff] [blame] | 138 | /* return EXIT_FAILURE; - not reached */ |
Robert Griebl | 1fca558 | 2002-06-04 20:45:46 +0000 | [diff] [blame] | 139 | } |