2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-17 02:53:41 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-11-28 06:09:18 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2008-01-16 07:24:00 -05:00
|
|
|
* Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-11-28 06:09:18 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* 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 http://curl.haxx.se/docs/copyright.html.
|
2004-05-17 02:53:41 -04:00
|
|
|
*
|
2001-11-28 06:09:18 -05:00
|
|
|
* 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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-11-28 06:09:18 -05:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-11-28 06:09:18 -05:00
|
|
|
|
|
|
|
#include "setup.h"
|
2007-02-25 23:24:26 -05:00
|
|
|
|
2002-01-03 10:01:22 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2003-02-14 04:03:03 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
2003-06-13 02:48:04 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2003-02-14 04:03:03 -05:00
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
#include <curl/curl.h>
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2002-01-03 10:01:22 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "transfer.h"
|
|
|
|
#include "url.h"
|
2002-08-12 05:43:20 -04:00
|
|
|
#include "connect.h"
|
2003-04-29 14:03:30 -04:00
|
|
|
#include "progress.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
#include "memory.h"
|
2005-01-11 10:25:29 -05:00
|
|
|
#include "easyif.h"
|
|
|
|
#include "multiif.h"
|
2005-02-09 08:06:40 -05:00
|
|
|
#include "sendf.h"
|
2006-04-10 11:00:53 -04:00
|
|
|
#include "timeval.h"
|
2007-02-25 06:38:13 -05:00
|
|
|
#include "http.h"
|
2002-01-03 10:01:22 -05:00
|
|
|
|
2002-04-27 18:21:51 -04:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
2007-06-26 17:09:28 -04:00
|
|
|
/*
|
|
|
|
CURL_SOCKET_HASH_TABLE_SIZE should be a prime number. Increasing it from 97
|
|
|
|
to 911 takes on a 32-bit machine 4 x 804 = 3211 more bytes. Still, every
|
|
|
|
CURL handle takes 45-50 K memory, therefore this 3K are not significant.
|
|
|
|
*/
|
|
|
|
#ifndef CURL_SOCKET_HASH_TABLE_SIZE
|
|
|
|
#define CURL_SOCKET_HASH_TABLE_SIZE 911
|
|
|
|
#endif
|
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
struct Curl_message {
|
|
|
|
/* the 'CURLMsg' is the part that is visible to the external user */
|
|
|
|
struct CURLMsg extmsg;
|
|
|
|
struct Curl_message *next;
|
|
|
|
};
|
|
|
|
|
2007-03-23 18:25:04 -04:00
|
|
|
/* NOTE: if you add a state here, add the name to the statename[] array as
|
|
|
|
well!
|
|
|
|
*/
|
2001-11-28 06:09:18 -05:00
|
|
|
typedef enum {
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLM_STATE_INIT, /* start in this state */
|
2003-08-05 10:40:59 -04:00
|
|
|
CURLM_STATE_CONNECT, /* resolve/connect has been sent off */
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLM_STATE_WAITRESOLVE, /* awaiting the resolve to finalize */
|
|
|
|
CURLM_STATE_WAITCONNECT, /* awaiting the connect to finalize */
|
2007-02-25 06:38:13 -05:00
|
|
|
CURLM_STATE_WAITPROXYCONNECT, /* awaiting proxy CONNECT to finalize */
|
2007-03-01 07:02:17 -05:00
|
|
|
CURLM_STATE_PROTOCONNECT, /* completing the protocol-specific connect phase */
|
2006-09-07 17:49:20 -04:00
|
|
|
CURLM_STATE_WAITDO, /* wait for our turn to send the request */
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLM_STATE_DO, /* start send off the request (part 1) */
|
|
|
|
CURLM_STATE_DOING, /* sending off the request (part 1) */
|
2002-08-12 05:43:20 -04:00
|
|
|
CURLM_STATE_DO_MORE, /* send off the request (part 2) */
|
2006-09-07 17:49:20 -04:00
|
|
|
CURLM_STATE_DO_DONE, /* done sending off request */
|
|
|
|
CURLM_STATE_WAITPERFORM, /* wait for our turn to read the response */
|
2002-08-12 05:43:20 -04:00
|
|
|
CURLM_STATE_PERFORM, /* transfer data */
|
2006-06-22 17:36:53 -04:00
|
|
|
CURLM_STATE_TOOFAST, /* wait because limit-rate exceeded */
|
2002-08-12 05:43:20 -04:00
|
|
|
CURLM_STATE_DONE, /* post data transfer operation */
|
|
|
|
CURLM_STATE_COMPLETED, /* operation complete */
|
2001-11-28 06:09:18 -05:00
|
|
|
|
|
|
|
CURLM_STATE_LAST /* not a true state, never use this */
|
|
|
|
} CURLMstate;
|
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* we support N sockets per easy handle. Set the corresponding bit to what
|
2006-04-10 11:00:53 -04:00
|
|
|
action we should wait for */
|
2006-09-10 18:15:32 -04:00
|
|
|
#define MAX_SOCKSPEREASYHANDLE 5
|
2006-04-10 11:00:53 -04:00
|
|
|
#define GETSOCK_READABLE (0x00ff)
|
|
|
|
#define GETSOCK_WRITABLE (0xff00)
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
struct closure {
|
|
|
|
struct closure *next; /* a simple one-way list of structs */
|
|
|
|
struct SessionHandle *easy_handle;
|
|
|
|
};
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
struct Curl_one_easy {
|
|
|
|
/* first, two fields for the linked list of these */
|
|
|
|
struct Curl_one_easy *next;
|
|
|
|
struct Curl_one_easy *prev;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2002-01-03 10:01:22 -05:00
|
|
|
struct SessionHandle *easy_handle; /* the easy handle for this unit */
|
|
|
|
struct connectdata *easy_conn; /* the "unit's" connection */
|
|
|
|
|
2001-11-28 10:46:25 -05:00
|
|
|
CURLMstate state; /* the handle's state */
|
|
|
|
CURLcode result; /* previous result */
|
2002-05-28 10:45:50 -04:00
|
|
|
|
|
|
|
struct Curl_message *msg; /* A pointer to one single posted message.
|
|
|
|
Cleanup should be done on this pointer NOT on
|
|
|
|
the linked list in Curl_multi. This message
|
|
|
|
will be deleted when this handle is removed
|
|
|
|
from the multi-handle */
|
|
|
|
int msg_num; /* number of messages left in 'msg' to return */
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* Array with the plain socket numbers this handle takes care of, in no
|
|
|
|
particular order. Note that all sockets are added to the sockhash, where
|
|
|
|
the state etc are also kept. This array is mostly used to detect when a
|
|
|
|
socket is to be removed from the hash. See singlesocket(). */
|
|
|
|
curl_socket_t sockets[MAX_SOCKSPEREASYHANDLE];
|
|
|
|
int numsocks;
|
2001-11-28 06:09:18 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#define CURL_MULTI_HANDLE 0x000bab1e
|
|
|
|
|
2006-02-23 07:20:48 -05:00
|
|
|
#define GOOD_MULTI_HANDLE(x) \
|
2007-05-02 15:13:56 -04:00
|
|
|
((x)&&(((struct Curl_multi *)(x))->type == CURL_MULTI_HANDLE))
|
2006-09-10 18:15:32 -04:00
|
|
|
#define GOOD_EASY_HANDLE(x) \
|
2007-05-02 15:13:56 -04:00
|
|
|
(((struct SessionHandle *)(x))->magic == CURLEASY_MAGIC_NUMBER)
|
2001-11-28 06:09:18 -05:00
|
|
|
|
|
|
|
/* This is the struct known as CURLM on the outside */
|
|
|
|
struct Curl_multi {
|
|
|
|
/* First a simple identifier to easier detect if a user mix up
|
|
|
|
this multi handle with an easy handle. Set this to CURL_MULTI_HANDLE. */
|
|
|
|
long type;
|
|
|
|
|
|
|
|
/* We have a linked list with easy handles */
|
2004-05-17 02:53:41 -04:00
|
|
|
struct Curl_one_easy easy;
|
2001-11-28 11:00:18 -05:00
|
|
|
|
2006-08-02 18:29:29 -04:00
|
|
|
int num_easy; /* amount of entries in the linked list above. */
|
|
|
|
int num_msgs; /* amount of messages in the easy handles */
|
|
|
|
int num_alive; /* amount of easy handles that are added but have not yet
|
|
|
|
reached COMPLETE state */
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* callback function and user data pointer for the *socket() API */
|
|
|
|
curl_socket_callback socket_cb;
|
|
|
|
void *socket_userp;
|
|
|
|
|
2002-01-07 15:52:32 -05:00
|
|
|
/* Hostname cache */
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_hash *hostcache;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
/* timetree points to the splay-tree of time nodes to figure out expire
|
|
|
|
times of all currently set timers */
|
|
|
|
struct Curl_tree *timetree;
|
|
|
|
|
|
|
|
/* 'sockhash' is the lookup hash for socket descriptor => easy handles (note
|
|
|
|
the pluralis form, there can be more than one easy handle waiting on the
|
|
|
|
same actual socket) */
|
|
|
|
struct curl_hash *sockhash;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
/* Whether pipelining is enabled for this multi handle */
|
|
|
|
bool pipelining_enabled;
|
|
|
|
|
|
|
|
/* shared connection cache */
|
|
|
|
struct conncache *connc;
|
2007-05-30 16:04:44 -04:00
|
|
|
long maxconnects; /* if >0, a fixed limit of the maximum number of entries
|
|
|
|
we're allowed to grow the connection cache to */
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
/* list of easy handles kept around for doing nice connection closures */
|
|
|
|
struct closure *closure;
|
2006-10-12 04:36:47 -04:00
|
|
|
|
|
|
|
/* timer callback and user data pointer for the *socket() API */
|
|
|
|
curl_multi_timer_callback timer_cb;
|
|
|
|
void *timer_userp;
|
|
|
|
time_t timer_lastcall; /* the fixed time for the timeout for the previous
|
|
|
|
callback */
|
2001-11-28 06:09:18 -05:00
|
|
|
};
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
static bool multi_conn_using(struct Curl_multi *multi,
|
|
|
|
struct SessionHandle *data);
|
2006-09-10 18:15:32 -04:00
|
|
|
static void singlesocket(struct Curl_multi *multi,
|
|
|
|
struct Curl_one_easy *easy);
|
2006-09-28 17:26:06 -04:00
|
|
|
static void add_closure(struct Curl_multi *multi,
|
|
|
|
struct SessionHandle *data);
|
2006-10-12 04:36:47 -04:00
|
|
|
static int update_timer(struct Curl_multi *multi);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2008-01-16 07:24:00 -05:00
|
|
|
static CURLcode addHandleToSendOrPendPipeline(struct SessionHandle *handle,
|
|
|
|
struct connectdata *conn);
|
|
|
|
static int checkPendPipeline(struct connectdata *conn);
|
|
|
|
static int moveHandleFromSendToRecvPipeline(struct SessionHandle *habdle,
|
|
|
|
struct connectdata *conn);
|
|
|
|
static bool isHandleAtHead(struct SessionHandle *handle,
|
|
|
|
struct curl_llist *pipeline);
|
|
|
|
|
2006-10-13 03:11:26 -04:00
|
|
|
#ifdef CURLDEBUG
|
2007-05-02 15:13:56 -04:00
|
|
|
static const char * const statename[]={
|
2006-10-13 03:11:26 -04:00
|
|
|
"INIT",
|
|
|
|
"CONNECT",
|
|
|
|
"WAITRESOLVE",
|
|
|
|
"WAITCONNECT",
|
2007-03-23 18:25:04 -04:00
|
|
|
"WAITPROXYCONNECT",
|
2006-10-13 03:11:26 -04:00
|
|
|
"PROTOCONNECT",
|
|
|
|
"WAITDO",
|
|
|
|
"DO",
|
|
|
|
"DOING",
|
|
|
|
"DO_MORE",
|
|
|
|
"DO_DONE",
|
|
|
|
"WAITPERFORM",
|
|
|
|
"PERFORM",
|
|
|
|
"TOOFAST",
|
|
|
|
"DONE",
|
|
|
|
"COMPLETED",
|
|
|
|
};
|
|
|
|
|
|
|
|
void curl_multi_dump(CURLM *multi_handle);
|
|
|
|
#endif
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* always use this function to change state, to make debugging easier */
|
|
|
|
static void multistate(struct Curl_one_easy *easy, CURLMstate state)
|
|
|
|
{
|
|
|
|
#ifdef CURLDEBUG
|
2007-09-26 21:45:22 -04:00
|
|
|
long connectindex = -5000;
|
2005-02-09 08:06:40 -05:00
|
|
|
#endif
|
2006-10-07 17:04:57 -04:00
|
|
|
CURLMstate oldstate = easy->state;
|
|
|
|
|
|
|
|
if(oldstate == state)
|
|
|
|
/* don't bother when the new state is the same as the old state */
|
|
|
|
return;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
easy->state = state;
|
|
|
|
|
2006-09-08 01:18:07 -04:00
|
|
|
#ifdef CURLDEBUG
|
2006-09-07 17:49:20 -04:00
|
|
|
if(easy->state > CURLM_STATE_CONNECT &&
|
|
|
|
easy->state < CURLM_STATE_COMPLETED)
|
2007-09-26 21:45:22 -04:00
|
|
|
connectindex = easy->easy_conn->connectindex;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
infof(easy->easy_handle,
|
2006-09-09 09:24:42 -04:00
|
|
|
"STATE: %s => %s handle %p; (connection #%ld) \n",
|
2006-09-07 17:49:20 -04:00
|
|
|
statename[oldstate], statename[easy->state],
|
2007-09-26 21:45:22 -04:00
|
|
|
(char *)easy, connectindex);
|
2005-02-09 08:06:40 -05:00
|
|
|
#endif
|
2006-08-02 18:29:29 -04:00
|
|
|
if(state == CURLM_STATE_COMPLETED)
|
|
|
|
/* changing to COMPLETED means there's one less easy handle 'alive' */
|
|
|
|
easy->easy_handle->multi->num_alive--;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/*
|
2006-04-21 09:40:07 -04:00
|
|
|
* We add one of these structs to the sockhash for a particular socket
|
2006-04-10 11:00:53 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct Curl_sh_entry {
|
|
|
|
struct SessionHandle *easy;
|
|
|
|
time_t timestamp;
|
|
|
|
long inuse;
|
2006-04-21 09:40:07 -04:00
|
|
|
int action; /* what action READ/WRITE this socket waits for */
|
2006-09-10 18:15:32 -04:00
|
|
|
curl_socket_t socket; /* mainly to ease debugging */
|
2006-07-26 18:19:42 -04:00
|
|
|
void *socketp; /* settable by users with curl_multi_assign() */
|
2006-04-10 11:00:53 -04:00
|
|
|
};
|
2006-04-21 09:40:07 -04:00
|
|
|
/* bits for 'action' having no bits means this socket is not expecting any
|
|
|
|
action */
|
|
|
|
#define SH_READ 1
|
2006-05-26 07:26:42 -04:00
|
|
|
#define SH_WRITE 2
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
/* make sure this socket is present in the hash for this handle */
|
2006-09-10 18:15:32 -04:00
|
|
|
static struct Curl_sh_entry *sh_addentry(struct curl_hash *sh,
|
|
|
|
curl_socket_t s,
|
|
|
|
struct SessionHandle *data)
|
2001-11-28 06:09:18 -05:00
|
|
|
{
|
2006-04-10 11:00:53 -04:00
|
|
|
struct Curl_sh_entry *there =
|
|
|
|
Curl_hash_pick(sh, (char *)&s, sizeof(curl_socket_t));
|
|
|
|
struct Curl_sh_entry *check;
|
|
|
|
|
2006-04-21 09:40:07 -04:00
|
|
|
if(there)
|
|
|
|
/* it is present, return fine */
|
2006-09-10 18:15:32 -04:00
|
|
|
return there;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* not present, add it */
|
|
|
|
check = calloc(sizeof(struct Curl_sh_entry), 1);
|
|
|
|
if(!check)
|
2006-09-10 18:15:32 -04:00
|
|
|
return NULL; /* major failure */
|
2006-04-10 11:00:53 -04:00
|
|
|
check->easy = data;
|
2006-09-10 18:15:32 -04:00
|
|
|
check->socket = s;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2006-04-21 09:40:07 -04:00
|
|
|
/* make/add new hash entry */
|
2006-09-10 18:15:32 -04:00
|
|
|
if(NULL == Curl_hash_add(sh, (char *)&s, sizeof(curl_socket_t), check)) {
|
|
|
|
free(check);
|
|
|
|
return NULL; /* major failure */
|
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
return check; /* things are good in sockhash land */
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* delete the given socket + handle from the hash */
|
2006-04-21 09:40:07 -04:00
|
|
|
static void sh_delentry(struct curl_hash *sh, curl_socket_t s)
|
2006-04-10 11:00:53 -04:00
|
|
|
{
|
|
|
|
struct Curl_sh_entry *there =
|
|
|
|
Curl_hash_pick(sh, (char *)&s, sizeof(curl_socket_t));
|
|
|
|
|
2006-04-21 09:40:07 -04:00
|
|
|
if(there) {
|
|
|
|
/* this socket is in the hash */
|
|
|
|
/* We remove the hash entry. (This'll end up in a call to
|
|
|
|
sh_freeentry().) */
|
|
|
|
Curl_hash_delete(sh, (char *)&s, sizeof(curl_socket_t));
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* free a sockhash entry
|
|
|
|
*/
|
|
|
|
static void sh_freeentry(void *freethis)
|
|
|
|
{
|
|
|
|
struct Curl_sh_entry *p = (struct Curl_sh_entry *) freethis;
|
|
|
|
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
|
2007-06-26 17:09:28 -04:00
|
|
|
static size_t fd_key_compare(void*k1, size_t k1_len, void*k2, size_t k2_len)
|
|
|
|
{
|
|
|
|
(void) k1_len; (void) k2_len;
|
|
|
|
|
|
|
|
return ((*((int* ) k1)) == (*((int* ) k2))) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t hash_fd(void* key, size_t key_length, size_t slots_num)
|
|
|
|
{
|
|
|
|
int fd = * ((int* ) key);
|
|
|
|
(void) key_length;
|
|
|
|
|
|
|
|
return (fd % (int)slots_num);
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/*
|
|
|
|
* sh_init() creates a new socket hash and returns the handle for it.
|
|
|
|
*
|
|
|
|
* Quote from README.multi_socket:
|
|
|
|
*
|
|
|
|
* "Some tests at 7000 and 9000 connections showed that the socket hash lookup
|
|
|
|
* is somewhat of a bottle neck. Its current implementation may be a bit too
|
|
|
|
* limiting. It simply has a fixed-size array, and on each entry in the array
|
|
|
|
* it has a linked list with entries. So the hash only checks which list to
|
|
|
|
* scan through. The code I had used so for used a list with merely 7 slots
|
|
|
|
* (as that is what the DNS hash uses) but with 7000 connections that would
|
|
|
|
* make an average of 1000 nodes in each list to run through. I upped that to
|
|
|
|
* 97 slots (I believe a prime is suitable) and noticed a significant speed
|
|
|
|
* increase. I need to reconsider the hash implementation or use a rather
|
|
|
|
* large default value like this. At 9000 connections I was still below 10us
|
|
|
|
* per call."
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static struct curl_hash *sh_init(void)
|
|
|
|
{
|
2007-06-26 17:09:28 -04:00
|
|
|
return Curl_hash_alloc(CURL_SOCKET_HASH_TABLE_SIZE, hash_fd, fd_key_compare,
|
|
|
|
sh_freeentry);
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
CURLM *curl_multi_init(void)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi = (void *)calloc(sizeof(struct Curl_multi), 1);
|
|
|
|
|
|
|
|
if(!multi)
|
2004-05-13 11:17:49 -04:00
|
|
|
return NULL;
|
2003-09-11 18:14:29 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
multi->type = CURL_MULTI_HANDLE;
|
|
|
|
|
2004-03-30 08:02:31 -05:00
|
|
|
multi->hostcache = Curl_mk_dnscache();
|
2003-09-11 18:14:29 -04:00
|
|
|
if(!multi->hostcache) {
|
|
|
|
/* failure, free mem and bail out */
|
|
|
|
free(multi);
|
2006-04-10 11:00:53 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
multi->sockhash = sh_init();
|
|
|
|
if(!multi->sockhash) {
|
|
|
|
/* failure, free mem and bail out */
|
|
|
|
Curl_hash_destroy(multi->hostcache);
|
|
|
|
free(multi);
|
|
|
|
return NULL;
|
2003-09-11 18:14:29 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-12-05 10:36:26 -05:00
|
|
|
multi->connc = Curl_mk_connc(CONNCACHE_MULTI, -1);
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!multi->connc) {
|
2007-04-07 13:25:19 -04:00
|
|
|
Curl_hash_destroy(multi->sockhash);
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_hash_destroy(multi->hostcache);
|
|
|
|
free(multi);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-02-21 16:59:40 -05:00
|
|
|
/* Let's make the doubly-linked list a circular list. This makes
|
|
|
|
the linked list code simpler and allows inserting at the end
|
|
|
|
with less work (we didn't keep a tail pointer before). */
|
|
|
|
multi->easy.next = &multi->easy;
|
|
|
|
multi->easy.prev = &multi->easy;
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
return (CURLM *) multi;
|
|
|
|
}
|
|
|
|
|
|
|
|
CURLMcode curl_multi_add_handle(CURLM *multi_handle,
|
|
|
|
CURL *easy_handle)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
struct Curl_one_easy *easy;
|
2006-10-04 17:11:08 -04:00
|
|
|
struct closure *cl;
|
|
|
|
struct closure *prev=NULL;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
|
|
|
/* First, make some basic checks that the CURLM handle is a good handle */
|
|
|
|
if(!GOOD_MULTI_HANDLE(multi))
|
|
|
|
return CURLM_BAD_HANDLE;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* Verify that we got a somewhat good easy handle too */
|
|
|
|
if(!GOOD_EASY_HANDLE(easy_handle))
|
|
|
|
return CURLM_BAD_EASY_HANDLE;
|
|
|
|
|
2006-10-12 10:30:47 -04:00
|
|
|
/* Prevent users to add the same handle more than once! */
|
|
|
|
if(((struct SessionHandle *)easy_handle)->multi)
|
|
|
|
/* possibly we should create a new unique error code for this condition */
|
|
|
|
return CURLM_BAD_EASY_HANDLE;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* Now, time to add an easy handle to the multi stack */
|
2006-04-10 11:00:53 -04:00
|
|
|
easy = (struct Curl_one_easy *)calloc(sizeof(struct Curl_one_easy), 1);
|
2001-11-28 06:09:18 -05:00
|
|
|
if(!easy)
|
|
|
|
return CURLM_OUT_OF_MEMORY;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2006-10-04 17:11:08 -04:00
|
|
|
cl = multi->closure;
|
|
|
|
while(cl) {
|
|
|
|
struct closure *next = cl->next;
|
2006-10-09 07:21:40 -04:00
|
|
|
if(cl->easy_handle == (struct SessionHandle *)easy_handle) {
|
2006-10-04 17:11:08 -04:00
|
|
|
/* remove this handle from the closure list */
|
|
|
|
free(cl);
|
|
|
|
if(prev)
|
|
|
|
prev->next = next;
|
|
|
|
else
|
|
|
|
multi->closure = next;
|
|
|
|
break; /* no need to continue since this handle can only be present once
|
|
|
|
in the list */
|
|
|
|
}
|
2007-02-12 07:15:41 -05:00
|
|
|
prev = cl;
|
2006-10-04 17:11:08 -04:00
|
|
|
cl = next;
|
|
|
|
}
|
2001-11-28 06:09:18 -05:00
|
|
|
|
|
|
|
/* set the easy handle */
|
|
|
|
easy->easy_handle = easy_handle;
|
2005-02-09 08:06:40 -05:00
|
|
|
multistate(easy, CURLM_STATE_INIT);
|
2003-09-11 18:14:29 -04:00
|
|
|
|
2007-04-01 04:24:23 -04:00
|
|
|
/* set the back pointer to one_easy to assist in removal */
|
|
|
|
easy->easy_handle->multi_pos = easy;
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/* for multi interface connections, we share DNS cache automatically if the
|
2006-07-07 18:58:06 -04:00
|
|
|
easy handle's one is currently private. */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->easy_handle->dns.hostcache &&
|
2006-07-07 18:58:06 -04:00
|
|
|
(easy->easy_handle->dns.hostcachetype == HCACHE_PRIVATE)) {
|
|
|
|
Curl_hash_destroy(easy->easy_handle->dns.hostcache);
|
2006-07-10 12:14:36 -04:00
|
|
|
easy->easy_handle->dns.hostcache = NULL;
|
|
|
|
easy->easy_handle->dns.hostcachetype = HCACHE_NONE;
|
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!easy->easy_handle->dns.hostcache ||
|
2006-07-10 12:14:36 -04:00
|
|
|
(easy->easy_handle->dns.hostcachetype == HCACHE_NONE)) {
|
2006-07-07 18:58:06 -04:00
|
|
|
easy->easy_handle->dns.hostcache = multi->hostcache;
|
|
|
|
easy->easy_handle->dns.hostcachetype = HCACHE_MULTI;
|
|
|
|
}
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(easy->easy_handle->state.connc) {
|
|
|
|
if(easy->easy_handle->state.connc->type == CONNCACHE_PRIVATE) {
|
|
|
|
/* kill old private version */
|
|
|
|
Curl_rm_connc(easy->easy_handle->state.connc);
|
|
|
|
/* point out our shared one instead */
|
|
|
|
easy->easy_handle->state.connc = multi->connc;
|
|
|
|
}
|
|
|
|
/* else it is already using multi? */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* point out our shared one */
|
|
|
|
easy->easy_handle->state.connc = multi->connc;
|
|
|
|
|
|
|
|
/* Make sure the type is setup correctly */
|
|
|
|
easy->easy_handle->state.connc->type = CONNCACHE_MULTI;
|
|
|
|
|
2007-02-21 16:59:40 -05:00
|
|
|
/* This adds the new entry at the back of the list
|
|
|
|
to try and maintain a FIFO queue so the pipelined
|
|
|
|
requests are in order. */
|
|
|
|
|
|
|
|
/* We add this new entry last in the list. We make our 'next' point to the
|
|
|
|
'first' struct and our 'prev' point to the previous 'prev' */
|
|
|
|
easy->next = &multi->easy;
|
|
|
|
easy->prev = multi->easy.prev;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2007-02-21 16:59:40 -05:00
|
|
|
/* make 'easy' the last node in the chain */
|
|
|
|
multi->easy.prev = easy;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2007-02-21 16:59:40 -05:00
|
|
|
/* if there was a prev node, make sure its 'next' pointer links to
|
2001-11-28 06:09:18 -05:00
|
|
|
the new node */
|
2007-02-21 16:59:40 -05:00
|
|
|
easy->prev->next = easy;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2005-01-10 05:07:07 -05:00
|
|
|
Curl_easy_addmulti(easy_handle, multi_handle);
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* make the SessionHandle struct refer back to this struct */
|
|
|
|
easy->easy_handle->set.one_easy = easy;
|
|
|
|
|
2007-05-02 09:47:56 -04:00
|
|
|
/* Set the timeout for this handle to expire really soon so that it will
|
|
|
|
be taken care of even when this handle is added in the midst of operation
|
|
|
|
when only the curl_multi_socket() API is used. During that flow, only
|
|
|
|
sockets that time-out or have actions will be dealt with. Since this
|
|
|
|
handle has no action yet, we make sure it times out to get things to
|
|
|
|
happen. */
|
|
|
|
Curl_expire(easy->easy_handle, 10);
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* increase the node-counter */
|
|
|
|
multi->num_easy++;
|
2006-09-16 17:50:29 -04:00
|
|
|
|
2006-09-20 08:03:50 -04:00
|
|
|
if((multi->num_easy * 4) > multi->connc->num) {
|
|
|
|
/* We want the connection cache to have plenty room. Before we supported
|
|
|
|
the shared cache every single easy handle had 5 entries in their cache
|
|
|
|
by default. */
|
2007-08-30 14:26:19 -04:00
|
|
|
long newmax = multi->num_easy * 4;
|
2007-05-30 16:04:44 -04:00
|
|
|
|
|
|
|
if(multi->maxconnects && (multi->maxconnects < newmax))
|
|
|
|
/* don't grow beyond the allowed size */
|
|
|
|
newmax = multi->maxconnects;
|
|
|
|
|
|
|
|
if(newmax > multi->connc->num) {
|
|
|
|
/* we only do this is we can in fact grow the cache */
|
|
|
|
CURLcode res = Curl_ch_connc(easy_handle, multi->connc, newmax);
|
2007-08-30 14:26:19 -04:00
|
|
|
if(res != CURLE_OK) {
|
|
|
|
/* FIXME: may need to do more cleanup here */
|
|
|
|
curl_multi_remove_handle(multi_handle, easy_handle);
|
2007-08-31 13:54:01 -04:00
|
|
|
return CURLM_OUT_OF_MEMORY;
|
2007-08-30 14:26:19 -04:00
|
|
|
}
|
2007-05-30 16:04:44 -04:00
|
|
|
}
|
2006-09-16 17:50:29 -04:00
|
|
|
}
|
|
|
|
|
2006-08-02 18:29:29 -04:00
|
|
|
/* increase the alive-counter */
|
|
|
|
multi->num_alive++;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2006-10-12 04:36:47 -04:00
|
|
|
update_timer(multi);
|
2004-08-31 02:04:43 -04:00
|
|
|
return CURLM_OK;
|
2001-11-28 06:09:18 -05:00
|
|
|
}
|
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
#if 0
|
|
|
|
/* Debug-function, used like this:
|
|
|
|
*
|
|
|
|
* Curl_hash_print(multi->sockhash, debug_print_sock_hash);
|
|
|
|
*
|
|
|
|
* Enable the hash print function first by editing hash.c
|
|
|
|
*/
|
|
|
|
static void debug_print_sock_hash(void *p)
|
|
|
|
{
|
|
|
|
struct Curl_sh_entry *sh = (struct Curl_sh_entry *)p;
|
|
|
|
|
|
|
|
fprintf(stderr, " [easy %p/magic %x/socket %d]",
|
|
|
|
(void *)sh->easy, sh->easy->magic, sh->socket);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
|
|
|
CURL *curl_handle)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
struct Curl_one_easy *easy;
|
|
|
|
|
|
|
|
/* First, make some basic checks that the CURLM handle is a good handle */
|
|
|
|
if(!GOOD_MULTI_HANDLE(multi))
|
|
|
|
return CURLM_BAD_HANDLE;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* Verify that we got a somewhat good easy handle too */
|
|
|
|
if(!GOOD_EASY_HANDLE(curl_handle))
|
|
|
|
return CURLM_BAD_EASY_HANDLE;
|
|
|
|
|
2007-04-01 04:24:23 -04:00
|
|
|
/* pick-up from the 'curl_handle' the kept position in the list */
|
|
|
|
easy = ((struct SessionHandle *)curl_handle)->multi_pos;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
if(easy) {
|
2007-01-26 22:14:25 -05:00
|
|
|
bool premature = (bool)(easy->state != CURLM_STATE_COMPLETED);
|
2007-01-16 17:22:10 -05:00
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* If the 'state' is not INIT or COMPLETED, we might need to do something
|
|
|
|
nice to put the easy_handle in a good known state when this returns. */
|
2007-01-16 17:22:10 -05:00
|
|
|
if(premature)
|
2006-08-25 09:53:20 -04:00
|
|
|
/* this handle is "alive" so we need to count down the total number of
|
|
|
|
alive connections when this is removed */
|
|
|
|
multi->num_alive--;
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2008-01-23 07:22:04 -05:00
|
|
|
if(easy->easy_conn &&
|
2008-02-03 07:31:35 -05:00
|
|
|
(easy->easy_conn->send_pipe->size +
|
|
|
|
easy->easy_conn->recv_pipe->size > 1) &&
|
2008-01-21 18:48:58 -05:00
|
|
|
easy->state > CURLM_STATE_WAITDO &&
|
2008-01-23 07:22:04 -05:00
|
|
|
easy->state < CURLM_STATE_COMPLETED) {
|
2008-01-21 18:48:58 -05:00
|
|
|
/* If the handle is in a pipeline and has started sending off its
|
|
|
|
request but not received its reponse yet, we need to close
|
|
|
|
connection. */
|
|
|
|
easy->easy_conn->bits.close = TRUE;
|
2008-01-23 07:22:04 -05:00
|
|
|
/* Set connection owner so that Curl_done() closes it.
|
|
|
|
We can sefely do this here since connection is killed. */
|
|
|
|
easy->easy_conn->data = easy->easy_handle;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2006-07-17 14:35:58 -04:00
|
|
|
/* The timer must be shut down before easy->multi is set to NULL,
|
|
|
|
else the timenode will remain in the splay tree after
|
|
|
|
curl_easy_cleanup is called. */
|
|
|
|
Curl_expire(easy->easy_handle, 0);
|
|
|
|
|
2006-07-07 18:58:06 -04:00
|
|
|
if(easy->easy_handle->dns.hostcachetype == HCACHE_MULTI) {
|
|
|
|
/* clear out the usage of the shared DNS cache */
|
|
|
|
easy->easy_handle->dns.hostcache = NULL;
|
|
|
|
easy->easy_handle->dns.hostcachetype = HCACHE_NONE;
|
|
|
|
}
|
|
|
|
|
2007-02-18 18:02:42 -05:00
|
|
|
/* we must call Curl_done() here (if we still "own it") so that we don't
|
|
|
|
leave a half-baked one around */
|
|
|
|
if(easy->easy_conn &&
|
|
|
|
(easy->easy_conn->data == easy->easy_handle)) {
|
2006-09-21 16:52:58 -04:00
|
|
|
|
|
|
|
/* Curl_done() clears the conn->data field to lose the association
|
2008-02-17 08:38:19 -05:00
|
|
|
between the easy handle and the connection
|
|
|
|
|
|
|
|
Note that this ignores the return code simply because there's nothing
|
|
|
|
really useful to do with it anyway! */
|
|
|
|
(void)Curl_done(&easy->easy_conn, easy->result, premature);
|
2006-09-21 16:52:58 -04:00
|
|
|
|
|
|
|
if(easy->easy_conn)
|
|
|
|
/* the connection is still alive, set back the association to enable
|
|
|
|
the check below to trigger TRUE */
|
|
|
|
easy->easy_conn->data = easy->easy_handle;
|
2006-09-07 17:49:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If this easy_handle was the last one in charge for one or more
|
|
|
|
connections a the shared connection cache, we might need to keep this
|
|
|
|
handle around until either A) the connection is closed and killed
|
|
|
|
properly, or B) another easy_handle uses the connection.
|
|
|
|
|
|
|
|
The reason why we need to have a easy_handle associated with a live
|
|
|
|
connection is simply that some connections will need a handle to get
|
|
|
|
closed down properly. Currently, the only connections that need to keep
|
|
|
|
a easy_handle handle around are using FTP(S). Such connections have
|
|
|
|
the PROT_CLOSEACTION bit set.
|
|
|
|
|
|
|
|
Thus, we need to check for all connections in the shared cache that
|
|
|
|
points to this handle and are using PROT_CLOSEACTION. If there's any,
|
2006-09-21 16:52:58 -04:00
|
|
|
we need to add this handle to the list of "easy handles kept around for
|
|
|
|
nice connection closures".
|
2006-09-07 17:49:20 -04:00
|
|
|
*/
|
2006-09-28 17:26:06 -04:00
|
|
|
if(multi_conn_using(multi, easy->easy_handle)) {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* There's at least one connection using this handle so we must keep
|
|
|
|
this handle around. We also keep the connection cache pointer
|
|
|
|
pointing to the shared one since that will be used on close as
|
|
|
|
well. */
|
|
|
|
easy->easy_handle->state.shared_conn = multi;
|
2006-09-28 17:26:06 -04:00
|
|
|
|
|
|
|
/* this handle is still being used by a shared connection cache and
|
|
|
|
thus we leave it around for now */
|
|
|
|
add_closure(multi, easy->easy_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(easy->easy_handle->state.connc->type == CONNCACHE_MULTI) {
|
|
|
|
/* if this was using the shared connection cache we clear the pointer
|
|
|
|
to that since we're not part of that handle anymore */
|
|
|
|
easy->easy_handle->state.connc = NULL;
|
|
|
|
|
|
|
|
/* and modify the connectindex since this handle can't point to the
|
|
|
|
connection cache anymore */
|
2007-04-10 16:46:40 -04:00
|
|
|
if(easy->easy_conn &&
|
|
|
|
(easy->easy_conn->send_pipe->size +
|
|
|
|
easy->easy_conn->recv_pipe->size == 0))
|
2006-09-28 17:26:06 -04:00
|
|
|
easy->easy_conn->connectindex = -1;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* change state without using multistate(), only to make singlesocket() do
|
|
|
|
what we want */
|
|
|
|
easy->state = CURLM_STATE_COMPLETED;
|
|
|
|
singlesocket(multi, easy); /* to let the application know what sockets
|
|
|
|
that vanish with this handle */
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_easy_addmulti(easy->easy_handle, NULL); /* clear the association
|
|
|
|
to this multi handle */
|
2006-02-23 07:20:48 -05:00
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* make the previous node point to our next */
|
|
|
|
if(easy->prev)
|
|
|
|
easy->prev->next = easy->next;
|
|
|
|
/* make our next point to our previous node */
|
|
|
|
if(easy->next)
|
|
|
|
easy->next->prev = easy->prev;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
easy->easy_handle->set.one_easy = NULL; /* detached */
|
|
|
|
|
2007-04-01 04:24:23 -04:00
|
|
|
/* Null the position in the controlling structure */
|
|
|
|
easy->easy_handle->multi_pos = NULL;
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
/* NOTE NOTE NOTE
|
|
|
|
We do not touch the easy handle here! */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->msg)
|
2002-05-28 10:45:50 -04:00
|
|
|
free(easy->msg);
|
2001-11-28 06:09:18 -05:00
|
|
|
free(easy);
|
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
multi->num_easy--; /* one less to care about now */
|
|
|
|
|
2006-10-12 04:36:47 -04:00
|
|
|
update_timer(multi);
|
2001-11-28 06:09:18 -05:00
|
|
|
return CURLM_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return CURLM_BAD_EASY_HANDLE; /* twasn't found */
|
|
|
|
}
|
|
|
|
|
2007-08-26 01:53:26 -04:00
|
|
|
bool Curl_multi_canPipeline(const struct Curl_multi* multi)
|
2006-09-07 17:49:20 -04:00
|
|
|
{
|
|
|
|
return multi->pipelining_enabled;
|
|
|
|
}
|
|
|
|
|
2007-04-10 16:46:40 -04:00
|
|
|
void Curl_multi_handlePipeBreak(struct SessionHandle *data)
|
|
|
|
{
|
|
|
|
struct Curl_one_easy *one_easy = data->set.one_easy;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(one_easy)
|
2007-04-10 16:46:40 -04:00
|
|
|
one_easy->easy_conn = NULL;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
static int waitconnect_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *sock,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
if(!numsocks)
|
|
|
|
return GETSOCK_BLANK;
|
|
|
|
|
|
|
|
sock[0] = conn->sock[FIRSTSOCKET];
|
|
|
|
return GETSOCK_WRITESOCK(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int domore_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *sock,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
if(!numsocks)
|
|
|
|
return GETSOCK_BLANK;
|
|
|
|
|
|
|
|
/* When in DO_MORE state, we could be either waiting for us
|
|
|
|
to connect to a remote site, or we could wait for that site
|
|
|
|
to connect to us. It makes a difference in the way: if we
|
|
|
|
connect to the site we wait for the socket to become writable, if
|
|
|
|
the site connects to us we wait for it to become readable */
|
|
|
|
sock[0] = conn->sock[SECONDARYSOCKET];
|
|
|
|
|
|
|
|
return GETSOCK_WRITESOCK(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns bitmapped flags for this handle and its sockets */
|
|
|
|
static int multi_getsock(struct Curl_one_easy *easy,
|
|
|
|
curl_socket_t *socks, /* points to numsocks number
|
|
|
|
of sockets */
|
|
|
|
int numsocks)
|
|
|
|
{
|
2007-03-31 06:56:07 -04:00
|
|
|
/* If the pipe broke, or if there's no connection left for this easy handle,
|
|
|
|
then we MUST bail out now with no bitmask set. The no connection case can
|
|
|
|
happen when this is called from curl_multi_remove_handle() =>
|
|
|
|
singlesocket() => multi_getsock().
|
|
|
|
*/
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->easy_handle->state.pipe_broke ||
|
2007-03-31 06:56:07 -04:00
|
|
|
!easy->easy_conn) {
|
2006-09-07 17:49:20 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->state > CURLM_STATE_CONNECT &&
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->state < CURLM_STATE_COMPLETED) {
|
|
|
|
/* Set up ownership correctly */
|
|
|
|
easy->easy_conn->data = easy->easy_handle;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
switch(easy->state) {
|
2006-06-22 17:36:53 -04:00
|
|
|
case CURLM_STATE_TOOFAST: /* returns 0, so will not select. */
|
2006-04-10 11:00:53 -04:00
|
|
|
default:
|
2006-09-10 18:15:32 -04:00
|
|
|
/* this will get called with CURLM_STATE_COMPLETED when a handle is
|
|
|
|
removed */
|
2006-04-10 11:00:53 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case CURLM_STATE_WAITRESOLVE:
|
|
|
|
return Curl_resolv_getsock(easy->easy_conn, socks, numsocks);
|
|
|
|
|
|
|
|
case CURLM_STATE_PROTOCONNECT:
|
|
|
|
return Curl_protocol_getsock(easy->easy_conn, socks, numsocks);
|
|
|
|
|
|
|
|
case CURLM_STATE_DOING:
|
|
|
|
return Curl_doing_getsock(easy->easy_conn, socks, numsocks);
|
|
|
|
|
2008-01-18 16:51:10 -05:00
|
|
|
case CURLM_STATE_WAITPROXYCONNECT:
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_WAITCONNECT:
|
|
|
|
return waitconnect_getsock(easy->easy_conn, socks, numsocks);
|
|
|
|
|
|
|
|
case CURLM_STATE_DO_MORE:
|
|
|
|
return domore_getsock(easy->easy_conn, socks, numsocks);
|
|
|
|
|
|
|
|
case CURLM_STATE_PERFORM:
|
2006-09-07 17:49:20 -04:00
|
|
|
case CURLM_STATE_WAITPERFORM:
|
2006-04-10 11:00:53 -04:00
|
|
|
return Curl_single_getsock(easy->easy_conn, socks, numsocks);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
CURLMcode curl_multi_fdset(CURLM *multi_handle,
|
|
|
|
fd_set *read_fd_set, fd_set *write_fd_set,
|
|
|
|
fd_set *exc_fd_set, int *max_fd)
|
|
|
|
{
|
|
|
|
/* Scan through all the easy handles to get the file descriptors set.
|
|
|
|
Some easy handles may not have connected to the remote host yet,
|
|
|
|
and then we must make sure that is done. */
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
struct Curl_one_easy *easy;
|
2002-01-03 10:01:22 -05:00
|
|
|
int this_max_fd=-1;
|
2006-04-10 11:00:53 -04:00
|
|
|
curl_socket_t sockbunch[MAX_SOCKSPEREASYHANDLE];
|
|
|
|
int bitmap;
|
|
|
|
int i;
|
|
|
|
(void)exc_fd_set; /* not used */
|
2001-11-28 06:09:18 -05:00
|
|
|
|
|
|
|
if(!GOOD_MULTI_HANDLE(multi))
|
|
|
|
return CURLM_BAD_HANDLE;
|
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
easy=multi->easy.next;
|
2007-02-21 16:59:40 -05:00
|
|
|
while(easy != &multi->easy) {
|
2006-04-10 11:00:53 -04:00
|
|
|
bitmap = multi_getsock(easy, sockbunch, MAX_SOCKSPEREASYHANDLE);
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
for(i=0; i< MAX_SOCKSPEREASYHANDLE; i++) {
|
|
|
|
curl_socket_t s = CURL_SOCKET_BAD;
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(bitmap & GETSOCK_READSOCK(i)) {
|
|
|
|
FD_SET(sockbunch[i], read_fd_set);
|
|
|
|
s = sockbunch[i];
|
|
|
|
}
|
|
|
|
if(bitmap & GETSOCK_WRITESOCK(i)) {
|
|
|
|
FD_SET(sockbunch[i], write_fd_set);
|
|
|
|
s = sockbunch[i];
|
|
|
|
}
|
|
|
|
if(s == CURL_SOCKET_BAD)
|
|
|
|
/* this socket is unused, break out of loop */
|
|
|
|
break;
|
|
|
|
else {
|
2006-06-23 18:07:06 -04:00
|
|
|
if((int)s > this_max_fd)
|
2006-04-25 01:32:05 -04:00
|
|
|
this_max_fd = (int)s;
|
2002-08-12 05:43:20 -04:00
|
|
|
}
|
2001-11-28 06:09:18 -05:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2001-11-28 10:46:25 -05:00
|
|
|
easy = easy->next; /* check next handle */
|
2001-11-28 06:09:18 -05:00
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
*max_fd = this_max_fd;
|
|
|
|
|
2001-11-28 06:09:18 -05:00
|
|
|
return CURLM_OK;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
2006-08-03 07:47:42 -04:00
|
|
|
struct Curl_one_easy *easy)
|
2001-11-28 06:09:18 -05:00
|
|
|
{
|
2002-05-28 10:45:50 -04:00
|
|
|
struct Curl_message *msg = NULL;
|
2002-08-12 05:43:20 -04:00
|
|
|
bool connected;
|
2003-08-05 10:40:59 -04:00
|
|
|
bool async;
|
2007-04-13 03:57:31 -04:00
|
|
|
bool protocol_connect = FALSE;
|
2005-02-09 08:06:40 -05:00
|
|
|
bool dophase_done;
|
2006-04-10 11:00:53 -04:00
|
|
|
bool done;
|
|
|
|
CURLMcode result = CURLM_OK;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct SingleRequest *k;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
do {
|
2007-04-10 16:46:40 -04:00
|
|
|
bool disconnect_conn = FALSE;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2006-09-11 13:18:18 -04:00
|
|
|
if(!GOOD_EASY_HANDLE(easy->easy_handle))
|
2006-09-12 19:51:01 -04:00
|
|
|
return CURLM_BAD_EASY_HANDLE;
|
2006-09-11 13:18:18 -04:00
|
|
|
|
2007-04-10 16:46:40 -04:00
|
|
|
/* Handle the case when the pipe breaks, i.e., the connection
|
|
|
|
we're using gets cleaned up and we're left with nothing. */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->easy_handle->state.pipe_broke) {
|
2006-10-23 16:34:56 -04:00
|
|
|
infof(easy->easy_handle, "Pipe broke: handle 0x%x, url = %s\n",
|
2007-11-24 18:16:55 -05:00
|
|
|
easy, easy->easy_handle->state.path);
|
2007-04-10 16:46:40 -04:00
|
|
|
|
2008-02-03 07:31:35 -05:00
|
|
|
if(easy->state != CURLM_STATE_COMPLETED) {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* Head back to the CONNECT state */
|
|
|
|
multistate(easy, CURLM_STATE_CONNECT);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
easy->result = CURLE_OK;
|
2007-02-25 06:38:13 -05:00
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
easy->easy_handle->state.pipe_broke = FALSE;
|
|
|
|
easy->easy_conn = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->state > CURLM_STATE_CONNECT &&
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->state < CURLM_STATE_COMPLETED) {
|
|
|
|
/* Make sure we set the connection's current owner */
|
|
|
|
easy->easy_conn->data = easy->easy_handle;
|
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(CURLM_STATE_WAITCONNECT <= easy->state &&
|
2006-04-10 11:00:53 -04:00
|
|
|
easy->state <= CURLM_STATE_DO &&
|
|
|
|
easy->easy_handle->change.url_changed) {
|
|
|
|
char *gotourl;
|
|
|
|
Curl_posttransfer(easy->easy_handle);
|
|
|
|
|
2007-01-16 17:22:10 -05:00
|
|
|
easy->result = Curl_done(&easy->easy_conn, CURLE_OK, FALSE);
|
2006-09-07 17:49:20 -04:00
|
|
|
/* We make sure that the pipe broken flag is reset
|
|
|
|
because in this case, it isn't an actual break */
|
|
|
|
easy->easy_handle->state.pipe_broke = FALSE;
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK == easy->result) {
|
|
|
|
gotourl = strdup(easy->easy_handle->change.url);
|
|
|
|
if(gotourl) {
|
|
|
|
easy->easy_handle->change.url_changed = FALSE;
|
|
|
|
easy->result = Curl_follow(easy->easy_handle, gotourl, FALSE);
|
|
|
|
if(CURLE_OK == easy->result)
|
|
|
|
multistate(easy, CURLM_STATE_CONNECT);
|
|
|
|
else
|
|
|
|
free(gotourl);
|
2004-03-04 11:13:33 -05:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
else {
|
|
|
|
easy->result = CURLE_OUT_OF_MEMORY;
|
|
|
|
multistate(easy, CURLM_STATE_COMPLETED);
|
|
|
|
break;
|
2003-08-05 10:40:59 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
}
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
easy->easy_handle->change.url_changed = FALSE;
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
switch(easy->state) {
|
|
|
|
case CURLM_STATE_INIT:
|
|
|
|
/* init this transfer. */
|
|
|
|
easy->result=Curl_pretransfer(easy->easy_handle);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK == easy->result) {
|
|
|
|
/* after init, go CONNECT */
|
|
|
|
multistate(easy, CURLM_STATE_CONNECT);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
easy->easy_handle->state.used_interface = Curl_if_multi;
|
|
|
|
}
|
|
|
|
break;
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_CONNECT:
|
|
|
|
/* Connect. We get a connection identifier filled in. */
|
|
|
|
Curl_pgrsTime(easy->easy_handle, TIMER_STARTSINGLE);
|
|
|
|
easy->result = Curl_connect(easy->easy_handle, &easy->easy_conn,
|
|
|
|
&async, &protocol_connect);
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK == easy->result) {
|
2008-01-16 07:24:00 -05:00
|
|
|
/* Add this handle to the send or pend pipeline */
|
|
|
|
easy->result = addHandleToSendOrPendPipeline(easy->easy_handle,
|
|
|
|
easy->easy_conn);
|
2007-11-03 10:44:38 -04:00
|
|
|
if(CURLE_OK == easy->result) {
|
2008-02-03 07:31:35 -05:00
|
|
|
if(async)
|
|
|
|
/* We're now waiting for an asynchronous name lookup */
|
|
|
|
multistate(easy, CURLM_STATE_WAITRESOLVE);
|
2007-11-03 10:44:38 -04:00
|
|
|
else {
|
2008-02-03 07:31:35 -05:00
|
|
|
/* after the connect has been sent off, go WAITCONNECT unless the
|
|
|
|
protocol connect is already done and we can go directly to
|
|
|
|
WAITDO! */
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
|
|
|
|
if(protocol_connect)
|
|
|
|
multistate(easy, CURLM_STATE_WAITDO);
|
2007-11-03 10:44:38 -04:00
|
|
|
else {
|
2007-02-26 21:24:13 -05:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2008-02-03 07:31:35 -05:00
|
|
|
if(easy->easy_conn->bits.tunnel_connecting)
|
|
|
|
multistate(easy, CURLM_STATE_WAITPROXYCONNECT);
|
|
|
|
else
|
2007-02-26 21:24:13 -05:00
|
|
|
#endif
|
2008-02-03 07:31:35 -05:00
|
|
|
multistate(easy, CURLM_STATE_WAITCONNECT);
|
2007-11-03 10:44:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
break;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_WAITRESOLVE:
|
|
|
|
/* awaiting an asynch name resolve to complete */
|
|
|
|
{
|
|
|
|
struct Curl_dns_entry *dns = NULL;
|
|
|
|
|
|
|
|
/* check if we have the name resolved by now */
|
|
|
|
easy->result = Curl_is_resolved(easy->easy_conn, &dns);
|
|
|
|
|
|
|
|
if(dns) {
|
|
|
|
/* Perform the next step in the connection phase, and then move on
|
|
|
|
to the WAITCONNECT state */
|
|
|
|
easy->result = Curl_async_resolved(easy->easy_conn,
|
|
|
|
&protocol_connect);
|
|
|
|
|
|
|
|
if(CURLE_OK != easy->result)
|
|
|
|
/* if Curl_async_resolved() returns failure, the connection struct
|
|
|
|
is already freed and gone */
|
2003-08-05 10:40:59 -04:00
|
|
|
easy->easy_conn = NULL; /* no more connection */
|
2006-04-10 11:00:53 -04:00
|
|
|
else {
|
2006-08-31 08:53:39 -04:00
|
|
|
/* call again please so that we get the next socket setup */
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
if(protocol_connect)
|
2007-04-10 16:46:40 -04:00
|
|
|
multistate(easy, CURLM_STATE_WAITDO);
|
2007-02-25 06:38:13 -05:00
|
|
|
else {
|
2007-02-26 21:24:13 -05:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->easy_conn->bits.tunnel_connecting)
|
2007-02-25 06:38:13 -05:00
|
|
|
multistate(easy, CURLM_STATE_WAITPROXYCONNECT);
|
|
|
|
else
|
2007-02-26 21:24:13 -05:00
|
|
|
#endif
|
2007-02-25 06:38:13 -05:00
|
|
|
multistate(easy, CURLM_STATE_WAITCONNECT);
|
|
|
|
}
|
2003-08-05 10:40:59 -04:00
|
|
|
}
|
2001-12-13 02:16:27 -05:00
|
|
|
}
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK != easy->result) {
|
|
|
|
/* failure detected */
|
2007-04-10 16:46:40 -04:00
|
|
|
disconnect_conn = TRUE;
|
2006-04-10 11:00:53 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2007-02-26 21:24:13 -05:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2007-02-25 06:38:13 -05:00
|
|
|
case CURLM_STATE_WAITPROXYCONNECT:
|
|
|
|
/* this is HTTP-specific, but sending CONNECT to a proxy is HTTP... */
|
|
|
|
easy->result = Curl_http_connect(easy->easy_conn, &protocol_connect);
|
|
|
|
|
|
|
|
if(CURLE_OK == easy->result) {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!easy->easy_conn->bits.tunnel_connecting)
|
2007-02-25 06:38:13 -05:00
|
|
|
multistate(easy, CURLM_STATE_WAITCONNECT);
|
|
|
|
}
|
|
|
|
break;
|
2007-02-26 21:24:13 -05:00
|
|
|
#endif
|
2007-02-25 06:38:13 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_WAITCONNECT:
|
|
|
|
/* awaiting a completion of an asynch connect */
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->result = Curl_is_connected(easy->easy_conn,
|
|
|
|
FIRSTSOCKET,
|
2006-04-10 11:00:53 -04:00
|
|
|
&connected);
|
|
|
|
if(connected)
|
|
|
|
easy->result = Curl_protocol_connect(easy->easy_conn,
|
|
|
|
&protocol_connect);
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK != easy->result) {
|
|
|
|
/* failure detected */
|
2007-04-10 16:46:40 -04:00
|
|
|
/* Just break, the cleaning up is handled all in one place */
|
|
|
|
disconnect_conn = TRUE;
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(connected) {
|
|
|
|
if(!protocol_connect) {
|
|
|
|
/* We have a TCP connection, but 'protocol_connect' may be false
|
|
|
|
and then we continue to 'STATE_PROTOCONNECT'. If protocol
|
2007-06-14 10:42:21 -04:00
|
|
|
connect is TRUE, we move on to STATE_DO.
|
|
|
|
BUT if we are using a proxy we must change to WAITPROXYCONNECT
|
|
|
|
*/
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->easy_conn->bits.tunnel_connecting)
|
2007-06-14 10:42:21 -04:00
|
|
|
multistate(easy, CURLM_STATE_WAITPROXYCONNECT);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
multistate(easy, CURLM_STATE_PROTOCONNECT);
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
else {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* after the connect has completed, go WAITDO */
|
|
|
|
multistate(easy, CURLM_STATE_WAITDO);
|
|
|
|
|
2004-05-17 02:53:41 -04:00
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
2002-08-12 05:43:20 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
break;
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_PROTOCONNECT:
|
|
|
|
/* protocol-specific connect phase */
|
|
|
|
easy->result = Curl_protocol_connecting(easy->easy_conn,
|
|
|
|
&protocol_connect);
|
2007-11-03 10:44:38 -04:00
|
|
|
if((easy->result == CURLE_OK) && protocol_connect) {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* after the connect has completed, go WAITDO */
|
|
|
|
multistate(easy, CURLM_STATE_WAITDO);
|
2006-04-10 11:00:53 -04:00
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
}
|
|
|
|
else if(easy->result) {
|
|
|
|
/* failure detected */
|
|
|
|
Curl_posttransfer(easy->easy_handle);
|
2007-01-16 17:22:10 -05:00
|
|
|
Curl_done(&easy->easy_conn, easy->result, FALSE);
|
2007-04-10 16:46:40 -04:00
|
|
|
disconnect_conn = TRUE;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
break;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
case CURLM_STATE_WAITDO:
|
|
|
|
/* Wait for our turn to DO when we're pipelining requests */
|
2006-10-06 17:19:57 -04:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
infof(easy->easy_handle, "Conn %d send pipe %d inuse %d athead %d\n",
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->easy_conn->connectindex,
|
2006-10-06 17:19:57 -04:00
|
|
|
easy->easy_conn->send_pipe->size,
|
|
|
|
easy->easy_conn->writechannel_inuse,
|
2008-01-16 07:24:00 -05:00
|
|
|
isHandleAtHead(easy->easy_handle,
|
|
|
|
easy->easy_conn->send_pipe));
|
2006-10-06 17:19:57 -04:00
|
|
|
#endif
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!easy->easy_conn->writechannel_inuse &&
|
2008-01-16 07:24:00 -05:00
|
|
|
isHandleAtHead(easy->easy_handle,
|
|
|
|
easy->easy_conn->send_pipe)) {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* Grab the channel */
|
|
|
|
easy->easy_conn->writechannel_inuse = TRUE;
|
|
|
|
multistate(easy, CURLM_STATE_DO);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_DO:
|
|
|
|
if(easy->easy_handle->set.connect_only) {
|
|
|
|
/* keep connection open for application to use the socket */
|
|
|
|
easy->easy_conn->bits.close = FALSE;
|
|
|
|
multistate(easy, CURLM_STATE_DONE);
|
|
|
|
easy->result = CURLE_OK;
|
|
|
|
result = CURLM_OK;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Perform the protocol's DO action */
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->result = Curl_do(&easy->easy_conn,
|
|
|
|
&dophase_done);
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK == easy->result) {
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(!dophase_done) {
|
|
|
|
/* DO was not completed in one function call, we must continue
|
|
|
|
DOING... */
|
|
|
|
multistate(easy, CURLM_STATE_DOING);
|
|
|
|
result = CURLM_OK;
|
2002-08-12 05:43:20 -04:00
|
|
|
}
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/* after DO, go DO_DONE... or DO_MORE */
|
2006-04-10 11:00:53 -04:00
|
|
|
else if(easy->easy_conn->bits.do_more) {
|
|
|
|
/* we're supposed to do more, but we need to sit down, relax
|
|
|
|
and wait a little while first */
|
|
|
|
multistate(easy, CURLM_STATE_DO_MORE);
|
|
|
|
result = CURLM_OK;
|
|
|
|
}
|
|
|
|
else {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* we're done with the DO, now DO_DONE */
|
2007-11-15 16:45:45 -05:00
|
|
|
multistate(easy, CURLM_STATE_DO_DONE);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* failure detected */
|
|
|
|
Curl_posttransfer(easy->easy_handle);
|
2007-01-16 17:22:10 -05:00
|
|
|
Curl_done(&easy->easy_conn, easy->result, FALSE);
|
2007-04-10 16:46:40 -04:00
|
|
|
disconnect_conn = TRUE;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
break;
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_DOING:
|
|
|
|
/* we continue DOING until the DO phase is complete */
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->result = Curl_protocol_doing(easy->easy_conn,
|
|
|
|
&dophase_done);
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLE_OK == easy->result) {
|
|
|
|
if(dophase_done) {
|
|
|
|
/* after DO, go PERFORM... or DO_MORE */
|
|
|
|
if(easy->easy_conn->bits.do_more) {
|
|
|
|
/* we're supposed to do more, but we need to sit down, relax
|
|
|
|
and wait a little while first */
|
|
|
|
multistate(easy, CURLM_STATE_DO_MORE);
|
|
|
|
result = CURLM_OK;
|
|
|
|
}
|
|
|
|
else {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* we're done with the DO, now DO_DONE */
|
2007-11-15 16:45:45 -05:00
|
|
|
multistate(easy, CURLM_STATE_DO_DONE);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
2004-01-12 10:26:32 -05:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
} /* dophase_done */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* failure detected */
|
|
|
|
Curl_posttransfer(easy->easy_handle);
|
2007-01-16 17:22:10 -05:00
|
|
|
Curl_done(&easy->easy_conn, easy->result, FALSE);
|
2007-04-10 16:46:40 -04:00
|
|
|
disconnect_conn = TRUE;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CURLM_STATE_DO_MORE:
|
|
|
|
/* Ready to do more? */
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->result = Curl_is_connected(easy->easy_conn,
|
|
|
|
SECONDARYSOCKET,
|
2006-04-10 11:00:53 -04:00
|
|
|
&connected);
|
|
|
|
if(connected) {
|
|
|
|
/*
|
2006-09-07 17:49:20 -04:00
|
|
|
* When we are connected, DO MORE and then go DO_DONE
|
2006-04-10 11:00:53 -04:00
|
|
|
*/
|
|
|
|
easy->result = Curl_do_more(easy->easy_conn);
|
|
|
|
|
2007-11-03 10:44:38 -04:00
|
|
|
/* No need to remove ourselves from the send pipeline here since that
|
|
|
|
is done for us in Curl_done() */
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
if(CURLE_OK == easy->result) {
|
2006-09-07 17:49:20 -04:00
|
|
|
multistate(easy, CURLM_STATE_DO_DONE);
|
2006-04-10 11:00:53 -04:00
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
2002-01-03 10:01:22 -05:00
|
|
|
}
|
2007-11-03 10:44:38 -04:00
|
|
|
else {
|
|
|
|
/* failure detected */
|
|
|
|
Curl_posttransfer(easy->easy_handle);
|
|
|
|
Curl_done(&easy->easy_conn, easy->result, FALSE);
|
|
|
|
disconnect_conn = TRUE;
|
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
break;
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
case CURLM_STATE_DO_DONE:
|
2008-01-16 07:24:00 -05:00
|
|
|
/* Move ourselves from the send to recv pipeline */
|
|
|
|
moveHandleFromSendToRecvPipeline(easy->easy_handle, easy->easy_conn);
|
|
|
|
/* Check if we can move pending requests to send pipe */
|
|
|
|
checkPendPipeline(easy->easy_conn);
|
2006-09-07 17:49:20 -04:00
|
|
|
multistate(easy, CURLM_STATE_WAITPERFORM);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CURLM_STATE_WAITPERFORM:
|
2006-10-09 02:58:05 -04:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
infof(easy->easy_handle, "Conn %d recv pipe %d inuse %d athead %d\n",
|
2006-09-07 17:49:20 -04:00
|
|
|
easy->easy_conn->connectindex,
|
2006-10-09 02:58:05 -04:00
|
|
|
easy->easy_conn->recv_pipe->size,
|
|
|
|
easy->easy_conn->readchannel_inuse,
|
2008-01-16 07:24:00 -05:00
|
|
|
isHandleAtHead(easy->easy_handle,
|
|
|
|
easy->easy_conn->recv_pipe));
|
2006-10-09 02:58:05 -04:00
|
|
|
#endif
|
2006-09-07 17:49:20 -04:00
|
|
|
/* Wait for our turn to PERFORM */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!easy->easy_conn->readchannel_inuse &&
|
2008-01-16 07:24:00 -05:00
|
|
|
isHandleAtHead(easy->easy_handle,
|
|
|
|
easy->easy_conn->recv_pipe)) {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* Grab the channel */
|
|
|
|
easy->easy_conn->readchannel_inuse = TRUE;
|
|
|
|
multistate(easy, CURLM_STATE_PERFORM);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-06-22 17:36:53 -04:00
|
|
|
case CURLM_STATE_TOOFAST: /* limit-rate exceeded in either direction */
|
|
|
|
/* if both rates are within spec, resume transfer */
|
|
|
|
Curl_pgrsUpdate(easy->easy_conn);
|
2007-11-05 04:45:09 -05:00
|
|
|
if( ( ( easy->easy_handle->set.max_send_speed == 0 ) ||
|
2006-06-22 17:36:53 -04:00
|
|
|
( easy->easy_handle->progress.ulspeed <
|
|
|
|
easy->easy_handle->set.max_send_speed ) ) &&
|
|
|
|
( ( easy->easy_handle->set.max_recv_speed == 0 ) ||
|
|
|
|
( easy->easy_handle->progress.dlspeed <
|
|
|
|
easy->easy_handle->set.max_recv_speed ) )
|
|
|
|
)
|
2006-09-07 17:49:20 -04:00
|
|
|
multistate(easy, CURLM_STATE_PERFORM);
|
2006-06-22 17:36:53 -04:00
|
|
|
break;
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_PERFORM:
|
2006-06-22 17:36:53 -04:00
|
|
|
/* check if over speed */
|
2007-11-05 04:45:09 -05:00
|
|
|
if( ( ( easy->easy_handle->set.max_send_speed > 0 ) &&
|
2006-06-22 17:36:53 -04:00
|
|
|
( easy->easy_handle->progress.ulspeed >
|
|
|
|
easy->easy_handle->set.max_send_speed ) ) ||
|
|
|
|
( ( easy->easy_handle->set.max_recv_speed > 0 ) &&
|
|
|
|
( easy->easy_handle->progress.dlspeed >
|
|
|
|
easy->easy_handle->set.max_recv_speed ) )
|
|
|
|
) {
|
|
|
|
/* Transfer is over the speed limit. Change state. TODO: Call
|
|
|
|
* Curl_expire() with the time left until we're targeted to be below
|
|
|
|
* the speed limit again. */
|
|
|
|
multistate(easy, CURLM_STATE_TOOFAST );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* read/write data if it is ready to do so */
|
|
|
|
easy->result = Curl_readwrite(easy->easy_conn, &done);
|
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
k = &easy->easy_handle->req;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!(k->keepon & KEEP_READ)) {
|
2008-01-08 09:52:05 -05:00
|
|
|
/* We're done reading */
|
|
|
|
easy->easy_conn->readchannel_inuse = FALSE;
|
2006-09-07 17:49:20 -04:00
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!(k->keepon & KEEP_WRITE)) {
|
2008-01-08 09:52:05 -05:00
|
|
|
/* We're done writing */
|
|
|
|
easy->easy_conn->writechannel_inuse = FALSE;
|
2006-09-07 17:49:20 -04:00
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(easy->result) {
|
|
|
|
/* The transfer phase returned error, we mark the connection to get
|
2007-04-10 16:46:40 -04:00
|
|
|
* closed to prevent being re-used. This is because we can't
|
2006-04-10 11:00:53 -04:00
|
|
|
* possibly know if the connection is in a good shape or not now. */
|
|
|
|
easy->easy_conn->bits.close = TRUE;
|
2007-04-10 16:46:40 -04:00
|
|
|
Curl_removeHandleFromPipeline(easy->easy_handle,
|
|
|
|
easy->easy_conn->recv_pipe);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
if(CURL_SOCKET_BAD != easy->easy_conn->sock[SECONDARYSOCKET]) {
|
|
|
|
/* if we failed anywhere, we must clean up the secondary socket if
|
|
|
|
it was used */
|
|
|
|
sclose(easy->easy_conn->sock[SECONDARYSOCKET]);
|
2006-04-26 13:26:22 -04:00
|
|
|
easy->easy_conn->sock[SECONDARYSOCKET] = CURL_SOCKET_BAD;
|
2002-10-07 09:38:59 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
Curl_posttransfer(easy->easy_handle);
|
2007-01-16 17:22:10 -05:00
|
|
|
Curl_done(&easy->easy_conn, easy->result, FALSE);
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
else if(TRUE == done) {
|
|
|
|
char *newurl;
|
|
|
|
bool retry = Curl_retry_request(easy->easy_conn, &newurl);
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* call this even if the readwrite function returned error */
|
|
|
|
Curl_posttransfer(easy->easy_handle);
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* When we follow redirects, must to go back to the CONNECT state */
|
2007-11-24 18:16:55 -05:00
|
|
|
if(easy->easy_handle->req.newurl || retry) {
|
2006-09-20 08:03:50 -04:00
|
|
|
Curl_removeHandleFromPipeline(easy->easy_handle,
|
|
|
|
easy->easy_conn->recv_pipe);
|
2008-01-16 07:24:00 -05:00
|
|
|
/* Check if we can move pending requests to send pipe */
|
|
|
|
checkPendPipeline(easy->easy_conn);
|
2008-02-03 07:31:35 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(!retry) {
|
|
|
|
/* if the URL is a follow-location and not just a retried request
|
|
|
|
then figure out the URL here */
|
2007-11-24 18:16:55 -05:00
|
|
|
newurl = easy->easy_handle->req.newurl;
|
|
|
|
easy->easy_handle->req.newurl = NULL;
|
2004-01-12 10:26:32 -05:00
|
|
|
}
|
2007-01-16 17:22:10 -05:00
|
|
|
easy->result = Curl_done(&easy->easy_conn, CURLE_OK, FALSE);
|
2006-04-10 11:00:53 -04:00
|
|
|
if(easy->result == CURLE_OK)
|
|
|
|
easy->result = Curl_follow(easy->easy_handle, newurl, retry);
|
|
|
|
if(CURLE_OK == easy->result) {
|
|
|
|
multistate(easy, CURLM_STATE_CONNECT);
|
2004-05-17 02:53:41 -04:00
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
2002-10-18 11:27:49 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
else
|
|
|
|
/* Since we "took it", we are in charge of freeing this on
|
|
|
|
failure */
|
|
|
|
free(newurl);
|
2002-10-07 09:38:59 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
else {
|
|
|
|
/* after the transfer is done, go DONE */
|
|
|
|
multistate(easy, CURLM_STATE_DONE);
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
}
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
break;
|
2006-06-22 17:36:53 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_DONE:
|
2006-09-07 17:49:20 -04:00
|
|
|
/* Remove ourselves from the receive pipeline */
|
|
|
|
Curl_removeHandleFromPipeline(easy->easy_handle,
|
|
|
|
easy->easy_conn->recv_pipe);
|
2008-01-16 07:24:00 -05:00
|
|
|
/* Check if we can move pending requests to send pipe */
|
|
|
|
checkPendPipeline(easy->easy_conn);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->easy_conn->bits.stream_was_rewound) {
|
2006-09-07 17:49:20 -04:00
|
|
|
/* This request read past its response boundary so we quickly
|
|
|
|
let the other requests consume those bytes since there is no
|
|
|
|
guarantee that the socket will become active again */
|
|
|
|
result = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
}
|
|
|
|
|
2008-01-21 18:48:58 -05:00
|
|
|
/* post-transfer command */
|
|
|
|
easy->result = Curl_done(&easy->easy_conn, CURLE_OK, FALSE);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2008-01-21 18:48:58 -05:00
|
|
|
/* after we have DONE what we're supposed to do, go COMPLETED, and
|
|
|
|
it doesn't matter what the Curl_done() returned! */
|
|
|
|
multistate(easy, CURLM_STATE_COMPLETED);
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
break;
|
2002-05-02 18:12:14 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
case CURLM_STATE_COMPLETED:
|
|
|
|
/* this is a completed transfer, it is likely to still be connected */
|
2001-11-28 10:46:25 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* This node should be delinked from the list now and we should post
|
|
|
|
an information message that we are complete. */
|
2007-04-10 16:46:40 -04:00
|
|
|
|
|
|
|
/* Important: reset the conn pointer so that we don't point to memory
|
|
|
|
that could be freed anytime */
|
|
|
|
easy->easy_conn = NULL;
|
2006-04-10 11:00:53 -04:00
|
|
|
break;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
default:
|
|
|
|
return CURLM_INTERNAL_ERROR;
|
|
|
|
}
|
2002-01-03 10:01:22 -05:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(CURLM_STATE_COMPLETED != easy->state) {
|
|
|
|
if(CURLE_OK != easy->result) {
|
|
|
|
/*
|
|
|
|
* If an error was returned, and we aren't in completed state now,
|
2006-09-07 17:49:20 -04:00
|
|
|
* then we go to completed and consider this transfer aborted.
|
|
|
|
*/
|
2007-04-10 16:46:40 -04:00
|
|
|
|
|
|
|
/* NOTE: no attempt to disconnect connections must be made
|
|
|
|
in the case blocks above - cleanup happens only here */
|
|
|
|
|
2006-10-10 10:23:34 -04:00
|
|
|
easy->easy_handle->state.pipe_broke = FALSE;
|
|
|
|
|
2006-10-06 17:19:57 -04:00
|
|
|
if(easy->easy_conn) {
|
|
|
|
/* if this has a connection, unsubscribe from the pipelines */
|
|
|
|
easy->easy_conn->writechannel_inuse = FALSE;
|
|
|
|
easy->easy_conn->readchannel_inuse = FALSE;
|
2007-04-10 16:46:40 -04:00
|
|
|
Curl_removeHandleFromPipeline(easy->easy_handle,
|
|
|
|
easy->easy_conn->send_pipe);
|
|
|
|
Curl_removeHandleFromPipeline(easy->easy_handle,
|
|
|
|
easy->easy_conn->recv_pipe);
|
2008-01-16 07:24:00 -05:00
|
|
|
/* Check if we can move pending requests to send pipe */
|
|
|
|
checkPendPipeline(easy->easy_conn);
|
2006-10-06 17:19:57 -04:00
|
|
|
}
|
2007-04-10 16:46:40 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(disconnect_conn) {
|
2007-04-10 16:46:40 -04:00
|
|
|
Curl_disconnect(easy->easy_conn); /* disconnect properly */
|
|
|
|
|
|
|
|
/* This is where we make sure that the easy_conn pointer is reset.
|
|
|
|
We don't have to do this in every case block above where a
|
|
|
|
failure is detected */
|
|
|
|
easy->easy_conn = NULL;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
multistate(easy, CURLM_STATE_COMPLETED);
|
2003-04-29 14:03:30 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
2004-01-12 10:26:32 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(easy->easy_handle->change.url_changed);
|
2002-05-28 10:45:50 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if((CURLM_STATE_COMPLETED == easy->state) && !easy->msg) {
|
2006-07-07 18:58:06 -04:00
|
|
|
if(easy->easy_handle->dns.hostcachetype == HCACHE_MULTI) {
|
|
|
|
/* clear out the usage of the shared DNS cache */
|
|
|
|
easy->easy_handle->dns.hostcache = NULL;
|
|
|
|
easy->easy_handle->dns.hostcachetype = HCACHE_NONE;
|
|
|
|
}
|
2002-05-28 10:45:50 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* now add a node to the Curl_message linked list with this info */
|
|
|
|
msg = (struct Curl_message *)malloc(sizeof(struct Curl_message));
|
2002-05-28 10:45:50 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
if(!msg)
|
|
|
|
return CURLM_OUT_OF_MEMORY;
|
2002-05-28 10:45:50 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
msg->extmsg.msg = CURLMSG_DONE;
|
|
|
|
msg->extmsg.easy_handle = easy->easy_handle;
|
|
|
|
msg->extmsg.data.result = easy->result;
|
2006-09-07 17:49:20 -04:00
|
|
|
msg->next = NULL;
|
2002-05-28 10:45:50 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
easy->msg = msg;
|
|
|
|
easy->msg_num = 1; /* there is one unread message here */
|
2002-05-28 10:45:50 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
multi->num_msgs++; /* increase message counter */
|
2001-11-28 06:09:18 -05:00
|
|
|
}
|
2002-05-02 18:12:14 -04:00
|
|
|
|
2007-05-02 09:47:56 -04:00
|
|
|
if(CURLM_CALL_MULTI_PERFORM == result)
|
|
|
|
/* Set the timeout for this handle to expire really soon so that it will
|
|
|
|
be taken care of even when this handle is added in the midst of
|
|
|
|
operation when only the curl_multi_socket() API is used. During that
|
|
|
|
flow, only sockets that time-out or have actions will be dealt
|
|
|
|
with. Since this handle has no action yet, we make sure it times out to
|
|
|
|
get things to happen. Also, this makes it less important for callers of
|
|
|
|
the curl_multi_* functions to bother about the CURLM_CALL_MULTI_PERFORM
|
|
|
|
return code, as long as they deal with the timeouts properly. */
|
|
|
|
Curl_expire(easy->easy_handle, 10);
|
|
|
|
|
2002-01-03 10:01:22 -05:00
|
|
|
return result;
|
2001-11-28 06:09:18 -05:00
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
struct Curl_one_easy *easy;
|
|
|
|
CURLMcode returncode=CURLM_OK;
|
|
|
|
struct Curl_tree *t;
|
|
|
|
|
|
|
|
if(!GOOD_MULTI_HANDLE(multi))
|
|
|
|
return CURLM_BAD_HANDLE;
|
|
|
|
|
|
|
|
easy=multi->easy.next;
|
2007-02-21 16:59:40 -05:00
|
|
|
while(easy != &multi->easy) {
|
2006-09-07 17:49:20 -04:00
|
|
|
CURLMcode result;
|
|
|
|
|
|
|
|
result = multi_runsingle(multi, easy);
|
2006-04-10 11:00:53 -04:00
|
|
|
if(result)
|
|
|
|
returncode = result;
|
|
|
|
|
|
|
|
easy = easy->next; /* operate on next handle */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Simply remove all expired timers from the splay since handles are dealt
|
|
|
|
* with unconditionally by this function and curl_multi_timeout() requires
|
|
|
|
* that already passed/handled expire times are removed from the splay.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
struct timeval now = Curl_tvnow();
|
|
|
|
int key = now.tv_sec; /* drop the usec part */
|
|
|
|
|
|
|
|
multi->timetree = Curl_splaygetbest(key, multi->timetree, &t);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(t) {
|
2006-07-17 14:35:58 -04:00
|
|
|
struct SessionHandle *d = t->payload;
|
|
|
|
struct timeval* tv = &d->state.expiretime;
|
|
|
|
|
|
|
|
/* clear the expire times within the handles that we remove from the
|
|
|
|
splay tree */
|
|
|
|
tv->tv_sec = 0;
|
|
|
|
tv->tv_usec = 0;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
} while(t);
|
|
|
|
|
2006-08-02 18:29:29 -04:00
|
|
|
*running_handles = multi->num_alive;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if( CURLM_OK >= returncode )
|
2006-10-12 04:36:47 -04:00
|
|
|
update_timer(multi);
|
2006-04-10 11:00:53 -04:00
|
|
|
return returncode;
|
|
|
|
}
|
|
|
|
|
2005-01-10 05:07:07 -05:00
|
|
|
/* This is called when an easy handle is cleanup'ed that is part of a multi
|
|
|
|
handle */
|
|
|
|
void Curl_multi_rmeasy(void *multi_handle, CURL *easy_handle)
|
|
|
|
{
|
|
|
|
curl_multi_remove_handle(multi_handle, easy_handle);
|
|
|
|
}
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
CURLMcode curl_multi_cleanup(CURLM *multi_handle)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
2002-04-27 18:21:51 -04:00
|
|
|
struct Curl_one_easy *easy;
|
|
|
|
struct Curl_one_easy *nexteasy;
|
2006-09-07 17:49:20 -04:00
|
|
|
int i;
|
|
|
|
struct closure *cl;
|
|
|
|
struct closure *n;
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
if(GOOD_MULTI_HANDLE(multi)) {
|
|
|
|
multi->type = 0; /* not good anymore */
|
2002-04-27 18:21:51 -04:00
|
|
|
Curl_hash_destroy(multi->hostcache);
|
2006-04-10 11:00:53 -04:00
|
|
|
Curl_hash_destroy(multi->sockhash);
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/* go over all connections that have close actions */
|
|
|
|
for(i=0; i< multi->connc->num; i++) {
|
|
|
|
if(multi->connc->connects[i] &&
|
2006-09-28 17:26:06 -04:00
|
|
|
multi->connc->connects[i]->protocol & PROT_CLOSEACTION) {
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_disconnect(multi->connc->connects[i]);
|
2006-09-28 17:26:06 -04:00
|
|
|
multi->connc->connects[i] = NULL;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
}
|
|
|
|
/* now walk through the list of handles we kept around only to be
|
|
|
|
able to close connections "properly" */
|
|
|
|
cl = multi->closure;
|
|
|
|
while(cl) {
|
|
|
|
cl->easy_handle->state.shared_conn = NULL; /* no more shared */
|
2006-09-28 17:26:06 -04:00
|
|
|
if(cl->easy_handle->state.closed)
|
|
|
|
/* close handle only if curl_easy_cleanup() already has been called
|
|
|
|
for this easy handle */
|
|
|
|
Curl_close(cl->easy_handle);
|
2006-09-07 17:49:20 -04:00
|
|
|
n = cl->next;
|
|
|
|
free(cl);
|
|
|
|
cl= n;
|
|
|
|
}
|
|
|
|
|
|
|
|
Curl_rm_connc(multi->connc);
|
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
/* remove all easy handles */
|
2002-04-27 18:21:51 -04:00
|
|
|
easy = multi->easy.next;
|
2007-02-21 16:59:40 -05:00
|
|
|
while(easy != &multi->easy) {
|
2002-04-27 18:21:51 -04:00
|
|
|
nexteasy=easy->next;
|
2006-07-07 18:58:06 -04:00
|
|
|
if(easy->easy_handle->dns.hostcachetype == HCACHE_MULTI) {
|
|
|
|
/* clear out the usage of the shared DNS cache */
|
|
|
|
easy->easy_handle->dns.hostcache = NULL;
|
|
|
|
easy->easy_handle->dns.hostcachetype = HCACHE_NONE;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
/* Clear the pointer to the connection cache */
|
|
|
|
easy->easy_handle->state.connc = NULL;
|
|
|
|
|
2005-01-10 06:42:20 -05:00
|
|
|
Curl_easy_addmulti(easy->easy_handle, NULL); /* clear the association */
|
2002-05-02 14:07:38 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(easy->msg)
|
2002-05-28 10:45:50 -04:00
|
|
|
free(easy->msg);
|
2002-04-27 18:21:51 -04:00
|
|
|
free(easy);
|
|
|
|
easy = nexteasy;
|
|
|
|
}
|
|
|
|
|
2001-11-28 11:00:18 -05:00
|
|
|
free(multi);
|
|
|
|
|
|
|
|
return CURLM_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return CURLM_BAD_HANDLE;
|
|
|
|
}
|
2001-11-28 06:09:18 -05:00
|
|
|
|
2002-04-27 18:21:51 -04:00
|
|
|
CURLMsg *curl_multi_info_read(CURLM *multi_handle, int *msgs_in_queue)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
|
2003-08-20 09:49:46 -04:00
|
|
|
*msgs_in_queue = 0; /* default to none */
|
|
|
|
|
2002-05-28 10:45:50 -04:00
|
|
|
if(GOOD_MULTI_HANDLE(multi)) {
|
|
|
|
struct Curl_one_easy *easy;
|
2004-05-17 02:53:41 -04:00
|
|
|
|
2002-05-28 10:45:50 -04:00
|
|
|
if(!multi->num_msgs)
|
|
|
|
return NULL; /* no messages left to return */
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2002-05-28 10:45:50 -04:00
|
|
|
easy=multi->easy.next;
|
2007-03-25 04:16:16 -04:00
|
|
|
while(easy != &multi->easy) {
|
2002-05-28 10:45:50 -04:00
|
|
|
if(easy->msg_num) {
|
|
|
|
easy->msg_num--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
easy = easy->next;
|
|
|
|
}
|
|
|
|
if(!easy)
|
|
|
|
return NULL; /* this means internal count confusion really */
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2002-05-28 10:45:50 -04:00
|
|
|
multi->num_msgs--;
|
|
|
|
*msgs_in_queue = multi->num_msgs;
|
2002-04-27 18:21:51 -04:00
|
|
|
|
2002-05-28 10:45:50 -04:00
|
|
|
return &easy->msg->extmsg;
|
2002-04-27 18:21:51 -04:00
|
|
|
}
|
|
|
|
else
|
2002-05-03 08:40:37 -04:00
|
|
|
return NULL;
|
2002-04-27 18:21:51 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
/*
|
2006-04-21 09:40:07 -04:00
|
|
|
* singlesocket() checks what sockets we deal with and their "action state"
|
|
|
|
* and if we have a different state in any of those sockets from last time we
|
|
|
|
* call the callback accordingly.
|
2006-04-10 11:00:53 -04:00
|
|
|
*/
|
|
|
|
static void singlesocket(struct Curl_multi *multi,
|
|
|
|
struct Curl_one_easy *easy)
|
|
|
|
{
|
2006-10-13 03:11:26 -04:00
|
|
|
curl_socket_t socks[MAX_SOCKSPEREASYHANDLE];
|
2006-04-10 11:00:53 -04:00
|
|
|
int i;
|
2006-09-10 18:15:32 -04:00
|
|
|
struct Curl_sh_entry *entry;
|
|
|
|
curl_socket_t s;
|
|
|
|
int num;
|
2006-10-13 03:11:26 -04:00
|
|
|
unsigned int curraction;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-10-13 03:11:26 -04:00
|
|
|
memset(&socks, 0, sizeof(socks));
|
2006-04-10 11:00:53 -04:00
|
|
|
for(i=0; i< MAX_SOCKSPEREASYHANDLE; i++)
|
2006-10-13 03:11:26 -04:00
|
|
|
socks[i] = CURL_SOCKET_BAD;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* Fill in the 'current' struct with the state as it is now: what sockets to
|
|
|
|
supervise and for what actions */
|
2006-10-13 03:11:26 -04:00
|
|
|
curraction = multi_getsock(easy, socks, MAX_SOCKSPEREASYHANDLE);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* We have 0 .. N sockets already and we get to know about the 0 .. M
|
|
|
|
sockets we should have from now on. Detect the differences, remove no
|
|
|
|
longer supervised ones and add new ones */
|
2006-04-21 09:40:07 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* walk over the sockets we got right now */
|
|
|
|
for(i=0; (i< MAX_SOCKSPEREASYHANDLE) &&
|
2006-10-13 03:11:26 -04:00
|
|
|
(curraction & (GETSOCK_READSOCK(i) | GETSOCK_WRITESOCK(i)));
|
2006-09-10 18:15:32 -04:00
|
|
|
i++) {
|
|
|
|
int action = CURL_POLL_NONE;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-10-13 03:11:26 -04:00
|
|
|
s = socks[i];
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
/* get it from the hash */
|
|
|
|
entry = Curl_hash_pick(multi->sockhash, (char *)&s, sizeof(s));
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-10-13 03:11:26 -04:00
|
|
|
if(curraction & GETSOCK_READSOCK(i))
|
2006-09-10 18:15:32 -04:00
|
|
|
action |= CURL_POLL_IN;
|
2006-10-13 03:11:26 -04:00
|
|
|
if(curraction & GETSOCK_WRITESOCK(i))
|
2006-09-10 18:15:32 -04:00
|
|
|
action |= CURL_POLL_OUT;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
if(entry) {
|
|
|
|
/* yeps, already present so check if it has the same action set */
|
|
|
|
if(entry->action == action)
|
|
|
|
/* same, continue */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* this is a socket we didn't have before, add it! */
|
|
|
|
entry = sh_addentry(multi->sockhash, s, easy->easy_handle);
|
|
|
|
if(!entry)
|
|
|
|
/* fatal */
|
|
|
|
return;
|
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
multi->socket_cb(easy->easy_handle,
|
|
|
|
s,
|
|
|
|
action,
|
|
|
|
multi->socket_userp,
|
|
|
|
entry ? entry->socketp : NULL);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
entry->action = action; /* store the current action state */
|
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
num = i; /* number of sockets */
|
|
|
|
|
|
|
|
/* when we've walked over all the sockets we should have right now, we must
|
|
|
|
make sure to detect sockets that are removed */
|
|
|
|
for(i=0; i< easy->numsocks; i++) {
|
|
|
|
int j;
|
|
|
|
s = easy->sockets[i];
|
|
|
|
for(j=0; j<num; j++) {
|
2006-10-13 03:11:26 -04:00
|
|
|
if(s == socks[j]) {
|
2006-09-10 18:15:32 -04:00
|
|
|
/* this is still supervised */
|
|
|
|
s = CURL_SOCKET_BAD;
|
|
|
|
break;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
2006-09-10 18:15:32 -04:00
|
|
|
}
|
|
|
|
if(s != CURL_SOCKET_BAD) {
|
|
|
|
/* this socket has been removed. Remove it */
|
|
|
|
|
|
|
|
entry = Curl_hash_pick(multi->sockhash, (char *)&s, sizeof(s));
|
|
|
|
if(entry) {
|
|
|
|
/* just a precaution, this socket really SHOULD be in the hash already
|
|
|
|
but in case it isn't, we don't have to tell the app to remove it
|
|
|
|
either since it never got to know about it */
|
2006-04-10 11:00:53 -04:00
|
|
|
multi->socket_cb(easy->easy_handle,
|
|
|
|
s,
|
2006-09-10 18:15:32 -04:00
|
|
|
CURL_POLL_REMOVE,
|
2006-07-26 18:19:42 -04:00
|
|
|
multi->socket_userp,
|
2006-07-30 18:44:07 -04:00
|
|
|
entry ? entry->socketp : NULL);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-04-21 09:40:07 -04:00
|
|
|
sh_delentry(multi->sockhash, s);
|
2006-09-10 18:15:32 -04:00
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-13 03:11:26 -04:00
|
|
|
memcpy(easy->sockets, socks, num*sizeof(curl_socket_t));
|
2006-09-10 18:15:32 -04:00
|
|
|
easy->numsocks = num;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static CURLMcode multi_socket(struct Curl_multi *multi,
|
|
|
|
bool checkall,
|
2006-07-30 18:44:07 -04:00
|
|
|
curl_socket_t s,
|
2007-04-16 12:34:08 -04:00
|
|
|
int ev_bitmask,
|
2006-07-30 18:44:07 -04:00
|
|
|
int *running_handles)
|
2006-04-10 11:00:53 -04:00
|
|
|
{
|
|
|
|
CURLMcode result = CURLM_OK;
|
|
|
|
struct SessionHandle *data = NULL;
|
|
|
|
struct Curl_tree *t;
|
|
|
|
|
|
|
|
if(checkall) {
|
|
|
|
struct Curl_one_easy *easyp;
|
2006-08-02 18:29:29 -04:00
|
|
|
/* *perform() deals with running_handles on its own */
|
2006-07-30 18:44:07 -04:00
|
|
|
result = curl_multi_perform(multi, running_handles);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
/* walk through each easy handle and do the socket state change magic
|
|
|
|
and callbacks */
|
|
|
|
easyp=multi->easy.next;
|
2007-02-21 16:59:40 -05:00
|
|
|
while(easyp != &multi->easy) {
|
2006-04-10 11:00:53 -04:00
|
|
|
singlesocket(multi, easyp);
|
|
|
|
easyp = easyp->next;
|
|
|
|
}
|
|
|
|
|
2006-04-21 09:40:07 -04:00
|
|
|
/* or should we fall-through and do the timer-based stuff? */
|
2006-04-10 11:00:53 -04:00
|
|
|
return result;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
else if(s != CURL_SOCKET_TIMEOUT) {
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
struct Curl_sh_entry *entry =
|
|
|
|
Curl_hash_pick(multi->sockhash, (char *)&s, sizeof(s));
|
|
|
|
|
|
|
|
if(!entry)
|
|
|
|
/* unmatched socket, major problemo! */
|
|
|
|
return CURLM_BAD_SOCKET; /* better return code? */
|
|
|
|
|
2006-04-21 09:40:07 -04:00
|
|
|
data = entry->easy;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-09-10 18:15:32 -04:00
|
|
|
if(data->magic != CURLEASY_MAGIC_NUMBER)
|
|
|
|
/* bad bad bad bad bad bad bad */
|
|
|
|
return CURLM_INTERNAL_ERROR;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->set.one_easy->easy_conn) /* set socket event bitmask */
|
2007-04-16 12:34:08 -04:00
|
|
|
data->set.one_easy->easy_conn->cselect_bits = ev_bitmask;
|
|
|
|
|
2006-08-03 07:47:42 -04:00
|
|
|
result = multi_runsingle(multi, data->set.one_easy);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->set.one_easy->easy_conn)
|
2007-04-16 12:34:08 -04:00
|
|
|
data->set.one_easy->easy_conn->cselect_bits = 0;
|
|
|
|
|
2007-06-01 17:24:34 -04:00
|
|
|
if(CURLM_OK >= result)
|
2006-04-21 09:40:07 -04:00
|
|
|
/* get the socket(s) and check if the state has been changed since
|
|
|
|
last */
|
|
|
|
singlesocket(multi, data->set.one_easy);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-08-04 09:06:36 -04:00
|
|
|
/* Now we fall-through and do the timer-based stuff, since we don't want
|
|
|
|
to force the user to have to deal with timeouts as long as at least one
|
|
|
|
connection in fact has traffic. */
|
2006-08-04 10:39:19 -04:00
|
|
|
|
|
|
|
data = NULL; /* set data to NULL again to avoid calling multi_runsingle()
|
|
|
|
in case there's no need to */
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The loop following here will go on as long as there are expire-times left
|
|
|
|
* to process in the splay and 'data' will be re-assigned for every expired
|
|
|
|
* handle we deal with.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
int key;
|
|
|
|
struct timeval now;
|
|
|
|
|
|
|
|
/* the first loop lap 'data' can be NULL */
|
|
|
|
if(data) {
|
2006-08-03 07:47:42 -04:00
|
|
|
result = multi_runsingle(multi, data->set.one_easy);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2007-06-01 17:24:34 -04:00
|
|
|
if(CURLM_OK >= result)
|
2006-04-10 11:00:53 -04:00
|
|
|
/* get the socket(s) and check if the state has been changed since
|
|
|
|
last */
|
|
|
|
singlesocket(multi, data->set.one_easy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if there's one (more) expired timer to deal with! This function
|
|
|
|
extracts a matching node if there is one */
|
|
|
|
|
|
|
|
now = Curl_tvnow();
|
|
|
|
key = now.tv_sec; /* drop the usec part */
|
|
|
|
|
|
|
|
multi->timetree = Curl_splaygetbest(key, multi->timetree, &t);
|
2006-07-17 14:35:58 -04:00
|
|
|
if(t) {
|
|
|
|
/* assign 'data' to be the easy handle we just removed from the splay
|
|
|
|
tree */
|
2006-04-10 11:00:53 -04:00
|
|
|
data = t->payload;
|
2006-07-17 14:35:58 -04:00
|
|
|
/* clear the expire time within the handle we removed from the
|
|
|
|
splay tree */
|
|
|
|
data->state.expiretime.tv_sec = 0;
|
|
|
|
data->state.expiretime.tv_usec = 0;
|
|
|
|
}
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
} while(t);
|
|
|
|
|
2006-08-02 18:29:29 -04:00
|
|
|
*running_handles = multi->num_alive;
|
2006-04-10 11:00:53 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
CURLMcode curl_multi_setopt(CURLM *multi_handle,
|
|
|
|
CURLMoption option, ...)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
CURLMcode res = CURLM_OK;
|
|
|
|
va_list param;
|
|
|
|
|
|
|
|
if(!GOOD_MULTI_HANDLE(multi))
|
|
|
|
return CURLM_BAD_HANDLE;
|
|
|
|
|
|
|
|
va_start(param, option);
|
|
|
|
|
|
|
|
switch(option) {
|
|
|
|
case CURLMOPT_SOCKETFUNCTION:
|
|
|
|
multi->socket_cb = va_arg(param, curl_socket_callback);
|
|
|
|
break;
|
|
|
|
case CURLMOPT_SOCKETDATA:
|
|
|
|
multi->socket_userp = va_arg(param, void *);
|
|
|
|
break;
|
2006-09-07 17:49:20 -04:00
|
|
|
case CURLMOPT_PIPELINING:
|
2006-09-09 09:24:42 -04:00
|
|
|
multi->pipelining_enabled = (bool)(0 != va_arg(param, long));
|
2006-09-07 17:49:20 -04:00
|
|
|
break;
|
2006-10-12 04:36:47 -04:00
|
|
|
case CURLMOPT_TIMERFUNCTION:
|
|
|
|
multi->timer_cb = va_arg(param, curl_multi_timer_callback);
|
|
|
|
break;
|
|
|
|
case CURLMOPT_TIMERDATA:
|
|
|
|
multi->timer_userp = va_arg(param, void *);
|
|
|
|
break;
|
2007-05-30 16:04:44 -04:00
|
|
|
case CURLMOPT_MAXCONNECTS:
|
|
|
|
multi->maxconnects = va_arg(param, long);
|
|
|
|
break;
|
2006-04-10 11:00:53 -04:00
|
|
|
default:
|
|
|
|
res = CURLM_UNKNOWN_OPTION;
|
2006-10-12 04:36:47 -04:00
|
|
|
break;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
va_end(param);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2007-04-16 12:34:08 -04:00
|
|
|
/* we define curl_multi_socket() in the public multi.h header */
|
|
|
|
#undef curl_multi_socket
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2006-07-30 18:44:07 -04:00
|
|
|
CURLMcode curl_multi_socket(CURLM *multi_handle, curl_socket_t s,
|
|
|
|
int *running_handles)
|
2006-04-10 11:00:53 -04:00
|
|
|
{
|
2006-10-12 04:36:47 -04:00
|
|
|
CURLMcode result = multi_socket((struct Curl_multi *)multi_handle, FALSE, s,
|
2007-04-16 12:34:08 -04:00
|
|
|
0, running_handles);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(CURLM_OK >= result)
|
2007-04-16 12:34:08 -04:00
|
|
|
update_timer((struct Curl_multi *)multi_handle);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
CURLMcode curl_multi_socket_action(CURLM *multi_handle, curl_socket_t s,
|
|
|
|
int ev_bitmask, int *running_handles)
|
|
|
|
{
|
|
|
|
CURLMcode result = multi_socket((struct Curl_multi *)multi_handle, FALSE, s,
|
|
|
|
ev_bitmask, running_handles);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(CURLM_OK >= result)
|
2006-10-12 04:36:47 -04:00
|
|
|
update_timer((struct Curl_multi *)multi_handle);
|
|
|
|
return result;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
2006-07-30 18:44:07 -04:00
|
|
|
CURLMcode curl_multi_socket_all(CURLM *multi_handle, int *running_handles)
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
{
|
2006-10-12 04:36:47 -04:00
|
|
|
CURLMcode result = multi_socket((struct Curl_multi *)multi_handle,
|
2007-04-16 12:34:08 -04:00
|
|
|
TRUE, CURL_SOCKET_BAD, 0, running_handles);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(CURLM_OK >= result)
|
2006-10-12 04:36:47 -04:00
|
|
|
update_timer((struct Curl_multi *)multi_handle);
|
|
|
|
return result;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
2006-10-12 04:36:47 -04:00
|
|
|
static CURLMcode multi_timeout(struct Curl_multi *multi,
|
|
|
|
long *timeout_ms)
|
2006-04-10 11:00:53 -04:00
|
|
|
{
|
|
|
|
if(multi->timetree) {
|
|
|
|
/* we have a tree of expire times */
|
|
|
|
struct timeval now = Curl_tvnow();
|
|
|
|
|
|
|
|
/* splay the lowest to the bottom */
|
|
|
|
multi->timetree = Curl_splay(0, multi->timetree);
|
|
|
|
|
|
|
|
/* At least currently, the splay key is a time_t for the expire time */
|
|
|
|
*timeout_ms = (multi->timetree->key - now.tv_sec) * 1000 -
|
|
|
|
now.tv_usec/1000;
|
|
|
|
if(*timeout_ms < 0)
|
|
|
|
/* 0 means immediately */
|
|
|
|
*timeout_ms = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*timeout_ms = -1;
|
|
|
|
|
|
|
|
return CURLM_OK;
|
|
|
|
}
|
|
|
|
|
2006-10-12 04:36:47 -04:00
|
|
|
CURLMcode curl_multi_timeout(CURLM *multi_handle,
|
|
|
|
long *timeout_ms)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
|
|
|
|
/* First, make some basic checks that the CURLM handle is a good handle */
|
|
|
|
if(!GOOD_MULTI_HANDLE(multi))
|
|
|
|
return CURLM_BAD_HANDLE;
|
|
|
|
|
|
|
|
return multi_timeout(multi, timeout_ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tell the application it should update its timers, if it subscribes to the
|
|
|
|
* update timer callback.
|
|
|
|
*/
|
|
|
|
static int update_timer(struct Curl_multi *multi)
|
|
|
|
{
|
|
|
|
long timeout_ms;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!multi->timer_cb)
|
2006-10-12 04:36:47 -04:00
|
|
|
return 0;
|
2007-11-05 04:45:09 -05:00
|
|
|
if( multi_timeout(multi, &timeout_ms) != CURLM_OK )
|
2006-10-12 04:36:47 -04:00
|
|
|
return -1;
|
2007-11-05 04:45:09 -05:00
|
|
|
if( timeout_ms < 0 )
|
2006-10-12 04:36:47 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* When multi_timeout() is done, multi->timetree points to the node with the
|
|
|
|
* timeout we got the (relative) time-out time for. We can thus easily check
|
|
|
|
* if this is the same (fixed) time as we got in a previous call and then
|
|
|
|
* avoid calling the callback again. */
|
|
|
|
if(multi->timetree->key == multi->timer_lastcall)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
multi->timer_lastcall = multi->timetree->key;
|
|
|
|
|
|
|
|
return multi->timer_cb((CURLM*)multi, timeout_ms, multi->timer_userp);
|
|
|
|
}
|
|
|
|
|
2008-01-16 07:24:00 -05:00
|
|
|
static CURLcode addHandleToSendOrPendPipeline(struct SessionHandle *handle,
|
|
|
|
struct connectdata *conn)
|
|
|
|
{
|
|
|
|
size_t pipeLen = conn->send_pipe->size + conn->recv_pipe->size;
|
|
|
|
struct curl_llist *pipeline;
|
|
|
|
|
|
|
|
if(!Curl_isPipeliningEnabled(handle) ||
|
|
|
|
pipeLen == 0)
|
|
|
|
pipeline = conn->send_pipe;
|
|
|
|
else {
|
|
|
|
if(conn->server_supports_pipelining &&
|
|
|
|
pipeLen < MAX_PIPELINE_LENGTH)
|
|
|
|
pipeline = conn->send_pipe;
|
|
|
|
else
|
|
|
|
pipeline = conn->pend_pipe;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Curl_addHandleToPipeline(handle, pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int checkPendPipeline(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
if (conn->server_supports_pipelining) {
|
|
|
|
size_t pipeLen = conn->send_pipe->size + conn->recv_pipe->size;
|
|
|
|
struct curl_llist_element *curr = conn->pend_pipe->head;
|
|
|
|
|
|
|
|
while(pipeLen < MAX_PIPELINE_LENGTH && curr) {
|
|
|
|
Curl_llist_move(conn->pend_pipe, curr,
|
|
|
|
conn->send_pipe, conn->send_pipe->tail);
|
|
|
|
Curl_pgrsTime(curr->ptr, TIMER_CONNECT);
|
|
|
|
++result; /* count how many handles we moved */
|
|
|
|
curr = conn->pend_pipe->head;
|
|
|
|
++pipeLen;
|
|
|
|
}
|
|
|
|
if (result > 0)
|
|
|
|
conn->now = Curl_tvnow();
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int moveHandleFromSendToRecvPipeline(struct SessionHandle *handle,
|
|
|
|
struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct curl_llist_element *curr;
|
|
|
|
|
|
|
|
curr = conn->send_pipe->head;
|
|
|
|
while(curr) {
|
|
|
|
if(curr->ptr == handle) {
|
|
|
|
Curl_llist_move(conn->send_pipe, curr,
|
|
|
|
conn->recv_pipe, conn->recv_pipe->tail);
|
|
|
|
return 1; /* we moved a handle */
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isHandleAtHead(struct SessionHandle *handle,
|
|
|
|
struct curl_llist *pipeline)
|
|
|
|
{
|
|
|
|
struct curl_llist_element *curr = pipeline->head;
|
|
|
|
if(curr)
|
|
|
|
return (bool)(curr->ptr == handle);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
/* given a number of milliseconds from now to use to set the 'act before
|
|
|
|
this'-time for the transfer, to be extracted by curl_multi_timeout() */
|
|
|
|
void Curl_expire(struct SessionHandle *data, long milli)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi = data->multi;
|
|
|
|
struct timeval *nowp = &data->state.expiretime;
|
2006-05-27 18:26:16 -04:00
|
|
|
int rc;
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
/* this is only interesting for multi-interface using libcurl, and only
|
|
|
|
while there is still a multi interface struct remaining! */
|
|
|
|
if(!multi)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(!milli) {
|
|
|
|
/* No timeout, clear the time data. */
|
|
|
|
if(nowp->tv_sec) {
|
|
|
|
/* Since this is an cleared time, we must remove the previous entry from
|
|
|
|
the splay tree */
|
2006-05-27 18:26:16 -04:00
|
|
|
rc = Curl_splayremovebyaddr(multi->timetree,
|
|
|
|
&data->state.timenode,
|
|
|
|
&multi->timetree);
|
|
|
|
if(rc)
|
|
|
|
infof(data, "Internal error clearing splay node = %d\n", rc);
|
2006-04-10 11:00:53 -04:00
|
|
|
infof(data, "Expire cleared\n");
|
2006-07-13 14:44:24 -04:00
|
|
|
nowp->tv_sec = 0;
|
2006-07-13 14:57:34 -04:00
|
|
|
nowp->tv_usec = 0;
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct timeval set;
|
|
|
|
int rest;
|
|
|
|
|
|
|
|
set = Curl_tvnow();
|
|
|
|
set.tv_sec += milli/1000;
|
|
|
|
set.tv_usec += (milli%1000)*1000;
|
|
|
|
|
|
|
|
rest = (int)(set.tv_usec - 1000000);
|
|
|
|
if(rest > 0) {
|
|
|
|
/* bigger than a full microsec */
|
|
|
|
set.tv_sec++;
|
|
|
|
set.tv_usec -= 1000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nowp->tv_sec) {
|
2006-05-27 18:26:16 -04:00
|
|
|
/* This means that the struct is added as a node in the splay tree.
|
|
|
|
Compare if the new time is earlier, and only remove-old/add-new if it
|
|
|
|
is. */
|
2006-04-10 11:00:53 -04:00
|
|
|
long diff = curlx_tvdiff(set, *nowp);
|
|
|
|
if(diff > 0)
|
|
|
|
/* the new expire time was later so we don't change this */
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Since this is an updated time, we must remove the previous entry from
|
|
|
|
the splay tree first and then re-add the new value */
|
2006-05-27 18:26:16 -04:00
|
|
|
rc = Curl_splayremovebyaddr(multi->timetree,
|
|
|
|
&data->state.timenode,
|
|
|
|
&multi->timetree);
|
|
|
|
if(rc)
|
|
|
|
infof(data, "Internal error removing splay node = %d\n", rc);
|
2006-04-10 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
*nowp = set;
|
2006-10-18 11:11:24 -04:00
|
|
|
#if 0
|
2006-04-10 11:00:53 -04:00
|
|
|
infof(data, "Expire at %ld / %ld (%ldms)\n",
|
|
|
|
(long)nowp->tv_sec, (long)nowp->tv_usec, milli);
|
2006-10-18 11:11:24 -04:00
|
|
|
#endif
|
2006-04-10 11:00:53 -04:00
|
|
|
data->state.timenode.payload = data;
|
|
|
|
multi->timetree = Curl_splayinsert((int)nowp->tv_sec,
|
|
|
|
multi->timetree,
|
|
|
|
&data->state.timenode);
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
Curl_splayprint(multi->timetree, 0, TRUE);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-07-26 18:19:42 -04:00
|
|
|
CURLMcode curl_multi_assign(CURLM *multi_handle,
|
|
|
|
curl_socket_t s, void *hashp)
|
|
|
|
{
|
|
|
|
struct Curl_sh_entry *there = NULL;
|
|
|
|
struct Curl_multi *multi = (struct Curl_multi *)multi_handle;
|
|
|
|
|
|
|
|
if(s != CURL_SOCKET_BAD)
|
|
|
|
there = Curl_hash_pick(multi->sockhash, (char *)&s, sizeof(curl_socket_t));
|
|
|
|
|
|
|
|
if(!there)
|
|
|
|
return CURLM_BAD_SOCKET;
|
|
|
|
|
|
|
|
there->socketp = hashp;
|
|
|
|
|
|
|
|
return CURLM_OK;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
static bool multi_conn_using(struct Curl_multi *multi,
|
|
|
|
struct SessionHandle *data)
|
|
|
|
{
|
|
|
|
/* any live CLOSEACTION-connections pointing to the give 'data' ? */
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=0; i< multi->connc->num; i++) {
|
|
|
|
if(multi->connc->connects[i] &&
|
|
|
|
(multi->connc->connects[i]->data == data) &&
|
|
|
|
multi->connc->connects[i]->protocol & PROT_CLOSEACTION)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-10-04 17:11:08 -04:00
|
|
|
/* Add the given data pointer to the list of 'closure handles' that are kept
|
|
|
|
around only to be able to close some connections nicely - just make sure
|
|
|
|
that this handle isn't already added, like for the cases when an easy
|
|
|
|
handle is removed, added and removed again... */
|
2006-09-28 17:26:06 -04:00
|
|
|
static void add_closure(struct Curl_multi *multi,
|
|
|
|
struct SessionHandle *data)
|
2006-09-07 17:49:20 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct closure *cl = (struct closure *)calloc(sizeof(struct closure), 1);
|
|
|
|
struct closure *p=NULL;
|
|
|
|
struct closure *n;
|
|
|
|
if(cl) {
|
|
|
|
cl->easy_handle = data;
|
|
|
|
cl->next = multi->closure;
|
|
|
|
multi->closure = cl;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = multi->closure;
|
|
|
|
cl = p->next; /* start immediately on the second since the first is the one
|
|
|
|
we just added and it is _very_ likely to actually exist
|
|
|
|
used in the cache since that's the whole purpose of adding
|
|
|
|
it to this list! */
|
|
|
|
|
|
|
|
/* When adding, scan through all the other currently kept handles and see if
|
|
|
|
there are any connections still referring to them and kill them if not. */
|
|
|
|
while(cl) {
|
|
|
|
bool inuse = FALSE;
|
|
|
|
for(i=0; i< multi->connc->num; i++) {
|
|
|
|
if(multi->connc->connects[i] &&
|
|
|
|
(multi->connc->connects[i]->data == cl->easy_handle)) {
|
|
|
|
inuse = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
n = cl->next;
|
|
|
|
|
|
|
|
if(!inuse) {
|
|
|
|
/* cl->easy_handle is now killable */
|
|
|
|
infof(data, "Delayed kill of easy handle %p\n", cl->easy_handle);
|
|
|
|
/* unmark it as not having a connection around that uses it anymore */
|
|
|
|
cl->easy_handle->state.shared_conn= NULL;
|
|
|
|
Curl_close(cl->easy_handle);
|
|
|
|
if(p)
|
|
|
|
p->next = n;
|
|
|
|
else
|
|
|
|
multi->closure = n;
|
|
|
|
free(cl);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
p = cl;
|
|
|
|
|
|
|
|
cl = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-10-13 03:11:26 -04:00
|
|
|
|
|
|
|
#ifdef CURLDEBUG
|
|
|
|
void curl_multi_dump(CURLM *multi_handle)
|
|
|
|
{
|
|
|
|
struct Curl_multi *multi=(struct Curl_multi *)multi_handle;
|
|
|
|
struct Curl_one_easy *easy;
|
|
|
|
int i;
|
|
|
|
fprintf(stderr, "* Multi status: %d handles, %d alive\n",
|
|
|
|
multi->num_easy, multi->num_alive);
|
2007-03-25 04:16:16 -04:00
|
|
|
for(easy=multi->easy.next; easy != &multi->easy; easy = easy->next) {
|
2006-10-13 03:11:26 -04:00
|
|
|
if(easy->state != CURLM_STATE_COMPLETED) {
|
|
|
|
/* only display handles that are not completed */
|
|
|
|
fprintf(stderr, "handle %p, state %s, %d sockets\n",
|
2006-10-13 10:54:36 -04:00
|
|
|
(void *)easy->easy_handle,
|
|
|
|
statename[easy->state], easy->numsocks);
|
2006-10-13 03:11:26 -04:00
|
|
|
for(i=0; i < easy->numsocks; i++) {
|
|
|
|
curl_socket_t s = easy->sockets[i];
|
|
|
|
struct Curl_sh_entry *entry =
|
|
|
|
Curl_hash_pick(multi->sockhash, (char *)&s, sizeof(s));
|
|
|
|
|
|
|
|
fprintf(stderr, "%d ", (int)s);
|
|
|
|
if(!entry) {
|
|
|
|
fprintf(stderr, "INTERNAL CONFUSION\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "[%s %s] ",
|
|
|
|
entry->action&CURL_POLL_IN?"RECVING":"",
|
|
|
|
entry->action&CURL_POLL_OUT?"SENDING":"");
|
|
|
|
}
|
|
|
|
if(easy->numsocks)
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|