*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: user_from_uid | Section: 3 | Source: OpenBSD | File: user_from_uid.3
USER_FROM_UID(3) FreeBSD Library Functions Manual USER_FROM_UID(3) NAME user_from_uid, uid_from_user, group_from_gid, gid_from_group - cache password and group entries SYNOPSIS #include <pwd.h> int uid_from_user(const char *name, uid_t *uid); const char * user_from_uid(uid_t uid, int nouser); #include <grp.h> int gid_from_group(const char *name, gid_t *gid); const char * group_from_gid(gid_t gid, int nogroup); DESCRIPTION The user_from_uid() function returns the user name associated with the argument uid. The user name is cached so that multiple calls with the same uid do not require additional calls to getpwuid(3). If there is no user associated with the uid, a pointer is returned to a string representation of the uid, unless the argument nouser is non-zero, in which case a null pointer is returned. The uid_from_user() function returns the user ID associated with the argument name. The user ID is cached so that multiple calls with the same name do not require additional calls to getpwnam(3). If there is no user ID associated with the name, the uid_from_user() function returns -1; otherwise it stores the user ID at the location pointed to by uid and returns 0. The group_from_gid() function returns the group name associated with the argument gid. The group name is cached so that multiple calls with the same gid do not require additional calls to getgrgid(3). If there is no group associated with the gid, a pointer is returned to a string representation of the gid, unless the argument nogroup is non-zero, in which case a null pointer is returned. The gid_from_group() function returns the group ID associated with the argument name. The group ID is cached so that multiple calls with the same name do not require additional calls to getgrnam(3). If there is no group ID associated with the name, the gid_from_group() function returns -1; otherwise it stores the group ID at the location pointed to by gid and returns 0. SEE ALSO getgrgid(3), getpwuid(3) HISTORY The user_from_uid() and group_from_gid() functions first appeared in 4.3BSD-Reno in libutil and moved to libc in 4.4BSD. The uid_from_user() and gid_from_group() functions were ported from NetBSD and first appeared in OpenBSD 6.4. FreeBSD 14.1-RELEASE-p8 August 5, 2022 FreeBSD 14.1-RELEASE-p8

Navigation Options