1SETREGID(P) POSIX Programmer's Manual SETREGID(P)
2
3
4
6 setregid - set real and effective group IDs
7
9 #include <unistd.h>
10
11 int setregid(gid_t rgid, gid_t egid);
12
13
15 The setregid() function shall set the real and effective group IDs of
16 the calling process.
17
18 If rgid is -1, the real group ID shall not be changed; if egid is -1,
19 the effective group ID shall not be changed.
20
21 The real and effective group IDs may be set to different values in the
22 same call.
23
24 Only a process with appropriate privileges can set the real group ID
25 and the effective group ID to any valid value.
26
27 A non-privileged process can set either the real group ID to the saved
28 set-group-ID from one of the exec family of functions, or the effective
29 group ID to the saved set-group-ID or the real group ID.
30
31 Any supplementary group IDs of the calling process remain unchanged.
32
34 Upon successful completion, 0 shall be returned. Otherwise, -1 shall be
35 returned and errno set to indicate the error, and neither of the group
36 IDs are changed.
37
39 The setregid() function shall fail if:
40
41 EINVAL The value of the rgid or egid argument is invalid or out-of-
42 range.
43
44 EPERM The process does not have appropriate privileges and a change
45 other than changing the real group ID to the saved set-group-ID,
46 or changing the effective group ID to the real group ID or the
47 saved set-group-ID, was requested.
48
49
50 The following sections are informative.
51
53 None.
54
56 If a set-group-ID process sets its effective group ID to its real group
57 ID, it can still set its effective group ID back to the saved set-
58 group-ID.
59
61 None.
62
64 None.
65
67 exec() , getegid() , geteuid() , getgid() , getuid() , setegid() ,
68 seteuid() , setgid() , setreuid() , setuid() , the Base Definitions
69 volume of IEEE Std 1003.1-2001, <unistd.h>
70
72 Portions of this text are reprinted and reproduced in electronic form
73 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
74 -- Portable Operating System Interface (POSIX), The Open Group Base
75 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
76 Electrical and Electronics Engineers, Inc and The Open Group. In the
77 event of any discrepancy between this version and the original IEEE and
78 The Open Group Standard, the original IEEE and The Open Group Standard
79 is the referee document. The original Standard can be obtained online
80 at http://www.opengroup.org/unix/online.html .
81
82
83
84IEEE/The Open Group 2003 SETREGID(P)