1 /* Copyright (C) 1998-2024 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 Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
28 #include <sys/socket.h>
31 #include <not-cancel.h>
33 #include <scratch_buffer.h>
35 #include "nscd-client.h"
36 #include "nscd_proto.h"
38 int __nss_not_use_nscd_group
;
40 static int nscd_getgr_r (const char *key
, size_t keylen
, request_type type
,
41 struct group
*resultbuf
, char *buffer
,
42 size_t buflen
, struct group
**result
);
46 __nscd_getgrnam_r (const char *name
, struct group
*resultbuf
, char *buffer
,
47 size_t buflen
, struct group
**result
)
49 return nscd_getgr_r (name
, strlen (name
) + 1, GETGRBYNAME
, resultbuf
,
50 buffer
, buflen
, result
);
55 __nscd_getgrgid_r (gid_t gid
, struct group
*resultbuf
, char *buffer
,
56 size_t buflen
, struct group
**result
)
58 char buf
[3 * sizeof (gid_t
)];
59 buf
[sizeof (buf
) - 1] = '\0';
60 char *cp
= _itoa_word (gid
, buf
+ sizeof (buf
) - 1, 10, 0);
62 return nscd_getgr_r (cp
, buf
+ sizeof (buf
) - cp
, GETGRBYGID
, resultbuf
,
63 buffer
, buflen
, result
);
67 libc_locked_map_ptr (,__gr_map_handle
) attribute_hidden
;
68 /* Note that we only free the structure if necessary. The memory
69 mapping is not removed since it is not visible to the malloc
72 __nscd_gr_map_freemem (void)
74 if (__gr_map_handle
.mapped
!= NO_MAPPING
)
76 void *p
= __gr_map_handle
.mapped
;
77 __gr_map_handle
.mapped
= NO_MAPPING
;
84 nscd_getgr_r (const char *key
, size_t keylen
, request_type type
,
85 struct group
*resultbuf
, char *buffer
, size_t buflen
,
86 struct group
**result
)
90 const uint32_t *len
= NULL
;
91 struct scratch_buffer lenbuf
;
92 scratch_buffer_init (&lenbuf
);
94 /* If the mapping is available, try to search there instead of
95 communicating with the nscd. */
96 struct mapped_database
*mapped
= __nscd_get_map_ref (GETFDGR
, "group",
100 const char *gr_name
= NULL
;
101 size_t gr_name_len
= 0;
103 const char *recend
= (const char *) ~UINTMAX_C (0);
104 gr_response_header gr_resp
;
106 if (mapped
!= NO_MAPPING
)
108 struct datahead
*found
= __nscd_cache_search (type
, key
, keylen
, mapped
,
112 len
= (const uint32_t *) (&found
->data
[0].grdata
+ 1);
113 gr_resp
= found
->data
[0].grdata
;
114 gr_name
= ((const char *) len
115 + gr_resp
.gr_mem_cnt
* sizeof (uint32_t));
116 gr_name_len
= gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
;
117 recend
= (const char *) found
->data
+ found
->recsize
;
118 /* Now check if we can trust gr_resp fields. If GC is
119 in progress, it can contain anything. */
120 if (mapped
->head
->gc_cycle
!= gc_cycle
)
126 /* The alignment is always sufficient, unless GC is in progress. */
127 assert (((uintptr_t) len
& (__alignof__ (*len
) - 1)) == 0);
134 sock
= __nscd_open_socket (key
, keylen
, type
, &gr_resp
,
138 __nss_not_use_nscd_group
= 1;
143 /* No value found so far. */
146 if (__glibc_unlikely (gr_resp
.found
== -1))
148 /* The daemon does not cache this database. */
149 __nss_not_use_nscd_group
= 1;
153 if (gr_resp
.found
== 1)
161 /* Now allocate the buffer the array for the group members. We must
162 align the pointer. */
163 align
= ((__alignof__ (char *) - ((uintptr_t) p
))
164 & (__alignof__ (char *) - 1));
165 total_len
= (align
+ (1 + gr_resp
.gr_mem_cnt
) * sizeof (char *)
166 + gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
);
167 if (__glibc_unlikely (buflen
< total_len
))
170 __set_errno (ERANGE
);
177 resultbuf
->gr_mem
= (char **) p
;
178 p
+= (1 + gr_resp
.gr_mem_cnt
) * sizeof (char *);
180 /* Set pointers for strings. */
181 resultbuf
->gr_name
= p
;
182 p
+= gr_resp
.gr_name_len
;
183 resultbuf
->gr_passwd
= p
;
184 p
+= gr_resp
.gr_passwd_len
;
186 /* Fill in what we know now. */
187 resultbuf
->gr_gid
= gr_resp
.gr_gid
;
189 /* Read the length information, group name, and password. */
192 /* Handle a simple, usual case: no group members. */
193 if (__glibc_likely (gr_resp
.gr_mem_cnt
== 0))
195 size_t n
= gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
;
196 if (__builtin_expect (__readall (sock
, resultbuf
->gr_name
, n
)
202 /* Allocate array to store lengths. */
203 if (!scratch_buffer_set_array_size
204 (&lenbuf
, gr_resp
.gr_mem_cnt
, sizeof (uint32_t)))
208 vec
[0].iov_base
= (void *) len
;
209 vec
[0].iov_len
= gr_resp
.gr_mem_cnt
* sizeof (uint32_t);
210 vec
[1].iov_base
= resultbuf
->gr_name
;
211 vec
[1].iov_len
= gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
;
212 total_len
= vec
[0].iov_len
+ vec
[1].iov_len
;
215 size_t n
= __readvall (sock
, vec
, 2);
216 if (__glibc_unlikely (n
!= total_len
))
221 /* We already have the data. Just copy the group name and
223 memcpy (resultbuf
->gr_name
, gr_name
,
224 gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
);
226 /* Clear the terminating entry. */
227 resultbuf
->gr_mem
[gr_resp
.gr_mem_cnt
] = NULL
;
229 /* Prepare reading the group members. */
231 for (cnt
= 0; cnt
< gr_resp
.gr_mem_cnt
; ++cnt
)
233 resultbuf
->gr_mem
[cnt
] = p
;
234 total_len
+= len
[cnt
];
238 if (__glibc_unlikely (gr_name
+ gr_name_len
+ total_len
> recend
))
240 /* len array might contain garbage during nscd GC cycle,
241 retry rather than fail in that case. */
242 if (gr_name
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
246 if (__glibc_unlikely (total_len
> buflen
))
248 /* len array might contain garbage during nscd GC cycle,
249 retry rather than fail in that case. */
250 if (gr_name
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
261 /* If there are no group members TOTAL_LEN is zero. */
265 && __builtin_expect (__readall (sock
, resultbuf
->gr_mem
[0],
266 total_len
) != total_len
, 0))
268 /* The `errno' to some value != ERANGE. */
269 __set_errno (ENOENT
);
277 /* Copy the group member names. */
278 memcpy (resultbuf
->gr_mem
[0], gr_name
+ gr_name_len
, total_len
);
280 /* Try to detect corrupt databases. */
281 if (resultbuf
->gr_name
[gr_name_len
- 1] != '\0'
282 || resultbuf
->gr_passwd
[gr_resp
.gr_passwd_len
- 1] != '\0'
283 || ({for (cnt
= 0; cnt
< gr_resp
.gr_mem_cnt
; ++cnt
)
284 if (resultbuf
->gr_mem
[cnt
][len
[cnt
] - 1] != '\0')
286 cnt
< gr_resp
.gr_mem_cnt
; }))
288 /* We cannot use the database. */
289 retval
= mapped
->head
->gc_cycle
!= gc_cycle
? -2 : -1;
298 /* Set errno to 0 to indicate no error, just no found record. */
300 /* Even though we have not found anything, the result is zero. */
306 __close_nocancel_nostatus (sock
);
308 if (__nscd_drop_map_ref (mapped
, &gc_cycle
) != 0)
310 /* When we come here this means there has been a GC cycle while we
311 were looking for the data. This means the data might have been
312 inconsistent. Retry if possible. */
313 if ((gc_cycle
& 1) != 0 || ++nretries
== 5 || retval
== -1)
315 /* nscd is just running gc now. Disable using the mapping. */
316 if (atomic_fetch_add_relaxed (&mapped
->counter
, -1) == 1)
317 __nscd_unmap (mapped
);
325 scratch_buffer_free (&lenbuf
);