2010-01-26 07:50:13 +08:00
|
|
|
#ifndef HEADER_CURL_HOSTIP_H
|
|
|
|
#define HEADER_CURL_HOSTIP_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-06-10 19:56:02 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08: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 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-06-10 19:56:02 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08: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 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-11-12 06:36:00 +08:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "hash.h"
|
2008-10-30 21:45:25 +08:00
|
|
|
#include "curl_addrinfo.h"
|
2019-07-31 21:30:31 +08:00
|
|
|
#include "timeval.h" /* for timediff_t */
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "asyn.h"
|
2002-01-08 04:52:32 +08:00
|
|
|
|
2008-09-19 00:21:09 +08:00
|
|
|
#include <setjmp.h>
|
|
|
|
|
2024-04-04 21:23:35 +08:00
|
|
|
#ifdef USE_HTTPSRR
|
|
|
|
# include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
2004-06-24 15:43:48 +08: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-06 07:04:44 +08:00
|
|
|
struct addrinfo;
|
2001-09-28 15:05:26 +08:00
|
|
|
struct hostent;
|
2016-06-21 21:47:12 +08:00
|
|
|
struct Curl_easy;
|
2003-08-05 22:40:59 +08:00
|
|
|
struct connectdata;
|
2001-02-06 07:04:44 +08:00
|
|
|
|
2008-01-16 06:15:55 +08: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 18:07:44 +08:00
|
|
|
* Returns a struct Curl_hash pointer on success, NULL on failure.
|
2008-01-16 06:15:55 +08:00
|
|
|
*/
|
2020-09-02 18:07:44 +08:00
|
|
|
struct Curl_hash *Curl_global_host_cache_init(void);
|
2002-01-03 18:22:59 +08:00
|
|
|
|
2024-04-04 21:23:35 +08:00
|
|
|
#ifdef USE_HTTPSRR
|
|
|
|
|
|
|
|
#define CURL_MAXLEN_host_name 253
|
|
|
|
|
|
|
|
struct Curl_https_rrinfo {
|
|
|
|
size_t len; /* raw encoded length */
|
|
|
|
unsigned char *val; /* raw encoded octets */
|
|
|
|
/*
|
|
|
|
* fields from HTTPS RR, with the mandatory fields
|
|
|
|
* first (priority, target), then the others in the
|
|
|
|
* order of the keytag numbers defined at
|
|
|
|
* https://datatracker.ietf.org/doc/html/rfc9460#section-14.3.2
|
|
|
|
*/
|
|
|
|
uint16_t priority;
|
|
|
|
char *target;
|
|
|
|
char *alpns; /* keytag = 1 */
|
|
|
|
bool no_def_alpn; /* keytag = 2 */
|
|
|
|
/*
|
2024-07-01 22:47:21 +08:00
|
|
|
* we do not support ports (keytag = 3) as we do not support
|
2024-04-04 21:23:35 +08:00
|
|
|
* port-switching yet
|
|
|
|
*/
|
|
|
|
unsigned char *ipv4hints; /* keytag = 4 */
|
|
|
|
size_t ipv4hints_len;
|
|
|
|
unsigned char *echconfiglist; /* keytag = 5 */
|
|
|
|
size_t echconfiglist_len;
|
|
|
|
unsigned char *ipv6hints; /* keytag = 6 */
|
|
|
|
size_t ipv6hints_len;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2002-11-05 18:51:41 +08:00
|
|
|
struct Curl_dns_entry {
|
2020-05-14 06:05:04 +08:00
|
|
|
struct Curl_addrinfo *addr;
|
2024-04-04 21:23:35 +08:00
|
|
|
#ifdef USE_HTTPSRR
|
|
|
|
struct Curl_https_rrinfo *hinfo;
|
|
|
|
#endif
|
2024-07-01 22:47:21 +08:00
|
|
|
/* timestamp == 0 -- permanent CURLOPT_RESOLVE entry (does not time out) */
|
2002-11-05 18:51:41 +08:00
|
|
|
time_t timestamp;
|
2015-03-17 16:09:43 +08:00
|
|
|
/* use-counter, use Curl_resolv_unlock to release reference */
|
|
|
|
long inuse;
|
hostip: show the list of IPs when resolving is done
Getting 'curl.se' today then gets this verbose output which might help
debugging connectivity related matters.
* Host curl.se:80 was resolved.
* IPv6: 2a04:4e42::347, 2a04:4e42:200::347, 2a04:4e42:400::347,
2a04:4e42:600::347, 2a04:4e42:800::347, 2a04:4e42:a00::347,
2a04:4e42:c00::347, 2a04:4e42:e00::347
* IPv4: 151.101.193.91, 151.101.1.91, 151.101.65.91, 151.101.129.91
Co-authored-by: Jay Satiro
Closes #12145
2023-10-17 23:01:52 +08:00
|
|
|
/* hostname port number that resolved to addr. */
|
|
|
|
int hostport;
|
|
|
|
/* hostname that resolved to addr. may be NULL (unix domain sockets). */
|
|
|
|
char hostname[1];
|
2002-11-05 18:51:41 +08:00
|
|
|
};
|
|
|
|
|
2021-05-30 05:57:58 +08:00
|
|
|
bool Curl_host_is_ipnum(const char *hostname);
|
|
|
|
|
2002-11-12 06:36:00 +08: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
|
2024-07-01 22:47:21 +08:00
|
|
|
* use, or we will leak memory!
|
2002-11-12 06:36:00 +08:00
|
|
|
*/
|
2004-04-26 22:18:00 +08:00
|
|
|
/* return codes */
|
2020-02-14 23:16:54 +08:00
|
|
|
enum resolve_t {
|
|
|
|
CURLRESOLV_TIMEDOUT = -2,
|
|
|
|
CURLRESOLV_ERROR = -1,
|
|
|
|
CURLRESOLV_RESOLVED = 0,
|
|
|
|
CURLRESOLV_PENDING = 1
|
|
|
|
};
|
2021-01-20 17:15:43 +08:00
|
|
|
enum resolve_t Curl_resolv(struct Curl_easy *data,
|
2020-02-14 23:16:54 +08:00
|
|
|
const char *hostname,
|
|
|
|
int port,
|
|
|
|
bool allowDOH,
|
|
|
|
struct Curl_dns_entry **dnsentry);
|
2021-01-20 17:15:43 +08:00
|
|
|
enum resolve_t Curl_resolv_timeout(struct Curl_easy *data,
|
2020-02-14 23:16:54 +08:00
|
|
|
const char *hostname, int port,
|
|
|
|
struct Curl_dns_entry **dnsentry,
|
|
|
|
timediff_t timeoutms);
|
2002-11-05 18:51:41 +08:00
|
|
|
|
2024-04-11 20:01:58 +08:00
|
|
|
#ifdef USE_IPV6
|
2011-03-23 18:10:55 +08:00
|
|
|
/*
|
2014-12-27 19:09:01 +08:00
|
|
|
* Curl_ipv6works() returns TRUE if IPv6 seems to work.
|
2011-03-23 18:10:55 +08:00
|
|
|
*/
|
2021-01-09 00:58:15 +08:00
|
|
|
bool Curl_ipv6works(struct Curl_easy *data);
|
2011-03-23 18:10:55 +08:00
|
|
|
#else
|
2020-01-27 00:51:01 +08:00
|
|
|
#define Curl_ipv6works(x) FALSE
|
2011-03-23 18:10:55 +08:00
|
|
|
#endif
|
|
|
|
|
2004-04-26 15:20:11 +08:00
|
|
|
/*
|
|
|
|
* Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
|
|
|
|
* been set and returns TRUE if they are OK.
|
|
|
|
*/
|
2021-01-09 00:58:15 +08:00
|
|
|
bool Curl_ipvalid(struct Curl_easy *data, struct connectdata *conn);
|
2004-04-26 15:20:11 +08:00
|
|
|
|
2011-01-30 08:00:52 +08:00
|
|
|
|
2004-04-26 15:20:11 +08: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
|
|
|
|
*/
|
2021-01-20 17:15:43 +08:00
|
|
|
struct Curl_addrinfo *Curl_getaddrinfo(struct Curl_easy *data,
|
2020-05-14 06:05:04 +08:00
|
|
|
const char *hostname,
|
|
|
|
int port,
|
|
|
|
int *waitp);
|
2004-04-26 15:20:11 +08:00
|
|
|
|
2006-04-10 23:00:53 +08:00
|
|
|
|
2002-11-12 06:36:00 +08:00
|
|
|
/* unlock a previously resolved dns entry */
|
2016-06-21 21:47:12 +08:00
|
|
|
void Curl_resolv_unlock(struct Curl_easy *data,
|
2006-04-10 23:00:53 +08:00
|
|
|
struct Curl_dns_entry *dns);
|
2002-11-12 06:36:00 +08:00
|
|
|
|
2021-12-10 19:54:17 +08:00
|
|
|
/* init a new dns cache */
|
2024-05-05 23:45:11 +08:00
|
|
|
void Curl_init_dnscache(struct Curl_hash *hash, size_t hashsize);
|
2001-10-04 21:25:12 +08:00
|
|
|
|
2003-12-16 01:33:49 +08:00
|
|
|
/* prune old entries from the DNS cache */
|
2016-06-21 21:47:12 +08:00
|
|
|
void Curl_hostcache_prune(struct Curl_easy *data);
|
2003-12-16 01:33:49 +08:00
|
|
|
|
2010-01-26 07:50:13 +08:00
|
|
|
/* IPv4 threadsafe resolve function used for synch and asynch builds */
|
2020-05-14 06:05:04 +08:00
|
|
|
struct Curl_addrinfo *Curl_ipv4_resolve_r(const char *hostname, int port);
|
2010-01-26 07:50:13 +08:00
|
|
|
|
2021-01-20 17:15:43 +08:00
|
|
|
CURLcode Curl_once_resolved(struct Curl_easy *data, bool *protocol_connect);
|
2011-04-26 10:01:40 +08:00
|
|
|
|
2010-01-22 14:36:52 +08: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-26 10:01:40 +08:00
|
|
|
* request completed whether successful or failed.
|
2010-01-22 14:36:52 +08:00
|
|
|
*/
|
2021-01-20 17:15:43 +08:00
|
|
|
CURLcode Curl_addrinfo_callback(struct Curl_easy *data,
|
2010-01-22 14:36:52 +08:00
|
|
|
int status,
|
2020-05-14 06:05:04 +08:00
|
|
|
struct Curl_addrinfo *ai);
|
2004-04-26 15:20:11 +08:00
|
|
|
|
|
|
|
/*
|
2004-06-10 19:55:37 +08: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 15:20:11 +08:00
|
|
|
*/
|
2020-05-19 00:41:20 +08:00
|
|
|
void Curl_printable_address(const struct Curl_addrinfo *ip,
|
|
|
|
char *buf, size_t bufsize);
|
2004-04-26 15:20:11 +08:00
|
|
|
|
2014-08-21 05:31:53 +08: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 16:26:36 +08:00
|
|
|
*
|
|
|
|
* The returned data *MUST* be "unlocked" with Curl_resolv_unlock() after
|
2024-07-01 22:47:21 +08:00
|
|
|
* use, or we will leak memory!
|
2014-08-21 05:31:53 +08:00
|
|
|
*/
|
|
|
|
struct Curl_dns_entry *
|
2021-01-25 06:41:58 +08:00
|
|
|
Curl_fetch_addr(struct Curl_easy *data,
|
2014-08-21 05:31:53 +08:00
|
|
|
const char *hostname,
|
2015-01-07 06:01:43 +08:00
|
|
|
int port);
|
2018-03-18 03:10:04 +08:00
|
|
|
|
2004-04-26 15:20:11 +08: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-14 06:05:04 +08:00
|
|
|
Curl_cache_addr(struct Curl_easy *data, struct Curl_addrinfo *addr,
|
2023-02-24 16:20:51 +08:00
|
|
|
const char *hostname, size_t hostlen, int port);
|
2004-04-26 15:20:11 +08:00
|
|
|
|
2003-05-13 20:12:17 +08:00
|
|
|
#ifndef INADDR_NONE
|
|
|
|
#define CURL_INADDR_NONE (in_addr_t) ~0
|
|
|
|
#else
|
|
|
|
#define CURL_INADDR_NONE INADDR_NONE
|
|
|
|
#endif
|
|
|
|
|
2011-04-12 23:34:28 +08:00
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set DNS servers to use.
|
|
|
|
*/
|
2016-06-21 21:47:12 +08:00
|
|
|
CURLcode Curl_set_dns_servers(struct Curl_easy *data, char *servers);
|
2011-04-12 23:34:28 +08:00
|
|
|
|
2013-09-08 00:45:50 +08:00
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set
|
|
|
|
* outgoing interface to use for DNS requests
|
|
|
|
*/
|
2016-06-21 21:47:12 +08:00
|
|
|
CURLcode Curl_set_dns_interface(struct Curl_easy *data,
|
2013-09-18 03:59:43 +08:00
|
|
|
const char *interf);
|
2013-09-08 00:45:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function provided by the resolver backend to set
|
|
|
|
* local IPv4 address to use as source address for DNS requests
|
|
|
|
*/
|
2016-06-21 21:47:12 +08:00
|
|
|
CURLcode Curl_set_dns_local_ip4(struct Curl_easy *data,
|
2013-09-08 00:45:50 +08: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 21:47:12 +08:00
|
|
|
CURLcode Curl_set_dns_local_ip6(struct Curl_easy *data,
|
2013-09-08 00:45:50 +08:00
|
|
|
const char *local_ip6);
|
|
|
|
|
2012-11-18 23:17:37 +08:00
|
|
|
/*
|
|
|
|
* Clean off entries from the cache
|
|
|
|
*/
|
2020-09-02 18:07:44 +08:00
|
|
|
void Curl_hostcache_clean(struct Curl_easy *data, struct Curl_hash *hash);
|
2012-11-18 23:17:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Populate the cache with specified entries from CURLOPT_RESOLVE.
|
|
|
|
*/
|
2016-06-21 21:47:12 +08:00
|
|
|
CURLcode Curl_loadhostpairs(struct Curl_easy *data);
|
2021-01-20 17:15:43 +08:00
|
|
|
CURLcode Curl_resolv_check(struct Curl_easy *data,
|
2018-09-06 15:16:02 +08:00
|
|
|
struct Curl_dns_entry **dns);
|
2021-01-20 17:15:43 +08:00
|
|
|
int Curl_resolv_getsock(struct Curl_easy *data,
|
2019-07-30 17:02:03 +08:00
|
|
|
curl_socket_t *socks);
|
2018-09-06 15:16:02 +08:00
|
|
|
|
2021-02-18 20:14:55 +08:00
|
|
|
CURLcode Curl_resolver_error(struct Curl_easy *data);
|
2010-01-26 07:50:13 +08:00
|
|
|
#endif /* HEADER_CURL_HOSTIP_H */
|