1 /* Initgroups handling in nss_files module.
2 Copyright (C) 2011-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
22 #include <stdio_ext.h>
24 #include <sys/param.h>
27 #include <scratch_buffer.h>
30 _nss_files_initgroups_dyn (const char *user
, gid_t group
, long int *start
,
31 long int *size
, gid_t
**groupsp
, long int limit
,
34 FILE *stream
= fopen ("/etc/group", "rce");
38 return *errnop
== ENOMEM
? NSS_STATUS_TRYAGAIN
: NSS_STATUS_UNAVAIL
;
41 /* No other thread using this stream. */
42 __fsetlocking (stream
, FSETLOCKING_BYCALLER
);
46 enum nss_status status
= NSS_STATUS_SUCCESS
;
49 struct scratch_buffer tmpbuf
;
50 scratch_buffer_init (&tmpbuf
);
52 gid_t
*groups
= *groupsp
;
54 /* We have to iterate over the entire file. */
58 fgetpos (stream
, &pos
);
59 ssize_t n
= getline (&line
, &linelen
, stream
);
62 if (! feof_unlocked (stream
))
63 status
= ((*errnop
= errno
) == ENOMEM
64 ? NSS_STATUS_TRYAGAIN
: NSS_STATUS_UNAVAIL
);
69 int res
= _nss_files_parse_grent (line
, &grp
,
70 tmpbuf
.data
, tmpbuf
.length
, errnop
);
73 if (!scratch_buffer_grow (&tmpbuf
))
76 status
= NSS_STATUS_TRYAGAIN
;
79 /* Reread current line, the parser has clobbered it. */
80 fsetpos (stream
, &pos
);
84 if (res
> 0 && grp
.gr_gid
!= group
)
85 for (char **m
= grp
.gr_mem
; *m
!= NULL
; ++m
)
86 if (strcmp (*m
, user
) == 0)
88 /* Matches user. Insert this group. */
91 /* Need a bigger buffer. */
92 if (limit
> 0 && *size
== limit
)
93 /* We reached the maximum. */
100 newsize
= MIN (limit
, 2 * *size
);
102 gid_t
*newgroups
= realloc (groups
,
103 newsize
* sizeof (*groups
));
104 if (newgroups
== NULL
)
107 status
= NSS_STATUS_TRYAGAIN
;
110 *groupsp
= groups
= newgroups
;
114 groups
[*start
] = grp
.gr_gid
;
124 scratch_buffer_free (&tmpbuf
);
129 return status
== NSS_STATUS_SUCCESS
&& !any
? NSS_STATUS_NOTFOUND
: status
;