230 lines
7.6 KiB
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef HEADER_CURL_HOSTIP_H
#define HEADER_CURL_HOSTIP_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2023-07-02 19:51:09 +02:00
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
*
* 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
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
2022-11-16 20:14:03 +01:00
* SPDX-License-Identifier: curl
*
***************************************************************************/
2015-04-27 22:25:09 +02:00
#include "curl_setup.h"
#include "hash.h"
2015-04-27 22:25:09 +02:00
#include "curl_addrinfo.h"
2020-08-30 11:54:41 +02:00
#include "timeval.h" /* for timediff_t */
2015-04-27 22:25:09 +02:00
#include "asyn.h"
2015-04-27 22:25:09 +02:00
#include <setjmp.h>
/* 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
struct addrinfo;
struct hostent;
2016-09-11 17:22:32 +02:00
struct Curl_easy;
struct connectdata;
2015-04-27 22:25:09 +02: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!
*
2021-09-14 00:13:48 +02:00
* Returns a struct Curl_hash pointer on success, NULL on failure.
2015-04-27 22:25:09 +02:00
*/
2021-09-14 00:13:48 +02:00
struct Curl_hash *Curl_global_host_cache_init(void);
struct Curl_dns_entry {
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *addr;
2021-09-14 00:13:48 +02:00
/* timestamp == 0 -- permanent CURLOPT_RESOLVE entry (doesn't time out) */
time_t timestamp;
2015-11-17 17:22:37 +01:00
/* use-counter, use Curl_resolv_unlock to release reference */
long inuse;
2024-04-14 22:45:38 +02:00
/* hostname port number that resolved to addr. */
int hostport;
/* hostname that resolved to addr. may be NULL (unix domain sockets). */
char hostname[1];
};
2021-11-20 13:41:27 +01:00
bool Curl_host_is_ipnum(const char *hostname);
/*
* 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!
*/
/* return codes */
2020-08-30 11:54:41 +02:00
enum resolve_t {
CURLRESOLV_TIMEDOUT = -2,
CURLRESOLV_ERROR = -1,
CURLRESOLV_RESOLVED = 0,
CURLRESOLV_PENDING = 1
};
2021-09-14 00:13:48 +02:00
enum resolve_t Curl_resolv(struct Curl_easy *data,
2020-08-30 11:54:41 +02:00
const char *hostname,
int port,
bool allowDOH,
struct Curl_dns_entry **dnsentry);
2021-09-14 00:13:48 +02:00
enum resolve_t Curl_resolv_timeout(struct Curl_easy *data,
2020-08-30 11:54:41 +02:00
const char *hostname, int port,
struct Curl_dns_entry **dnsentry,
timediff_t timeoutms);
2015-04-27 22:25:09 +02:00
2021-11-20 13:41:27 +01:00
#ifdef ENABLE_IPV6
2015-04-27 22:25:09 +02:00
/*
2015-11-17 17:22:37 +01:00
* Curl_ipv6works() returns TRUE if IPv6 seems to work.
2015-04-27 22:25:09 +02:00
*/
2021-09-14 00:13:48 +02:00
bool Curl_ipv6works(struct Curl_easy *data);
2015-04-27 22:25:09 +02:00
#else
2020-08-30 11:54:41 +02:00
#define Curl_ipv6works(x) FALSE
2015-04-27 22:25:09 +02:00
#endif
/*
* Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
* been set and returns TRUE if they are OK.
*/
2021-09-14 00:13:48 +02:00
bool Curl_ipvalid(struct Curl_easy *data, struct connectdata *conn);
2015-04-27 22:25:09 +02: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-09-14 00:13:48 +02:00
struct Curl_addrinfo *Curl_getaddrinfo(struct Curl_easy *data,
2020-08-30 11:54:41 +02:00
const char *hostname,
int port,
int *waitp);
/* unlock a previously resolved dns entry */
2016-09-11 17:22:32 +02:00
void Curl_resolv_unlock(struct Curl_easy *data,
struct Curl_dns_entry *dns);
2022-03-29 21:10:50 +02:00
/* init a new dns cache */
2022-11-16 20:14:03 +01:00
void Curl_init_dnscache(struct Curl_hash *hash, int hashsize);
/* prune old entries from the DNS cache */
2016-09-11 17:22:32 +02:00
void Curl_hostcache_prune(struct Curl_easy *data);
2015-04-27 22:25:09 +02:00
/* IPv4 threadsafe resolve function used for synch and asynch builds */
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *Curl_ipv4_resolve_r(const char *hostname, int port);
2021-09-14 00:13:48 +02:00
CURLcode Curl_once_resolved(struct Curl_easy *data, bool *protocol_connect);
2015-04-27 22:25:09 +02: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
* request completed whether successful or failed.
*/
2021-09-14 00:13:48 +02:00
CURLcode Curl_addrinfo_callback(struct Curl_easy *data,
2015-04-27 22:25:09 +02:00
int status,
2020-08-30 11:54:41 +02:00
struct Curl_addrinfo *ai);
/*
* 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.
*/
2020-08-30 11:54:41 +02:00
void Curl_printable_address(const struct Curl_addrinfo *ip,
char *buf, size_t bufsize);
2015-04-27 22:25:09 +02: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-11-17 17:22:37 +01:00
*
* The returned data *MUST* be "unlocked" with Curl_resolv_unlock() after
* use, or we'll leak memory!
2015-04-27 22:25:09 +02:00
*/
struct Curl_dns_entry *
2021-09-14 00:13:48 +02:00
Curl_fetch_addr(struct Curl_easy *data,
2015-04-27 22:25:09 +02:00
const char *hostname,
2015-11-17 17:22:37 +01:00
int port);
2018-08-09 18:06:22 +02: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-08-30 11:54:41 +02:00
Curl_cache_addr(struct Curl_easy *data, struct Curl_addrinfo *addr,
2023-07-02 19:51:09 +02:00
const char *hostname, size_t hostlen, int port);
#ifndef INADDR_NONE
#define CURL_INADDR_NONE (in_addr_t) ~0
#else
#define CURL_INADDR_NONE INADDR_NONE
#endif
2015-04-27 22:25:09 +02:00
/*
* Function provided by the resolver backend to set DNS servers to use.
*/
2016-09-11 17:22:32 +02:00
CURLcode Curl_set_dns_servers(struct Curl_easy *data, char *servers);
2015-04-27 22:25:09 +02:00
/*
* Function provided by the resolver backend to set
* outgoing interface to use for DNS requests
*/
2016-09-11 17:22:32 +02:00
CURLcode Curl_set_dns_interface(struct Curl_easy *data,
2015-04-27 22:25:09 +02:00
const char *interf);
2015-04-27 22:25:09 +02:00
/*
* Function provided by the resolver backend to set
* local IPv4 address to use as source address for DNS requests
*/
2016-09-11 17:22:32 +02:00
CURLcode Curl_set_dns_local_ip4(struct Curl_easy *data,
2015-04-27 22:25:09 +02:00
const char *local_ip4);
2015-04-27 22:25:09 +02:00
/*
* Function provided by the resolver backend to set
* local IPv6 address to use as source address for DNS requests
*/
2016-09-11 17:22:32 +02:00
CURLcode Curl_set_dns_local_ip6(struct Curl_easy *data,
2015-04-27 22:25:09 +02:00
const char *local_ip6);
2015-04-27 22:25:09 +02:00
/*
* Clean off entries from the cache
*/
2021-09-14 00:13:48 +02:00
void Curl_hostcache_clean(struct Curl_easy *data, struct Curl_hash *hash);
2015-04-27 22:25:09 +02:00
/*
* Populate the cache with specified entries from CURLOPT_RESOLVE.
*/
2016-09-11 17:22:32 +02:00
CURLcode Curl_loadhostpairs(struct Curl_easy *data);
2021-09-14 00:13:48 +02:00
CURLcode Curl_resolv_check(struct Curl_easy *data,
2018-11-29 20:27:00 +01:00
struct Curl_dns_entry **dns);
2021-09-14 00:13:48 +02:00
int Curl_resolv_getsock(struct Curl_easy *data,
2020-08-30 11:54:41 +02:00
curl_socket_t *socks);
2018-11-29 20:27:00 +01:00
2021-09-14 00:13:48 +02:00
CURLcode Curl_resolver_error(struct Curl_easy *data);
2015-04-27 22:25:09 +02:00
#endif /* HEADER_CURL_HOSTIP_H */