OSDN Git Service

(split) LDP man-pages の original/ を v3.30 に更新。
[linuxjm/LDP_man-pages.git] / original / man2 / setresuid.2
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" Copyright (C) 1997 Andries Brouwer (aeb@cwi.nl)
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\" Modified, 2003-05-26, Michael Kerrisk, <mtk.manpages@gmail.com>
26 .TH SETRESUID 2 2007-07-26 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 setresuid, setresgid \- set real, effective and saved user or group ID
29 .SH SYNOPSIS
30 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
31 .br
32 .B #include <unistd.h>
33 .sp
34 .BI "int setresuid(uid_t " ruid ", uid_t " euid ", uid_t " suid );
35 .br
36 .BI "int setresgid(gid_t " rgid ", gid_t " egid ", gid_t " sgid );
37 .SH DESCRIPTION
38 .BR setresuid ()
39 sets the real user ID, the effective user ID, and the
40 saved set-user-ID of the calling process.
41
42 Unprivileged user processes
43 may change the real UID,
44 effective UID, and saved set-user-ID, each to one of:
45 the current real UID, the current effective UID or the
46 current saved set-user-ID.
47
48 Privileged processes (on Linux, those having the \fBCAP_SETUID\fP capability)
49 may set the real UID, effective UID, and
50 saved set-user-ID to arbitrary values.
51
52 If one of the arguments equals \-1, the corresponding value is not changed.
53
54 Regardless of what changes are made to the real UID, effective UID,
55 and saved set-user-ID, the file system UID is always set to the same
56 value as the (possibly new) effective UID.
57
58 Completely analogously,
59 .BR setresgid ()
60 sets the real GID, effective GID, and saved set-group-ID
61 of the calling process (and always modifies the file system GID
62 to be the same as the effective GID),
63 with the same restrictions for unprivileged processes.
64 .SH "RETURN VALUE"
65 On success, zero is returned.
66 On error, \-1 is returned, and
67 .I errno
68 is set appropriately.
69 .SH ERRORS
70 .TP
71 .B EAGAIN
72 .I uid
73 does not match the current UID and this call would
74 bring that user ID over its
75 .B RLIMIT_NPROC
76 resource limit.
77 .TP
78 .B EPERM
79 The calling process is not privileged (did not have the \fBCAP_SETUID\fP
80 capability) and tried to change the IDs to values that are not permitted.
81 .SH VERSIONS
82 These calls are available under Linux since Linux 2.1.44.
83 .SH "CONFORMING TO"
84 These calls are nonstandard;
85 they also appear on HP-UX and some of the BSDs.
86 .SH NOTES
87 Under HP-UX and FreeBSD the prototype is found in
88 .IR <unistd.h> .
89 Under Linux the prototype is provided by glibc since version 2.3.2.
90 .SH "SEE ALSO"
91 .BR getresuid (2),
92 .BR getuid (2),
93 .BR setfsgid (2),
94 .BR setfsuid (2),
95 .BR setreuid (2),
96 .BR setuid (2),
97 .BR capabilities (7),
98 .BR credentials (7)