1 /* Copyright (C) 1998-2000, 2002-2005, 2006, 2007
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the 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 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
31 #include <sys/socket.h>
34 #include <not-cancel.h>
35 #include <stdio-common/_itoa.h>
37 #include "nscd-client.h"
38 #include "nscd_proto.h"
40 int __nss_not_use_nscd_group
;
42 static int nscd_getgr_r (const char *key
, size_t keylen
, request_type type
,
43 struct group
*resultbuf
, char *buffer
,
44 size_t buflen
, struct group
**result
)
49 __nscd_getgrnam_r (const char *name
, struct group
*resultbuf
, char *buffer
,
50 size_t buflen
, struct group
**result
)
52 return nscd_getgr_r (name
, strlen (name
) + 1, GETGRBYNAME
, resultbuf
,
53 buffer
, buflen
, result
);
58 __nscd_getgrgid_r (gid_t gid
, struct group
*resultbuf
, char *buffer
,
59 size_t buflen
, struct group
**result
)
61 char buf
[3 * sizeof (gid_t
)];
62 buf
[sizeof (buf
) - 1] = '\0';
63 char *cp
= _itoa_word (gid
, buf
+ sizeof (buf
) - 1, 10, 0);
65 return nscd_getgr_r (cp
, buf
+ sizeof (buf
) - cp
, GETGRBYGID
, resultbuf
,
66 buffer
, buflen
, result
);
70 libc_locked_map_ptr (,__gr_map_handle
) attribute_hidden
;
71 /* Note that we only free the structure if necessary. The memory
72 mapping is not removed since it is not visible to the malloc
74 libc_freeres_fn (gr_map_free
)
76 if (__gr_map_handle
.mapped
!= NO_MAPPING
)
78 void *p
= __gr_map_handle
.mapped
;
79 __gr_map_handle
.mapped
= NO_MAPPING
;
87 nscd_getgr_r (const char *key
, size_t keylen
, request_type type
,
88 struct group
*resultbuf
, char *buffer
, size_t buflen
,
89 struct group
**result
)
93 const uint32_t *len
= NULL
;
96 /* If the mapping is available, try to search there instead of
97 communicating with the nscd. */
98 struct mapped_database
*mapped
= __nscd_get_map_ref (GETFDGR
, "group",
102 const char *gr_name
= NULL
;
103 size_t gr_name_len
= 0;
105 const char *recend
= (const char *) ~UINTMAX_C (0);
106 gr_response_header gr_resp
;
108 if (mapped
!= NO_MAPPING
)
110 struct datahead
*found
= __nscd_cache_search (type
, key
, keylen
, mapped
);
113 len
= (const uint32_t *) (&found
->data
[0].grdata
+ 1);
114 gr_resp
= found
->data
[0].grdata
;
115 gr_name
= ((const char *) len
116 + gr_resp
.gr_mem_cnt
* sizeof (uint32_t));
117 gr_name_len
= gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
;
118 recend
= (const char *) found
->data
+ found
->recsize
;
119 /* Now check if we can trust gr_resp fields. If GC is
120 in progress, it can contain anything. */
121 if (mapped
->head
->gc_cycle
!= gc_cycle
)
127 /* The alignment is always sufficient, unless GC is in progress. */
128 assert (((uintptr_t) len
& (__alignof__ (*len
) - 1)) == 0);
135 sock
= __nscd_open_socket (key
, keylen
, type
, &gr_resp
,
139 __nss_not_use_nscd_group
= 1;
144 /* No value found so far. */
147 if (__builtin_expect (gr_resp
.found
== -1, 0))
149 /* The daemon does not cache this database. */
150 __nss_not_use_nscd_group
= 1;
154 if (gr_resp
.found
== 1)
162 /* Now allocate the buffer the array for the group members. We must
163 align the pointer. */
164 align
= ((__alignof__ (char *) - (p
- ((char *) 0)))
165 & (__alignof__ (char *) - 1));
166 total_len
= (align
+ (1 + gr_resp
.gr_mem_cnt
) * sizeof (char *)
167 + gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
);
168 if (__builtin_expect (buflen
< total_len
, 0))
171 __set_errno (ERANGE
);
178 resultbuf
->gr_mem
= (char **) p
;
179 p
+= (1 + gr_resp
.gr_mem_cnt
) * sizeof (char *);
181 /* Set pointers for strings. */
182 resultbuf
->gr_name
= p
;
183 p
+= gr_resp
.gr_name_len
;
184 resultbuf
->gr_passwd
= p
;
185 p
+= gr_resp
.gr_passwd_len
;
187 /* Fill in what we know now. */
188 resultbuf
->gr_gid
= gr_resp
.gr_gid
;
190 /* Read the length information, group name, and password. */
193 /* Handle a simple, usual case: no group members. */
194 if (__builtin_expect (gr_resp
.gr_mem_cnt
== 0, 1))
196 size_t n
= gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
;
197 if (__builtin_expect (__readall (sock
, resultbuf
->gr_name
, n
)
203 /* Allocate array to store lengths. */
206 lensize
= gr_resp
.gr_mem_cnt
* sizeof (uint32_t);
207 len
= (uint32_t *) alloca (lensize
);
209 else if (gr_resp
.gr_mem_cnt
* sizeof (uint32_t) > lensize
)
210 len
= extend_alloca (len
, lensize
,
211 gr_resp
.gr_mem_cnt
* sizeof (uint32_t));
213 vec
[0].iov_base
= (void *) len
;
214 vec
[0].iov_len
= gr_resp
.gr_mem_cnt
* sizeof (uint32_t);
215 vec
[1].iov_base
= resultbuf
->gr_name
;
216 vec
[1].iov_len
= gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
;
217 total_len
= vec
[0].iov_len
+ vec
[1].iov_len
;
220 size_t n
= __readvall (sock
, vec
, 2);
221 if (__builtin_expect (n
!= total_len
, 0))
226 /* We already have the data. Just copy the group name and
228 memcpy (resultbuf
->gr_name
, gr_name
,
229 gr_resp
.gr_name_len
+ gr_resp
.gr_passwd_len
);
231 /* Clear the terminating entry. */
232 resultbuf
->gr_mem
[gr_resp
.gr_mem_cnt
] = NULL
;
234 /* Prepare reading the group members. */
236 for (cnt
= 0; cnt
< gr_resp
.gr_mem_cnt
; ++cnt
)
238 resultbuf
->gr_mem
[cnt
] = p
;
239 total_len
+= len
[cnt
];
243 if (__builtin_expect (gr_name
+ gr_name_len
+ total_len
> recend
, 0))
245 /* len array might contain garbage during nscd GC cycle,
246 retry rather than fail in that case. */
247 if (gr_name
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
251 if (__builtin_expect (total_len
> buflen
, 0))
253 /* len array might contain garbage during nscd GC cycle,
254 retry rather than fail in that case. */
255 if (gr_name
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
266 /* If there are no group members TOTAL_LEN is zero. */
270 && __builtin_expect (__readall (sock
, resultbuf
->gr_mem
[0],
271 total_len
) != total_len
, 0))
273 /* The `errno' to some value != ERANGE. */
274 __set_errno (ENOENT
);
282 /* Copy the group member names. */
283 memcpy (resultbuf
->gr_mem
[0], gr_name
+ gr_name_len
, total_len
);
285 /* Try to detect corrupt databases. */
286 if (resultbuf
->gr_name
[gr_name_len
- 1] != '\0'
287 || resultbuf
->gr_passwd
[gr_resp
.gr_passwd_len
- 1] != '\0'
288 || ({for (cnt
= 0; cnt
< gr_resp
.gr_mem_cnt
; ++cnt
)
289 if (resultbuf
->gr_mem
[cnt
][len
[cnt
] - 1] != '\0')
291 cnt
< gr_resp
.gr_mem_cnt
; }))
293 /* We cannot use the database. */
294 retval
= mapped
->head
->gc_cycle
!= gc_cycle
? -2 : -1;
303 /* Set errno to 0 to indicate no error, just no found record. */
305 /* Even though we have not found anything, the result is zero. */
311 close_not_cancel_no_status (sock
);
313 if (__nscd_drop_map_ref (mapped
, &gc_cycle
) != 0)
315 /* When we come here this means there has been a GC cycle while we
316 were looking for the data. This means the data might have been
317 inconsistent. Retry if possible. */
318 if ((gc_cycle
& 1) != 0 || ++nretries
== 5 || retval
== -1)
320 /* nscd is just running gc now. Disable using the mapping. */
321 if (atomic_decrement_val (&mapped
->counter
) == 0)
322 __nscd_unmap (mapped
);