mirror of git://sourceware.org/git/glibc.git
Consolidate set* Linux implementation
This patch consolidates the Linux setegid, seteuid, setgid, setgroups, setregid, setresgid, setresuid, setreuid, and setuid implementation on default sysdeps/unix/sysv/linux/set*.c implementation. It basically removes all the architecture define implementations and add support for __NR_set*32 syscall on Linux default implementation. Checked on i686-linux-gnu, x86_64-linux-gnu, x86_64-linux-gnux32, aarch64-linux-gnu, arm-linux-gnueabihf, and powerpc64le-linux-gnu. * sysdeps/unix/sysv/linux/arm/setegid.c: Remove file. * sysdeps/unix/sysv/linux/arm/seteuid.c: Likewise. * sysdeps/unix/sysv/linux/arm/setgid.c: Likewise. * sysdeps/unix/sysv/linux/arm/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/arm/setregid.c: Likewise. * sysdeps/unix/sysv/linux/arm/setresgid.c: Likewise. * sysdeps/unix/sysv/linux/arm/setresuid.c: Likewise. * sysdeps/unix/sysv/linux/arm/setreuid.c: Likewise. * sysdeps/unix/sysv/linux/arm/setuid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setegid.c: Likewise. * sysdeps/unix/sysv/linux/i386/seteuid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setgid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/i386/setregid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise. * sysdeps/unix/sysv/linux/i386/setuid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setegid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/seteuid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setgid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setregid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setresgid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setresuid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setreuid.c: Likewise. * sysdeps/unix/sysv/linux/m68k/setuid.c: Likewise. * sysdeps/unix/sysv/linux/microblaze/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setegid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/seteuid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setgid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setregid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setresgid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setresuid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setreuid.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/setuid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setegid.c: Likewise. * sysdeps/unix/sysv/linux/sh/seteuid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setgid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/sh/setregid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setresgid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setresuid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setreuid.c: Likewise. * sysdeps/unix/sysv/linux/sh/setuid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setgid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setregid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setresgid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setresuid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setreuid.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sparc32/setuid.c: Likewise. * sysdeps/unix/sysv/linux/setegid.c (setegid): Use INLINE_SYSCALL_ERROR_RETURN_VALUE. * sysdeps/unix/sysv/linux/seteuid.c (seteuid): Likewise. * sysdeps/unix/sysv/linux/setgid.c (setgid): Use __NR_setgid32 if defined. * sysdeps/unix/sysv/linux/setgroups.c (setgroups): Use __NR_setgroups32 if defined. * sysdeps/unix/sysv/linux/setregid.c (__setregid): Use __NR_setregid32 if defined. * sysdeps/unix/sysv/linux/setresgid.c (__setresgid): Use __NR_setresgid32 is defined. * sysdeps/unix/sysv/linux/setresuid.c (__setresuid): Use __NR_setresuid32 if defined. * sysdeps/unix/sysv/linux/setreuid.c (__setreuid): Use __NR_setreuid32 if defined. * sysdeps/unix/sysv/linux/setuid.c (__setuid): Use __NR_setuid32 if defined.
This commit is contained in:
parent
ea1898dded
commit
dd5905de03
147
ChangeLog
147
ChangeLog
|
@ -1,3 +1,150 @@
|
|||
2017-03-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
|
||||
* sysdeps/unix/sysv/linux/arm/setegid.c: Remove file.
|
||||
* sysdeps/unix/sysv/linux/arm/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/microblaze/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/setegid.c (setegid): Use
|
||||
INLINE_SYSCALL_ERROR_RETURN_VALUE.
|
||||
* sysdeps/unix/sysv/linux/seteuid.c (seteuid): Likewise.
|
||||
* sysdeps/unix/sysv/linux/setgid.c (setgid): Use __NR_setgid32 if
|
||||
defined.
|
||||
* sysdeps/unix/sysv/linux/setgroups.c (setgroups): Use
|
||||
__NR_setgroups32 if defined.
|
||||
* sysdeps/unix/sysv/linux/setregid.c (__setregid): Use __NR_setregid32
|
||||
if defined.
|
||||
* sysdeps/unix/sysv/linux/setresgid.c (__setresgid): Use
|
||||
__NR_setresgid32 is defined.
|
||||
* sysdeps/unix/sysv/linux/setresuid.c (__setresuid): Use
|
||||
__NR_setresuid32 if defined.
|
||||
* sysdeps/unix/sysv/linux/setreuid.c (__setreuid): Use
|
||||
__NR_setreuid32 if defined.
|
||||
* sysdeps/unix/sysv/linux/setuid.c (__setuid): Use __NR_setuid32 if
|
||||
defined.
|
||||
* sysdeps/unix/sysv/linux/arm/setegid.c: Remove file.
|
||||
* sysdeps/unix/sysv/linux/arm/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/arm/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/m68k/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/microblaze/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/s390/s390-32/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sh/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setegid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/seteuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setgroups.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setregid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setresgid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setresuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setreuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc32/setuid.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/setegid.c (setegid): Use
|
||||
INLINE_SYSCALL_ERROR_RETURN_VALUE.
|
||||
* sysdeps/unix/sysv/linux/seteuid.c (seteuid): Likewise.
|
||||
* sysdeps/unix/sysv/linux/setgid.c (setgid): Use __NR_setgid32 if
|
||||
defined.
|
||||
* sysdeps/unix/sysv/linux/setgroups.c (setgroups): Use
|
||||
__NR_setgroups32 if defined.
|
||||
* sysdeps/unix/sysv/linux/setregid.c (__setregid): Use __NR_setregid32
|
||||
if defined.
|
||||
* sysdeps/unix/sysv/linux/setresgid.c (__setresgid): Use
|
||||
__NR_setresgid32 is defined.
|
||||
* sysdeps/unix/sysv/linux/setresuid.c (__setresuid): Use
|
||||
__NR_setresuid32 if defined.
|
||||
* sysdeps/unix/sysv/linux/setreuid.c (__setreuid): Use
|
||||
__NR_setreuid32 if defined.
|
||||
* sysdeps/unix/sysv/linux/setuid.c (__setuid): Use __NR_setuid32 if
|
||||
defined.
|
||||
|
||||
2017-03-27 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
[BZ #21277]
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setegid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/seteuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setgid.c>
|
|
@ -1,2 +0,0 @@
|
|||
/* We also have to rewrite the kernel gid_t to the user land type. */
|
||||
#include <sysdeps/unix/sysv/linux/i386/setgroups.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setregid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresgid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setreuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setuid.c>
|
|
@ -1,35 +0,0 @@
|
|||
/* Copyright (C) 1995-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
|
||||
|
||||
int
|
||||
setegid (gid_t gid)
|
||||
{
|
||||
int result;
|
||||
|
||||
if (gid == (gid_t) ~0)
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setresgid32, 3, -1, gid, -1);
|
||||
|
||||
return result;
|
||||
}
|
||||
libc_hidden_def (setegid)
|
|
@ -1,35 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
|
||||
|
||||
int
|
||||
seteuid (uid_t uid)
|
||||
{
|
||||
int result;
|
||||
|
||||
if (uid == (uid_t) ~0)
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setresuid32, 3, -1, uid, -1);
|
||||
|
||||
return result;
|
||||
}
|
||||
libc_hidden_def (seteuid)
|
|
@ -1,34 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
int
|
||||
__setgid (gid_t gid)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setgid32, 1, gid);
|
||||
|
||||
return result;
|
||||
}
|
||||
#ifndef __setgid
|
||||
weak_alias (__setgid, setgid)
|
||||
#endif
|
|
@ -1,37 +0,0 @@
|
|||
/* Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <grp.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <sysdep.h>
|
||||
#include <sys/syscall.h>
|
||||
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
/* Set the group set for the current user to GROUPS (N of them). For
|
||||
Linux we must convert the array of groups into the format that the
|
||||
kernel expects. */
|
||||
int
|
||||
setgroups (size_t n, const gid_t *groups)
|
||||
{
|
||||
return INLINE_SETXID_SYSCALL (setgroups32, 2, n, groups);
|
||||
}
|
||||
libc_hidden_def (setgroups)
|
|
@ -1,34 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
int
|
||||
__setregid (gid_t rgid, gid_t egid)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setregid32, 2, rgid, egid);
|
||||
|
||||
return result;
|
||||
}
|
||||
#ifndef __setregid
|
||||
weak_alias (__setregid, setregid)
|
||||
#endif
|
|
@ -1,36 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
|
||||
int
|
||||
__setresgid (gid_t rgid, gid_t egid, gid_t sgid)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setresgid32, 3, rgid, egid, sgid);
|
||||
|
||||
return result;
|
||||
}
|
||||
libc_hidden_def (__setresgid)
|
||||
#ifndef __setresgid
|
||||
weak_alias (__setresgid, setresgid)
|
||||
#endif
|
|
@ -1,36 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
|
||||
int
|
||||
__setresuid (uid_t ruid, uid_t euid, uid_t suid)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setresuid32, 3, ruid, euid, suid);
|
||||
|
||||
return result;
|
||||
}
|
||||
libc_hidden_def (__setresuid)
|
||||
#ifndef __setresuid
|
||||
weak_alias (__setresuid, setresuid)
|
||||
#endif
|
|
@ -1,35 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
|
||||
int
|
||||
__setreuid (uid_t ruid, uid_t euid)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setreuid32, 2, ruid, euid);
|
||||
|
||||
return result;
|
||||
}
|
||||
#ifndef __setreuid
|
||||
weak_alias (__setreuid, setreuid)
|
||||
#endif
|
|
@ -1,35 +0,0 @@
|
|||
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <setxid.h>
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
|
||||
int
|
||||
__setuid (uid_t uid)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = INLINE_SETXID_SYSCALL (setuid32, 1, uid);
|
||||
|
||||
return result;
|
||||
}
|
||||
#ifndef __setuid
|
||||
weak_alias (__setuid, setuid)
|
||||
#endif
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setegid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/seteuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setgid.c>
|
|
@ -1,2 +0,0 @@
|
|||
/* We also have to rewrite the kernel gid_t to the user land type. */
|
||||
#include <sysdeps/unix/sysv/linux/i386/setgroups.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setregid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresgid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setreuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setgroups.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setegid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/seteuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setgid.c>
|
|
@ -1,2 +0,0 @@
|
|||
/* We also have to rewrite the kernel gid_t to the user land type. */
|
||||
#include <sysdeps/unix/sysv/linux/i386/setgroups.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setregid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresgid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setreuid.c>
|
|
@ -1,2 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setuid.c>
|
||||
|
|
@ -26,10 +26,7 @@ setegid (gid_t gid)
|
|||
int result;
|
||||
|
||||
if (gid == (gid_t) ~0)
|
||||
{
|
||||
__set_errno (EINVAL);
|
||||
return -1;
|
||||
}
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
||||
#ifdef __NR_setresgid32
|
||||
result = INLINE_SETXID_SYSCALL (setresgid32, 3, -1, gid, -1);
|
||||
|
|
|
@ -26,10 +26,7 @@ seteuid (uid_t uid)
|
|||
int result;
|
||||
|
||||
if (uid == (uid_t) ~0)
|
||||
{
|
||||
__set_errno (EINVAL);
|
||||
return -1;
|
||||
}
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
||||
#ifdef __NR_setresuid32
|
||||
result = INLINE_SETXID_SYSCALL (setresuid32, 3, -1, uid, -1);
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
int
|
||||
__setgid (gid_t gid)
|
||||
{
|
||||
#ifdef __NR_setgid32
|
||||
return INLINE_SETXID_SYSCALL (setgid32, 1, gid);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setgid, 1, gid);
|
||||
#endif
|
||||
}
|
||||
#ifndef __setgid
|
||||
weak_alias (__setgid, setgid)
|
||||
|
|
|
@ -28,8 +28,9 @@ int
|
|||
setgroups (size_t n, const gid_t *groups)
|
||||
{
|
||||
#ifdef __NR_setgroups32
|
||||
# error "wrong setgroups.c file used"
|
||||
#endif
|
||||
return INLINE_SETXID_SYSCALL (setgroups32, 2, n, groups);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setgroups, 2, n, groups);
|
||||
#endif
|
||||
}
|
||||
libc_hidden_def (setgroups)
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
int
|
||||
__setregid (gid_t rgid, gid_t egid)
|
||||
{
|
||||
#ifdef __NR_setregid32
|
||||
return INLINE_SETXID_SYSCALL (setregid32, 2, rgid, egid);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setregid, 2, rgid, egid);
|
||||
#endif
|
||||
}
|
||||
#ifndef __setregid
|
||||
weak_alias (__setregid, setregid)
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
int
|
||||
__setresgid (gid_t rgid, gid_t egid, gid_t sgid)
|
||||
{
|
||||
#ifdef __NR_setresgid32
|
||||
return INLINE_SETXID_SYSCALL (setresgid32, 3, rgid, egid, sgid);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setresgid, 3, rgid, egid, sgid);
|
||||
#endif
|
||||
}
|
||||
libc_hidden_def (__setresgid)
|
||||
#ifndef __setresgid
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
int
|
||||
__setresuid (uid_t ruid, uid_t euid, uid_t suid)
|
||||
{
|
||||
#ifdef __NR_setresuid32
|
||||
return INLINE_SETXID_SYSCALL (setresuid32, 3, ruid, euid, suid);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setresuid, 3, ruid, euid, suid);
|
||||
#endif
|
||||
}
|
||||
libc_hidden_def (__setresuid)
|
||||
#ifndef __setresuid
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
int
|
||||
__setreuid (uid_t ruid, uid_t euid)
|
||||
{
|
||||
#ifdef __NR_setreuid32
|
||||
return INLINE_SETXID_SYSCALL (setreuid32, 2, ruid, euid);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setreuid, 2, ruid, euid);
|
||||
#endif
|
||||
}
|
||||
#ifndef __setreuid
|
||||
weak_alias (__setreuid, setreuid)
|
||||
|
|
|
@ -22,7 +22,11 @@
|
|||
int
|
||||
__setuid (uid_t uid)
|
||||
{
|
||||
#ifdef __NR_setuid32
|
||||
return INLINE_SETXID_SYSCALL (setuid32, 1, uid);
|
||||
#else
|
||||
return INLINE_SETXID_SYSCALL (setuid, 1, uid);
|
||||
#endif
|
||||
}
|
||||
#ifndef __setuid
|
||||
weak_alias (__setuid, setuid)
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setegid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/seteuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setgid.c>
|
|
@ -1,2 +0,0 @@
|
|||
/* We also have to rewrite the kernel gid_t to the user land type. */
|
||||
#include <sysdeps/unix/sysv/linux/i386/setgroups.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setregid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresgid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setreuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setegid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/seteuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setgid.c>
|
|
@ -1,2 +0,0 @@
|
|||
/* We also have to rewrite the kernel gid_t to the user land type. */
|
||||
#include <sysdeps/unix/sysv/linux/i386/setgroups.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setregid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresgid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setresuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setreuid.c>
|
|
@ -1 +0,0 @@
|
|||
#include <sysdeps/unix/sysv/linux/i386/setuid.c>
|
Loading…
Reference in New Issue