1 /* Cache handling for host lookup.
2 Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 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 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
32 #include <arpa/inet.h>
33 #include <arpa/nameser.h>
39 /* This is the standard reply in case the service is disabled. */
40 static const hst_response_header disabled
=
42 version
: NSCD_VERSION
,
52 /* This is the struct describing how to write this record. */
53 const struct iovec hst_iov_disabled
=
55 iov_base
: (void *) &disabled
,
56 iov_len
: sizeof (disabled
)
60 /* This is the standard reply in case we haven't found the dataset. */
61 static const hst_response_header notfound
=
63 version
: NSCD_VERSION
,
73 /* This is the struct describing how to write this record. */
74 static const struct iovec iov_notfound
=
76 iov_base
: (void *) ¬found
,
77 iov_len
: sizeof (notfound
)
83 hst_response_header resp
;
89 cache_addhst (struct database
*db
, int fd
, request_header
*req
, void *key
,
90 struct hostent
*hst
, uid_t owner
)
94 time_t t
= time (NULL
);
98 /* We have no data. This means we send the standard reply for this
102 total
= sizeof (notfound
);
104 written
= writev (fd
, &iov_notfound
, 1);
106 copy
= malloc (req
->key_len
);
108 error (EXIT_FAILURE
, errno
, _("while allocating key copy"));
109 memcpy (copy
, key
, req
->key_len
);
111 /* Compute the timeout time. */
114 /* Now get the lock to safely insert the records. */
115 pthread_rwlock_rdlock (&db
->lock
);
117 cache_add (req
->type
, copy
, req
->key_len
, ¬found
,
118 sizeof (notfound
), (void *) -1, 0, t
, db
, owner
);
120 pthread_rwlock_unlock (&db
->lock
);
124 /* Determine the I/O structure. */
125 struct hostdata
*data
;
126 size_t h_name_len
= strlen (hst
->h_name
) + 1;
127 size_t h_aliases_cnt
;
128 uint32_t *h_aliases_len
;
129 size_t h_addr_list_cnt
;
133 char *key_copy
= NULL
;
137 /* Determine the number of aliases. */
139 for (cnt
= 0; hst
->h_aliases
[cnt
] != NULL
; ++cnt
)
141 /* Determine the length of all aliases. */
142 h_aliases_len
= (uint32_t *) alloca (h_aliases_cnt
* sizeof (uint32_t));
144 for (cnt
= 0; cnt
< h_aliases_cnt
; ++cnt
)
146 h_aliases_len
[cnt
] = strlen (hst
->h_aliases
[cnt
]) + 1;
147 total
+= h_aliases_len
[cnt
];
150 /* Determine the number of addresses. */
152 for (cnt
= 0; hst
->h_addr_list
[cnt
]; ++cnt
)
155 /* We allocate all data in one memory block: the iov vector,
156 the response header and the dataset itself. */
157 total
+= (sizeof (struct hostdata
)
159 + h_aliases_cnt
* sizeof (uint32_t)
160 + h_addr_list_cnt
* hst
->h_length
);
162 data
= (struct hostdata
*) malloc (total
+ req
->key_len
);
164 /* There is no reason to go on. */
165 error (EXIT_FAILURE
, errno
, _("while allocating cache entry"));
167 data
->resp
.found
= 1;
168 data
->resp
.h_name_len
= h_name_len
;
169 data
->resp
.h_aliases_cnt
= h_aliases_cnt
;
170 data
->resp
.h_addrtype
= hst
->h_addrtype
;
171 data
->resp
.h_length
= hst
->h_length
;
172 data
->resp
.h_addr_list_cnt
= h_addr_list_cnt
;
173 data
->resp
.error
= NETDB_SUCCESS
;
177 cp
= mempcpy (cp
, hst
->h_name
, h_name_len
);
178 cp
= mempcpy (cp
, h_aliases_len
, h_aliases_cnt
* sizeof (uint32_t));
180 /* The normal addresses first. */
182 for (cnt
= 0; cnt
< h_addr_list_cnt
; ++cnt
)
183 cp
= mempcpy (cp
, hst
->h_addr_list
[cnt
], hst
->h_length
);
185 /* Then the aliases. */
187 for (cnt
= 0; cnt
< h_aliases_cnt
; ++cnt
)
188 cp
= mempcpy (cp
, hst
->h_aliases
[cnt
], h_aliases_len
[cnt
]);
190 assert (cp
== data
->strdata
+ total
- sizeof (hst_response_header
));
192 /* If we are adding a GETHOSTBYNAME{,v6} entry we must be prepared
193 that the answer we get from the NSS does not contain the key
194 itself. This is the case if the resolver is used and the name
195 is extended by the domainnames from /etc/resolv.conf. Therefore
196 we explicitly add the name here. */
197 if (req
->type
== GETHOSTBYNAME
|| req
->type
== GETHOSTBYNAMEv6
)
198 key_copy
= memcpy (cp
, key
, req
->key_len
);
200 /* We write the dataset before inserting it to the database
201 since while inserting this thread might block and so would
202 unnecessarily let the receiver wait. */
203 written
= write (fd
, data
, total
);
205 addr_list_type
= (hst
->h_length
== NS_INADDRSZ
206 ? GETHOSTBYADDR
: GETHOSTBYADDRv6
);
208 /* Compute the timeout time. */
211 /* Now get the lock to safely insert the records. */
212 pthread_rwlock_rdlock (&db
->lock
);
214 /* First add all the aliases. If the record contains more than
215 one IP address (used for load balancing etc) don't cache the
216 entry. This is something the current cache handling cannot
217 handle and it is more than questionable whether it is
218 worthwhile complicating the cache handling just for handling
219 such a special case. */
220 if (hst
->h_addr_list
[1] == NULL
)
221 for (cnt
= 0; cnt
< h_aliases_cnt
; ++cnt
)
223 if (addr_list_type
== GETHOSTBYADDR
)
224 cache_add (GETHOSTBYNAME
, aliases
, h_aliases_len
[cnt
], data
,
225 total
, data
, 0, t
, db
, owner
);
227 cache_add (GETHOSTBYNAMEv6
, aliases
, h_aliases_len
[cnt
], data
,
228 total
, data
, 0, t
, db
, owner
);
230 aliases
+= h_aliases_len
[cnt
];
233 /* Next the normal addresses. */
234 for (cnt
= 0; cnt
< h_addr_list_cnt
; ++cnt
)
236 cache_add (addr_list_type
, addresses
, hst
->h_length
, data
, total
,
237 data
, 0, t
, db
, owner
);
238 addresses
+= hst
->h_length
;
241 /* If necessary the IPv6 addresses. */
242 if (addr_list_type
== GETHOSTBYADDR
)
243 for (cnt
= 0; cnt
< h_addr_list_cnt
; ++cnt
)
245 cache_add (GETHOSTBYADDRv6
, addresses
, IN6ADDRSZ
, data
, total
,
246 data
, 0, t
, db
, owner
);
247 addresses
+= IN6ADDRSZ
;
250 /* Avoid adding names if more than one address is available. See
251 above for more info. */
252 if (hst
->h_addr_list
[1] == NULL
)
254 /* If necessary add the key for this request. */
255 if (req
->type
== GETHOSTBYNAME
|| req
->type
== GETHOSTBYNAMEv6
)
257 if (addr_list_type
== GETHOSTBYADDR
)
258 cache_add (GETHOSTBYNAME
, key_copy
, req
->key_len
, data
, total
,
259 data
, 0, t
, db
, owner
);
260 cache_add (GETHOSTBYNAMEv6
, key_copy
, req
->key_len
, data
,
261 total
, data
, 0, t
, db
, owner
);
264 /* And finally the name. We mark this as the last entry. */
265 if (addr_list_type
== GETHOSTBYADDR
)
266 cache_add (GETHOSTBYNAME
, data
->strdata
, h_name_len
, data
, total
,
267 data
, 0, t
, db
, owner
);
268 cache_add (GETHOSTBYNAMEv6
, data
->strdata
, h_name_len
, data
,
269 total
, data
, 1, t
, db
, owner
);
272 pthread_rwlock_unlock (&db
->lock
);
275 if (written
!= total
)
278 dbg_log (_("short write in %s: %s"), __FUNCTION__
,
279 strerror_r (errno
, buf
, sizeof (buf
)));
285 addhstbyname (struct database
*db
, int fd
, request_header
*req
,
286 void *key
, uid_t uid
)
288 /* Search for the entry matching the key. Please note that we don't
289 look again in the table whether the dataset is now available. We
290 simply insert it. It does not matter if it is in there twice. The
291 pruning function only will look at the timestamp. */
293 char *buffer
= alloca (buflen
);
294 struct hostent resultbuf
;
299 dbg_log (_("Haven't found \"%s\" in hosts cache!"), (char *)key
);
303 oldeuid
= geteuid ();
307 while (__gethostbyname2_r (key
, AF_INET
, &resultbuf
, buffer
, buflen
,
309 && h_errno
== NETDB_INTERNAL
314 buffer
= alloca (buflen
);
320 cache_addhst (db
, fd
, req
, key
, hst
, uid
);
325 addhstbyaddr (struct database
*db
, int fd
, request_header
*req
,
326 void *key
, uid_t uid
)
328 /* Search for the entry matching the key. Please note that we don't
329 look again in the table whether the dataset is now available. We
330 simply insert it. It does not matter if it is in there twice. The
331 pruning function only will look at the timestamp. */
333 char *buffer
= alloca (buflen
);
334 struct hostent resultbuf
;
340 char buf
[INET_ADDRSTRLEN
];
341 dbg_log (_("Haven't found \"%s\" in hosts cache!"),
342 inet_ntop (AF_INET
, key
, buf
, sizeof (buf
)));
347 oldeuid
= geteuid ();
351 while (__gethostbyaddr_r (key
, NS_INADDRSZ
, AF_INET
, &resultbuf
, buffer
,
352 buflen
, &hst
, &h_errno
) != 0
353 && h_errno
== NETDB_INTERNAL
358 buffer
= alloca (buflen
);
364 cache_addhst (db
, fd
, req
, key
, hst
, uid
);
369 addhstbynamev6 (struct database
*db
, int fd
, request_header
*req
,
370 void *key
, uid_t uid
)
372 /* Search for the entry matching the key. Please note that we don't
373 look again in the table whether the dataset is now available. We
374 simply insert it. It does not matter if it is in there twice. The
375 pruning function only will look at the timestamp. */
377 char *buffer
= alloca (buflen
);
378 struct hostent resultbuf
;
384 char buf
[INET6_ADDRSTRLEN
];
386 dbg_log (_("Haven't found \"%s\" in hosts cache!"),
387 inet_ntop (AF_INET6
, key
, buf
, sizeof (buf
)));
392 oldeuid
= geteuid ();
396 while (__gethostbyname2_r (key
, AF_INET6
, &resultbuf
, buffer
, buflen
,
398 && h_errno
== NETDB_INTERNAL
403 buffer
= alloca (buflen
);
409 cache_addhst (db
, fd
, req
, key
, hst
, uid
);
414 addhstbyaddrv6 (struct database
*db
, int fd
, request_header
*req
,
415 void *key
, uid_t uid
)
417 /* Search for the entry matching the key. Please note that we don't
418 look again in the table whether the dataset is now available. We
419 simply insert it. It does not matter if it is in there twice. The
420 pruning function only will look at the timestamp. */
422 char *buffer
= alloca (buflen
);
423 struct hostent resultbuf
;
429 char buf
[INET6_ADDRSTRLEN
];
430 dbg_log (_("Haven't found \"%s\" in hosts cache!"),
431 inet_ntop (AF_INET6
, key
, buf
, sizeof (buf
)));
436 oldeuid
= geteuid ();
440 while (__gethostbyaddr_r (key
, NS_IN6ADDRSZ
, AF_INET6
, &resultbuf
,
441 buffer
, buflen
, &hst
, &h_errno
) != 0
442 && h_errno
== NETDB_INTERNAL
447 buffer
= alloca (buflen
);
453 cache_addhst (db
, fd
, req
, key
, hst
, uid
);