Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cuserid(3s) [hpux man page]

cuserid(3S)															       cuserid(3S)

NAME
cuserid() - get character login name of the user SYNOPSIS
Remarks: Because this function behaved differently in previous releases of HP-UX, and behaves differently on other systems, its use is not recom- mended. It is provided only for conformance to current industry standards, and is subject to withdrawal in future releases of HP-UX. For portability and security, application writers and maintainers should search their existing code and replace references to with equiva- lent calls to or depending on which user name is desired. DESCRIPTION
generates a character-string representation of the user name corresponding to the effective user ID of the process. If s is a NULL pointer, this representation is generated in an internal static area, the address of which is returned. Otherwise, s is assumed to point to an array of at least characters; the representation is left in this array. The constant is defined in the header file. For multi-thread applications, if s is a NULL pointer, the operation is not performed and a NULL pointer is returned. DIAGNOSTICS
If the login name cannot be found, returns a NULL pointer; if s is not a NULL pointer, a null character is placed at s[0]. WARNINGS
Obsolescent Interfaces is to be obsoleted at a future date. SEE ALSO
geteuid(2), getuid(2), getlogin(3C), getpwent(3C), getpwuid(3C), thread_safety(5). STANDARDS CONFORMANCE
TO BE OBSOLETED cuserid(3S)

Check Out this Related Man Page

GETLOGIN(3)						     Linux Programmer's Manual						       GETLOGIN(3)

NAME
getlogin, cuserid - get user name SYNOPSIS
#include <unistd.h> char *getlogin(void); #include <stdio.h> char *cuserid(char *string); DESCRIPTION
getlogin returns a pointer to a string containing the name of the user logged in on the controlling terminal of the process, or a null pointer if this information cannot be determined. The string is statically allocated and might be overwritten on subsequent calls to this function or to cuserid. cuserid returns a pointer to a string containing a user name associated with the effective user ID of the process. If string is not a null pointer, it should be an array that can hold at least L_cuserid characters; the string is returned in this array. Otherwise, a pointer to a string in a static area is returned. This string is statically allocated and might be overwritten on subsequent calls to this function or to getlogin. The macro L_cuserid is an integer constant that indicates how long an array you might need to store a user name. L_cuserid is declared in stdio.h. These functions let your program identify positively the user who is running (cuserid) or the user who logged in this session (getlogin). (These can differ when setuid programs are involved.) For most purposes, it is more useful to use the environment variable LOGNAME to find out who the user is. This is more flexible precisely because the user can set LOGNAME arbitrarily. ERRORS
ENOMEM Insufficient memory to allocate passwd structure. FILES
/etc/passwd password database file /var/run/utmp (traditionally /etc/utmp; some libc versions used /var/adm/utmp) CONFORMING TO
POSIX.1. System V has a cuserid function which uses the real user ID rather than the effective user ID. The cuserid function was included in the 1988 version of POSIX, but removed from the 1990 version. BUGS
Unfortunately, it is often rather easy to fool getlogin(). Sometimes it does not work at all, because some program messed up the utmp file. Often, it gives only the first 8 characters of the login name. The user currently logged in on the controlling tty of our program need not be the user who started it. Avoid getlogin() for security-related purposes. Nobody knows precisely what cuserid() does - avoid it in portable programs - avoid it altogether - use getpwuid(geteuid()) instead, if that is what you meant. DO NOT USE cuserid(). SEE ALSO
geteuid(2), getuid(2) Linux 1.2.13 1995-09-03 GETLOGIN(3)
Man Page