2010-01-25 18:50:13 -05:00
|
|
|
#ifndef HEADER_CURL_HOSTIP_H
|
|
|
|
#define HEADER_CURL_HOSTIP_H
|
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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2020-01-26 11:51:01 -05:00
|
|
|
* Copyright (C) 1998 - 2020, 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
|
2020-11-04 08:02:01 -05:00
|
|
|
* are also available at https://curl.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
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "hash.h"
|
2008-10-30 09:45:25 -04:00
|
|
|
#include "curl_addrinfo.h"
|
2019-07-31 09:30:31 -04:00
|
|
|
#include "timeval.h" /* for timediff_t */
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "asyn.h"
|
2002-01-07 15:52:32 -05:00
|
|
|
|
2008-09-18 12:21:09 -04:00
|
|
|
#ifdef HAVE_SETJMP_H
|
|
|
|
#include <setjmp.h>
|
|
|
|
#endif
|
|
|
|
|
2007-06-30 16:08:13 -04:00
|
|
|
#ifdef NETWARE
|
2006-08-08 18:37:53 -04:00
|
|
|
#undef in_addr_t
|
2007-06-30 16:08:13 -04:00
|
|
|
#define in_addr_t unsigned long
|
2006-08-08 18:37:53 -04:00
|
|
|
#endif
|
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
/* Allocate enough memory to hold the full name information structs and
|
|
|
|
* everything. OSF1 is known to require at least 8872 bytes. The buffer
|
|
|
|
* required for storing all possible aliases and IP numbers is according to
|
|
|
|
* Stevens' Unix Network Programming 2nd edition, p. 304: 8192 bytes!
|
|
|
|
*/
|
|
|
|
#define CURL_HOSTENT_SIZE 9000
|
|
|
|
|
|
|
|
#define CURL_TIMEOUT_RESOLVE 300 /* when using asynch methods, we allow this
|
|
|
|
many seconds for a name resolve */
|
|
|
|
|
|
|
|
#define CURL_ASYNC_SUCCESS CURLE_OK
|
|
|
|
|
2001-02-05 18:04:44 -05:00
|
|
|
struct addrinfo;
|
2001-09-28 03:05:26 -04:00
|
|
|
struct hostent;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy;
|
2003-08-05 10:40:59 -04:00
|
|
|
struct connectdata;
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2008-01-15 17:15:55 -05:00
|
|
|
/*
|
|
|
|
* 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!
|
|
|
|
*
|
2020-09-02 06:07:44 -04:00
|
|
|
* Returns a struct Curl_hash pointer on success, NULL on failure.
|
2008-01-15 17:15:55 -05:00
|
|
|
*/
|
2020-09-02 06:07:44 -04:00
|
|
|
struct Curl_hash *Curl_global_host_cache_init(void);
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2002-11-05 05:51:41 -05:00
|
|
|
struct Curl_dns_entry {
|
2020-05-13 18:05:04 -04:00
|
|
|
struct Curl_addrinfo *addr;
|
2015-03-17 04:09:43 -04:00
|
|
|
/* timestamp == 0 -- CURLOPT_RESOLVE entry, doesn't timeout */
|
2002-11-05 05:51:41 -05:00
|
|
|
time_t timestamp;
|
2015-03-17 04:09:43 -04:00
|
|
|
/* use-counter, use Curl_resolv_unlock to release reference */
|
|
|
|
long inuse;
|
2002-11-05 05:51:41 -05:00
|
|
|
};
|
|
|
|
|
2002-11-11 17:36:00 -05:00
|
|
|
/*
|
|
|
|
* Curl_resolv() returns an entry with the info for the specified host
|
|
|
|
* and port.
|
|
|
|
*
|
|
|
|
* The returned data *MUST* be "unlocked" with Curl_resolv_unlock() after
|
|
|
|
* use, or we'll leak memory!
|
|
|
|
*/
|
2004-04-26 10:18:00 -04:00
|
|
|
/* return codes */
|
2020-02-14 10:16:54 -05:00
|
|
|
enum resolve_t {
|
|
|
|
CURLRESOLV_TIMEDOUT = -2,
|
|
|
|
CURLRESOLV_ERROR = -1,
|
|
|
|
CURLRESOLV_RESOLVED = 0,
|
|
|
|
CURLRESOLV_PENDING = 1
|
|
|
|
};
|
|
|
|
enum resolve_t Curl_resolv(struct connectdata *conn,
|
|
|
|
const char *hostname,
|
|
|
|
int port,
|
|
|
|
bool allowDOH,
|
|
|
|
struct Curl_dns_entry **dnsentry);
|
|
|
|
enum resolve_t Curl_resolv_timeout(struct connectdata *conn,
|
|
|
|
const char *hostname, int port,
|
|
|
|
struct Curl_dns_entry **dnsentry,
|
|
|
|
timediff_t timeoutms);
|
2002-11-05 05:51:41 -05:00
|
|
|
|
2011-03-23 06:10:55 -04:00
|
|
|
#ifdef CURLRES_IPV6
|
|
|
|
/*
|
2014-12-27 06:09:01 -05:00
|
|
|
* Curl_ipv6works() returns TRUE if IPv6 seems to work.
|
2011-03-23 06:10:55 -04:00
|
|
|
*/
|
2020-01-26 11:51:01 -05:00
|
|
|
bool Curl_ipv6works(struct connectdata *conn);
|
2011-03-23 06:10:55 -04:00
|
|
|
#else
|
2020-01-26 11:51:01 -05:00
|
|
|
#define Curl_ipv6works(x) FALSE
|
2011-03-23 06:10:55 -04:00
|
|
|
#endif
|
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
/*
|
|
|
|
* Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
|
|
|
|
* been set and returns TRUE if they are OK.
|
|
|
|
*/
|
2010-11-11 08:51:39 -05:00
|
|
|
bool Curl_ipvalid(struct connectdata *conn);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2011-01-29 19:00:52 -05:00
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
/*
|
|
|
|
* Curl_getaddrinfo() is the generic low-level name resolve API within this
|
|
|
|
* source file. There are several versions of this function - for different
|
|
|
|
* name resolve layers (selected at build-time). They all take this same set
|
|
|
|
* of arguments
|
|
|
|
*/
|
2020-05-13 18:05:04 -04:00
|
|
|
struct Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn,
|
|
|
|
const char *hostname,
|
|
|
|
int port,
|
|
|
|
int *waitp);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2002-11-11 17:36:00 -05:00
|
|
|
/* unlock a previously resolved dns entry */
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_resolv_unlock(struct Curl_easy *data,
|
2006-04-10 11:00:53 -04:00
|
|
|
struct Curl_dns_entry *dns);
|
2002-11-11 17:36:00 -05:00
|
|
|
|
2015-05-12 03:46:53 -04:00
|
|
|
/* init a new dns cache and return success */
|
2020-09-02 06:07:44 -04:00
|
|
|
int Curl_mk_dnscache(struct Curl_hash *hash);
|
2001-10-04 09:25:12 -04:00
|
|
|
|
2003-12-15 12:33:49 -05:00
|
|
|
/* prune old entries from the DNS cache */
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_hostcache_prune(struct Curl_easy *data);
|
2003-12-15 12:33:49 -05:00
|
|
|
|
2017-03-26 11:02:22 -04:00
|
|
|
/* Return # of addresses in a Curl_addrinfo struct */
|
2020-05-13 18:05:04 -04:00
|
|
|
int Curl_num_addresses(const struct Curl_addrinfo *addr);
|
2004-06-10 07:06:21 -04:00
|
|
|
|
2008-10-30 15:02:23 -04:00
|
|
|
#if defined(CURLDEBUG) && defined(HAVE_GETNAMEINFO)
|
2006-07-03 14:38:03 -04:00
|
|
|
int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa,
|
|
|
|
GETNAMEINFO_TYPE_ARG2 salen,
|
|
|
|
char *host, GETNAMEINFO_TYPE_ARG46 hostlen,
|
|
|
|
char *serv, GETNAMEINFO_TYPE_ARG46 servlen,
|
|
|
|
GETNAMEINFO_TYPE_ARG7 flags,
|
2001-10-04 09:25:12 -04:00
|
|
|
int line, const char *source);
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-01-25 18:50:13 -05:00
|
|
|
/* IPv4 threadsafe resolve function used for synch and asynch builds */
|
2020-05-13 18:05:04 -04:00
|
|
|
struct Curl_addrinfo *Curl_ipv4_resolve_r(const char *hostname, int port);
|
2010-01-25 18:50:13 -05:00
|
|
|
|
2018-09-06 03:16:02 -04:00
|
|
|
CURLcode Curl_once_resolved(struct connectdata *conn, bool *protocol_connect);
|
2011-04-25 22:01:40 -04:00
|
|
|
|
2010-01-22 01:36:52 -05:00
|
|
|
/*
|
|
|
|
* Curl_addrinfo_callback() is used when we build with any asynch specialty.
|
|
|
|
* Handles end of async request processing. Inserts ai into hostcache when
|
|
|
|
* status is CURL_ASYNC_SUCCESS. Twiddles fields in conn to indicate async
|
2011-04-25 22:01:40 -04:00
|
|
|
* request completed whether successful or failed.
|
2010-01-22 01:36:52 -05:00
|
|
|
*/
|
|
|
|
CURLcode Curl_addrinfo_callback(struct connectdata *conn,
|
|
|
|
int status,
|
2020-05-13 18:05:04 -04:00
|
|
|
struct Curl_addrinfo *ai);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
/*
|
2004-06-10 07:55:37 -04:00
|
|
|
* Curl_printable_address() returns a printable version of the 1st address
|
|
|
|
* given in the 'ip' argument. The result will be stored in the buf that is
|
|
|
|
* bufsize bytes big.
|
2004-04-26 03:20:11 -04:00
|
|
|
*/
|
2020-05-18 12:41:20 -04:00
|
|
|
void Curl_printable_address(const struct Curl_addrinfo *ip,
|
|
|
|
char *buf, size_t bufsize);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2014-08-20 17:31:53 -04:00
|
|
|
/*
|
|
|
|
* Curl_fetch_addr() fetches a 'Curl_dns_entry' already in the DNS cache.
|
|
|
|
*
|
|
|
|
* Returns the Curl_dns_entry entry pointer or NULL if not in the cache.
|
2015-03-17 04:26:36 -04:00
|
|
|
*
|
|
|
|
* The returned data *MUST* be "unlocked" with Curl_resolv_unlock() after
|
|
|
|
* use, or we'll leak memory!
|
2014-08-20 17:31:53 -04:00
|
|
|
*/
|
|
|
|
struct Curl_dns_entry *
|
|
|
|
Curl_fetch_addr(struct connectdata *conn,
|
|
|
|
const char *hostname,
|
2015-01-06 17:01:43 -05:00
|
|
|
int port);
|
2018-03-17 15:10:04 -04:00
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
/*
|
|
|
|
* Curl_cache_addr() stores a 'Curl_addrinfo' struct in the DNS cache.
|
|
|
|
*
|
|
|
|
* Returns the Curl_dns_entry entry pointer or NULL if the storage failed.
|
|
|
|
*/
|
|
|
|
struct Curl_dns_entry *
|
2020-05-13 18:05:04 -04:00
|
|
|
Curl_cache_addr(struct Curl_easy *data, struct Curl_addrinfo *addr,
|
2006-07-21 01:51:12 -04:00
|
|
|
const char *hostname, int port);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2003-05-13 08:12:17 -04:00
|
|
|
#ifndef INADDR_NONE
|
|
|
|
#define CURL_INADDR_NONE (in_addr_t) ~0
|
|
|
|
#else
|
|
|
|
#define CURL_INADDR_NONE INADDR_NONE
|
|
|
|
#endif
|
|
|
|
|
2008-09-18 12:21:09 -04:00
|
|
|
#ifdef HAVE_SIGSETJMP
|
2013-01-03 20:50:28 -05:00
|
|
|
/* Forward-declaration of variable defined in hostip.c. Beware this
|
2008-09-18 12:21:09 -04:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
extern sigjmp_buf curl_jmpenv;
|
|
|
|
#endif
|
2003-05-13 08:12:17 -04:00
|
|
|
|
2011-04-12 11:34:28 -04:00
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set DNS servers to use.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_servers(struct Curl_easy *data, char *servers);
|
2011-04-12 11:34:28 -04:00
|
|
|
|
2013-09-07 12:45:50 -04:00
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set
|
|
|
|
* outgoing interface to use for DNS requests
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_interface(struct Curl_easy *data,
|
2013-09-17 15:59:43 -04:00
|
|
|
const char *interf);
|
2013-09-07 12:45:50 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set
|
|
|
|
* local IPv4 address to use as source address for DNS requests
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_local_ip4(struct Curl_easy *data,
|
2013-09-07 12:45:50 -04:00
|
|
|
const char *local_ip4);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set
|
|
|
|
* local IPv6 address to use as source address for DNS requests
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_local_ip6(struct Curl_easy *data,
|
2013-09-07 12:45:50 -04:00
|
|
|
const char *local_ip6);
|
|
|
|
|
2012-11-18 10:17:37 -05:00
|
|
|
/*
|
|
|
|
* Clean off entries from the cache
|
|
|
|
*/
|
2020-09-02 06:07:44 -04:00
|
|
|
void Curl_hostcache_clean(struct Curl_easy *data, struct Curl_hash *hash);
|
2012-11-18 10:17:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Populate the cache with specified entries from CURLOPT_RESOLVE.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_loadhostpairs(struct Curl_easy *data);
|
2011-12-31 04:28:10 -05:00
|
|
|
|
2018-09-06 03:16:02 -04:00
|
|
|
CURLcode Curl_resolv_check(struct connectdata *conn,
|
|
|
|
struct Curl_dns_entry **dns);
|
|
|
|
int Curl_resolv_getsock(struct connectdata *conn,
|
2019-07-30 05:02:03 -04:00
|
|
|
curl_socket_t *socks);
|
2018-09-06 03:16:02 -04:00
|
|
|
|
2010-01-25 18:50:13 -05:00
|
|
|
#endif /* HEADER_CURL_HOSTIP_H */
|