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
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
|
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;
|
2009-12-14 14:25:22 +00:00
|
|
|
tr_bool haveAddr;
|
2009-12-14 05:11:33 +00:00
|
|
|
int taskCount;
|
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_address addr;
|
2008-10-17 20:57:54 +00:00
|
|
|
struct event timer_event;
|
2008-04-24 01:42:53 +00:00
|
|
|
};
|
|
|
|
|
2009-12-14 12:54:30 +00:00
|
|
|
static void
|
2009-12-14 14:25:22 +00:00
|
|
|
web_free( tr_web * g )
|
2009-12-14 12:54:30 +00:00
|
|
|
{
|
|
|
|
curl_multi_cleanup( g->multi );
|
|
|
|
evtimer_del( &g->timer_event );
|
|
|
|
tr_free( g );
|
|
|
|
}
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2009-12-14 12:54:30 +00:00
|
|
|
static void
|
|
|
|
task_free( struct tr_web_task * task )
|
|
|
|
{
|
|
|
|
evbuffer_free( task->response );
|
|
|
|
tr_free( task->range );
|
|
|
|
tr_free( task->url );
|
|
|
|
tr_free( task );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
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
|
|
|
|
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-14 05:11:33 +00:00
|
|
|
static int
|
|
|
|
getCurlProxyType( tr_proxy_type t )
|
|
|
|
{
|
|
|
|
if( t == TR_PROXY_SOCKS4 ) return CURLPROXY_SOCKS4;
|
|
|
|
if( t == TR_PROXY_SOCKS5 ) return CURLPROXY_SOCKS5;
|
|
|
|
return CURLPROXY_HTTP;
|
|
|
|
}
|
|
|
|
|
2009-12-13 17:54:01 +00:00
|
|
|
static int
|
|
|
|
getTimeoutFromURL( const char * url )
|
|
|
|
{
|
2009-12-14 05:11:33 +00:00
|
|
|
if( strstr( url, "scrape" ) != NULL ) return 20;
|
|
|
|
if( strstr( url, "announce" ) != NULL ) return 30;
|
2009-12-13 17:54:01 +00:00
|
|
|
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-14 12:54:30 +00:00
|
|
|
CURL * e = 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 ) {
|
2009-12-14 12:54:30 +00:00
|
|
|
curl_easy_setopt( e, CURLOPT_PROXY, session->proxy );
|
|
|
|
curl_easy_setopt( e, CURLOPT_PROXYAUTH, CURLAUTH_ANY );
|
|
|
|
curl_easy_setopt( e, CURLOPT_PROXYPORT, session->proxyPort );
|
|
|
|
curl_easy_setopt( e, CURLOPT_PROXYTYPE,
|
2008-10-17 20:57:54 +00:00
|
|
|
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 );
|
2009-12-14 12:54:30 +00:00
|
|
|
curl_easy_setopt( e, CURLOPT_PROXYUSERPWD, str );
|
2008-06-10 16:16:31 +00:00
|
|
|
tr_free( str );
|
|
|
|
}
|
|
|
|
|
2009-12-14 12:54:30 +00:00
|
|
|
curl_easy_setopt( e, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
|
|
|
|
curl_easy_setopt( e, CURLOPT_TIMEOUT, timeout );
|
|
|
|
curl_easy_setopt( e, CURLOPT_CONNECTTIMEOUT, timeout-5 );
|
|
|
|
curl_easy_setopt( e, CURLOPT_SOCKOPTFUNCTION, sockoptfunction );
|
|
|
|
curl_easy_setopt( e, CURLOPT_SOCKOPTDATA, task );
|
|
|
|
curl_easy_setopt( e, CURLOPT_WRITEDATA, task );
|
|
|
|
curl_easy_setopt( e, CURLOPT_WRITEFUNCTION, writeFunc );
|
|
|
|
curl_easy_setopt( e, CURLOPT_DNS_CACHE_TIMEOUT, 1800L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_FOLLOWLOCATION, 1L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_AUTOREFERER, 1L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_FORBID_REUSE, 1L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_MAXREDIRS, -1L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_NOSIGNAL, 1L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_PRIVATE, task );
|
|
|
|
curl_easy_setopt( e, CURLOPT_SSL_VERIFYHOST, 0L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_SSL_VERIFYPEER, 0L );
|
|
|
|
curl_easy_setopt( e, CURLOPT_URL, task->url );
|
|
|
|
curl_easy_setopt( e, CURLOPT_USERAGENT, user_agent );
|
|
|
|
curl_easy_setopt( e, CURLOPT_VERBOSE, verbose );
|
2009-12-13 17:54:01 +00:00
|
|
|
if( web->haveAddr )
|
2009-12-14 12:54:30 +00:00
|
|
|
curl_easy_setopt( e, CURLOPT_INTERFACE, tr_ntop_non_ts( &web->addr ) );
|
2008-06-07 21:26:41 +00:00
|
|
|
if( task->range )
|
2009-12-14 12:54:30 +00:00
|
|
|
curl_easy_setopt( e, CURLOPT_RANGE, task->range );
|
2008-10-16 05:24:57 +00:00
|
|
|
|
2009-12-14 17:17:05 +00:00
|
|
|
if( curl_multi_add_handle( web->multi, e ) == CURLM_OK )
|
|
|
|
++web->taskCount;
|
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-18 15:45:12 +00:00
|
|
|
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-14 12:54:30 +00:00
|
|
|
CURL * e = msg->easy_handle;
|
|
|
|
curl_easy_getinfo( e, CURLINFO_PRIVATE, (void*)&task );
|
|
|
|
curl_easy_getinfo( e, CURLINFO_RESPONSE_CODE, &code );
|
|
|
|
curl_multi_remove_handle( g->multi, e );
|
|
|
|
curl_easy_cleanup( e );
|
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-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-12-10 19:05:21 +00:00
|
|
|
dbgmsg( "adding a timeout for %.1f seconds from now", g->timer_msec/1000.0 );
|
2009-12-14 05:11:33 +00:00
|
|
|
evtimer_del( &g->timer_event );
|
2009-12-10 19:05:21 +00:00
|
|
|
tr_timerAddMsec( &g->timer_event, g->timer_msec );
|
2008-10-18 00:20:37 +00:00
|
|
|
}
|
2008-10-16 05:24:57 +00:00
|
|
|
|
2009-12-14 14:25:22 +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
|
|
|
{
|
2009-02-05 14:52:00 +00:00
|
|
|
CURLMcode mcode;
|
2008-10-17 20:57:54 +00:00
|
|
|
|
2009-12-14 05:11:33 +00:00
|
|
|
dbgmsg( "check_run_count: %d taskCount", g->taskCount );
|
2008-10-17 20:57:54 +00:00
|
|
|
|
2008-10-18 00:20:37 +00:00
|
|
|
/* invoke libcurl's processing */
|
2009-12-14 14:25:22 +00:00
|
|
|
do
|
2009-12-14 05:11:33 +00:00
|
|
|
mcode = curl_multi_socket_action( g->multi, fd, 0, &g->taskCount );
|
2009-12-14 14:25:22 +00:00
|
|
|
while( mcode == CURLM_CALL_MULTI_SOCKET );
|
2008-10-18 00:20:37 +00:00
|
|
|
|
|
|
|
remove_finished_tasks( g );
|
|
|
|
|
2009-12-14 14:25:22 +00:00
|
|
|
if( g->closing && !g->taskCount )
|
|
|
|
web_free( g );
|
2009-12-14 12:54:30 +00:00
|
|
|
else
|
2008-10-18 00:20:37 +00:00
|
|
|
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-14 14:25:22 +00:00
|
|
|
sock_cb( CURL * e UNUSED, curl_socket_t fd, int action,
|
2009-12-14 12:54:30 +00:00
|
|
|
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;
|
2009-12-14 14:25:22 +00:00
|
|
|
dbgmsg( "sock_cb: action %d, fd %d, io_event %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 );
|
2009-12-14 05:11:33 +00:00
|
|
|
curl_multi_assign( web->multi, fd, NULL );
|
2009-12-11 15:41:34 +00:00
|
|
|
/*fprintf( stderr, "-1 io_events to %d\n", --num_events );*/
|
|
|
|
}
|
2009-02-05 22:00:21 +00:00
|
|
|
}
|
2009-12-14 12:54:30 +00:00
|
|
|
else if( action & ( EV_READ | EV_WRITE ) )
|
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-14 14:25:22 +00:00
|
|
|
g->timer_msec = timer_msec > 0 ? timer_msec : DEFAULT_TIMER_MSEC;
|
2008-11-04 19:40:18 +00:00
|
|
|
|
2009-12-14 14:25:22 +00:00
|
|
|
if( timer_msec < 1 )
|
|
|
|
tr_multi_perform( g, CURL_SOCKET_TIMEOUT );
|
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 )
|
|
|
|
{
|
2009-12-14 12:54:30 +00:00
|
|
|
if( session->web != NULL )
|
2008-09-23 19:11:04 +00:00
|
|
|
{
|
2009-12-10 19:05:21 +00:00
|
|
|
static unsigned long tag = 0;
|
2009-12-14 05:11:33 +00:00
|
|
|
struct tr_web_task * task = tr_new0( struct tr_web_task, 1 );
|
2008-10-15 16:43:51 +00:00
|
|
|
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;
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2009-12-14 12:54:30 +00:00
|
|
|
/* try to enable ssl for https support; but if that fails,
|
2009-08-10 20:04:08 +00:00
|
|
|
* try a plain vanilla init */
|
2009-12-14 12:54:30 +00:00
|
|
|
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;
|
2009-12-14 05:11:33 +00:00
|
|
|
if( web->taskCount < 1 )
|
2009-12-14 14:25:22 +00:00
|
|
|
web_free( 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
|
|
|
|
|
|
|
const char *
|
|
|
|
tr_webGetResponseStr( long code )
|
|
|
|
{
|
2009-12-14 12:54:30 +00:00
|
|
|
switch( code )
|
|
|
|
{
|
|
|
|
case 0: return "No Response";
|
|
|
|
case 101: return "Switching Protocols";
|
|
|
|
case 200: return "OK";
|
|
|
|
case 201: return "Created";
|
|
|
|
case 202: return "Accepted";
|
|
|
|
case 203: return "Non-Authoritative Information";
|
|
|
|
case 204: return "No Content";
|
|
|
|
case 205: return "Reset Content";
|
|
|
|
case 206: return "Partial Content";
|
|
|
|
case 300: return "Multiple Choices";
|
|
|
|
case 301: return "Moved Permanently";
|
|
|
|
case 302: return "Found";
|
|
|
|
case 303: return "See Other";
|
|
|
|
case 304: return "Not Modified";
|
|
|
|
case 305: return "Use Proxy";
|
|
|
|
case 306: return "(Unused)";
|
|
|
|
case 307: return "Temporary Redirect";
|
|
|
|
case 400: return "Bad Request";
|
|
|
|
case 401: return "Unauthorized";
|
|
|
|
case 402: return "Payment Required";
|
|
|
|
case 403: return "Forbidden";
|
|
|
|
case 404: return "Not Found";
|
|
|
|
case 405: return "Method Not Allowed";
|
|
|
|
case 406: return "Not Acceptable";
|
|
|
|
case 407: return "Proxy Authentication Required";
|
|
|
|
case 408: return "Request Timeout";
|
|
|
|
case 409: return "Conflict";
|
|
|
|
case 410: return "Gone";
|
|
|
|
case 411: return "Length Required";
|
|
|
|
case 412: return "Precondition Failed";
|
|
|
|
case 413: return "Request Entity Too Large";
|
|
|
|
case 414: return "Request-URI Too Long";
|
|
|
|
case 415: return "Unsupported Media Type";
|
|
|
|
case 416: return "Requested Range Not Satisfiable";
|
|
|
|
case 417: return "Expectation Failed";
|
|
|
|
case 500: return "Internal Server Error";
|
|
|
|
case 501: return "Not Implemented";
|
|
|
|
case 502: return "Bad Gateway";
|
|
|
|
case 503: return "Service Unavailable";
|
|
|
|
case 504: return "Gateway Timeout";
|
|
|
|
case 505: return "HTTP Version Not Supported";
|
|
|
|
default: return "Unknown Error";
|
|
|
|
}
|
2008-04-25 04:26:04 +00:00
|
|
|
}
|
2009-11-10 17:03:23 +00:00
|
|
|
|
|
|
|
void
|
2009-12-14 14:25:22 +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
|
|
|
|
2009-12-14 05:11:33 +00:00
|
|
|
char *
|
2009-11-20 04:38:19 +00:00
|
|
|
tr_http_unescape( const char * str, int len )
|
|
|
|
{
|
|
|
|
char * tmp = curl_unescape( str, len );
|
|
|
|
char * ret = tr_strdup( tmp );
|
|
|
|
curl_free( tmp );
|
|
|
|
return ret;
|
|
|
|
}
|