2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / i386 / setfsgid.c
blob7296d433caecb7e146804a29047fb0ad38a6c916
1 /* Copyright (C) 1998, 2000, 2003, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <sys/types.h>
21 #include <sys/fsuid.h>
23 #include <sysdep.h>
24 #include <sys/syscall.h>
25 #include <linux/posix_types.h>
26 #include <kernel-features.h>
29 #ifdef __NR_setfsgid
31 # ifdef __NR_setfsgid32
32 # if __ASSUME_32BITUIDS == 0
33 /* This variable is shared with all files that need to check for 32bit
34 uids. */
35 extern int __libc_missing_32bit_uids attribute_hidden;
36 # endif
37 # endif /* __NR_setfsgid32 */
39 int
40 setfsgid (gid_t gid)
42 INTERNAL_SYSCALL_DECL (err);
43 # if __ASSUME_32BITUIDS > 0
44 /* No error checking. */
45 return INTERNAL_SYSCALL (setfsgid32, err, 1, gid);
46 # else
47 # ifdef __NR_setfsgid32
48 if (__libc_missing_32bit_uids <= 0)
50 int result;
52 result = INTERNAL_SYSCALL (setfsgid32, err, 1, gid);
53 if (! INTERNAL_SYSCALL_ERROR_P (result, err)
54 || INTERNAL_SYSCALL_ERRNO (result, err) != ENOSYS)
55 return result;
57 __libc_missing_32bit_uids = 1;
59 # endif /* __NR_setfsgid32 */
60 if (gid != (gid_t) ((__kernel_gid_t) gid))
62 __set_errno (EINVAL);
63 return -1;
66 /* No error checking. */
67 return INTERNAL_SYSCALL (setfsgid, err, 1, gid);
68 # endif
70 #endif