SETREUID(2) BSD System Calls Manual SETREUID(2)NAME
setreuid -- set real and effective user ID's
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <unistd.h>
int
setreuid(uid_t ruid, uid_t euid);
DESCRIPTION
The real and effective user IDs of the current process are set according to the arguments. If ruid or euid is -1, the current uid is filled
in by the system. Unprivileged users may change the real user ID to the effective user ID and vice-versa; only the super-user may make other
changes.
If the real user ID is changed (i.e. ruid is not -1) or the effective user ID is changed to something other than the real user ID, then the
saved user ID will be set to the effective user ID.
The setreuid() system call has been used to swap the real and effective user IDs in set-user-ID programs to temporarily relinquish the set-
user-ID value. This purpose is now better served by the use of the seteuid(2) system call.
When setting the real and effective user IDs to the same value, the standard setuid() system call is preferred.
RETURN VALUES
The setreuid() function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indi-
cate the error.
ERRORS
[EPERM] The current process is not the super-user and a change other than changing the effective user-id to the real user-id was
specified.
SEE ALSO getuid(2), issetugid(2), seteuid(2), setuid(2)HISTORY
The setreuid() system call appeared in 4.2BSD.
BSD February 8, 2001 BSD
Check Out this Related Man Page
SETREUID(2) BSD System Calls Manual SETREUID(2)NAME
setreuid -- set real and effective user ID's
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <unistd.h>
int
setreuid(uid_t ruid, uid_t euid);
DESCRIPTION
This interface is made obsolete by the saved ID functionality in setuid(2) and seteuid(2).
The real and effective user ID's of the current process are set according to the arguments. If the real user ID is changed, the saved user
ID is changed to the new value of the effective user ID.
If ruid or euid is -1, the current uid is filled in by the system. Unprivileged users may change the real user ID to the effective user ID,
and may change the effective user ID to the real user ID or the saved user ID; only the super-user may make other changes.
The setreuid() function has been used to swap the real and effective user IDs in set-user-ID programs to temporarily relinquish the set-user-
ID value. This purpose is now better served by the use of the seteuid() function (see setuid(2)).
When setting the real and effective user IDs to the same value, this function is equivalent to the setuid() function. When setting only the
effective user ID, this function is equivalent to the seteuid() function.
RETURN VALUES
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error.
ERRORS
[EPERM] The current process is not the super-user and a change other than changing the effective user-id to the real user-id was
specified.
SEE ALSO getuid(2), seteuid(2), setgid(2), setuid(2)HISTORY
The setreuid() function call appeared in 4.2BSD. An incompatible version was implemented in 4.4BSD. It was reimplemented in NetBSD 1.2 in a
way compatible with 4.3BSD, SunOS and Linux, but should not be used in new code.
BSD January 5, 2001 BSD
Hi all,
I want to set a size limitation for some user in the system, for an example, each user only have 5MB free space in the system. The user cannot user more than 5 MB space.
Is it possible to do this? Thanks! (1 Reply)
I know that in order to get a real user name I should use the following command: cut -d: -f5 /etc/passwd. But how can I get the real user name for those users who are currently logged in to the system??? :confused: Can somebody help me??? (3 Replies)
I would like to know the difference between the real user-id and the
effective user-id. If user-A runs a program owned by user-B then
which is the real user-id and which is the effective user-id ? (1 Reply)
I am writing programm that changes permission in the running;
I used at the command : seteuid();
the id of the process is changed but the permission not, why??
The program:
int status;
pid_t child = fork();
if (child == 0)
{
seteuid(1200); // I checks that "1200" is exist id process
... (1 Reply)
Write a tool that will be displayed in real time, what user connects or disconnects from a system that uses this tool :))
Maybe anyone can help me? (2 Replies)
Hi all,
Ok, bear with me on this one, I am a bit new to Unix and it might take me a little bit of time to articulate my question.
I know that every process has a user id and an effective user id. This seems to include the shell itself, because when I type 'ps', I see 'bash' listed as a... (2 Replies)
Hello all.
Despite the exec man page, the exec system call seems to turn my effective-user-id into my real-user-id.
I coded and compiled 2 very simple c programs as user 1 (uid=501)
The first one (A) prints real and effective user IDs and then execs the second one (B), which in turn prints... (7 Replies)