1SETEUID(3P) POSIX Programmer's Manual SETEUID(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
11
13 seteuid — set effective user ID
14
16 #include <unistd.h>
17
18 int seteuid(uid_t uid);
19
21 If uid is equal to the real user ID or the saved set-user-ID, or if the
22 process has appropriate privileges, seteuid() shall set the effective
23 user ID of the calling process to uid; the real user ID and saved set-
24 user-ID shall remain unchanged.
25
26 The seteuid() function shall not affect the supplementary group list in
27 any way.
28
30 Upon successful completion, 0 shall be returned; otherwise, −1 shall be
31 returned and errno set to indicate the error.
32
34 The seteuid() function shall fail if:
35
36 EINVAL The value of the uid argument is invalid and is not supported by
37 the implementation.
38
39 EPERM The process does not have appropriate privileges and uid does
40 not match the real user ID or the saved set-user-ID.
41
42 The following sections are informative.
43
45 None.
46
48 None.
49
51 Refer to the RATIONALE section in setuid().
52
54 None.
55
57 exec, getegid(), geteuid(), getgid(), getuid(), setegid(), setgid(),
58 setregid(), setreuid(), setuid()
59
60 The Base Definitions volume of POSIX.1‐2008, <sys_types.h>, <unistd.h>
61
63 Portions of this text are reprinted and reproduced in electronic form
64 from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
65 -- Portable Operating System Interface (POSIX), The Open Group Base
66 Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
67 cal and Electronics Engineers, Inc and The Open Group. (This is
68 POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
69 event of any discrepancy between this version and the original IEEE and
70 The Open Group Standard, the original IEEE and The Open Group Standard
71 is the referee document. The original Standard can be obtained online
72 at http://www.unix.org/online.html .
73
74 Any typographical or formatting errors that appear in this page are
75 most likely to have been introduced during the conversion of the source
76 files to man page format. To report such errors, see https://www.ker‐
77 nel.org/doc/man-pages/reporting_bugs.html .
78
79
80
81IEEE/The Open Group 2013 SETEUID(3P)