mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:31:41 +03:00
New connection filter `cf-dns` that manages DNS queries. If hands out addresses and HTTPS-RR records to anyone interested. Used by HTTPS and IP happy eyeballing. Information may become available *before* the libcurl "dns entry" is complete, e.g. all queries have been answered. The cf-ip-happy filter uses this information to start connection attempts as soon as the first address is available. The multi MSTATE_RESOLVING was removed. A new connection always goes to MSTATE_CONNECTING. The connectdata bit `dns_resolved` indicates when DNS information is complete. This is used for error reporting and starting the progress meter. Removed dns entries `data->state.dns[i]`, as the `cf-dns` filter now keeps the reference now. Many minor tweaks for making this work and pass address information around safely. Closes #21027
148 lines
5.1 KiB
C
148 lines
5.1 KiB
C
#ifndef HEADER_CURL_HOSTIP_H
|
|
#define HEADER_CURL_HOSTIP_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* 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
|
|
* 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.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
#include "curl_setup.h"
|
|
|
|
#include "hash.h"
|
|
#include "curlx/timeval.h" /* for curltime, timediff_t */
|
|
|
|
/* 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 */
|
|
|
|
struct addrinfo;
|
|
struct hostent;
|
|
struct Curl_easy;
|
|
struct connectdata;
|
|
struct easy_pollset;
|
|
struct Curl_https_rrinfo;
|
|
struct Curl_multi;
|
|
struct Curl_dns_entry;
|
|
|
|
enum alpnid {
|
|
ALPN_none = 0,
|
|
ALPN_h1 = CURLALTSVC_H1,
|
|
ALPN_h2 = CURLALTSVC_H2,
|
|
ALPN_h3 = CURLALTSVC_H3
|
|
};
|
|
|
|
bool Curl_host_is_ipnum(const char *hostname);
|
|
|
|
#ifdef USE_IPV6
|
|
|
|
/* probe if it seems to work */
|
|
CURLcode Curl_probeipv6(struct Curl_multi *multi);
|
|
/*
|
|
* Curl_ipv6works() returns TRUE if IPv6 seems to work.
|
|
*/
|
|
bool Curl_ipv6works(struct Curl_easy *data);
|
|
#else
|
|
#define Curl_probeipv6(x) CURLE_OK
|
|
#define Curl_ipv6works(x) FALSE
|
|
#endif
|
|
|
|
/* IPv4 thread-safe resolve function used for synch and asynch builds */
|
|
struct Curl_addrinfo *Curl_ipv4_resolve_r(const char *hostname, uint16_t port);
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
void Curl_printable_address(const struct Curl_addrinfo *ip,
|
|
char *buf, size_t bufsize);
|
|
|
|
/*
|
|
* Curl_resolv() returns an entry with the info for the specified host
|
|
* and port.
|
|
*
|
|
* The returned data *MUST* be "released" with Curl_dns_entry_unlink() after
|
|
* use, or we will leak memory!
|
|
*/
|
|
CURLcode Curl_resolv(struct Curl_easy *data,
|
|
const char *hostname,
|
|
uint16_t port,
|
|
uint8_t ip_version,
|
|
uint8_t transport,
|
|
timediff_t timeout_ms,
|
|
struct Curl_dns_entry **pdns);
|
|
|
|
CURLcode Curl_resolv_blocking(struct Curl_easy *data,
|
|
const char *hostname,
|
|
uint16_t port,
|
|
uint8_t ip_version,
|
|
uint8_t transport,
|
|
struct Curl_dns_entry **pdns);
|
|
|
|
CURLcode Curl_resolv_timeout(struct Curl_easy *data,
|
|
const char *hostname, int port,
|
|
int ip_version,
|
|
struct Curl_dns_entry **entry,
|
|
timediff_t timeoutms);
|
|
|
|
#ifdef USE_CURL_ASYNC
|
|
CURLcode Curl_resolv_take_result(struct Curl_easy *data,
|
|
struct Curl_dns_entry **pdns);
|
|
const struct Curl_addrinfo *
|
|
Curl_resolv_get_ai(struct Curl_easy *data, int ai_family,
|
|
unsigned int index);
|
|
#else
|
|
#define Curl_resolv_take_result(x, y) CURLE_NOT_BUILT_IN
|
|
#define Curl_resolv_get_ai(x,y,z) NULL
|
|
#endif
|
|
|
|
CURLcode Curl_resolv_pollset(struct Curl_easy *data,
|
|
struct easy_pollset *ps);
|
|
|
|
CURLcode Curl_resolver_error(struct Curl_easy *data, const char *detail);
|
|
|
|
#ifdef CURLRES_SYNCH
|
|
/*
|
|
* Curl_sync_getaddrinfo() is the non-async low-level name resolve API.
|
|
* There are several versions of this function - depending on IPV6
|
|
* support and platform.
|
|
*/
|
|
struct Curl_addrinfo *Curl_sync_getaddrinfo(struct Curl_easy *data,
|
|
const char *hostname,
|
|
uint16_t port,
|
|
uint8_t ip_version,
|
|
uint8_t transport);
|
|
|
|
#endif
|
|
|
|
#ifdef USE_UNIX_SOCKETS
|
|
CURLcode Curl_resolv_unix(struct Curl_easy *data,
|
|
const char *unix_path,
|
|
bool abstract_path,
|
|
struct Curl_dns_entry **pdns);
|
|
#endif
|
|
|
|
#endif /* HEADER_CURL_HOSTIP_H */
|