*** 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: sia_get_groups | Section: 3 | Source: Digital UNIX | File: sia_get_groups.3.gz
sia_get_groups(3) Library Functions Manual sia_get_groups(3) NAME sia_get_groups - retrieve user's group information for SIA (Security Integration Architecture) LIBRARY Standard C library (libc.so and libc.a) SYNOPSIS #include <sia.h> #include <siad.h> int sia_get_groups( const char *username gid_t basegid gid_t *buffer int *ngroups) PARAMETERS The name of the user whose group information should be written to the buffer array. This parameter is read only. If not ((gid_t)-1), this GID will appear in the buffer array in addition to any other groups found for this user. This is normally used to pass the user's GID from the password information, since the GID is not necessarily listed in the group information obtained with getgrent(). The array into which this routine writes the accumulated GIDs for the specified user. On input, this parameter points to an integer that represents the maximum number of entries allowed for the buffer array. When this routine re- turns, it updates this value to be the number of entries which were found. On failure, the value is indeterminate. DESCRIPTION The sia_get_groups() routine is called to obtain a user's group array. EXAMPLES A typical call to obtain a user's group array follows: #include <sia.h> int ngroups; gid_t groups[NGROUPS]; struct passwd *pw; extern char *username; pw = getpwnam(username); if (pw == NULL) return 0; ngroups = NGROUPS; if (sia_get_groups(username, pw->pw_gid, groups, &ngroups) != SIASUCCESS) return 0; /* process group array here */ RETURN VALUES This routine returns SIA_SUCCESS if all the incoming arguments are cor- rect (non-null pointers, non-null username, and *ngroups must be posi- tive), and if none of the configured mechanism functions for group pro- cessing returned a fatal error. Finding more than *ngroups GIDs for the user is one such fatal error, and is the only one defined for all mechanisms. If a fatal error is encountered in one of the configured mechanisms, this routine returns SIAFAIL|SIASTOP. If there are parame- ter errors, or if a getgrent_r call fails, this routine returns SIAFAIL. ERRORS While errno will usually be propagated from whatever other calls failed, this routine will return with errno explicitly set for the fol- lowing conditions: One of the pointer arguments was NULL. *username was 0, or *ngroups was not positive. Thread context failure while scanning for groups. FILES /etc/sia/matrix.conf RELATED INFORMATION getgrent(3), matrix.conf(4), initgroups(3), siad_get_groups(3) _sia_is- agroup(3) Security delim off sia_get_groups(3)

Navigation Options