2008-04-25 18:35:48 +00:00
|
|
|
/*
|
2009-12-05 02:19:24 +00:00
|
|
|
* This file Copyright (C) 2008-2009 Mnemosyne LLC
|
2008-04-24 01:42:53 +00:00
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2009-08-10 20:04:08 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-04-24 01:42:53 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2008-04-25 19:46:36 +00:00
|
|
|
* $Id$
|
2008-04-24 01:42:53 +00:00
|
|
|
*/
|
|
|
|
|
2008-05-06 15:52:57 +00:00
|
|
|
#include <assert.h>
|
2008-04-25 04:26:04 +00:00
|
|
|
#include <stdlib.h> /* bsearch */
|
|
|
|
|
2009-01-24 00:25:11 +00:00
|
|
|
#define CURL_DISABLE_TYPECHECK /* otherwise -Wunreachable-code goes insane */
|
2008-04-24 01:42:53 +00:00
|
|
|
#include <curl/curl.h>
|
2009-12-13 17:54:01 +00:00
|
|
|
#include <event.h>
|
2008-04-24 01:42:53 +00:00
|
|
|
|
|
|
|
#include "transmission.h"
|
2009-12-13 17:54:01 +00:00
|
|
|
#include "net.h"
|
2009-07-01 14:58:57 +00:00
|
|
|
#include "session.h"
|
2009-12-13 17:54:01 +00:00
|
|
|
#include "trevent.h"
|
2008-04-24 01:42:53 +00:00
|
|
|
#include "utils.h"
|
2009-04-13 19:04:21 +00:00
|
|
|
#include "version.h"
|
2008-04-24 01:42:53 +00:00
|
|
|
#include "web.h"
|
|
|
|
|
2009-01-09 19:24:40 +00:00
|
|
|
enum
|
2008-12-26 20:14:47 +00:00
|
|
|
{
|
2009-12-13 17:54:01 +00:00
|
|
|
DEFAULT_TIMER_MSEC = 1500 /* arbitrary */
|
2008-12-26 20:14:47 +00:00
|
|
|
};
|
2008-10-17 20:57:54 +00:00
|
|
|
|
2009-12-10 19:05:21 +00:00
|
|
|
static void
|
|
|
|
tr_multi_perform( tr_web * g, int fd );
|
|
|
|
|
2008-10-27 18:00:03 +00:00
|
|
|
#if 0
|
|
|
|
#define dbgmsg(...) \
|
|
|
|
do { \
|
|
|
|
fprintf( stderr, __VA_ARGS__ ); \
|
|
|
|
fprintf( stderr, "\n" ); \
|
|
|
|
} while( 0 )
|
|
|
|
#else
|
2008-10-26 15:39:04 +00:00
|
|
|
#define dbgmsg( ... ) \
|
|
|
|
do { \
|
|
|
|
if( tr_deepLoggingIsActive( ) ) \
|
|
|
|
tr_deepLog( __FILE__, __LINE__, "web", __VA_ARGS__ ); \
|
|
|
|
} while( 0 )
|
2008-10-27 18:00:03 +00:00
|
|
|
#endif
|
2008-04-25 02:57:33 +00:00
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
struct tr_web
|
|
|
|
{
|
2009-01-09 19:24:40 +00:00
|
|
|
tr_bool closing;
|
2008-10-15 16:43:51 +00:00
|
|
|
int prev_running;
|
|
|
|
int still_running;
|
2009-12-10 19:05:21 +00:00
|
|
|
long timer_msec;
|
2008-10-15 16:43:51 +00:00
|
|
|
CURLM * multi;
|
|
|
|
tr_session * session;
|
2009-10-23 05:48:56 +00:00
|
|
|
tr_bool haveAddr;
|
|
|
|
tr_address addr;
|
2008-10-17 20:57:54 +00:00
|
|
|
struct event timer_event;
|
2008-04-24 01:42:53 +00:00
|
|
|
};
|
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
struct tr_web_task
|
|
|
|
{
|
2008-10-15 16:43:51 +00:00
|
|
|
unsigned long tag;
|
|
|
|
struct evbuffer * response;
|
|
|
|
char * url;
|
|
|
|
char * range;
|
|
|
|
tr_session * session;
|
|
|
|
tr_web_done_func * done_func;
|
|
|
|
void * done_func_user_data;
|
2008-04-24 01:42:53 +00:00
|
|
|
};
|
|
|
|
|
2008-04-25 18:35:48 +00:00
|
|
|
static size_t
|
2009-09-25 21:05:59 +00:00
|
|
|
writeFunc( void * ptr, size_t size, size_t nmemb, void * vtask )
|
2008-04-24 01:42:53 +00:00
|
|
|
{
|
2008-04-25 18:35:48 +00:00
|
|
|
const size_t byteCount = size * nmemb;
|
2009-09-25 21:05:59 +00:00
|
|
|
struct tr_web_task * task = vtask;
|
|
|
|
evbuffer_add( task->response, ptr, byteCount );
|
2008-10-16 05:24:57 +00:00
|
|
|
dbgmsg( "wrote %zu bytes to task %p's buffer", byteCount, task );
|
2008-04-25 18:35:48 +00:00
|
|
|
return byteCount;
|
|
|
|
}
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2008-06-11 20:45:53 +00:00
|
|
|
static int
|
|
|
|
getCurlProxyType( tr_proxy_type t )
|
|
|
|
{
|
|
|
|
switch( t )
|
|
|
|
{
|
2008-10-15 16:43:51 +00:00
|
|
|
case TR_PROXY_SOCKS4: return CURLPROXY_SOCKS4;
|
|
|
|
case TR_PROXY_SOCKS5: return CURLPROXY_SOCKS5;
|
|
|
|
default: return CURLPROXY_HTTP;
|
2008-09-23 19:11:04 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-11 20:45:53 +00:00
|
|
|
|
2009-12-02 05:30:46 +00:00
|
|
|
static void
|
|
|
|
sockoptfunction( void * vtask, curl_socket_t fd, curlsocktype purpose UNUSED )
|
|
|
|
{
|
|
|
|
struct tr_web_task * task = vtask;
|
|
|
|
const tr_bool isScrape = strstr( task->url, "scrape" ) != NULL;
|
|
|
|
const tr_bool isAnnounce = strstr( task->url, "announce" ) != NULL;
|
|
|
|
|
|
|
|
/* announce and scrape requests have tiny payloads...
|
|
|
|
* which have very small payloads */
|
|
|
|
if( isScrape || isAnnounce )
|
|
|
|
{
|
2009-12-13 19:33:02 +00:00
|
|
|
const int sndbuf = 1024;
|
|
|
|
const int rcvbuf = isScrape ? 2048 : 3072;
|
|
|
|
setsockopt( fd, SOL_SOCKET, SO_SNDBUF, &sndbuf, sizeof(sndbuf) );
|
|
|
|
setsockopt( fd, SOL_SOCKET, SO_RCVBUF, &rcvbuf, sizeof(rcvbuf) );
|
2009-12-02 05:30:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-13 17:54:01 +00:00
|
|
|
static int
|
|
|
|
getTimeoutFromURL( const char * url )
|
|
|
|
{
|
|
|
|
if( strstr( url, "scrape" ) != NULL )
|
|
|
|
return 20;
|
|
|
|
if( strstr( url, "announce" ) != NULL )
|
|
|
|
return 30;
|
|
|
|
return 240;
|
|
|
|
}
|
|
|
|
|
2008-04-25 18:35:48 +00:00
|
|
|
static void
|
|
|
|
addTask( void * vtask )
|
|
|
|
{
|
|
|
|
struct tr_web_task * task = vtask;
|
2008-12-14 11:21:11 +00:00
|
|
|
const tr_session * session = task->session;
|
2008-04-27 18:27:32 +00:00
|
|
|
|
2008-06-10 16:16:31 +00:00
|
|
|
if( session && session->web )
|
2008-04-27 18:27:32 +00:00
|
|
|
{
|
2009-12-13 17:54:01 +00:00
|
|
|
CURLMcode mcode;
|
|
|
|
CURL * easy = curl_easy_init( );
|
2008-06-10 16:16:31 +00:00
|
|
|
struct tr_web * web = session->web;
|
2009-12-13 17:54:01 +00:00
|
|
|
const long timeout = getTimeoutFromURL( task->url );
|
|
|
|
const long verbose = getenv( "TR_CURL_VERBOSE" ) != NULL;
|
2009-12-13 19:33:02 +00:00
|
|
|
const char * user_agent = TR_NAME "/" LONG_VERSION_STRING;
|
2008-08-06 23:33:29 +00:00
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
dbgmsg( "adding task #%lu [%s]", task->tag, task->url );
|
2008-04-27 18:27:32 +00:00
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
if( !task->range && session->isProxyEnabled ) {
|
2008-10-16 05:24:57 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_PROXY, session->proxy );
|
2008-10-18 15:45:12 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_PROXYAUTH, CURLAUTH_ANY );
|
2008-10-16 05:24:57 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_PROXYPORT, session->proxyPort );
|
2008-10-17 20:57:54 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_PROXYTYPE,
|
|
|
|
getCurlProxyType( session->proxyType ) );
|
2008-06-10 16:16:31 +00:00
|
|
|
}
|
2008-10-15 16:43:51 +00:00
|
|
|
if( !task->range && session->isProxyAuthEnabled ) {
|
2008-10-17 20:57:54 +00:00
|
|
|
char * str = tr_strdup_printf( "%s:%s", session->proxyUsername,
|
|
|
|
session->proxyPassword );
|
2008-10-16 05:24:57 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_PROXYUSERPWD, str );
|
2008-06-10 16:16:31 +00:00
|
|
|
tr_free( str );
|
|
|
|
}
|
|
|
|
|
2009-02-07 00:20:47 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
|
2009-09-25 21:05:59 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_TIMEOUT, timeout );
|
|
|
|
curl_easy_setopt( easy, CURLOPT_CONNECTTIMEOUT, timeout-5 );
|
2009-12-02 05:30:46 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_SOCKOPTFUNCTION, sockoptfunction );
|
|
|
|
curl_easy_setopt( easy, CURLOPT_SOCKOPTDATA, task );
|
|
|
|
curl_easy_setopt( easy, CURLOPT_DNS_CACHE_TIMEOUT, 1800L );
|
2008-10-29 16:06:14 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_FOLLOWLOCATION, 1L );
|
2009-09-08 18:39:20 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_AUTOREFERER, 1L );
|
2009-01-16 17:29:42 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_FORBID_REUSE, 1L );
|
2009-09-08 18:39:20 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_MAXREDIRS, -1L );
|
2008-10-29 16:06:14 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_NOSIGNAL, 1L );
|
2008-10-16 05:24:57 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_PRIVATE, task );
|
2008-10-29 16:06:14 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_SSL_VERIFYHOST, 0L );
|
|
|
|
curl_easy_setopt( easy, CURLOPT_SSL_VERIFYPEER, 0L );
|
2008-10-18 15:45:12 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_URL, task->url );
|
2009-12-13 19:33:02 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_USERAGENT, user_agent );
|
2009-12-13 17:54:01 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_VERBOSE, verbose );
|
2008-10-18 15:45:12 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_WRITEDATA, task );
|
|
|
|
curl_easy_setopt( easy, CURLOPT_WRITEFUNCTION, writeFunc );
|
2009-12-13 17:54:01 +00:00
|
|
|
if( web->haveAddr )
|
|
|
|
curl_easy_setopt( easy, CURLOPT_INTERFACE, tr_ntop_non_ts( &web->addr ) );
|
2008-06-07 21:26:41 +00:00
|
|
|
if( task->range )
|
2008-10-16 05:24:57 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_RANGE, task->range );
|
2008-10-17 20:57:54 +00:00
|
|
|
else /* don't set encoding on webseeds; it messes up binary data */
|
2008-10-16 05:24:57 +00:00
|
|
|
curl_easy_setopt( easy, CURLOPT_ENCODING, "" );
|
|
|
|
|
2009-12-13 17:54:01 +00:00
|
|
|
mcode = curl_multi_add_handle( web->multi, easy );
|
|
|
|
if( mcode == CURLM_OK )
|
|
|
|
++web->still_running;
|
|
|
|
else
|
|
|
|
tr_err( "%s", curl_multi_strerror( mcode ) );
|
|
|
|
|
|
|
|
/*tr_multi_perform( web, CURL_SOCKET_TIMEOUT );*/
|
2008-04-27 18:27:32 +00:00
|
|
|
}
|
2008-04-24 01:42:53 +00:00
|
|
|
}
|
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2008-04-27 18:27:32 +00:00
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
static void
|
2008-10-18 15:45:12 +00:00
|
|
|
task_free( struct tr_web_task * task )
|
|
|
|
{
|
|
|
|
evbuffer_free( task->response );
|
|
|
|
tr_free( task->range );
|
|
|
|
tr_free( task->url );
|
|
|
|
tr_free( task );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
task_finish( struct tr_web_task * task, long response_code )
|
2008-10-15 16:43:51 +00:00
|
|
|
{
|
2009-12-13 19:33:02 +00:00
|
|
|
dbgmsg( "finished web task %lu; got %ld", task->tag, response_code );
|
2009-09-25 21:05:59 +00:00
|
|
|
|
|
|
|
if( task->done_func != NULL )
|
|
|
|
task->done_func( task->session,
|
|
|
|
response_code,
|
|
|
|
EVBUFFER_DATA( task->response ),
|
|
|
|
EVBUFFER_LENGTH( task->response ),
|
|
|
|
task->done_func_user_data );
|
2008-10-18 15:45:12 +00:00
|
|
|
task_free( task );
|
2008-04-24 01:42:53 +00:00
|
|
|
}
|
|
|
|
|
2008-04-24 19:38:59 +00:00
|
|
|
static void
|
2008-10-18 00:20:37 +00:00
|
|
|
remove_finished_tasks( tr_web * g )
|
2008-07-29 00:51:07 +00:00
|
|
|
{
|
2009-12-13 17:54:01 +00:00
|
|
|
CURLMsg * msg;
|
|
|
|
int msgs_left;
|
2009-01-17 22:49:15 +00:00
|
|
|
|
2009-12-13 17:54:01 +00:00
|
|
|
while(( msg = curl_multi_info_read( g->multi, &msgs_left ))) {
|
|
|
|
if(( msg->msg == CURLMSG_DONE ) && ( msg->easy_handle != NULL )) {
|
2008-10-29 16:06:14 +00:00
|
|
|
long code;
|
|
|
|
struct tr_web_task * task;
|
2009-12-13 17:54:01 +00:00
|
|
|
CURL * easy = msg->easy_handle;
|
2009-12-11 15:41:34 +00:00
|
|
|
curl_easy_getinfo( easy, CURLINFO_PRIVATE, (void*)&task );
|
|
|
|
curl_easy_getinfo( easy, CURLINFO_RESPONSE_CODE, &code );
|
|
|
|
curl_multi_remove_handle( g->multi, easy );
|
2008-10-29 16:06:14 +00:00
|
|
|
curl_easy_cleanup( easy );
|
2009-01-17 22:49:15 +00:00
|
|
|
task_finish( task, code );
|
2008-10-29 16:06:14 +00:00
|
|
|
}
|
2008-10-15 16:43:51 +00:00
|
|
|
}
|
2008-10-29 16:06:14 +00:00
|
|
|
|
|
|
|
g->prev_running = g->still_running;
|
2008-10-18 00:20:37 +00:00
|
|
|
}
|
2008-07-29 00:51:07 +00:00
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
static void
|
|
|
|
stop_timer( tr_web* g )
|
|
|
|
{
|
2009-12-11 15:41:34 +00:00
|
|
|
dbgmsg( "deleting the pending global timer" );
|
|
|
|
evtimer_del( &g->timer_event );
|
2008-10-18 00:20:37 +00:00
|
|
|
}
|
2008-07-29 00:51:07 +00:00
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
static void
|
|
|
|
restart_timer( tr_web * g )
|
|
|
|
{
|
2009-01-28 19:35:39 +00:00
|
|
|
assert( tr_amInEventThread( g->session ) );
|
|
|
|
assert( g->session != NULL );
|
|
|
|
assert( g->session->events != NULL );
|
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
stop_timer( g );
|
2009-12-10 19:05:21 +00:00
|
|
|
dbgmsg( "adding a timeout for %.1f seconds from now", g->timer_msec/1000.0 );
|
|
|
|
tr_timerAddMsec( &g->timer_event, g->timer_msec );
|
2008-10-18 00:20:37 +00:00
|
|
|
}
|
2008-10-16 05:24:57 +00:00
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
static void
|
2008-10-18 15:45:12 +00:00
|
|
|
web_close( tr_web * g )
|
2008-10-18 00:20:37 +00:00
|
|
|
{
|
2009-02-05 14:52:00 +00:00
|
|
|
CURLMcode mcode;
|
|
|
|
|
2008-10-18 15:45:12 +00:00
|
|
|
stop_timer( g );
|
2009-02-05 14:52:00 +00:00
|
|
|
|
|
|
|
mcode = curl_multi_cleanup( g->multi );
|
|
|
|
tr_assert( mcode == CURLM_OK, "curl_multi_cleanup() failed: %d (%s)", mcode, curl_multi_strerror( mcode ) );
|
|
|
|
if( mcode != CURLM_OK )
|
|
|
|
tr_err( "%s", curl_multi_strerror( mcode ) );
|
|
|
|
|
2008-10-18 15:45:12 +00:00
|
|
|
tr_free( g );
|
2008-10-18 00:20:37 +00:00
|
|
|
}
|
2008-10-17 20:57:54 +00:00
|
|
|
|
2009-01-09 19:24:40 +00:00
|
|
|
/* note: this function can free the tr_web if its 'closing' flag is set
|
2008-10-18 15:45:12 +00:00
|
|
|
and no tasks remain. callers must not reference their g pointer
|
|
|
|
after calling this function */
|
2008-10-17 20:57:54 +00:00
|
|
|
static void
|
2009-02-18 16:16:24 +00:00
|
|
|
tr_multi_perform( tr_web * g, int fd )
|
2008-10-17 20:57:54 +00:00
|
|
|
{
|
2008-10-18 00:20:37 +00:00
|
|
|
int closed = FALSE;
|
2009-02-05 14:52:00 +00:00
|
|
|
CURLMcode mcode;
|
2008-10-17 20:57:54 +00:00
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
dbgmsg( "check_run_count: prev_running %d, still_running %d",
|
|
|
|
g->prev_running, g->still_running );
|
2008-10-17 20:57:54 +00:00
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
/* invoke libcurl's processing */
|
2009-12-10 19:05:21 +00:00
|
|
|
do {
|
|
|
|
mcode = curl_multi_socket_action( g->multi, fd, 0, &g->still_running );
|
|
|
|
} while( mcode == CURLM_CALL_MULTI_SOCKET );
|
2008-10-18 00:20:37 +00:00
|
|
|
|
|
|
|
remove_finished_tasks( g );
|
|
|
|
|
|
|
|
if( !g->still_running ) {
|
|
|
|
stop_timer( g );
|
2009-01-09 19:24:40 +00:00
|
|
|
if( g->closing ) {
|
2008-10-18 15:45:12 +00:00
|
|
|
web_close( g );
|
2008-10-18 00:20:37 +00:00
|
|
|
closed = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !closed )
|
|
|
|
restart_timer( g );
|
2008-10-17 20:57:54 +00:00
|
|
|
}
|
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
/* libevent says that sock is ready to be processed, so wake up libcurl */
|
|
|
|
static void
|
2009-02-18 16:16:24 +00:00
|
|
|
event_cb( int fd, short kind UNUSED, void * g )
|
2008-10-15 16:43:51 +00:00
|
|
|
{
|
2009-02-18 16:16:24 +00:00
|
|
|
tr_multi_perform( g, fd );
|
2008-10-15 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* CURLMOPT_SOCKETFUNCTION */
|
|
|
|
static int
|
2009-12-13 17:54:01 +00:00
|
|
|
sock_cb( CURL * easy UNUSED, curl_socket_t fd, int action, void * vweb, void * vevent )
|
2008-10-15 16:43:51 +00:00
|
|
|
{
|
2009-12-11 15:41:34 +00:00
|
|
|
/*static int num_events = 0;*/
|
2009-02-05 22:00:21 +00:00
|
|
|
struct tr_web * web = vweb;
|
2009-12-11 15:41:34 +00:00
|
|
|
struct event * io_event = vevent;
|
|
|
|
dbgmsg( "sock_cb: action is %d, fd is %d, io_event is %p", action, (int)fd, io_event );
|
2009-02-05 22:00:21 +00:00
|
|
|
|
|
|
|
if( action == CURL_POLL_REMOVE )
|
|
|
|
{
|
2009-12-11 15:41:34 +00:00
|
|
|
if( io_event != NULL )
|
|
|
|
{
|
|
|
|
event_del( io_event );
|
|
|
|
tr_free( io_event );
|
|
|
|
curl_multi_assign( web->multi, fd, NULL ); /* does libcurl do this automatically? */
|
|
|
|
/*fprintf( stderr, "-1 io_events to %d\n", --num_events );*/
|
|
|
|
}
|
2009-02-05 22:00:21 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
else
|
2009-02-05 22:00:21 +00:00
|
|
|
{
|
2009-12-11 15:41:34 +00:00
|
|
|
const short events = EV_PERSIST
|
|
|
|
| (( action & CURL_POLL_IN ) ? EV_READ : 0 )
|
|
|
|
| (( action & CURL_POLL_OUT ) ? EV_WRITE : 0 );
|
|
|
|
|
|
|
|
if( io_event != NULL )
|
|
|
|
event_del( io_event );
|
|
|
|
else {
|
|
|
|
io_event = tr_new0( struct event, 1 );
|
|
|
|
curl_multi_assign( web->multi, fd, io_event );
|
|
|
|
/*fprintf( stderr, "+1 io_events to %d\n", ++num_events );*/
|
|
|
|
}
|
|
|
|
|
2009-12-13 17:54:01 +00:00
|
|
|
dbgmsg( "enabling (libevent %hd, libcurl %d) polling on io_event %p, fd %d",
|
|
|
|
events, action, io_event, fd );
|
2009-12-11 15:41:34 +00:00
|
|
|
event_set( io_event, fd, events, event_cb, web );
|
|
|
|
event_add( io_event, NULL );
|
2009-02-05 22:00:21 +00:00
|
|
|
}
|
2008-10-15 16:43:51 +00:00
|
|
|
|
2009-12-13 17:54:01 +00:00
|
|
|
return 0; /* libcurl documentation: "The callback MUST return 0." */
|
2008-10-15 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
2009-12-10 19:05:21 +00:00
|
|
|
/* libevent says that timer_msec have passed, so wake up libcurl */
|
|
|
|
static void
|
|
|
|
libevent_timer_cb( int fd UNUSED, short what UNUSED, void * g )
|
|
|
|
{
|
|
|
|
dbgmsg( "libevent timer is done" );
|
|
|
|
tr_multi_perform( g, CURL_SOCKET_TIMEOUT );
|
|
|
|
}
|
2008-10-15 16:43:51 +00:00
|
|
|
|
2008-10-18 15:45:12 +00:00
|
|
|
/* libcurl documentation: "If 0, it means you should proceed immediately
|
2008-10-18 00:20:37 +00:00
|
|
|
* without waiting for anything. If it returns -1, there's no timeout at all
|
|
|
|
* set ... (but) you must not wait too long (more than a few seconds perhaps)
|
|
|
|
* before you call curl_multi_perform() again." */
|
2008-10-15 16:43:51 +00:00
|
|
|
static void
|
2009-12-10 19:05:21 +00:00
|
|
|
multi_timer_cb( CURLM * multi UNUSED, long timer_msec, void * vg )
|
2008-10-15 16:43:51 +00:00
|
|
|
{
|
2008-11-04 19:40:18 +00:00
|
|
|
tr_web * g = vg;
|
|
|
|
|
2009-12-10 19:05:21 +00:00
|
|
|
if( timer_msec < 1 ) {
|
|
|
|
if( timer_msec == 0 ) /* call it immediately */
|
|
|
|
libevent_timer_cb( 0, 0, g );
|
|
|
|
timer_msec = DEFAULT_TIMER_MSEC;
|
2008-10-17 20:57:54 +00:00
|
|
|
}
|
2008-11-04 19:40:18 +00:00
|
|
|
|
2009-12-10 19:05:21 +00:00
|
|
|
g->timer_msec = timer_msec;
|
2008-10-18 00:20:37 +00:00
|
|
|
restart_timer( g );
|
2008-10-15 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/****
|
|
|
|
*****
|
|
|
|
****/
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_webRun( tr_session * session,
|
|
|
|
const char * url,
|
|
|
|
const char * range,
|
|
|
|
tr_web_done_func done_func,
|
|
|
|
void * done_func_user_data )
|
|
|
|
{
|
|
|
|
if( session->web )
|
2008-09-23 19:11:04 +00:00
|
|
|
{
|
2008-10-15 16:43:51 +00:00
|
|
|
struct tr_web_task * task;
|
2009-12-10 19:05:21 +00:00
|
|
|
static unsigned long tag = 0;
|
2008-10-15 16:43:51 +00:00
|
|
|
|
|
|
|
task = tr_new0( struct tr_web_task, 1 );
|
|
|
|
task->session = session;
|
|
|
|
task->url = tr_strdup( url );
|
|
|
|
task->range = tr_strdup( range );
|
|
|
|
task->done_func = done_func;
|
|
|
|
task->done_func_user_data = done_func_user_data;
|
|
|
|
task->tag = ++tag;
|
|
|
|
task->response = evbuffer_new( );
|
|
|
|
|
|
|
|
tr_runInEventThread( session, addTask, task );
|
2008-08-06 23:33:29 +00:00
|
|
|
}
|
2008-05-06 15:52:57 +00:00
|
|
|
}
|
2008-04-24 19:38:59 +00:00
|
|
|
|
2009-10-23 05:48:56 +00:00
|
|
|
void
|
|
|
|
tr_webSetInterface( tr_web * web, const tr_address * addr )
|
|
|
|
{
|
|
|
|
if(( web->haveAddr = ( addr != NULL )))
|
|
|
|
web->addr = *addr;
|
|
|
|
}
|
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
tr_web*
|
2009-10-23 05:48:56 +00:00
|
|
|
tr_webInit( tr_session * session )
|
2008-04-24 01:42:53 +00:00
|
|
|
{
|
2008-10-15 16:43:51 +00:00
|
|
|
tr_web * web;
|
2009-12-10 19:05:21 +00:00
|
|
|
static int curlInited = FALSE;
|
2008-04-24 01:42:53 +00:00
|
|
|
|
|
|
|
/* call curl_global_init if we haven't done it already.
|
|
|
|
* try to enable ssl for https support; but if that fails,
|
2009-08-10 20:04:08 +00:00
|
|
|
* try a plain vanilla init */
|
2008-10-15 16:43:51 +00:00
|
|
|
if( curlInited == FALSE ) {
|
2008-04-24 01:42:53 +00:00
|
|
|
curlInited = TRUE;
|
|
|
|
if( curl_global_init( CURL_GLOBAL_SSL ) )
|
|
|
|
curl_global_init( 0 );
|
|
|
|
}
|
2009-08-10 20:04:08 +00:00
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
web = tr_new0( struct tr_web, 1 );
|
|
|
|
web->session = session;
|
2009-12-11 15:41:34 +00:00
|
|
|
web->timer_msec = DEFAULT_TIMER_MSEC; /* overwritten by multi_timer_cb() */
|
2009-12-10 19:05:21 +00:00
|
|
|
evtimer_set( &web->timer_event, libevent_timer_cb, web );
|
2009-12-11 15:41:34 +00:00
|
|
|
|
|
|
|
web->multi = curl_multi_init( );
|
2009-12-10 19:05:21 +00:00
|
|
|
curl_multi_setopt( web->multi, CURLMOPT_SOCKETDATA, web );
|
|
|
|
curl_multi_setopt( web->multi, CURLMOPT_SOCKETFUNCTION, sock_cb );
|
|
|
|
curl_multi_setopt( web->multi, CURLMOPT_TIMERDATA, web );
|
|
|
|
curl_multi_setopt( web->multi, CURLMOPT_TIMERFUNCTION, multi_timer_cb );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
|
|
|
return web;
|
|
|
|
}
|
2008-04-25 04:26:04 +00:00
|
|
|
|
2008-04-25 19:46:36 +00:00
|
|
|
void
|
2008-05-06 15:52:57 +00:00
|
|
|
tr_webClose( tr_web ** web_in )
|
2008-04-25 19:46:36 +00:00
|
|
|
{
|
2008-05-06 15:52:57 +00:00
|
|
|
tr_web * web = *web_in;
|
|
|
|
*web_in = NULL;
|
2008-10-15 16:43:51 +00:00
|
|
|
if( web->still_running < 1 )
|
2008-10-18 15:45:12 +00:00
|
|
|
web_close( web );
|
2008-08-06 23:33:29 +00:00
|
|
|
else
|
2009-01-09 19:24:40 +00:00
|
|
|
web->closing = 1;
|
2008-04-25 19:46:36 +00:00
|
|
|
}
|
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
/*****
|
|
|
|
******
|
|
|
|
******
|
|
|
|
*****/
|
2008-04-25 04:26:04 +00:00
|
|
|
|
2008-10-15 16:43:51 +00:00
|
|
|
static struct http_msg {
|
|
|
|
long code;
|
|
|
|
const char * text;
|
2008-04-25 04:26:04 +00:00
|
|
|
} http_msg[] = {
|
2008-10-31 19:01:27 +00:00
|
|
|
{ 0, "No Response" },
|
2008-10-15 16:43:51 +00:00
|
|
|
{ 101, "Switching Protocols" },
|
|
|
|
{ 200, "OK" },
|
|
|
|
{ 201, "Created" },
|
|
|
|
{ 202, "Accepted" },
|
|
|
|
{ 203, "Non-Authoritative Information" },
|
|
|
|
{ 204, "No Content" },
|
|
|
|
{ 205, "Reset Content" },
|
|
|
|
{ 206, "Partial Content" },
|
|
|
|
{ 300, "Multiple Choices" },
|
|
|
|
{ 301, "Moved Permanently" },
|
|
|
|
{ 302, "Found" },
|
|
|
|
{ 303, "See Other" },
|
|
|
|
{ 304, "Not Modified" },
|
|
|
|
{ 305, "Use Proxy" },
|
|
|
|
{ 306, "(Unused)" },
|
|
|
|
{ 307, "Temporary Redirect" },
|
|
|
|
{ 400, "Bad Request" },
|
|
|
|
{ 401, "Unauthorized" },
|
|
|
|
{ 402, "Payment Required" },
|
|
|
|
{ 403, "Forbidden" },
|
|
|
|
{ 404, "Not Found" },
|
|
|
|
{ 405, "Method Not Allowed" },
|
|
|
|
{ 406, "Not Acceptable" },
|
|
|
|
{ 407, "Proxy Authentication Required" },
|
|
|
|
{ 408, "Request Timeout" },
|
|
|
|
{ 409, "Conflict" },
|
|
|
|
{ 410, "Gone" },
|
|
|
|
{ 411, "Length Required" },
|
|
|
|
{ 412, "Precondition Failed" },
|
|
|
|
{ 413, "Request Entity Too Large" },
|
|
|
|
{ 414, "Request-URI Too Long" },
|
|
|
|
{ 415, "Unsupported Media Type" },
|
2008-04-25 04:26:04 +00:00
|
|
|
{ 416, "Requested Range Not Satisfiable" },
|
2008-10-15 16:43:51 +00:00
|
|
|
{ 417, "Expectation Failed" },
|
|
|
|
{ 500, "Internal Server Error" },
|
|
|
|
{ 501, "Not Implemented" },
|
|
|
|
{ 502, "Bad Gateway" },
|
|
|
|
{ 503, "Service Unavailable" },
|
|
|
|
{ 504, "Gateway Timeout" },
|
2008-10-31 19:01:27 +00:00
|
|
|
{ 505, "HTTP Version Not Supported" }
|
2008-04-25 04:26:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2008-10-15 16:43:51 +00:00
|
|
|
compareResponseCodes( const void * va, const void * vb )
|
2008-04-25 04:26:04 +00:00
|
|
|
{
|
2008-10-15 16:43:51 +00:00
|
|
|
const long a = *(const long*) va;
|
2008-04-25 04:26:04 +00:00
|
|
|
const struct http_msg * b = vb;
|
|
|
|
return a - b->code;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
tr_webGetResponseStr( long code )
|
|
|
|
{
|
|
|
|
struct http_msg * msg = bsearch( &code,
|
2009-08-10 20:04:08 +00:00
|
|
|
http_msg,
|
2008-10-15 16:43:51 +00:00
|
|
|
sizeof( http_msg ) / sizeof( http_msg[0] ),
|
2008-04-25 04:26:04 +00:00
|
|
|
sizeof( http_msg[0] ),
|
|
|
|
compareResponseCodes );
|
|
|
|
return msg ? msg->text : "Unknown Error";
|
|
|
|
}
|
2009-11-10 17:03:23 +00:00
|
|
|
|
|
|
|
/* escapes a string to be URI-legal as per RFC 2396.
|
2009-11-29 08:05:47 +00:00
|
|
|
like curl_escape() but can optionally avoid escaping slashes. */
|
2009-11-10 17:03:23 +00:00
|
|
|
void
|
2009-11-29 08:05:47 +00:00
|
|
|
tr_http_escape( struct evbuffer * out,
|
|
|
|
const char * str,
|
|
|
|
int len,
|
|
|
|
tr_bool escape_slashes )
|
2009-11-10 17:03:23 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2009-11-29 08:05:47 +00:00
|
|
|
if( ( len < 0 ) && ( str != NULL ) )
|
|
|
|
len = strlen( str );
|
|
|
|
|
2009-11-10 17:03:23 +00:00
|
|
|
for( i = 0; i < len; i++ ) {
|
|
|
|
switch( str[i] ) {
|
|
|
|
case ',': case '-': case '.':
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
|
|
case 'a': case 'b': case 'c': case 'd': case 'e':
|
|
|
|
case 'f': case 'g': case 'h': case 'i': case 'j':
|
|
|
|
case 'k': case 'l': case 'm': case 'n': case 'o':
|
|
|
|
case 'p': case 'q': case 'r': case 's': case 't':
|
|
|
|
case 'u': case 'v': case 'w': case 'x': case 'y': case 'z':
|
|
|
|
case 'A': case 'B': case 'C': case 'D': case 'E':
|
|
|
|
case 'F': case 'G': case 'H': case 'I': case 'J':
|
|
|
|
case 'K': case 'L': case 'M': case 'N': case 'O':
|
|
|
|
case 'P': case 'Q': case 'R': case 'S': case 'T':
|
|
|
|
case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z':
|
|
|
|
evbuffer_add( out, &str[i], 1 );
|
|
|
|
break;
|
|
|
|
case '/':
|
2009-11-29 08:05:47 +00:00
|
|
|
if(!escape_slashes) {
|
2009-11-10 17:03:23 +00:00
|
|
|
evbuffer_add( out, &str[i], 1 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Fall through. */
|
|
|
|
default:
|
|
|
|
evbuffer_add_printf( out, "%%%02X", (unsigned)(str[i]&0xFF) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-20 04:38:19 +00:00
|
|
|
|
|
|
|
char*
|
|
|
|
tr_http_unescape( const char * str, int len )
|
|
|
|
{
|
|
|
|
char * tmp = curl_unescape( str, len );
|
|
|
|
char * ret = tr_strdup( tmp );
|
|
|
|
curl_free( tmp );
|
|
|
|
return ret;
|
|
|
|
}
|