/
niceSOFT
/
dovecot
Обзор
Документация
Войти
/
niceSOFT
/
dovecot
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib-http/http-client.c
658 строк
18 KB
Michael M Slusarz
COPYING: Simplify and standardize copyright handling
03 июл 2026, 02:25
03 июл 2026, 02:25
2a5809c
Код
Авторство
О чём код?
/* Copyright (c) Dovecot authors, see top-level COPYING file */ #include "lib.h" #include "net.h" #include "str.h" #include "hash.h" #include "llist.h" #include "array.h" #include "ioloop.h" #include "istream.h" #include "ostream.h" #include "connection.h" #include "dns-lookup.h" #include "iostream-rawlog.h" #include "iostream-ssl.h" #include "settings.h" #include "http-url.h" #include "http-client-private.h" /* Structure: http_client_context: Shared context between multiple independent HTTP clients. This allows host name lookup data, peer status and idle connections to be shared between clients. http_client: Acts much like a browser; it is not dedicated to a single host. Client can accept requests to different hosts, which can be served at different IPs. Redirects are handled in the background by making a new connection. Connections to new hosts are created once needed for servicing a request. http_client_request: The request semantics are similar to imapc commands. Create a request, optionally modify some aspects of it, and finally submit it. Once finished, a callback is called with the returned response. http_client_host_shared: We maintain a 'cache' of hosts for which we have looked up IPs. This cache is maintained in client context, so multiple clients can share it. One host can have multiple IPs. http_client_host: A host object maintains client-specific information for a host. The queues that the client has for this host are listed here. For one host, there is a separate queue for each used server port. http_client_queue: Requests are queued in a queue object. These queues are maintained for each host:port target and listed in the host object. The queue object is responsible for starting connection attempts to TCP port at the various IPs known for the host. http_client_peer_pool: A peer pool lists all unused and pending connections to a peer, grouped by a compatible configuration, e.g. in terms of SSL and rawlog. Once needed, peers can claim/request an existing/new connection from the pool. http_client_peer_shared: The shared peer object records state information about a peer, which is a service access point (ip:port or unix socket path). The peer object also maintains lists of idle and pending connections to this service, which are grouped in pools with compatible client configuration. Each client has a separate (non-shared) peer object for client-specific state information. http_client_peer: A peer object maintains client-specific information for a peer. Claimed connections are dedicated to one peer (and therefore one client). http-client-connection: This is an actual connection to a server. Once a connection is ready to handle requests, it claims a request from a queue object. One connection can service multiple hosts and one host can have multiple associated connections, possibly to different ips and ports. */ struct event_category event_category_http_client = { .name = "http-client" }; static struct http_client_context *http_client_global_context = NULL; static void http_client_context_add_client(struct http_client_context *cctx, struct http_client *client); static void http_client_context_remove_client(struct http_client_context *cctx, struct http_client *client); static_assert(HTTP_CLIENT_REQUEST_ERROR_ABORTED == HTTP_RESPONSE_STATUS_INTERNAL, "Internal HTTP response code numbers are inconsistent"); /* * Client */ void http_client_settings_init(pool_t pool, struct http_client_settings *set_r) { i_zero(set_r); set_r->pool = pool; pool_ref(pool); set_r->max_pipelined_requests = 1; set_r->max_parallel_connections = 1; set_r->connect_backoff_time_msecs = HTTP_CLIENT_DEFAULT_BACKOFF_TIME_MSECS; set_r->connect_backoff_max_time_msecs = HTTP_CLIENT_DEFAULT_BACKOFF_MAX_TIME_MSECS; set_r->request_timeout_msecs = HTTP_CLIENT_DEFAULT_REQUEST_TIMEOUT_MSECS; set_r->auto_redirect = TRUE; set_r->auto_retry = TRUE; set_r->proxy_ssl_tunnel = TRUE; } struct http_client * http_client_init_shared(struct http_client_context *cctx, const struct http_client_settings *set, struct event *event_parent) { static unsigned int id = 0; struct http_client *client; const char *log_prefix; pool_t pool; i_assert(set != NULL); i_assert(set->max_pipelined_requests > 0); i_assert(set->max_parallel_connections > 0); i_assert(set->connect_backoff_time_msecs > 0); i_assert(set->connect_backoff_max_time_msecs > 0); i_assert(set->request_timeout_msecs > 0); pool = pool_alloconly_create("http client", 1024); client = p_new(pool, struct http_client, 1); client->pool = pool; client->ioloop = current_ioloop; /* Create private context if none is provided */ id++; if (cctx != NULL) { client->cctx = cctx; http_client_context_ref(cctx); log_prefix = t_strdup_printf("http-client[%u]: ", id); } else { client->cctx = cctx = http_client_context_create(); log_prefix = "http-client: "; } if (event_parent != NULL) client->event = event_create(event_parent); else { i_assert(cctx->event != NULL); client->event = event_create(cctx->event); event_drop_parent_log_prefixes(client->event, 1); } event_add_category(client->event, &event_category_http_client); event_set_append_log_prefix(client->event, log_prefix); pool_add_external_ref(client->pool, set->pool); client->set = set; i_array_init(&client->delayed_failing_requests, 1); http_client_context_add_client(cctx, client); return client; } struct http_client *http_client_init(const struct http_client_settings *set, struct event *event_parent) { return http_client_init_shared(http_client_get_global_context(), set, event_parent); } int http_client_init_auto(struct event *event_parent, struct http_client **client_r, const char **error_r) { const struct http_client_settings *set; if (settings_get(event_parent, &http_client_setting_parser_info, 0, &set, error_r) < 0) return -1; *client_r = http_client_init(set, event_parent); return 0; } struct http_client * http_client_init_private(const struct http_client_settings *set, struct event *event_parent) { return http_client_init_shared(NULL, set, event_parent); } int http_client_init_private_auto(struct event *event_parent, struct http_client **client_r, const char **error_r) { const struct http_client_settings *set; if (settings_get(event_parent, &http_client_setting_parser_info, 0, &set, error_r) < 0) return -1; *client_r = http_client_init_private(set, event_parent); return 0; } void http_client_deinit(struct http_client **_client) { struct http_client *client = *_client; struct http_client_request *req; struct http_client_host *host; struct http_client_peer *peer; *_client = NULL; /* Destroy requests without calling callbacks */ req = client->requests_list; while (req != NULL) { struct http_client_request *next_req = req->next; http_client_request_destroy(&req); req = next_req; } i_assert(client->requests_count == 0); /* Free peers */ while (client->peers_list != NULL) { peer = client->peers_list; http_client_peer_close(&peer); } /* Free hosts */ while (client->hosts_list != NULL) { host = client->hosts_list; http_client_host_free(&host); } array_free(&client->delayed_failing_requests); timeout_remove(&client->to_failing_requests); settings_free(client->set); settings_free(client->ssl_set); if (client->ssl_ctx != NULL) ssl_iostream_context_unref(&client->ssl_ctx); http_client_context_remove_client(client->cctx, client); http_client_context_unref(&client->cctx); event_unref(&client->event); pool_unref(&client->pool); } static void http_client_do_switch_ioloop(struct http_client *client) { struct http_client_peer *peer; struct http_client_host *host; /* Move peers */ for (peer = client->peers_list; peer != NULL; peer = peer->client_next) http_client_peer_switch_ioloop(peer); /* Move hosts/queues */ for (host = client->hosts_list; host != NULL; host = host->client_next) http_client_host_switch_ioloop(host); /* Move timeouts */ if (client->to_failing_requests != NULL) { client->to_failing_requests = io_loop_move_timeout(&client->to_failing_requests); } } struct ioloop *http_client_switch_ioloop(struct http_client *client) { struct ioloop *prev_ioloop = client->ioloop; client->ioloop = current_ioloop; http_client_do_switch_ioloop(client); http_client_context_switch_ioloop(client->cctx); return prev_ioloop; } void http_client_wait(struct http_client *client) { struct ioloop *prev_ioloop, *client_ioloop, *prev_client_ioloop; if (client->requests_count == 0) return; prev_ioloop = current_ioloop; client_ioloop = io_loop_create(); prev_client_ioloop = http_client_switch_ioloop(client); if (client->dns_client != NULL) dns_client_switch_ioloop(client->dns_client); /* Either we're waiting for network I/O or we're getting out of a callback using timeout_add_short(0) */ i_assert(io_loop_have_ios(client_ioloop) || io_loop_have_immediate_timeouts(client_ioloop)); client->waiting = TRUE; do { e_debug(client->event, "Waiting for %d requests to finish", client->requests_count); io_loop_run(client_ioloop); } while (client->requests_count > 0); client->waiting = FALSE; e_debug(client->event, "All requests finished"); if (prev_client_ioloop != NULL) io_loop_set_current(prev_client_ioloop); else io_loop_set_current(prev_ioloop); (void)http_client_switch_ioloop(client); if (client->dns_client != NULL) dns_client_switch_ioloop(client->dns_client); io_loop_set_current(client_ioloop); io_loop_destroy(&client_ioloop); } void http_client_set_ssl_settings(struct http_client *client, const struct ssl_iostream_settings *ssl) { settings_free(client->ssl_set); client->ssl_set = ssl; pool_ref(client->ssl_set->pool); } void http_client_set_dns_client(struct http_client *client, struct dns_client *dns_client) { client->dns_client = dns_client; } unsigned int http_client_get_pending_request_count(struct http_client *client) { return client->requests_count; } int http_client_init_ssl_ctx(struct http_client *client, const char **error_r) { const struct ssl_settings *ssl_set; const struct ssl_iostream_settings *set = NULL; const char *const names[] = { "http/1.1", NULL }; if (client->ssl_ctx != NULL) return 0; if (client->ssl_set != NULL) { int ret; if ((ret = ssl_iostream_client_context_cache_get(client->ssl_set, &client->ssl_ctx, error_r)) < 0) return -1; else if (ret > 0) ssl_iostream_context_set_application_protocols(client->ssl_ctx, names); return 0; } /* no ssl settings given via http_client_settings - look them up automatically */ if (ssl_client_settings_get(client->event, &ssl_set, error_r) < 0) return -1; ssl_client_settings_to_iostream_set(ssl_set, &set); int ret = ssl_iostream_client_context_cache_get(set, &client->ssl_ctx, error_r); if (ret > 0) { ssl_iostream_context_set_application_protocols(client->ssl_ctx, names); } settings_free(set); settings_free(ssl_set); return ret < 0 ? -1 : 0; } /* * Delayed request errors */ static void http_client_handle_request_errors(struct http_client *client) { struct http_client_request *req; timeout_remove(&client->to_failing_requests); array_foreach_elem(&client->delayed_failing_requests, req) { i_assert(req->refcount == 1); http_client_request_error_delayed(&req); } array_clear(&client->delayed_failing_requests); } void http_client_delay_request_error(struct http_client *client, struct http_client_request *req) { if (client->to_failing_requests == NULL) { client->to_failing_requests = timeout_add_short_to(client->ioloop, 0, http_client_handle_request_errors, client); } array_push_back(&client->delayed_failing_requests, &req); } void http_client_remove_request_error(struct http_client *client, struct http_client_request *req) { unsigned int i; if (!array_lsearch_ptr_idx(&client->delayed_failing_requests, req, &i)) i_unreached(); array_delete(&client->delayed_failing_requests, i, 1); } /* * Client shared context */ struct http_client_context *http_client_context_create(void) { struct http_client_context *cctx; pool_t pool; pool = pool_alloconly_create("http client context", 1024); cctx = p_new(pool, struct http_client_context, 1); cctx->pool = pool; cctx->refcount = 1; cctx->ioloop = current_ioloop; cctx->event = event_create(NULL); event_add_category(cctx->event, &event_category_http_client); event_set_append_log_prefix(cctx->event, "http-client: "); cctx->conn_list = http_client_connection_list_init(); hash_table_create(&cctx->hosts, default_pool, 0, str_hash, strcmp); hash_table_create(&cctx->peers, default_pool, 0, http_client_peer_addr_hash, http_client_peer_addr_cmp); return cctx; } void http_client_context_ref(struct http_client_context *cctx) { cctx->refcount++; } void http_client_context_unref(struct http_client_context **_cctx) { struct http_client_context *cctx = *_cctx; struct http_client_peer_shared *peer; struct http_client_host_shared *hshared; *_cctx = NULL; i_assert(cctx->refcount > 0); if (--cctx->refcount > 0) return; /* Free hosts */ while (cctx->hosts_list != NULL) { hshared = cctx->hosts_list; http_client_host_shared_free(&hshared); } hash_table_destroy(&cctx->hosts); /* Close all idle connections */ while (cctx->peers_list != NULL) { peer = cctx->peers_list; http_client_peer_shared_close(&peer); i_assert(peer == NULL); } hash_table_destroy(&cctx->peers); connection_list_deinit(&cctx->conn_list); event_unref(&cctx->event); pool_unref(&cctx->pool); } static void http_client_context_update_settings(struct http_client_context *cctx) { struct http_client *client; bool debug = FALSE; /* Revert back to default settings */ cctx->dns_client = NULL; cctx->dns_ttl_msecs = UINT_MAX; /* Override with available client settings */ for (client = cctx->clients_list; client != NULL; client = client->next) { if (cctx->dns_client == NULL) cctx->dns_client = client->dns_client; if (client->set->dns_ttl_msecs != 0 && cctx->dns_ttl_msecs > client->set->dns_ttl_msecs) cctx->dns_ttl_msecs = client->set->dns_ttl_msecs; debug = debug || event_want_debug(client->event); } if (cctx->dns_ttl_msecs == UINT_MAX) cctx->dns_ttl_msecs = HTTP_CLIENT_DEFAULT_DNS_TTL_MSECS; event_set_forced_debug(cctx->event, debug); } static void http_client_context_add_client(struct http_client_context *cctx, struct http_client *client) { DLLIST_PREPEND(&cctx->clients_list, client); http_client_context_update_settings(cctx); } static void http_client_context_remove_client(struct http_client_context *cctx, struct http_client *client) { DLLIST_REMOVE(&cctx->clients_list, client); http_client_context_update_settings(cctx); if (cctx->ioloop != current_ioloop && cctx->ioloop == client->ioloop && cctx->clients_list != NULL) { struct ioloop *prev_ioloop = current_ioloop; io_loop_set_current(cctx->clients_list->ioloop); http_client_context_switch_ioloop(cctx); io_loop_set_current(prev_ioloop); } } static void http_client_context_close(struct http_client_context *cctx) { struct connection *_conn, *_conn_next; struct http_client_host_shared *hshared; struct http_client_peer_shared *pshared; /* Switching to NULL ioloop; close all hosts, peers, and connections */ i_assert(cctx->clients_list == NULL); _conn = cctx->conn_list->connections; while (_conn != NULL) { struct http_client_connection *conn = (struct http_client_connection *)_conn; _conn_next = _conn->next; http_client_connection_close(&conn); _conn = _conn_next; } while (cctx->hosts_list != NULL) { hshared = cctx->hosts_list; http_client_host_shared_free(&hshared); } while (cctx->peers_list != NULL) { pshared = cctx->peers_list; http_client_peer_shared_close(&pshared); } } static void http_client_context_do_switch_ioloop(struct http_client_context *cctx) { struct connection *_conn = cctx->conn_list->connections; struct http_client_host_shared *hshared; struct http_client_peer_shared *pshared; /* Move connections */ /* FIXME: we wouldn't necessarily need to switch all of them immediately, only those that have requests now. but also connections that get new requests before ioloop is switched again.. */ for (; _conn != NULL; _conn = _conn->next) { struct http_client_connection *conn = (struct http_client_connection *)_conn; http_client_connection_switch_ioloop(conn); } /* Move backoff timeouts */ for (pshared = cctx->peers_list; pshared != NULL; pshared = pshared->next) http_client_peer_shared_switch_ioloop(pshared); /* Move dns lookups and delayed requests */ for (hshared = cctx->hosts_list; hshared != NULL; hshared = hshared->next) http_client_host_shared_switch_ioloop(hshared); } void http_client_context_switch_ioloop(struct http_client_context *cctx) { cctx->ioloop = current_ioloop; http_client_context_do_switch_ioloop(cctx); } static void http_client_global_context_ioloop_switched( struct ioloop *prev_ioloop ATTR_UNUSED) { struct http_client_context *cctx = http_client_global_context; i_assert(cctx != NULL); if (current_ioloop == NULL) { http_client_context_close(cctx); return; } if (cctx->clients_list == NULL) { /* Follow the current ioloop if there is no client */ http_client_context_switch_ioloop(cctx); } } void http_client_global_context_free(void) { if (http_client_global_context == NULL) return; /* Drop ioloop switch callback to make absolutely sure there is no recursion. */ io_loop_remove_switch_callback( http_client_global_context_ioloop_switched); http_client_context_unref(&http_client_global_context); } struct http_client_context *http_client_get_global_context(void) { if (http_client_global_context != NULL) return http_client_global_context; http_client_global_context = http_client_context_create(); /* Keep this a bit higher than lib-ssl-iostream */ lib_atexit_priority(http_client_global_context_free, LIB_ATEXIT_PRIORITY_LOW-1); io_loop_add_switch_callback(http_client_global_context_ioloop_switched); return http_client_global_context; }