d684828b848dacd9318291934e62ea119930c7fc
[dragonfly.git] / lib / libc / sys / setresuid.2
1 .\" Copyright (c) 2000
2 .\"      Sheldon Hearn.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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.
12 .\"
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
18 .\" DAMAGES
19 .\"
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.2 2003/06/17 04:26:47 dillon Exp $
22 .\"
23 .Dd January 17, 2000
24 .Dt SETRESUID 2
25 .Os
26 .Sh NAME
27 .Nm setresgid ,
28 .Nm setresuid
29 .Nd set real, effective and saved user or group ID
30 .Sh LIBRARY
31 .Lb libc
32 .Sh SYNOPSIS
33 .In sys/types.h
34 .In unistd.h
35 .Ft int
36 .Fn setresgid "gid_t rgid" "gid_t egid" "gid_t sgid"
37 .Ft int
38 .Fn setresuid "uid_t ruid" "uid_t euid" "uid_t suid"
39 .Sh DESCRIPTION
40 The
41 .Fn setresuid
42 system call sets the real,
43 effective and saved user IDs of the current process.
44 The analogous
45 .Fn setresgid
46 sets the real, effective and saved group IDs.
47 .Pp
48 Privileged processes may set these IDs
49 to arbitrary values.
50 Unprivileged processes are restricted
51 in that each of the new IDs must match one of the current IDs.
52 .Pp
53 Passing -1 as an argument causes the corresponding value
54 to remain unchanged.
55 .Sh RETURN VALUES
56 .Rv -std
57 .Sh ERRORS
58 .Bl -tag -width Er
59 .It Bq Er EPERM
60 The calling process was not privileged
61 and tried to change one or more IDs to a value
62 which was not the current real ID, the current effective ID
63 nor the current saved ID.
64 .El
65 .Sh SEE ALSO
66 .Xr getegid 2 ,
67 .Xr geteuid 2 ,
68 .Xr getgid 2 ,
69 .Xr getuid 2 ,
70 .Xr issetugid 2 ,
71 .Xr setgid 2 ,
72 .Xr setregid 2 ,
73 .Xr setreuid 2 ,
74 .Xr setuid 2
75 .Sh STANDARDS
76 These system calls are not available on many platforms.
77 They exist in
78 .Fx
79 to support Linux binaries linked against GNU libc2.
80 .Sh HISTORY
81 These system calls first appeared in HP-UX.