1 /* Copyright (C) 2007, 2009, 2011 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2007.
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 <not-cancel.h>
25 #include "nscd-client.h"
26 #include "nscd_proto.h"
29 int __nss_not_use_nscd_services
;
32 static int nscd_getserv_r (const char *crit
, size_t critlen
, const char *proto
,
33 request_type type
, struct servent
*resultbuf
,
34 char *buf
, size_t buflen
, struct servent
**result
);
38 __nscd_getservbyname_r (const char *name
, const char *proto
,
39 struct servent
*result_buf
, char *buf
, size_t buflen
,
40 struct servent
**result
)
42 return nscd_getserv_r (name
, strlen (name
), proto
, GETSERVBYNAME
, result_buf
,
48 __nscd_getservbyport_r (int port
, const char *proto
,
49 struct servent
*result_buf
, char *buf
, size_t buflen
,
50 struct servent
**result
)
52 char portstr
[3 * sizeof (int) + 2];
53 portstr
[sizeof (portstr
) - 1] = '\0';
54 char *cp
= _itoa_word (port
, portstr
+ sizeof (portstr
) - 1, 10, 0);
56 return nscd_getserv_r (cp
, portstr
+ sizeof (portstr
) - cp
, proto
,
57 GETSERVBYPORT
, result_buf
, buf
, buflen
, result
);
61 libc_locked_map_ptr (, __serv_map_handle
) attribute_hidden
;
62 /* Note that we only free the structure if necessary. The memory
63 mapping is not removed since it is not visible to the malloc
65 libc_freeres_fn (serv_map_free
)
67 if (__serv_map_handle
.mapped
!= NO_MAPPING
)
69 void *p
= __serv_map_handle
.mapped
;
70 __serv_map_handle
.mapped
= NO_MAPPING
;
77 nscd_getserv_r (const char *crit
, size_t critlen
, const char *proto
,
78 request_type type
, struct servent
*resultbuf
,
79 char *buf
, size_t buflen
, struct servent
**result
)
83 size_t alloca_used
= 0;
85 /* If the mapping is available, try to search there instead of
86 communicating with the nscd. */
87 struct mapped_database
*mapped
;
88 mapped
= __nscd_get_map_ref (GETFDSERV
, "services", &__serv_map_handle
,
90 size_t protolen
= proto
== NULL
? 0 : strlen (proto
);
91 size_t keylen
= critlen
+ 1 + protolen
+ 1;
92 int alloca_key
= __libc_use_alloca (keylen
);
95 key
= alloca_account (keylen
, alloca_used
);
98 key
= malloc (keylen
);
102 memcpy (__mempcpy (__mempcpy (key
, crit
, critlen
),
103 "/", 1), proto
?: "", protolen
+ 1);
106 const char *s_name
= NULL
;
107 const char *s_proto
= NULL
;
108 int alloca_aliases_len
= 0;
109 const uint32_t *aliases_len
= NULL
;
110 const char *aliases_list
= NULL
;
112 const char *recend
= (const char *) ~UINTMAX_C (0);
114 serv_response_header serv_resp
;
116 if (mapped
!= NO_MAPPING
)
118 struct datahead
*found
= __nscd_cache_search (type
, key
, keylen
, mapped
,
123 s_name
= (char *) (&found
->data
[0].servdata
+ 1);
124 serv_resp
= found
->data
[0].servdata
;
125 s_proto
= s_name
+ serv_resp
.s_name_len
;
126 alloca_aliases_len
= 1;
127 aliases_len
= (uint32_t *) (s_proto
+ serv_resp
.s_proto_len
);
128 aliases_list
= ((char *) aliases_len
129 + serv_resp
.s_aliases_cnt
* sizeof (uint32_t));
130 recend
= (const char *) found
->data
+ found
->recsize
;
131 /* Now check if we can trust serv_resp fields. If GC is
132 in progress, it can contain anything. */
133 if (mapped
->head
->gc_cycle
!= gc_cycle
)
138 if (__builtin_expect ((const char *) aliases_len
139 + serv_resp
.s_aliases_cnt
* sizeof (uint32_t)
143 #ifndef _STRING_ARCH_unaligned
144 /* The aliases_len array in the mapped database might very
145 well be unaligned. We will access it word-wise so on
146 platforms which do not tolerate unaligned accesses we
147 need to make an aligned copy. */
148 if (((uintptr_t) aliases_len
& (__alignof__ (*aliases_len
) - 1))
153 = __libc_use_alloca (alloca_used
154 + (serv_resp
.s_aliases_cnt
155 * sizeof (uint32_t)));
156 if (alloca_aliases_len
)
157 tmp
= alloca_account (serv_resp
.s_aliases_cnt
162 tmp
= malloc (serv_resp
.s_aliases_cnt
* sizeof (uint32_t));
169 aliases_len
= memcpy (tmp
, aliases_len
,
170 serv_resp
.s_aliases_cnt
171 * sizeof (uint32_t));
179 sock
= __nscd_open_socket (key
, keylen
, type
, &serv_resp
,
183 __nss_not_use_nscd_services
= 1;
188 /* No value found so far. */
191 if (__builtin_expect (serv_resp
.found
== -1, 0))
193 /* The daemon does not cache this database. */
194 __nss_not_use_nscd_services
= 1;
198 if (serv_resp
.found
== 1)
207 /* A first check whether the buffer is sufficiently large is possible. */
208 /* Now allocate the buffer the array for the group members. We must
209 align the pointer and the base of the h_addr_list pointers. */
210 align1
= ((__alignof__ (char *) - (cp
- ((char *) 0)))
211 & (__alignof__ (char *) - 1));
212 align2
= ((__alignof__ (char *) - ((cp
+ align1
+ serv_resp
.s_name_len
213 + serv_resp
.s_proto_len
)
215 & (__alignof__ (char *) - 1));
216 if (buflen
< (align1
+ serv_resp
.s_name_len
+ serv_resp
.s_proto_len
218 + (serv_resp
.s_aliases_cnt
+ 1) * sizeof (char *)))
221 __set_errno (ERANGE
);
227 /* Prepare the result as far as we can. */
228 resultbuf
->s_aliases
= (char **) cp
;
229 cp
+= (serv_resp
.s_aliases_cnt
+ 1) * sizeof (char *);
231 resultbuf
->s_name
= cp
;
232 cp
+= serv_resp
.s_name_len
;
233 resultbuf
->s_proto
= cp
;
234 cp
+= serv_resp
.s_proto_len
+ align2
;
235 resultbuf
->s_port
= serv_resp
.s_port
;
241 vec
[0].iov_base
= resultbuf
->s_name
;
242 vec
[0].iov_len
= serv_resp
.s_name_len
+ serv_resp
.s_proto_len
;
243 total_len
= vec
[0].iov_len
;
246 if (serv_resp
.s_aliases_cnt
> 0)
248 assert (alloca_aliases_len
== 0);
250 = __libc_use_alloca (alloca_used
251 + (serv_resp
.s_aliases_cnt
252 * sizeof (uint32_t)));
253 if (alloca_aliases_len
)
254 aliases_len
= alloca_account (serv_resp
.s_aliases_cnt
259 aliases_len
= malloc (serv_resp
.s_aliases_cnt
260 * sizeof (uint32_t));
261 if (aliases_len
== NULL
)
267 vec
[n
].iov_base
= (void *) aliases_len
;
268 vec
[n
].iov_len
= serv_resp
.s_aliases_cnt
* sizeof (uint32_t);
270 total_len
+= serv_resp
.s_aliases_cnt
* sizeof (uint32_t);
274 if ((size_t) __readvall (sock
, vec
, n
) != total_len
)
278 memcpy (resultbuf
->s_name
, s_name
,
279 serv_resp
.s_name_len
+ serv_resp
.s_proto_len
);
281 /* Now we also can read the aliases. */
283 for (cnt
= 0; cnt
< serv_resp
.s_aliases_cnt
; ++cnt
)
285 resultbuf
->s_aliases
[cnt
] = cp
;
286 cp
+= aliases_len
[cnt
];
287 total_len
+= aliases_len
[cnt
];
289 resultbuf
->s_aliases
[cnt
] = NULL
;
291 if (__builtin_expect ((const char *) aliases_list
+ total_len
> recend
,
294 /* aliases_len array might contain garbage during nscd GC cycle,
295 retry rather than fail in that case. */
296 if (aliases_list
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
301 /* See whether this would exceed the buffer capacity. */
302 if (__builtin_expect (cp
> buf
+ buflen
, 0))
304 /* aliases_len array might contain garbage during nscd GC cycle,
305 retry rather than fail in that case. */
306 if (aliases_list
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
314 /* And finally read the aliases. */
315 if (aliases_list
== NULL
)
318 || ((size_t) __readall (sock
, resultbuf
->s_aliases
[0], total_len
)
327 memcpy (resultbuf
->s_aliases
[0], aliases_list
, total_len
);
329 /* Try to detect corrupt databases. */
330 if (resultbuf
->s_name
[serv_resp
.s_name_len
- 1] != '\0'
331 || resultbuf
->s_proto
[serv_resp
.s_proto_len
- 1] != '\0'
332 || ({for (cnt
= 0; cnt
< serv_resp
.s_aliases_cnt
; ++cnt
)
333 if (resultbuf
->s_aliases
[cnt
][aliases_len
[cnt
] - 1]
336 cnt
< serv_resp
.s_aliases_cnt
; }))
338 /* We cannot use the database. */
339 if (mapped
->head
->gc_cycle
!= gc_cycle
)
350 /* Set errno to 0 to indicate no error, just no found record. */
352 /* Even though we have not found anything, the result is zero. */
358 close_not_cancel_no_status (sock
);
360 if (__nscd_drop_map_ref (mapped
, &gc_cycle
) != 0)
362 /* When we come here this means there has been a GC cycle while we
363 were looking for the data. This means the data might have been
364 inconsistent. Retry if possible. */
365 if ((gc_cycle
& 1) != 0 || ++nretries
== 5 || retval
== -1)
367 /* nscd is just running gc now. Disable using the mapping. */
368 if (atomic_decrement_val (&mapped
->counter
) == 0)
369 __nscd_unmap (mapped
);
375 if (!alloca_aliases_len
)
376 free ((void *) aliases_len
);
381 if (!alloca_aliases_len
)
382 free ((void *) aliases_len
);