aboutsummaryrefslogtreecommitdiff
path: root/libbb/appletlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/appletlib.c')
-rw-r--r--libbb/appletlib.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c
index df6584978..b9fbbd1f2 100644
--- a/libbb/appletlib.c
+++ b/libbb/appletlib.c
@@ -681,8 +681,21 @@ static void check_suid(int applet_no)
if (geteuid())
bb_error_msg_and_die("must be suid to work properly");
} else if (APPLET_SUID(applet_no) == BB_SUID_DROP) {
- xsetgid(rgid); /* drop all privileges */
- xsetuid(ruid);
+ /*
+ * Drop all privileges.
+ *
+ * Don't check for errors: in normal use, they are impossible,
+ * and in special cases, exiting is harmful. Example:
+ * 'unshare --user' when user's shell is also from busybox.
+ *
+ * 'unshare --user' creates a new user namespace without any
+ * uid mappings. Thus, busybox binary is setuid nobody:nogroup
+ * within the namespace, as that is the only user. However,
+ * since no uids are mapped, calls to setgid/setuid
+ * fail (even though they would do nothing).
+ */
+ setgid(rgid);
+ setuid(ruid);
}
# if ENABLE_FEATURE_SUID_CONFIG
ret: ;