aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorPascal Bellard <pascal.bellard@ads-lu.com>2012-06-12 13:21:02 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2012-06-12 13:21:02 +0200
commit70fc8c17e2d032f34162f7abc3e65a67c0ff272a (patch)
treeb2a4b1b2f6d52b01056e4601aca1c676e7f0f80f /libbb
parent588e284f53da2dc5c58f3d1b9efacd6e9061baf1 (diff)
downloadbusybox-w32-70fc8c17e2d032f34162f7abc3e65a67c0ff272a.tar.gz
busybox-w32-70fc8c17e2d032f34162f7abc3e65a67c0ff272a.tar.bz2
busybox-w32-70fc8c17e2d032f34162f7abc3e65a67c0ff272a.zip
su: do not change to home dir unless -l
Signed-off-by: Pascal Bellard <pascal.bellard@ads-lu.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r--libbb/setup_environment.c8
-rw-r--r--libbb/xfuncs_printf.c4
2 files changed, 7 insertions, 5 deletions
diff --git a/libbb/setup_environment.c b/libbb/setup_environment.c
index 73229ca6c..4258656fe 100644
--- a/libbb/setup_environment.c
+++ b/libbb/setup_environment.c
@@ -37,9 +37,11 @@ void FAST_FUNC setup_environment(const char *shell, int flags, const struct pass
37 37
38 /* Change the current working directory to be the home directory 38 /* Change the current working directory to be the home directory
39 * of the user */ 39 * of the user */
40 if (chdir(pw->pw_dir)) { 40 if (!(flags & SETUP_ENV_NO_CHDIR)) {
41 xchdir((flags & SETUP_ENV_TO_TMP) ? "/tmp" : "/"); 41 if (chdir(pw->pw_dir) != 0) {
42 bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir); 42 bb_error_msg("can't change directory to '%s'", pw->pw_dir);
43 xchdir((flags & SETUP_ENV_TO_TMP) ? "/tmp" : "/");
44 }
43 } 45 }
44 46
45 if (flags & SETUP_ENV_CLEARENV) { 47 if (flags & SETUP_ENV_CLEARENV) {
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c
index d8a42ba0b..05aa07ce8 100644
--- a/libbb/xfuncs_printf.c
+++ b/libbb/xfuncs_printf.c
@@ -355,13 +355,13 @@ void FAST_FUNC xsetuid(uid_t uid)
355void FAST_FUNC xchdir(const char *path) 355void FAST_FUNC xchdir(const char *path)
356{ 356{
357 if (chdir(path)) 357 if (chdir(path))
358 bb_perror_msg_and_die("chdir(%s)", path); 358 bb_perror_msg_and_die("can't change directory to '%s'", path);
359} 359}
360 360
361void FAST_FUNC xchroot(const char *path) 361void FAST_FUNC xchroot(const char *path)
362{ 362{
363 if (chroot(path)) 363 if (chroot(path))
364 bb_perror_msg_and_die("can't change root directory to %s", path); 364 bb_perror_msg_and_die("can't change root directory to '%s'", path);
365 xchdir("/"); 365 xchdir("/");
366} 366}
367 367