Blame man2/setuid.2

Packit 7cfc04
.\" Copyright (C), 1994, Graeme W. Wilford (Wilf).
Packit 7cfc04
.\" and Copyright (C) 2010, 2014, 2015, Michael Kerrisk <mtk.manpages@gmail.com>
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" Fri Jul 29th 12:56:44 BST 1994  Wilf. <G.Wilford@ee.surrey.ac.uk>
Packit 7cfc04
.\" Changes inspired by patch from Richard Kettlewell
Packit 7cfc04
.\"   <richard@greenend.org.uk>, aeb 970616.
Packit 7cfc04
.\" Modified, 27 May 2004, Michael Kerrisk <mtk.manpages@gmail.com>
Packit 7cfc04
.\"     Added notes on capability requirements
Packit 7cfc04
.TH SETUID 2 2017-09-15 "Linux" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
setuid \- set user identity
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.B #include <sys/types.h>
Packit 7cfc04
.br
Packit 7cfc04
.B #include <unistd.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int setuid(uid_t " uid );
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
sets the effective user ID of the calling process.
Packit 7cfc04
If the calling process is privileged
Packit 7cfc04
(more precisely: if the process has the
Packit 7cfc04
.BR CAP_SETUID
Packit 7cfc04
capability in its user namespace),
Packit 7cfc04
the real UID and saved set-user-ID are also set.
Packit 7cfc04
.PP
Packit 7cfc04
Under Linux,
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
is implemented like the POSIX version with the
Packit 7cfc04
.B _POSIX_SAVED_IDS
Packit 7cfc04
feature.
Packit 7cfc04
This allows a set-user-ID (other than root) program to drop all of its user
Packit 7cfc04
privileges, do some un-privileged work, and then reengage the original
Packit 7cfc04
effective user ID in a secure manner.
Packit 7cfc04
.PP
Packit 7cfc04
If the user is root or the program is set-user-ID-root, special care must be
Packit 7cfc04
taken:
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
checks the effective user ID of the caller and if it is
Packit 7cfc04
the superuser, all process-related user ID's are set to
Packit 7cfc04
.IR uid .
Packit 7cfc04
After this has occurred, it is impossible for the program to regain root
Packit 7cfc04
privileges.
Packit 7cfc04
.PP
Packit 7cfc04
Thus, a set-user-ID-root program wishing to temporarily drop root
Packit 7cfc04
privileges, assume the identity of an unprivileged user, and then regain
Packit 7cfc04
root privileges afterward cannot use
Packit 7cfc04
.BR setuid ().
Packit 7cfc04
You can accomplish this with
Packit 7cfc04
.BR seteuid (2).
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
On success, zero is returned.
Packit 7cfc04
On error, \-1 is returned, and
Packit 7cfc04
.I errno
Packit 7cfc04
is set appropriately.
Packit 7cfc04
.PP
Packit 7cfc04
.IR Note :
Packit 7cfc04
there are cases where
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
can fail even when the caller is UID 0;
Packit 7cfc04
it is a grave security error to omit checking for a failure return from
Packit 7cfc04
.BR setuid ().
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
.TP
Packit 7cfc04
.B EAGAIN
Packit 7cfc04
The call would change the caller's real UID (i.e.,
Packit 7cfc04
.I uid
Packit 7cfc04
does not match the caller's real UID),
Packit 7cfc04
but there was a temporary failure allocating the
Packit 7cfc04
necessary kernel data structures.
Packit 7cfc04
.TP
Packit 7cfc04
.B EAGAIN
Packit 7cfc04
.I uid
Packit 7cfc04
does not match the real user ID of the caller and this call would
Packit 7cfc04
bring the number of processes belonging to the real user ID
Packit 7cfc04
.I uid
Packit 7cfc04
over the caller's
Packit 7cfc04
.B RLIMIT_NPROC
Packit 7cfc04
resource limit.
Packit 7cfc04
Since Linux 3.1, this error case no longer occurs
Packit 7cfc04
(but robust applications should check for this error);
Packit 7cfc04
see the description of
Packit 7cfc04
.B EAGAIN
Packit 7cfc04
in
Packit 7cfc04
.BR execve (2).
Packit 7cfc04
.TP
Packit 7cfc04
.B EINVAL
Packit 7cfc04
The user ID specified in
Packit 7cfc04
.I uid
Packit 7cfc04
is not valid in this user namespace.
Packit 7cfc04
.TP
Packit 7cfc04
.B EPERM
Packit 7cfc04
The user is not privileged (Linux: does not have the
Packit 7cfc04
.B CAP_SETUID
Packit 7cfc04
capability) and
Packit 7cfc04
.I uid
Packit 7cfc04
does not match the real UID or saved set-user-ID of the calling process.
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
POSIX.1-2001, POSIX.1-2008, SVr4.
Packit 7cfc04
Not quite compatible with the 4.4BSD call, which
Packit 7cfc04
sets all of the real, saved, and effective user IDs.
Packit 7cfc04
.\" SVr4 documents an additional EINVAL error condition.
Packit 7cfc04
.SH NOTES
Packit 7cfc04
Linux has the concept of the filesystem user ID, normally equal to the
Packit 7cfc04
effective user ID.
Packit 7cfc04
The
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
call also sets the filesystem user ID of the calling process.
Packit 7cfc04
See
Packit 7cfc04
.BR setfsuid (2).
Packit 7cfc04
.PP
Packit 7cfc04
If
Packit 7cfc04
.I uid
Packit 7cfc04
is different from the old effective UID, the process will
Packit 7cfc04
be forbidden from leaving core dumps.
Packit 7cfc04
.PP
Packit 7cfc04
The original Linux
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
system call supported only 16-bit user IDs.
Packit 7cfc04
Subsequently, Linux 2.4 added
Packit 7cfc04
.BR setuid32 ()
Packit 7cfc04
supporting 32-bit IDs.
Packit 7cfc04
The glibc
Packit 7cfc04
.BR setuid ()
Packit 7cfc04
wrapper function transparently deals with the variation across kernel versions.
Packit 7cfc04
.\"
Packit 7cfc04
.SS C library/kernel differences
Packit 7cfc04
At the kernel level, user IDs and group IDs are a per-thread attribute.
Packit 7cfc04
However, POSIX requires that all threads in a process
Packit 7cfc04
share the same credentials.
Packit 7cfc04
The NPTL threading implementation handles the POSIX requirements by
Packit 7cfc04
providing wrapper functions for
Packit 7cfc04
the various system calls that change process UIDs and GIDs.
Packit 7cfc04
These wrapper functions (including the one for
Packit 7cfc04
.BR setuid ())
Packit 7cfc04
employ a signal-based technique to ensure
Packit 7cfc04
that when one thread changes credentials,
Packit 7cfc04
all of the other threads in the process also change their credentials.
Packit 7cfc04
For details, see
Packit 7cfc04
.BR nptl (7).
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR getuid (2),
Packit 7cfc04
.BR seteuid (2),
Packit 7cfc04
.BR setfsuid (2),
Packit 7cfc04
.BR setreuid (2),
Packit 7cfc04
.BR capabilities (7),
Packit 7cfc04
.BR credentials (7),
Packit 7cfc04
.BR user_namespaces (7)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.