1 /* Copyright (C) 1989, 91, 93, 96, 97, 98 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
26 #include <sys/types.h>
30 /* Type of the lookup function. */
31 typedef enum nss_status (*initgroups_function
) (const char *, gid_t
,
32 long int *, long int *,
33 gid_t
*, long int, int *);
34 /* Prototype for the setgrent functions we use here. */
35 typedef enum nss_status (*set_function
) (void);
37 /* Prototype for the endgrent functions we use here. */
38 typedef enum nss_status (*end_function
) (void);
40 /* Prototype for the setgrent functions we use here. */
41 typedef enum nss_status (*get_function
) (struct group
*, char *,
44 /* The lookup function for the first entry of this service. */
45 extern int __nss_group_lookup (service_user
**nip
, const char *name
,
47 extern void *__nss_lookup_function (service_user
*ni
, const char *fct_name
);
49 extern service_user
*__nss_group_database
;
51 static enum nss_status
52 compat_call (service_user
*nip
, const char *user
, gid_t group
, long int *start
,
53 long int *size
, gid_t
*groups
, long int limit
, int *errnop
)
55 struct group grpbuf
, *g
;
56 size_t buflen
= __sysconf (_SC_GETPW_R_SIZE_MAX
);
58 enum nss_status status
;
59 set_function setgrent_fct
;
60 get_function getgrent_fct
;
61 end_function endgrent_fct
;
63 getgrent_fct
= __nss_lookup_function (nip
, "getgrent_r");
64 if (getgrent_fct
== NULL
)
65 return NSS_STATUS_UNAVAIL
;
67 setgrent_fct
= __nss_lookup_function (nip
, "setgrent");
70 status
= _CALL_DL_FCT (setgrent_fct
, ());
71 if (status
!= NSS_STATUS_SUCCESS
)
75 endgrent_fct
= __nss_lookup_function (nip
, "endgrent");
77 tmpbuf
= __alloca (buflen
);
81 while ((status
= _CALL_DL_FCT (getgrent_fct
,
82 (&grpbuf
, tmpbuf
, buflen
, errnop
)),
83 status
== NSS_STATUS_TRYAGAIN
)
87 tmpbuf
= __alloca (buflen
);
90 if (status
!= NSS_STATUS_SUCCESS
)
94 if (g
->gr_gid
!= group
)
98 for (m
= g
->gr_mem
; *m
!= NULL
; ++m
)
99 if (strcmp (*m
, user
) == 0)
101 /* Matches user. Insert this group. */
102 if (*start
== *size
&& limit
<= 0)
104 /* Need a bigger buffer. */
105 groups
= realloc (groups
, *size
* sizeof (*groups
));
111 groups
[*start
] = g
->gr_gid
;
115 /* Can't take any more groups; stop searching. */
122 while (status
== NSS_STATUS_SUCCESS
);
126 _CALL_DL_FCT (endgrent_fct
, ());
128 return NSS_STATUS_SUCCESS
;
131 /* Initialize the group set for the current user
132 by reading the group database and using all groups
133 of which USER is a member. Also include GROUP. */
135 initgroups (user
, group
)
139 #if defined NGROUPS_MAX && NGROUPS_MAX == 0
141 /* No extra groups allowed. */
146 service_user
*nip
= NULL
;
147 initgroups_function fct
;
148 enum nss_status status
= NSS_STATUS_UNAVAIL
;
150 /* Start is one, because we have the first group as parameter. */
155 # define limit NGROUPS_MAX
159 long int limit
= __sysconf (_SC_NGROUPS_MAX
);
164 /* No fixed limit on groups. Pick a starting buffer size. */
168 groups
= malloc (size
* sizeof (gid_t
*));
172 if (__nss_group_database
!= NULL
)
175 nip
= __nss_group_database
;
178 no_more
= __nss_database_lookup ("group", NULL
,
179 "compat [NOTFOUND=return] files", &nip
);
183 fct
= __nss_lookup_function (nip
, "initgroups");
187 status
= compat_call (nip
, user
, group
, &start
, &size
, groups
,
190 if (nss_next_action (nip
, NSS_STATUS_UNAVAIL
) != NSS_ACTION_CONTINUE
)
194 status
= _CALL_DL_FCT (fct
, (user
, group
, &start
, &size
, groups
, limit
,
197 /* This is really only for debugging. */
198 if (NSS_STATUS_TRYAGAIN
> status
|| status
> NSS_STATUS_RETURN
)
199 __libc_fatal ("illegal status in " __FUNCTION__
);
201 if (nss_next_action (nip
, status
) == NSS_ACTION_RETURN
)
204 if (nip
->next
== NULL
)
210 return setgroups (start
, groups
);