]> Sergey Matveev's repositories - btrtrc.git/blob - client.go
Fix addrPortOrZero for unix sockets on Windows
[btrtrc.git] / client.go
1 package torrent
2
3 import (
4         "bufio"
5         "context"
6         "crypto/rand"
7         "crypto/sha1"
8         "encoding/binary"
9         "encoding/hex"
10         "errors"
11         "expvar"
12         "fmt"
13         "io"
14         "math"
15         "net"
16         "net/http"
17         "net/netip"
18         "sort"
19         "strconv"
20         "time"
21
22         "github.com/anacrolix/chansync"
23         "github.com/anacrolix/chansync/events"
24         "github.com/anacrolix/dht/v2"
25         "github.com/anacrolix/dht/v2/krpc"
26         . "github.com/anacrolix/generics"
27         g "github.com/anacrolix/generics"
28         "github.com/anacrolix/log"
29         "github.com/anacrolix/missinggo/perf"
30         "github.com/anacrolix/missinggo/v2"
31         "github.com/anacrolix/missinggo/v2/bitmap"
32         "github.com/anacrolix/missinggo/v2/pproffd"
33         "github.com/anacrolix/sync"
34         "github.com/davecgh/go-spew/spew"
35         "github.com/dustin/go-humanize"
36         gbtree "github.com/google/btree"
37         "github.com/pion/datachannel"
38
39         "github.com/anacrolix/torrent/bencode"
40         "github.com/anacrolix/torrent/internal/check"
41         "github.com/anacrolix/torrent/internal/limiter"
42         "github.com/anacrolix/torrent/iplist"
43         "github.com/anacrolix/torrent/metainfo"
44         "github.com/anacrolix/torrent/mse"
45         pp "github.com/anacrolix/torrent/peer_protocol"
46         utHolepunch "github.com/anacrolix/torrent/peer_protocol/ut-holepunch"
47         request_strategy "github.com/anacrolix/torrent/request-strategy"
48         "github.com/anacrolix/torrent/storage"
49         "github.com/anacrolix/torrent/tracker"
50         "github.com/anacrolix/torrent/types/infohash"
51         "github.com/anacrolix/torrent/webtorrent"
52 )
53
54 // Clients contain zero or more Torrents. A Client manages a blocklist, the
55 // TCP/UDP protocol ports, and DHT as desired.
56 type Client struct {
57         // An aggregate of stats over all connections. First in struct to ensure 64-bit alignment of
58         // fields. See #262.
59         connStats ConnStats
60
61         _mu    lockWithDeferreds
62         event  sync.Cond
63         closed chansync.SetOnce
64
65         config *ClientConfig
66         logger log.Logger
67
68         peerID         PeerID
69         defaultStorage *storage.Client
70         onClose        []func()
71         dialers        []Dialer
72         listeners      []Listener
73         dhtServers     []DhtServer
74         ipBlockList    iplist.Ranger
75
76         // Set of addresses that have our client ID. This intentionally will
77         // include ourselves if we end up trying to connect to our own address
78         // through legitimate channels.
79         dopplegangerAddrs map[string]struct{}
80         badPeerIPs        map[netip.Addr]struct{}
81         torrents          map[InfoHash]*Torrent
82         pieceRequestOrder map[interface{}]*request_strategy.PieceRequestOrder
83
84         acceptLimiter map[ipStr]int
85         numHalfOpen   int
86
87         websocketTrackers websocketTrackers
88
89         activeAnnounceLimiter limiter.Instance
90         httpClient            *http.Client
91
92         clientHolepunchAddrSets
93 }
94
95 type ipStr string
96
97 func (cl *Client) BadPeerIPs() (ips []string) {
98         cl.rLock()
99         ips = cl.badPeerIPsLocked()
100         cl.rUnlock()
101         return
102 }
103
104 func (cl *Client) badPeerIPsLocked() (ips []string) {
105         ips = make([]string, len(cl.badPeerIPs))
106         i := 0
107         for k := range cl.badPeerIPs {
108                 ips[i] = k.String()
109                 i += 1
110         }
111         return
112 }
113
114 func (cl *Client) PeerID() PeerID {
115         return cl.peerID
116 }
117
118 // Returns the port number for the first listener that has one. No longer assumes that all port
119 // numbers are the same, due to support for custom listeners. Returns zero if no port number is
120 // found.
121 func (cl *Client) LocalPort() (port int) {
122         for i := 0; i < len(cl.listeners); i += 1 {
123                 if port = addrPortOrZero(cl.listeners[i].Addr()); port != 0 {
124                         return
125                 }
126         }
127         return
128 }
129
130 func writeDhtServerStatus(w io.Writer, s DhtServer) {
131         dhtStats := s.Stats()
132         fmt.Fprintf(w, " ID: %x\n", s.ID())
133         spew.Fdump(w, dhtStats)
134 }
135
136 // Writes out a human readable status of the client, such as for writing to a
137 // HTTP status page.
138 func (cl *Client) WriteStatus(_w io.Writer) {
139         cl.rLock()
140         defer cl.rUnlock()
141         w := bufio.NewWriter(_w)
142         defer w.Flush()
143         fmt.Fprintf(w, "Listen port: %d\n", cl.LocalPort())
144         fmt.Fprintf(w, "Peer ID: %+q\n", cl.PeerID())
145         fmt.Fprintf(w, "Extension bits: %v\n", cl.config.Extensions)
146         fmt.Fprintf(w, "Announce key: %x\n", cl.announceKey())
147         fmt.Fprintf(w, "Banned IPs: %d\n", len(cl.badPeerIPsLocked()))
148         cl.eachDhtServer(func(s DhtServer) {
149                 fmt.Fprintf(w, "%s DHT server at %s:\n", s.Addr().Network(), s.Addr().String())
150                 writeDhtServerStatus(w, s)
151         })
152         dumpStats(w, cl.statsLocked())
153         torrentsSlice := cl.torrentsAsSlice()
154         fmt.Fprintf(w, "# Torrents: %d\n", len(torrentsSlice))
155         fmt.Fprintln(w)
156         sort.Slice(torrentsSlice, func(l, r int) bool {
157                 return torrentsSlice[l].infoHash.AsString() < torrentsSlice[r].infoHash.AsString()
158         })
159         for _, t := range torrentsSlice {
160                 if t.name() == "" {
161                         fmt.Fprint(w, "<unknown name>")
162                 } else {
163                         fmt.Fprint(w, t.name())
164                 }
165                 fmt.Fprint(w, "\n")
166                 if t.info != nil {
167                         fmt.Fprintf(
168                                 w,
169                                 "%f%% of %d bytes (%s)",
170                                 100*(1-float64(t.bytesMissingLocked())/float64(t.info.TotalLength())),
171                                 t.length(),
172                                 humanize.Bytes(uint64(t.length())))
173                 } else {
174                         w.WriteString("<missing metainfo>")
175                 }
176                 fmt.Fprint(w, "\n")
177                 t.writeStatus(w)
178                 fmt.Fprintln(w)
179         }
180 }
181
182 func (cl *Client) initLogger() {
183         logger := cl.config.Logger
184         if logger.IsZero() {
185                 logger = log.Default
186         }
187         if cl.config.Debug {
188                 logger = logger.FilterLevel(log.Debug)
189         }
190         cl.logger = logger.WithValues(cl)
191 }
192
193 func (cl *Client) announceKey() int32 {
194         return int32(binary.BigEndian.Uint32(cl.peerID[16:20]))
195 }
196
197 // Initializes a bare minimum Client. *Client and *ClientConfig must not be nil.
198 func (cl *Client) init(cfg *ClientConfig) {
199         cl.config = cfg
200         g.MakeMap(&cl.dopplegangerAddrs)
201         cl.torrents = make(map[metainfo.Hash]*Torrent)
202         cl.activeAnnounceLimiter.SlotsPerKey = 2
203         cl.event.L = cl.locker()
204         cl.ipBlockList = cfg.IPBlocklist
205         cl.httpClient = &http.Client{
206                 Transport: &http.Transport{
207                         Proxy:       cfg.HTTPProxy,
208                         DialContext: cfg.HTTPDialContext,
209                         // I think this value was observed from some webseeds. It seems reasonable to extend it
210                         // to other uses of HTTP from the client.
211                         MaxConnsPerHost: 10,
212                 },
213         }
214 }
215
216 func NewClient(cfg *ClientConfig) (cl *Client, err error) {
217         if cfg == nil {
218                 cfg = NewDefaultClientConfig()
219                 cfg.ListenPort = 0
220         }
221         var client Client
222         client.init(cfg)
223         cl = &client
224         go cl.acceptLimitClearer()
225         cl.initLogger()
226         defer func() {
227                 if err != nil {
228                         cl.Close()
229                         cl = nil
230                 }
231         }()
232
233         storageImpl := cfg.DefaultStorage
234         if storageImpl == nil {
235                 // We'd use mmap by default but HFS+ doesn't support sparse files.
236                 storageImplCloser := storage.NewFile(cfg.DataDir)
237                 cl.onClose = append(cl.onClose, func() {
238                         if err := storageImplCloser.Close(); err != nil {
239                                 cl.logger.Printf("error closing default storage: %s", err)
240                         }
241                 })
242                 storageImpl = storageImplCloser
243         }
244         cl.defaultStorage = storage.NewClient(storageImpl)
245
246         if cfg.PeerID != "" {
247                 missinggo.CopyExact(&cl.peerID, cfg.PeerID)
248         } else {
249                 o := copy(cl.peerID[:], cfg.Bep20)
250                 _, err = rand.Read(cl.peerID[o:])
251                 if err != nil {
252                         panic("error generating peer id")
253                 }
254         }
255
256         sockets, err := listenAll(cl.listenNetworks(), cl.config.ListenHost, cl.config.ListenPort, cl.firewallCallback, cl.logger)
257         if err != nil {
258                 return
259         }
260
261         // Check for panics.
262         cl.LocalPort()
263
264         for _, _s := range sockets {
265                 s := _s // Go is fucking retarded.
266                 cl.onClose = append(cl.onClose, func() { go s.Close() })
267                 if peerNetworkEnabled(parseNetworkString(s.Addr().Network()), cl.config) {
268                         cl.dialers = append(cl.dialers, s)
269                         cl.listeners = append(cl.listeners, s)
270                         if cl.config.AcceptPeerConnections {
271                                 go cl.acceptConnections(s)
272                         }
273                 }
274         }
275
276         go cl.forwardPort()
277         if !cfg.NoDHT {
278                 for _, s := range sockets {
279                         if pc, ok := s.(net.PacketConn); ok {
280                                 ds, err := cl.NewAnacrolixDhtServer(pc)
281                                 if err != nil {
282                                         panic(err)
283                                 }
284                                 cl.dhtServers = append(cl.dhtServers, AnacrolixDhtServerWrapper{ds})
285                                 cl.onClose = append(cl.onClose, func() { ds.Close() })
286                         }
287                 }
288         }
289
290         cl.websocketTrackers = websocketTrackers{
291                 PeerId: cl.peerID,
292                 Logger: cl.logger,
293                 GetAnnounceRequest: func(event tracker.AnnounceEvent, infoHash [20]byte) (tracker.AnnounceRequest, error) {
294                         cl.lock()
295                         defer cl.unlock()
296                         t, ok := cl.torrents[infoHash]
297                         if !ok {
298                                 return tracker.AnnounceRequest{}, errors.New("torrent not tracked by client")
299                         }
300                         return t.announceRequest(event), nil
301                 },
302                 Proxy:                      cl.config.HTTPProxy,
303                 WebsocketTrackerHttpHeader: cl.config.WebsocketTrackerHttpHeader,
304                 ICEServers:                 cl.config.ICEServers,
305                 DialContext:                cl.config.TrackerDialContext,
306                 OnConn: func(dc datachannel.ReadWriteCloser, dcc webtorrent.DataChannelContext) {
307                         cl.lock()
308                         defer cl.unlock()
309                         t, ok := cl.torrents[dcc.InfoHash]
310                         if !ok {
311                                 cl.logger.WithDefaultLevel(log.Warning).Printf(
312                                         "got webrtc conn for unloaded torrent with infohash %x",
313                                         dcc.InfoHash,
314                                 )
315                                 dc.Close()
316                                 return
317                         }
318                         go t.onWebRtcConn(dc, dcc)
319                 },
320         }
321
322         return
323 }
324
325 func (cl *Client) AddDhtServer(d DhtServer) {
326         cl.dhtServers = append(cl.dhtServers, d)
327 }
328
329 // Adds a Dialer for outgoing connections. All Dialers are used when attempting to connect to a
330 // given address for any Torrent.
331 func (cl *Client) AddDialer(d Dialer) {
332         cl.lock()
333         defer cl.unlock()
334         cl.dialers = append(cl.dialers, d)
335         for _, t := range cl.torrents {
336                 t.openNewConns()
337         }
338 }
339
340 func (cl *Client) Listeners() []Listener {
341         return cl.listeners
342 }
343
344 // Registers a Listener, and starts Accepting on it. You must Close Listeners provided this way
345 // yourself.
346 func (cl *Client) AddListener(l Listener) {
347         cl.listeners = append(cl.listeners, l)
348         if cl.config.AcceptPeerConnections {
349                 go cl.acceptConnections(l)
350         }
351 }
352
353 func (cl *Client) firewallCallback(net.Addr) bool {
354         cl.rLock()
355         block := !cl.wantConns() || !cl.config.AcceptPeerConnections
356         cl.rUnlock()
357         if block {
358                 torrent.Add("connections firewalled", 1)
359         } else {
360                 torrent.Add("connections not firewalled", 1)
361         }
362         return block
363 }
364
365 func (cl *Client) listenOnNetwork(n network) bool {
366         if n.Ipv4 && cl.config.DisableIPv4 {
367                 return false
368         }
369         if n.Ipv6 && cl.config.DisableIPv6 {
370                 return false
371         }
372         if n.Tcp && cl.config.DisableTCP {
373                 return false
374         }
375         if n.Udp && cl.config.DisableUTP && cl.config.NoDHT {
376                 return false
377         }
378         return true
379 }
380
381 func (cl *Client) listenNetworks() (ns []network) {
382         for _, n := range allPeerNetworks {
383                 if cl.listenOnNetwork(n) {
384                         ns = append(ns, n)
385                 }
386         }
387         return
388 }
389
390 // Creates an anacrolix/dht Server, as would be done internally in NewClient, for the given conn.
391 func (cl *Client) NewAnacrolixDhtServer(conn net.PacketConn) (s *dht.Server, err error) {
392         logger := cl.logger.WithNames("dht", conn.LocalAddr().String())
393         cfg := dht.ServerConfig{
394                 IPBlocklist:    cl.ipBlockList,
395                 Conn:           conn,
396                 OnAnnouncePeer: cl.onDHTAnnouncePeer,
397                 PublicIP: func() net.IP {
398                         if connIsIpv6(conn) && cl.config.PublicIp6 != nil {
399                                 return cl.config.PublicIp6
400                         }
401                         return cl.config.PublicIp4
402                 }(),
403                 StartingNodes: cl.config.DhtStartingNodes(conn.LocalAddr().Network()),
404                 OnQuery:       cl.config.DHTOnQuery,
405                 Logger:        logger,
406         }
407         if f := cl.config.ConfigureAnacrolixDhtServer; f != nil {
408                 f(&cfg)
409         }
410         s, err = dht.NewServer(&cfg)
411         if err == nil {
412                 go s.TableMaintainer()
413         }
414         return
415 }
416
417 func (cl *Client) Closed() events.Done {
418         return cl.closed.Done()
419 }
420
421 func (cl *Client) eachDhtServer(f func(DhtServer)) {
422         for _, ds := range cl.dhtServers {
423                 f(ds)
424         }
425 }
426
427 // Stops the client. All connections to peers are closed and all activity will come to a halt.
428 func (cl *Client) Close() (errs []error) {
429         var closeGroup sync.WaitGroup // For concurrent cleanup to complete before returning
430         cl.lock()
431         for _, t := range cl.torrents {
432                 err := t.close(&closeGroup)
433                 if err != nil {
434                         errs = append(errs, err)
435                 }
436         }
437         for i := range cl.onClose {
438                 cl.onClose[len(cl.onClose)-1-i]()
439         }
440         cl.closed.Set()
441         cl.unlock()
442         cl.event.Broadcast()
443         closeGroup.Wait() // defer is LIFO. We want to Wait() after cl.unlock()
444         return
445 }
446
447 func (cl *Client) ipBlockRange(ip net.IP) (r iplist.Range, blocked bool) {
448         if cl.ipBlockList == nil {
449                 return
450         }
451         return cl.ipBlockList.Lookup(ip)
452 }
453
454 func (cl *Client) ipIsBlocked(ip net.IP) bool {
455         _, blocked := cl.ipBlockRange(ip)
456         return blocked
457 }
458
459 func (cl *Client) wantConns() bool {
460         if cl.config.AlwaysWantConns {
461                 return true
462         }
463         for _, t := range cl.torrents {
464                 if t.wantIncomingConns() {
465                         return true
466                 }
467         }
468         return false
469 }
470
471 // TODO: Apply filters for non-standard networks, particularly rate-limiting.
472 func (cl *Client) rejectAccepted(conn net.Conn) error {
473         if !cl.wantConns() {
474                 return errors.New("don't want conns right now")
475         }
476         ra := conn.RemoteAddr()
477         if rip := addrIpOrNil(ra); rip != nil {
478                 if cl.config.DisableIPv4Peers && rip.To4() != nil {
479                         return errors.New("ipv4 peers disabled")
480                 }
481                 if cl.config.DisableIPv4 && len(rip) == net.IPv4len {
482                         return errors.New("ipv4 disabled")
483                 }
484                 if cl.config.DisableIPv6 && len(rip) == net.IPv6len && rip.To4() == nil {
485                         return errors.New("ipv6 disabled")
486                 }
487                 if cl.rateLimitAccept(rip) {
488                         return errors.New("source IP accepted rate limited")
489                 }
490                 if cl.badPeerIPPort(rip, missinggo.AddrPort(ra)) {
491                         return errors.New("bad source addr")
492                 }
493         }
494         return nil
495 }
496
497 func (cl *Client) acceptConnections(l Listener) {
498         for {
499                 conn, err := l.Accept()
500                 torrent.Add("client listener accepts", 1)
501                 conn = pproffd.WrapNetConn(conn)
502                 cl.rLock()
503                 closed := cl.closed.IsSet()
504                 var reject error
505                 if !closed && conn != nil {
506                         reject = cl.rejectAccepted(conn)
507                 }
508                 cl.rUnlock()
509                 if closed {
510                         if conn != nil {
511                                 conn.Close()
512                         }
513                         return
514                 }
515                 if err != nil {
516                         log.Fmsg("error accepting connection: %s", err).LogLevel(log.Debug, cl.logger)
517                         continue
518                 }
519                 {
520                         holepunchAddr, holepunchErr := addrPortFromPeerRemoteAddr(conn.RemoteAddr())
521                         if holepunchErr == nil {
522                                 cl.lock()
523                                 if g.MapContains(
524                                         cl.undialableWithoutHolepunchDialedAfterHolepunchConnect,
525                                         holepunchAddr,
526                                 ) {
527                                         g.MakeMapIfNil(&cl.probablyOnlyConnectedDueToHolepunch)
528                                         g.MapInsert(cl.probablyOnlyConnectedDueToHolepunch, holepunchAddr, struct{}{})
529                                 }
530                                 cl.unlock()
531                         }
532                 }
533                 go func() {
534                         if reject != nil {
535                                 torrent.Add("rejected accepted connections", 1)
536                                 cl.logger.LazyLog(log.Debug, func() log.Msg {
537                                         return log.Fmsg("rejecting accepted conn: %v", reject)
538                                 })
539                                 conn.Close()
540                         } else {
541                                 go cl.incomingConnection(conn)
542                         }
543                         cl.logger.LazyLog(log.Debug, func() log.Msg {
544                                 return log.Fmsg("accepted %q connection at %q from %q",
545                                         l.Addr().Network(),
546                                         conn.LocalAddr(),
547                                         conn.RemoteAddr(),
548                                 )
549                         })
550                         torrent.Add(fmt.Sprintf("accepted conn remote IP len=%d", len(addrIpOrNil(conn.RemoteAddr()))), 1)
551                         torrent.Add(fmt.Sprintf("accepted conn network=%s", conn.RemoteAddr().Network()), 1)
552                         torrent.Add(fmt.Sprintf("accepted on %s listener", l.Addr().Network()), 1)
553                 }()
554         }
555 }
556
557 // Creates the PeerConn.connString for a regular net.Conn PeerConn.
558 func regularNetConnPeerConnConnString(nc net.Conn) string {
559         return fmt.Sprintf("%s-%s", nc.LocalAddr(), nc.RemoteAddr())
560 }
561
562 func (cl *Client) incomingConnection(nc net.Conn) {
563         defer nc.Close()
564         if tc, ok := nc.(*net.TCPConn); ok {
565                 tc.SetLinger(0)
566         }
567         remoteAddr, _ := tryIpPortFromNetAddr(nc.RemoteAddr())
568         c := cl.newConnection(
569                 nc,
570                 newConnectionOpts{
571                         outgoing:        false,
572                         remoteAddr:      nc.RemoteAddr(),
573                         localPublicAddr: cl.publicAddr(remoteAddr.IP),
574                         network:         nc.RemoteAddr().Network(),
575                         connString:      regularNetConnPeerConnConnString(nc),
576                 })
577         defer func() {
578                 cl.lock()
579                 defer cl.unlock()
580                 c.close()
581         }()
582         c.Discovery = PeerSourceIncoming
583         cl.runReceivedConn(c)
584 }
585
586 // Returns a handle to the given torrent, if it's present in the client.
587 func (cl *Client) Torrent(ih metainfo.Hash) (t *Torrent, ok bool) {
588         cl.rLock()
589         defer cl.rUnlock()
590         t, ok = cl.torrents[ih]
591         return
592 }
593
594 func (cl *Client) torrent(ih metainfo.Hash) *Torrent {
595         return cl.torrents[ih]
596 }
597
598 type DialResult struct {
599         Conn   net.Conn
600         Dialer Dialer
601 }
602
603 func countDialResult(err error) {
604         if err == nil {
605                 torrent.Add("successful dials", 1)
606         } else {
607                 torrent.Add("unsuccessful dials", 1)
608         }
609 }
610
611 func reducedDialTimeout(minDialTimeout, max time.Duration, halfOpenLimit, pendingPeers int) (ret time.Duration) {
612         ret = max / time.Duration((pendingPeers+halfOpenLimit)/halfOpenLimit)
613         if ret < minDialTimeout {
614                 ret = minDialTimeout
615         }
616         return
617 }
618
619 // Returns whether an address is known to connect to a client with our own ID.
620 func (cl *Client) dopplegangerAddr(addr string) bool {
621         _, ok := cl.dopplegangerAddrs[addr]
622         return ok
623 }
624
625 // Returns a connection over UTP or TCP, whichever is first to connect.
626 func (cl *Client) dialFirst(ctx context.Context, addr string) (res DialResult) {
627         return DialFirst(ctx, addr, cl.dialers)
628 }
629
630 // Returns a connection over UTP or TCP, whichever is first to connect.
631 func DialFirst(ctx context.Context, addr string, dialers []Dialer) (res DialResult) {
632         pool := dialPool{
633                 addr: addr,
634         }
635         defer pool.startDrainer()
636         for _, _s := range dialers {
637                 pool.add(ctx, _s)
638         }
639         return pool.getFirst()
640 }
641
642 func dialFromSocket(ctx context.Context, s Dialer, addr string) net.Conn {
643         c, err := s.Dial(ctx, addr)
644         if err != nil {
645                 log.Levelf(log.Debug, "error dialing %q: %v", addr, err)
646         }
647         // This is a bit optimistic, but it looks non-trivial to thread this through the proxy code. Set
648         // it now in case we close the connection forthwith. Note this is also done in the TCP dialer
649         // code to increase the chance it's done.
650         if tc, ok := c.(*net.TCPConn); ok {
651                 tc.SetLinger(0)
652         }
653         countDialResult(err)
654         return c
655 }
656
657 func (cl *Client) noLongerHalfOpen(t *Torrent, addr string, attemptKey outgoingConnAttemptKey) {
658         path := t.getHalfOpenPath(addr, attemptKey)
659         if !path.Exists() {
660                 panic("should exist")
661         }
662         path.Delete()
663         cl.numHalfOpen--
664         if cl.numHalfOpen < 0 {
665                 panic("should not be possible")
666         }
667         for _, t := range cl.torrents {
668                 t.openNewConns()
669         }
670 }
671
672 func (cl *Client) countHalfOpenFromTorrents() (count int) {
673         for _, t := range cl.torrents {
674                 count += t.numHalfOpenAttempts()
675         }
676         return
677 }
678
679 // Performs initiator handshakes and returns a connection. Returns nil *PeerConn if no connection
680 // for valid reasons.
681 func (cl *Client) initiateProtocolHandshakes(
682         ctx context.Context,
683         nc net.Conn,
684         t *Torrent,
685         encryptHeader bool,
686         newConnOpts newConnectionOpts,
687 ) (
688         c *PeerConn, err error,
689 ) {
690         c = cl.newConnection(nc, newConnOpts)
691         c.headerEncrypted = encryptHeader
692         ctx, cancel := context.WithTimeout(ctx, cl.config.HandshakesTimeout)
693         defer cancel()
694         dl, ok := ctx.Deadline()
695         if !ok {
696                 panic(ctx)
697         }
698         err = nc.SetDeadline(dl)
699         if err != nil {
700                 panic(err)
701         }
702         err = cl.initiateHandshakes(c, t)
703         return
704 }
705
706 func doProtocolHandshakeOnDialResult(
707         t *Torrent,
708         obfuscatedHeader bool,
709         addr PeerRemoteAddr,
710         dr DialResult,
711 ) (
712         c *PeerConn, err error,
713 ) {
714         cl := t.cl
715         nc := dr.Conn
716         addrIpPort, _ := tryIpPortFromNetAddr(addr)
717         c, err = cl.initiateProtocolHandshakes(
718                 context.Background(), nc, t, obfuscatedHeader,
719                 newConnectionOpts{
720                         outgoing:   true,
721                         remoteAddr: addr,
722                         // It would be possible to retrieve a public IP from the dialer used here?
723                         localPublicAddr: cl.publicAddr(addrIpPort.IP),
724                         network:         dr.Dialer.DialerNetwork(),
725                         connString:      regularNetConnPeerConnConnString(nc),
726                 })
727         if err != nil {
728                 nc.Close()
729         }
730         return c, err
731 }
732
733 // Returns nil connection and nil error if no connection could be established for valid reasons.
734 func (cl *Client) dialAndCompleteHandshake(opts outgoingConnOpts) (c *PeerConn, err error) {
735         // It would be better if dial rate limiting could be tested when considering to open connections
736         // instead. Doing it here means if the limit is low, and the half-open limit is high, we could
737         // end up with lots of outgoing connection attempts pending that were initiated on stale data.
738         {
739                 dialReservation := cl.config.DialRateLimiter.Reserve()
740                 if !opts.receivedHolepunchConnect {
741                         if !dialReservation.OK() {
742                                 err = errors.New("can't make dial limit reservation")
743                                 return
744                         }
745                         time.Sleep(dialReservation.Delay())
746                 }
747         }
748         torrent.Add("establish outgoing connection", 1)
749         addr := opts.peerInfo.Addr
750         dialPool := dialPool{
751                 resCh: make(chan DialResult),
752                 addr:  addr.String(),
753         }
754         defer dialPool.startDrainer()
755         dialTimeout := opts.t.getDialTimeoutUnlocked()
756         {
757                 ctx, cancel := context.WithTimeout(context.Background(), dialTimeout)
758                 defer cancel()
759                 for _, d := range cl.dialers {
760                         dialPool.add(ctx, d)
761                 }
762         }
763         holepunchAddr, holepunchAddrErr := addrPortFromPeerRemoteAddr(addr)
764         if holepunchAddrErr == nil && opts.receivedHolepunchConnect {
765                 cl.lock()
766                 if g.MapContains(cl.undialableWithoutHolepunch, holepunchAddr) {
767                         g.MakeMapIfNilAndSet(
768                                 &cl.undialableWithoutHolepunchDialedAfterHolepunchConnect,
769                                 holepunchAddr,
770                                 struct{}{},
771                         )
772                 }
773                 cl.unlock()
774         }
775         headerObfuscationPolicy := opts.HeaderObfuscationPolicy
776         obfuscatedHeaderFirst := headerObfuscationPolicy.Preferred
777         firstDialResult := dialPool.getFirst()
778         if firstDialResult.Conn == nil {
779                 // No dialers worked. Try to initiate a holepunching rendezvous.
780                 if holepunchAddrErr == nil {
781                         cl.lock()
782                         if !opts.receivedHolepunchConnect {
783                                 g.MakeMapIfNilAndSet(&cl.undialableWithoutHolepunch, holepunchAddr, struct{}{})
784                         }
785                         if !opts.skipHolepunchRendezvous {
786                                 opts.t.trySendHolepunchRendezvous(holepunchAddr)
787                         }
788                         cl.unlock()
789                 }
790                 err = fmt.Errorf("all initial dials failed")
791                 return
792         }
793         if opts.receivedHolepunchConnect && holepunchAddrErr == nil {
794                 cl.lock()
795                 if g.MapContains(cl.undialableWithoutHolepunch, holepunchAddr) {
796                         g.MakeMapIfNilAndSet(&cl.dialableOnlyAfterHolepunch, holepunchAddr, struct{}{})
797                 }
798                 g.MakeMapIfNil(&cl.dialedSuccessfullyAfterHolepunchConnect)
799                 g.MapInsert(cl.dialedSuccessfullyAfterHolepunchConnect, holepunchAddr, struct{}{})
800                 cl.unlock()
801         }
802         c, err = doProtocolHandshakeOnDialResult(
803                 opts.t,
804                 obfuscatedHeaderFirst,
805                 addr,
806                 firstDialResult,
807         )
808         if err == nil {
809                 torrent.Add("initiated conn with preferred header obfuscation", 1)
810                 return
811         }
812         c.logger.Levelf(
813                 log.Debug,
814                 "error doing protocol handshake with header obfuscation %v",
815                 obfuscatedHeaderFirst,
816         )
817         firstDialResult.Conn.Close()
818         // We should have just tried with the preferred header obfuscation. If it was required, there's nothing else to try.
819         if headerObfuscationPolicy.RequirePreferred {
820                 return
821         }
822         // Reuse the dialer that returned already but failed to handshake.
823         {
824                 ctx, cancel := context.WithTimeout(context.Background(), dialTimeout)
825                 defer cancel()
826                 dialPool.add(ctx, firstDialResult.Dialer)
827         }
828         secondDialResult := dialPool.getFirst()
829         if secondDialResult.Conn == nil {
830                 return
831         }
832         c, err = doProtocolHandshakeOnDialResult(
833                 opts.t,
834                 !obfuscatedHeaderFirst,
835                 addr,
836                 secondDialResult,
837         )
838         if err == nil {
839                 torrent.Add("initiated conn with fallback header obfuscation", 1)
840                 return
841         }
842         c.logger.Levelf(
843                 log.Debug,
844                 "error doing protocol handshake with header obfuscation %v",
845                 !obfuscatedHeaderFirst,
846         )
847         secondDialResult.Conn.Close()
848         return
849 }
850
851 type outgoingConnOpts struct {
852         peerInfo PeerInfo
853         t        *Torrent
854         // Don't attempt to connect unless a connect message is received after initiating a rendezvous.
855         requireRendezvous bool
856         // Don't send rendezvous requests to eligible relays.
857         skipHolepunchRendezvous bool
858         // Outgoing connection attempt is in response to holepunch connect message.
859         receivedHolepunchConnect bool
860         HeaderObfuscationPolicy  HeaderObfuscationPolicy
861 }
862
863 // Called to dial out and run a connection. The addr we're given is already
864 // considered half-open.
865 func (cl *Client) outgoingConnection(
866         opts outgoingConnOpts,
867         attemptKey outgoingConnAttemptKey,
868 ) {
869         c, err := cl.dialAndCompleteHandshake(opts)
870         if err == nil {
871                 c.conn.SetWriteDeadline(time.Time{})
872         }
873         cl.lock()
874         defer cl.unlock()
875         // Don't release lock between here and addPeerConn, unless it's for failure.
876         cl.noLongerHalfOpen(opts.t, opts.peerInfo.Addr.String(), attemptKey)
877         if err != nil {
878                 if cl.config.Debug {
879                         cl.logger.Levelf(
880                                 log.Debug,
881                                 "error establishing outgoing connection to %v: %v",
882                                 opts.peerInfo.Addr,
883                                 err,
884                         )
885                 }
886                 return
887         }
888         defer c.close()
889         c.Discovery = opts.peerInfo.Source
890         c.trusted = opts.peerInfo.Trusted
891         opts.t.runHandshookConnLoggingErr(c)
892 }
893
894 // The port number for incoming peer connections. 0 if the client isn't listening.
895 func (cl *Client) incomingPeerPort() int {
896         return cl.LocalPort()
897 }
898
899 func (cl *Client) initiateHandshakes(c *PeerConn, t *Torrent) error {
900         if c.headerEncrypted {
901                 var rw io.ReadWriter
902                 var err error
903                 rw, c.cryptoMethod, err = mse.InitiateHandshake(
904                         struct {
905                                 io.Reader
906                                 io.Writer
907                         }{c.r, c.w},
908                         t.infoHash[:],
909                         nil,
910                         cl.config.CryptoProvides,
911                 )
912                 c.setRW(rw)
913                 if err != nil {
914                         return fmt.Errorf("header obfuscation handshake: %w", err)
915                 }
916         }
917         ih, err := cl.connBtHandshake(c, &t.infoHash)
918         if err != nil {
919                 return fmt.Errorf("bittorrent protocol handshake: %w", err)
920         }
921         if ih != t.infoHash {
922                 return errors.New("bittorrent protocol handshake: peer infohash didn't match")
923         }
924         return nil
925 }
926
927 // Calls f with any secret keys. Note that it takes the Client lock, and so must be used from code
928 // that won't also try to take the lock. This saves us copying all the infohashes everytime.
929 func (cl *Client) forSkeys(f func([]byte) bool) {
930         cl.rLock()
931         defer cl.rUnlock()
932         if false { // Emulate the bug from #114
933                 var firstIh InfoHash
934                 for ih := range cl.torrents {
935                         firstIh = ih
936                         break
937                 }
938                 for range cl.torrents {
939                         if !f(firstIh[:]) {
940                                 break
941                         }
942                 }
943                 return
944         }
945         for ih := range cl.torrents {
946                 if !f(ih[:]) {
947                         break
948                 }
949         }
950 }
951
952 func (cl *Client) handshakeReceiverSecretKeys() mse.SecretKeyIter {
953         if ret := cl.config.Callbacks.ReceiveEncryptedHandshakeSkeys; ret != nil {
954                 return ret
955         }
956         return cl.forSkeys
957 }
958
959 // Do encryption and bittorrent handshakes as receiver.
960 func (cl *Client) receiveHandshakes(c *PeerConn) (t *Torrent, err error) {
961         defer perf.ScopeTimerErr(&err)()
962         var rw io.ReadWriter
963         rw, c.headerEncrypted, c.cryptoMethod, err = handleEncryption(c.rw(), cl.handshakeReceiverSecretKeys(), cl.config.HeaderObfuscationPolicy, cl.config.CryptoSelector)
964         c.setRW(rw)
965         if err == nil || err == mse.ErrNoSecretKeyMatch {
966                 if c.headerEncrypted {
967                         torrent.Add("handshakes received encrypted", 1)
968                 } else {
969                         torrent.Add("handshakes received unencrypted", 1)
970                 }
971         } else {
972                 torrent.Add("handshakes received with error while handling encryption", 1)
973         }
974         if err != nil {
975                 if err == mse.ErrNoSecretKeyMatch {
976                         err = nil
977                 }
978                 return
979         }
980         if cl.config.HeaderObfuscationPolicy.RequirePreferred && c.headerEncrypted != cl.config.HeaderObfuscationPolicy.Preferred {
981                 err = errors.New("connection does not have required header obfuscation")
982                 return
983         }
984         ih, err := cl.connBtHandshake(c, nil)
985         if err != nil {
986                 return nil, fmt.Errorf("during bt handshake: %w", err)
987         }
988         cl.lock()
989         t = cl.torrents[ih]
990         cl.unlock()
991         return
992 }
993
994 var successfulPeerWireProtocolHandshakePeerReservedBytes expvar.Map
995
996 func init() {
997         torrent.Set(
998                 "successful_peer_wire_protocol_handshake_peer_reserved_bytes",
999                 &successfulPeerWireProtocolHandshakePeerReservedBytes)
1000 }
1001
1002 func (cl *Client) connBtHandshake(c *PeerConn, ih *metainfo.Hash) (ret metainfo.Hash, err error) {
1003         res, err := pp.Handshake(c.rw(), ih, cl.peerID, cl.config.Extensions)
1004         if err != nil {
1005                 return
1006         }
1007         successfulPeerWireProtocolHandshakePeerReservedBytes.Add(
1008                 hex.EncodeToString(res.PeerExtensionBits[:]), 1)
1009         ret = res.Hash
1010         c.PeerExtensionBytes = res.PeerExtensionBits
1011         c.PeerID = res.PeerID
1012         c.completedHandshake = time.Now()
1013         if cb := cl.config.Callbacks.CompletedHandshake; cb != nil {
1014                 cb(c, res.Hash)
1015         }
1016         return
1017 }
1018
1019 func (cl *Client) runReceivedConn(c *PeerConn) {
1020         err := c.conn.SetDeadline(time.Now().Add(cl.config.HandshakesTimeout))
1021         if err != nil {
1022                 panic(err)
1023         }
1024         t, err := cl.receiveHandshakes(c)
1025         if err != nil {
1026                 cl.logger.LazyLog(log.Debug, func() log.Msg {
1027                         return log.Fmsg(
1028                                 "error receiving handshakes on %v: %s", c, err,
1029                         ).Add(
1030                                 "network", c.Network,
1031                         )
1032                 })
1033                 torrent.Add("error receiving handshake", 1)
1034                 cl.lock()
1035                 cl.onBadAccept(c.RemoteAddr)
1036                 cl.unlock()
1037                 return
1038         }
1039         if t == nil {
1040                 torrent.Add("received handshake for unloaded torrent", 1)
1041                 cl.logger.LazyLog(log.Debug, func() log.Msg {
1042                         return log.Fmsg("received handshake for unloaded torrent")
1043                 })
1044                 cl.lock()
1045                 cl.onBadAccept(c.RemoteAddr)
1046                 cl.unlock()
1047                 return
1048         }
1049         torrent.Add("received handshake for loaded torrent", 1)
1050         c.conn.SetWriteDeadline(time.Time{})
1051         cl.lock()
1052         defer cl.unlock()
1053         t.runHandshookConnLoggingErr(c)
1054 }
1055
1056 // Client lock must be held before entering this.
1057 func (cl *Client) runHandshookConn(c *PeerConn, t *Torrent) error {
1058         c.setTorrent(t)
1059         for i, b := range cl.config.MinPeerExtensions {
1060                 if c.PeerExtensionBytes[i]&b != b {
1061                         return fmt.Errorf("peer did not meet minimum peer extensions: %x", c.PeerExtensionBytes[:])
1062                 }
1063         }
1064         if c.PeerID == cl.peerID {
1065                 if c.outgoing {
1066                         connsToSelf.Add(1)
1067                         addr := c.RemoteAddr.String()
1068                         cl.dopplegangerAddrs[addr] = struct{}{}
1069                 } /* else {
1070                         // Because the remote address is not necessarily the same as its client's torrent listen
1071                         // address, we won't record the remote address as a doppleganger. Instead, the initiator
1072                         // can record *us* as the doppleganger.
1073                 } */
1074                 t.logger.Levelf(log.Debug, "local and remote peer ids are the same")
1075                 return nil
1076         }
1077         c.r = deadlineReader{c.conn, c.r}
1078         completedHandshakeConnectionFlags.Add(c.connectionFlags(), 1)
1079         if connIsIpv6(c.conn) {
1080                 torrent.Add("completed handshake over ipv6", 1)
1081         }
1082         if err := t.addPeerConn(c); err != nil {
1083                 return fmt.Errorf("adding connection: %w", err)
1084         }
1085         defer t.dropConnection(c)
1086         c.startMessageWriter()
1087         cl.sendInitialMessages(c, t)
1088         c.initUpdateRequestsTimer()
1089         err := c.mainReadLoop()
1090         if err != nil {
1091                 return fmt.Errorf("main read loop: %w", err)
1092         }
1093         return nil
1094 }
1095
1096 func (p *Peer) initUpdateRequestsTimer() {
1097         if check.Enabled {
1098                 if p.updateRequestsTimer != nil {
1099                         panic(p.updateRequestsTimer)
1100                 }
1101         }
1102         if enableUpdateRequestsTimer {
1103                 p.updateRequestsTimer = time.AfterFunc(math.MaxInt64, p.updateRequestsTimerFunc)
1104         }
1105 }
1106
1107 const peerUpdateRequestsTimerReason = "updateRequestsTimer"
1108
1109 func (c *Peer) updateRequestsTimerFunc() {
1110         c.locker().Lock()
1111         defer c.locker().Unlock()
1112         if c.closed.IsSet() {
1113                 return
1114         }
1115         if c.isLowOnRequests() {
1116                 // If there are no outstanding requests, then a request update should have already run.
1117                 return
1118         }
1119         if d := time.Since(c.lastRequestUpdate); d < updateRequestsTimerDuration {
1120                 // These should be benign, Timer.Stop doesn't guarantee that its function won't run if it's
1121                 // already been fired.
1122                 torrent.Add("spurious timer requests updates", 1)
1123                 return
1124         }
1125         c.updateRequests(peerUpdateRequestsTimerReason)
1126 }
1127
1128 // Maximum pending requests we allow peers to send us. If peer requests are buffered on read, this
1129 // instructs the amount of memory that might be used to cache pending writes. Assuming 512KiB
1130 // (1<<19) cached for sending, for 16KiB (1<<14) chunks.
1131 const localClientReqq = 1024
1132
1133 // See the order given in Transmission's tr_peerMsgsNew.
1134 func (cl *Client) sendInitialMessages(conn *PeerConn, torrent *Torrent) {
1135         if conn.PeerExtensionBytes.SupportsExtended() && cl.config.Extensions.SupportsExtended() {
1136                 conn.write(pp.Message{
1137                         Type:       pp.Extended,
1138                         ExtendedID: pp.HandshakeExtendedID,
1139                         ExtendedPayload: func() []byte {
1140                                 msg := pp.ExtendedHandshakeMessage{
1141                                         M: map[pp.ExtensionName]pp.ExtensionNumber{
1142                                                 pp.ExtensionNameMetadata:  metadataExtendedId,
1143                                                 utHolepunch.ExtensionName: utHolepunchExtendedId,
1144                                         },
1145                                         V:            cl.config.ExtendedHandshakeClientVersion,
1146                                         Reqq:         localClientReqq,
1147                                         YourIp:       pp.CompactIp(conn.remoteIp()),
1148                                         Encryption:   cl.config.HeaderObfuscationPolicy.Preferred || !cl.config.HeaderObfuscationPolicy.RequirePreferred,
1149                                         Port:         cl.incomingPeerPort(),
1150                                         MetadataSize: torrent.metadataSize(),
1151                                         // TODO: We can figure these out specific to the socket used.
1152                                         Ipv4: pp.CompactIp(cl.config.PublicIp4.To4()),
1153                                         Ipv6: cl.config.PublicIp6.To16(),
1154                                 }
1155                                 if !cl.config.DisablePEX {
1156                                         msg.M[pp.ExtensionNamePex] = pexExtendedId
1157                                 }
1158                                 return bencode.MustMarshal(msg)
1159                         }(),
1160                 })
1161         }
1162         func() {
1163                 if conn.fastEnabled() {
1164                         if torrent.haveAllPieces() {
1165                                 conn.write(pp.Message{Type: pp.HaveAll})
1166                                 conn.sentHaves.AddRange(0, bitmap.BitRange(conn.t.NumPieces()))
1167                                 return
1168                         } else if !torrent.haveAnyPieces() {
1169                                 conn.write(pp.Message{Type: pp.HaveNone})
1170                                 conn.sentHaves.Clear()
1171                                 return
1172                         }
1173                 }
1174                 conn.postBitfield()
1175         }()
1176         if conn.PeerExtensionBytes.SupportsDHT() && cl.config.Extensions.SupportsDHT() && cl.haveDhtServer() {
1177                 conn.write(pp.Message{
1178                         Type: pp.Port,
1179                         Port: cl.dhtPort(),
1180                 })
1181         }
1182 }
1183
1184 func (cl *Client) dhtPort() (ret uint16) {
1185         if len(cl.dhtServers) == 0 {
1186                 return
1187         }
1188         return uint16(missinggo.AddrPort(cl.dhtServers[len(cl.dhtServers)-1].Addr()))
1189 }
1190
1191 func (cl *Client) haveDhtServer() bool {
1192         return len(cl.dhtServers) > 0
1193 }
1194
1195 // Process incoming ut_metadata message.
1196 func (cl *Client) gotMetadataExtensionMsg(payload []byte, t *Torrent, c *PeerConn) error {
1197         var d pp.ExtendedMetadataRequestMsg
1198         err := bencode.Unmarshal(payload, &d)
1199         if _, ok := err.(bencode.ErrUnusedTrailingBytes); ok {
1200         } else if err != nil {
1201                 return fmt.Errorf("error unmarshalling bencode: %s", err)
1202         }
1203         piece := d.Piece
1204         switch d.Type {
1205         case pp.DataMetadataExtensionMsgType:
1206                 c.allStats(add(1, func(cs *ConnStats) *Count { return &cs.MetadataChunksRead }))
1207                 if !c.requestedMetadataPiece(piece) {
1208                         return fmt.Errorf("got unexpected piece %d", piece)
1209                 }
1210                 c.metadataRequests[piece] = false
1211                 begin := len(payload) - d.PieceSize()
1212                 if begin < 0 || begin >= len(payload) {
1213                         return fmt.Errorf("data has bad offset in payload: %d", begin)
1214                 }
1215                 t.saveMetadataPiece(piece, payload[begin:])
1216                 c.lastUsefulChunkReceived = time.Now()
1217                 err = t.maybeCompleteMetadata()
1218                 if err != nil {
1219                         // Log this at the Torrent-level, as we don't partition metadata by Peer yet, so we
1220                         // don't know who to blame. TODO: Also errors can be returned here that aren't related
1221                         // to verifying metadata, which should be fixed. This should be tagged with metadata, so
1222                         // log consumers can filter for this message.
1223                         t.logger.WithDefaultLevel(log.Warning).Printf("error completing metadata: %v", err)
1224                 }
1225                 return err
1226         case pp.RequestMetadataExtensionMsgType:
1227                 if !t.haveMetadataPiece(piece) {
1228                         c.write(t.newMetadataExtensionMessage(c, pp.RejectMetadataExtensionMsgType, d.Piece, nil))
1229                         return nil
1230                 }
1231                 start := (1 << 14) * piece
1232                 c.logger.WithDefaultLevel(log.Debug).Printf("sending metadata piece %d", piece)
1233                 c.write(t.newMetadataExtensionMessage(c, pp.DataMetadataExtensionMsgType, piece, t.metadataBytes[start:start+t.metadataPieceSize(piece)]))
1234                 return nil
1235         case pp.RejectMetadataExtensionMsgType:
1236                 return nil
1237         default:
1238                 return errors.New("unknown msg_type value")
1239         }
1240 }
1241
1242 func (cl *Client) badPeerAddr(addr PeerRemoteAddr) bool {
1243         if ipa, ok := tryIpPortFromNetAddr(addr); ok {
1244                 return cl.badPeerIPPort(ipa.IP, ipa.Port)
1245         }
1246         return false
1247 }
1248
1249 // Returns whether the IP address and port are considered "bad".
1250 func (cl *Client) badPeerIPPort(ip net.IP, port int) bool {
1251         if port == 0 || ip == nil {
1252                 return true
1253         }
1254         if cl.dopplegangerAddr(net.JoinHostPort(ip.String(), strconv.FormatInt(int64(port), 10))) {
1255                 return true
1256         }
1257         if _, ok := cl.ipBlockRange(ip); ok {
1258                 return true
1259         }
1260         ipAddr, ok := netip.AddrFromSlice(ip)
1261         if !ok {
1262                 panic(ip)
1263         }
1264         if _, ok := cl.badPeerIPs[ipAddr]; ok {
1265                 return true
1266         }
1267         return false
1268 }
1269
1270 // Return a Torrent ready for insertion into a Client.
1271 func (cl *Client) newTorrent(ih metainfo.Hash, specStorage storage.ClientImpl) (t *Torrent) {
1272         return cl.newTorrentOpt(AddTorrentOpts{
1273                 InfoHash: ih,
1274                 Storage:  specStorage,
1275         })
1276 }
1277
1278 // Return a Torrent ready for insertion into a Client.
1279 func (cl *Client) newTorrentOpt(opts AddTorrentOpts) (t *Torrent) {
1280         // use provided storage, if provided
1281         storageClient := cl.defaultStorage
1282         if opts.Storage != nil {
1283                 storageClient = storage.NewClient(opts.Storage)
1284         }
1285
1286         t = &Torrent{
1287                 cl:       cl,
1288                 infoHash: opts.InfoHash,
1289                 peers: prioritizedPeers{
1290                         om: gbtree.New(32),
1291                         getPrio: func(p PeerInfo) peerPriority {
1292                                 ipPort := p.addr()
1293                                 return bep40PriorityIgnoreError(cl.publicAddr(ipPort.IP), ipPort)
1294                         },
1295                 },
1296                 conns: make(map[*PeerConn]struct{}, 2*cl.config.EstablishedConnsPerTorrent),
1297
1298                 storageOpener:       storageClient,
1299                 maxEstablishedConns: cl.config.EstablishedConnsPerTorrent,
1300
1301                 metadataChanged: sync.Cond{
1302                         L: cl.locker(),
1303                 },
1304                 webSeeds:     make(map[string]*Peer),
1305                 gotMetainfoC: make(chan struct{}),
1306         }
1307         t.smartBanCache.Hash = sha1.Sum
1308         t.smartBanCache.Init()
1309         t.networkingEnabled.Set()
1310         t.logger = cl.logger.WithDefaultLevel(log.Debug)
1311         t.sourcesLogger = t.logger.WithNames("sources")
1312         if opts.ChunkSize == 0 {
1313                 opts.ChunkSize = defaultChunkSize
1314         }
1315         t.setChunkSize(opts.ChunkSize)
1316         return
1317 }
1318
1319 // A file-like handle to some torrent data resource.
1320 type Handle interface {
1321         io.Reader
1322         io.Seeker
1323         io.Closer
1324         io.ReaderAt
1325 }
1326
1327 func (cl *Client) AddTorrentInfoHash(infoHash metainfo.Hash) (t *Torrent, new bool) {
1328         return cl.AddTorrentInfoHashWithStorage(infoHash, nil)
1329 }
1330
1331 // Adds a torrent by InfoHash with a custom Storage implementation.
1332 // If the torrent already exists then this Storage is ignored and the
1333 // existing torrent returned with `new` set to `false`
1334 func (cl *Client) AddTorrentInfoHashWithStorage(infoHash metainfo.Hash, specStorage storage.ClientImpl) (t *Torrent, new bool) {
1335         cl.lock()
1336         defer cl.unlock()
1337         t, ok := cl.torrents[infoHash]
1338         if ok {
1339                 return
1340         }
1341         new = true
1342
1343         t = cl.newTorrent(infoHash, specStorage)
1344         cl.eachDhtServer(func(s DhtServer) {
1345                 if cl.config.PeriodicallyAnnounceTorrentsToDht {
1346                         go t.dhtAnnouncer(s)
1347                 }
1348         })
1349         cl.torrents[infoHash] = t
1350         cl.clearAcceptLimits()
1351         t.updateWantPeersEvent()
1352         // Tickle Client.waitAccept, new torrent may want conns.
1353         cl.event.Broadcast()
1354         return
1355 }
1356
1357 // Adds a torrent by InfoHash with a custom Storage implementation. If the torrent already exists
1358 // then this Storage is ignored and the existing torrent returned with `new` set to `false`.
1359 func (cl *Client) AddTorrentOpt(opts AddTorrentOpts) (t *Torrent, new bool) {
1360         infoHash := opts.InfoHash
1361         cl.lock()
1362         defer cl.unlock()
1363         t, ok := cl.torrents[infoHash]
1364         if ok {
1365                 return
1366         }
1367         new = true
1368
1369         t = cl.newTorrentOpt(opts)
1370         cl.eachDhtServer(func(s DhtServer) {
1371                 if cl.config.PeriodicallyAnnounceTorrentsToDht {
1372                         go t.dhtAnnouncer(s)
1373                 }
1374         })
1375         cl.torrents[infoHash] = t
1376         t.setInfoBytesLocked(opts.InfoBytes)
1377         cl.clearAcceptLimits()
1378         t.updateWantPeersEvent()
1379         // Tickle Client.waitAccept, new torrent may want conns.
1380         cl.event.Broadcast()
1381         return
1382 }
1383
1384 type AddTorrentOpts struct {
1385         InfoHash  infohash.T
1386         Storage   storage.ClientImpl
1387         ChunkSize pp.Integer
1388         InfoBytes []byte
1389 }
1390
1391 // Add or merge a torrent spec. Returns new if the torrent wasn't already in the client. See also
1392 // Torrent.MergeSpec.
1393 func (cl *Client) AddTorrentSpec(spec *TorrentSpec) (t *Torrent, new bool, err error) {
1394         t, new = cl.AddTorrentOpt(AddTorrentOpts{
1395                 InfoHash:  spec.InfoHash,
1396                 Storage:   spec.Storage,
1397                 ChunkSize: spec.ChunkSize,
1398         })
1399         modSpec := *spec
1400         if new {
1401                 // ChunkSize was already applied by adding a new Torrent, and MergeSpec disallows changing
1402                 // it.
1403                 modSpec.ChunkSize = 0
1404         }
1405         err = t.MergeSpec(&modSpec)
1406         if err != nil && new {
1407                 t.Drop()
1408         }
1409         return
1410 }
1411
1412 // The trackers will be merged with the existing ones. If the Info isn't yet known, it will be set.
1413 // spec.DisallowDataDownload/Upload will be read and applied
1414 // The display name is replaced if the new spec provides one. Note that any `Storage` is ignored.
1415 func (t *Torrent) MergeSpec(spec *TorrentSpec) error {
1416         if spec.DisplayName != "" {
1417                 t.SetDisplayName(spec.DisplayName)
1418         }
1419         if spec.InfoBytes != nil {
1420                 err := t.SetInfoBytes(spec.InfoBytes)
1421                 if err != nil {
1422                         return err
1423                 }
1424         }
1425         cl := t.cl
1426         cl.AddDhtNodes(spec.DhtNodes)
1427         t.UseSources(spec.Sources)
1428         cl.lock()
1429         defer cl.unlock()
1430         t.initialPieceCheckDisabled = spec.DisableInitialPieceCheck
1431         for _, url := range spec.Webseeds {
1432                 t.addWebSeed(url)
1433         }
1434         for _, peerAddr := range spec.PeerAddrs {
1435                 t.addPeer(PeerInfo{
1436                         Addr:    StringAddr(peerAddr),
1437                         Source:  PeerSourceDirect,
1438                         Trusted: true,
1439                 })
1440         }
1441         if spec.ChunkSize != 0 {
1442                 panic("chunk size cannot be changed for existing Torrent")
1443         }
1444         t.addTrackers(spec.Trackers)
1445         t.maybeNewConns()
1446         t.dataDownloadDisallowed.SetBool(spec.DisallowDataDownload)
1447         t.dataUploadDisallowed = spec.DisallowDataUpload
1448         return nil
1449 }
1450
1451 func (cl *Client) dropTorrent(infoHash metainfo.Hash, wg *sync.WaitGroup) (err error) {
1452         t, ok := cl.torrents[infoHash]
1453         if !ok {
1454                 err = fmt.Errorf("no such torrent")
1455                 return
1456         }
1457         err = t.close(wg)
1458         delete(cl.torrents, infoHash)
1459         return
1460 }
1461
1462 func (cl *Client) allTorrentsCompleted() bool {
1463         for _, t := range cl.torrents {
1464                 if !t.haveInfo() {
1465                         return false
1466                 }
1467                 if !t.haveAllPieces() {
1468                         return false
1469                 }
1470         }
1471         return true
1472 }
1473
1474 // Returns true when all torrents are completely downloaded and false if the
1475 // client is stopped before that.
1476 func (cl *Client) WaitAll() bool {
1477         cl.lock()
1478         defer cl.unlock()
1479         for !cl.allTorrentsCompleted() {
1480                 if cl.closed.IsSet() {
1481                         return false
1482                 }
1483                 cl.event.Wait()
1484         }
1485         return true
1486 }
1487
1488 // Returns handles to all the torrents loaded in the Client.
1489 func (cl *Client) Torrents() []*Torrent {
1490         cl.rLock()
1491         defer cl.rUnlock()
1492         return cl.torrentsAsSlice()
1493 }
1494
1495 func (cl *Client) torrentsAsSlice() (ret []*Torrent) {
1496         for _, t := range cl.torrents {
1497                 ret = append(ret, t)
1498         }
1499         return
1500 }
1501
1502 func (cl *Client) AddMagnet(uri string) (T *Torrent, err error) {
1503         spec, err := TorrentSpecFromMagnetUri(uri)
1504         if err != nil {
1505                 return
1506         }
1507         T, _, err = cl.AddTorrentSpec(spec)
1508         return
1509 }
1510
1511 func (cl *Client) AddTorrent(mi *metainfo.MetaInfo) (T *Torrent, err error) {
1512         ts, err := TorrentSpecFromMetaInfoErr(mi)
1513         if err != nil {
1514                 return
1515         }
1516         T, _, err = cl.AddTorrentSpec(ts)
1517         return
1518 }
1519
1520 func (cl *Client) AddTorrentFromFile(filename string) (T *Torrent, err error) {
1521         mi, err := metainfo.LoadFromFile(filename)
1522         if err != nil {
1523                 return
1524         }
1525         return cl.AddTorrent(mi)
1526 }
1527
1528 func (cl *Client) DhtServers() []DhtServer {
1529         return cl.dhtServers
1530 }
1531
1532 func (cl *Client) AddDhtNodes(nodes []string) {
1533         for _, n := range nodes {
1534                 hmp := missinggo.SplitHostMaybePort(n)
1535                 ip := net.ParseIP(hmp.Host)
1536                 if ip == nil {
1537                         cl.logger.Printf("won't add DHT node with bad IP: %q", hmp.Host)
1538                         continue
1539                 }
1540                 ni := krpc.NodeInfo{
1541                         Addr: krpc.NodeAddr{
1542                                 IP:   ip,
1543                                 Port: hmp.Port,
1544                         },
1545                 }
1546                 cl.eachDhtServer(func(s DhtServer) {
1547                         s.AddNode(ni)
1548                 })
1549         }
1550 }
1551
1552 func (cl *Client) banPeerIP(ip net.IP) {
1553         // We can't take this from string, because it will lose netip's v4on6. net.ParseIP parses v4
1554         // addresses directly to v4on6, which doesn't compare equal with v4.
1555         ipAddr, ok := netip.AddrFromSlice(ip)
1556         if !ok {
1557                 panic(ip)
1558         }
1559         g.MakeMapIfNilAndSet(&cl.badPeerIPs, ipAddr, struct{}{})
1560         for _, t := range cl.torrents {
1561                 t.iterPeers(func(p *Peer) {
1562                         if p.remoteIp().Equal(ip) {
1563                                 t.logger.Levelf(log.Warning, "dropping peer %v with banned ip %v", p, ip)
1564                                 // Should this be a close?
1565                                 p.drop()
1566                         }
1567                 })
1568         }
1569 }
1570
1571 type newConnectionOpts struct {
1572         outgoing        bool
1573         remoteAddr      PeerRemoteAddr
1574         localPublicAddr peerLocalPublicAddr
1575         network         string
1576         connString      string
1577 }
1578
1579 func (cl *Client) newConnection(nc net.Conn, opts newConnectionOpts) (c *PeerConn) {
1580         if opts.network == "" {
1581                 panic(opts.remoteAddr)
1582         }
1583         c = &PeerConn{
1584                 Peer: Peer{
1585                         outgoing:        opts.outgoing,
1586                         choking:         true,
1587                         peerChoking:     true,
1588                         PeerMaxRequests: 250,
1589
1590                         RemoteAddr:      opts.remoteAddr,
1591                         localPublicAddr: opts.localPublicAddr,
1592                         Network:         opts.network,
1593                         callbacks:       &cl.config.Callbacks,
1594                 },
1595                 connString: opts.connString,
1596                 conn:       nc,
1597         }
1598         c.peerRequestDataAllocLimiter.Max = cl.config.MaxAllocPeerRequestDataPerConn
1599         c.initRequestState()
1600         // TODO: Need to be much more explicit about this, including allowing non-IP bannable addresses.
1601         if opts.remoteAddr != nil {
1602                 netipAddrPort, err := netip.ParseAddrPort(opts.remoteAddr.String())
1603                 if err == nil {
1604                         c.bannableAddr = Some(netipAddrPort.Addr())
1605                 }
1606         }
1607         c.peerImpl = c
1608         c.logger = cl.logger.WithDefaultLevel(log.Warning)
1609         c.logger = c.logger.WithContextText(fmt.Sprintf("%T %p", c, c))
1610         c.setRW(connStatsReadWriter{nc, c})
1611         c.r = &rateLimitedReader{
1612                 l: cl.config.DownloadRateLimiter,
1613                 r: c.r,
1614         }
1615         c.logger.Levelf(
1616                 log.Debug,
1617                 "inited with remoteAddr %v network %v outgoing %t",
1618                 opts.remoteAddr, opts.network, opts.outgoing,
1619         )
1620         for _, f := range cl.config.Callbacks.NewPeer {
1621                 f(&c.Peer)
1622         }
1623         return
1624 }
1625
1626 func (cl *Client) onDHTAnnouncePeer(ih metainfo.Hash, ip net.IP, port int, portOk bool) {
1627         cl.lock()
1628         defer cl.unlock()
1629         t := cl.torrent(ih)
1630         if t == nil {
1631                 return
1632         }
1633         t.addPeers([]PeerInfo{{
1634                 Addr:   ipPortAddr{ip, port},
1635                 Source: PeerSourceDhtAnnouncePeer,
1636         }})
1637 }
1638
1639 func firstNotNil(ips ...net.IP) net.IP {
1640         for _, ip := range ips {
1641                 if ip != nil {
1642                         return ip
1643                 }
1644         }
1645         return nil
1646 }
1647
1648 func (cl *Client) eachListener(f func(Listener) bool) {
1649         for _, s := range cl.listeners {
1650                 if !f(s) {
1651                         break
1652                 }
1653         }
1654 }
1655
1656 func (cl *Client) findListener(f func(Listener) bool) (ret Listener) {
1657         for i := 0; i < len(cl.listeners); i += 1 {
1658                 if ret = cl.listeners[i]; f(ret) {
1659                         return
1660                 }
1661         }
1662         return nil
1663 }
1664
1665 func (cl *Client) publicIp(peer net.IP) net.IP {
1666         // TODO: Use BEP 10 to determine how peers are seeing us.
1667         if peer.To4() != nil {
1668                 return firstNotNil(
1669                         cl.config.PublicIp4,
1670                         cl.findListenerIp(func(ip net.IP) bool { return ip.To4() != nil }),
1671                 )
1672         }
1673
1674         return firstNotNil(
1675                 cl.config.PublicIp6,
1676                 cl.findListenerIp(func(ip net.IP) bool { return ip.To4() == nil }),
1677         )
1678 }
1679
1680 func (cl *Client) findListenerIp(f func(net.IP) bool) net.IP {
1681         l := cl.findListener(
1682                 func(l Listener) bool {
1683                         return f(addrIpOrNil(l.Addr()))
1684                 },
1685         )
1686         if l == nil {
1687                 return nil
1688         }
1689         return addrIpOrNil(l.Addr())
1690 }
1691
1692 // Our IP as a peer should see it.
1693 func (cl *Client) publicAddr(peer net.IP) IpPort {
1694         return IpPort{IP: cl.publicIp(peer), Port: uint16(cl.incomingPeerPort())}
1695 }
1696
1697 // ListenAddrs addresses currently being listened to.
1698 func (cl *Client) ListenAddrs() (ret []net.Addr) {
1699         cl.lock()
1700         ret = make([]net.Addr, len(cl.listeners))
1701         for i := 0; i < len(cl.listeners); i += 1 {
1702                 ret[i] = cl.listeners[i].Addr()
1703         }
1704         cl.unlock()
1705         return
1706 }
1707
1708 func (cl *Client) PublicIPs() (ips []net.IP) {
1709         if ip := cl.config.PublicIp4; ip != nil {
1710                 ips = append(ips, ip)
1711         }
1712         if ip := cl.config.PublicIp6; ip != nil {
1713                 ips = append(ips, ip)
1714         }
1715         return
1716 }
1717
1718 func (cl *Client) onBadAccept(addr PeerRemoteAddr) {
1719         ipa, ok := tryIpPortFromNetAddr(addr)
1720         if !ok {
1721                 return
1722         }
1723         ip := maskIpForAcceptLimiting(ipa.IP)
1724         if cl.acceptLimiter == nil {
1725                 cl.acceptLimiter = make(map[ipStr]int)
1726         }
1727         cl.acceptLimiter[ipStr(ip.String())]++
1728 }
1729
1730 func maskIpForAcceptLimiting(ip net.IP) net.IP {
1731         if ip4 := ip.To4(); ip4 != nil {
1732                 return ip4.Mask(net.CIDRMask(24, 32))
1733         }
1734         return ip
1735 }
1736
1737 func (cl *Client) clearAcceptLimits() {
1738         cl.acceptLimiter = nil
1739 }
1740
1741 func (cl *Client) acceptLimitClearer() {
1742         for {
1743                 select {
1744                 case <-cl.closed.Done():
1745                         return
1746                 case <-time.After(15 * time.Minute):
1747                         cl.lock()
1748                         cl.clearAcceptLimits()
1749                         cl.unlock()
1750                 }
1751         }
1752 }
1753
1754 func (cl *Client) rateLimitAccept(ip net.IP) bool {
1755         if cl.config.DisableAcceptRateLimiting {
1756                 return false
1757         }
1758         return cl.acceptLimiter[ipStr(maskIpForAcceptLimiting(ip).String())] > 0
1759 }
1760
1761 func (cl *Client) rLock() {
1762         cl._mu.RLock()
1763 }
1764
1765 func (cl *Client) rUnlock() {
1766         cl._mu.RUnlock()
1767 }
1768
1769 func (cl *Client) lock() {
1770         cl._mu.Lock()
1771 }
1772
1773 func (cl *Client) unlock() {
1774         cl._mu.Unlock()
1775 }
1776
1777 func (cl *Client) locker() *lockWithDeferreds {
1778         return &cl._mu
1779 }
1780
1781 func (cl *Client) String() string {
1782         return fmt.Sprintf("<%[1]T %[1]p>", cl)
1783 }
1784
1785 // Returns connection-level aggregate connStats at the Client level. See the comment on
1786 // TorrentStats.ConnStats.
1787 func (cl *Client) ConnStats() ConnStats {
1788         return cl.connStats.Copy()
1789 }
1790
1791 func (cl *Client) Stats() ClientStats {
1792         cl.rLock()
1793         defer cl.rUnlock()
1794         return cl.statsLocked()
1795 }