*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->FreeBSD man pages -> seteuid (2)              
Title
Content
Arch
Section
 

SETUID(2)

Contents


NAME    [Toc]    [Back]

     setuid, seteuid, setgid, setegid, -- set user and group ID

LIBRARY    [Toc]    [Back]

     Standard C Library (libc, -lc)

SYNOPSIS    [Toc]    [Back]

     #include <sys/types.h>
     #include <unistd.h>

     int
     setuid(uid_t uid);

     int
     seteuid(uid_t euid);

     int
     setgid(gid_t gid);

     int
     setegid(gid_t egid);

DESCRIPTION    [Toc]    [Back]

     The setuid() system call sets the real and effective user IDs and the
     saved set-user-ID of the current process to the specified value.  The
     setuid() system call is permitted if the specified ID is equal to the
     real user ID or the effective user ID of the process, or if the effective
     user ID is that of the super user.

     The setgid() system call sets the real and effective group IDs and the
     saved set-group-ID of the current process to the specified value.	The
     setgid() system call is permitted if the specified ID is equal to the
     real group ID or the effective group ID of the process, or if the effective
 user ID is that of the super user.

     The seteuid() system call (setegid()) sets the effective user ID (group
     ID) of the current process.  The effective user ID may be set to the
     value of the real user ID or the saved set-user-ID (see intro(2) and
     execve(2)); in this way, the effective user ID of a set-user-ID executable
 may be toggled by switching to the real user ID, then re-enabled
     by reverting to the set-user-ID value.  Similarly, the effective group ID
     may be set to the value of the real group ID or the saved set-group-ID.

RETURN VALUES    [Toc]    [Back]

     Upon successful completion, the value 0 is returned; otherwise the
     value -1 is returned and the global variable errno is set to indicate the
     error.

ERRORS    [Toc]    [Back]

     The system calls will fail if:

     [EPERM]		The user is not the super user and the ID specified is
			not the real, effective ID, or saved ID.

SECURITY CONSIDERATIONS    [Toc]    [Back]

     Read and write permissions to files are determined upon a call to
     open(2).  Once a file descriptor is open, dropping privilege does not
     affect the process's read/write permissions, even if the user ID specified
 has no read or write permissions to the file.  These files normally
     remain open in any new process executed, resulting in a user being able
     to read or modify potentially sensitive data.

     To prevent these files from remaining open after an exec(3) call, be sure
     to set the close-on-exec flag is set:

     void
     pseudocode(void)
     {
	     int fd;
	     /* ... */

	     fd = open("/path/to/sensitive/data", O_RDWR);
	     if (fd == -1)
		     err(1, "open");

	     /*
	      * Set close-on-exec flag; see fcntl(2) for more information.
	      */
	     if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
		     err(1, "fcntl(F_SETFD)");
	     /* ... */
	     execve(path, argv, environ);
     }

SEE ALSO    [Toc]    [Back]

      
      
     getgid(2), getuid(2), issetugid(2), setregid(2), setreuid(2)

STANDARDS    [Toc]    [Back]

     The setuid() and setgid() system calls are compliant with the ISO/IEC
     9945-1:1990 (``POSIX.1'') specification with _POSIX_SAVED_IDS not defined
     with the permitted extensions from Appendix B.4.2.2.  The seteuid() and
     setegid() system calls are extensions based on the POSIX concept of
     _POSIX_SAVED_IDS, and have been proposed for a future revision of the
     standard.

HISTORY    [Toc]    [Back]

     The setuid() and setgid() functions appeared in Version 7 AT&T UNIX.


FreeBSD 5.2.1			 June 4, 1993			 FreeBSD 5.2.1
[ Back ]
 Similar pages
Name OS Title
setuid IRIX set user and group IDs
setgid HP-UX set user and group IDs
seteuid IRIX set user and group IDs
setuid HP-UX set user and group IDs
group Linux user group file
adduser Linux add a user or group to the system
id IRIX print the user name and ID, and group name and ID
seteuid Linux set effective user or group ID
cd_idmap Tru64 sets or gets mappings of User and Group IDs on
getegid HP-UX get real user, effective user, real group, and effective group IDs
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service