mirror of
https://github.com/curl/curl.git
synced 2026-04-14 00:51:42 +08:00
The `struct Curl_dns_entry *` used to established a connection do not have the connection's lifetime, but the transfer's lifetime (of the transfer that initiates the connect). `Curl_dns_entry *` is reference counted with the "dns cache". That cache might be owned by the multi or the transfer's share. In the share, the reference count needs updating under lock. Therefore, the dns entry can only be kept *and* released using the same transfer it was initially looked up from. But a connection is often discarded using another transfer. So far, the problem of this has been avoided in clearing the connection's dns entries in the "multi_don()" handling. So, connections had NULL dns entries after the initial transfers and its connect had been handled. Keeping the dns entries in data->state seems therefore a better choice. Also: remove the `struct Curl_dns_entry *` from the connect filters contexts. Use `data->state.dns` every time instead and fail correctly when not present and needed. Closes #17383
119 lines
4.9 KiB
C
119 lines
4.9 KiB
C
#ifndef HEADER_CURL_URL_H
|
|
#define HEADER_CURL_URL_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"
|
|
|
|
/*
|
|
* Prototypes for library-wide functions provided by url.c
|
|
*/
|
|
|
|
CURLcode Curl_init_do(struct Curl_easy *data, struct connectdata *conn);
|
|
CURLcode Curl_open(struct Curl_easy **curl);
|
|
CURLcode Curl_init_userdefined(struct Curl_easy *data);
|
|
|
|
void Curl_freeset(struct Curl_easy *data);
|
|
CURLcode Curl_uc_to_curlcode(CURLUcode uc);
|
|
CURLcode Curl_close(struct Curl_easy **datap); /* opposite of curl_open() */
|
|
CURLcode Curl_connect(struct Curl_easy *, bool *async, bool *protocol_connect);
|
|
CURLcode Curl_setup_conn(struct Curl_easy *data,
|
|
struct Curl_dns_entry *dns,
|
|
bool *protocol_done);
|
|
void Curl_conn_free(struct Curl_easy *data, struct connectdata *conn);
|
|
CURLcode Curl_parse_login_details(const char *login, const size_t len,
|
|
char **userptr, char **passwdptr,
|
|
char **optionsptr);
|
|
|
|
/* Attach/Clear/Get meta data for an easy handle. Needs to provide
|
|
* a destructor, will be automatically called when the easy handle
|
|
* is reset or closed. */
|
|
typedef void Curl_meta_dtor(void *key, size_t key_len, void *meta_data);
|
|
|
|
/* Set the transfer meta data for the key. Any existing entry for that
|
|
* key will be destroyed.
|
|
* Takes ownership of `meta_data` and destroys it when the call fails. */
|
|
CURLcode Curl_meta_set(struct Curl_easy *data, const char *key,
|
|
void *meta_data, Curl_meta_dtor *meta_dtor);
|
|
void Curl_meta_remove(struct Curl_easy *data, const char *key);
|
|
void *Curl_meta_get(struct Curl_easy *data, const char *key);
|
|
void Curl_meta_reset(struct Curl_easy *data);
|
|
|
|
/* Set connection meta data for the key. Any existing entry for that
|
|
* key will be destroyed.
|
|
* Takes ownership of `meta_data` and destroys it when the call fails. */
|
|
CURLcode Curl_conn_meta_set(struct connectdata *conn, const char *key,
|
|
void *meta_data, Curl_meta_dtor *meta_dtor);
|
|
void Curl_conn_meta_remove(struct connectdata *conn, const char *key);
|
|
void *Curl_conn_meta_get(struct connectdata *conn, const char *key);
|
|
|
|
/* Get protocol handler for a URI scheme
|
|
* @param scheme URI scheme, case-insensitive
|
|
* @return NULL of handler not found
|
|
*/
|
|
const struct Curl_handler *Curl_get_scheme_handler(const char *scheme);
|
|
const struct Curl_handler *Curl_getn_scheme_handler(const char *scheme,
|
|
size_t len);
|
|
|
|
#define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
|
|
#define CURL_DEFAULT_HTTPS_PROXY_PORT 443 /* default https proxy port unless
|
|
specified */
|
|
|
|
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
|
#define Curl_verboseconnect(x,y,z) Curl_nop_stmt
|
|
#else
|
|
void Curl_verboseconnect(struct Curl_easy *data, struct connectdata *conn,
|
|
int sockindex);
|
|
#endif
|
|
|
|
/**
|
|
* Return TRUE iff the given connection is considered dead.
|
|
* @param nowp NULL or pointer to time being checked against.
|
|
*/
|
|
bool Curl_conn_seems_dead(struct connectdata *conn,
|
|
struct Curl_easy *data,
|
|
struct curltime *nowp);
|
|
|
|
/**
|
|
* Perform upkeep operations on the connection.
|
|
*/
|
|
CURLcode Curl_conn_upkeep(struct Curl_easy *data,
|
|
struct connectdata *conn,
|
|
struct curltime *now);
|
|
|
|
#if defined(USE_HTTP2) || defined(USE_HTTP3)
|
|
void Curl_data_priority_clear_state(struct Curl_easy *data);
|
|
#else
|
|
#define Curl_data_priority_clear_state(x)
|
|
#endif /* !(defined(USE_HTTP2) || defined(USE_HTTP3)) */
|
|
|
|
#ifdef USE_NGHTTP2
|
|
CURLcode Curl_data_priority_add_child(struct Curl_easy *parent,
|
|
struct Curl_easy *child,
|
|
bool exclusive);
|
|
#else
|
|
#define Curl_data_priority_add_child(x, y, z) CURLE_NOT_BUILT_IN
|
|
#endif
|
|
|
|
#endif /* HEADER_CURL_URL_H */
|