Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

getuid(2) [osf1 man page]

getuid(2)							System Calls Manual							 getuid(2)

NAME
getuid, geteuid - Gets the real or effective user ID SYNOPSIS
#include <unistd.h> uid_t getuid( void ); uid_t geteuid( void ); Application developers may want to specify an #include statement for <sys/types.h> before the one for <unistd.h> if programs are being developed for multiple platforms. The additional #include statement is not required on Tru64 UNIX systems or by ISO or X/Open standards, but may be required on other vendors' systems that conform to these standards. STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: getuid(): POSIX.1, XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags. DESCRIPTION
The getuid() function returns the real user ID of the calling process. The geteuid() function returns the effective user ID of the calling process. RELATED INFORMATION
Functions: setuid(2), setruid(3), setreuid(2) Standards: standards(5) delim off getuid(2)

Check Out this Related Man Page

setuid(2)							System Calls Manual							 setuid(2)

NAME
setuid - Sets the user ID SYNOPSIS
#include <unistd.h> int setuid ( uid_t user_id ); Application developers may want to specify an #include statement for <sys/types.h> before the one for <unistd.h> if programs are being developed for multiple platforms. The additional #include statement is not required on Tru64 UNIX systems or by ISO or X/Open standards, but may be required on other vendors' systems that conform to these standards. STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: setuid(): XSH5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies the new user ID. DESCRIPTION
The setuid() function sets the real user ID, effective user ID, and the saved set user ID to the user_id parameter. To change the real user ID, the effective user ID, and the saved set user ID, the calling process must have superuser privilege. If the process does not have appropriate privilege, but the user_id parameter is equal to the real user ID or the saved set user ID, the setuid() function sets the effective user ID to the user_id parameter. The real user ID and saved set user ID remain unchanged. RETURN VALUES
Upon successful completion, the setuid() function returns a value of 0 (zero). Otherwise, the function returns a value of -1 and sets errno to indicate the error. ERRORS
The setuid() function sets errno to the specified values for the following conditions: [Tru64 UNIX] The process is attempting an operation that would exceeds a system limit, such as the number of tasks or threads allowed for a user ID. The value of the user_id parameter is invalid. The process does not have superuser privileges, and the user_id parameter does not match the real user ID or the saved set user ID. RELATED INFORMATION
Functions: exec(2), getuid(2), setgid(2), setreuid(2) Standards: standards(5) delim off setuid(2)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Standards

I have been asked to put together some coding standards for the project I am assigned to. I have found documented standards for C/C++, Java but was wondering if there is a good place for UNIX scripting (Korn/Bourne) standards? Does anyone know of a good place to find information on scripting... (3 Replies)
Discussion started by: google
3 Replies

2. Cybersecurity

Information Security Certification ??

Hi All I am not sure this is the right place to ask this question. I am from India ( Mumbai ) .I am in IT industry ( as Application developer / System support ) for nearly 4 years i dont have any direct security related work experience but i did work on cryptography & Access control in 2... (4 Replies)
Discussion started by: zedex
4 Replies

3. Programming

Help with getuid

I'm not that acquainted to C programming and would like to know how to obtain the internal Unix userid of a user (I'm on HP UX) and stro it in a variable. I found the getuid() fonction returns the current user's internal ID. But I would like to find it for a different user. I was hoping... (7 Replies)
Discussion started by: rm-r
7 Replies