blob: 7fd8c65e6e8071807ead506fb3700aff5987989f [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/* vi: set sw=4 ts=4: */
2/*
3 * setuid() for uClibc
4 *
5 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 *
7 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
8 */
9
10#include <sys/syscall.h>
11#include <unistd.h>
12#include <bits/wordsize.h>
13
14#if (__WORDSIZE == 32 && defined(__NR_setuid32)) || __WORDSIZE == 64
15# ifdef __NR_setuid32
16# undef __NR_setuid
17# define __NR_setuid __NR_setuid32
18# endif
19
20_syscall1(int, setuid, uid_t, uid)
21
22#else
23
24# define __NR___syscall_setuid __NR_setuid
25static __inline__ _syscall1(int, __syscall_setuid, __kernel_uid_t, uid)
26
27int setuid(uid_t uid)
28{
29 if (uid == (uid_t) ~ 0 || uid != (uid_t) ((__kernel_uid_t) uid)) {
30 __set_errno(EINVAL);
31 return -1;
32 }
33 return (__syscall_setuid(uid));
34}
35#endif