From 44ecacea6b45d7ae5d5eb70fe01d7ade4b90c525 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 2 Nov 2003 10:03:23 +0000 Subject: Both setegid and seteuid were implemented suboptimally, such that we were unable to switch back to the original saved group/user ID. -Erik --- libc/sysdeps/linux/common/setegid.c | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common/setegid.c') diff --git a/libc/sysdeps/linux/common/setegid.c b/libc/sysdeps/linux/common/setegid.c index 90928c247..100a34568 100644 --- a/libc/sysdeps/linux/common/setegid.c +++ b/libc/sysdeps/linux/common/setegid.c @@ -1,8 +1,28 @@ -#include +#define _GNU_SOURCE #include +#include +#include +#include #include +#include int setegid(gid_t gid) { - return setregid(-1, gid); + int result; + + if (gid == (gid_t) ~0) + { + __set_errno (EINVAL); + return -1; + } + +#ifdef __NR_setresgid + result = setresgid(-1, gid, -1); + if (result == -1 && errno == ENOSYS) + /* Will also set the saved group ID if egid != gid, + * making it impossible to switch back...*/ +#endif + result = setregid(-1, gid); + + return result; } -- cgit v1.2.3