man-pages/man2/setuid.2

116 lines
3.6 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright (C), 1994, Graeme W. Wilford (Wilf).
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
2004-11-03 13:51:07 +00:00
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Fri Jul 29th 12:56:44 BST 1994 Wilf. <G.Wilford@ee.surrey.ac.uk>
2004-11-03 13:51:07 +00:00
.\" Changes inspired by patch from Richard Kettlewell
.\" <richard@greenend.org.uk>, aeb 970616.
2007-09-20 06:52:22 +00:00
.\" Modified, 27 May 2004, Michael Kerrisk <mtk.manpages@gmail.com>
2004-11-03 13:51:07 +00:00
.\" Added notes on capability requirements
.TH SETUID 2 2010-02-21 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
setuid \- set user identity
.SH SYNOPSIS
.B #include <sys/types.h>
.br
.B #include <unistd.h>
.sp
.BI "int setuid(uid_t " uid );
.SH DESCRIPTION
.BR setuid ()
2007-12-27 16:06:35 +00:00
sets the effective user ID of the calling process.
If the effective UID of the caller is root,
the real UID and saved set-user-ID are also set.
2004-11-03 13:51:07 +00:00
.PP
Under Linux,
.BR setuid ()
2007-07-08 16:21:19 +00:00
is implemented like the POSIX version with the
.B _POSIX_SAVED_IDS
feature.
This allows a set-user-ID (other than root) program to drop all of its user
privileges, do some un-privileged work, and then reengage the original
2004-11-03 13:51:07 +00:00
effective user ID in a secure manner.
.PP
If the user is root or the program is set-user-ID-root, special care must be
taken.
The
.BR setuid ()
2004-12-13 08:58:09 +00:00
function checks the effective user ID of the caller and if it is
2007-06-02 05:49:27 +00:00
the superuser, all process-related user ID's are set to
.IR uid .
2004-11-03 13:51:07 +00:00
After this has occurred, it is impossible for the program to regain root
privileges.
.PP
Thus, a set-user-ID-root program wishing to temporarily drop root
privileges, assume the identity of an unprivileged user, and then regain
root privileges afterwards cannot use
.BR setuid ().
You can accomplish this with
.BR seteuid (2).
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
On success, zero is returned.
On error, \-1 is returned, and
2004-11-03 13:51:07 +00:00
.I errno
is set appropriately.
.SH ERRORS
.TP
.B EAGAIN
The
.I uid
does not match the current uid and
2004-11-03 13:51:07 +00:00
.I uid
2007-06-23 07:19:07 +00:00
brings process over its
2007-09-20 16:26:31 +00:00
.B RLIMIT_NPROC
2007-06-22 19:42:52 +00:00
resource limit.
2004-11-03 13:51:07 +00:00
.TP
.B EPERM
The user is not privileged (Linux: does not have the
.B CAP_SETUID
capability) and
.I uid
does not match the real UID or saved set-user-ID of the calling process.
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
SVr4, POSIX.1-2001.
2006-08-03 13:57:17 +00:00
Not quite compatible with the 4.4BSD call, which
sets all of the real, saved, and effective user IDs.
2006-08-03 13:57:17 +00:00
.\" SVr4 documents an additional EINVAL error condition.
.SH NOTES
.SS Linux Notes
2008-03-19 07:26:08 +00:00
Linux has the concept of file system user ID, normally equal to the
effective user ID.
The
.BR setuid ()
2008-03-19 07:26:08 +00:00
call also sets the file system user ID of the calling process.
2004-11-03 13:51:07 +00:00
See
.BR setfsuid (2).
.PP
If
.I uid
is different from the old effective uid, the process will
be forbidden from leaving core dumps.
.SH "SEE ALSO"
.BR getuid (2),
.BR seteuid (2),
.BR setfsuid (2),
.BR setreuid (2),
.BR capabilities (7),
.BR credentials (7)