1 /* Initgroups handling in nss_db module.
2 Copyright (C) 2011-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@gmail.com>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library 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 GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If
18 not, see <http://www.gnu.org/licenses/>. */
28 #include <sys/param.h>
32 /* The hashing function we use. */
33 #include "../intl/hash-string.h"
37 _nss_db_initgroups_dyn (const char *user
, gid_t group
, long int *start
,
38 long int *size
, gid_t
**groupsp
, long int limit
,
41 struct nss_db_map state
= { NULL
, 0 };
42 enum nss_status status
= internal_setent (_PATH_VARDB
"group.db", &state
);
43 if (status
!= NSS_STATUS_SUCCESS
)
49 const struct nss_db_header
*header
= state
.header
;
51 for (i
= 0; i
< header
->ndbs
; ++i
)
52 if (header
->dbs
[i
].id
== ':')
54 if (i
== header
->ndbs
)
56 status
= NSS_STATUS_UNAVAIL
;
60 const stridx_t
*hashtable
61 = (const stridx_t
*) ((const char *) header
62 + header
->dbs
[i
].hashoffset
);
63 const char *valstrtab
= (const char *) header
+ header
->valstroffset
;
64 size_t userlen
= strlen (user
);
65 uint32_t hashval
= __hash_string (user
);
66 size_t hidx
= hashval
% header
->dbs
[i
].hashsize
;
67 size_t hval2
= 1 + hashval
% (header
->dbs
[i
].hashsize
- 2);
69 gid_t
*groups
= *groupsp
;
71 status
= NSS_STATUS_NOTFOUND
;
72 while (hashtable
[hidx
] != ~((stridx_t
) 0))
74 const char *valstr
= valstrtab
+ hashtable
[hidx
];
75 while (isblank (*valstr
))
78 if (strncmp (valstr
, user
, userlen
) == 0 && isblank (valstr
[userlen
]))
80 valstr
+= userlen
+ 1;
81 while (isblank (*valstr
))
84 while (*valstr
!= '\0')
88 unsigned long int n
= strtoul (valstr
, &endp
, 10);
89 if (*endp
!= ',' && *endp
!= '\0')
91 valstr
= *endp
== '\0' ? endp
: endp
+ 1;
93 if (n
!= ULONG_MAX
|| errno
!= ERANGE
)
95 /* Insert the group. */
98 /* Need a bigger buffer. */
99 if (limit
> 0 && *size
== limit
)
101 /* We reached the maximum. */
102 status
= NSS_STATUS_SUCCESS
;
110 newsize
= MIN (limit
, 2 * *size
);
112 gid_t
*newgroups
= realloc (groups
,
113 newsize
* sizeof (*groups
));
114 if (newgroups
== NULL
)
117 status
= NSS_STATUS_TRYAGAIN
;
121 *groupsp
= groups
= newgroups
;
130 status
= NSS_STATUS_SUCCESS
;
134 if ((hidx
+= hval2
) >= header
->dbs
[i
].hashsize
)
135 hidx
-= header
->dbs
[i
].hashsize
;
139 internal_endent (&state
);