2002-06-05 02:15:46 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-01-19 23:34:15 +05:30
|
|
|
/*
|
2006-07-10 08:35:46 +05:30
|
|
|
* Mini su implementation for busybox
|
|
|
|
*
|
2006-09-13 22:09:19 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2006-07-10 08:35:46 +05:30
|
|
|
*/
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2002-06-05 02:15:46 +05:30
|
|
|
#include <syslog.h>
|
|
|
|
|
2006-12-19 14:25:38 +05:30
|
|
|
#define SU_OPT_mp (3)
|
|
|
|
#define SU_OPT_l (4)
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int su_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int su_main(int argc UNUSED_PARAM, char **argv)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
2006-12-19 05:50:20 +05:30
|
|
|
unsigned flags;
|
2007-01-30 04:21:44 +05:30
|
|
|
char *opt_shell = NULL;
|
|
|
|
char *opt_command = NULL;
|
|
|
|
const char *opt_username = "root";
|
2003-08-29 13:08:56 +05:30
|
|
|
struct passwd *pw;
|
|
|
|
uid_t cur_uid = getuid();
|
|
|
|
const char *tty;
|
2006-07-10 08:35:46 +05:30
|
|
|
char *old_user;
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2007-08-18 21:02:12 +05:30
|
|
|
flags = getopt32(argv, "mplc:s:", &opt_command, &opt_shell);
|
2008-03-17 14:37:36 +05:30
|
|
|
//argc -= optind;
|
2006-12-23 08:29:06 +05:30
|
|
|
argv += optind;
|
2003-08-29 13:08:56 +05:30
|
|
|
|
2008-03-17 14:37:36 +05:30
|
|
|
if (argv[0] && LONE_DASH(argv[0])) {
|
2006-06-14 22:06:45 +05:30
|
|
|
flags |= SU_OPT_l;
|
2006-12-17 05:19:13 +05:30
|
|
|
argv++;
|
2006-09-07 21:50:03 +05:30
|
|
|
}
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
/* get user if specified */
|
2008-03-17 14:37:36 +05:30
|
|
|
if (argv[0]) {
|
2006-12-17 05:19:13 +05:30
|
|
|
opt_username = argv[0];
|
|
|
|
argv++;
|
|
|
|
}
|
2006-07-10 08:35:46 +05:30
|
|
|
|
2006-12-19 14:25:38 +05:30
|
|
|
if (ENABLE_FEATURE_SU_SYSLOG) {
|
2006-07-10 08:35:46 +05:30
|
|
|
/* The utmp entry (via getlogin) is probably the best way to identify
|
2009-09-10 02:42:10 +05:30
|
|
|
* the user, especially if someone su's from a su-shell.
|
|
|
|
* But getlogin can fail -- usually due to lack of utmp entry.
|
|
|
|
* in this case resort to getpwuid. */
|
|
|
|
const char *user;
|
|
|
|
#if ENABLE_FEATURE_UTMP
|
|
|
|
char user_buf[64];
|
|
|
|
user = user_buf;
|
|
|
|
if (getlogin_r(user_buf, sizeof(user_buf)) != 0)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
pw = getpwuid(cur_uid);
|
|
|
|
user = pw ? pw->pw_name : "";
|
|
|
|
}
|
|
|
|
old_user = xstrdup(user);
|
|
|
|
tty = xmalloc_ttyname(2);
|
|
|
|
if (!tty) {
|
|
|
|
tty = "none";
|
|
|
|
}
|
2006-10-04 02:30:43 +05:30
|
|
|
openlog(applet_name, 0, LOG_AUTH);
|
2003-08-29 13:08:56 +05:30
|
|
|
}
|
|
|
|
|
2008-12-04 00:35:55 +05:30
|
|
|
pw = xgetpwnam(opt_username);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-06-05 02:15:46 +05:30
|
|
|
/* Make sure pw->pw_shell is non-NULL. It may be NULL when NEW_USER
|
|
|
|
is a username that is retrieved via NIS (YP), but that doesn't have
|
|
|
|
a default shell listed. */
|
2006-12-19 05:50:20 +05:30
|
|
|
if (!pw->pw_shell || !pw->pw_shell[0])
|
|
|
|
pw->pw_shell = (char *)DEFAULT_SHELL;
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2006-07-10 08:35:46 +05:30
|
|
|
if ((cur_uid == 0) || correct_password(pw)) {
|
2006-12-19 14:25:38 +05:30
|
|
|
if (ENABLE_FEATURE_SU_SYSLOG)
|
2006-12-19 05:50:20 +05:30
|
|
|
syslog(LOG_NOTICE, "%c %s %s:%s",
|
|
|
|
'+', tty, old_user, opt_username);
|
2003-08-29 13:08:56 +05:30
|
|
|
} else {
|
2006-12-19 14:25:38 +05:30
|
|
|
if (ENABLE_FEATURE_SU_SYSLOG)
|
2006-12-19 05:50:20 +05:30
|
|
|
syslog(LOG_NOTICE, "%c %s %s:%s",
|
|
|
|
'-', tty, old_user, opt_username);
|
2006-07-10 08:35:46 +05:30
|
|
|
bb_error_msg_and_die("incorrect password");
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
|
2006-12-19 14:25:38 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && ENABLE_FEATURE_SU_SYSLOG) {
|
2006-07-10 08:35:46 +05:30
|
|
|
closelog();
|
|
|
|
free(old_user);
|
|
|
|
}
|
2003-08-29 13:08:56 +05:30
|
|
|
|
2006-12-19 05:50:20 +05:30
|
|
|
if (!opt_shell && (flags & SU_OPT_mp))
|
|
|
|
opt_shell = getenv("SHELL");
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2006-12-19 05:50:20 +05:30
|
|
|
#if ENABLE_FEATURE_SU_CHECKS_SHELLS
|
2006-07-10 08:35:46 +05:30
|
|
|
if (opt_shell && cur_uid && restricted_shell(pw->pw_shell)) {
|
2002-06-05 02:15:46 +05:30
|
|
|
/* The user being su'd to has a nonstandard shell, and so is
|
|
|
|
probably a uucp account or has restricted access. Don't
|
|
|
|
compromise the account by allowing access with a standard
|
|
|
|
shell. */
|
2006-07-10 08:35:46 +05:30
|
|
|
bb_error_msg("using restricted shell");
|
2007-09-10 18:45:28 +05:30
|
|
|
opt_shell = NULL;
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
2006-12-19 05:50:20 +05:30
|
|
|
#endif
|
|
|
|
if (!opt_shell)
|
|
|
|
opt_shell = pw->pw_shell;
|
2006-07-10 08:35:46 +05:30
|
|
|
|
|
|
|
change_identity(pw);
|
2008-03-17 14:12:43 +05:30
|
|
|
/* setup_environment params: shell, clear_env, change_env, pw */
|
2006-07-10 08:35:46 +05:30
|
|
|
setup_environment(opt_shell, flags & SU_OPT_l, !(flags & SU_OPT_mp), pw);
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_SELINUX(set_current_security_context(NULL);)
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2006-07-16 01:16:46 +05:30
|
|
|
/* Never returns */
|
2006-12-17 05:19:13 +05:30
|
|
|
run_shell(opt_shell, flags & SU_OPT_l, opt_command, (const char**)argv);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-09-10 18:45:28 +05:30
|
|
|
/* return EXIT_FAILURE; - not reached */
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|