]> Sergey Matveev's repositories - btrtrc.git/blob - config.go
Add very tentative UPnP NAT traversal
[btrtrc.git] / config.go
1 package torrent
2
3 import (
4         "crypto/tls"
5         "net"
6         "net/http"
7         "time"
8
9         "github.com/anacrolix/dht"
10         "golang.org/x/time/rate"
11
12         "github.com/anacrolix/torrent/iplist"
13         "github.com/anacrolix/torrent/storage"
14 )
15
16 var DefaultHTTPClient = &http.Client{
17         Timeout: time.Second * 15,
18         Transport: &http.Transport{
19                 Dial: (&net.Dialer{
20                         Timeout: 15 * time.Second,
21                 }).Dial,
22                 TLSHandshakeTimeout: 15 * time.Second,
23                 TLSClientConfig:     &tls.Config{InsecureSkipVerify: true},
24         },
25 }
26 var DefaultHTTPUserAgent = "Go-Torrent/1.0"
27
28 // Override Client defaults.
29 type Config struct {
30         // Store torrent file data in this directory unless .DefaultStorage is
31         // specified.
32         DataDir string `long:"data-dir" description:"directory to store downloaded torrent data"`
33         // The address to listen for new uTP and TCP bittorrent protocol
34         // connections. DHT shares a UDP socket with uTP unless configured
35         // otherwise.
36         ListenAddr              string `long:"listen-addr" value-name:"HOST:PORT"`
37         NoDefaultPortForwarding bool
38         // Don't announce to trackers. This only leaves DHT to discover peers.
39         DisableTrackers bool `long:"disable-trackers"`
40         DisablePEX      bool `long:"disable-pex"`
41         // Don't create a DHT.
42         NoDHT bool `long:"disable-dht"`
43         // Overrides the default DHT configuration.
44         DHTConfig dht.ServerConfig
45
46         // Never send chunks to peers.
47         NoUpload bool `long:"no-upload"`
48         // Disable uploading even when it isn't fair.
49         DisableAggressiveUpload bool `long:"disable-aggressive-upload"`
50         // Upload even after there's nothing in it for us. By default uploading is
51         // not altruistic, we'll upload slightly more than we download from each
52         // peer.
53         Seed bool `long:"seed"`
54         // Only applies to chunks uploaded to peers, to maintain responsiveness
55         // communicating local Client state to peers. Each limiter token
56         // represents one byte. The Limiter's burst must be large enough to fit a
57         // whole chunk, which is usually 16 KiB (see TorrentSpec.ChunkSize).
58         UploadRateLimiter *rate.Limiter
59         // Rate limits all reads from connections to peers. Each limiter token
60         // represents one byte. The Limiter's burst must be bigger than the
61         // largest Read performed on a the underlying rate-limiting io.Reader
62         // minus one. This is likely to be the larger of the main read loop buffer
63         // (~4096), and the requested chunk size (~16KiB, see
64         // TorrentSpec.ChunkSize).
65         DownloadRateLimiter *rate.Limiter
66
67         // User-provided Client peer ID. If not present, one is generated automatically.
68         PeerID string
69         // For the bittorrent protocol.
70         DisableUTP bool
71         // For the bittorrent protocol.
72         DisableTCP bool `long:"disable-tcp"`
73         // Called to instantiate storage for each added torrent. Builtin backends
74         // are in the storage package. If not set, the "file" implementation is
75         // used.
76         DefaultStorage storage.ClientImpl
77
78         EncryptionPolicy
79
80         IPBlocklist iplist.Ranger
81         DisableIPv6 bool `long:"disable-ipv6"`
82         // Perform logging and any other behaviour that will help debug.
83         Debug bool `help:"enable debugging"`
84
85         // HTTP client used to query the tracker endpoint. Default is DefaultHTTPClient
86         HTTP *http.Client
87         // HTTPUserAgent changes default UserAgent for HTTP requests
88         HTTPUserAgent string `long:"http-user-agent"`
89         // Updated occasionally to when there's been some changes to client
90         // behaviour in case other clients are assuming anything of us. See also
91         // `bep20`.
92         ExtendedHandshakeClientVersion string // default  "go.torrent dev 20150624"
93         // Peer ID client identifier prefix. We'll update this occasionally to
94         // reflect changes to client behaviour that other clients may depend on.
95         // Also see `extendedHandshakeClientVersion`.
96         Bep20 string // default "-GT0001-"
97
98         NominalDialTimeout         time.Duration // default  time.Second * 30
99         MinDialTimeout             time.Duration // default  5 * time.Second
100         EstablishedConnsPerTorrent int           // default 80
101         HalfOpenConnsPerTorrent    int           // default  80
102         TorrentPeersHighWater      int           // default 200
103         TorrentPeersLowWater       int           // default 50
104
105         // Limit how long handshake can take. This is to reduce the lingering
106         // impact of a few bad apples. 4s loses 1% of successful handshakes that
107         // are obtained with 60s timeout, and 5% of unsuccessful handshakes.
108         HandshakesTimeout time.Duration // default  20 * time.Second
109 }
110
111 func (cfg *Config) setDefaults() {
112         if cfg.HTTP == nil {
113                 cfg.HTTP = DefaultHTTPClient
114         }
115         if cfg.HTTPUserAgent == "" {
116                 cfg.HTTPUserAgent = DefaultHTTPUserAgent
117         }
118         if cfg.ExtendedHandshakeClientVersion == "" {
119                 cfg.ExtendedHandshakeClientVersion = "go.torrent dev 20150624"
120         }
121         if cfg.Bep20 == "" {
122                 cfg.Bep20 = "-GT0001-"
123         }
124         if cfg.NominalDialTimeout == 0 {
125                 cfg.NominalDialTimeout = 30 * time.Second
126         }
127         if cfg.MinDialTimeout == 0 {
128                 cfg.MinDialTimeout = 5 * time.Second
129         }
130         if cfg.EstablishedConnsPerTorrent == 0 {
131                 cfg.EstablishedConnsPerTorrent = 80
132         }
133         if cfg.HalfOpenConnsPerTorrent == 0 {
134                 cfg.HalfOpenConnsPerTorrent = 80
135         }
136         if cfg.TorrentPeersHighWater == 0 {
137                 cfg.TorrentPeersHighWater = 200
138         }
139         if cfg.TorrentPeersLowWater == 0 {
140                 cfg.TorrentPeersLowWater = 50
141         }
142         if cfg.HandshakesTimeout == 0 {
143                 cfg.HandshakesTimeout = 20 * time.Second
144         }
145 }
146
147 type EncryptionPolicy struct {
148         DisableEncryption  bool
149         ForceEncryption    bool // Don't allow unobfuscated connections.
150         PreferNoEncryption bool
151 }