2007-04-18 16:39:10 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Joshua Elsasser
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <event.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-07-18 23:04:26 +00:00
|
|
|
#include <libtransmission/bencode.h>
|
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
#include <libtransmission/trcompat.h>
|
|
|
|
|
2008-02-27 06:01:46 +00:00
|
|
|
#include "bsdtree.h"
|
2007-04-18 16:39:10 +00:00
|
|
|
#include "errors.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "torrents.h"
|
|
|
|
|
|
|
|
#define EXIT_TIMEOUT 10 /* how many seconds to wait on exit */
|
|
|
|
#define TIMER_SECS 1 /* timer interval seconds */
|
|
|
|
#define TIMER_USECS 0 /* timer interval microseconds */
|
|
|
|
|
|
|
|
struct tor
|
|
|
|
{
|
|
|
|
int id;
|
|
|
|
uint8_t hash[SHA_DIGEST_LENGTH];
|
2007-09-20 20:14:13 +00:00
|
|
|
tr_torrent * tor;
|
2007-04-18 16:39:10 +00:00
|
|
|
RB_ENTRY( tor ) idlinks;
|
|
|
|
RB_ENTRY( tor ) hashlinks;
|
|
|
|
};
|
|
|
|
|
|
|
|
RB_HEAD( tortree, tor );
|
|
|
|
RB_HEAD( hashtree, tor );
|
|
|
|
|
|
|
|
static struct tor * opentor ( const char *, const char *, uint8_t *, size_t,
|
|
|
|
const char * );
|
|
|
|
static void closetor ( struct tor *, int );
|
|
|
|
static void starttimer ( int );
|
|
|
|
static void timerfunc ( int, short, void * );
|
|
|
|
static int loadstate ( void );
|
|
|
|
static int savestate ( void );
|
|
|
|
|
|
|
|
static struct event_base * gl_base = NULL;
|
2007-09-20 20:14:13 +00:00
|
|
|
static tr_handle * gl_handle = NULL;
|
2007-04-18 16:39:10 +00:00
|
|
|
static struct tortree gl_tree = RB_INITIALIZER( &gl_tree );
|
|
|
|
static struct hashtree gl_hashes = RB_INITIALIZER( &gl_hashes );
|
|
|
|
static int gl_lastid = 0;
|
|
|
|
static struct event gl_event;
|
|
|
|
static time_t gl_exiting = 0;
|
|
|
|
static int gl_exitval = 0;
|
|
|
|
static char gl_state[MAXPATHLEN];
|
|
|
|
static char gl_newstate[MAXPATHLEN];
|
|
|
|
|
|
|
|
static int gl_autostart = 1;
|
|
|
|
static int gl_pex = 1;
|
|
|
|
static int gl_port = TR_DEFAULT_PORT;
|
|
|
|
static int gl_mapping = 0;
|
|
|
|
static int gl_uplimit = -1;
|
|
|
|
static int gl_downlimit = -1;
|
|
|
|
static char gl_dir[MAXPATHLEN];
|
2007-10-26 03:43:27 +00:00
|
|
|
static tr_encryption_mode gl_crypto = TR_ENCRYPTION_PREFERRED;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 20:06:53 +00:00
|
|
|
static int
|
|
|
|
torhashcmp( struct tor * left, struct tor * right )
|
|
|
|
{
|
|
|
|
return memcmp( left->hash, right->hash, sizeof left->hash );
|
|
|
|
}
|
|
|
|
|
2007-04-18 16:39:10 +00:00
|
|
|
RB_GENERATE_STATIC( hashtree, tor, hashlinks, torhashcmp )
|
2008-02-27 20:06:53 +00:00
|
|
|
|
2007-04-18 16:39:10 +00:00
|
|
|
INTCMP_FUNC( toridcmp, tor, id )
|
2008-02-27 20:06:53 +00:00
|
|
|
RB_GENERATE_STATIC( tortree, tor, idlinks, toridcmp )
|
2007-04-18 16:39:10 +00:00
|
|
|
|
|
|
|
void
|
2008-04-19 00:41:32 +00:00
|
|
|
torrent_init( const char * configdir, struct event_base * base )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
|
|
|
assert( NULL == gl_handle && NULL == gl_base );
|
|
|
|
|
|
|
|
gl_base = base;
|
2008-04-19 00:41:32 +00:00
|
|
|
gl_handle = tr_init( configdir, "daemon" );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-19 00:41:32 +00:00
|
|
|
confpath( gl_state, sizeof gl_state, configdir, CONF_FILE_STATE, 0 );
|
2008-04-28 18:09:17 +00:00
|
|
|
snprintf( gl_newstate, sizeof( gl_newstate ), "%s.new", gl_state );
|
2007-04-18 16:39:10 +00:00
|
|
|
absolutify( gl_dir, sizeof gl_dir, "." );
|
|
|
|
|
|
|
|
loadstate();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_add_file( const char * path, const char * dir, int autostart )
|
|
|
|
{
|
|
|
|
struct tor * tor;
|
|
|
|
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
|
|
|
|
tor = opentor( path, NULL, NULL, 0, dir );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( 0 > autostart )
|
|
|
|
{
|
|
|
|
autostart = gl_autostart;
|
|
|
|
}
|
|
|
|
if( autostart )
|
|
|
|
{
|
|
|
|
tr_torrentStart( tor->tor );
|
|
|
|
}
|
|
|
|
|
|
|
|
savestate();
|
|
|
|
|
|
|
|
return tor->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_add_data( uint8_t * data, size_t size, const char * dir, int autostart )
|
|
|
|
{
|
|
|
|
struct tor * tor;
|
|
|
|
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
|
|
|
|
tor = opentor( NULL, NULL, data, size, dir );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( 0 > autostart )
|
|
|
|
{
|
|
|
|
autostart = gl_autostart;
|
|
|
|
}
|
|
|
|
if( autostart )
|
|
|
|
{
|
|
|
|
tr_torrentStart( tor->tor );
|
|
|
|
}
|
|
|
|
|
|
|
|
savestate();
|
|
|
|
|
|
|
|
return tor->id;
|
|
|
|
}
|
|
|
|
|
2008-02-27 17:38:39 +00:00
|
|
|
static struct tor *
|
|
|
|
idlookup( int id )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-02-27 17:38:39 +00:00
|
|
|
struct tor * found = NULL;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 17:38:39 +00:00
|
|
|
if( gl_handle && !gl_exiting )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-02-27 17:38:39 +00:00
|
|
|
struct tor key;
|
|
|
|
memset( &key, 0, sizeof key );
|
|
|
|
key.id = id;
|
|
|
|
found = RB_FIND( tortree, &gl_tree, &key );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
2007-07-15 19:12:54 +00:00
|
|
|
|
2008-02-27 17:38:39 +00:00
|
|
|
return found;
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-27 17:38:39 +00:00
|
|
|
torrent_start( int id )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-02-27 17:38:39 +00:00
|
|
|
struct tor * tor = idlookup( id );
|
|
|
|
if( tor && !TR_STATUS_IS_ACTIVE( tr_torrentStat( tor->tor )->status ) ) {
|
|
|
|
tr_torrentStart( tor->tor );
|
|
|
|
savestate();
|
|
|
|
}
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 17:38:39 +00:00
|
|
|
}
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 17:38:39 +00:00
|
|
|
void
|
|
|
|
torrent_stop( int id )
|
|
|
|
{
|
|
|
|
struct tor * tor = idlookup( id );
|
|
|
|
if( tor && TR_STATUS_IS_ACTIVE( tr_torrentStat( tor->tor )->status ) ) {
|
|
|
|
tr_torrentStop( tor->tor );
|
|
|
|
savestate( );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-27 17:38:39 +00:00
|
|
|
torrent_verify( int id )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-02-27 17:38:39 +00:00
|
|
|
struct tor * tor = idlookup( id );
|
|
|
|
if( tor )
|
|
|
|
tr_torrentVerify( tor->tor );
|
|
|
|
}
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 17:38:39 +00:00
|
|
|
void
|
|
|
|
torrent_remove( int id )
|
|
|
|
{
|
|
|
|
struct tor * tor = idlookup( id );
|
|
|
|
if( tor ) {
|
2007-07-15 19:12:54 +00:00
|
|
|
closetor( tor, 1 );
|
|
|
|
savestate();
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-10 19:02:24 +00:00
|
|
|
tr_torrent *
|
|
|
|
torrent_handle( int id )
|
|
|
|
{
|
|
|
|
const struct tor * tor = idlookup( id );
|
|
|
|
return tor ? tor->tor : NULL;
|
|
|
|
}
|
|
|
|
|
2007-09-20 20:14:13 +00:00
|
|
|
const tr_info *
|
2007-04-18 16:39:10 +00:00
|
|
|
torrent_info( int id )
|
|
|
|
{
|
2008-04-10 19:02:24 +00:00
|
|
|
return tr_torrentInfo( torrent_handle( id ) );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
|
2007-09-20 20:14:13 +00:00
|
|
|
const tr_stat *
|
2007-04-18 16:39:10 +00:00
|
|
|
torrent_stat( int id )
|
|
|
|
{
|
2008-04-10 19:02:24 +00:00
|
|
|
return tr_torrentStat( torrent_handle( id ) );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
|
2008-02-27 20:06:53 +00:00
|
|
|
static struct tor *
|
|
|
|
hashlookup( const uint8_t * hash )
|
|
|
|
{
|
|
|
|
struct tor key, * found;
|
|
|
|
|
|
|
|
memset( &key, 0, sizeof key );
|
|
|
|
memcpy( key.hash, hash, sizeof key.hash );
|
|
|
|
found = RB_FIND( hashtree, &gl_hashes, &key );
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2007-04-18 16:39:10 +00:00
|
|
|
int
|
|
|
|
torrent_lookup( const uint8_t * hashstr )
|
|
|
|
{
|
|
|
|
uint8_t hash[SHA_DIGEST_LENGTH];
|
|
|
|
size_t ii;
|
|
|
|
struct tor * tor;
|
|
|
|
char buf[3];
|
|
|
|
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
|
2007-07-19 00:57:26 +00:00
|
|
|
memset( buf, 0, sizeof buf );
|
2007-04-18 16:39:10 +00:00
|
|
|
for( ii = 0; sizeof( hash ) > ii; ii++ )
|
|
|
|
{
|
|
|
|
if( !isxdigit( hashstr[2*ii] ) || !isxdigit( hashstr[1+2*ii] ) )
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy( buf, &hashstr[2*ii], 2 );
|
|
|
|
hash[ii] = strtol( buf, NULL, 16 );
|
|
|
|
}
|
|
|
|
|
2007-06-26 20:46:12 +00:00
|
|
|
tor = hashlookup( hash );
|
2007-04-18 16:39:10 +00:00
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tor->id;
|
|
|
|
}
|
|
|
|
|
2008-02-27 20:06:53 +00:00
|
|
|
static struct tor *
|
|
|
|
iterate( struct tor * tor )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-02-27 20:06:53 +00:00
|
|
|
struct tor * next = NULL;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 20:06:53 +00:00
|
|
|
if( gl_handle && !gl_exiting )
|
|
|
|
next = tor ? RB_NEXT( tortree, &gl_tree, tor )
|
|
|
|
: RB_MIN( tortree, &gl_tree );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 20:06:53 +00:00
|
|
|
return next;
|
|
|
|
}
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-02-27 20:06:53 +00:00
|
|
|
void *
|
|
|
|
torrent_iter( void * cur, int * id )
|
|
|
|
{
|
|
|
|
struct tor * next = iterate( cur );
|
|
|
|
if( next )
|
|
|
|
*id = next->id;
|
|
|
|
return next;
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_exit( int exitval )
|
|
|
|
{
|
|
|
|
struct tor * tor;
|
|
|
|
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
gl_exiting = time( NULL );
|
|
|
|
gl_exitval = exitval;
|
|
|
|
|
|
|
|
RB_FOREACH( tor, tortree, &gl_tree )
|
|
|
|
{
|
|
|
|
closetor( tor, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_natTraversalEnable( gl_handle, 0 );
|
|
|
|
starttimer( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_set_autostart( int autostart )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
gl_autostart = autostart;
|
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_get_autostart( void )
|
|
|
|
{
|
|
|
|
return gl_autostart;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_set_port( int port )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
if( 0 < port && 0xffff > port )
|
|
|
|
{
|
|
|
|
gl_port = port;
|
|
|
|
tr_setBindPort( gl_handle, port );
|
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_get_port( void )
|
|
|
|
{
|
|
|
|
return gl_port;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_set_pex( int pex )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
|
2008-02-08 16:51:34 +00:00
|
|
|
if( gl_pex != pex )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-02-08 16:51:34 +00:00
|
|
|
gl_pex = pex;
|
|
|
|
|
2007-12-24 05:03:40 +00:00
|
|
|
tr_setPexEnabled( gl_handle, gl_pex );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2007-12-24 05:03:40 +00:00
|
|
|
savestate( );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_get_pex( void )
|
|
|
|
{
|
|
|
|
return gl_pex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_enable_port_mapping( int automap )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
gl_mapping = ( automap ? 1 : 0 );
|
|
|
|
tr_natTraversalEnable( gl_handle, gl_mapping );
|
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_get_port_mapping( void )
|
|
|
|
{
|
|
|
|
return gl_mapping;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_set_uplimit( int uplimit )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
gl_uplimit = uplimit;
|
2007-07-20 08:33:59 +00:00
|
|
|
tr_setGlobalSpeedLimit ( gl_handle, TR_UP, uplimit );
|
|
|
|
tr_setUseGlobalSpeedLimit( gl_handle, TR_UP, uplimit > 0 );
|
2007-04-18 16:39:10 +00:00
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_get_uplimit( void )
|
|
|
|
{
|
|
|
|
return gl_uplimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_set_downlimit( int downlimit )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
gl_downlimit = downlimit;
|
2007-07-20 08:33:59 +00:00
|
|
|
tr_setGlobalSpeedLimit ( gl_handle, TR_DOWN, downlimit );
|
|
|
|
tr_setUseGlobalSpeedLimit( gl_handle, TR_DOWN, downlimit > 0 );
|
2007-04-18 16:39:10 +00:00
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
torrent_get_downlimit( void )
|
|
|
|
{
|
|
|
|
return gl_downlimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
torrent_set_directory( const char * path )
|
|
|
|
{
|
|
|
|
assert( NULL != gl_handle );
|
|
|
|
assert( !gl_exiting );
|
|
|
|
|
|
|
|
absolutify( gl_dir, sizeof gl_dir, path );
|
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
torrent_get_directory( void )
|
|
|
|
{
|
|
|
|
return gl_dir;
|
|
|
|
}
|
|
|
|
|
2007-10-26 03:43:27 +00:00
|
|
|
void
|
|
|
|
torrent_set_encryption(tr_encryption_mode mode)
|
|
|
|
{
|
|
|
|
tr_setEncryptionMode(gl_handle, mode);
|
|
|
|
gl_crypto = mode;
|
|
|
|
savestate();
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_encryption_mode
|
|
|
|
torrent_get_encryption(void)
|
|
|
|
{
|
|
|
|
return tr_getEncryptionMode(gl_handle);
|
|
|
|
}
|
|
|
|
|
2007-04-18 16:39:10 +00:00
|
|
|
struct tor *
|
|
|
|
opentor( const char * path, const char * hash, uint8_t * data, size_t size,
|
|
|
|
const char * dir )
|
|
|
|
{
|
|
|
|
struct tor * tor, * found;
|
|
|
|
int errcode;
|
2007-09-20 20:14:13 +00:00
|
|
|
const tr_info * inf;
|
2007-12-22 03:51:12 +00:00
|
|
|
tr_ctor * ctor;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
|
|
|
assert( ( NULL != path && NULL == hash && NULL == data ) ||
|
|
|
|
( NULL == path && NULL != hash && NULL == data ) ||
|
|
|
|
( NULL == path && NULL == hash && NULL != data ) );
|
|
|
|
|
|
|
|
/* XXX should probably wrap around back to 1 and avoid duplicates */
|
|
|
|
if( INT_MAX == gl_lastid )
|
|
|
|
{
|
|
|
|
errmsg( "Congratulations, you're the %ith torrent! Your prize the "
|
|
|
|
"inability to load any more torrents, enjoy!", INT_MAX );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tor = calloc( 1, sizeof *tor );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
mallocmsg( sizeof *tor );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-06-26 20:29:13 +00:00
|
|
|
if( dir == NULL )
|
|
|
|
dir = gl_dir;
|
|
|
|
|
2007-12-22 03:51:12 +00:00
|
|
|
ctor = tr_ctorNew( gl_handle );
|
|
|
|
tr_ctorSetPaused( ctor, TR_FORCE, 1 );
|
|
|
|
tr_ctorSetDestination( ctor, TR_FORCE, dir );
|
|
|
|
if( path != NULL )
|
|
|
|
tr_ctorSetMetainfoFromFile( ctor, path );
|
|
|
|
else if( hash != NULL )
|
|
|
|
tr_ctorSetMetainfoFromHash( ctor, hash );
|
2007-04-18 16:39:10 +00:00
|
|
|
else
|
2007-12-22 03:51:12 +00:00
|
|
|
tr_ctorSetMetainfo( ctor, data, size );
|
|
|
|
tor->tor = tr_torrentNew( gl_handle, ctor, &errcode );
|
|
|
|
tr_ctorFree( ctor );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
|
|
|
if( NULL == tor->tor )
|
|
|
|
{
|
|
|
|
found = NULL;
|
|
|
|
switch( errcode )
|
|
|
|
{
|
|
|
|
case TR_EINVALID:
|
|
|
|
if( NULL == path )
|
|
|
|
{
|
|
|
|
errmsg( "invalid torrent file" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errmsg( "invalid torrent file: %s", path );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TR_EUNSUPPORTED:
|
|
|
|
if( NULL == path )
|
|
|
|
{
|
|
|
|
errmsg( "unsupported torrent file" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errmsg( "unsupported torrent file: %s", path );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TR_EDUPLICATE:
|
|
|
|
/* XXX not yet
|
|
|
|
found = hashlookup( tor->hash, 1 );
|
|
|
|
assert( NULL != found );
|
|
|
|
found->deleting = 0;
|
|
|
|
*/
|
|
|
|
errmsg( "XXX loaded duplicate torrent" );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if( NULL == path )
|
|
|
|
{
|
|
|
|
errmsg( "torrent file failed to load" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errmsg( "torrent file failed to load: %s", path );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free( tor );
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
gl_lastid++;
|
|
|
|
tor->id = gl_lastid;
|
|
|
|
|
|
|
|
assert( sizeof( inf->hash ) == sizeof( tor->hash ) );
|
|
|
|
inf = tr_torrentInfo( tor->tor );
|
|
|
|
memcpy( tor->hash, inf->hash, sizeof tor->hash );
|
|
|
|
|
|
|
|
found = RB_INSERT( tortree, &gl_tree, tor );
|
|
|
|
assert( NULL == found );
|
|
|
|
found = RB_INSERT( hashtree, &gl_hashes, tor );
|
|
|
|
assert( NULL == found );
|
|
|
|
|
|
|
|
return tor;
|
|
|
|
}
|
|
|
|
|
2007-06-26 20:46:12 +00:00
|
|
|
static void
|
|
|
|
freetor( struct tor * tor )
|
|
|
|
{
|
|
|
|
tr_torrentClose( tor->tor );
|
|
|
|
RB_REMOVE( tortree, &gl_tree, tor );
|
|
|
|
RB_REMOVE( hashtree, &gl_hashes, tor );
|
|
|
|
free( tor );
|
|
|
|
}
|
|
|
|
|
2007-04-18 16:39:10 +00:00
|
|
|
void
|
|
|
|
closetor( struct tor * tor, int calltimer )
|
|
|
|
{
|
2007-06-26 20:46:12 +00:00
|
|
|
if( NULL != tor )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2007-06-26 20:46:12 +00:00
|
|
|
freetor( tor );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2007-06-26 20:46:12 +00:00
|
|
|
starttimer( calltimer );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
starttimer( int callnow )
|
|
|
|
{
|
|
|
|
if( !evtimer_initialized( &gl_event ) )
|
|
|
|
{
|
|
|
|
evtimer_set( &gl_event, timerfunc, NULL );
|
2007-10-26 03:36:02 +00:00
|
|
|
event_base_set( gl_base, &gl_event );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( callnow )
|
|
|
|
{
|
|
|
|
timerfunc( -1, EV_TIMEOUT, NULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-26 20:46:12 +00:00
|
|
|
static void
|
2007-04-18 16:39:10 +00:00
|
|
|
timerfunc( int fd UNUSED, short event UNUSED, void * arg UNUSED )
|
|
|
|
{
|
2008-01-31 02:24:43 +00:00
|
|
|
struct tor * tor, * next;
|
|
|
|
const tr_handle_status * hs;
|
|
|
|
int stillmore;
|
|
|
|
struct timeval tv;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2007-06-26 20:46:12 +00:00
|
|
|
/* true if we've still got live torrents... */
|
|
|
|
stillmore = tr_torrentCount( gl_handle ) != 0;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
|
|
|
if( gl_exiting )
|
|
|
|
{
|
|
|
|
if( !stillmore )
|
|
|
|
{
|
|
|
|
hs = tr_handleStatus( gl_handle );
|
2007-12-08 19:34:15 +00:00
|
|
|
if( TR_NAT_TRAVERSAL_UNMAPPED != hs->natTraversalStatus )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
|
|
|
stillmore = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !stillmore || EXIT_TIMEOUT <= time( NULL ) - gl_exiting )
|
|
|
|
{
|
|
|
|
if( stillmore )
|
|
|
|
{
|
|
|
|
errmsg( "timing out trackers and/or port mapping on exit" );
|
|
|
|
}
|
|
|
|
for( tor = RB_MIN( tortree, &gl_tree ); NULL != tor; tor = next )
|
|
|
|
{
|
|
|
|
next = RB_NEXT( tortree, &gl_tree, tor );
|
2007-06-26 20:46:12 +00:00
|
|
|
freetor( tor );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
tr_close( gl_handle );
|
|
|
|
exit( gl_exitval );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( stillmore )
|
|
|
|
{
|
2007-07-19 00:57:26 +00:00
|
|
|
memset( &tv, 0, sizeof tv );
|
2007-04-18 16:39:10 +00:00
|
|
|
tv.tv_sec = TIMER_SECS;
|
|
|
|
tv.tv_usec = TIMER_USECS;
|
|
|
|
evtimer_add( &gl_event, &tv );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
loadstate( void )
|
|
|
|
{
|
2008-04-17 20:57:58 +00:00
|
|
|
const char * str;
|
|
|
|
int64_t tmp;
|
|
|
|
benc_val_t top, * list;
|
2007-04-18 16:39:10 +00:00
|
|
|
int ii;
|
|
|
|
struct tor * tor;
|
|
|
|
|
2008-04-18 16:23:59 +00:00
|
|
|
if( tr_bencLoadFile( gl_state, &top ) )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
|
|
|
errmsg( "failed to load bencoded data from %s", gl_state );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( &top, "autostart", &tmp ) )
|
|
|
|
gl_autostart = tmp != 0;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( &top, "port", &tmp ) && ( 0 < tmp ) && ( tmp <= 0xffff ) )
|
|
|
|
gl_port = tmp;
|
2007-04-18 16:39:10 +00:00
|
|
|
tr_setBindPort( gl_handle, gl_port );
|
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( &top, "default-pex", &tmp ) )
|
|
|
|
gl_pex = tmp != 0;
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( &top, "port-mapping", &tmp ) )
|
|
|
|
gl_mapping = tmp != 0;
|
2007-04-18 16:39:10 +00:00
|
|
|
tr_natTraversalEnable( gl_handle, gl_mapping );
|
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( &top, "upload-limit", &tmp ) )
|
|
|
|
gl_uplimit = tmp;
|
2007-07-20 08:33:59 +00:00
|
|
|
tr_setGlobalSpeedLimit( gl_handle, TR_UP, gl_uplimit );
|
|
|
|
tr_setUseGlobalSpeedLimit( gl_handle, TR_UP, gl_uplimit > 0 );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( &top, "download-limit", &tmp ) )
|
|
|
|
gl_downlimit = tmp;
|
2007-07-20 08:33:59 +00:00
|
|
|
tr_setGlobalSpeedLimit( gl_handle, TR_DOWN, gl_downlimit );
|
|
|
|
tr_setUseGlobalSpeedLimit( gl_handle, TR_DOWN, gl_downlimit > 0 );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindStr( &top, "default-directory", &str ) )
|
|
|
|
strlcpy( gl_dir, str, sizeof gl_dir );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindStr( &top, "encryption-mode", &str ) )
|
2007-10-26 03:43:27 +00:00
|
|
|
{
|
2008-04-17 20:57:58 +00:00
|
|
|
if(!strcasecmp( str, "preferred"))
|
2007-10-26 03:43:27 +00:00
|
|
|
gl_crypto = TR_ENCRYPTION_PREFERRED;
|
2008-04-17 20:57:58 +00:00
|
|
|
else if(!strcasecmp( str, "required"))
|
2007-10-26 03:43:27 +00:00
|
|
|
gl_crypto = TR_ENCRYPTION_REQUIRED;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_setEncryptionMode(gl_handle, gl_crypto);
|
|
|
|
|
2007-04-18 16:39:10 +00:00
|
|
|
list = tr_bencDictFind( &top, "torrents" );
|
2008-04-04 17:19:44 +00:00
|
|
|
if( !tr_bencIsList( list ) )
|
2007-04-18 16:39:10 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
for( ii = 0; ii < list->val.l.count; ii++ )
|
|
|
|
{
|
2008-04-17 20:57:58 +00:00
|
|
|
const char * directory = NULL;
|
|
|
|
const char * hash = NULL;
|
|
|
|
|
2008-04-04 17:19:44 +00:00
|
|
|
tr_benc * dict = &list->val.l.vals[ii];
|
|
|
|
if( !tr_bencIsDict( dict ) )
|
2007-04-18 16:39:10 +00:00
|
|
|
continue;
|
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( !tr_bencDictFindStr( dict, "directory", &directory ) ||
|
|
|
|
!tr_bencDictFindStr( dict, "hash", &hash ) )
|
2007-04-18 16:39:10 +00:00
|
|
|
continue;
|
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
tor = opentor( NULL, hash, NULL, 0, directory );
|
2008-04-04 17:19:44 +00:00
|
|
|
if( !tor )
|
2007-04-18 16:39:10 +00:00
|
|
|
continue;
|
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( dict, "pex", &tmp ) )
|
2007-12-24 05:03:40 +00:00
|
|
|
fprintf( stderr, "warning: obsolete command 'pex'\n" );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
2008-04-17 20:57:58 +00:00
|
|
|
if( tr_bencDictFindInt( dict, "paused", &tmp ) && !tmp )
|
2007-04-18 16:39:10 +00:00
|
|
|
tr_torrentStart( tor->tor );
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
savestate( void )
|
|
|
|
{
|
2008-04-18 16:23:59 +00:00
|
|
|
benc_val_t top, * list;
|
2007-04-18 16:39:10 +00:00
|
|
|
struct tor * ii;
|
2008-04-18 16:23:59 +00:00
|
|
|
int torrentCount;
|
|
|
|
|
|
|
|
torrentCount = 0;
|
2007-04-18 16:39:10 +00:00
|
|
|
RB_FOREACH( ii, tortree, &gl_tree )
|
2008-04-18 16:23:59 +00:00
|
|
|
++torrentCount;
|
|
|
|
|
|
|
|
tr_bencInitDict( &top, 9 );
|
|
|
|
tr_bencDictAddInt( &top, "autostart", gl_autostart );
|
|
|
|
tr_bencDictAddInt( &top, "port", gl_port );
|
|
|
|
tr_bencDictAddInt( &top, "default-pex", gl_pex );
|
|
|
|
tr_bencDictAddInt( &top, "port-mapping", gl_mapping );
|
|
|
|
tr_bencDictAddInt( &top, "upload-limit", gl_uplimit );
|
|
|
|
tr_bencDictAddInt( &top, "download-limit", gl_downlimit );
|
|
|
|
tr_bencDictAddStr( &top, "default-directory", gl_dir );
|
|
|
|
tr_bencDictAddStr( &top, "encryption-mode", TR_ENCRYPTION_REQUIRED == gl_crypto
|
|
|
|
? "required" : "preferred" );
|
|
|
|
list = tr_bencDictAddList( &top, "torrents", torrentCount );
|
2007-04-18 16:39:10 +00:00
|
|
|
|
|
|
|
RB_FOREACH( ii, tortree, &gl_tree )
|
|
|
|
{
|
2008-04-18 16:23:59 +00:00
|
|
|
const tr_info * inf = tr_torrentInfo( ii->tor );
|
|
|
|
const tr_stat * st = tr_torrentStat( ii->tor );
|
|
|
|
tr_benc * tor = tr_bencListAddDict( list, 3 );
|
|
|
|
tr_bencDictAddStr( tor, "hash", inf->hashString );
|
|
|
|
tr_bencDictAddInt( tor, "paused", !TR_STATUS_IS_ACTIVE( st->status ) );
|
|
|
|
tr_bencDictAddStr( tor, "directory", tr_torrentGetFolder( ii->tor ) );
|
2007-04-18 16:39:10 +00:00
|
|
|
}
|
|
|
|
|
2008-04-18 16:23:59 +00:00
|
|
|
if( tr_bencSaveFile( gl_newstate, &top ) )
|
2007-04-18 16:39:10 +00:00
|
|
|
{
|
2008-04-18 16:23:59 +00:00
|
|
|
errnomsg( "failed to save state: failed to write to %s", gl_newstate );
|
2007-04-18 16:39:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( 0 > rename( gl_newstate, gl_state ) )
|
|
|
|
{
|
|
|
|
errnomsg( "failed to save state: failed to rename %s to %s",
|
|
|
|
gl_newstate, CONF_FILE_STATE );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|