1 /* Copyright (C) 2007-2013 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>
26 #include "nscd-client.h"
27 #include "nscd_proto.h"
30 int __nss_not_use_nscd_services
;
33 static int nscd_getserv_r (const char *crit
, size_t critlen
, const char *proto
,
34 request_type type
, struct servent
*resultbuf
,
35 char *buf
, size_t buflen
, struct servent
**result
);
39 __nscd_getservbyname_r (const char *name
, const char *proto
,
40 struct servent
*result_buf
, char *buf
, size_t buflen
,
41 struct servent
**result
)
43 return nscd_getserv_r (name
, strlen (name
), proto
, GETSERVBYNAME
, result_buf
,
49 __nscd_getservbyport_r (int port
, const char *proto
,
50 struct servent
*result_buf
, char *buf
, size_t buflen
,
51 struct servent
**result
)
53 char portstr
[3 * sizeof (int) + 2];
54 portstr
[sizeof (portstr
) - 1] = '\0';
55 char *cp
= _itoa_word (port
, portstr
+ sizeof (portstr
) - 1, 10, 0);
57 return nscd_getserv_r (cp
, portstr
+ sizeof (portstr
) - cp
, proto
,
58 GETSERVBYPORT
, result_buf
, buf
, buflen
, result
);
62 libc_locked_map_ptr (, __serv_map_handle
) attribute_hidden
;
63 /* Note that we only free the structure if necessary. The memory
64 mapping is not removed since it is not visible to the malloc
66 libc_freeres_fn (serv_map_free
)
68 if (__serv_map_handle
.mapped
!= NO_MAPPING
)
70 void *p
= __serv_map_handle
.mapped
;
71 __serv_map_handle
.mapped
= NO_MAPPING
;
78 nscd_getserv_r (const char *crit
, size_t critlen
, const char *proto
,
79 request_type type
, struct servent
*resultbuf
,
80 char *buf
, size_t buflen
, struct servent
**result
)
84 size_t alloca_used
= 0;
86 /* If the mapping is available, try to search there instead of
87 communicating with the nscd. */
88 struct mapped_database
*mapped
;
89 mapped
= __nscd_get_map_ref (GETFDSERV
, "services", &__serv_map_handle
,
91 size_t protolen
= proto
== NULL
? 0 : strlen (proto
);
92 size_t keylen
= critlen
+ 1 + protolen
+ 1;
93 int alloca_key
= __libc_use_alloca (keylen
);
96 key
= alloca_account (keylen
, alloca_used
);
99 key
= malloc (keylen
);
103 memcpy (__mempcpy (__mempcpy (key
, crit
, critlen
),
104 "/", 1), proto
?: "", protolen
+ 1);
107 const char *s_name
= NULL
;
108 const char *s_proto
= NULL
;
109 int alloca_aliases_len
= 0;
110 const uint32_t *aliases_len
= NULL
;
111 const char *aliases_list
= NULL
;
113 const char *recend
= (const char *) ~UINTMAX_C (0);
115 serv_response_header serv_resp
;
117 if (mapped
!= NO_MAPPING
)
119 struct datahead
*found
= __nscd_cache_search (type
, key
, keylen
, mapped
,
124 s_name
= (char *) (&found
->data
[0].servdata
+ 1);
125 serv_resp
= found
->data
[0].servdata
;
126 s_proto
= s_name
+ serv_resp
.s_name_len
;
127 alloca_aliases_len
= 1;
128 aliases_len
= (uint32_t *) (s_proto
+ serv_resp
.s_proto_len
);
129 aliases_list
= ((char *) aliases_len
130 + serv_resp
.s_aliases_cnt
* sizeof (uint32_t));
131 recend
= (const char *) found
->data
+ found
->recsize
;
132 /* Now check if we can trust serv_resp fields. If GC is
133 in progress, it can contain anything. */
134 if (mapped
->head
->gc_cycle
!= gc_cycle
)
139 if (__builtin_expect ((const char *) aliases_len
140 + serv_resp
.s_aliases_cnt
* sizeof (uint32_t)
144 #ifndef _STRING_ARCH_unaligned
145 /* The aliases_len array in the mapped database might very
146 well be unaligned. We will access it word-wise so on
147 platforms which do not tolerate unaligned accesses we
148 need to make an aligned copy. */
149 if (((uintptr_t) aliases_len
& (__alignof__ (*aliases_len
) - 1))
154 = __libc_use_alloca (alloca_used
155 + (serv_resp
.s_aliases_cnt
156 * sizeof (uint32_t)));
157 if (alloca_aliases_len
)
158 tmp
= alloca_account (serv_resp
.s_aliases_cnt
163 tmp
= malloc (serv_resp
.s_aliases_cnt
* sizeof (uint32_t));
170 aliases_len
= memcpy (tmp
, aliases_len
,
171 serv_resp
.s_aliases_cnt
172 * sizeof (uint32_t));
180 sock
= __nscd_open_socket (key
, keylen
, type
, &serv_resp
,
184 __nss_not_use_nscd_services
= 1;
189 /* No value found so far. */
192 if (__builtin_expect (serv_resp
.found
== -1, 0))
194 /* The daemon does not cache this database. */
195 __nss_not_use_nscd_services
= 1;
199 if (serv_resp
.found
== 1)
208 /* A first check whether the buffer is sufficiently large is possible. */
209 /* Now allocate the buffer the array for the group members. We must
210 align the pointer and the base of the h_addr_list pointers. */
211 align1
= ((__alignof__ (char *) - (cp
- ((char *) 0)))
212 & (__alignof__ (char *) - 1));
213 align2
= ((__alignof__ (char *) - ((cp
+ align1
+ serv_resp
.s_name_len
214 + serv_resp
.s_proto_len
)
216 & (__alignof__ (char *) - 1));
217 if (buflen
< (align1
+ serv_resp
.s_name_len
+ serv_resp
.s_proto_len
219 + (serv_resp
.s_aliases_cnt
+ 1) * sizeof (char *)))
222 __set_errno (ERANGE
);
228 /* Prepare the result as far as we can. */
229 resultbuf
->s_aliases
= (char **) cp
;
230 cp
+= (serv_resp
.s_aliases_cnt
+ 1) * sizeof (char *);
232 resultbuf
->s_name
= cp
;
233 cp
+= serv_resp
.s_name_len
;
234 resultbuf
->s_proto
= cp
;
235 cp
+= serv_resp
.s_proto_len
+ align2
;
236 resultbuf
->s_port
= serv_resp
.s_port
;
242 vec
[0].iov_base
= resultbuf
->s_name
;
243 vec
[0].iov_len
= serv_resp
.s_name_len
+ serv_resp
.s_proto_len
;
244 total_len
= vec
[0].iov_len
;
247 if (serv_resp
.s_aliases_cnt
> 0)
249 assert (alloca_aliases_len
== 0);
251 = __libc_use_alloca (alloca_used
252 + (serv_resp
.s_aliases_cnt
253 * sizeof (uint32_t)));
254 if (alloca_aliases_len
)
255 aliases_len
= alloca_account (serv_resp
.s_aliases_cnt
260 aliases_len
= malloc (serv_resp
.s_aliases_cnt
261 * sizeof (uint32_t));
262 if (aliases_len
== NULL
)
268 vec
[n
].iov_base
= (void *) aliases_len
;
269 vec
[n
].iov_len
= serv_resp
.s_aliases_cnt
* sizeof (uint32_t);
271 total_len
+= serv_resp
.s_aliases_cnt
* sizeof (uint32_t);
275 if ((size_t) __readvall (sock
, vec
, n
) != total_len
)
279 memcpy (resultbuf
->s_name
, s_name
,
280 serv_resp
.s_name_len
+ serv_resp
.s_proto_len
);
282 /* Now we also can read the aliases. */
284 for (cnt
= 0; cnt
< serv_resp
.s_aliases_cnt
; ++cnt
)
286 resultbuf
->s_aliases
[cnt
] = cp
;
287 cp
+= aliases_len
[cnt
];
288 total_len
+= aliases_len
[cnt
];
290 resultbuf
->s_aliases
[cnt
] = NULL
;
292 if (__builtin_expect ((const char *) aliases_list
+ total_len
> recend
,
295 /* aliases_len array might contain garbage during nscd GC cycle,
296 retry rather than fail in that case. */
297 if (aliases_list
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
302 /* See whether this would exceed the buffer capacity. */
303 if (__builtin_expect (cp
> buf
+ buflen
, 0))
305 /* aliases_len array might contain garbage during nscd GC cycle,
306 retry rather than fail in that case. */
307 if (aliases_list
!= NULL
&& mapped
->head
->gc_cycle
!= gc_cycle
)
315 /* And finally read the aliases. */
316 if (aliases_list
== NULL
)
319 || ((size_t) __readall (sock
, resultbuf
->s_aliases
[0], total_len
)
328 memcpy (resultbuf
->s_aliases
[0], aliases_list
, total_len
);
330 /* Try to detect corrupt databases. */
331 if (resultbuf
->s_name
[serv_resp
.s_name_len
- 1] != '\0'
332 || resultbuf
->s_proto
[serv_resp
.s_proto_len
- 1] != '\0'
333 || ({for (cnt
= 0; cnt
< serv_resp
.s_aliases_cnt
; ++cnt
)
334 if (resultbuf
->s_aliases
[cnt
][aliases_len
[cnt
] - 1]
337 cnt
< serv_resp
.s_aliases_cnt
; }))
339 /* We cannot use the database. */
340 if (mapped
->head
->gc_cycle
!= gc_cycle
)
351 /* Set errno to 0 to indicate no error, just no found record. */
353 /* Even though we have not found anything, the result is zero. */
359 close_not_cancel_no_status (sock
);
361 if (__nscd_drop_map_ref (mapped
, &gc_cycle
) != 0)
363 /* When we come here this means there has been a GC cycle while we
364 were looking for the data. This means the data might have been
365 inconsistent. Retry if possible. */
366 if ((gc_cycle
& 1) != 0 || ++nretries
== 5 || retval
== -1)
368 /* nscd is just running gc now. Disable using the mapping. */
369 if (atomic_decrement_val (&mapped
->counter
) == 0)
370 __nscd_unmap (mapped
);
376 if (!alloca_aliases_len
)
377 free ((void *) aliases_len
);
382 if (!alloca_aliases_len
)
383 free ((void *) aliases_len
);