2009-06-06 17:39:04 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2008-2014 Mnemosyne LLC
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-06-06 17:39:04 +00:00
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2007-07-29 18:11:21 +00:00
|
|
|
#define TR_NAME "Transmission"
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2011-03-31 14:53:22 +00:00
|
|
|
#include "bandwidth.h"
|
2010-03-10 22:19:31 +00:00
|
|
|
#include "bitfield.h"
|
2015-03-18 07:34:26 +00:00
|
|
|
#include "net.h"
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "tr-macros.h"
|
2010-07-04 06:07:21 +00:00
|
|
|
#include "utils.h"
|
2012-12-14 04:34:42 +00:00
|
|
|
#include "variant.h"
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
TR_BEGIN_DECLS
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TR_NET_OK,
|
|
|
|
TR_NET_ERROR,
|
|
|
|
TR_NET_WAIT
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_tristate_t;
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2012-09-18 00:58:10 +00:00
|
|
|
TR_AUTO_SWITCH_UNUSED,
|
|
|
|
TR_AUTO_SWITCH_ON,
|
|
|
|
TR_AUTO_SWITCH_OFF,
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_auto_switch_state_t;
|
2012-09-18 00:58:10 +00:00
|
|
|
|
2011-03-10 12:35:23 +00:00
|
|
|
enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
PEER_ID_LEN = 20
|
2011-03-10 12:35:23 +00:00
|
|
|
};
|
2008-01-07 06:19:34 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_peerIdInit(uint8_t* setme);
|
2007-07-16 11:19:44 +00:00
|
|
|
|
2010-12-24 08:58:41 +00:00
|
|
|
struct event_base;
|
2011-03-13 00:18:11 +00:00
|
|
|
struct evdns_base;
|
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
struct tr_address;
|
2009-09-25 21:05:59 +00:00
|
|
|
struct tr_announcer;
|
2011-03-13 00:18:11 +00:00
|
|
|
struct tr_announcer_udp;
|
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;
|
2013-02-09 04:05:03 +00:00
|
|
|
struct tr_device_info;
|
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 */
|
2012-07-01 02:17:35 +00:00
|
|
|
unsigned int speedLimit_Bps[2];
|
2010-02-04 23:39:50 +00:00
|
|
|
|
|
|
|
/* is turtle mode on right now? */
|
2011-03-22 15:19:54 +00:00
|
|
|
bool isEnabled;
|
2010-02-04 23:39:50 +00:00
|
|
|
|
|
|
|
/* does turtle mode turn itself on and off at given times? */
|
2011-03-22 15:19:54 +00:00
|
|
|
bool isClockEnabled;
|
2010-02-04 23:39:50 +00:00
|
|
|
|
|
|
|
/* 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 */
|
2013-09-08 17:08:18 +00:00
|
|
|
tr_altSpeedFunc callback;
|
2010-02-04 23:39:50 +00:00
|
|
|
|
|
|
|
/* the callback's user_data argument */
|
2017-04-19 12:04:45 +00:00
|
|
|
void* callbackUserData;
|
2010-02-04 23:39:50 +00:00
|
|
|
|
|
|
|
/* the callback's changedByUser argument.
|
|
|
|
* indicates whether the change came from the user or from the clock. */
|
2011-03-22 15:19:54 +00:00
|
|
|
bool changedByUser;
|
2010-02-04 23:39:50 +00:00
|
|
|
|
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;
|
2012-09-18 00:58:10 +00:00
|
|
|
|
|
|
|
/* recent action that was done by turtle's automatic switch */
|
|
|
|
tr_auto_switch_state_t autoTurtleState;
|
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
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
bool isPortRandom;
|
|
|
|
bool isPexEnabled;
|
|
|
|
bool isDHTEnabled;
|
|
|
|
bool isUTPEnabled;
|
|
|
|
bool isLPDEnabled;
|
|
|
|
bool isBlocklistEnabled;
|
|
|
|
bool isPrefetchEnabled;
|
|
|
|
bool isTorrentDoneScriptEnabled;
|
|
|
|
bool isClosing;
|
|
|
|
bool isClosed;
|
|
|
|
bool isIncompleteFileNamingEnabled;
|
|
|
|
bool isRatioLimited;
|
|
|
|
bool isIdleLimited;
|
|
|
|
bool isIncompleteDirEnabled;
|
|
|
|
bool pauseAddedTorrent;
|
|
|
|
bool deleteSourceTorrent;
|
|
|
|
bool scrapePausedTorrents;
|
|
|
|
|
|
|
|
uint8_t peer_id_ttl_hours;
|
|
|
|
|
|
|
|
tr_variant removedTorrents;
|
|
|
|
|
|
|
|
bool stalledEnabled;
|
|
|
|
bool queueEnabled[2];
|
|
|
|
int queueSize[2];
|
|
|
|
int queueStalledMinutes;
|
|
|
|
|
|
|
|
int umask;
|
2013-02-02 13:42:50 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
unsigned int speedLimit_Bps[2];
|
|
|
|
bool speedLimitEnabled[2];
|
2009-03-28 16:47:01 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_turtle_info turtle;
|
2009-03-25 19:18:00 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_fdInfo* fdInfo;
|
2009-03-25 19:18:00 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int magicNumber;
|
2008-12-13 22:52:15 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_encryption_mode encryptionMode;
|
2008-04-05 16:49:26 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_preallocation_mode preallocationMode;
|
2009-01-16 16:38:16 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct event_base* event_base;
|
|
|
|
struct evdns_base* evdns_base;
|
|
|
|
struct tr_event_handle* events;
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
uint16_t peerLimit;
|
|
|
|
uint16_t peerLimitPerTorrent;
|
2008-12-13 23:17:36 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int uploadSlotsPerTorrent;
|
2009-01-09 15:45:44 +00:00
|
|
|
|
2011-01-09 21:48:36 +00:00
|
|
|
/* The UDP sockets used for the DHT and uTP. */
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_port udp_port;
|
|
|
|
tr_socket_t udp_socket;
|
|
|
|
tr_socket_t udp6_socket;
|
|
|
|
unsigned char* udp6_bound;
|
|
|
|
struct event* udp_event;
|
|
|
|
struct event* udp6_event;
|
2011-01-09 21:48:36 +00:00
|
|
|
|
2017-07-02 10:31:33 +00:00
|
|
|
struct event* utp_timer;
|
|
|
|
|
2010-07-05 21:04:17 +00:00
|
|
|
/* The open port on the local machine for incoming peer requests */
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_port private_peer_port;
|
2010-07-05 21:04:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The open port on the public device for incoming peer requests.
|
|
|
|
* This is usually the same as private_peer_port but can differ
|
|
|
|
* if the public device is a router and it decides to use a different
|
|
|
|
* port than the one requested by Transmission.
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_port public_peer_port;
|
2010-07-05 21:04:17 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_port randomPortLow;
|
|
|
|
tr_port randomPortHigh;
|
2008-12-13 23:17:36 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int peerSocketTOS;
|
|
|
|
char* peer_congestion_algorithm;
|
2007-08-18 03:02:32 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int torrentCount;
|
|
|
|
tr_torrent* torrentList;
|
2008-04-12 00:29:49 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
char* torrentDoneScript;
|
2010-05-08 22:42:28 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
char* configDir;
|
|
|
|
char* resumeDir;
|
|
|
|
char* torrentDir;
|
|
|
|
char* incompleteDir;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
char* blocklist_url;
|
2010-10-31 17:16:12 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_device_info* downloadDir;
|
2013-02-09 04:05:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_list* blocklists;
|
|
|
|
struct tr_peerMgr* peerMgr;
|
|
|
|
struct tr_shared* shared;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_cache* cache;
|
2010-06-19 14:25:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_lock* lock;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_web* web;
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_session_id* session_id;
|
|
|
|
struct tr_rpc_server* rpcServer;
|
|
|
|
tr_rpc_func rpc_func;
|
|
|
|
void* rpc_func_user_data;
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_stats_handle* sessionStats;
|
2009-09-25 21:05:59 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_announcer* announcer;
|
|
|
|
struct tr_announcer_udp* announcer_udp;
|
2007-02-06 04:26:40 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_variant* metainfoLookup;
|
2008-11-06 02:56:51 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct event* nowTimer;
|
|
|
|
struct event* saveTimer;
|
2009-03-25 19:18:00 +00:00
|
|
|
|
2008-11-24 04:21:23 +00:00
|
|
|
/* monitors the "global pool" speeds */
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_bandwidth bandwidth;
|
2009-02-13 18:23:56 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
float desiredRatio;
|
2010-12-12 16:43:19 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
uint16_t idleLimitMinutes;
|
2009-05-14 13:42:29 +00:00
|
|
|
|
2021-05-19 20:45:03 +00:00
|
|
|
struct tr_bindinfo* bind_ipv4;
|
|
|
|
struct tr_bindinfo* bind_ipv6;
|
2006-07-16 19:39:23 +00:00
|
|
|
};
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static inline tr_port tr_sessionGetPublicPeerPort(tr_session const* session)
|
2010-07-05 21:04:17 +00:00
|
|
|
{
|
|
|
|
return session->public_peer_port;
|
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sessionAllowsDHT(tr_session const* session);
|
2010-05-01 16:04:00 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sessionAllowsLPD(tr_session const* session);
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
char const* tr_sessionFindTorrentFile(tr_session const* session, char const* hashString);
|
2008-04-24 01:42:53 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
void tr_sessionSetTorrentFile(tr_session* session, char const* hashString, char const* filename);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sessionIsAddressBlocked(tr_session const* session, struct tr_address const* addr);
|
2008-06-11 16:15:45 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_sessionLock(tr_session*);
|
2008-06-11 16:15:45 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_sessionUnlock(tr_session*);
|
2009-04-15 21:10:50 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sessionIsLocked(tr_session const*);
|
2010-12-30 19:15:47 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
struct tr_address const* tr_sessionGetPublicAddress(tr_session const* session, int tr_af_type, bool* is_default_value);
|
2009-05-14 13:42:29 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_bindsockets* tr_sessionGetBindSockets(tr_session*);
|
2009-05-14 13:42:29 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
int tr_sessionCountTorrents(tr_session const* session);
|
2010-04-29 23:08:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_torrent** tr_sessionGetTorrents(tr_session* session, int* setme_n);
|
2013-07-20 15:37:13 +00:00
|
|
|
|
2009-01-29 16:56:43 +00:00
|
|
|
enum
|
|
|
|
{
|
2010-02-23 07:20:57 +00:00
|
|
|
SESSION_MAGIC_NUMBER = 3845,
|
2009-01-29 16:56:43 +00:00
|
|
|
};
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static inline bool tr_isSession(tr_session const* session)
|
2009-01-29 16:56:43 +00:00
|
|
|
{
|
2017-04-30 16:25:26 +00:00
|
|
|
return session != NULL && session->magicNumber == SESSION_MAGIC_NUMBER;
|
2009-01-29 16:56:43 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static inline bool tr_isPreallocationMode(tr_preallocation_mode m)
|
2009-05-29 19:17:12 +00:00
|
|
|
{
|
2017-04-30 16:25:26 +00:00
|
|
|
return m == TR_PREALLOCATE_NONE || m == TR_PREALLOCATE_SPARSE || m == TR_PREALLOCATE_FULL;
|
2009-05-29 19:17:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static inline bool tr_isEncryptionMode(tr_encryption_mode m)
|
2009-05-29 19:17:12 +00:00
|
|
|
{
|
2017-04-30 16:25:26 +00:00
|
|
|
return m == TR_CLEAR_PREFERRED || m == TR_ENCRYPTION_PREFERRED || m == TR_ENCRYPTION_REQUIRED;
|
2009-05-29 19:17:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static inline bool tr_isPriority(tr_priority_t p)
|
2009-05-29 19:17:12 +00:00
|
|
|
{
|
2017-04-30 16:25:26 +00:00
|
|
|
return p == TR_PRI_LOW || p == TR_PRI_NORMAL || p == TR_PRI_HIGH;
|
2009-05-29 19:17:12 +00:00
|
|
|
}
|
|
|
|
|
2010-07-04 06:07:21 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static inline unsigned int toSpeedBytes(unsigned int KBps)
|
|
|
|
{
|
|
|
|
return KBps * tr_speed_K;
|
|
|
|
}
|
2010-07-04 06:07:21 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static inline double toSpeedKBps(unsigned int Bps)
|
|
|
|
{
|
|
|
|
return Bps / (double)tr_speed_K;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint64_t toMemBytes(unsigned int MB)
|
|
|
|
{
|
2017-05-20 20:31:56 +00:00
|
|
|
uint64_t B = (uint64_t)tr_mem_K * tr_mem_K;
|
2017-04-19 12:04:45 +00:00
|
|
|
B *= MB;
|
|
|
|
return B;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int toMemMB(uint64_t B)
|
|
|
|
{
|
|
|
|
return (int)(B / (tr_mem_K * tr_mem_K));
|
|
|
|
}
|
2010-07-04 06:07:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
**/
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
unsigned int tr_sessionGetSpeedLimit_Bps(tr_session const*, tr_direction);
|
|
|
|
unsigned int tr_sessionGetAltSpeed_Bps(tr_session const*, tr_direction);
|
|
|
|
unsigned int tr_sessionGetRawSpeed_Bps(tr_session const*, tr_direction);
|
|
|
|
unsigned int tr_sessionGetPieceSpeed_Bps(tr_session const*, tr_direction);
|
2010-07-04 06:07:21 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_sessionSetSpeedLimit_Bps(tr_session*, tr_direction, unsigned int Bps);
|
|
|
|
void tr_sessionSetAltSpeed_Bps(tr_session*, tr_direction, unsigned int Bps);
|
2010-07-04 06:07:21 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sessionGetActiveSpeedLimit_Bps(tr_session const* session, tr_direction dir, unsigned int* setme);
|
2011-08-01 22:24:24 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_sessionGetNextQueuedTorrents(tr_session* session, tr_direction dir, size_t numwanted, tr_ptrArray* setme);
|
2011-08-01 22:24:24 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_sessionCountQueueFreeSlots(tr_session* session, tr_direction);
|
2020-08-11 18:11:55 +00:00
|
|
|
|
|
|
|
TR_END_DECLS
|