svn commit: trunk/busybox: include libbb loginutils
vda at busybox.net
vda at busybox.net
Fri Sep 8 10:22:46 PDT 2006
Author: vda
Date: 2006-09-08 10:22:45 -0700 (Fri, 08 Sep 2006)
New Revision: 16072
Log:
login: style fixes
Modified:
trunk/busybox/include/libbb.h
trunk/busybox/libbb/change_identity.c
trunk/busybox/loginutils/Config.in
trunk/busybox/loginutils/login.c
Changeset:
Modified: trunk/busybox/include/libbb.h
===================================================================
--- trunk/busybox/include/libbb.h 2006-09-08 17:22:05 UTC (rev 16071)
+++ trunk/busybox/include/libbb.h 2006-09-08 17:22:45 UTC (rev 16072)
@@ -490,9 +490,9 @@
#define FAIL_DELAY 3
extern void bb_do_delay(int seconds);
-extern void change_identity ( const struct passwd *pw );
-extern const char *change_identity_e2str ( const struct passwd *pw );
-extern void run_shell ( const char *shell, int loginshell, const char *command, const char **additional_args);
+extern void change_identity(const struct passwd *pw);
+extern const char *change_identity_e2str(const struct passwd *pw);
+extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args);
#ifdef CONFIG_SELINUX
extern void renew_current_security_context(void);
extern void set_current_security_context(security_context_t sid);
Modified: trunk/busybox/libbb/change_identity.c
===================================================================
--- trunk/busybox/libbb/change_identity.c 2006-09-08 17:22:05 UTC (rev 16071)
+++ trunk/busybox/libbb/change_identity.c 2006-09-08 17:22:45 UTC (rev 16072)
@@ -40,21 +40,21 @@
/* Become the user and group(s) specified by PW. */
-const char *change_identity_e2str ( const struct passwd *pw )
+const char *change_identity_e2str(const struct passwd *pw)
{
- if ( initgroups ( pw-> pw_name, pw-> pw_gid ) == -1 )
+ if (initgroups(pw->pw_name, pw->pw_gid) == -1)
return "cannot set groups";
- endgrent ( );
+ endgrent();
- xsetgid(pw-> pw_gid);
+ xsetgid(pw->pw_gid);
xsetuid(pw->pw_uid);
return NULL;
}
-void change_identity ( const struct passwd *pw )
+void change_identity(const struct passwd *pw)
{
const char *err_msg = change_identity_e2str(pw);
if(err_msg)
- bb_perror_msg_and_die ( "%s", err_msg );
+ bb_perror_msg_and_die("%s", err_msg);
}
Modified: trunk/busybox/loginutils/Config.in
===================================================================
--- trunk/busybox/loginutils/Config.in 2006-09-08 17:22:05 UTC (rev 16071)
+++ trunk/busybox/loginutils/Config.in 2006-09-08 17:22:45 UTC (rev 16072)
@@ -111,6 +111,14 @@
Note that Busybox binary must be setuid root for this applet to
work properly.
+config CONFIG_LOGIN_SCRIPTS
+ bool "Support for login scripts"
+ depends on CONFIG_LOGIN
+ default n
+ help
+ Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
+ just prior to swithching from root to logged-in user.
+
config CONFIG_FEATURE_SECURETTY
bool "Support for /etc/securetty"
default y
Modified: trunk/busybox/loginutils/login.c
===================================================================
--- trunk/busybox/loginutils/login.c 2006-09-08 17:22:05 UTC (rev 16071)
+++ trunk/busybox/loginutils/login.c 2006-09-08 17:22:45 UTC (rev 16072)
@@ -15,6 +15,7 @@
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/types.h>
+#include <sys/wait.h>
#include <ctype.h>
#include <time.h>
@@ -258,6 +259,27 @@
chown ( full_tty, pw-> pw_uid, pw-> pw_gid );
chmod ( full_tty, 0600 );
+ if (ENABLE_LOGIN_SCRIPTS) {
+ char *script = getenv("LOGIN_PRE_SUID_SCRIPT");
+ if (script) {
+ char *t_argv[2] = { script, NULL };
+ switch(fork()) {
+ case -1: break;
+ case 0: /* child */
+ xchdir("/");
+ setenv("LOGIN_TTY", full_tty, 1);
+ setenv("LOGIN_USER", pw->pw_name, 1);
+ setenv("LOGIN_UID", utoa(pw->pw_uid), 1);
+ setenv("LOGIN_GID", utoa(pw->pw_gid), 1);
+ setenv("LOGIN_SHELL", pw->pw_shell, 1);
+ execvp(script, t_argv);
+ exit(1);
+ default: /* parent */
+ wait(NULL);
+ }
+ }
+ }
+
change_identity ( pw );
tmp = pw-> pw_shell;
if(!tmp || !*tmp)
More information about the busybox-cvs
mailing list