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