Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ setruid(3) — Digital UNIX 4.0d

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

getuid(2)

setreuid(2)

setruid(3)  —  Subroutines

NAME

setruid, seteuid − Set the process’s user IDs

LIBRARY

Standard C Library (libc.a)

SYNOPSIS

#include <unistd.h> int setruid(
uid_t ruid); int seteuid(
uid_t euid);

PARAMETERS

euidSpecifies the effective user ID to set. 

ruidSpecifies the real user ID to set. 

DESCRIPTION

The setruid() and seteuid() functions reset the process’s real and effective user IDs, respectively. 

A process with superuser privilege can set either ID to any value.  An unprivileged process can only set the effective user ID if the euid parameter is equal to either the real, effective, or saved user ID of the process.  An unprivileged process cannot set the real user ID. 

RETURN VALUES

Upon successful completion, the seteuid() and setruid()functions return a value of 0 (zero).  Otherwise, a value of -1 is returned and errno is set to indicate the error. 

ERRORS

If the seteuid() or setruid()function fails, errno is set to the following value:

[EPERM]The euid parameter is not equal to either the real or saved user IDs of the process and the calling process does not have appropriate privilege. 

RELATED INFORMATION

Functions: getuid(2), setreuid(2). 

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026