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, see
16 <http://www.gnu.org/licenses/>. */
19 #include <sys/types.h>
20 #include <sys/fsuid.h>
23 #include <sys/syscall.h>
24 #include <linux/posix_types.h>
25 #include <kernel-features.h>
30 # ifdef __NR_setfsgid32
31 # if __ASSUME_32BITUIDS == 0
32 /* This variable is shared with all files that need to check for 32bit
34 extern int __libc_missing_32bit_uids attribute_hidden
;
36 # endif /* __NR_setfsgid32 */
41 INTERNAL_SYSCALL_DECL (err
);
42 # if __ASSUME_32BITUIDS > 0
43 /* No error checking. */
44 return INTERNAL_SYSCALL (setfsgid32
, err
, 1, gid
);
46 # ifdef __NR_setfsgid32
47 if (__libc_missing_32bit_uids
<= 0)
51 result
= INTERNAL_SYSCALL (setfsgid32
, err
, 1, gid
);
52 if (! INTERNAL_SYSCALL_ERROR_P (result
, err
)
53 || INTERNAL_SYSCALL_ERRNO (result
, err
) != ENOSYS
)
56 __libc_missing_32bit_uids
= 1;
58 # endif /* __NR_setfsgid32 */
59 if (gid
!= (gid_t
) ((__kernel_gid_t
) gid
))
65 /* No error checking. */
66 return INTERNAL_SYSCALL (setfsgid
, err
, 1, gid
);