Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
setuid(2)
Edit
PageHistory
Diff
Info
LikePages
SETUID !!!SETUID NAME SYNOPSIS DESCRIPTION RETURN VALUE ERRORS CONFORMING TO LINUX-SPECIFIC REMARKS SEE ALSO ---- !!NAME setuid - set user identity !!SYNOPSIS __#include __ #include __ __int setuid(uid_t__ ''uid''__)__ !!DESCRIPTION __setuid__ sets the effective user ID of the current process. If the effective userid of the caller is root, the real and saved user ID's are also set. Under Linux, __setuid__ is implemented like the POSIX version with the _POSIX_SAVED_IDS feature. This allows a setuid (other than root) program to drop all of its user privileges, do some un-privileged work, and then re-engage the original effective user ID in a secure manner. If the user is root or the program is setuid root, special care must be taken. The __setuid__ function checks the effective uid of the caller and if it is the superuser, all process related user ID's are set to ''uid''. After this has occurred, it is impossible for the program to regain root privileges. Thus, a setuid-root program wishing to temporarily drop root privileges, assume the identity of a non-root user, and then regain root privileges afterwards cannot use __setuid__. You can accomplish this with the (non-POSIX, BSD) call __seteuid__. !!RETURN VALUE On success, zero is returned. On error, -1 is returned, and ''errno'' is set appropriately. !!ERRORS __EPERM__ The user is not the super-user, and ''uid'' does not match the real or saved user ID of the calling process. !!CONFORMING TO SVr4, SVID, POSIX.1. Not quite compatible with the 4.4BSD call, which sets all of the real, saved, and effective user IDs. SVr4 documents an additional EINVAL error condition. !!LINUX-SPECIFIC REMARKS Linux has the concept of filesystem user ID, normally equal to the effective user ID. The __setuid__ call also sets the filesystem user ID of the current process. See setfsuid(2). If ''uid'' is different from the old effective uid, the process will be forbidden from leaving core dumps. !!SEE ALSO getuid(2), setreuid(2), seteuid(2), setfsuid(2) ----
16 pages link to
setuid(2)
:
Man2s
ci(1)
setegid(2)
seteuid(2)
setregid(2)
setresgid(2)
setresuid(2)
setreuid(2)
syscalls(2)
access(2)
getresgid(2)
getresuid(2)
getuid(2)
geteuid(2)
trickle(1)
InterestingLinks
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.