getgroups: avoid compilation failure
[gnulib.git] / lib / getgroups.c
1 /* provide consistent interface to getgroups for systems that don't allow N==0
2
3    Copyright (C) 1996, 1999, 2003, 2006, 2007, 2008, 2009 Free
4    Software Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* written by Jim Meyering */
20
21 #include <config.h>
22
23 #include <unistd.h>
24
25 #include <errno.h>
26 #include <stdlib.h>
27 #include <stdint.h>
28
29 #if !HAVE_GETGROUPS
30
31 /* Provide a stub that fails with ENOSYS, since there is no group
32    information available on mingw.  */
33 int
34 getgroups (int n _UNUSED_PARAMETER_, GETGROUPS_T *groups _UNUSED_PARAMETER_)
35 {
36   errno = ENOSYS;
37   return -1;
38 }
39
40 #else /* HAVE_GETGROUPS */
41
42 # undef getgroups
43
44 /* On at least Ultrix 4.3 and NextStep 3.2, getgroups (0, NULL) always
45    fails.  On other systems, it returns the number of supplemental
46    groups for the process.  This function handles that special case
47    and lets the system-provided function handle all others.  However,
48    it can fail with ENOMEM if memory is tight.  It is unspecified
49    whether the effective group id is included in the list.  */
50
51 int
52 rpl_getgroups (int n, GETGROUPS_T *group)
53 {
54   int n_groups;
55   GETGROUPS_T *gbuf;
56   int saved_errno;
57
58   if (n != 0)
59     return getgroups (n, group);
60
61   n = 20;
62   while (1)
63     {
64       /* No need to worry about address arithmetic overflow here,
65          since the ancient systems that we're running on have low
66          limits on the number of secondary groups.  */
67       gbuf = malloc (n * sizeof *gbuf);
68       if (!gbuf)
69         return -1;
70       n_groups = getgroups (n, gbuf);
71       if (n_groups == -1 ? errno != EINVAL : n_groups < n)
72         break;
73       free (gbuf);
74       n *= 2;
75     }
76
77   saved_errno = errno;
78   free (gbuf);
79   errno = saved_errno;
80
81   return n_groups;
82 }
83
84 #endif /* HAVE_GETGROUPS */