procps: shrink /proc scanning code a bit
[oweals/busybox.git] / libbb / setup_environment.c
index a146496252e056d063b77c31b4fe892a5039ca9d..a6f44f7f00cd19b7604afdd8cf771eeb905624e7 100644 (file)
  * SUCH DAMAGE.
  */
 
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <string.h>
-#include <stdlib.h>
-#include <syslog.h>
-#include <ctype.h>
 #include "libbb.h"
 
-
-
-#define DEFAULT_LOGIN_PATH      "/bin:/usr/bin"
-#define DEFAULT_ROOT_LOGIN_PATH "/usr/sbin:/bin:/usr/bin:/sbin"
-
-static void xsetenv ( const char *key, const char *value )
+void setup_environment(const char *shell, int loginshell, int changeenv, const struct passwd *pw)
 {
-           if ( setenv ( key, value, 1 ))
-                               bb_error_msg_and_die (bb_msg_memory_exhausted);
-}
-
-void setup_environment ( const char *shell, int loginshell, int changeenv, const struct passwd *pw )
-{
-       if ( loginshell ) {
+       if (loginshell) {
                const char *term;
 
                /* Change the current working directory to be the home directory
@@ -59,32 +41,31 @@ void setup_environment ( const char *shell, int loginshell, int changeenv, const
                 * directory.
                 * Some systems default to HOME=/
                 */
-               if ( chdir ( pw-> pw_dir )) {
-                       xchdir ( "/" );
-                       fputs ( "warning: cannot change to home directory\n", stderr );
+               if (chdir(pw->pw_dir)) {
+                       xchdir("/");
+                       fputs("warning: cannot change to home directory\n", stderr);
                }
 
                /* Leave TERM unchanged.  Set HOME, SHELL, USER, LOGNAME, PATH.
                   Unset all other environment variables.  */
-               term = getenv ("TERM");
-               clearenv ( );
-               if ( term )
-                       xsetenv ( "TERM", term );
-               xsetenv ( "HOME",    pw-> pw_dir );
-               xsetenv ( "SHELL",   shell );
-               xsetenv ( "USER",    pw-> pw_name );
-               xsetenv ( "LOGNAME", pw-> pw_name );
-               xsetenv ( "PATH",    ( pw-> pw_uid ? DEFAULT_LOGIN_PATH : DEFAULT_ROOT_LOGIN_PATH ));
+               term = getenv("TERM");
+               clearenv();
+               if (term)
+                       xsetenv("TERM", term);
+               xsetenv("HOME",    pw->pw_dir);
+               xsetenv("SHELL",   shell);
+               xsetenv("USER",    pw->pw_name);
+               xsetenv("LOGNAME", pw->pw_name);
+               xsetenv("PATH",   (pw->pw_uid ? bb_default_path : bb_default_root_path));
        }
-       else if ( changeenv ) {
+       else if (changeenv) {
                /* Set HOME, SHELL, and if not becoming a super-user,
                   USER and LOGNAME.  */
-               xsetenv ( "HOME",  pw-> pw_dir );
-               xsetenv ( "SHELL", shell );
-               if  ( pw-> pw_uid ) {
-                       xsetenv ( "USER",    pw-> pw_name );
-                       xsetenv ( "LOGNAME", pw-> pw_name );
+               xsetenv("HOME",  pw->pw_dir);
+               xsetenv("SHELL", shell);
+               if (pw->pw_uid) {
+                       xsetenv("USER",    pw->pw_name);
+                       xsetenv("LOGNAME", pw->pw_name);
                }
        }
 }
-