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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2008-01-15 17:44:12 -05:00
|
|
|
* Copyright (C) 1998 - 2008, 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
|
|
|
|
* are also available at http://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
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
/* -- WIN32 approved -- */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "strequal.h"
|
|
|
|
|
2006-10-11 12:01:16 -04:00
|
|
|
#ifdef WIN32
|
2000-05-22 10:09:31 -04:00
|
|
|
#include <time.h>
|
|
|
|
#include <io.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#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
|
2006-08-30 12:17:06 -04:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2000-05-22 10:09:31 -04:00
|
|
|
#include <sys/time.h>
|
2006-08-29 14:45:55 -04:00
|
|
|
#endif
|
2000-05-22 10:09:31 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2007-04-03 16:54:37 -04:00
|
|
|
#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
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
2004-04-27 11:19:28 -04:00
|
|
|
#endif /* WIN32 ... */
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include <curl/curl.h>
|
2001-01-17 08:23:01 -05:00
|
|
|
#include "transfer.h"
|
2005-04-07 11:27:13 -04:00
|
|
|
#include "sslgen.h"
|
2001-08-15 02:51:37 -04:00
|
|
|
#include "url.h"
|
2001-08-17 06:19:26 -04:00
|
|
|
#include "getinfo.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
#include "hostip.h"
|
2003-08-04 11:02:42 -04:00
|
|
|
#include "share.h"
|
2006-07-11 13:02:06 -04:00
|
|
|
#include "strdup.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
#include "memory.h"
|
2004-09-28 18:26:47 -04:00
|
|
|
#include "progress.h"
|
2005-01-11 10:25:29 -05:00
|
|
|
#include "easyif.h"
|
2007-03-27 14:15:26 -04:00
|
|
|
#include "select.h"
|
2006-04-07 17:50:47 -04:00
|
|
|
#include "sendf.h" /* for failf function prototype */
|
2007-01-28 07:58:13 -05:00
|
|
|
#include <ca-bundle.h>
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2006-04-07 17:50:47 -04:00
|
|
|
#if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
|
|
|
|
#include <iconv.h>
|
|
|
|
/* set default codesets for iconv */
|
|
|
|
#ifndef CURL_ICONV_CODESET_OF_NETWORK
|
|
|
|
#define CURL_ICONV_CODESET_OF_NETWORK "ISO8859-1"
|
|
|
|
#endif
|
|
|
|
#ifndef CURL_ICONV_CODESET_FOR_UTF8
|
|
|
|
#define CURL_ICONV_CODESET_FOR_UTF8 "UTF-8"
|
|
|
|
#endif
|
2006-07-25 07:35:35 -04:00
|
|
|
#define ICONV_ERROR (size_t)-1
|
2006-04-07 17:50:47 -04:00
|
|
|
#endif /* CURL_DOES_CONVERSIONS && HAVE_ICONV */
|
|
|
|
|
2003-10-14 09:10:05 -04:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
2001-07-11 21:57:28 -04:00
|
|
|
|
2006-10-18 17:05:40 -04:00
|
|
|
#ifdef USE_WINSOCK
|
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)
|
|
|
|
{
|
|
|
|
WSACleanup();
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2004-06-24 03:43:48 -04:00
|
|
|
WORD wVersionRequested;
|
|
|
|
WSADATA wsaData;
|
|
|
|
int err;
|
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);
|
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
err = WSAStartup(wVersionRequested, &wsaData);
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(err != 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. */
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if( LOBYTE( wsaData.wVersion ) != LOBYTE(wVersionRequested) ||
|
2004-06-24 03:43:48 -04:00
|
|
|
HIBYTE( wsaData.wVersion ) != HIBYTE(wVersionRequested) ) {
|
|
|
|
/* 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. */
|
2001-07-11 21:57:28 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2004-04-26 03:11:06 -04:00
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
#else
|
2001-08-14 04:19:40 -04:00
|
|
|
/* These functions exist merely to prevent compiler warnings */
|
2001-07-11 21:57:28 -04:00
|
|
|
static CURLcode win32_init(void) { return CURLE_OK; }
|
2001-08-14 04:19:40 -04:00
|
|
|
static void win32_cleanup(void) { }
|
2001-07-11 21:57:28 -04:00
|
|
|
#endif
|
|
|
|
|
2004-04-27 11:19:28 -04:00
|
|
|
#ifdef USE_LIBIDN
|
|
|
|
/*
|
|
|
|
* Initialise use of IDNA library.
|
|
|
|
* It falls back to ASCII if $CHARSET isn't defined. This doesn't work for
|
|
|
|
* idna_to_ascii_lz().
|
|
|
|
*/
|
|
|
|
static void idna_init (void)
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
char buf[60];
|
|
|
|
UINT cp = GetACP();
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!getenv("CHARSET") && cp > 0) {
|
2004-04-27 11:19:28 -04:00
|
|
|
snprintf(buf, sizeof(buf), "CHARSET=cp%u", cp);
|
|
|
|
putenv(buf);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
/* to do? */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif /* USE_LIBIDN */
|
|
|
|
|
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
|
|
|
|
|
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.
|
|
|
|
*/
|
2004-11-02 05:12:22 -05:00
|
|
|
|
2004-05-11 07:30:23 -04:00
|
|
|
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;
|
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
/**
|
2004-04-26 03:11:06 -04:00
|
|
|
* curl_global_init() globally initializes cURL given a bitwise set of the
|
|
|
|
* different features of what to initialize.
|
2001-07-11 21:57:28 -04:00
|
|
|
*/
|
2001-05-29 03:20:31 -04:00
|
|
|
CURLcode curl_global_init(long flags)
|
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
|
|
|
|
2004-05-11 07:30:23 -04:00
|
|
|
/* 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;
|
2006-07-11 13:02:06 -04:00
|
|
|
Curl_cstrdup = (curl_strdup_callback)system_strdup;
|
2004-05-11 07:30:23 -04:00
|
|
|
Curl_ccalloc = (curl_calloc_callback)calloc;
|
|
|
|
|
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)
|
|
|
|
if(win32_init() != CURLE_OK) {
|
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__
|
2007-01-31 14:47:49 -05:00
|
|
|
if(!amiga_init()) {
|
|
|
|
DEBUGF(fprintf(stderr, "Error: 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
|
|
|
|
|
2004-04-27 11:19:28 -04:00
|
|
|
#ifdef USE_LIBIDN
|
|
|
|
idna_init();
|
|
|
|
#endif
|
|
|
|
|
2001-05-31 07:30:34 -04:00
|
|
|
init_flags = flags;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-05-28 10:12:43 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2004-05-11 07:30:23 -04:00
|
|
|
/*
|
|
|
|
* curl_global_init_mem() globally initializes cURL and also registers the
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
CURLcode code = CURLE_OK;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* Already initialized, don't do it again */
|
2007-11-05 04:45:09 -05:00
|
|
|
if( initialized )
|
2004-05-11 07:30:23 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
/* Call the actual init function first */
|
|
|
|
code = curl_global_init(flags);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(code == CURLE_OK) {
|
2004-05-11 07:30:23 -04:00
|
|
|
Curl_cmalloc = m;
|
|
|
|
Curl_cfree = f;
|
|
|
|
Curl_cstrdup = s;
|
|
|
|
Curl_crealloc = r;
|
|
|
|
Curl_ccalloc = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2001-07-11 21:57:28 -04:00
|
|
|
/**
|
2004-04-26 03:11:06 -04:00
|
|
|
* curl_global_cleanup() globally cleanups cURL, uses the value of
|
|
|
|
* "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
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(init_flags & CURL_GLOBAL_WIN32)
|
2001-07-11 21:57:28 -04:00
|
|
|
win32_cleanup();
|
|
|
|
|
2007-02-28 09:45:48 -05:00
|
|
|
#ifdef __AMIGA__
|
2004-01-13 03:35:57 -05:00
|
|
|
amiga_cleanup();
|
|
|
|
#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.
|
|
|
|
*/
|
2000-05-22 10:09:31 -04:00
|
|
|
CURL *curl_easy_init(void)
|
|
|
|
{
|
|
|
|
CURLcode res;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *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) {
|
2004-03-15 11:28:36 -05:00
|
|
|
res = curl_global_init(CURL_GLOBAL_DEFAULT);
|
2007-01-31 14:47:49 -05:00
|
|
|
if(res) {
|
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 */
|
2001-08-15 02:51:37 -04:00
|
|
|
res = Curl_open(&data);
|
2007-01-31 14:47:49 -05:00
|
|
|
if(res != CURLE_OK) {
|
|
|
|
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
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
CURLcode curl_easy_setopt(CURL *curl, CURLoption tag, ...)
|
|
|
|
{
|
|
|
|
va_list arg;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = curl;
|
2005-07-17 08:44:11 -04:00
|
|
|
CURLcode ret;
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2004-05-13 11:16:10 -04:00
|
|
|
if(!curl)
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
va_start(arg, tag);
|
|
|
|
|
2005-07-17 08:44:11 -04:00
|
|
|
ret = Curl_setopt(data, tag, arg);
|
2000-05-22 10:09:31 -04:00
|
|
|
|
|
|
|
va_end(arg);
|
2003-04-22 17:42:39 -04:00
|
|
|
return ret;
|
2000-05-22 10:09:31 -04:00
|
|
|
}
|
|
|
|
|
2005-01-29 17:26:38 -05:00
|
|
|
#ifdef CURL_MULTIEASY
|
|
|
|
/***************************************************************************
|
|
|
|
* This function is still only for testing purposes. It makes a great way
|
|
|
|
* to run the full test suite on the multi interface instead of the easy one.
|
|
|
|
***************************************************************************
|
|
|
|
*
|
|
|
|
* The *new* curl_easy_perform() is the external interface that performs a
|
|
|
|
* transfer previously setup.
|
|
|
|
*
|
|
|
|
* Wrapper-function that: 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. This will make everything internally use and assume multi interface.
|
|
|
|
*/
|
|
|
|
CURLcode curl_easy_perform(CURL *easy)
|
|
|
|
{
|
|
|
|
CURLM *multi;
|
|
|
|
CURLMcode mcode;
|
|
|
|
CURLcode code = CURLE_OK;
|
|
|
|
int still_running;
|
|
|
|
struct timeval timeout;
|
|
|
|
int rc;
|
|
|
|
CURLMsg *msg;
|
|
|
|
fd_set fdread;
|
|
|
|
fd_set fdwrite;
|
|
|
|
fd_set fdexcep;
|
|
|
|
int maxfd;
|
|
|
|
|
|
|
|
if(!easy)
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
|
|
|
multi = curl_multi_init();
|
|
|
|
if(!multi)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
mcode = curl_multi_add_handle(multi, easy);
|
|
|
|
if(mcode) {
|
|
|
|
curl_multi_cleanup(multi);
|
2007-04-08 18:49:38 -04:00
|
|
|
if(mcode == CURLM_OUT_OF_MEMORY)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
else
|
|
|
|
return CURLE_FAILED_INIT;
|
2005-01-29 17:26:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* we start some action by calling perform right away */
|
|
|
|
|
|
|
|
do {
|
|
|
|
while(CURLM_CALL_MULTI_PERFORM ==
|
|
|
|
curl_multi_perform(multi, &still_running));
|
|
|
|
|
|
|
|
if(!still_running)
|
|
|
|
break;
|
|
|
|
|
|
|
|
FD_ZERO(&fdread);
|
|
|
|
FD_ZERO(&fdwrite);
|
|
|
|
FD_ZERO(&fdexcep);
|
|
|
|
|
|
|
|
/* timeout once per second */
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
|
2007-05-31 07:34:32 -04:00
|
|
|
/* Old deprecated style: get file descriptors from the transfers */
|
2005-01-29 17:26:38 -05:00
|
|
|
curl_multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
|
2007-03-27 14:15:26 -04:00
|
|
|
rc = Curl_select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
|
2005-01-29 17:26:38 -05:00
|
|
|
|
2007-05-31 07:34:32 -04:00
|
|
|
/* The way is to extract the sockets and wait for them without using
|
|
|
|
select. This whole alternative version should probably rather use the
|
|
|
|
curl_multi_socket() approach. */
|
|
|
|
|
2005-01-29 17:26:38 -05:00
|
|
|
if(rc == -1)
|
|
|
|
/* select error */
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* timeout or data to send/receive => loop! */
|
|
|
|
} while(still_running);
|
|
|
|
|
|
|
|
msg = curl_multi_info_read(multi, &rc);
|
|
|
|
if(msg)
|
|
|
|
code = msg->data.result;
|
|
|
|
|
|
|
|
mcode = curl_multi_remove_handle(multi, easy);
|
|
|
|
/* what to do if it fails? */
|
|
|
|
|
|
|
|
mcode = curl_multi_cleanup(multi);
|
|
|
|
/* what to do if it fails? */
|
|
|
|
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
#else
|
2004-04-26 03:11:06 -04:00
|
|
|
/*
|
|
|
|
* curl_easy_perform() is the external interface that performs a transfer
|
|
|
|
* previously setup.
|
|
|
|
*/
|
2000-05-22 10:09:31 -04:00
|
|
|
CURLcode curl_easy_perform(CURL *curl)
|
|
|
|
{
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = (struct SessionHandle *)curl;
|
2001-08-15 02:51:37 -04:00
|
|
|
|
2004-05-13 11:16:10 -04:00
|
|
|
if(!data)
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if( ! (data->share && data->share->hostcache) ) {
|
2008-01-15 17:44:12 -05:00
|
|
|
/* this handle is not using a shared dns cache */
|
|
|
|
|
|
|
|
if(data->set.global_dns_cache &&
|
|
|
|
(data->dns.hostcachetype != HCACHE_GLOBAL)) {
|
|
|
|
/* global dns cache was requested but still isn't */
|
|
|
|
struct curl_hash *ptr;
|
2003-08-04 11:02:42 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->dns.hostcachetype == HCACHE_PRIVATE)
|
2008-01-15 17:44:12 -05:00
|
|
|
/* if the current cache is private, kill it first */
|
2006-07-07 18:58:06 -04:00
|
|
|
Curl_hash_destroy(data->dns.hostcache);
|
2008-01-15 17:44:12 -05:00
|
|
|
|
|
|
|
ptr = Curl_global_host_cache_init();
|
|
|
|
if(ptr) {
|
|
|
|
/* only do this if the global cache init works */
|
|
|
|
data->dns.hostcache = ptr;
|
|
|
|
data->dns.hostcachetype = HCACHE_GLOBAL;
|
|
|
|
}
|
2002-01-07 15:52:32 -05:00
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!data->dns.hostcache) {
|
2006-07-07 18:58:06 -04:00
|
|
|
data->dns.hostcachetype = HCACHE_PRIVATE;
|
|
|
|
data->dns.hostcache = Curl_mk_dnscache();
|
2003-08-04 11:02:42 -04:00
|
|
|
|
2006-07-07 18:58:06 -04:00
|
|
|
if(!data->dns.hostcache)
|
2003-08-14 11:02:25 -04:00
|
|
|
/* While we possibly could survive and do good without a host cache,
|
|
|
|
the fact that creating it failed indicates that things are truly
|
|
|
|
screwed up and we should bail out! */
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-01-06 01:17:15 -05:00
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!data->state.connc) {
|
|
|
|
/* oops, no connection cache, make one up */
|
2006-12-05 10:36:26 -05:00
|
|
|
data->state.connc = Curl_mk_connc(CONNCACHE_PRIVATE, -1);
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!data->state.connc)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2001-08-15 02:51:37 -04:00
|
|
|
return Curl_perform(data);
|
2000-05-22 10:09:31 -04:00
|
|
|
}
|
2005-01-29 17:26:38 -05:00
|
|
|
#endif
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2004-04-26 03:11:06 -04:00
|
|
|
/*
|
|
|
|
* curl_easy_cleanup() is the external interface to cleaning/freeing the given
|
|
|
|
* easy handle.
|
|
|
|
*/
|
2000-05-22 10:09:31 -04:00
|
|
|
void curl_easy_cleanup(CURL *curl)
|
|
|
|
{
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = (struct SessionHandle *)curl;
|
2004-05-13 11:16:10 -04:00
|
|
|
|
|
|
|
if(!data)
|
|
|
|
return;
|
|
|
|
|
2001-08-15 02:51:37 -04:00
|
|
|
Curl_close(data);
|
2000-05-22 10:09:31 -04:00
|
|
|
}
|
2000-10-02 02:27:43 -04:00
|
|
|
|
2005-01-10 05:07:07 -05:00
|
|
|
/*
|
|
|
|
* Store a pointed to the multi handle within the easy handle's data struct.
|
|
|
|
*/
|
|
|
|
void Curl_easy_addmulti(struct SessionHandle *data,
|
|
|
|
void *multi)
|
|
|
|
{
|
|
|
|
data->multi = multi;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(multi == NULL)
|
2007-04-28 16:27:07 -04:00
|
|
|
/* the association is cleared, mark the easy handle as not used by an
|
|
|
|
interface */
|
|
|
|
data->state.used_interface = Curl_if_none;
|
2005-01-10 05:07:07 -05:00
|
|
|
}
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
void Curl_easy_initHandleData(struct SessionHandle *data)
|
|
|
|
{
|
2007-11-24 18:16:55 -05:00
|
|
|
memset(&data->req, 0, sizeof(struct SingleRequest));
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
data->req.maxdownload = -1;
|
2006-09-07 17:49:20 -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.
|
|
|
|
*/
|
2000-10-02 02:27:43 -04:00
|
|
|
CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...)
|
|
|
|
{
|
|
|
|
va_list arg;
|
|
|
|
void *paramp;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = (struct SessionHandle *)curl;
|
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 *);
|
|
|
|
|
2001-08-15 02:51:37 -04:00
|
|
|
return Curl_getinfo(data, info, paramp);
|
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.
|
|
|
|
*/
|
2001-09-05 03:24:01 -04:00
|
|
|
CURL *curl_easy_duphandle(CURL *incurl)
|
|
|
|
{
|
2004-05-27 03:48:09 -04:00
|
|
|
bool fail = TRUE;
|
2001-09-05 03:24:01 -04:00
|
|
|
struct SessionHandle *data=(struct SessionHandle *)incurl;
|
|
|
|
|
2001-09-12 03:57:33 -04:00
|
|
|
struct SessionHandle *outcurl = (struct SessionHandle *)
|
2004-05-27 03:48:09 -04:00
|
|
|
calloc(sizeof(struct SessionHandle), 1);
|
2001-09-05 03:24:01 -04:00
|
|
|
|
|
|
|
if(NULL == outcurl)
|
|
|
|
return NULL; /* failure */
|
|
|
|
|
2004-05-27 03:48:09 -04:00
|
|
|
do {
|
2001-09-05 03:24:01 -04:00
|
|
|
|
2004-05-27 03:48:09 -04: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=(char*)malloc(HEADERSIZE);
|
|
|
|
if(!outcurl->state.headerbuff) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
outcurl->state.headersize=HEADERSIZE;
|
2001-09-12 03:57:33 -04:00
|
|
|
|
2004-05-27 03:48:09 -04:00
|
|
|
/* copy all userdefined values */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(Curl_dupset(outcurl, data) != CURLE_OK)
|
2007-08-01 17:20:01 -04:00
|
|
|
break;
|
2001-09-12 03:57:33 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(data->state.used_interface == Curl_if_multi)
|
|
|
|
outcurl->state.connc = data->state.connc;
|
|
|
|
else
|
2006-12-05 10:36:26 -05:00
|
|
|
outcurl->state.connc = Curl_mk_connc(CONNCACHE_PRIVATE, -1);
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!outcurl->state.connc)
|
|
|
|
break;
|
2004-05-27 03:48:09 -04:00
|
|
|
|
2006-02-11 17:35:16 -05:00
|
|
|
outcurl->state.lastconnect = -1;
|
|
|
|
|
2004-05-27 03:48:09 -04:00
|
|
|
outcurl->progress.flags = data->progress.flags;
|
|
|
|
outcurl->progress.callback = data->progress.callback;
|
|
|
|
|
2004-12-05 18:59:32 -05:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
|
2004-05-27 03:48:09 -04: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,
|
2007-11-20 18:02:58 -05:00
|
|
|
data->cookies->filename,
|
|
|
|
outcurl->cookies,
|
|
|
|
data->set.cookiesession);
|
2004-05-27 03:48:09 -04:00
|
|
|
if(!outcurl->cookies) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-06-09 04:23:55 -04:00
|
|
|
#endif /* CURL_DISABLE_HTTP */
|
2004-05-27 03:48:09 -04:00
|
|
|
|
|
|
|
/* duplicate all values in 'change' */
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2004-05-27 03:48:09 -04:00
|
|
|
if(data->change.url) {
|
|
|
|
outcurl->change.url = strdup(data->change.url);
|
|
|
|
if(!outcurl->change.url)
|
|
|
|
break;
|
|
|
|
outcurl->change.url_alloc = TRUE;
|
|
|
|
}
|
2006-12-22 10:04:59 -05:00
|
|
|
|
2004-05-27 03:48:09 -04:00
|
|
|
if(data->change.referer) {
|
|
|
|
outcurl->change.referer = strdup(data->change.referer);
|
|
|
|
if(!outcurl->change.referer)
|
|
|
|
break;
|
|
|
|
outcurl->change.referer_alloc = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_ARES
|
|
|
|
/* If we use ares, we setup a new ares channel for the new handle */
|
|
|
|
if(ARES_SUCCESS != ares_init(&outcurl->state.areschannel))
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2006-09-09 12:36:05 -04:00
|
|
|
#if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
|
2006-09-09 14:23:29 -04:00
|
|
|
outcurl->inbound_cd = iconv_open(CURL_ICONV_CODESET_OF_HOST,
|
|
|
|
CURL_ICONV_CODESET_OF_NETWORK);
|
|
|
|
outcurl->outbound_cd = iconv_open(CURL_ICONV_CODESET_OF_NETWORK,
|
|
|
|
CURL_ICONV_CODESET_OF_HOST);
|
|
|
|
outcurl->utf8_cd = iconv_open(CURL_ICONV_CODESET_OF_HOST,
|
|
|
|
CURL_ICONV_CODESET_FOR_UTF8);
|
2006-09-09 12:36:05 -04:00
|
|
|
#endif
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_easy_initHandleData(outcurl);
|
|
|
|
|
2006-12-29 06:32:14 -05:00
|
|
|
outcurl->magic = CURLEASY_MAGIC_NUMBER;
|
|
|
|
|
2004-05-27 03:48:09 -04:00
|
|
|
fail = FALSE; /* we reach this point and thus we are OK */
|
|
|
|
|
|
|
|
} while(0);
|
|
|
|
|
|
|
|
if(fail) {
|
|
|
|
if(outcurl) {
|
2007-04-28 16:27:07 -04:00
|
|
|
if(outcurl->state.connc &&
|
|
|
|
(outcurl->state.connc->type == CONNCACHE_PRIVATE))
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_rm_connc(outcurl->state.connc);
|
2004-05-27 03:48:09 -04:00
|
|
|
if(outcurl->state.headerbuff)
|
|
|
|
free(outcurl->state.headerbuff);
|
|
|
|
if(outcurl->change.url)
|
|
|
|
free(outcurl->change.url);
|
|
|
|
if(outcurl->change.referer)
|
|
|
|
free(outcurl->change.referer);
|
2007-08-01 17:20:01 -04:00
|
|
|
Curl_freeset(outcurl);
|
2004-05-27 03:48:09 -04:00
|
|
|
free(outcurl); /* free the memory again */
|
|
|
|
outcurl = NULL;
|
|
|
|
}
|
2001-09-12 03:57:33 -04:00
|
|
|
}
|
2001-09-05 03:24:01 -04:00
|
|
|
|
|
|
|
return outcurl;
|
|
|
|
}
|
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.
|
|
|
|
*/
|
|
|
|
void curl_easy_reset(CURL *curl)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = (struct SessionHandle *)curl;
|
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
Curl_safefree(data->state.pathbuffer);
|
|
|
|
data->state.pathbuffer=NULL;
|
2006-10-04 17:11:08 -04:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
Curl_safefree(data->state.proto.generic);
|
|
|
|
data->state.proto.generic=NULL;
|
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));
|
|
|
|
|
|
|
|
/* zero out Progress data: */
|
|
|
|
memset(&data->progress, 0, sizeof(struct Progress));
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/* init Handle data */
|
|
|
|
Curl_easy_initHandleData(data);
|
|
|
|
|
2004-07-24 17:31:01 -04:00
|
|
|
/* The remainder of these calls have been taken from Curl_open() */
|
|
|
|
|
|
|
|
data->set.out = stdout; /* default output to stdout */
|
|
|
|
data->set.in = stdin; /* default input from stdin */
|
|
|
|
data->set.err = stderr; /* default stderr to stderr */
|
|
|
|
|
|
|
|
/* use fwrite as default function to store output */
|
2007-07-23 14:51:22 -04:00
|
|
|
data->set.fwrite_func = (curl_write_callback)fwrite;
|
2004-07-24 17:31:01 -04:00
|
|
|
|
|
|
|
/* use fread as default function to read input */
|
2007-07-23 14:51:22 -04:00
|
|
|
data->set.fread_func = (curl_read_callback)fread;
|
2004-07-24 17:31:01 -04:00
|
|
|
|
|
|
|
data->set.infilesize = -1; /* we don't know any size */
|
2004-11-11 18:11:04 -05:00
|
|
|
data->set.postfieldsize = -1;
|
2004-07-24 17:31:01 -04:00
|
|
|
|
|
|
|
data->state.current_speed = -1; /* init to negative == impossible */
|
|
|
|
|
|
|
|
data->set.httpreq = HTTPREQ_GET; /* Default HTTP request */
|
|
|
|
data->set.ftp_use_epsv = TRUE; /* FTP defaults to EPSV operations */
|
|
|
|
data->set.ftp_use_eprt = TRUE; /* FTP defaults to EPRT operations */
|
|
|
|
|
|
|
|
data->set.dns_cache_timeout = 60; /* Timeout every 60 seconds by default */
|
|
|
|
|
|
|
|
/* make libcurl quiet by default: */
|
|
|
|
data->set.hide_progress = TRUE; /* CURLOPT_NOPROGRESS changes these */
|
2004-09-28 18:26:47 -04:00
|
|
|
data->progress.flags |= PGRS_HIDE;
|
2004-07-24 17:31:01 -04:00
|
|
|
|
|
|
|
/* Set the default size of the SSL session ID cache */
|
|
|
|
data->set.ssl.numsessions = 5;
|
|
|
|
|
|
|
|
data->set.proxyport = 1080;
|
|
|
|
data->set.proxytype = CURLPROXY_HTTP; /* defaults to HTTP proxy */
|
|
|
|
data->set.httpauth = CURLAUTH_BASIC; /* defaults to basic */
|
|
|
|
data->set.proxyauth = CURLAUTH_BASIC; /* defaults to basic */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* libcurl 7.10 introduced SSL verification *by default*! This needs to be
|
|
|
|
* switched off unless wanted.
|
|
|
|
*/
|
|
|
|
data->set.ssl.verifypeer = TRUE;
|
|
|
|
data->set.ssl.verifyhost = 2;
|
|
|
|
#ifdef CURL_CA_BUNDLE
|
|
|
|
/* This is our prefered CA cert bundle since install time */
|
2007-08-01 17:20:01 -04:00
|
|
|
(void) curl_easy_setopt(curl, CURLOPT_CAINFO, (char *) CURL_CA_BUNDLE);
|
2004-07-24 17:31:01 -04:00
|
|
|
#endif
|
2006-11-02 16:56:40 -05:00
|
|
|
|
|
|
|
data->set.ssh_auth_types = CURLSSH_AUTH_DEFAULT; /* defaults to any auth
|
|
|
|
type */
|
2007-06-27 16:15:48 -04:00
|
|
|
data->set.new_file_perms = 0644; /* Default permissions */
|
|
|
|
data->set.new_directory_perms = 0755; /* Default permissions */
|
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
|
|
|
|
*/
|
|
|
|
CURLcode curl_easy_pause(CURL *curl, int action)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = (struct SessionHandle *)curl;
|
|
|
|
struct SingleRequest *k = &data->req;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* first switch off both pause bits */
|
|
|
|
int newstate = k->keepon &~ (KEEP_READ_PAUSE| KEEP_WRITE_PAUSE);
|
|
|
|
|
|
|
|
/* set the new desired pause bits */
|
|
|
|
newstate |= ((action & CURLPAUSE_RECV)?KEEP_READ_PAUSE:0) |
|
|
|
|
((action & CURLPAUSE_SEND)?KEEP_WRITE_PAUSE:0);
|
|
|
|
|
|
|
|
/* put it back in the keepon */
|
|
|
|
k->keepon = newstate;
|
|
|
|
|
|
|
|
if(!(newstate & KEEP_READ_PAUSE) && data->state.tempwrite) {
|
|
|
|
/* we have a buffer for writing that we now seem to be able to deliver since
|
|
|
|
the receive pausing is lifted! */
|
|
|
|
|
|
|
|
/* get the pointer, type and length in local copies since the function may
|
|
|
|
return PAUSE again and then we'll get a new copy allocted and stored in
|
|
|
|
the tempwrite variables */
|
|
|
|
char *tempwrite = data->state.tempwrite;
|
|
|
|
size_t tempsize = data->state.tempwritesize;
|
|
|
|
int temptype = data->state.tempwritetype;
|
|
|
|
size_t chunklen;
|
|
|
|
|
|
|
|
/* clear tempwrite here just to make sure it gets cleared if there's no
|
|
|
|
further use of it, and make sure we don't clear it after the function
|
|
|
|
invoke as it may have been set to a new value by then */
|
|
|
|
data->state.tempwrite = NULL;
|
|
|
|
|
|
|
|
/* since the write callback API is define to never exceed
|
|
|
|
CURL_MAX_WRITE_SIZE bytes in a single call, and since we may in fact
|
|
|
|
have more data than that in our buffer here, we must loop sending the
|
|
|
|
data in multiple calls until there's no data left or we get another
|
|
|
|
pause returned.
|
|
|
|
|
|
|
|
A tricky part is that the function we call will "buffer" the data
|
|
|
|
itself when it pauses on a particular buffer, so we may need to do some
|
|
|
|
extra trickery if we get a pause return here.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
chunklen = (tempsize > CURL_MAX_WRITE_SIZE)?CURL_MAX_WRITE_SIZE:tempsize;
|
|
|
|
|
|
|
|
result = Curl_client_write(data->state.current_conn,
|
|
|
|
temptype, tempwrite, chunklen);
|
|
|
|
if(!result)
|
|
|
|
/* failures abort the loop at once */
|
|
|
|
break;
|
|
|
|
|
|
|
|
if(data->state.tempwrite && (tempsize - chunklen)) {
|
|
|
|
/* Ouch, the reading is again paused and the block we send is now
|
|
|
|
"cached". If this is the final chunk we can leave it like this, but
|
|
|
|
if we have more chunks that is cached after this, we need to free
|
|
|
|
the newly cached one and put back a version that is truly the entire
|
|
|
|
contents that is saved for later
|
|
|
|
*/
|
|
|
|
char *newptr;
|
|
|
|
|
|
|
|
free(data->state.tempwrite); /* free the one just cached as it isn't
|
|
|
|
enough */
|
|
|
|
|
|
|
|
/* note that tempsize is still the size as before the callback was
|
|
|
|
used, and thus the whole piece of data to keep */
|
|
|
|
newptr = malloc(tempsize);
|
|
|
|
if(!newptr) {
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
/* tempwrite will be freed further down */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
data->state.tempwrite = newptr; /* store new pointer */
|
|
|
|
memcpy(newptr, tempwrite, tempsize);
|
|
|
|
data->state.tempwritesize = tempsize; /* store new size */
|
|
|
|
/* tempwrite will be freed further down */
|
|
|
|
break; /* go back to pausing until further notice */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tempsize -= chunklen; /* left after the call above */
|
|
|
|
tempwrite += chunklen; /* advance the pointer */
|
|
|
|
}
|
|
|
|
|
|
|
|
} while((result == CURLE_OK) && tempsize);
|
|
|
|
|
|
|
|
free(tempwrite); /* this is unconditionally no longer used */
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-04-07 17:50:47 -04:00
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
|
|
|
/*
|
|
|
|
* Curl_convert_to_network() is an internal function
|
|
|
|
* for performing ASCII conversions on non-ASCII platforms.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_convert_to_network(struct SessionHandle *data,
|
|
|
|
char *buffer, size_t length)
|
|
|
|
{
|
|
|
|
CURLcode rc;
|
|
|
|
|
|
|
|
if(data->set.convtonetwork) {
|
|
|
|
/* use translation callback */
|
|
|
|
rc = data->set.convtonetwork(buffer, length);
|
|
|
|
if(rc != CURLE_OK) {
|
|
|
|
failf(data,
|
|
|
|
"CURLOPT_CONV_TO_NETWORK_FUNCTION callback returned %i: %s",
|
|
|
|
rc, curl_easy_strerror(rc));
|
|
|
|
}
|
|
|
|
return(rc);
|
|
|
|
} else {
|
|
|
|
#ifdef HAVE_ICONV
|
|
|
|
/* do the translation ourselves */
|
|
|
|
char *input_ptr, *output_ptr;
|
|
|
|
size_t in_bytes, out_bytes, rc;
|
2007-02-16 13:19:35 -05:00
|
|
|
int error;
|
2006-04-07 17:50:47 -04:00
|
|
|
|
|
|
|
/* open an iconv conversion descriptor if necessary */
|
|
|
|
if(data->outbound_cd == (iconv_t)-1) {
|
|
|
|
data->outbound_cd = iconv_open(CURL_ICONV_CODESET_OF_NETWORK,
|
|
|
|
CURL_ICONV_CODESET_OF_HOST);
|
|
|
|
if(data->outbound_cd == (iconv_t)-1) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = ERRNO;
|
2006-04-07 17:50:47 -04:00
|
|
|
failf(data,
|
|
|
|
"The iconv_open(\"%s\", \"%s\") call failed with errno %i: %s",
|
|
|
|
CURL_ICONV_CODESET_OF_NETWORK,
|
|
|
|
CURL_ICONV_CODESET_OF_HOST,
|
2007-02-16 13:19:35 -05:00
|
|
|
error, strerror(error));
|
2006-04-07 17:50:47 -04:00
|
|
|
return CURLE_CONV_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* call iconv */
|
|
|
|
input_ptr = output_ptr = buffer;
|
|
|
|
in_bytes = out_bytes = length;
|
2006-07-25 07:35:35 -04:00
|
|
|
rc = iconv(data->outbound_cd, (const char**)&input_ptr, &in_bytes,
|
2006-04-07 17:50:47 -04:00
|
|
|
&output_ptr, &out_bytes);
|
2007-11-05 04:45:09 -05:00
|
|
|
if((rc == ICONV_ERROR) || (in_bytes != 0)) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = ERRNO;
|
2006-04-07 17:50:47 -04:00
|
|
|
failf(data,
|
|
|
|
"The Curl_convert_to_network iconv call failed with errno %i: %s",
|
2007-02-16 13:19:35 -05:00
|
|
|
error, strerror(error));
|
2006-04-07 17:50:47 -04:00
|
|
|
return CURLE_CONV_FAILED;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
failf(data, "CURLOPT_CONV_TO_NETWORK_FUNCTION callback required");
|
|
|
|
return CURLE_CONV_REQD;
|
|
|
|
#endif /* HAVE_ICONV */
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_convert_from_network() is an internal function
|
|
|
|
* for performing ASCII conversions on non-ASCII platforms.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_convert_from_network(struct SessionHandle *data,
|
|
|
|
char *buffer, size_t length)
|
|
|
|
{
|
|
|
|
CURLcode rc;
|
|
|
|
|
|
|
|
if(data->set.convfromnetwork) {
|
|
|
|
/* use translation callback */
|
|
|
|
rc = data->set.convfromnetwork(buffer, length);
|
|
|
|
if(rc != CURLE_OK) {
|
|
|
|
failf(data,
|
|
|
|
"CURLOPT_CONV_FROM_NETWORK_FUNCTION callback returned %i: %s",
|
|
|
|
rc, curl_easy_strerror(rc));
|
|
|
|
}
|
|
|
|
return(rc);
|
|
|
|
} else {
|
|
|
|
#ifdef HAVE_ICONV
|
|
|
|
/* do the translation ourselves */
|
|
|
|
char *input_ptr, *output_ptr;
|
|
|
|
size_t in_bytes, out_bytes, rc;
|
2007-02-16 13:19:35 -05:00
|
|
|
int error;
|
2006-04-07 17:50:47 -04:00
|
|
|
|
|
|
|
/* open an iconv conversion descriptor if necessary */
|
|
|
|
if(data->inbound_cd == (iconv_t)-1) {
|
|
|
|
data->inbound_cd = iconv_open(CURL_ICONV_CODESET_OF_HOST,
|
|
|
|
CURL_ICONV_CODESET_OF_NETWORK);
|
|
|
|
if(data->inbound_cd == (iconv_t)-1) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = ERRNO;
|
2006-04-07 17:50:47 -04:00
|
|
|
failf(data,
|
|
|
|
"The iconv_open(\"%s\", \"%s\") call failed with errno %i: %s",
|
|
|
|
CURL_ICONV_CODESET_OF_HOST,
|
|
|
|
CURL_ICONV_CODESET_OF_NETWORK,
|
2007-02-16 13:19:35 -05:00
|
|
|
error, strerror(error));
|
2006-04-07 17:50:47 -04:00
|
|
|
return CURLE_CONV_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* call iconv */
|
|
|
|
input_ptr = output_ptr = buffer;
|
|
|
|
in_bytes = out_bytes = length;
|
2006-07-25 07:35:35 -04:00
|
|
|
rc = iconv(data->inbound_cd, (const char **)&input_ptr, &in_bytes,
|
2006-04-07 17:50:47 -04:00
|
|
|
&output_ptr, &out_bytes);
|
2007-11-05 04:45:09 -05:00
|
|
|
if((rc == ICONV_ERROR) || (in_bytes != 0)) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = ERRNO;
|
2006-04-07 17:50:47 -04:00
|
|
|
failf(data,
|
|
|
|
"The Curl_convert_from_network iconv call failed with errno %i: %s",
|
2007-02-16 13:19:35 -05:00
|
|
|
error, strerror(error));
|
2006-04-07 17:50:47 -04:00
|
|
|
return CURLE_CONV_FAILED;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
failf(data, "CURLOPT_CONV_FROM_NETWORK_FUNCTION callback required");
|
|
|
|
return CURLE_CONV_REQD;
|
|
|
|
#endif /* HAVE_ICONV */
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_convert_from_utf8() is an internal function
|
|
|
|
* for performing UTF-8 conversions on non-ASCII platforms.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_convert_from_utf8(struct SessionHandle *data,
|
|
|
|
char *buffer, size_t length)
|
|
|
|
{
|
|
|
|
CURLcode rc;
|
|
|
|
|
|
|
|
if(data->set.convfromutf8) {
|
|
|
|
/* use translation callback */
|
|
|
|
rc = data->set.convfromutf8(buffer, length);
|
|
|
|
if(rc != CURLE_OK) {
|
|
|
|
failf(data,
|
|
|
|
"CURLOPT_CONV_FROM_UTF8_FUNCTION callback returned %i: %s",
|
|
|
|
rc, curl_easy_strerror(rc));
|
|
|
|
}
|
|
|
|
return(rc);
|
|
|
|
} else {
|
|
|
|
#ifdef HAVE_ICONV
|
|
|
|
/* do the translation ourselves */
|
2007-08-26 01:53:26 -04:00
|
|
|
const char *input_ptr;
|
|
|
|
char *output_ptr;
|
2006-04-07 17:50:47 -04:00
|
|
|
size_t in_bytes, out_bytes, rc;
|
2007-02-16 13:19:35 -05:00
|
|
|
int error;
|
2006-04-07 17:50:47 -04:00
|
|
|
|
|
|
|
/* open an iconv conversion descriptor if necessary */
|
|
|
|
if(data->utf8_cd == (iconv_t)-1) {
|
|
|
|
data->utf8_cd = iconv_open(CURL_ICONV_CODESET_OF_HOST,
|
|
|
|
CURL_ICONV_CODESET_FOR_UTF8);
|
|
|
|
if(data->utf8_cd == (iconv_t)-1) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = ERRNO;
|
2006-04-07 17:50:47 -04:00
|
|
|
failf(data,
|
|
|
|
"The iconv_open(\"%s\", \"%s\") call failed with errno %i: %s",
|
|
|
|
CURL_ICONV_CODESET_OF_HOST,
|
|
|
|
CURL_ICONV_CODESET_FOR_UTF8,
|
2007-02-16 13:19:35 -05:00
|
|
|
error, strerror(error));
|
2006-04-07 17:50:47 -04:00
|
|
|
return CURLE_CONV_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* call iconv */
|
|
|
|
input_ptr = output_ptr = buffer;
|
|
|
|
in_bytes = out_bytes = length;
|
2007-08-26 01:53:26 -04:00
|
|
|
rc = iconv(data->utf8_cd, &input_ptr, &in_bytes,
|
2006-07-25 07:35:35 -04:00
|
|
|
&output_ptr, &out_bytes);
|
2007-11-05 04:45:09 -05:00
|
|
|
if((rc == ICONV_ERROR) || (in_bytes != 0)) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = ERRNO;
|
2006-04-07 17:50:47 -04:00
|
|
|
failf(data,
|
|
|
|
"The Curl_convert_from_utf8 iconv call failed with errno %i: %s",
|
2007-02-16 13:19:35 -05:00
|
|
|
error, strerror(error));
|
2006-04-07 17:50:47 -04:00
|
|
|
return CURLE_CONV_FAILED;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(output_ptr < input_ptr) {
|
2006-04-07 17:50:47 -04:00
|
|
|
/* null terminate the now shorter output string */
|
|
|
|
*output_ptr = 0x00;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
failf(data, "CURLOPT_CONV_FROM_UTF8_FUNCTION callback required");
|
|
|
|
return CURLE_CONV_REQD;
|
|
|
|
#endif /* HAVE_ICONV */
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CURL_DOES_CONVERSIONS */
|