busybox/loginutils/sulogin.c

114 lines
2.1 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
2006-09-08 22:52:05 +05:30
* Mini sulogin implementation for busybox
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include <syslog.h>
#include "busybox.h"
static const char * const forbid[] = {
"ENV",
"BASH_ENV",
"HOME",
"IFS",
"PATH",
"SHELL",
"LD_LIBRARY_PATH",
"LD_PRELOAD",
"LD_TRACE_LOADED_OBJECTS",
"LD_BIND_NOW",
"LD_AOUT_LIBRARY_PATH",
"LD_AOUT_PRELOAD",
"LD_NOWARN",
"LD_KEEPDIR",
(char *) 0
};
static void catchalarm(int ATTRIBUTE_UNUSED junk)
{
exit(EXIT_FAILURE);
}
int sulogin_main(int argc, char **argv)
{
char *cp;
int timeout = 0;
2006-09-08 22:52:05 +05:30
char *timeout_arg;
const char * const *p;
struct passwd *pwd;
struct spwd *spwd;
2006-01-25 05:38:53 +05:30
2006-09-09 19:30:58 +05:30
logmode = LOGMODE_BOTH;
openlog(bb_applet_name, 0, LOG_AUTH);
2006-01-25 05:38:53 +05:30
if (getopt32 (argc, argv, "t:", &timeout_arg)) {
2006-09-08 22:52:05 +05:30
if (safe_strtoi(timeout_arg, &timeout)) {
timeout = 0;
}
}
2006-09-08 22:52:05 +05:30
if (argv[optind]) {
close(0);
close(1);
dup(xopen(argv[optind], O_RDWR));
close(2);
2006-09-08 22:52:05 +05:30
dup(0);
}
2006-09-08 22:52:05 +05:30
if (!isatty(0) || !isatty(1) || !isatty(2)) {
2006-09-09 19:30:58 +05:30
logmode = LOGMODE_SYSLOG;
bb_error_msg_and_die("not a tty");
}
/* Clear out anything dangerous from the environment */
for (p = forbid; *p; p++)
unsetenv(*p);
signal(SIGALRM, catchalarm);
2006-09-08 22:52:05 +05:30
if (!(pwd = getpwuid(0))) {
2006-09-09 19:30:58 +05:30
goto auth_error;
2006-09-17 21:58:10 +05:30
}
2006-09-08 22:52:05 +05:30
if (ENABLE_FEATURE_SHADOWPASSWDS) {
if (!(spwd = getspnam(pwd->pw_name))) {
2006-09-09 19:30:58 +05:30
goto auth_error;
}
2006-09-08 22:52:05 +05:30
pwd->pw_passwd = spwd->sp_pwdp;
}
2006-09-08 22:52:05 +05:30
while (1) {
2006-09-08 22:52:05 +05:30
/* cp points to a static buffer that is zeroed every time */
2006-09-09 19:30:58 +05:30
cp = bb_askpass(timeout,
"Give root password for system maintenance\n"
"(or type Control-D for normal startup):");
if (!cp || !*cp) {
2006-09-08 22:52:05 +05:30
bb_info_msg("Normal startup");
2006-09-09 19:30:58 +05:30
return 0;
}
2006-09-08 22:52:05 +05:30
if (strcmp(pw_encrypt(cp, pwd->pw_passwd), pwd->pw_passwd) == 0) {
break;
}
bb_do_delay(FAIL_DELAY);
2006-09-09 19:30:58 +05:30
bb_error_msg("login incorrect");
}
2006-09-08 22:52:05 +05:30
memset(cp, 0, strlen(cp));
signal(SIGALRM, SIG_DFL);
2006-09-08 22:52:05 +05:30
bb_info_msg("System Maintenance Mode");
2006-09-08 22:52:05 +05:30
USE_SELINUX(renew_current_security_context());
2006-09-08 22:52:05 +05:30
run_shell(pwd->pw_shell, 1, 0, 0);
/* never returns */
2006-09-09 19:30:58 +05:30
2006-09-17 21:58:10 +05:30
auth_error:
2006-09-09 19:30:58 +05:30
bb_error_msg_and_die("no password entry for `root'");
}