2 .\" Sheldon Hearn. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" $FreeBSD: src/lib/libc/sys/setresuid.2,v 1.2.2.8 2001/12/14 18:34:01 ru Exp $
21 .\" $DragonFly: src/lib/libc/sys/setresuid.2,v 1.4 2007/08/03 08:40:14 swildner Exp $
31 .Nd get or set real, effective and saved user or group ID
38 .Fn getresgid "gid_t *rgid" "gid_t *egid" "gid_t *sgid"
40 .Fn getresuid "uid_t *ruid" "uid_t *euid" "uid_t *suid"
42 .Fn setresgid "gid_t rgid" "gid_t egid" "gid_t sgid"
44 .Fn setresuid "uid_t ruid" "uid_t euid" "uid_t suid"
48 system call sets the real,
49 effective and saved user IDs of the current process.
52 sets the real, effective and saved group IDs.
54 Privileged processes may set these IDs
56 Unprivileged processes are restricted
57 in that each of the new IDs must match one of the current IDs.
59 Passing -1 as an argument causes the corresponding value
66 calls retrieve the real, effective, and saved group and user IDs of
67 the current process, respectively.
79 The calling process was not privileged
80 and tried to change one or more IDs to a value
81 which was not the current real ID, the current effective ID
82 nor the current saved ID.
95 These system calls are not available on many platforms.
98 to support Linux binaries linked against GNU libc2.
100 These system calls first appeared in HP-UX.