2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-10 07:56:02 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2010-01-22 01:36:52 -05:00
|
|
|
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-10 07:56:02 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
2000-08-23 03:23:42 -04:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netinet/in.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netdb.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2001-12-04 08:03:08 -05:00
|
|
|
#ifdef HAVE_STDLIB_H
|
2004-10-06 03:50:18 -04:00
|
|
|
#include <stdlib.h> /* required for free() prototypes */
|
2001-12-04 08:03:08 -05:00
|
|
|
#endif
|
2004-04-21 07:18:42 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h> /* for the close() proto */
|
|
|
|
#endif
|
2009-12-30 12:59:56 -05:00
|
|
|
#ifdef __VMS
|
2002-02-20 08:46:53 -05:00
|
|
|
#include <in.h>
|
2001-08-06 08:19:26 -04:00
|
|
|
#include <inet.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-06-11 11:10:18 -04:00
|
|
|
#ifdef HAVE_SETJMP_H
|
|
|
|
#include <setjmp.h>
|
|
|
|
#endif
|
2008-09-29 17:02:22 -04:00
|
|
|
#ifdef HAVE_SIGNAL_H
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
2002-06-11 11:10:18 -04:00
|
|
|
|
2006-04-26 13:23:28 -04:00
|
|
|
#ifdef HAVE_PROCESS_H
|
2004-04-06 10:51:14 -04:00
|
|
|
#include <process.h>
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
2001-09-28 03:05:26 -04:00
|
|
|
#include "hostip.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
#include "hash.h"
|
2003-02-04 18:48:46 -05:00
|
|
|
#include "share.h"
|
2004-04-06 10:51:14 -04:00
|
|
|
#include "strerror.h"
|
2003-08-05 10:40:59 -04:00
|
|
|
#include "url.h"
|
2004-06-10 07:06:21 -04:00
|
|
|
#include "inet_ntop.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-01-17 03:03:48 -05:00
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2000-10-09 07:12:34 -04:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
2010-01-23 08:53:33 -05:00
|
|
|
#if defined(CURLRES_SYNCH) && \
|
|
|
|
defined(HAVE_ALARM) && defined(SIGALRM) && defined(HAVE_SIGSETJMP)
|
2008-09-29 17:02:22 -04:00
|
|
|
/* alarm-based timeouts can only be used with all the dependencies satisfied */
|
|
|
|
#define USE_ALARM_TIMEOUT
|
|
|
|
#endif
|
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
/*
|
|
|
|
* hostip.c explained
|
|
|
|
* ==================
|
|
|
|
*
|
|
|
|
* The main COMPILE-TIME DEFINES to keep in mind when reading the host*.c
|
|
|
|
* source file are these:
|
|
|
|
*
|
|
|
|
* CURLRES_IPV6 - this host has getaddrinfo() and family, and thus we use
|
|
|
|
* that. The host may not be able to resolve IPv6, but we don't really have to
|
|
|
|
* take that into account. Hosts that aren't IPv6-enabled have CURLRES_IPV4
|
|
|
|
* defined.
|
|
|
|
*
|
|
|
|
* CURLRES_ARES - is defined if libcurl is built to use c-ares for
|
2006-07-25 06:23:15 -04:00
|
|
|
* asynchronous name resolves. This can be Windows or *nix.
|
2004-04-26 03:20:11 -04:00
|
|
|
*
|
|
|
|
* CURLRES_THREADED - is defined if libcurl is built to run under (native)
|
|
|
|
* Windows, and then the name resolve will be done in a new thread, and the
|
|
|
|
* supported API will be the same as for ares-builds.
|
|
|
|
*
|
|
|
|
* If any of the two previous are defined, CURLRES_ASYNCH is defined too. If
|
|
|
|
* libcurl is not built to use an asynchronous resolver, CURLRES_SYNCH is
|
|
|
|
* defined.
|
|
|
|
*
|
|
|
|
* The host*.c sources files are split up like this:
|
|
|
|
*
|
|
|
|
* hostip.c - method-independent resolver functions and utility functions
|
|
|
|
* hostasyn.c - functions for asynchronous name resolves
|
|
|
|
* hostsyn.c - functions for synchronous name resolves
|
|
|
|
* hostares.c - functions for ares-using name resolves
|
|
|
|
* hostthre.c - functions for threaded name resolves
|
|
|
|
* hostip4.c - ipv4-specific functions
|
|
|
|
* hostip6.c - ipv6-specific functions
|
|
|
|
*
|
|
|
|
* The hostip.h is the united header file for all this. It defines the
|
|
|
|
* CURLRES_* defines based on the config*.h and setup.h defines.
|
|
|
|
*/
|
2004-03-31 07:55:24 -05:00
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/* These two symbols are for the global DNS cache */
|
2005-01-24 19:06:29 -05:00
|
|
|
static struct curl_hash hostname_cache;
|
2002-01-07 15:52:32 -05:00
|
|
|
static int host_cache_initialized;
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
static void freednsentry(void *freethis);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_global_host_cache_init() initializes and sets up a global DNS cache.
|
|
|
|
* Global DNS cache is general badness. Do not use. This will be removed in
|
|
|
|
* a future version. Use the share interface instead!
|
2008-01-15 17:15:55 -05:00
|
|
|
*
|
2008-01-15 17:44:12 -05:00
|
|
|
* Returns a struct curl_hash pointer on success, NULL on failure.
|
2004-03-30 08:02:07 -05:00
|
|
|
*/
|
2008-01-15 17:44:12 -05:00
|
|
|
struct curl_hash *Curl_global_host_cache_init(void)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
2008-01-15 17:15:55 -05:00
|
|
|
int rc = 0;
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!host_cache_initialized) {
|
2008-01-15 17:15:55 -05:00
|
|
|
rc = Curl_hash_init(&hostname_cache, 7, Curl_hash_str,
|
|
|
|
Curl_str_key_compare, freednsentry);
|
|
|
|
if(!rc)
|
|
|
|
host_cache_initialized = 1;
|
2002-01-07 15:52:32 -05:00
|
|
|
}
|
2008-01-15 17:44:12 -05:00
|
|
|
return rc?NULL:&hostname_cache;
|
2002-01-03 05:22:59 -05:00
|
|
|
}
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* Destroy and cleanup the global DNS cache
|
|
|
|
*/
|
2002-01-07 15:52:32 -05:00
|
|
|
void Curl_global_host_cache_dtor(void)
|
|
|
|
{
|
2007-11-07 04:21:35 -05:00
|
|
|
if(host_cache_initialized) {
|
2002-04-27 09:07:51 -04:00
|
|
|
Curl_hash_clean(&hostname_cache);
|
2002-01-07 15:55:35 -05:00
|
|
|
host_cache_initialized = 0;
|
2002-01-07 15:52:32 -05:00
|
|
|
}
|
|
|
|
}
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2004-06-10 07:06:21 -04:00
|
|
|
/*
|
|
|
|
* Return # of adresses in a Curl_addrinfo struct
|
|
|
|
*/
|
|
|
|
int Curl_num_addresses(const Curl_addrinfo *addr)
|
|
|
|
{
|
2008-10-17 08:53:53 -04:00
|
|
|
int i = 0;
|
|
|
|
while(addr) {
|
|
|
|
addr = addr->ai_next;
|
|
|
|
i++;
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
return i;
|
2004-06-10 07:06:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2004-06-10 07:55:37 -04:00
|
|
|
* Curl_printable_address() returns a printable version of the 1st address
|
2008-10-18 21:02:18 -04:00
|
|
|
* given in the 'ai' argument. The result will be stored in the buf that is
|
2004-06-10 07:55:37 -04:00
|
|
|
* bufsize bytes big.
|
2004-06-10 07:06:21 -04:00
|
|
|
*
|
|
|
|
* If the conversion fails, it returns NULL.
|
|
|
|
*/
|
2008-10-18 21:02:18 -04:00
|
|
|
const char *
|
|
|
|
Curl_printable_address(const Curl_addrinfo *ai, char *buf, size_t bufsize)
|
2004-06-10 07:06:21 -04:00
|
|
|
{
|
2008-10-19 18:46:54 -04:00
|
|
|
const struct sockaddr_in *sa4;
|
|
|
|
const struct in_addr *ipaddr4;
|
2008-10-18 21:02:18 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
2008-10-19 18:46:54 -04:00
|
|
|
const struct sockaddr_in6 *sa6;
|
|
|
|
const struct in6_addr *ipaddr6;
|
2004-06-10 07:06:21 -04:00
|
|
|
#endif
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2008-10-18 21:02:18 -04:00
|
|
|
switch (ai->ai_family) {
|
|
|
|
case AF_INET:
|
2008-10-19 18:46:54 -04:00
|
|
|
sa4 = (const void *)ai->ai_addr;
|
2008-10-18 21:02:18 -04:00
|
|
|
ipaddr4 = &sa4->sin_addr;
|
2010-01-22 18:21:39 -05:00
|
|
|
return Curl_inet_ntop(ai->ai_family, (const void *)ipaddr4, buf,
|
|
|
|
bufsize);
|
2008-10-18 21:02:18 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
case AF_INET6:
|
2008-10-19 18:46:54 -04:00
|
|
|
sa6 = (const void *)ai->ai_addr;
|
2008-10-18 21:02:18 -04:00
|
|
|
ipaddr6 = &sa6->sin6_addr;
|
2010-01-22 18:21:39 -05:00
|
|
|
return Curl_inet_ntop(ai->ai_family, (const void *)ipaddr6, buf,
|
|
|
|
bufsize);
|
2008-10-18 21:02:18 -04:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return NULL;
|
2004-06-10 07:06:21 -04:00
|
|
|
}
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
2004-04-26 03:20:11 -04:00
|
|
|
* Return a hostcache id string for the providing host + port, to be used by
|
|
|
|
* the DNS caching.
|
2004-03-30 08:02:07 -05:00
|
|
|
*/
|
2002-01-17 01:55:37 -05:00
|
|
|
static char *
|
2006-07-21 01:51:12 -04:00
|
|
|
create_hostcache_id(const char *server, int port)
|
2002-01-17 01:55:37 -05:00
|
|
|
{
|
2004-06-24 07:54:11 -04:00
|
|
|
/* create and return the new allocated entry */
|
|
|
|
return aprintf("%s:%d", server, port);
|
2002-01-17 01:55:37 -05:00
|
|
|
}
|
|
|
|
|
2002-04-27 09:07:51 -04:00
|
|
|
struct hostcache_prune_data {
|
2007-08-26 01:53:26 -04:00
|
|
|
long cache_timeout;
|
2004-03-10 04:36:43 -05:00
|
|
|
time_t now;
|
2002-04-17 16:13:55 -04:00
|
|
|
};
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* This function is set as a callback to be called for every entry in the DNS
|
|
|
|
* cache when we want to prune old unused entries.
|
|
|
|
*
|
|
|
|
* Returning non-zero means remove the entry, return 0 to keep it in the
|
|
|
|
* cache.
|
|
|
|
*/
|
2002-04-17 16:13:55 -04:00
|
|
|
static int
|
2002-11-05 05:51:41 -05:00
|
|
|
hostcache_timestamp_remove(void *datap, void *hc)
|
2002-04-17 16:13:55 -04:00
|
|
|
{
|
2004-06-10 07:56:02 -04:00
|
|
|
struct hostcache_prune_data *data =
|
2002-04-27 09:07:51 -04:00
|
|
|
(struct hostcache_prune_data *) datap;
|
2002-11-05 05:51:41 -05:00
|
|
|
struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;
|
2004-06-10 07:56:02 -04:00
|
|
|
|
2009-11-11 04:31:37 -05:00
|
|
|
return (data->now - c->timestamp >= data->cache_timeout);
|
2002-04-17 16:13:55 -04:00
|
|
|
}
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* Prune the DNS cache. This assumes that a lock has already been taken.
|
|
|
|
*/
|
2002-04-17 16:13:55 -04:00
|
|
|
static void
|
2007-08-26 01:53:26 -04:00
|
|
|
hostcache_prune(struct curl_hash *hostcache, long cache_timeout, time_t now)
|
2002-04-17 16:13:55 -04:00
|
|
|
{
|
2002-04-27 09:07:51 -04:00
|
|
|
struct hostcache_prune_data user;
|
2002-04-17 16:13:55 -04:00
|
|
|
|
|
|
|
user.cache_timeout = cache_timeout;
|
|
|
|
user.now = now;
|
2004-02-15 11:57:53 -05:00
|
|
|
|
2004-06-10 07:56:02 -04:00
|
|
|
Curl_hash_clean_with_criterium(hostcache,
|
|
|
|
(void *) &user,
|
2002-11-05 05:51:41 -05:00
|
|
|
hostcache_timestamp_remove);
|
2002-04-17 16:13:55 -04:00
|
|
|
}
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* Library-wide function for pruning the DNS cache. This function takes and
|
|
|
|
* returns the appropriate locks.
|
|
|
|
*/
|
2003-12-15 12:33:49 -05:00
|
|
|
void Curl_hostcache_prune(struct SessionHandle *data)
|
|
|
|
{
|
|
|
|
time_t now;
|
2004-02-18 02:56:18 -05:00
|
|
|
|
2006-07-07 18:58:06 -04:00
|
|
|
if((data->set.dns_cache_timeout == -1) || !data->dns.hostcache)
|
2004-10-04 06:36:51 -04:00
|
|
|
/* cache forever means never prune, and NULL hostcache means
|
|
|
|
we can't do it */
|
2004-02-18 02:56:18 -05:00
|
|
|
return;
|
|
|
|
|
2003-12-15 12:33:49 -05:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
|
|
|
|
time(&now);
|
|
|
|
|
|
|
|
/* Remove outdated and unused entries from the hostcache */
|
2006-07-07 18:58:06 -04:00
|
|
|
hostcache_prune(data->dns.hostcache,
|
2003-12-15 12:33:49 -05:00
|
|
|
data->set.dns_cache_timeout,
|
|
|
|
now);
|
|
|
|
|
|
|
|
if(data->share)
|
|
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
|
|
|
|
}
|
|
|
|
|
2008-03-11 18:55:23 -04:00
|
|
|
/*
|
|
|
|
* Check if the entry should be pruned. Assumes a locked cache.
|
|
|
|
*/
|
2006-02-16 18:42:32 -05:00
|
|
|
static int
|
|
|
|
remove_entry_if_stale(struct SessionHandle *data, struct Curl_dns_entry *dns)
|
|
|
|
{
|
|
|
|
struct hostcache_prune_data user;
|
|
|
|
|
2006-07-07 18:58:06 -04:00
|
|
|
if( !dns || (data->set.dns_cache_timeout == -1) || !data->dns.hostcache)
|
2006-02-16 18:42:32 -05:00
|
|
|
/* cache forever means never prune, and NULL hostcache means
|
|
|
|
we can't do it */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
time(&user.now);
|
|
|
|
user.cache_timeout = data->set.dns_cache_timeout;
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if( !hostcache_timestamp_remove(&user,dns) )
|
2006-02-16 18:42:32 -05:00
|
|
|
return 0;
|
|
|
|
|
2006-07-07 18:58:06 -04:00
|
|
|
Curl_hash_clean_with_criterium(data->dns.hostcache,
|
2006-02-16 18:42:32 -05:00
|
|
|
(void *) &user,
|
|
|
|
hostcache_timestamp_remove);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-05 10:40:59 -04:00
|
|
|
#ifdef HAVE_SIGSETJMP
|
2004-03-30 08:02:07 -05:00
|
|
|
/* Beware this is a global and unique instance. This is used to store the
|
|
|
|
return address that we can jump back to from inside a signal handler. This
|
|
|
|
is not thread-safe stuff. */
|
2003-08-05 10:40:59 -04:00
|
|
|
sigjmp_buf curl_jmpenv;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
2004-04-26 03:20:11 -04:00
|
|
|
* Curl_cache_addr() stores a 'Curl_addrinfo' struct in the DNS cache.
|
2004-03-30 08:02:07 -05:00
|
|
|
*
|
|
|
|
* When calling Curl_resolv() has resulted in a response with a returned
|
|
|
|
* address, we call this function to store the information in the dns
|
|
|
|
* cache etc
|
|
|
|
*
|
|
|
|
* Returns the Curl_dns_entry entry pointer or NULL if the storage failed.
|
|
|
|
*/
|
2004-04-26 03:20:11 -04:00
|
|
|
struct Curl_dns_entry *
|
|
|
|
Curl_cache_addr(struct SessionHandle *data,
|
|
|
|
Curl_addrinfo *addr,
|
2006-07-21 01:51:12 -04:00
|
|
|
const char *hostname,
|
2004-04-26 03:20:11 -04:00
|
|
|
int port)
|
2002-11-05 05:51:41 -05:00
|
|
|
{
|
2003-08-05 10:40:59 -04:00
|
|
|
char *entry_id;
|
2004-02-23 03:35:57 -05:00
|
|
|
size_t entry_len;
|
2003-08-05 10:40:59 -04:00
|
|
|
struct Curl_dns_entry *dns;
|
2004-05-04 09:40:30 -04:00
|
|
|
struct Curl_dns_entry *dns2;
|
2003-08-05 10:40:59 -04:00
|
|
|
|
|
|
|
/* Create an entry id, based upon the hostname and port */
|
2004-06-24 07:54:11 -04:00
|
|
|
entry_id = create_hostcache_id(hostname, port);
|
2003-08-05 10:40:59 -04:00
|
|
|
/* If we can't create the entry id, fail */
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!entry_id)
|
2003-08-05 10:40:59 -04:00
|
|
|
return NULL;
|
2004-06-24 07:54:11 -04:00
|
|
|
entry_len = strlen(entry_id);
|
2003-08-05 10:40:59 -04:00
|
|
|
|
|
|
|
/* Create a new cache entry */
|
2009-11-18 05:33:54 -05:00
|
|
|
dns = calloc(1, sizeof(struct Curl_dns_entry));
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!dns) {
|
2003-08-05 10:40:59 -04:00
|
|
|
free(entry_id);
|
|
|
|
return NULL;
|
2002-11-05 05:51:41 -05:00
|
|
|
}
|
|
|
|
|
2003-09-14 17:17:54 -04:00
|
|
|
dns->inuse = 0; /* init to not used */
|
|
|
|
dns->addr = addr; /* this is the address(es) */
|
2009-11-11 04:31:37 -05:00
|
|
|
time(&dns->timestamp);
|
|
|
|
if(dns->timestamp == 0)
|
|
|
|
dns->timestamp = 1; /* zero indicates that entry isn't in hash table */
|
2003-09-14 17:17:54 -04:00
|
|
|
|
2009-11-11 04:31:37 -05:00
|
|
|
/* Store the resolved data in our DNS cache. */
|
2006-07-07 18:58:06 -04:00
|
|
|
dns2 = Curl_hash_add(data->dns.hostcache, entry_id, entry_len+1,
|
|
|
|
(void *)dns);
|
2004-05-04 09:40:30 -04:00
|
|
|
if(!dns2) {
|
|
|
|
free(dns);
|
2003-09-14 17:17:54 -04:00
|
|
|
free(entry_id);
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2009-11-11 04:31:37 -05:00
|
|
|
dns = dns2;
|
2003-08-05 10:40:59 -04:00
|
|
|
dns->inuse++; /* mark entry as in-use */
|
|
|
|
|
|
|
|
/* free the allocated entry_id again */
|
|
|
|
free(entry_id);
|
|
|
|
|
|
|
|
return dns;
|
2002-01-17 02:38:25 -05:00
|
|
|
}
|
2002-01-17 01:55:37 -05:00
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* Curl_resolv() is the main name resolve function within libcurl. It resolves
|
|
|
|
* a name and returns a pointer to the entry in the 'entry' argument (if one
|
|
|
|
* is provided). This function might return immediately if we're using asynch
|
|
|
|
* resolves. See the return codes.
|
|
|
|
*
|
|
|
|
* The cache entry we return will get its 'inuse' counter increased when this
|
|
|
|
* function is used. You MUST call Curl_resolv_unlock() later (when you're
|
|
|
|
* done using this struct) to decrease the counter again.
|
|
|
|
*
|
2009-09-01 10:27:01 -04:00
|
|
|
* In debug mode, we specifically test for an interface name "LocalHost"
|
|
|
|
* and resolve "localhost" instead as a means to permit test cases
|
|
|
|
* to connect to a local test server with any host name.
|
|
|
|
*
|
2004-03-30 08:02:07 -05:00
|
|
|
* Return codes:
|
|
|
|
*
|
2004-04-26 10:18:00 -04:00
|
|
|
* CURLRESOLV_ERROR (-1) = error, no pointer
|
|
|
|
* CURLRESOLV_RESOLVED (0) = OK, pointer provided
|
|
|
|
* CURLRESOLV_PENDING (1) = waiting for response, no pointer
|
2004-03-30 08:02:07 -05:00
|
|
|
*/
|
2004-04-26 10:18:00 -04:00
|
|
|
|
2003-08-05 10:40:59 -04:00
|
|
|
int Curl_resolv(struct connectdata *conn,
|
2006-07-21 01:51:12 -04:00
|
|
|
const char *hostname,
|
2003-08-05 10:40:59 -04:00
|
|
|
int port,
|
|
|
|
struct Curl_dns_entry **entry)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
2002-01-17 02:38:25 -05:00
|
|
|
char *entry_id = NULL;
|
2002-11-05 05:51:41 -05:00
|
|
|
struct Curl_dns_entry *dns = NULL;
|
2004-02-23 03:35:57 -05:00
|
|
|
size_t entry_len;
|
2003-08-05 10:40:59 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2003-11-14 06:56:15 -05:00
|
|
|
CURLcode result;
|
2008-03-11 18:55:23 -04:00
|
|
|
int rc = CURLRESOLV_ERROR; /* default to failure */
|
2002-01-07 23:26:47 -05:00
|
|
|
|
2008-09-29 17:02:22 -04:00
|
|
|
*entry = NULL;
|
2002-06-11 11:10:18 -04:00
|
|
|
|
2002-01-17 02:38:25 -05:00
|
|
|
/* Create an entry id, based upon the hostname and port */
|
2004-06-24 07:54:11 -04:00
|
|
|
entry_id = create_hostcache_id(hostname, port);
|
2002-11-05 05:51:41 -05:00
|
|
|
/* If we can't create the entry id, fail */
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!entry_id)
|
2008-03-11 18:55:23 -04:00
|
|
|
return rc;
|
2003-02-04 18:48:46 -05:00
|
|
|
|
2004-06-24 07:54:11 -04:00
|
|
|
entry_len = strlen(entry_id);
|
|
|
|
|
2003-02-04 18:48:46 -05:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
|
2002-01-07 23:26:47 -05:00
|
|
|
/* See if its already in our dns cache */
|
2006-07-07 18:58:06 -04:00
|
|
|
dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len+1);
|
2004-06-10 07:56:02 -04:00
|
|
|
|
2010-11-05 17:31:40 -04:00
|
|
|
/* free the allocated entry_id again */
|
|
|
|
free(entry_id);
|
|
|
|
|
2008-03-11 18:55:23 -04:00
|
|
|
/* See whether the returned entry is stale. Done before we release lock */
|
|
|
|
if( remove_entry_if_stale(data, dns) )
|
|
|
|
dns = NULL; /* the memory deallocation is being handled by the hash */
|
|
|
|
|
|
|
|
if(dns) {
|
|
|
|
dns->inuse++; /* we use it! */
|
|
|
|
rc = CURLRESOLV_RESOLVED;
|
|
|
|
}
|
|
|
|
|
2003-10-12 09:57:41 -04:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
|
2002-01-07 23:26:47 -05:00
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!dns) {
|
2003-08-05 10:40:59 -04:00
|
|
|
/* The entry was not in the cache. Resolve it to IP address */
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
Curl_addrinfo *addr;
|
2007-09-28 14:47:59 -04:00
|
|
|
int respwait;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
/* Check what IP specifics the app has requested and if we can provide it.
|
|
|
|
* If not, bail out. */
|
2010-11-11 08:51:39 -05:00
|
|
|
if(!Curl_ipvalid(conn))
|
2004-04-26 10:18:00 -04:00
|
|
|
return CURLRESOLV_ERROR;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2007-09-28 14:47:59 -04:00
|
|
|
/* If Curl_getaddrinfo() returns NULL, 'respwait' might be set to a
|
|
|
|
non-zero value indicating that we need to wait for the response to the
|
|
|
|
resolve call */
|
2009-09-01 10:27:01 -04:00
|
|
|
addr = Curl_getaddrinfo(conn,
|
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
(data->set.str[STRING_DEVICE]
|
|
|
|
&& !strcmp(data->set.str[STRING_DEVICE],
|
|
|
|
"LocalHost"))?"localhost":
|
|
|
|
#endif
|
|
|
|
hostname, port, &respwait);
|
2004-06-10 07:56:02 -04:00
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!addr) {
|
2007-09-28 14:47:59 -04:00
|
|
|
if(respwait) {
|
2004-06-10 07:56:02 -04:00
|
|
|
/* the response to our resolve call will come asynchronously at
|
2003-08-05 10:40:59 -04:00
|
|
|
a later time, good or bad */
|
2003-10-04 10:50:45 -04:00
|
|
|
/* First, check that we haven't received the info by now */
|
2003-11-14 06:56:15 -05:00
|
|
|
result = Curl_is_resolved(conn, &dns);
|
|
|
|
if(result) /* error detected */
|
2004-04-26 10:18:00 -04:00
|
|
|
return CURLRESOLV_ERROR;
|
2003-10-04 10:50:45 -04:00
|
|
|
if(dns)
|
2004-04-26 10:18:00 -04:00
|
|
|
rc = CURLRESOLV_RESOLVED; /* pointer provided */
|
2003-10-04 10:50:45 -04:00
|
|
|
else
|
2004-04-26 10:18:00 -04:00
|
|
|
rc = CURLRESOLV_PENDING; /* no info yet */
|
2003-10-04 10:50:45 -04:00
|
|
|
}
|
2002-11-05 05:51:41 -05:00
|
|
|
}
|
2004-01-14 04:05:54 -05:00
|
|
|
else {
|
2003-10-12 09:57:41 -04:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
|
2003-08-05 10:40:59 -04:00
|
|
|
/* we got a response, store it in the cache */
|
2004-04-26 03:20:11 -04:00
|
|
|
dns = Curl_cache_addr(data, addr, hostname, port);
|
2004-06-10 07:56:02 -04:00
|
|
|
|
2003-10-12 09:57:41 -04:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
|
2003-10-24 08:57:23 -04:00
|
|
|
|
2004-01-14 04:05:54 -05:00
|
|
|
if(!dns)
|
2003-10-24 08:57:23 -04:00
|
|
|
/* returned failure, bail out nicely */
|
|
|
|
Curl_freeaddrinfo(addr);
|
2003-12-03 02:55:51 -05:00
|
|
|
else
|
2004-04-26 10:18:00 -04:00
|
|
|
rc = CURLRESOLV_RESOLVED;
|
2003-10-12 09:57:41 -04:00
|
|
|
}
|
2002-01-17 02:38:25 -05:00
|
|
|
}
|
2002-01-07 23:26:47 -05:00
|
|
|
|
2003-08-05 10:40:59 -04:00
|
|
|
*entry = dns;
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2003-08-05 10:40:59 -04:00
|
|
|
return rc;
|
2002-01-03 05:22:59 -05:00
|
|
|
}
|
|
|
|
|
2009-09-01 10:27:01 -04:00
|
|
|
#ifdef USE_ALARM_TIMEOUT
|
2008-09-29 17:02:22 -04:00
|
|
|
/*
|
|
|
|
* This signal handler jumps back into the main libcurl code and continues
|
|
|
|
* execution. This effectively causes the remainder of the application to run
|
|
|
|
* within a signal handler which is nonportable and could lead to problems.
|
|
|
|
*/
|
|
|
|
static
|
|
|
|
RETSIGTYPE alarmfunc(int sig)
|
|
|
|
{
|
|
|
|
/* this is for "-ansi -Wall -pedantic" to stop complaining! (rabe) */
|
|
|
|
(void)sig;
|
|
|
|
siglongjmp(curl_jmpenv, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* USE_ALARM_TIMEOUT */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_resolv_timeout() is the same as Curl_resolv() but specifies a
|
|
|
|
* timeout. This function might return immediately if we're using asynch
|
|
|
|
* resolves. See the return codes.
|
|
|
|
*
|
|
|
|
* The cache entry we return will get its 'inuse' counter increased when this
|
|
|
|
* function is used. You MUST call Curl_resolv_unlock() later (when you're
|
|
|
|
* done using this struct) to decrease the counter again.
|
|
|
|
*
|
|
|
|
* If built with a synchronous resolver and use of signals is not
|
|
|
|
* disabled by the application, then a nonzero timeout will cause a
|
|
|
|
* timeout after the specified number of milliseconds. Otherwise, timeout
|
|
|
|
* is ignored.
|
|
|
|
*
|
|
|
|
* Return codes:
|
|
|
|
*
|
|
|
|
* CURLRESOLV_TIMEDOUT(-2) = warning, time too short or previous alarm expired
|
|
|
|
* CURLRESOLV_ERROR (-1) = error, no pointer
|
|
|
|
* CURLRESOLV_RESOLVED (0) = OK, pointer provided
|
|
|
|
* CURLRESOLV_PENDING (1) = waiting for response, no pointer
|
|
|
|
*/
|
|
|
|
|
|
|
|
int Curl_resolv_timeout(struct connectdata *conn,
|
|
|
|
const char *hostname,
|
|
|
|
int port,
|
|
|
|
struct Curl_dns_entry **entry,
|
2008-10-02 18:58:09 -04:00
|
|
|
long timeoutms)
|
2008-09-29 17:02:22 -04:00
|
|
|
{
|
2009-09-01 10:27:01 -04:00
|
|
|
#ifdef USE_ALARM_TIMEOUT
|
2008-09-29 17:02:22 -04:00
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction keep_sigact; /* store the old struct here */
|
2010-04-13 10:34:13 -04:00
|
|
|
volatile bool keep_copysig = FALSE; /* wether old sigact has been saved */
|
2008-09-29 17:02:22 -04:00
|
|
|
struct sigaction sigact;
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SIGNAL
|
|
|
|
void (*keep_sigact)(int); /* store the old handler here */
|
|
|
|
#endif /* HAVE_SIGNAL */
|
|
|
|
#endif /* HAVE_SIGACTION */
|
2008-10-02 18:58:09 -04:00
|
|
|
volatile long timeout;
|
2010-04-13 10:34:13 -04:00
|
|
|
volatile unsigned int prev_alarm = 0;
|
2008-09-29 19:45:43 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2008-09-29 17:02:22 -04:00
|
|
|
#endif /* USE_ALARM_TIMEOUT */
|
2008-10-01 13:34:24 -04:00
|
|
|
int rc;
|
2008-09-29 17:02:22 -04:00
|
|
|
|
|
|
|
*entry = NULL;
|
|
|
|
|
2009-09-01 10:27:01 -04:00
|
|
|
#ifdef USE_ALARM_TIMEOUT
|
2008-09-29 17:02:22 -04:00
|
|
|
if (data->set.no_signal)
|
|
|
|
/* Ignore the timeout when signals are disabled */
|
|
|
|
timeout = 0;
|
2008-10-02 18:58:09 -04:00
|
|
|
else
|
|
|
|
timeout = timeoutms;
|
2008-09-29 17:02:22 -04:00
|
|
|
|
2010-04-04 17:35:21 -04:00
|
|
|
if(!timeout)
|
|
|
|
/* USE_ALARM_TIMEOUT defined, but no timeout actually requested */
|
|
|
|
return Curl_resolv(conn, hostname, port, entry);
|
|
|
|
|
|
|
|
if(timeout < 1000)
|
2008-09-29 17:02:22 -04:00
|
|
|
/* The alarm() function only provides integer second resolution, so if
|
|
|
|
we want to wait less than one second we must bail out already now. */
|
|
|
|
return CURLRESOLV_TIMEDOUT;
|
|
|
|
|
2010-04-04 17:35:21 -04:00
|
|
|
/*************************************************************
|
|
|
|
* Set signal handler to catch SIGALRM
|
|
|
|
* Store the old value to be able to set it back later!
|
|
|
|
*************************************************************/
|
2008-09-29 17:02:22 -04:00
|
|
|
#ifdef HAVE_SIGACTION
|
2010-04-04 17:35:21 -04:00
|
|
|
sigaction(SIGALRM, NULL, &sigact);
|
|
|
|
keep_sigact = sigact;
|
|
|
|
keep_copysig = TRUE; /* yes, we have a copy */
|
|
|
|
sigact.sa_handler = alarmfunc;
|
2008-09-29 17:02:22 -04:00
|
|
|
#ifdef SA_RESTART
|
2010-04-04 17:35:21 -04:00
|
|
|
/* HPUX doesn't have SA_RESTART but defaults to that behaviour! */
|
|
|
|
sigact.sa_flags &= ~SA_RESTART;
|
2008-09-29 17:02:22 -04:00
|
|
|
#endif
|
2010-04-04 17:35:21 -04:00
|
|
|
/* now set the new struct */
|
|
|
|
sigaction(SIGALRM, &sigact, NULL);
|
2008-09-29 17:02:22 -04:00
|
|
|
#else /* HAVE_SIGACTION */
|
2010-04-04 17:35:21 -04:00
|
|
|
/* no sigaction(), revert to the much lamer signal() */
|
2008-09-29 17:02:22 -04:00
|
|
|
#ifdef HAVE_SIGNAL
|
2010-04-04 17:35:21 -04:00
|
|
|
keep_sigact = signal(SIGALRM, alarmfunc);
|
2008-09-29 17:02:22 -04:00
|
|
|
#endif
|
|
|
|
#endif /* HAVE_SIGACTION */
|
|
|
|
|
2010-04-04 17:35:21 -04:00
|
|
|
/* alarm() makes a signal get sent when the timeout fires off, and that
|
|
|
|
will abort system calls */
|
|
|
|
prev_alarm = alarm((unsigned int) (timeout/1000L));
|
|
|
|
|
|
|
|
/* This allows us to time-out from the name resolver, as the timeout
|
|
|
|
will generate a signal and we will siglongjmp() from that here.
|
|
|
|
This technique has problems (see alarmfunc).
|
|
|
|
This should be the last thing we do before calling Curl_resolv(),
|
|
|
|
as otherwise we'd have to worry about variables that get modified
|
|
|
|
before we invoke Curl_resolv() (and thus use "volatile"). */
|
|
|
|
if(sigsetjmp(curl_jmpenv, 1)) {
|
|
|
|
/* this is coming from a siglongjmp() after an alarm signal */
|
|
|
|
failf(data, "name lookup timed out");
|
|
|
|
rc = CURLRESOLV_ERROR;
|
|
|
|
goto clean_up;
|
2008-09-29 17:02:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#ifndef CURLRES_ASYNCH
|
2008-10-02 22:25:52 -04:00
|
|
|
if(timeoutms)
|
2008-09-29 19:45:43 -04:00
|
|
|
infof(conn->data, "timeout on name lookup is not supported\n");
|
|
|
|
#else
|
2008-10-02 20:35:22 -04:00
|
|
|
(void)timeoutms; /* timeoutms not used with an async resolver */
|
2008-09-29 17:02:22 -04:00
|
|
|
#endif
|
|
|
|
#endif /* USE_ALARM_TIMEOUT */
|
|
|
|
|
|
|
|
/* Perform the actual name resolution. This might be interrupted by an
|
|
|
|
* alarm if it takes too long.
|
|
|
|
*/
|
|
|
|
rc = Curl_resolv(conn, hostname, port, entry);
|
|
|
|
|
2010-03-24 12:00:20 -04:00
|
|
|
#ifdef USE_ALARM_TIMEOUT
|
2010-03-22 16:57:48 -04:00
|
|
|
clean_up:
|
|
|
|
|
2010-04-04 17:35:21 -04:00
|
|
|
if(!prev_alarm)
|
|
|
|
/* deactivate a possibly active alarm before uninstalling the handler */
|
|
|
|
alarm(0);
|
2008-09-29 17:02:22 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_SIGACTION
|
2010-04-04 17:35:21 -04:00
|
|
|
if(keep_copysig) {
|
|
|
|
/* we got a struct as it looked before, now put that one back nice
|
|
|
|
and clean */
|
|
|
|
sigaction(SIGALRM, &keep_sigact, NULL); /* put it back */
|
|
|
|
}
|
2008-09-29 17:02:22 -04:00
|
|
|
#else
|
|
|
|
#ifdef HAVE_SIGNAL
|
2010-04-04 17:35:21 -04:00
|
|
|
/* restore the previous SIGALRM handler */
|
|
|
|
signal(SIGALRM, keep_sigact);
|
2008-09-29 17:02:22 -04:00
|
|
|
#endif
|
|
|
|
#endif /* HAVE_SIGACTION */
|
|
|
|
|
2010-04-04 17:35:21 -04:00
|
|
|
/* switch back the alarm() to either zero or to what it was before minus
|
|
|
|
the time we spent until now! */
|
|
|
|
if(prev_alarm) {
|
|
|
|
/* there was an alarm() set before us, now put it back */
|
|
|
|
unsigned long elapsed_ms = Curl_tvdiff(Curl_tvnow(), conn->created);
|
|
|
|
|
|
|
|
/* the alarm period is counted in even number of seconds */
|
|
|
|
unsigned long alarm_set = prev_alarm - elapsed_ms/1000;
|
|
|
|
|
|
|
|
if(!alarm_set ||
|
|
|
|
((alarm_set >= 0x80000000) && (prev_alarm < 0x80000000)) ) {
|
|
|
|
/* if the alarm time-left reached zero or turned "negative" (counted
|
|
|
|
with unsigned values), we should fire off a SIGALRM here, but we
|
|
|
|
won't, and zero would be to switch it off so we never set it to
|
|
|
|
less than 1! */
|
|
|
|
alarm(1);
|
|
|
|
rc = CURLRESOLV_TIMEDOUT;
|
|
|
|
failf(data, "Previous alarm fired off!");
|
2008-09-29 17:02:22 -04:00
|
|
|
}
|
2010-04-04 17:35:21 -04:00
|
|
|
else
|
|
|
|
alarm((unsigned int)alarm_set);
|
2008-09-29 17:02:22 -04:00
|
|
|
}
|
|
|
|
#endif /* USE_ALARM_TIMEOUT */
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* Curl_resolv_unlock() unlocks the given cached DNS entry. When this has been
|
|
|
|
* made, the struct may be destroyed due to pruning. It is important that only
|
|
|
|
* one unlock is made for each Curl_resolv() call.
|
|
|
|
*/
|
2003-02-04 18:48:46 -05:00
|
|
|
void Curl_resolv_unlock(struct SessionHandle *data, struct Curl_dns_entry *dns)
|
|
|
|
{
|
2007-02-21 14:03:20 -05:00
|
|
|
DEBUGASSERT(dns && (dns->inuse>0));
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2003-02-04 18:48:46 -05:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
|
2003-07-23 08:55:24 -04:00
|
|
|
|
2003-02-04 18:48:46 -05:00
|
|
|
dns->inuse--;
|
2009-11-11 04:31:37 -05:00
|
|
|
/* only free if nobody is using AND it is not in hostcache (timestamp ==
|
|
|
|
0) */
|
|
|
|
if (dns->inuse == 0 && dns->timestamp == 0) {
|
|
|
|
Curl_freeaddrinfo(dns->addr);
|
|
|
|
free(dns);
|
|
|
|
}
|
2003-07-23 08:55:24 -04:00
|
|
|
|
2003-02-04 18:48:46 -05:00
|
|
|
if(data->share)
|
|
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
|
|
|
|
}
|
|
|
|
|
2002-11-26 04:41:54 -05:00
|
|
|
/*
|
2004-03-30 08:02:07 -05:00
|
|
|
* File-internal: free a cache dns entry.
|
2002-11-26 04:41:54 -05:00
|
|
|
*/
|
2004-03-30 08:02:07 -05:00
|
|
|
static void freednsentry(void *freethis)
|
2002-11-26 04:41:54 -05:00
|
|
|
{
|
|
|
|
struct Curl_dns_entry *p = (struct Curl_dns_entry *) freethis;
|
|
|
|
|
2009-11-11 04:31:37 -05:00
|
|
|
/* mark the entry as not in hostcache */
|
|
|
|
p->timestamp = 0;
|
|
|
|
if (p->inuse == 0) {
|
2008-10-30 09:45:25 -04:00
|
|
|
Curl_freeaddrinfo(p->addr);
|
|
|
|
free(p);
|
|
|
|
}
|
2001-10-04 09:36:11 -04:00
|
|
|
}
|
|
|
|
|
2004-03-30 08:02:07 -05:00
|
|
|
/*
|
|
|
|
* Curl_mk_dnscache() creates a new DNS cache and returns the handle for it.
|
|
|
|
*/
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_hash *Curl_mk_dnscache(void)
|
2004-03-30 08:02:07 -05:00
|
|
|
{
|
2007-06-26 17:09:28 -04:00
|
|
|
return Curl_hash_alloc(7, Curl_hash_str, Curl_str_key_compare, freednsentry);
|
2004-03-30 08:02:07 -05:00
|
|
|
}
|
|
|
|
|
2001-10-04 09:25:12 -04:00
|
|
|
|