mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:33:31 +03:00
lib: graceful connection shutdown
When libcurl discards a connection there are two phases this may go through: "shutdown" and "closing". If a connection is aborted, the shutdown phase is skipped and it is closed right away. The connection filters attached to the connection implement the phases in their `do_shutdown()` and `do_close()` callbacks. Filters carry now a `shutdown` flags next to `connected` to keep track of the shutdown operation. Filters are shut down from top to bottom. If a filter is not connected, its shutdown is skipped. Notable filters that *do* something during shutdown are HTTP/2 and TLS. HTTP/2 sends the GOAWAY frame. TLS sends its close notify and expects to receive a close notify from the server. As sends and receives may EAGAIN on the network, a shutdown is often not successful right away and needs to poll the connection's socket(s). To facilitate this, such connections are placed on a new shutdown list inside the connection cache. Since managing this list requires the cooperation of a multi handle, only the connection cache belonging to a multi handle is used. If a connection was in another cache when being discarded, it is removed there and added to the multi's cache. If no multi handle is available at that time, the connection is shutdown and closed in a one-time, best-effort attempt. When a multi handle is destroyed, all connection still on the shutdown list are discarded with a final shutdown attempt and close. In curl debug builds, the environment variable `CURL_GRACEFUL_SHUTDOWN` can be set to make this graceful with a timeout in milliseconds given by the variable. The shutdown list is limited to the max number of connections configured for a multi cache. Set via CURLMOPT_MAX_TOTAL_CONNECTIONS. When the limit is reached, the oldest connection on the shutdown list is discarded. - In multi_wait() and multi_waitfds(), collect all connection caches involved (each transfer might carry its own) into a temporary list. Let each connection cache on the list contribute sockets and POLLIN/OUT events it's connections are waiting for. - in multi_perform() collect the connection caches the same way and let them peform their maintenance. This will make another non-blocking attempt to shutdown all connections on its shutdown list. - for event based multis (multi->socket_cb set), add the sockets and their poll events via the callback. When `multi_socket()` is invoked for a socket not known by an active transfer, forward this to the multi's cache for processing. On closing a connection, remove its socket(s) via the callback. TLS connection filters MUST NOT send close nofity messages in their `do_close()` implementation. The reason is that a TLS close notify signals a success. When a connection is aborted and skips its shutdown phase, the server needs to see a missing close notify to detect something has gone wrong. A graceful shutdown of FTP's data connection is performed implicitly before regarding the upload/download as complete and continuing on the control connection. For FTP without TLS, there is just the socket close happening. But with TLS, the sent/received close notify signals that the transfer is complete and healthy. Servers like `vsftpd` verify that and reject uploads without a TLS close notify. - added test_19_* for shutdown related tests - test_19_01 and test_19_02 test for TCP RST packets which happen without a graceful shutdown and should no longer appear otherwise. - add test_19_03 for handling shutdowns by the server - add test_19_04 for handling shutdowns by curl - add test_19_05 for event based shutdowny by server - add test_30_06/07 and test_31_06/07 for shutdown checks on FTP up- and downloads. Closes #13976
This commit is contained in:
parent
c1845dc0e2
commit
c9b95c0bb3
33 changed files with 1313 additions and 276 deletions
692
lib/conncache.c
692
lib/conncache.c
|
|
@ -29,13 +29,17 @@
|
|||
|
||||
#include "urldata.h"
|
||||
#include "url.h"
|
||||
#include "cfilters.h"
|
||||
#include "progress.h"
|
||||
#include "multiif.h"
|
||||
#include "sendf.h"
|
||||
#include "conncache.h"
|
||||
#include "http_negotiate.h"
|
||||
#include "http_ntlm.h"
|
||||
#include "share.h"
|
||||
#include "sigpipe.h"
|
||||
#include "connect.h"
|
||||
#include "select.h"
|
||||
#include "strcase.h"
|
||||
|
||||
/* The last 3 #include files should be in this order */
|
||||
|
|
@ -45,6 +49,24 @@
|
|||
|
||||
#define HASHKEY_SIZE 128
|
||||
|
||||
static void connc_discard_conn(struct conncache *connc,
|
||||
struct Curl_easy *last_data,
|
||||
struct connectdata *conn,
|
||||
bool aborted);
|
||||
static void connc_disconnect(struct Curl_easy *data,
|
||||
struct connectdata *conn,
|
||||
struct conncache *connc,
|
||||
bool do_shutdown);
|
||||
static void connc_run_conn_shutdown(struct Curl_easy *data,
|
||||
struct connectdata *conn,
|
||||
bool *done);
|
||||
static void connc_run_conn_shutdown_handler(struct Curl_easy *data,
|
||||
struct connectdata *conn);
|
||||
static CURLcode connc_update_shutdown_ev(struct Curl_multi *multi,
|
||||
struct Curl_easy *data,
|
||||
struct connectdata *conn);
|
||||
static void connc_shutdown_all(struct conncache *connc, int timeout_ms);
|
||||
|
||||
static CURLcode bundle_create(struct connectbundle **bundlep)
|
||||
{
|
||||
DEBUGASSERT(*bundlep == NULL);
|
||||
|
|
@ -100,25 +122,35 @@ static void free_bundle_hash_entry(void *freethis)
|
|||
bundle_destroy(b);
|
||||
}
|
||||
|
||||
int Curl_conncache_init(struct conncache *connc, size_t size)
|
||||
int Curl_conncache_init(struct conncache *connc,
|
||||
struct Curl_multi *multi, size_t size)
|
||||
{
|
||||
/* allocate a new easy handle to use when closing cached connections */
|
||||
connc->closure_handle = curl_easy_init();
|
||||
if(!connc->closure_handle)
|
||||
return 1; /* bad */
|
||||
connc->closure_handle->state.internal = true;
|
||||
#ifdef DEBUGBUILD
|
||||
if(getenv("CURL_DEBUG"))
|
||||
connc->closure_handle->set.verbose = true;
|
||||
#endif
|
||||
|
||||
Curl_hash_init(&connc->hash, size, Curl_hash_str,
|
||||
Curl_str_key_compare, free_bundle_hash_entry);
|
||||
connc->closure_handle->state.conn_cache = connc;
|
||||
connc->multi = multi;
|
||||
Curl_llist_init(&connc->shutdowns.conn_list, NULL);
|
||||
|
||||
return 0; /* good */
|
||||
}
|
||||
|
||||
void Curl_conncache_destroy(struct conncache *connc)
|
||||
{
|
||||
if(connc)
|
||||
if(connc) {
|
||||
Curl_hash_destroy(&connc->hash);
|
||||
connc->multi = NULL;
|
||||
DEBUGASSERT(!Curl_llist_count(&connc->shutdowns.conn_list));
|
||||
}
|
||||
}
|
||||
|
||||
/* creates a key to find a bundle for this connection */
|
||||
|
|
@ -180,15 +212,14 @@ Curl_conncache_find_bundle(struct Curl_easy *data,
|
|||
return bundle;
|
||||
}
|
||||
|
||||
static void *conncache_add_bundle(struct conncache *connc,
|
||||
char *key,
|
||||
struct connectbundle *bundle)
|
||||
static void *connc_add_bundle(struct conncache *connc,
|
||||
char *key, struct connectbundle *bundle)
|
||||
{
|
||||
return Curl_hash_add(&connc->hash, key, strlen(key), bundle);
|
||||
}
|
||||
|
||||
static void conncache_remove_bundle(struct conncache *connc,
|
||||
struct connectbundle *bundle)
|
||||
static void connc_remove_bundle(struct conncache *connc,
|
||||
struct connectbundle *bundle)
|
||||
{
|
||||
struct Curl_hash_iterator iter;
|
||||
struct Curl_hash_element *he;
|
||||
|
|
@ -231,7 +262,7 @@ CURLcode Curl_conncache_add_conn(struct Curl_easy *data)
|
|||
|
||||
hashkey(conn, key, sizeof(key));
|
||||
|
||||
if(!conncache_add_bundle(data->state.conn_cache, key, bundle)) {
|
||||
if(!connc_add_bundle(data->state.conn_cache, key, bundle)) {
|
||||
bundle_destroy(bundle);
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
goto unlock;
|
||||
|
|
@ -252,6 +283,23 @@ unlock:
|
|||
return result;
|
||||
}
|
||||
|
||||
static void connc_remove_conn(struct conncache *connc,
|
||||
struct connectdata *conn)
|
||||
{
|
||||
struct connectbundle *bundle = conn->bundle;
|
||||
|
||||
/* The bundle pointer can be NULL, since this function can be called
|
||||
due to a failed connection attempt, before being added to a bundle */
|
||||
if(bundle) {
|
||||
bundle_remove_conn(bundle, conn);
|
||||
if(connc && bundle->num_connections == 0)
|
||||
connc_remove_bundle(connc, bundle);
|
||||
conn->bundle = NULL; /* removed from it */
|
||||
if(connc)
|
||||
connc->num_conn--;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Removes the connectdata object from the connection cache, but the transfer
|
||||
* still owns this connection.
|
||||
|
|
@ -262,28 +310,16 @@ unlock:
|
|||
void Curl_conncache_remove_conn(struct Curl_easy *data,
|
||||
struct connectdata *conn, bool lock)
|
||||
{
|
||||
struct connectbundle *bundle = conn->bundle;
|
||||
struct conncache *connc = data->state.conn_cache;
|
||||
|
||||
/* The bundle pointer can be NULL, since this function can be called
|
||||
due to a failed connection attempt, before being added to a bundle */
|
||||
if(bundle) {
|
||||
if(lock) {
|
||||
CONNCACHE_LOCK(data);
|
||||
}
|
||||
bundle_remove_conn(bundle, conn);
|
||||
if(bundle->num_connections == 0)
|
||||
conncache_remove_bundle(connc, bundle);
|
||||
conn->bundle = NULL; /* removed from it */
|
||||
if(connc) {
|
||||
connc->num_conn--;
|
||||
DEBUGF(infof(data, "The cache now contains %zu members",
|
||||
connc->num_conn));
|
||||
}
|
||||
if(lock) {
|
||||
CONNCACHE_UNLOCK(data);
|
||||
}
|
||||
}
|
||||
if(lock)
|
||||
CONNCACHE_LOCK(data);
|
||||
connc_remove_conn(connc, conn);
|
||||
if(lock)
|
||||
CONNCACHE_UNLOCK(data);
|
||||
if(connc)
|
||||
DEBUGF(infof(data, "The cache now contains %zu members",
|
||||
connc->num_conn));
|
||||
}
|
||||
|
||||
/* This function iterates the entire connection cache and calls the function
|
||||
|
|
@ -345,7 +381,7 @@ bool Curl_conncache_foreach(struct Curl_easy *data,
|
|||
up a cache!
|
||||
*/
|
||||
static struct connectdata *
|
||||
conncache_find_first_connection(struct conncache *connc)
|
||||
connc_find_first_connection(struct conncache *connc)
|
||||
{
|
||||
struct Curl_hash_iterator iter;
|
||||
struct Curl_hash_element *he;
|
||||
|
|
@ -394,8 +430,7 @@ bool Curl_conncache_return_conn(struct Curl_easy *data,
|
|||
important that details from this (unrelated) disconnect does not
|
||||
taint meta-data in the data handle. */
|
||||
struct conncache *connc = data->state.conn_cache;
|
||||
Curl_disconnect(connc->closure_handle, conn_candidate,
|
||||
/* dead_connection */ FALSE);
|
||||
connc_disconnect(NULL, conn_candidate, connc, TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -516,33 +551,606 @@ Curl_conncache_extract_oldest(struct Curl_easy *data)
|
|||
return conn_candidate;
|
||||
}
|
||||
|
||||
void Curl_conncache_close_all_connections(struct conncache *connc)
|
||||
static void connc_shutdown_discard_all(struct conncache *connc)
|
||||
{
|
||||
struct Curl_llist_element *e = connc->shutdowns.conn_list.head;
|
||||
struct connectdata *conn;
|
||||
SIGPIPE_VARIABLE(pipe_st);
|
||||
if(!connc->closure_handle)
|
||||
|
||||
if(!e)
|
||||
return;
|
||||
|
||||
conn = conncache_find_first_connection(connc);
|
||||
DEBUGF(infof(connc->closure_handle, "conncache_shutdown_discard_all"));
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
connc->shutdowns.iter_locked = TRUE;
|
||||
while(e) {
|
||||
conn = e->ptr;
|
||||
Curl_llist_remove(&connc->shutdowns.conn_list, e, NULL);
|
||||
DEBUGF(infof(connc->closure_handle, "discard connection #%"
|
||||
CURL_FORMAT_CURL_OFF_T, conn->connection_id));
|
||||
connc_disconnect(NULL, conn, connc, FALSE);
|
||||
e = connc->shutdowns.conn_list.head;
|
||||
}
|
||||
connc->shutdowns.iter_locked = FALSE;
|
||||
}
|
||||
|
||||
static void connc_close_all(struct conncache *connc)
|
||||
{
|
||||
struct Curl_easy *data = connc->closure_handle;
|
||||
struct connectdata *conn;
|
||||
int timeout_ms = 0;
|
||||
SIGPIPE_VARIABLE(pipe_st);
|
||||
|
||||
if(!data)
|
||||
return;
|
||||
|
||||
/* Move all connections to the shutdown list */
|
||||
conn = connc_find_first_connection(connc);
|
||||
while(conn) {
|
||||
sigpipe_ignore(connc->closure_handle, &pipe_st);
|
||||
connc_remove_conn(connc, conn);
|
||||
sigpipe_ignore(data, &pipe_st);
|
||||
/* This will remove the connection from the cache */
|
||||
connclose(conn, "kill all");
|
||||
Curl_conncache_remove_conn(connc->closure_handle, conn, TRUE);
|
||||
Curl_disconnect(connc->closure_handle, conn, FALSE);
|
||||
connc_discard_conn(connc, connc->closure_handle, conn, FALSE);
|
||||
sigpipe_restore(&pipe_st);
|
||||
|
||||
conn = conncache_find_first_connection(connc);
|
||||
conn = connc_find_first_connection(connc);
|
||||
}
|
||||
|
||||
sigpipe_ignore(connc->closure_handle, &pipe_st);
|
||||
/* Just for testing, run graceful shutdown */
|
||||
#ifdef DEBUGBUILD
|
||||
{
|
||||
char *p = getenv("CURL_GRACEFUL_SHUTDOWN");
|
||||
if(p) {
|
||||
long l = strtol(p, NULL, 10);
|
||||
if(l > 0 && l < INT_MAX)
|
||||
timeout_ms = (int)l;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
connc_shutdown_all(connc, timeout_ms);
|
||||
|
||||
Curl_hostcache_clean(connc->closure_handle,
|
||||
connc->closure_handle->dns.hostcache);
|
||||
Curl_close(&connc->closure_handle);
|
||||
/* discard all connections in the shutdown list */
|
||||
connc_shutdown_discard_all(connc);
|
||||
|
||||
sigpipe_ignore(data, &pipe_st);
|
||||
Curl_hostcache_clean(data, data->dns.hostcache);
|
||||
Curl_close(&data);
|
||||
sigpipe_restore(&pipe_st);
|
||||
}
|
||||
|
||||
void Curl_conncache_close_all_connections(struct conncache *connc)
|
||||
{
|
||||
connc_close_all(connc);
|
||||
}
|
||||
|
||||
static void connc_shutdown_discard_oldest(struct conncache *connc)
|
||||
{
|
||||
struct Curl_llist_element *e;
|
||||
struct connectdata *conn;
|
||||
SIGPIPE_VARIABLE(pipe_st);
|
||||
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
if(connc->shutdowns.iter_locked)
|
||||
return;
|
||||
|
||||
e = connc->shutdowns.conn_list.head;
|
||||
if(e) {
|
||||
conn = e->ptr;
|
||||
Curl_llist_remove(&connc->shutdowns.conn_list, e, NULL);
|
||||
sigpipe_ignore(connc->closure_handle, &pipe_st);
|
||||
connc_disconnect(NULL, conn, connc, FALSE);
|
||||
sigpipe_restore(&pipe_st);
|
||||
}
|
||||
}
|
||||
|
||||
static void connc_discard_conn(struct conncache *connc,
|
||||
struct Curl_easy *last_data,
|
||||
struct connectdata *conn,
|
||||
bool aborted)
|
||||
{
|
||||
/* `last_data`, if present, is the transfer that last worked with
|
||||
* the connection. It is present when the connection is being shut down
|
||||
* via `Curl_conncache_discard_conn()`, e.g. when the transfer failed
|
||||
* or does not allow connection reuse.
|
||||
* Using the original handle is necessary for shutting down the protocol
|
||||
* handler belonging to the connection. Protocols like 'file:' rely on
|
||||
* being invoked to clean up their allocations in the easy handle.
|
||||
* When a connection comes from the cache, the transfer is no longer
|
||||
* there and we use the cache's own closure handle.
|
||||
*/
|
||||
struct Curl_easy *data = last_data? last_data : connc->closure_handle;
|
||||
bool done = FALSE;
|
||||
|
||||
DEBUGASSERT(connc);
|
||||
DEBUGASSERT(!conn->bundle);
|
||||
|
||||
/*
|
||||
* If this connection isn't marked to force-close, leave it open if there
|
||||
* are other users of it
|
||||
*/
|
||||
if(CONN_INUSE(conn) && !aborted) {
|
||||
DEBUGF(infof(data, "[CCACHE] not discarding #%" CURL_FORMAT_CURL_OFF_T
|
||||
" still in use by %zu transfers", conn->connection_id,
|
||||
CONN_INUSE(conn)));
|
||||
return;
|
||||
}
|
||||
|
||||
/* treat the connection as aborted in CONNECT_ONLY situations, we do
|
||||
* not know what the APP did with it. */
|
||||
if(conn->connect_only)
|
||||
aborted = TRUE;
|
||||
conn->bits.aborted = aborted;
|
||||
|
||||
/* We do not shutdown dead connections. The term 'dead' can be misleading
|
||||
* here, as we also mark errored connections/transfers as 'dead'.
|
||||
* If we do a shutdown for an aborted transfer, the server might think
|
||||
* it was successful otherwise (for example an ftps: upload). This is
|
||||
* not what we want. */
|
||||
if(aborted)
|
||||
done = TRUE;
|
||||
else if(!done) {
|
||||
/* Attempt to shutdown the connection right away. */
|
||||
Curl_attach_connection(data, conn);
|
||||
connc_run_conn_shutdown(data, conn, &done);
|
||||
DEBUGF(infof(data, "[CCACHE] shutdown #%" CURL_FORMAT_CURL_OFF_T
|
||||
", done=%d",conn->connection_id, done));
|
||||
Curl_detach_connection(data);
|
||||
}
|
||||
|
||||
if(done) {
|
||||
connc_disconnect(data, conn, connc, FALSE);
|
||||
return;
|
||||
}
|
||||
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
if(connc->shutdowns.iter_locked) {
|
||||
DEBUGF(infof(data, "[CCACHE] discarding #%" CURL_FORMAT_CURL_OFF_T
|
||||
", list locked", conn->connection_id));
|
||||
connc_disconnect(data, conn, connc, FALSE);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Add the connection to our shutdown list for non-blocking shutdown
|
||||
* during multi processing. */
|
||||
if(data->multi && data->multi->max_shutdown_connections > 0 &&
|
||||
(data->multi->max_shutdown_connections >=
|
||||
(long)Curl_llist_count(&connc->shutdowns.conn_list))) {
|
||||
DEBUGF(infof(data, "[CCACHE] discarding oldest shutdown connection "
|
||||
"due to limit of %ld",
|
||||
data->multi->max_shutdown_connections));
|
||||
connc_shutdown_discard_oldest(connc);
|
||||
}
|
||||
|
||||
if(data->multi && data->multi->socket_cb) {
|
||||
DEBUGASSERT(connc == &data->multi->conn_cache);
|
||||
if(connc_update_shutdown_ev(data->multi, data, conn)) {
|
||||
DEBUGF(infof(data, "[CCACHE] update events for shutdown failed, "
|
||||
"discarding #%" CURL_FORMAT_CURL_OFF_T,
|
||||
conn->connection_id));
|
||||
connc_disconnect(data, conn, connc, FALSE);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Curl_llist_append(&connc->shutdowns.conn_list, conn, &conn->bundle_node);
|
||||
DEBUGF(infof(data, "[CCACHE] added #%" CURL_FORMAT_CURL_OFF_T
|
||||
" to shutdown list of length %zu", conn->connection_id,
|
||||
Curl_llist_count(&connc->shutdowns.conn_list)));
|
||||
|
||||
/* Forget what this transfer last polled, the connection is ours now.
|
||||
* If we do not clear this, the event handling for `data` will tell
|
||||
* the callback to remove the connection socket after we return here. */
|
||||
memset(&data->last_poll, 0, sizeof(data->last_poll));
|
||||
}
|
||||
|
||||
void Curl_conncache_disconnect(struct Curl_easy *data,
|
||||
struct connectdata *conn,
|
||||
bool aborted)
|
||||
{
|
||||
DEBUGASSERT(data);
|
||||
/* Connection must no longer be in and connection cache */
|
||||
DEBUGASSERT(!conn->bundle);
|
||||
|
||||
if(data->multi) {
|
||||
/* Add it to the multi's conncache for shutdown handling */
|
||||
infof(data, "%s connection #%" CURL_FORMAT_CURL_OFF_T,
|
||||
aborted? "closing" : "shutting down", conn->connection_id);
|
||||
connc_discard_conn(&data->multi->conn_cache, data, conn, aborted);
|
||||
}
|
||||
else {
|
||||
/* No multi available. Make a best-effort shutdown + close */
|
||||
infof(data, "closing connection #%" CURL_FORMAT_CURL_OFF_T,
|
||||
conn->connection_id);
|
||||
DEBUGASSERT(!conn->bundle);
|
||||
connc_run_conn_shutdown_handler(data, conn);
|
||||
connc_disconnect(data, conn, NULL, !aborted);
|
||||
}
|
||||
}
|
||||
|
||||
static void connc_run_conn_shutdown_handler(struct Curl_easy *data,
|
||||
struct connectdata *conn)
|
||||
{
|
||||
if(!conn->bits.shutdown_handler) {
|
||||
if(conn->dns_entry) {
|
||||
Curl_resolv_unlock(data, conn->dns_entry);
|
||||
conn->dns_entry = NULL;
|
||||
}
|
||||
|
||||
/* Cleanup NTLM connection-related data */
|
||||
Curl_http_auth_cleanup_ntlm(conn);
|
||||
|
||||
/* Cleanup NEGOTIATE connection-related data */
|
||||
Curl_http_auth_cleanup_negotiate(conn);
|
||||
|
||||
if(conn->handler && conn->handler->disconnect) {
|
||||
/* This is set if protocol-specific cleanups should be made */
|
||||
DEBUGF(infof(data, "connection #%" CURL_FORMAT_CURL_OFF_T
|
||||
", shutdown protocol handler (aborted=%d)",
|
||||
conn->connection_id, conn->bits.aborted));
|
||||
conn->handler->disconnect(data, conn, conn->bits.aborted);
|
||||
}
|
||||
|
||||
/* possible left-overs from the async name resolvers */
|
||||
Curl_resolver_cancel(data);
|
||||
|
||||
conn->bits.shutdown_handler = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
static void connc_run_conn_shutdown(struct Curl_easy *data,
|
||||
struct connectdata *conn,
|
||||
bool *done)
|
||||
{
|
||||
CURLcode r1, r2;
|
||||
bool done1, done2;
|
||||
|
||||
/* We expect to be attached when called */
|
||||
DEBUGASSERT(data->conn == conn);
|
||||
|
||||
connc_run_conn_shutdown_handler(data, conn);
|
||||
|
||||
if(conn->bits.shutdown_filters) {
|
||||
*done = TRUE;
|
||||
return;
|
||||
}
|
||||
|
||||
if(!conn->connect_only && Curl_conn_is_connected(conn, FIRSTSOCKET))
|
||||
r1 = Curl_conn_shutdown(data, FIRSTSOCKET, &done1);
|
||||
else {
|
||||
r1 = CURLE_OK;
|
||||
done1 = TRUE;
|
||||
}
|
||||
|
||||
if(!conn->connect_only && Curl_conn_is_connected(conn, SECONDARYSOCKET))
|
||||
r2 = Curl_conn_shutdown(data, SECONDARYSOCKET, &done2);
|
||||
else {
|
||||
r2 = CURLE_OK;
|
||||
done2 = TRUE;
|
||||
}
|
||||
|
||||
/* we are done when any failed or both report success */
|
||||
*done = (r1 || r2 || (done1 && done2));
|
||||
if(*done)
|
||||
conn->bits.shutdown_filters = TRUE;
|
||||
}
|
||||
|
||||
CURLcode Curl_conncache_add_pollfds(struct conncache *connc,
|
||||
struct curl_pollfds *cpfds)
|
||||
{
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
connc->shutdowns.iter_locked = TRUE;
|
||||
if(connc->shutdowns.conn_list.head) {
|
||||
struct Curl_llist_element *e;
|
||||
struct easy_pollset ps;
|
||||
struct connectdata *conn;
|
||||
|
||||
for(e = connc->shutdowns.conn_list.head; e; e = e->next) {
|
||||
conn = e->ptr;
|
||||
memset(&ps, 0, sizeof(ps));
|
||||
Curl_attach_connection(connc->closure_handle, conn);
|
||||
Curl_conn_adjust_pollset(connc->closure_handle, &ps);
|
||||
Curl_detach_connection(connc->closure_handle);
|
||||
|
||||
result = Curl_pollfds_add_ps(cpfds, &ps);
|
||||
if(result) {
|
||||
Curl_pollfds_cleanup(cpfds);
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
}
|
||||
out:
|
||||
connc->shutdowns.iter_locked = FALSE;
|
||||
return result;
|
||||
}
|
||||
|
||||
CURLcode Curl_conncache_add_waitfds(struct conncache *connc,
|
||||
struct curl_waitfds *cwfds)
|
||||
{
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
connc->shutdowns.iter_locked = TRUE;
|
||||
if(connc->shutdowns.conn_list.head) {
|
||||
struct Curl_llist_element *e;
|
||||
struct easy_pollset ps;
|
||||
struct connectdata *conn;
|
||||
|
||||
for(e = connc->shutdowns.conn_list.head; e; e = e->next) {
|
||||
conn = e->ptr;
|
||||
memset(&ps, 0, sizeof(ps));
|
||||
Curl_attach_connection(connc->closure_handle, conn);
|
||||
Curl_conn_adjust_pollset(connc->closure_handle, &ps);
|
||||
Curl_detach_connection(connc->closure_handle);
|
||||
|
||||
result = Curl_waitfds_add_ps(cwfds, &ps);
|
||||
if(result)
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
out:
|
||||
connc->shutdowns.iter_locked = FALSE;
|
||||
return result;
|
||||
}
|
||||
|
||||
static void connc_perform(struct conncache *connc)
|
||||
{
|
||||
struct Curl_easy *data = connc->closure_handle;
|
||||
struct Curl_llist_element *e = connc->shutdowns.conn_list.head;
|
||||
struct Curl_llist_element *enext;
|
||||
struct connectdata *conn;
|
||||
bool done;
|
||||
|
||||
if(!e)
|
||||
return;
|
||||
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
DEBUGF(infof(data, "[CCACHE] perform, %zu connections being shutdown",
|
||||
Curl_llist_count(&connc->shutdowns.conn_list)));
|
||||
connc->shutdowns.iter_locked = TRUE;
|
||||
while(e) {
|
||||
enext = e->next;
|
||||
conn = e->ptr;
|
||||
Curl_attach_connection(data, conn);
|
||||
connc_run_conn_shutdown(data, conn, &done);
|
||||
DEBUGF(infof(data, "[CCACHE] shutdown #%" CURL_FORMAT_CURL_OFF_T
|
||||
", done=%d", conn->connection_id, done));
|
||||
Curl_detach_connection(data);
|
||||
if(done) {
|
||||
Curl_llist_remove(&connc->shutdowns.conn_list, e, NULL);
|
||||
connc_disconnect(NULL, conn, connc, FALSE);
|
||||
}
|
||||
e = enext;
|
||||
}
|
||||
connc->shutdowns.iter_locked = FALSE;
|
||||
}
|
||||
|
||||
void Curl_conncache_multi_perform(struct Curl_multi *multi)
|
||||
{
|
||||
connc_perform(&multi->conn_cache);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Disconnects the given connection. Note the connection may not be the
|
||||
* primary connection, like when freeing room in the connection cache or
|
||||
* killing of a dead old connection.
|
||||
*
|
||||
* A connection needs an easy handle when closing down. We support this passed
|
||||
* in separately since the connection to get closed here is often already
|
||||
* disassociated from an easy handle.
|
||||
*
|
||||
* This function MUST NOT reset state in the Curl_easy struct if that
|
||||
* isn't strictly bound to the life-time of *this* particular connection.
|
||||
*
|
||||
*/
|
||||
static void connc_disconnect(struct Curl_easy *data,
|
||||
struct connectdata *conn,
|
||||
struct conncache *connc,
|
||||
bool do_shutdown)
|
||||
{
|
||||
bool done;
|
||||
|
||||
/* there must be a connection to close */
|
||||
DEBUGASSERT(conn);
|
||||
/* it must be removed from the connection cache */
|
||||
DEBUGASSERT(!conn->bundle);
|
||||
/* there must be an associated transfer */
|
||||
DEBUGASSERT(data || connc);
|
||||
if(!data)
|
||||
data = connc->closure_handle;
|
||||
|
||||
/* the transfer must be detached from the connection */
|
||||
DEBUGASSERT(data && !data->conn);
|
||||
|
||||
if(connc && connc->multi && connc->multi->socket_cb) {
|
||||
unsigned int i;
|
||||
for(i = 0; i < 2; ++i) {
|
||||
if(CURL_SOCKET_BAD == conn->sock[i])
|
||||
continue;
|
||||
/* remove all connection's sockets from event handling */
|
||||
connc->multi->in_callback = TRUE;
|
||||
connc->multi->socket_cb(data, conn->sock[i], CURL_POLL_REMOVE,
|
||||
connc->multi->socket_userp, NULL);
|
||||
connc->multi->in_callback = FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
Curl_attach_connection(data, conn);
|
||||
|
||||
connc_run_conn_shutdown_handler(data, conn);
|
||||
if(do_shutdown) {
|
||||
/* Make a last attempt to shutdown handlers and filters, if
|
||||
* not done so already. */
|
||||
connc_run_conn_shutdown(data, conn, &done);
|
||||
}
|
||||
|
||||
if(connc)
|
||||
DEBUGF(infof(data, "[CCACHE] closing #%" CURL_FORMAT_CURL_OFF_T,
|
||||
conn->connection_id));
|
||||
else
|
||||
DEBUGF(infof(data, "closing connection #%" CURL_FORMAT_CURL_OFF_T,
|
||||
conn->connection_id));
|
||||
Curl_conn_close(data, SECONDARYSOCKET);
|
||||
Curl_conn_close(data, FIRSTSOCKET);
|
||||
Curl_detach_connection(data);
|
||||
|
||||
Curl_conn_free(data, conn);
|
||||
}
|
||||
|
||||
|
||||
static CURLcode connc_update_shutdown_ev(struct Curl_multi *multi,
|
||||
struct Curl_easy *data,
|
||||
struct connectdata *conn)
|
||||
{
|
||||
struct easy_pollset ps;
|
||||
unsigned int i;
|
||||
int rc;
|
||||
|
||||
DEBUGASSERT(data);
|
||||
DEBUGASSERT(multi);
|
||||
DEBUGASSERT(multi->socket_cb);
|
||||
|
||||
memset(&ps, 0, sizeof(ps));
|
||||
Curl_attach_connection(data, conn);
|
||||
Curl_conn_adjust_pollset(data, &ps);
|
||||
Curl_detach_connection(data);
|
||||
|
||||
if(!ps.num)
|
||||
return CURLE_FAILED_INIT;
|
||||
|
||||
for(i = 0; i < ps.num; ++i) {
|
||||
DEBUGF(infof(data, "[CCACHE] set socket=%" CURL_FORMAT_SOCKET_T
|
||||
" events=%d on #%" CURL_FORMAT_CURL_OFF_T,
|
||||
ps.sockets[i], ps.actions[i], conn->connection_id));
|
||||
multi->in_callback = TRUE;
|
||||
rc = multi->socket_cb(data, ps.sockets[i], ps.actions[i],
|
||||
multi->socket_userp, NULL);
|
||||
multi->in_callback = FALSE;
|
||||
if(rc == -1)
|
||||
return CURLE_FAILED_INIT;
|
||||
}
|
||||
|
||||
return CURLE_OK;
|
||||
}
|
||||
|
||||
void Curl_conncache_multi_socket(struct Curl_multi *multi,
|
||||
curl_socket_t s, int ev_bitmask)
|
||||
{
|
||||
struct conncache *connc = &multi->conn_cache;
|
||||
struct Curl_easy *data = connc->closure_handle;
|
||||
struct Curl_llist_element *e = connc->shutdowns.conn_list.head;
|
||||
struct connectdata *conn;
|
||||
bool done;
|
||||
|
||||
(void)ev_bitmask;
|
||||
DEBUGASSERT(multi->socket_cb);
|
||||
if(!e)
|
||||
return;
|
||||
|
||||
connc->shutdowns.iter_locked = TRUE;
|
||||
while(e) {
|
||||
conn = e->ptr;
|
||||
if(s == conn->sock[FIRSTSOCKET] || s == conn->sock[SECONDARYSOCKET]) {
|
||||
Curl_attach_connection(data, conn);
|
||||
connc_run_conn_shutdown(data, conn, &done);
|
||||
DEBUGF(infof(data, "[CCACHE] shutdown #%" CURL_FORMAT_CURL_OFF_T
|
||||
", done=%d", conn->connection_id, done));
|
||||
Curl_detach_connection(data);
|
||||
if(done || connc_update_shutdown_ev(multi, data, conn)) {
|
||||
Curl_llist_remove(&connc->shutdowns.conn_list, e, NULL);
|
||||
connc_disconnect(NULL, conn, connc, FALSE);
|
||||
}
|
||||
break;
|
||||
}
|
||||
e = e->next;
|
||||
}
|
||||
connc->shutdowns.iter_locked = FALSE;
|
||||
}
|
||||
|
||||
void Curl_conncache_multi_close_all(struct Curl_multi *multi)
|
||||
{
|
||||
connc_close_all(&multi->conn_cache);
|
||||
}
|
||||
|
||||
|
||||
#define NUM_POLLS_ON_STACK 10
|
||||
|
||||
static CURLcode connc_shutdown_wait(struct conncache *connc, int timeout_ms)
|
||||
{
|
||||
struct pollfd a_few_on_stack[NUM_POLLS_ON_STACK];
|
||||
struct curl_pollfds cpfds;
|
||||
CURLcode result;
|
||||
|
||||
Curl_pollfds_init(&cpfds, a_few_on_stack, NUM_POLLS_ON_STACK);
|
||||
|
||||
result = Curl_conncache_add_pollfds(connc, &cpfds);
|
||||
if(result)
|
||||
goto out;
|
||||
|
||||
Curl_poll(cpfds.pfds, cpfds.n, CURLMIN(timeout_ms, 1000));
|
||||
|
||||
out:
|
||||
Curl_pollfds_cleanup(&cpfds);
|
||||
return result;
|
||||
}
|
||||
|
||||
static void connc_shutdown_all(struct conncache *connc, int timeout_ms)
|
||||
{
|
||||
struct Curl_easy *data = connc->closure_handle;
|
||||
struct connectdata *conn;
|
||||
struct curltime started = Curl_now();
|
||||
|
||||
if(!data)
|
||||
return;
|
||||
(void)data;
|
||||
|
||||
DEBUGF(infof(data, "conncache shutdown all"));
|
||||
|
||||
/* Move all connections into the shutdown queue */
|
||||
conn = connc_find_first_connection(connc);
|
||||
while(conn) {
|
||||
/* This will remove the connection from the cache */
|
||||
DEBUGF(infof(data, "moving connection %" CURL_FORMAT_CURL_OFF_T
|
||||
" to shutdown queue", conn->connection_id));
|
||||
connc_remove_conn(connc, conn);
|
||||
connc_discard_conn(connc, NULL, conn, FALSE);
|
||||
conn = connc_find_first_connection(connc);
|
||||
}
|
||||
|
||||
DEBUGASSERT(!connc->shutdowns.iter_locked);
|
||||
while(connc->shutdowns.conn_list.head) {
|
||||
timediff_t timespent;
|
||||
int remain_ms;
|
||||
|
||||
connc_perform(connc);
|
||||
|
||||
if(!connc->shutdowns.conn_list.head) {
|
||||
DEBUGF(infof(data, "conncache shutdown ok"));
|
||||
break;
|
||||
}
|
||||
|
||||
/* wait for activity, timeout or "nothing" */
|
||||
timespent = Curl_timediff(Curl_now(), started);
|
||||
if(timespent >= (timediff_t)timeout_ms) {
|
||||
DEBUGF(infof(data, "conncache shutdown %s",
|
||||
(timeout_ms > 0)? "timeout" : "best effort done"));
|
||||
break;
|
||||
}
|
||||
|
||||
remain_ms = timeout_ms - (int)timespent;
|
||||
if(connc_shutdown_wait(connc, remain_ms)) {
|
||||
DEBUGF(infof(data, "conncache shutdown all, abort"));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* Due to errors/timeout, we might come here without being full ydone. */
|
||||
connc_shutdown_discard_all(connc);
|
||||
}
|
||||
|
||||
#if 0
|
||||
/* Useful for debugging the connection cache */
|
||||
void Curl_conncache_print(struct conncache *connc)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue