coreutils/lib/group-member.c

134 lines
2.7 KiB
C
Raw Normal View History

1996-11-05 13:20:03 +08:00
/* group-member.c -- determine whether group id is in calling user's group list
2005-09-22 14:05:39 +08:00
Copyright (C) 1994, 1997, 1998, 2003, 2005 Free Software Foundation, Inc.
1996-11-05 13:20:03 +08:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
2005-05-14 15:58:06 +08:00
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
1996-11-05 13:20:03 +08:00
2005-09-22 14:05:39 +08:00
#ifdef HAVE_CONFIG_H
1996-11-05 13:20:03 +08:00
# include <config.h>
#endif
#include "group-member.h"
2004-04-04 14:51:11 +08:00
#include <stdbool.h>
1996-11-05 13:20:03 +08:00
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
1996-11-05 13:20:03 +08:00
#include <unistd.h>
1996-11-05 13:20:03 +08:00
#include "xalloc.h"
1996-11-05 13:20:03 +08:00
struct group_info
{
int n_groups;
GETGROUPS_T *group;
};
1998-03-15 19:09:10 +08:00
#if HAVE_GETGROUPS
1996-11-05 13:20:03 +08:00
static void
2004-04-04 14:51:11 +08:00
free_group_info (struct group_info const *g)
1996-11-05 13:20:03 +08:00
{
free (g->group);
}
2004-04-04 14:51:11 +08:00
static bool
get_group_info (struct group_info *gi)
1996-11-05 13:20:03 +08:00
{
int n_groups;
2004-04-04 14:51:11 +08:00
int n_group_slots = getgroups (0, NULL);
1996-11-05 13:20:03 +08:00
GETGROUPS_T *group;
2004-04-04 14:51:11 +08:00
if (n_group_slots < 0)
return false;
1996-11-05 13:20:03 +08:00
2004-04-04 14:51:11 +08:00
/* Avoid xnmalloc, as it goes awry when SIZE_MAX < n_group_slots. */
if (xalloc_oversized (n_group_slots, sizeof *group))
xalloc_die ();
group = xmalloc (n_group_slots * sizeof *group);
n_groups = getgroups (n_group_slots, group);
1996-11-05 13:20:03 +08:00
/* In case of error, the user loses. */
if (n_groups < 0)
{
free (group);
2004-04-04 14:51:11 +08:00
return false;
1996-11-05 13:20:03 +08:00
}
gi->n_groups = n_groups;
gi->group = group;
2004-04-04 14:51:11 +08:00
return true;
1996-11-05 13:20:03 +08:00
}
#endif /* not HAVE_GETGROUPS */
/* Return non-zero if GID is one that we have in our groups list.
If there is no getgroups function, return non-zero if GID matches
either of the current or effective group IDs. */
int
1997-12-28 18:41:01 +08:00
group_member (gid_t gid)
1996-11-05 13:20:03 +08:00
{
#ifndef HAVE_GETGROUPS
return ((gid == getgid ()) || (gid == getegid ()));
#else
int i;
int found;
2004-04-04 14:51:11 +08:00
struct group_info gi;
1996-11-05 13:20:03 +08:00
2004-04-04 14:51:11 +08:00
if (! get_group_info (&gi))
1996-11-05 13:20:03 +08:00
return 0;
/* Search through the list looking for GID. */
found = 0;
2004-04-04 14:51:11 +08:00
for (i = 0; i < gi.n_groups; i++)
1996-11-05 13:20:03 +08:00
{
2004-04-04 14:51:11 +08:00
if (gid == gi.group[i])
1996-11-05 13:20:03 +08:00
{
found = 1;
break;
}
}
1996-11-24 11:05:11 +08:00
2004-04-04 14:51:11 +08:00
free_group_info (&gi);
1996-11-05 13:20:03 +08:00
return found;
#endif /* HAVE_GETGROUPS */
}
#ifdef TEST
char *program_name;
int
main (int argc, char **argv)
1996-11-05 13:20:03 +08:00
{
int i;
program_name = argv[0];
for (i=1; i<argc; i++)
{
gid_t gid;
gid = atoi (argv[i]);
printf ("%d: %s\n", gid, group_member (gid) ? "yes" : "no");
}
exit (0);
}
#endif /* TEST */