ash: exec: Stricter pathopt parsing
[oweals/busybox.git] / libbb / setup_environment.c
index 04e333feddda6dd0f8686f5fd7872919a2932505..f8de4496791a77ce5987ccb4e0c9b1f3986e33cb 100644 (file)
@@ -15,7 +15,7 @@
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
- * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND
+ * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ''AS IS'' AND
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  * ARE DISCLAIMED.  IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  */
-
 #include "libbb.h"
 
-void FAST_FUNC setup_environment(const char *shell, int clear_env, int change_env, const struct passwd *pw)
+void FAST_FUNC setup_environment(const char *shell, int flags, const struct passwd *pw)
 {
-       if (clear_env) {
-               const char *term;
+       if (!shell || !shell[0])
+               shell = DEFAULT_SHELL;
 
-               /* Change the current working directory to be the home directory
-                * of the user */
-               if (chdir(pw->pw_dir)) {
-                       xchdir("/");
-                       bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir);
+       /* Change the current working directory to be the home directory
+        * of the user */
+       if (!(flags & SETUP_ENV_NO_CHDIR)) {
+               if (chdir(pw->pw_dir) != 0) {
+                       bb_error_msg("can't change directory to '%s'", pw->pw_dir);
+                       xchdir((flags & SETUP_ENV_TO_TMP) ? "/tmp" : "/");
                }
+       }
+
+       if (flags & SETUP_ENV_CLEARENV) {
+               const char *term;
 
                /* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH.
-                  Unset all other environment variables.  */
+                * Unset all other environment variables.  */
                term = getenv("TERM");
                clearenv();
                if (term)
@@ -55,10 +59,9 @@ void FAST_FUNC setup_environment(const char *shell, int clear_env, int change_en
                //xsetenv("LOGNAME", pw->pw_name);
                //xsetenv("HOME",    pw->pw_dir);
                //xsetenv("SHELL",   shell);
-       }
-       else if (change_env) {
+       } else if (flags & SETUP_ENV_CHANGEENV) {
                /* Set HOME, SHELL, and if not becoming a super-user,
-                  USER and LOGNAME.  */
+                * USER and LOGNAME.  */
                if (pw->pw_uid) {
  shortcut:
                        xsetenv("USER",    pw->pw_name);