2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 03:43:48 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2000-05-22 10:09:31 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-03-14 10:37:03 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-05-22 10:09:31 -04: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
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 03:43:48 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -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.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2000-08-24 10:26:33 -04:00
|
|
|
|
2013-02-07 14:12:04 -05:00
|
|
|
/*
|
|
|
|
* See comment in curl_memory.h for the explanation of this sanity check.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CURLX_NO_MEMORY_CALLBACKS
|
|
|
|
#error "libcurl shall not ever be built with CURLX_NO_MEMORY_CALLBACKS defined"
|
|
|
|
#endif
|
|
|
|
|
2007-04-03 16:54:37 -04:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2000-05-22 10:09:31 -04:00
|
|
|
#include <netinet/in.h>
|
2007-04-03 16:54:37 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
2000-05-22 10:09:31 -04:00
|
|
|
#include <netdb.h>
|
2007-04-03 16:54:37 -04:00
|
|
|
#endif
|
2000-05-22 10:09:31 -04:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
2007-04-03 16:54:37 -04:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
2000-05-22 10:09:31 -04:00
|
|
|
#include <sys/ioctl.h>
|
2007-04-03 16:54:37 -04:00
|
|
|
#endif
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
2000-05-22 10:09:31 -04:00
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "transfer.h"
|
2013-12-17 17:32:47 -05:00
|
|
|
#include "vtls/vtls.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "url.h"
|
|
|
|
#include "getinfo.h"
|
|
|
|
#include "hostip.h"
|
|
|
|
#include "share.h"
|
|
|
|
#include "strdup.h"
|
|
|
|
#include "progress.h"
|
|
|
|
#include "easyif.h"
|
|
|
|
#include "select.h"
|
|
|
|
#include "sendf.h" /* for failf function prototype */
|
|
|
|
#include "connect.h" /* for Curl_getconnectinfo */
|
|
|
|
#include "slist.h"
|
|
|
|
#include "amigaos.h"
|
|
|
|
#include "non-ascii.h"
|
|
|
|
#include "warnless.h"
|
|
|
|
#include "conncache.h"
|
2013-04-26 16:23:08 -04:00
|
|
|
#include "multiif.h"
|
2013-11-25 09:35:37 -05:00
|
|
|
#include "sigpipe.h"
|
2014-11-09 09:42:12 -05:00
|
|
|
#include "ssh.h"
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
2015-03-03 06:36:18 -05:00
|
|
|
#include "curl_printf.h"
|
2015-03-24 18:12:03 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2001-07-11 21:57:28 -04:00
|
|
|
|
2016-03-16 19:55:46 -04:00
|
|
|
void Curl_version_init(void);
|
2016-03-16 19:13:42 -04:00
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/* win32_cleanup() is for win32 socket cleanup functionality, the opposite
|
|
|
|
of win32_init() */
|
2001-07-11 21:57:28 -04:00
|
|
|
static void win32_cleanup(void)
|
|
|
|
{
|
2008-08-11 16:29:36 -04:00
|
|
|
#ifdef USE_WINSOCK
|
2001-07-11 21:57:28 -04:00
|
|
|
WSACleanup();
|
2008-08-11 16:29:36 -04:00
|
|
|
#endif
|
|
|
|
#ifdef USE_WINDOWS_SSPI
|
2009-01-29 15:32:27 -05:00
|
|
|
Curl_sspi_global_cleanup();
|
2008-08-11 16:29:36 -04:00
|
|
|
#endif
|
2001-07-11 21:57:28 -04:00
|
|
|
}
|
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/* win32_init() performs win32 socket initialization to properly setup the
|
|
|
|
stack to allow networking */
|
2001-07-11 21:57:28 -04:00
|
|
|
static CURLcode win32_init(void)
|
|
|
|
{
|
2008-08-11 16:29:36 -04:00
|
|
|
#ifdef USE_WINSOCK
|
2004-06-24 03:43:48 -04:00
|
|
|
WORD wVersionRequested;
|
|
|
|
WSADATA wsaData;
|
2008-09-30 11:10:27 -04:00
|
|
|
int res;
|
2004-03-03 08:32:56 -05:00
|
|
|
|
2006-10-18 17:05:40 -04:00
|
|
|
#if defined(ENABLE_IPV6) && (USE_WINSOCK < 2)
|
|
|
|
Error IPV6_requires_winsock2
|
2004-03-03 08:32:56 -05:00
|
|
|
#endif
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2006-10-18 17:05:40 -04:00
|
|
|
wVersionRequested = MAKEWORD(USE_WINSOCK, USE_WINSOCK);
|
|
|
|
|
2008-09-30 11:10:27 -04:00
|
|
|
res = WSAStartup(wVersionRequested, &wsaData);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2008-09-30 11:10:27 -04:00
|
|
|
if(res != 0)
|
2004-06-24 03:43:48 -04:00
|
|
|
/* Tell the user that we couldn't find a useable */
|
|
|
|
/* winsock.dll. */
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
|
|
|
/* Confirm that the Windows Sockets DLL supports what we need.*/
|
|
|
|
/* Note that if the DLL supports versions greater */
|
|
|
|
/* than wVersionRequested, it will still return */
|
2004-03-03 08:32:56 -05:00
|
|
|
/* wVersionRequested in wVersion. wHighVersion contains the */
|
|
|
|
/* highest supported version. */
|
|
|
|
|
2016-04-03 14:28:34 -04:00
|
|
|
if(LOBYTE(wsaData.wVersion) != LOBYTE(wVersionRequested) ||
|
|
|
|
HIBYTE(wsaData.wVersion) != HIBYTE(wVersionRequested) ) {
|
2004-06-24 03:43:48 -04:00
|
|
|
/* Tell the user that we couldn't find a useable */
|
2001-07-11 21:57:28 -04:00
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
/* winsock.dll. */
|
|
|
|
WSACleanup();
|
|
|
|
return CURLE_FAILED_INIT;
|
2001-07-11 21:57:28 -04:00
|
|
|
}
|
2004-04-26 03:11:06 -04:00
|
|
|
/* The Windows Sockets DLL is acceptable. Proceed. */
|
2011-08-07 02:45:57 -04:00
|
|
|
#elif defined(USE_LWIPSOCK)
|
|
|
|
lwip_init();
|
2008-08-11 16:29:36 -04:00
|
|
|
#endif
|
2004-04-26 03:11:06 -04:00
|
|
|
|
2008-08-11 16:29:36 -04:00
|
|
|
#ifdef USE_WINDOWS_SSPI
|
|
|
|
{
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result = Curl_sspi_global_init();
|
|
|
|
if(result)
|
|
|
|
return result;
|
2008-08-11 16:29:36 -04:00
|
|
|
}
|
2001-07-11 21:57:28 -04:00
|
|
|
#endif
|
|
|
|
|
2008-08-11 16:29:36 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
/* true globals -- for curl_global_init() and curl_global_cleanup() */
|
2004-12-22 15:12:15 -05:00
|
|
|
static unsigned int initialized;
|
|
|
|
static long init_flags;
|
2001-05-31 07:30:34 -04:00
|
|
|
|
2006-07-11 13:02:06 -04:00
|
|
|
/*
|
|
|
|
* strdup (and other memory functions) is redefined in complicated
|
|
|
|
* ways, but at this point it must be defined as the system-supplied strdup
|
|
|
|
* so the callback pointer is initialized correctly.
|
|
|
|
*/
|
|
|
|
#if defined(_WIN32_WCE)
|
|
|
|
#define system_strdup _strdup
|
|
|
|
#elif !defined(HAVE_STRDUP)
|
|
|
|
#define system_strdup curlx_strdup
|
|
|
|
#else
|
|
|
|
#define system_strdup strdup
|
|
|
|
#endif
|
|
|
|
|
2009-10-27 12:38:42 -04:00
|
|
|
#if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__)
|
2008-08-31 08:12:35 -04:00
|
|
|
# pragma warning(disable:4232) /* MSVC extension, dllimport identity */
|
|
|
|
#endif
|
|
|
|
|
2008-04-22 18:53:53 -04:00
|
|
|
#ifndef __SYMBIAN32__
|
2004-05-11 07:30:23 -04:00
|
|
|
/*
|
|
|
|
* If a memory-using function (like curl_getenv) is used before
|
|
|
|
* curl_global_init() is called, we need to have these pointers set already.
|
|
|
|
*/
|
|
|
|
curl_malloc_callback Curl_cmalloc = (curl_malloc_callback)malloc;
|
|
|
|
curl_free_callback Curl_cfree = (curl_free_callback)free;
|
|
|
|
curl_realloc_callback Curl_crealloc = (curl_realloc_callback)realloc;
|
2006-07-11 13:02:06 -04:00
|
|
|
curl_strdup_callback Curl_cstrdup = (curl_strdup_callback)system_strdup;
|
2004-05-11 07:30:23 -04:00
|
|
|
curl_calloc_callback Curl_ccalloc = (curl_calloc_callback)calloc;
|
2013-07-19 00:44:46 -04:00
|
|
|
#if defined(WIN32) && defined(UNICODE)
|
|
|
|
curl_wcsdup_callback Curl_cwcsdup = (curl_wcsdup_callback)_wcsdup;
|
2013-07-18 14:04:02 -04:00
|
|
|
#endif
|
2008-04-22 18:53:53 -04:00
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* Symbian OS doesn't support initialization to code in writeable static data.
|
|
|
|
* Initialization will occur in the curl_global_init() call.
|
|
|
|
*/
|
|
|
|
curl_malloc_callback Curl_cmalloc;
|
|
|
|
curl_free_callback Curl_cfree;
|
|
|
|
curl_realloc_callback Curl_crealloc;
|
|
|
|
curl_strdup_callback Curl_cstrdup;
|
|
|
|
curl_calloc_callback Curl_ccalloc;
|
|
|
|
#endif
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2009-10-27 12:38:42 -04:00
|
|
|
#if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__)
|
2008-08-31 08:12:35 -04:00
|
|
|
# pragma warning(default:4232) /* MSVC extension, dllimport identity */
|
|
|
|
#endif
|
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
/**
|
2016-10-18 07:59:54 -04:00
|
|
|
* curl_global_init() globally initializes curl given a bitwise set of the
|
2004-04-26 03:11:06 -04:00
|
|
|
* different features of what to initialize.
|
2001-07-11 21:57:28 -04:00
|
|
|
*/
|
2015-10-09 10:13:54 -04:00
|
|
|
static CURLcode global_init(long flags, bool memoryfuncs)
|
2001-05-28 10:12:43 -04:00
|
|
|
{
|
2007-11-05 04:45:09 -05:00
|
|
|
if(initialized++)
|
2001-07-11 21:57:28 -04:00
|
|
|
return CURLE_OK;
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2015-10-09 10:13:54 -04:00
|
|
|
if(memoryfuncs) {
|
|
|
|
/* Setup the default memory functions here (again) */
|
|
|
|
Curl_cmalloc = (curl_malloc_callback)malloc;
|
|
|
|
Curl_cfree = (curl_free_callback)free;
|
|
|
|
Curl_crealloc = (curl_realloc_callback)realloc;
|
|
|
|
Curl_cstrdup = (curl_strdup_callback)system_strdup;
|
|
|
|
Curl_ccalloc = (curl_calloc_callback)calloc;
|
2013-07-19 00:44:46 -04:00
|
|
|
#if defined(WIN32) && defined(UNICODE)
|
2015-10-09 10:13:54 -04:00
|
|
|
Curl_cwcsdup = (curl_wcsdup_callback)_wcsdup;
|
2013-07-18 14:04:02 -04:00
|
|
|
#endif
|
2015-10-09 10:13:54 -04:00
|
|
|
}
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(flags & CURL_GLOBAL_SSL)
|
|
|
|
if(!Curl_ssl_init()) {
|
2007-01-31 14:47:49 -05:00
|
|
|
DEBUGF(fprintf(stderr, "Error: Curl_ssl_init failed\n"));
|
2005-02-09 18:04:51 -05:00
|
|
|
return CURLE_FAILED_INIT;
|
2007-01-31 14:47:49 -05:00
|
|
|
}
|
2001-05-30 04:00:29 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(flags & CURL_GLOBAL_WIN32)
|
2014-10-23 16:56:35 -04:00
|
|
|
if(win32_init()) {
|
2007-01-31 14:47:49 -05:00
|
|
|
DEBUGF(fprintf(stderr, "Error: win32_init failed\n"));
|
2001-07-11 21:57:28 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
2007-01-31 14:47:49 -05:00
|
|
|
}
|
2001-07-11 21:57:28 -04:00
|
|
|
|
2007-02-28 09:45:48 -05:00
|
|
|
#ifdef __AMIGA__
|
2012-04-06 17:35:15 -04:00
|
|
|
if(!Curl_amiga_init()) {
|
|
|
|
DEBUGF(fprintf(stderr, "Error: Curl_amiga_init failed\n"));
|
2004-01-13 03:35:57 -05:00
|
|
|
return CURLE_FAILED_INIT;
|
2007-01-31 14:47:49 -05:00
|
|
|
}
|
2004-01-13 03:35:57 -05:00
|
|
|
#endif
|
|
|
|
|
2007-07-11 17:34:22 -04:00
|
|
|
#ifdef NETWARE
|
|
|
|
if(netware_init()) {
|
|
|
|
DEBUGF(fprintf(stderr, "Warning: LONG namespace not available\n"));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(Curl_resolver_global_init()) {
|
2011-01-29 14:12:10 -05:00
|
|
|
DEBUGF(fprintf(stderr, "Error: resolver_global_init failed\n"));
|
2009-05-17 13:40:30 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
2016-07-15 11:53:13 -04:00
|
|
|
(void)Curl_ipv6works();
|
|
|
|
|
2010-04-25 18:36:25 -04:00
|
|
|
#if defined(USE_LIBSSH2) && defined(HAVE_LIBSSH2_INIT)
|
|
|
|
if(libssh2_init(0)) {
|
|
|
|
DEBUGF(fprintf(stderr, "Error: libssh2_init failed\n"));
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-04 10:18:44 -04:00
|
|
|
if(flags & CURL_GLOBAL_ACK_EINTR)
|
|
|
|
Curl_ack_eintr = 1;
|
2013-03-11 09:57:07 -04:00
|
|
|
|
2016-03-16 19:13:42 -04:00
|
|
|
init_flags = flags;
|
|
|
|
|
2016-03-16 19:55:46 -04:00
|
|
|
Curl_version_init();
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-05-28 10:12:43 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2015-10-09 10:13:54 -04:00
|
|
|
|
|
|
|
/**
|
2016-10-18 07:59:54 -04:00
|
|
|
* curl_global_init() globally initializes curl given a bitwise set of the
|
2015-10-09 10:13:54 -04:00
|
|
|
* different features of what to initialize.
|
|
|
|
*/
|
|
|
|
CURLcode curl_global_init(long flags)
|
|
|
|
{
|
|
|
|
return global_init(flags, TRUE);
|
|
|
|
}
|
|
|
|
|
2004-05-11 07:30:23 -04:00
|
|
|
/*
|
2016-10-18 07:59:54 -04:00
|
|
|
* curl_global_init_mem() globally initializes curl and also registers the
|
2004-05-11 07:30:23 -04:00
|
|
|
* user provided callback routines.
|
|
|
|
*/
|
|
|
|
CURLcode curl_global_init_mem(long flags, curl_malloc_callback m,
|
|
|
|
curl_free_callback f, curl_realloc_callback r,
|
|
|
|
curl_strdup_callback s, curl_calloc_callback c)
|
|
|
|
{
|
|
|
|
/* Invalid input, return immediately */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!m || !f || !r || !s || !c)
|
2004-05-11 07:30:23 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
2014-04-22 16:56:59 -04:00
|
|
|
if(initialized) {
|
|
|
|
/* Already initialized, don't do it again, but bump the variable anyway to
|
|
|
|
work like curl_global_init() and require the same amount of cleanup
|
|
|
|
calls. */
|
|
|
|
initialized++;
|
2004-05-11 07:30:23 -04:00
|
|
|
return CURLE_OK;
|
2014-04-22 16:56:59 -04:00
|
|
|
}
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2015-10-09 10:04:11 -04:00
|
|
|
/* set memory functions before global_init() in case it wants memory
|
|
|
|
functions */
|
|
|
|
Curl_cmalloc = m;
|
|
|
|
Curl_cfree = f;
|
|
|
|
Curl_cstrdup = s;
|
|
|
|
Curl_crealloc = r;
|
|
|
|
Curl_ccalloc = c;
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2015-10-09 10:13:54 -04:00
|
|
|
/* Call the actual init function, but without setting */
|
|
|
|
return global_init(flags, FALSE);
|
2004-05-11 07:30:23 -04:00
|
|
|
}
|
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
/**
|
2016-10-18 07:59:54 -04:00
|
|
|
* curl_global_cleanup() globally cleanups curl, uses the value of
|
2004-04-26 03:11:06 -04:00
|
|
|
* "init_flags" to determine what needs to be cleaned up and what doesn't.
|
2001-07-11 21:57:28 -04:00
|
|
|
*/
|
2001-05-28 10:12:43 -04:00
|
|
|
void curl_global_cleanup(void)
|
|
|
|
{
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!initialized)
|
2001-07-11 21:57:28 -04:00
|
|
|
return;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(--initialized)
|
2006-01-15 18:55:53 -05:00
|
|
|
return;
|
|
|
|
|
2002-01-07 15:52:32 -05:00
|
|
|
Curl_global_host_cache_dtor();
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(init_flags & CURL_GLOBAL_SSL)
|
2005-04-07 11:27:13 -04:00
|
|
|
Curl_ssl_cleanup();
|
2001-05-31 07:30:34 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
Curl_resolver_global_cleanup();
|
2009-05-17 13:40:30 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(init_flags & CURL_GLOBAL_WIN32)
|
2001-07-11 21:57:28 -04:00
|
|
|
win32_cleanup();
|
|
|
|
|
2012-04-06 17:35:15 -04:00
|
|
|
Curl_amiga_cleanup();
|
2004-01-13 03:35:57 -05:00
|
|
|
|
2010-04-25 18:36:25 -04:00
|
|
|
#if defined(USE_LIBSSH2) && defined(HAVE_LIBSSH2_EXIT)
|
|
|
|
(void)libssh2_exit();
|
|
|
|
#endif
|
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
init_flags = 0;
|
2001-05-28 10:12:43 -04:00
|
|
|
}
|
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/*
|
|
|
|
* curl_easy_init() is the external interface to alloc, setup and init an
|
|
|
|
* easy handle that is returned. If anything goes wrong, NULL is returned.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
struct Curl_easy *curl_easy_init(void)
|
2000-05-22 10:09:31 -04:00
|
|
|
{
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data;
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2001-05-28 10:12:43 -04:00
|
|
|
/* Make sure we inited the global SSL stuff */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!initialized) {
|
2014-10-23 16:56:35 -04:00
|
|
|
result = curl_global_init(CURL_GLOBAL_DEFAULT);
|
|
|
|
if(result) {
|
2004-03-15 11:28:36 -05:00
|
|
|
/* something in the global init failed, return nothing */
|
2007-01-31 14:47:49 -05:00
|
|
|
DEBUGF(fprintf(stderr, "Error: curl_global_init failed\n"));
|
2004-03-15 11:28:36 -05:00
|
|
|
return NULL;
|
2007-01-31 14:47:49 -05:00
|
|
|
}
|
2004-03-15 11:28:36 -05:00
|
|
|
}
|
2001-05-28 10:12:43 -04:00
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
/* We use curl_open() with undefined URL so far */
|
2014-10-23 16:56:35 -04:00
|
|
|
result = Curl_open(&data);
|
|
|
|
if(result) {
|
2007-01-31 14:47:49 -05:00
|
|
|
DEBUGF(fprintf(stderr, "Error: Curl_open failed\n"));
|
2000-05-22 10:09:31 -04:00
|
|
|
return NULL;
|
2007-01-31 14:47:49 -05:00
|
|
|
}
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
/*
|
2004-04-26 03:11:06 -04:00
|
|
|
* curl_easy_setopt() is the external interface for setting options on an
|
|
|
|
* easy handle.
|
|
|
|
*/
|
2005-07-17 08:44:11 -04:00
|
|
|
|
2008-03-11 03:37:40 -04:00
|
|
|
#undef curl_easy_setopt
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_setopt(struct Curl_easy *data, CURLoption tag, ...)
|
2000-05-22 10:09:31 -04:00
|
|
|
{
|
|
|
|
va_list arg;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
if(!data)
|
2004-05-13 11:16:10 -04:00
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
va_start(arg, tag);
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
result = Curl_setopt(data, tag, arg);
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
va_end(arg);
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2000-05-22 10:09:31 -04:00
|
|
|
}
|
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
|
2013-08-29 03:57:14 -04:00
|
|
|
struct socketmonitor {
|
|
|
|
struct socketmonitor *next; /* the next node in the list or NULL */
|
2013-08-10 16:55:59 -04:00
|
|
|
struct pollfd socket; /* socket info of what to monitor */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct events {
|
|
|
|
long ms; /* timeout, run the timeout function when reached */
|
|
|
|
bool msbump; /* set TRUE when timeout is set by callback */
|
|
|
|
int num_sockets; /* number of nodes in the monitor list */
|
2013-08-29 03:57:14 -04:00
|
|
|
struct socketmonitor *list; /* list of sockets to monitor */
|
2013-08-10 16:55:59 -04:00
|
|
|
int running_handles; /* store the returned number */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* events_timer
|
|
|
|
*
|
|
|
|
* Callback that gets called with a new value when the timeout should be
|
|
|
|
* updated.
|
|
|
|
*/
|
|
|
|
|
2016-06-21 13:31:24 -04:00
|
|
|
static int events_timer(struct Curl_multi *multi, /* multi handle */
|
2013-08-10 16:55:59 -04:00
|
|
|
long timeout_ms, /* see above */
|
|
|
|
void *userp) /* private callback pointer */
|
|
|
|
{
|
|
|
|
struct events *ev = userp;
|
|
|
|
(void)multi;
|
|
|
|
if(timeout_ms == -1)
|
|
|
|
/* timeout removed */
|
|
|
|
timeout_ms = 0;
|
|
|
|
else if(timeout_ms == 0)
|
|
|
|
/* timeout is already reached! */
|
|
|
|
timeout_ms = 1; /* trigger asap */
|
|
|
|
|
|
|
|
ev->ms = timeout_ms;
|
|
|
|
ev->msbump = TRUE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* poll2cselect
|
|
|
|
*
|
|
|
|
* convert from poll() bit definitions to libcurl's CURL_CSELECT_* ones
|
|
|
|
*/
|
|
|
|
static int poll2cselect(int pollmask)
|
|
|
|
{
|
|
|
|
int omask=0;
|
|
|
|
if(pollmask & POLLIN)
|
|
|
|
omask |= CURL_CSELECT_IN;
|
|
|
|
if(pollmask & POLLOUT)
|
|
|
|
omask |= CURL_CSELECT_OUT;
|
|
|
|
if(pollmask & POLLERR)
|
|
|
|
omask |= CURL_CSELECT_ERR;
|
|
|
|
return omask;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* socketcb2poll
|
|
|
|
*
|
|
|
|
* convert from libcurl' CURL_POLL_* bit definitions to poll()'s
|
|
|
|
*/
|
|
|
|
static short socketcb2poll(int pollmask)
|
|
|
|
{
|
|
|
|
short omask=0;
|
|
|
|
if(pollmask & CURL_POLL_IN)
|
|
|
|
omask |= POLLIN;
|
|
|
|
if(pollmask & CURL_POLL_OUT)
|
|
|
|
omask |= POLLOUT;
|
|
|
|
return omask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* events_socket
|
|
|
|
*
|
|
|
|
* Callback that gets called with information about socket activity to
|
|
|
|
* monitor.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
static int events_socket(struct Curl_easy *easy, /* easy handle */
|
2013-08-10 16:55:59 -04:00
|
|
|
curl_socket_t s, /* socket */
|
|
|
|
int what, /* see above */
|
|
|
|
void *userp, /* private callback
|
|
|
|
pointer */
|
|
|
|
void *socketp) /* private socket
|
|
|
|
pointer */
|
|
|
|
{
|
|
|
|
struct events *ev = userp;
|
2013-08-29 03:57:14 -04:00
|
|
|
struct socketmonitor *m;
|
|
|
|
struct socketmonitor *prev=NULL;
|
2014-11-16 13:16:27 -05:00
|
|
|
|
|
|
|
#if defined(CURL_DISABLE_VERBOSE_STRINGS)
|
|
|
|
(void) easy;
|
|
|
|
#endif
|
2013-08-10 16:55:59 -04:00
|
|
|
(void)socketp;
|
|
|
|
|
|
|
|
m = ev->list;
|
|
|
|
while(m) {
|
|
|
|
if(m->socket.fd == s) {
|
|
|
|
|
|
|
|
if(what == CURL_POLL_REMOVE) {
|
2013-08-29 03:57:14 -04:00
|
|
|
struct socketmonitor *nxt = m->next;
|
2013-08-10 16:55:59 -04:00
|
|
|
/* remove this node from the list of monitored sockets */
|
|
|
|
if(prev)
|
|
|
|
prev->next = nxt;
|
|
|
|
else
|
|
|
|
ev->list = nxt;
|
|
|
|
free(m);
|
|
|
|
m = nxt;
|
|
|
|
infof(easy, "socket cb: socket %d REMOVED\n", s);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* The socket 's' is already being monitored, update the activity
|
|
|
|
mask. Convert from libcurl bitmask to the poll one. */
|
|
|
|
m->socket.events = socketcb2poll(what);
|
|
|
|
infof(easy, "socket cb: socket %d UPDATED as %s%s\n", s,
|
|
|
|
what&CURL_POLL_IN?"IN":"",
|
|
|
|
what&CURL_POLL_OUT?"OUT":"");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = m;
|
|
|
|
m = m->next; /* move to next node */
|
|
|
|
}
|
|
|
|
if(!m) {
|
|
|
|
if(what == CURL_POLL_REMOVE) {
|
|
|
|
/* this happens a bit too often, libcurl fix perhaps? */
|
|
|
|
/* fprintf(stderr,
|
|
|
|
"%s: socket %d asked to be REMOVED but not present!\n",
|
|
|
|
__func__, s); */
|
|
|
|
}
|
|
|
|
else {
|
2013-08-29 03:57:14 -04:00
|
|
|
m = malloc(sizeof(struct socketmonitor));
|
2016-03-14 10:37:03 -04:00
|
|
|
if(m) {
|
|
|
|
m->next = ev->list;
|
|
|
|
m->socket.fd = s;
|
|
|
|
m->socket.events = socketcb2poll(what);
|
|
|
|
m->socket.revents = 0;
|
|
|
|
ev->list = m;
|
|
|
|
infof(easy, "socket cb: socket %d ADDED as %s%s\n", s,
|
|
|
|
what&CURL_POLL_IN?"IN":"",
|
|
|
|
what&CURL_POLL_OUT?"OUT":"");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2013-08-10 16:55:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
/*
|
2013-08-10 16:55:59 -04:00
|
|
|
* events_setup()
|
2005-01-29 17:26:38 -05:00
|
|
|
*
|
2013-08-10 16:55:59 -04:00
|
|
|
* Do the multi handle setups that only event-based transfers need.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
static void events_setup(struct Curl_multi *multi, struct events *ev)
|
2013-08-10 16:55:59 -04:00
|
|
|
{
|
|
|
|
/* timer callback */
|
|
|
|
curl_multi_setopt(multi, CURLMOPT_TIMERFUNCTION, events_timer);
|
|
|
|
curl_multi_setopt(multi, CURLMOPT_TIMERDATA, ev);
|
|
|
|
|
|
|
|
/* socket callback */
|
|
|
|
curl_multi_setopt(multi, CURLMOPT_SOCKETFUNCTION, events_socket);
|
|
|
|
curl_multi_setopt(multi, CURLMOPT_SOCKETDATA, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* wait_or_timeout()
|
2013-01-17 06:59:23 -05:00
|
|
|
*
|
2013-08-10 16:55:59 -04:00
|
|
|
* waits for activity on any of the given sockets, or the timeout to trigger.
|
2005-01-29 17:26:38 -05:00
|
|
|
*/
|
2013-08-10 16:55:59 -04:00
|
|
|
|
|
|
|
static CURLcode wait_or_timeout(struct Curl_multi *multi, struct events *ev)
|
2005-01-29 17:26:38 -05:00
|
|
|
{
|
2013-01-17 06:59:23 -05:00
|
|
|
bool done = FALSE;
|
2013-08-10 16:55:59 -04:00
|
|
|
CURLMcode mcode;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-08-10 16:55:59 -04:00
|
|
|
|
|
|
|
while(!done) {
|
|
|
|
CURLMsg *msg;
|
2013-08-29 03:57:14 -04:00
|
|
|
struct socketmonitor *m;
|
2013-08-10 16:55:59 -04:00
|
|
|
struct pollfd *f;
|
|
|
|
struct pollfd fds[4];
|
|
|
|
int numfds=0;
|
|
|
|
int pollrc;
|
|
|
|
int i;
|
|
|
|
struct timeval before;
|
|
|
|
struct timeval after;
|
|
|
|
|
|
|
|
/* populate the fds[] array */
|
|
|
|
for(m = ev->list, f=&fds[0]; m; m = m->next) {
|
|
|
|
f->fd = m->socket.fd;
|
|
|
|
f->events = m->socket.events;
|
|
|
|
f->revents = 0;
|
|
|
|
/* fprintf(stderr, "poll() %d check socket %d\n", numfds, f->fd); */
|
|
|
|
f++;
|
|
|
|
numfds++;
|
|
|
|
}
|
2005-01-29 17:26:38 -05:00
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
/* get the time stamp to use to figure out how long poll takes */
|
|
|
|
before = curlx_tvnow();
|
2005-01-29 17:26:38 -05:00
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
/* wait for activity or timeout */
|
|
|
|
pollrc = Curl_poll(fds, numfds, (int)ev->ms);
|
2005-01-29 17:26:38 -05:00
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
after = curlx_tvnow();
|
2013-04-04 04:33:39 -04:00
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
ev->msbump = FALSE; /* reset here */
|
|
|
|
|
|
|
|
if(0 == pollrc) {
|
|
|
|
/* timeout! */
|
|
|
|
ev->ms = 0;
|
2016-04-03 14:28:34 -04:00
|
|
|
/* fprintf(stderr, "call curl_multi_socket_action(TIMEOUT)\n"); */
|
2013-08-10 16:55:59 -04:00
|
|
|
mcode = curl_multi_socket_action(multi, CURL_SOCKET_TIMEOUT, 0,
|
|
|
|
&ev->running_handles);
|
|
|
|
}
|
|
|
|
else if(pollrc > 0) {
|
|
|
|
/* loop over the monitored sockets to see which ones had activity */
|
|
|
|
for(i = 0; i< numfds; i++) {
|
|
|
|
if(fds[i].revents) {
|
|
|
|
/* socket activity, tell libcurl */
|
|
|
|
int act = poll2cselect(fds[i].revents); /* convert */
|
2016-04-03 14:28:34 -04:00
|
|
|
infof(multi->easyp, "call curl_multi_socket_action(socket %d)\n",
|
2013-08-10 16:55:59 -04:00
|
|
|
fds[i].fd);
|
|
|
|
mcode = curl_multi_socket_action(multi, fds[i].fd, act,
|
|
|
|
&ev->running_handles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!ev->msbump)
|
|
|
|
/* If nothing updated the timeout, we decrease it by the spent time.
|
|
|
|
* If it was updated, it has the new timeout time stored already.
|
|
|
|
*/
|
|
|
|
ev->ms += curlx_tvdiff(after, before);
|
|
|
|
|
|
|
|
}
|
2014-10-02 16:52:23 -04:00
|
|
|
else
|
|
|
|
return CURLE_RECV_ERROR;
|
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
if(mcode)
|
2015-11-24 03:32:42 -05:00
|
|
|
return CURLE_URL_MALFORMAT; /* TODO: return a proper error! */
|
2013-08-10 16:55:59 -04:00
|
|
|
|
|
|
|
/* we don't really care about the "msgs_in_queue" value returned in the
|
|
|
|
second argument */
|
|
|
|
msg = curl_multi_info_read(multi, &pollrc);
|
|
|
|
if(msg) {
|
2014-10-23 16:56:35 -04:00
|
|
|
result = msg->data.result;
|
2013-08-10 16:55:59 -04:00
|
|
|
done = TRUE;
|
|
|
|
}
|
2005-01-29 17:26:38 -05:00
|
|
|
}
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2013-08-10 16:55:59 -04:00
|
|
|
}
|
2013-03-10 19:39:52 -04:00
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
|
|
|
|
/* easy_events()
|
|
|
|
*
|
|
|
|
* Runs a transfer in a blocking manner using the events-based API
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
static CURLcode easy_events(struct Curl_multi *multi)
|
2013-08-10 16:55:59 -04:00
|
|
|
{
|
|
|
|
struct events evs= {2, FALSE, 0, NULL, 0};
|
|
|
|
|
|
|
|
/* if running event-based, do some further multi inits */
|
|
|
|
events_setup(multi, &evs);
|
|
|
|
|
|
|
|
return wait_or_timeout(multi, &evs);
|
|
|
|
}
|
2013-08-25 13:10:02 -04:00
|
|
|
#else /* CURLDEBUG */
|
|
|
|
/* when not built with debug, this function doesn't exist */
|
|
|
|
#define easy_events(x) CURLE_NOT_BUILT_IN
|
2013-08-10 16:55:59 -04:00
|
|
|
#endif
|
|
|
|
|
2016-06-21 13:31:24 -04:00
|
|
|
static CURLcode easy_transfer(struct Curl_multi *multi)
|
2013-08-10 16:55:59 -04:00
|
|
|
{
|
|
|
|
bool done = FALSE;
|
|
|
|
CURLMcode mcode = CURLM_OK;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-08-10 16:55:59 -04:00
|
|
|
struct timeval before;
|
|
|
|
int without_fds = 0; /* count number of consecutive returns from
|
|
|
|
curl_multi_wait() without any filedescriptors */
|
2004-05-13 11:16:10 -04:00
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
while(!done && !mcode) {
|
2014-07-04 12:26:57 -04:00
|
|
|
int still_running = 0;
|
2016-03-19 16:37:12 -04:00
|
|
|
int rc;
|
2008-01-15 17:44:12 -05:00
|
|
|
|
2013-06-13 13:27:12 -04:00
|
|
|
before = curlx_tvnow();
|
2016-03-19 16:37:12 -04:00
|
|
|
mcode = curl_multi_wait(multi, NULL, 0, 1000, &rc);
|
2013-03-11 11:57:25 -04:00
|
|
|
|
2016-03-19 16:37:12 -04:00
|
|
|
if(!mcode) {
|
|
|
|
if(!rc) {
|
2013-06-13 13:27:12 -04:00
|
|
|
struct timeval after = curlx_tvnow();
|
2016-03-19 16:37:12 -04:00
|
|
|
|
2013-06-13 13:27:12 -04:00
|
|
|
/* If it returns without any filedescriptor instantly, we need to
|
|
|
|
avoid busy-looping during periods where it has nothing particular
|
|
|
|
to wait for */
|
|
|
|
if(curlx_tvdiff(after, before) <= 10) {
|
|
|
|
without_fds++;
|
|
|
|
if(without_fds > 2) {
|
2016-03-19 16:37:12 -04:00
|
|
|
int sleep_ms = without_fds < 10 ? (1 << (without_fds - 1)) : 1000;
|
2013-06-13 13:27:12 -04:00
|
|
|
Curl_wait_ms(sleep_ms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* it wasn't "instant", restart counter */
|
|
|
|
without_fds = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* got file descriptor, restart counter */
|
|
|
|
without_fds = 0;
|
2003-08-04 11:02:42 -04:00
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
mcode = curl_multi_perform(multi, &still_running);
|
2013-03-11 11:57:25 -04:00
|
|
|
}
|
2008-01-15 17:44:12 -05:00
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
/* only read 'still_running' if curl_multi_perform() return OK */
|
2016-03-19 16:37:12 -04:00
|
|
|
if(!mcode && !still_running) {
|
2013-08-10 16:55:59 -04:00
|
|
|
CURLMsg *msg = curl_multi_info_read(multi, &rc);
|
2013-01-17 06:59:23 -05:00
|
|
|
if(msg) {
|
2014-10-23 16:56:35 -04:00
|
|
|
result = msg->data.result;
|
2013-01-17 06:59:23 -05:00
|
|
|
done = TRUE;
|
2008-01-15 17:44:12 -05:00
|
|
|
}
|
2002-01-07 15:52:32 -05:00
|
|
|
}
|
2003-01-06 01:17:15 -05:00
|
|
|
}
|
2014-02-19 02:57:00 -05:00
|
|
|
|
|
|
|
/* Make sure to return some kind of error if there was a multi problem */
|
|
|
|
if(mcode) {
|
2016-03-19 16:37:12 -04:00
|
|
|
result = (mcode == CURLM_OUT_OF_MEMORY) ? CURLE_OUT_OF_MEMORY :
|
|
|
|
/* The other multi errors should never happen, so return
|
|
|
|
something suitably generic */
|
|
|
|
CURLE_BAD_FUNCTION_ARGUMENT;
|
2014-02-19 02:57:00 -05:00
|
|
|
}
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2013-08-10 16:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* easy_perform() is the external interface that performs a blocking
|
|
|
|
* transfer as previously setup.
|
|
|
|
*
|
|
|
|
* CONCEPT: This function creates a multi handle, adds the easy handle to it,
|
|
|
|
* runs curl_multi_perform() until the transfer is done, then detaches the
|
|
|
|
* easy handle, destroys the multi handle and returns the easy handle's return
|
|
|
|
* code.
|
|
|
|
*
|
|
|
|
* REALITY: it can't just create and destroy the multi handle that easily. It
|
|
|
|
* needs to keep it around since if this easy handle is used again by this
|
|
|
|
* function, the same multi handle must be re-used so that the same pools and
|
|
|
|
* caches can be used.
|
|
|
|
*
|
|
|
|
* DEBUG: if 'events' is set TRUE, this function will use a replacement engine
|
|
|
|
* instead of curl_multi_perform() and use curl_multi_socket_action().
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
static CURLcode easy_perform(struct Curl_easy *data, bool events)
|
2013-08-10 16:55:59 -04:00
|
|
|
{
|
2016-06-21 13:31:24 -04:00
|
|
|
struct Curl_multi *multi;
|
2013-08-10 16:55:59 -04:00
|
|
|
CURLMcode mcode;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-08-10 16:55:59 -04:00
|
|
|
SIGPIPE_VARIABLE(pipe_st);
|
|
|
|
|
2013-08-27 16:32:51 -04:00
|
|
|
if(!data)
|
2013-08-10 16:55:59 -04:00
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
|
|
|
if(data->multi) {
|
2014-05-03 17:09:26 -04:00
|
|
|
failf(data, "easy handle already used in multi handle");
|
2013-08-10 16:55:59 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data->multi_easy)
|
|
|
|
multi = data->multi_easy;
|
|
|
|
else {
|
|
|
|
/* this multi handle will only ever have a single easy handled attached
|
|
|
|
to it, so make it use minimal hashes */
|
|
|
|
multi = Curl_multi_handle(1, 3);
|
|
|
|
if(!multi)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
data->multi_easy = multi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy the MAXCONNECTS option to the multi handle */
|
|
|
|
curl_multi_setopt(multi, CURLMOPT_MAXCONNECTS, data->set.maxconnects);
|
|
|
|
|
2013-08-27 16:32:51 -04:00
|
|
|
mcode = curl_multi_add_handle(multi, data);
|
2013-08-10 16:55:59 -04:00
|
|
|
if(mcode) {
|
|
|
|
curl_multi_cleanup(multi);
|
|
|
|
if(mcode == CURLM_OUT_OF_MEMORY)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
else
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
sigpipe_ignore(data, &pipe_st);
|
|
|
|
|
|
|
|
/* assign this after curl_multi_add_handle() since that function checks for
|
|
|
|
it and rejects this handle otherwise */
|
|
|
|
data->multi = multi;
|
|
|
|
|
|
|
|
/* run the transfer */
|
2014-10-23 16:56:35 -04:00
|
|
|
result = events ? easy_events(multi) : easy_transfer(multi);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2013-02-05 08:09:18 -05:00
|
|
|
/* ignoring the return code isn't nice, but atm we can't really handle
|
|
|
|
a failure here, room for future improvement! */
|
2013-08-27 16:32:51 -04:00
|
|
|
(void)curl_multi_remove_handle(multi, data);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2013-07-11 07:28:47 -04:00
|
|
|
sigpipe_restore(&pipe_st);
|
2013-03-10 19:39:52 -04:00
|
|
|
|
2013-01-17 06:59:23 -05:00
|
|
|
/* The multi handle is kept alive, owned by the easy handle */
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2000-05-22 10:09:31 -04:00
|
|
|
}
|
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* curl_easy_perform() is the external interface that performs a blocking
|
|
|
|
* transfer as previously setup.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_perform(struct Curl_easy *data)
|
2013-08-10 16:55:59 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
return easy_perform(data, FALSE);
|
2013-08-10 16:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CURLDEBUG
|
|
|
|
/*
|
|
|
|
* curl_easy_perform_ev() is the external interface that performs a blocking
|
|
|
|
* transfer using the event-based API internally.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_perform_ev(struct Curl_easy *data)
|
2013-08-10 16:55:59 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
return easy_perform(data, TRUE);
|
2013-08-10 16:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/*
|
|
|
|
* curl_easy_cleanup() is the external interface to cleaning/freeing the given
|
|
|
|
* easy handle.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
void curl_easy_cleanup(struct Curl_easy *data)
|
2000-05-22 10:09:31 -04:00
|
|
|
{
|
2013-07-11 07:28:47 -04:00
|
|
|
SIGPIPE_VARIABLE(pipe_st);
|
2004-05-13 11:16:10 -04:00
|
|
|
|
|
|
|
if(!data)
|
|
|
|
return;
|
|
|
|
|
2013-07-11 07:28:47 -04:00
|
|
|
sigpipe_ignore(data, &pipe_st);
|
2001-08-15 02:51:37 -04:00
|
|
|
Curl_close(data);
|
2013-07-11 07:28:47 -04:00
|
|
|
sigpipe_restore(&pipe_st);
|
2000-05-22 10:09:31 -04:00
|
|
|
}
|
2000-10-02 02:27:43 -04:00
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/*
|
|
|
|
* curl_easy_getinfo() is an external interface that allows an app to retrieve
|
|
|
|
* information from a performed transfer and similar.
|
|
|
|
*/
|
2008-03-18 04:14:37 -04:00
|
|
|
#undef curl_easy_getinfo
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_getinfo(struct Curl_easy *data, CURLINFO info, ...)
|
2000-10-02 02:27:43 -04:00
|
|
|
{
|
|
|
|
va_list arg;
|
|
|
|
void *paramp;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2001-08-15 02:51:37 -04:00
|
|
|
|
2000-10-02 02:27:43 -04:00
|
|
|
va_start(arg, info);
|
|
|
|
paramp = va_arg(arg, void *);
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
result = Curl_getinfo(data, info, paramp);
|
2013-07-24 10:45:30 -04:00
|
|
|
|
|
|
|
va_end(arg);
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2000-10-02 02:27:43 -04:00
|
|
|
}
|
2001-09-05 03:24:01 -04:00
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/*
|
|
|
|
* curl_easy_duphandle() is an external interface to allow duplication of a
|
|
|
|
* given input easy handle. The returned handle will be a new working handle
|
|
|
|
* with all options set exactly as the input source handle.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
struct Curl_easy *curl_easy_duphandle(struct Curl_easy *data)
|
2001-09-05 03:24:01 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *outcurl = calloc(1, sizeof(struct Curl_easy));
|
2001-09-05 03:24:01 -04:00
|
|
|
if(NULL == outcurl)
|
2010-12-06 21:27:59 -05:00
|
|
|
goto fail;
|
2001-09-05 03:24:01 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
/*
|
|
|
|
* We setup a few buffers we need. We should probably make them
|
|
|
|
* get setup on-demand in the code, as that would probably decrease
|
|
|
|
* the likeliness of us forgetting to init a buffer here in the future.
|
|
|
|
*/
|
|
|
|
outcurl->state.headerbuff = malloc(HEADERSIZE);
|
|
|
|
if(!outcurl->state.headerbuff)
|
|
|
|
goto fail;
|
|
|
|
outcurl->state.headersize = HEADERSIZE;
|
2001-09-05 03:24:01 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
/* copy all userdefined values */
|
2014-10-23 16:56:35 -04:00
|
|
|
if(Curl_dupset(outcurl, data))
|
2010-12-06 21:27:59 -05:00
|
|
|
goto fail;
|
2001-09-12 03:57:33 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
/* the connection cache is setup on demand */
|
2012-12-06 06:12:04 -05:00
|
|
|
outcurl->state.conn_cache = NULL;
|
2001-09-12 03:57:33 -04:00
|
|
|
|
2012-12-06 06:12:04 -05:00
|
|
|
outcurl->state.lastconnect = NULL;
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
outcurl->progress.flags = data->progress.flags;
|
|
|
|
outcurl->progress.callback = data->progress.callback;
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
if(data->cookies) {
|
|
|
|
/* If cookies are enabled in the parent handle, we enable them
|
|
|
|
in the clone as well! */
|
|
|
|
outcurl->cookies = Curl_cookie_init(data,
|
|
|
|
data->cookies->filename,
|
|
|
|
outcurl->cookies,
|
|
|
|
data->set.cookiesession);
|
|
|
|
if(!outcurl->cookies)
|
|
|
|
goto fail;
|
|
|
|
}
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
/* duplicate all values in 'change' */
|
|
|
|
if(data->change.cookielist) {
|
|
|
|
outcurl->change.cookielist =
|
|
|
|
Curl_slist_duplicate(data->change.cookielist);
|
|
|
|
if(!outcurl->change.cookielist)
|
|
|
|
goto fail;
|
|
|
|
}
|
2009-03-09 08:21:46 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
if(data->change.url) {
|
|
|
|
outcurl->change.url = strdup(data->change.url);
|
|
|
|
if(!outcurl->change.url)
|
|
|
|
goto fail;
|
|
|
|
outcurl->change.url_alloc = TRUE;
|
|
|
|
}
|
2006-12-22 10:04:59 -05:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
if(data->change.referer) {
|
|
|
|
outcurl->change.referer = strdup(data->change.referer);
|
|
|
|
if(!outcurl->change.referer)
|
|
|
|
goto fail;
|
|
|
|
outcurl->change.referer_alloc = TRUE;
|
|
|
|
}
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
/* Clone the resolver handle, if present, for the new handle */
|
2011-04-22 17:01:30 -04:00
|
|
|
if(Curl_resolver_duphandle(&outcurl->state.resolver,
|
2014-10-23 16:56:35 -04:00
|
|
|
data->state.resolver))
|
2011-01-29 19:00:52 -05:00
|
|
|
goto fail;
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2011-04-19 18:48:20 -04:00
|
|
|
Curl_convert_setup(outcurl);
|
2006-09-09 12:36:05 -04:00
|
|
|
|
2016-11-05 23:05:52 -04:00
|
|
|
Curl_initinfo(outcurl);
|
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
outcurl->magic = CURLEASY_MAGIC_NUMBER;
|
2006-12-29 06:32:14 -05:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
/* we reach this point and thus we are OK */
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
return outcurl;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
|
|
if(outcurl) {
|
2011-10-07 14:50:57 -04:00
|
|
|
curl_slist_free_all(outcurl->change.cookielist);
|
|
|
|
outcurl->change.cookielist = NULL;
|
|
|
|
Curl_safefree(outcurl->state.headerbuff);
|
|
|
|
Curl_safefree(outcurl->change.url);
|
|
|
|
Curl_safefree(outcurl->change.referer);
|
2010-12-06 21:27:59 -05:00
|
|
|
Curl_freeset(outcurl);
|
|
|
|
free(outcurl);
|
2001-09-12 03:57:33 -04:00
|
|
|
}
|
2001-09-05 03:24:01 -04:00
|
|
|
|
2010-12-06 21:27:59 -05:00
|
|
|
return NULL;
|
2001-09-05 03:24:01 -04:00
|
|
|
}
|
2004-07-24 17:31:01 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* curl_easy_reset() is an external interface that allows an app to re-
|
|
|
|
* initialize a session handle to the default values.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
void curl_easy_reset(struct Curl_easy *data)
|
2004-07-24 17:31:01 -04:00
|
|
|
{
|
2007-11-24 18:16:55 -05:00
|
|
|
Curl_safefree(data->state.pathbuffer);
|
2011-10-12 15:32:10 -04:00
|
|
|
|
|
|
|
data->state.path = NULL;
|
2006-10-04 17:11:08 -04:00
|
|
|
|
2013-08-05 04:32:08 -04:00
|
|
|
Curl_free_request_state(data);
|
2006-10-04 17:11:08 -04:00
|
|
|
|
2004-07-24 17:31:01 -04:00
|
|
|
/* zero out UserDefined data: */
|
2007-08-01 17:20:01 -04:00
|
|
|
Curl_freeset(data);
|
2004-07-24 17:31:01 -04:00
|
|
|
memset(&data->set, 0, sizeof(struct UserDefined));
|
2009-01-07 19:31:49 -05:00
|
|
|
(void)Curl_init_userdefined(&data->set);
|
2004-07-24 17:31:01 -04:00
|
|
|
|
|
|
|
/* zero out Progress data: */
|
|
|
|
memset(&data->progress, 0, sizeof(struct Progress));
|
|
|
|
|
2016-09-17 01:48:20 -04:00
|
|
|
/* zero out PureInfo data: */
|
|
|
|
Curl_initinfo(data);
|
|
|
|
|
2004-09-28 18:26:47 -04:00
|
|
|
data->progress.flags |= PGRS_HIDE;
|
2009-01-07 19:31:49 -05:00
|
|
|
data->state.current_speed = -1; /* init to negative == impossible */
|
2004-07-24 17:31:01 -04:00
|
|
|
}
|
2006-04-07 17:50:47 -04:00
|
|
|
|
2008-01-08 09:52:05 -05:00
|
|
|
/*
|
|
|
|
* curl_easy_pause() allows an application to pause or unpause a specific
|
|
|
|
* transfer and direction. This function sets the full new state for the
|
|
|
|
* current connection this easy handle operates on.
|
|
|
|
*
|
|
|
|
* NOTE: if you have the receiving paused and you call this function to remove
|
|
|
|
* the pausing, you may get your write callback called at this point.
|
|
|
|
*
|
|
|
|
* Action is a bitmask consisting of CURLPAUSE_* bits in curl/curl.h
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_pause(struct Curl_easy *data, int action)
|
2008-01-08 09:52:05 -05:00
|
|
|
{
|
|
|
|
struct SingleRequest *k = &data->req;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* first switch off both pause bits */
|
2009-05-11 03:53:38 -04:00
|
|
|
int newstate = k->keepon &~ (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE);
|
2008-01-08 09:52:05 -05:00
|
|
|
|
|
|
|
/* set the new desired pause bits */
|
2009-05-11 03:53:38 -04:00
|
|
|
newstate |= ((action & CURLPAUSE_RECV)?KEEP_RECV_PAUSE:0) |
|
|
|
|
((action & CURLPAUSE_SEND)?KEEP_SEND_PAUSE:0);
|
2008-01-08 09:52:05 -05:00
|
|
|
|
|
|
|
/* put it back in the keepon */
|
|
|
|
k->keepon = newstate;
|
|
|
|
|
2009-05-11 03:53:38 -04:00
|
|
|
if(!(newstate & KEEP_RECV_PAUSE) && data->state.tempwrite) {
|
2011-04-20 09:17:42 -04:00
|
|
|
/* we have a buffer for sending that we now seem to be able to deliver
|
|
|
|
since the receive pausing is lifted! */
|
2008-01-08 09:52:05 -05:00
|
|
|
|
2014-12-09 09:43:51 -05:00
|
|
|
/* get the pointer in local copy since the function may return PAUSE
|
|
|
|
again and then we'll get a new copy allocted and stored in
|
2008-01-08 09:52:05 -05:00
|
|
|
the tempwrite variables */
|
|
|
|
char *tempwrite = data->state.tempwrite;
|
|
|
|
|
2014-12-09 09:43:51 -05:00
|
|
|
data->state.tempwrite = NULL;
|
|
|
|
result = Curl_client_chop_write(data->easy_conn, data->state.tempwritetype,
|
|
|
|
tempwrite, data->state.tempwritesize);
|
|
|
|
free(tempwrite);
|
2008-01-08 09:52:05 -05:00
|
|
|
}
|
|
|
|
|
2013-07-23 07:35:57 -04:00
|
|
|
/* if there's no error and we're not pausing both directions, we want
|
|
|
|
to have this handle checked soon */
|
|
|
|
if(!result &&
|
|
|
|
((newstate&(KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) !=
|
|
|
|
(KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) )
|
2016-08-02 04:57:30 -04:00
|
|
|
Curl_expire(data, 0); /* get this handle going again */
|
2013-07-23 07:35:57 -04:00
|
|
|
|
2008-01-08 09:52:05 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2008-05-12 17:43:24 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
static CURLcode easy_connection(struct Curl_easy *data,
|
2008-05-12 17:43:24 -04:00
|
|
|
curl_socket_t *sfd,
|
|
|
|
struct connectdata **connp)
|
|
|
|
{
|
|
|
|
if(data == NULL)
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
|
|
|
/* only allow these to be called on handles with CURLOPT_CONNECT_ONLY */
|
|
|
|
if(!data->set.connect_only) {
|
|
|
|
failf(data, "CONNECT_ONLY is required!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
}
|
|
|
|
|
2010-09-05 18:02:54 -04:00
|
|
|
*sfd = Curl_getconnectinfo(data, connp);
|
2008-05-12 17:43:24 -04:00
|
|
|
|
2010-09-05 18:02:54 -04:00
|
|
|
if(*sfd == CURL_SOCKET_BAD) {
|
2008-05-12 17:43:24 -04:00
|
|
|
failf(data, "Failed to get recent socket");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Receives data from the connected socket. Use after successful
|
|
|
|
* curl_easy_perform() with CURLOPT_CONNECT_ONLY option.
|
|
|
|
* Returns CURLE_OK on success, error code on error.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_recv(struct Curl_easy *data, void *buffer, size_t buflen,
|
|
|
|
size_t *n)
|
2008-05-12 17:43:24 -04:00
|
|
|
{
|
|
|
|
curl_socket_t sfd;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2008-05-12 17:43:24 -04:00
|
|
|
ssize_t n1;
|
|
|
|
struct connectdata *c;
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
result = easy_connection(data, &sfd, &c);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2008-05-12 17:43:24 -04:00
|
|
|
|
|
|
|
*n = 0;
|
2014-10-23 16:56:35 -04:00
|
|
|
result = Curl_read(c, sfd, buffer, buflen, &n1);
|
2008-05-12 17:43:24 -04:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2008-05-12 17:43:24 -04:00
|
|
|
|
|
|
|
*n = (size_t)n1;
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sends data over the connected socket. Use after successful
|
|
|
|
* curl_easy_perform() with CURLOPT_CONNECT_ONLY option.
|
|
|
|
*/
|
2016-06-21 13:31:24 -04:00
|
|
|
CURLcode curl_easy_send(struct Curl_easy *data, const void *buffer,
|
|
|
|
size_t buflen, size_t *n)
|
2008-05-12 17:43:24 -04:00
|
|
|
{
|
|
|
|
curl_socket_t sfd;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2008-05-12 17:43:24 -04:00
|
|
|
ssize_t n1;
|
|
|
|
struct connectdata *c = NULL;
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
result = easy_connection(data, &sfd, &c);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2008-05-12 17:43:24 -04:00
|
|
|
|
|
|
|
*n = 0;
|
2014-10-23 16:56:35 -04:00
|
|
|
result = Curl_write(c, sfd, buffer, buflen, &n1);
|
2008-05-12 17:43:24 -04:00
|
|
|
|
|
|
|
if(n1 == -1)
|
|
|
|
return CURLE_SEND_ERROR;
|
|
|
|
|
|
|
|
/* detect EAGAIN */
|
2014-10-23 16:56:35 -04:00
|
|
|
if(!result && !n1)
|
2008-05-12 17:43:24 -04:00
|
|
|
return CURLE_AGAIN;
|
|
|
|
|
|
|
|
*n = (size_t)n1;
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2008-05-12 17:43:24 -04:00
|
|
|
}
|