blob: a7372bd2931dae8839dc157f9b4a82509a745cd2 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/* vi: set sw=4 ts=4: */
2/*
3 * setfsuid() 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 <sys/fsuid.h>
12#include <bits/wordsize.h>
13
14#if (__WORDSIZE == 32 && defined(__NR_setfsuid32)) || __WORDSIZE == 64
15# ifdef __NR_setfsuid32
16# undef __NR_setfsuid
17# define __NR_setfsuid __NR_setfsuid32
18# endif
19
20_syscall1(int, setfsuid, uid_t, uid)
21
22#else
23
24# define __NR___syscall_setfsuid __NR_setfsuid
25static __inline__ _syscall1(int, __syscall_setfsuid, __kernel_uid_t, uid)
26
27int setfsuid(uid_t uid)
28{
29 if (uid != (uid_t) ((__kernel_uid_t) uid)) {
30 __set_errno(EINVAL);
31 return -1;
32 }
33 return (__syscall_setfsuid(uid));
34}
35#endif