man-pages/man3/getgrouplist.3

79 lines
1.9 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\" Thanks to glibc info pages
.\"
.\" Modified 2003-11-18, aeb: glibc is broken
.TH GETGROUPLIST 3 2003-11-18 "GNU" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
getgrouplist \- list of groups a user belongs to
.SH SYNOPSIS
.sp
.B #include <grp.h>
.sp
2007-04-03 15:32:52 +00:00
.BI "int getgrouplist(const char *" user ", gid_t " group ,
.in 24
2004-11-03 13:51:07 +00:00
.BI "gid_t *" groups ", int *" ngroups );
.SH DESCRIPTION
The
.BR getgrouplist ()
2004-11-03 13:51:07 +00:00
function scans the group database for all the groups
.I user
belongs to. Up to
.RI * ngroups
group IDs corresponding to these groups are stored in the array
.IR groups ;
the return value from the function is the number of group IDs
actually stored. The group
.I group
is automatically included in the list of groups returned by
2005-10-19 14:54:31 +00:00
.BR getgrouplist ().
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
If
.RI * ngroups
is smaller than the total number of groups found, then
.BR getgrouplist ()
2005-07-07 08:27:03 +00:00
returns a value of `\-1'.
2004-11-03 13:51:07 +00:00
In all cases the actual number of groups is stored in
.RI * ngroups .
.SH BUGS
The glibc 2.3.2 implementation of this function is broken:
it overwrites memory when the actual number of groups is larger than
.RI * ngroups .
.SH "CONFORMING TO"
2006-08-03 13:57:30 +00:00
This function is non-standard; it appears on most BSDs.
.SH "VERSIONS"
2004-11-03 13:51:07 +00:00
This function is present since glibc 2.2.4.
.SH EXAMPLE
.nf
/* This crashes with glibc 2.3.2 */
#include <stdio.h>
#include <stdlib.h>
#include <grp.h>
#include <pwd.h>
2007-04-05 12:36:57 +00:00
int
main(void)
{
int i, ng = 0;
char *user = "who"; /* username here */
gid_t *groups = NULL;
struct passwd *pw = getpwnam(user);
2004-11-03 13:51:07 +00:00
2007-04-05 12:36:57 +00:00
if (pw == NULL)
return 0;
2004-11-03 13:51:07 +00:00
2007-04-05 12:36:57 +00:00
if (getgrouplist(user, pw->pw_gid, NULL, &ng) < 0) {
groups = (gid_t *) malloc(ng * sizeof (gid_t));
getgrouplist(user, pw->pw_gid, groups, &ng);
}
2004-11-03 13:51:07 +00:00
2007-04-05 12:36:57 +00:00
for(i = 0; i < ng; i++)
printf("%d\en", groups[i]);
return 0;
2004-11-03 13:51:07 +00:00
}
.fi
.SH "SEE ALSO"
.BR getgroups (3),
.BR setgroups (3)