1 /* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
28 #include <arpa/nameser.h>
29 #include <sys/socket.h>
33 #include "nscd-client.h"
34 #include "nscd_proto.h"
36 int __nss_not_use_nscd_hosts
;
38 static int nscd_gethst_r (const char *key
, size_t keylen
, request_type type
,
39 struct hostent
*resultbuf
, char *buffer
,
40 size_t buflen
, int *h_errnop
) internal_function
;
44 __nscd_gethostbyname_r (const char *name
, struct hostent
*resultbuf
,
45 char *buffer
, size_t buflen
, int *h_errnop
)
49 reqtype
= (_res
.options
& RES_USE_INET6
) ? GETHOSTBYNAMEv6
: GETHOSTBYNAME
;
51 return nscd_gethst_r (name
, strlen (name
) + 1, reqtype
, resultbuf
,
52 buffer
, buflen
, h_errnop
);
57 __nscd_gethostbyname2_r (const char *name
, int af
, struct hostent
*resultbuf
,
58 char *buffer
, size_t buflen
, int *h_errnop
)
62 reqtype
= af
== AF_INET6
? GETHOSTBYNAMEv6
: GETHOSTBYNAME
;
64 return nscd_gethst_r (name
, strlen (name
) + 1, reqtype
, resultbuf
,
65 buffer
, buflen
, h_errnop
);
70 __nscd_gethostbyaddr_r (const void *addr
, socklen_t len
, int type
,
71 struct hostent
*resultbuf
, char *buffer
, size_t buflen
,
76 if (!((len
== INADDRSZ
&& type
== AF_INET
)
77 || (len
== IN6ADDRSZ
&& type
== AF_INET6
)))
78 /* LEN and TYPE do not match. */
81 reqtype
= type
== AF_INET6
? GETHOSTBYADDRv6
: GETHOSTBYADDR
;
83 return nscd_gethst_r (addr
, len
, reqtype
, resultbuf
, buffer
, buflen
,
88 /* Create a socket connected to a name. */
92 struct sockaddr_un addr
;
94 int saved_errno
= errno
;
96 sock
= __socket (PF_UNIX
, SOCK_STREAM
, 0);
99 __set_errno (saved_errno
);
103 addr
.sun_family
= AF_UNIX
;
104 strcpy (addr
.sun_path
, _PATH_NSCDSOCKET
);
105 if (__connect (sock
, (struct sockaddr
*) &addr
, sizeof (addr
)) < 0)
108 __set_errno (saved_errno
);
118 nscd_gethst_r (const char *key
, size_t keylen
, request_type type
,
119 struct hostent
*resultbuf
, char *buffer
, size_t buflen
,
122 int sock
= open_socket ();
123 hst_response_header hst_resp
;
129 __nss_not_use_nscd_group
= 1;
133 req
.version
= NSCD_VERSION
;
135 req
.key_len
= keylen
;
136 nbytes
= __write (sock
, &req
, sizeof (request_header
));
137 if (nbytes
!= sizeof (request_header
))
143 nbytes
= __write (sock
, key
, req
.key_len
);
144 if (nbytes
!= req
.key_len
)
150 nbytes
= __read (sock
, &hst_resp
, sizeof (hst_response_header
));
151 if (nbytes
!= sizeof (hst_response_header
))
157 if (hst_resp
.found
== -1)
159 /* The daemon does not cache this database. */
161 __nss_not_use_nscd_hosts
= 1;
165 if (hst_resp
.found
== 1)
177 /* A first check whether the buffer is sufficiently large is possible. */
178 /* Now allocate the buffer the array for the group members. We must
179 align the pointer and the base of the h_addr_list pointers. */
180 align1
= ((__alignof__ (char *) - (cp
- ((char *) 0)))
181 & (__alignof__ (char *) - 1));
182 align2
= ((__alignof__ (char *) - ((cp
+ align1
+ hst_resp
.h_name_len
)
184 & (__alignof__ (char *) - 1));
185 if (buflen
< (align1
+ hst_resp
.h_name_len
+ align2
186 + ((hst_resp
.h_aliases_cnt
+ hst_resp
.h_addr_list_cnt
+ 2)
188 + hst_resp
.h_addr_list_cnt
* (type
== AF_INET
189 ? INADDRSZ
: IN6ADDRSZ
)))
192 __set_errno (ERANGE
);
198 /* Prepare the result as far as we can. */
199 resultbuf
->h_aliases
= (char **) cp
;
200 cp
+= (hst_resp
.h_aliases_cnt
+ 1) * sizeof (char *);
201 resultbuf
->h_addr_list
= (char **) cp
;
202 cp
+= (hst_resp
.h_addr_list_cnt
+ 1) * sizeof (char *);
204 resultbuf
->h_name
= cp
;
205 cp
+= hst_resp
.h_name_len
+ align2
;
206 vec
[0].iov_base
= resultbuf
->h_name
;
207 vec
[0].iov_len
= hst_resp
.h_name_len
;
209 aliases_len
= alloca (hst_resp
.h_aliases_cnt
* sizeof (size_t));
210 vec
[1].iov_base
= aliases_len
;
211 vec
[1].iov_len
= hst_resp
.h_aliases_cnt
* sizeof (size_t);
213 total_len
= (hst_resp
.h_name_len
214 + hst_resp
.h_aliases_cnt
* sizeof (size_t));
217 if (type
== GETHOSTBYADDR
|| type
== GETHOSTBYNAME
)
219 vec
[2].iov_base
= cp
;
220 vec
[2].iov_len
= hst_resp
.h_addr_list_cnt
* INADDRSZ
;
222 ignore
= alloca (hst_resp
.h_addr_list_cnt
* IN6ADDRSZ
);
223 vec
[3].iov_base
= ignore
;
224 vec
[3].iov_len
= hst_resp
.h_addr_list_cnt
* IN6ADDRSZ
;
226 for (cnt
= 0; cnt
< hst_resp
.h_addr_list_cnt
; ++cnt
)
228 resultbuf
->h_addr_list
[cnt
] = cp
;
232 resultbuf
->h_addrtype
= AF_INET
;
233 resultbuf
->h_length
= INADDRSZ
;
235 total_len
+= hst_resp
.h_addr_list_cnt
* (INADDRSZ
+ IN6ADDRSZ
);
241 if (hst_resp
.h_length
== INADDRSZ
)
243 ignore
= alloca (hst_resp
.h_addr_list_cnt
* INADDRSZ
);
244 vec
[2].iov_base
= ignore
;
245 vec
[2].iov_len
= hst_resp
.h_addr_list_cnt
* INADDRSZ
;
247 total_len
+= hst_resp
.h_addr_list_cnt
* INADDRSZ
;
252 vec
[n
].iov_base
= cp
;
253 vec
[n
].iov_len
= hst_resp
.h_addr_list_cnt
* IN6ADDRSZ
;
255 for (cnt
= 0; cnt
< hst_resp
.h_addr_list_cnt
; ++cnt
)
257 resultbuf
->h_addr_list
[cnt
] = cp
;
261 resultbuf
->h_addrtype
= AF_INET6
;
262 resultbuf
->h_length
= IN6ADDRSZ
;
264 total_len
+= hst_resp
.h_addr_list_cnt
* IN6ADDRSZ
;
268 resultbuf
->h_addr_list
[cnt
] = NULL
;
270 if (__readv (sock
, vec
, n
) != total_len
)
276 /* Now we also can read the aliases. */
278 for (cnt
= 0; cnt
< hst_resp
.h_aliases_cnt
; ++cnt
)
280 resultbuf
->h_aliases
[cnt
] = cp
;
281 cp
+= aliases_len
[cnt
];
282 total_len
+= aliases_len
[cnt
];
284 resultbuf
->h_aliases
[cnt
] = NULL
;
286 /* See whether this would exceed the buffer capacity. */
287 if (cp
> buffer
+ buflen
)
290 /* And finally read the aliases. */
291 if (__read (sock
, resultbuf
->h_aliases
[0], total_len
) != total_len
)
302 /* Store the error number. */
303 *h_errnop
= hst_resp
.error
;
306 /* The `errno' to some value != ERANGE. */
307 __set_errno (ENOENT
);