2009-06-06 17:39:04 +00:00
|
|
|
/*
|
2010-01-04 21:00:47 +00:00
|
|
|
* This file Copyright (C) 2008-2010 Mnemosyne LLC
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-06-06 17:39:04 +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)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-06-06 17:39:04 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2009-06-06 17:39:04 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#ifndef TR_INTERNAL_H
|
|
|
|
#define TR_INTERNAL_H 1
|
|
|
|
|
2007-07-29 18:11:21 +00:00
|
|
|
#define TR_NAME "Transmission"
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
#ifndef UNUSED
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define UNUSED __attribute__ ( ( unused ) )
|
|
|
|
#else
|
|
|
|
#define UNUSED
|
|
|
|
#endif
|
|
|
|
#endif
|
2007-07-31 14:26:44 +00:00
|
|
|
|
2009-04-04 05:29:08 +00:00
|
|
|
#include "bencode.h"
|
2010-03-10 22:19:31 +00:00
|
|
|
#include "bitfield.h"
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
typedef enum { TR_NET_OK, TR_NET_ERROR, TR_NET_WAIT } tr_tristate_t;
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
uint8_t* tr_peerIdNew( void );
|
2008-01-07 06:19:34 +00:00
|
|
|
|
|
|
|
const uint8_t* tr_getPeerId( void );
|
2007-07-16 11:19:44 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
struct tr_address;
|
2009-09-25 21:05:59 +00:00
|
|
|
struct tr_announcer;
|
2008-11-24 04:21:23 +00:00
|
|
|
struct tr_bandwidth;
|
2009-05-14 13:42:29 +00:00
|
|
|
struct tr_bindsockets;
|
2010-06-19 14:25:11 +00:00
|
|
|
struct tr_cache;
|
2009-10-23 03:41:36 +00:00
|
|
|
struct tr_fdInfo;
|
2008-11-06 02:56:51 +00:00
|
|
|
|
2010-02-04 23:39:50 +00:00
|
|
|
struct tr_turtle_info
|
|
|
|
{
|
|
|
|
/* TR_UP and TR_DOWN speed limits */
|
|
|
|
int speedLimit[2];
|
|
|
|
|
|
|
|
/* is turtle mode on right now? */
|
|
|
|
tr_bool isEnabled;
|
|
|
|
|
|
|
|
/* does turtle mode turn itself on and off at given times? */
|
|
|
|
tr_bool isClockEnabled;
|
|
|
|
|
|
|
|
/* when clock mode is on, minutes after midnight to turn on turtle mode */
|
|
|
|
int beginMinute;
|
|
|
|
|
|
|
|
/* when clock mode is on, minutes after midnight to turn off turtle mode */
|
|
|
|
int endMinute;
|
|
|
|
|
|
|
|
/* only use clock mode on these days of the week */
|
|
|
|
tr_sched_day days;
|
|
|
|
|
|
|
|
/* called when isEnabled changes */
|
|
|
|
tr_altSpeedFunc * callback;
|
|
|
|
|
|
|
|
/* the callback's user_data argument */
|
|
|
|
void * callbackUserData;
|
|
|
|
|
|
|
|
/* the callback's changedByUser argument.
|
|
|
|
* indicates whether the change came from the user or from the clock. */
|
|
|
|
tr_bool changedByUser;
|
|
|
|
|
2010-03-12 19:35:28 +00:00
|
|
|
/* bitfield of all the minutes in a week.
|
|
|
|
* Each bit's value indicates whether the scheduler wants turtle
|
|
|
|
* limits on or off at that given minute in the week. */
|
2010-03-10 22:19:31 +00:00
|
|
|
tr_bitfield minutes;
|
2010-02-04 23:39:50 +00:00
|
|
|
};
|
|
|
|
|
2010-01-06 00:18:33 +00:00
|
|
|
/** @brief handle to an active libtransmission session */
|
2008-12-22 19:14:43 +00:00
|
|
|
struct tr_session
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2008-12-13 23:17:36 +00:00
|
|
|
tr_bool isPortRandom;
|
2008-11-28 22:11:41 +00:00
|
|
|
tr_bool isPexEnabled;
|
2009-05-19 18:38:26 +00:00
|
|
|
tr_bool isDHTEnabled;
|
2010-05-08 08:42:45 +00:00
|
|
|
tr_bool isLPDEnabled;
|
2008-11-28 22:11:41 +00:00
|
|
|
tr_bool isBlocklistEnabled;
|
|
|
|
tr_bool isProxyEnabled;
|
|
|
|
tr_bool isProxyAuthEnabled;
|
2010-05-08 22:42:28 +00:00
|
|
|
tr_bool isTorrentDoneScriptEnabled;
|
2008-11-28 22:11:41 +00:00
|
|
|
tr_bool isClosed;
|
|
|
|
tr_bool useLazyBitfield;
|
2009-10-20 04:43:51 +00:00
|
|
|
tr_bool isIncompleteFileNamingEnabled;
|
2009-02-13 18:23:56 +00:00
|
|
|
tr_bool isRatioLimited;
|
2009-10-19 05:05:00 +00:00
|
|
|
tr_bool isIncompleteDirEnabled;
|
2010-03-17 19:23:03 +00:00
|
|
|
tr_bool pauseAddedTorrent;
|
|
|
|
tr_bool deleteSourceTorrent;
|
2008-04-14 14:39:13 +00:00
|
|
|
|
2009-04-04 05:29:08 +00:00
|
|
|
tr_benc removedTorrents;
|
2009-08-12 14:40:32 +00:00
|
|
|
|
2009-07-02 02:37:49 +00:00
|
|
|
int umask;
|
|
|
|
|
2008-12-13 22:52:15 +00:00
|
|
|
int speedLimit[2];
|
2009-03-28 16:47:01 +00:00
|
|
|
tr_bool speedLimitEnabled[2];
|
|
|
|
|
2010-02-04 23:39:50 +00:00
|
|
|
struct tr_turtle_info turtle;
|
2009-03-25 19:18:00 +00:00
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
struct tr_fdInfo * fdInfo;
|
2009-03-25 19:18:00 +00:00
|
|
|
|
2009-01-29 16:56:43 +00:00
|
|
|
int magicNumber;
|
2008-12-13 22:52:15 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
tr_encryption_mode encryptionMode;
|
2008-04-05 16:49:26 +00:00
|
|
|
|
2009-01-16 16:38:16 +00:00
|
|
|
tr_preallocation_mode preallocationMode;
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
struct tr_event_handle * events;
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-12-13 23:17:36 +00:00
|
|
|
uint16_t peerLimitPerTorrent;
|
|
|
|
|
2009-01-09 15:45:44 +00:00
|
|
|
int uploadSlotsPerTorrent;
|
|
|
|
|
2008-12-13 23:17:36 +00:00
|
|
|
tr_port peerPort;
|
|
|
|
tr_port randomPortLow;
|
|
|
|
tr_port randomPortHigh;
|
|
|
|
|
2008-07-15 01:03:03 +00:00
|
|
|
int proxyPort;
|
2008-04-14 14:39:13 +00:00
|
|
|
int peerSocketTOS;
|
2010-04-22 01:49:16 +00:00
|
|
|
char * peer_congestion_algorithm;
|
2007-08-18 03:02:32 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
int torrentCount;
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent * torrentList;
|
2008-04-12 00:29:49 +00:00
|
|
|
|
2010-05-08 22:42:28 +00:00
|
|
|
char * torrentDoneScript;
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
char * tag;
|
|
|
|
char * configDir;
|
|
|
|
char * downloadDir;
|
|
|
|
char * resumeDir;
|
|
|
|
char * torrentDir;
|
2009-10-19 05:05:00 +00:00
|
|
|
char * incompleteDir;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2008-06-11 20:45:53 +00:00
|
|
|
tr_proxy_type proxyType;
|
2008-09-23 19:11:04 +00:00
|
|
|
char * proxy;
|
|
|
|
char * proxyUsername;
|
|
|
|
char * proxyPassword;
|
2008-06-10 16:16:31 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
struct tr_list * blocklists;
|
|
|
|
struct tr_peerMgr * peerMgr;
|
|
|
|
struct tr_shared * shared;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2010-06-19 14:25:11 +00:00
|
|
|
struct tr_cache * cache;
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
struct tr_lock * lock;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
struct tr_web * web;
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
struct tr_rpc_server * rpcServer;
|
2008-05-19 00:12:31 +00:00
|
|
|
tr_rpc_func rpc_func;
|
2008-09-23 19:11:04 +00:00
|
|
|
void * rpc_func_user_data;
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2009-06-09 21:57:11 +00:00
|
|
|
struct tr_stats_handle * sessionStats;
|
2009-09-25 21:05:59 +00:00
|
|
|
|
|
|
|
struct tr_announcer * announcer;
|
2007-02-06 04:26:40 +00:00
|
|
|
|
2009-06-09 21:57:11 +00:00
|
|
|
tr_benc * metainfoLookup;
|
2008-11-06 02:56:51 +00:00
|
|
|
|
2009-11-26 18:47:08 +00:00
|
|
|
struct event * nowTimer;
|
2009-08-13 14:47:56 +00:00
|
|
|
struct event * saveTimer;
|
2009-03-25 19:18:00 +00:00
|
|
|
|
2008-11-24 04:21:23 +00:00
|
|
|
/* monitors the "global pool" speeds */
|
2009-02-13 18:23:56 +00:00
|
|
|
struct tr_bandwidth * bandwidth;
|
|
|
|
|
|
|
|
double desiredRatio;
|
2009-05-14 13:42:29 +00:00
|
|
|
|
|
|
|
struct tr_bindinfo * public_ipv4;
|
|
|
|
struct tr_bindinfo * public_ipv6;
|
2010-02-23 07:20:57 +00:00
|
|
|
|
|
|
|
/* a page-aligned buffer for use by the libtransmission thread.
|
|
|
|
* @see SESSION_BUFFER_SIZE */
|
|
|
|
void * buffer;
|
|
|
|
|
|
|
|
tr_bool bufferInUse;
|
2006-07-16 19:39:23 +00:00
|
|
|
};
|
|
|
|
|
2009-06-21 08:57:26 +00:00
|
|
|
tr_bool tr_sessionAllowsDHT( const tr_session * session );
|
|
|
|
|
2010-05-08 08:42:45 +00:00
|
|
|
tr_bool tr_sessionAllowsLPD( const tr_session * session );
|
2010-05-01 16:04:00 +00:00
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
const char * tr_sessionFindTorrentFile( const tr_session * session,
|
2008-09-23 19:11:04 +00:00
|
|
|
const char * hashString );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_sessionSetTorrentFile( tr_session * session,
|
|
|
|
const char * hashString,
|
|
|
|
const char * filename );
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2008-12-03 07:10:09 +00:00
|
|
|
tr_bool tr_sessionIsAddressBlocked( const tr_session * session,
|
2008-12-02 03:41:58 +00:00
|
|
|
const struct tr_address * addr );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2010-01-04 09:05:02 +00:00
|
|
|
void tr_sessionLock( tr_session * );
|
2008-06-11 16:15:45 +00:00
|
|
|
|
2010-01-04 09:05:02 +00:00
|
|
|
void tr_sessionUnlock( tr_session * );
|
2008-06-11 16:15:45 +00:00
|
|
|
|
2010-01-04 09:05:02 +00:00
|
|
|
tr_bool tr_sessionIsLocked( const tr_session * );
|
2009-04-15 21:10:50 +00:00
|
|
|
|
2009-05-14 13:42:29 +00:00
|
|
|
const struct tr_address* tr_sessionGetPublicAddress( const tr_session *, int tr_af_type );
|
|
|
|
|
|
|
|
struct tr_bindsockets * tr_sessionGetBindSockets( tr_session * );
|
|
|
|
|
2010-04-29 23:08:11 +00:00
|
|
|
int tr_sessionCountTorrents( const tr_session * session );
|
|
|
|
|
2009-01-29 16:56:43 +00:00
|
|
|
enum
|
|
|
|
{
|
2010-02-23 07:20:57 +00:00
|
|
|
SESSION_MAGIC_NUMBER = 3845,
|
|
|
|
|
|
|
|
/* @see tr_session.buffer */
|
|
|
|
SESSION_BUFFER_SIZE = (16*1024)
|
2009-01-29 16:56:43 +00:00
|
|
|
};
|
|
|
|
|
2010-02-23 07:20:57 +00:00
|
|
|
void* tr_sessionGetBuffer( tr_session * session );
|
|
|
|
|
|
|
|
void tr_sessionReleaseBuffer( tr_session * session );
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_isSession( const tr_session * session )
|
2009-01-29 16:56:43 +00:00
|
|
|
{
|
|
|
|
return ( session != NULL ) && ( session->magicNumber == SESSION_MAGIC_NUMBER );
|
|
|
|
}
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_isPreallocationMode( tr_preallocation_mode m )
|
2009-05-29 19:17:12 +00:00
|
|
|
{
|
|
|
|
return ( m == TR_PREALLOCATE_NONE )
|
|
|
|
|| ( m == TR_PREALLOCATE_SPARSE )
|
|
|
|
|| ( m == TR_PREALLOCATE_FULL );
|
|
|
|
}
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_isEncryptionMode( tr_encryption_mode m )
|
2009-05-29 19:17:12 +00:00
|
|
|
{
|
|
|
|
return ( m == TR_CLEAR_PREFERRED )
|
|
|
|
|| ( m == TR_ENCRYPTION_PREFERRED )
|
|
|
|
|| ( m == TR_ENCRYPTION_REQUIRED );
|
|
|
|
}
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_isPriority( tr_priority_t p )
|
2009-05-29 19:17:12 +00:00
|
|
|
{
|
|
|
|
return ( p == TR_PRI_LOW )
|
|
|
|
|| ( p == TR_PRI_NORMAL )
|
|
|
|
|| ( p == TR_PRI_HIGH );
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|