]> Sergey Matveev's repositories - btrtrc.git/blob - torrent.go
Sleep webseed peers after unhandled errors
[btrtrc.git] / torrent.go
1 package torrent
2
3 import (
4         "bytes"
5         "container/heap"
6         "context"
7         "crypto/sha1"
8         "errors"
9         "fmt"
10         "io"
11         "math/rand"
12         "net/netip"
13         "net/url"
14         "sort"
15         "strings"
16         "text/tabwriter"
17         "time"
18         "unsafe"
19
20         "github.com/RoaringBitmap/roaring"
21         "github.com/anacrolix/chansync"
22         "github.com/anacrolix/chansync/events"
23         "github.com/anacrolix/dht/v2"
24         . "github.com/anacrolix/generics"
25         "github.com/anacrolix/log"
26         "github.com/anacrolix/missinggo/perf"
27         "github.com/anacrolix/missinggo/slices"
28         "github.com/anacrolix/missinggo/v2"
29         "github.com/anacrolix/missinggo/v2/bitmap"
30         "github.com/anacrolix/missinggo/v2/pubsub"
31         "github.com/anacrolix/multiless"
32         "github.com/anacrolix/sync"
33         "github.com/davecgh/go-spew/spew"
34         "github.com/pion/datachannel"
35
36         "github.com/anacrolix/torrent/bencode"
37         "github.com/anacrolix/torrent/common"
38         "github.com/anacrolix/torrent/metainfo"
39         pp "github.com/anacrolix/torrent/peer_protocol"
40         request_strategy "github.com/anacrolix/torrent/request-strategy"
41         "github.com/anacrolix/torrent/segments"
42         "github.com/anacrolix/torrent/storage"
43         "github.com/anacrolix/torrent/tracker"
44         typedRoaring "github.com/anacrolix/torrent/typed-roaring"
45         "github.com/anacrolix/torrent/webseed"
46         "github.com/anacrolix/torrent/webtorrent"
47 )
48
49 // Maintains state of torrent within a Client. Many methods should not be called before the info is
50 // available, see .Info and .GotInfo.
51 type Torrent struct {
52         // Torrent-level aggregate statistics. First in struct to ensure 64-bit
53         // alignment. See #262.
54         stats  ConnStats
55         cl     *Client
56         logger log.Logger
57
58         networkingEnabled      chansync.Flag
59         dataDownloadDisallowed chansync.Flag
60         dataUploadDisallowed   bool
61         userOnWriteChunkErr    func(error)
62
63         closed   chansync.SetOnce
64         onClose  []func()
65         infoHash metainfo.Hash
66         pieces   []Piece
67
68         // The order pieces are requested if there's no stronger reason like availability or priority.
69         pieceRequestOrder []int
70         // Values are the piece indices that changed.
71         pieceStateChanges pubsub.PubSub[PieceStateChange]
72         // The size of chunks to request from peers over the wire. This is
73         // normally 16KiB by convention these days.
74         chunkSize pp.Integer
75         chunkPool sync.Pool
76         // Total length of the torrent in bytes. Stored because it's not O(1) to
77         // get this from the info dict.
78         _length Option[int64]
79
80         // The storage to open when the info dict becomes available.
81         storageOpener *storage.Client
82         // Storage for torrent data.
83         storage *storage.Torrent
84         // Read-locked for using storage, and write-locked for Closing.
85         storageLock sync.RWMutex
86
87         // TODO: Only announce stuff is used?
88         metainfo metainfo.MetaInfo
89
90         // The info dict. nil if we don't have it (yet).
91         info      *metainfo.Info
92         fileIndex segments.Index
93         files     *[]*File
94
95         _chunksPerRegularPiece chunkIndexType
96
97         webSeeds map[string]*Peer
98         // Active peer connections, running message stream loops. TODO: Make this
99         // open (not-closed) connections only.
100         conns               map[*PeerConn]struct{}
101         maxEstablishedConns int
102         // Set of addrs to which we're attempting to connect. Connections are
103         // half-open until all handshakes are completed.
104         halfOpen map[string]PeerInfo
105
106         // Reserve of peers to connect to. A peer can be both here and in the
107         // active connections if were told about the peer after connecting with
108         // them. That encourages us to reconnect to peers that are well known in
109         // the swarm.
110         peers prioritizedPeers
111         // Whether we want to know to know more peers.
112         wantPeersEvent missinggo.Event
113         // An announcer for each tracker URL.
114         trackerAnnouncers map[string]torrentTrackerAnnouncer
115         // How many times we've initiated a DHT announce. TODO: Move into stats.
116         numDHTAnnounces int
117
118         // Name used if the info name isn't available. Should be cleared when the
119         // Info does become available.
120         nameMu      sync.RWMutex
121         displayName string
122
123         // The bencoded bytes of the info dict. This is actively manipulated if
124         // the info bytes aren't initially available, and we try to fetch them
125         // from peers.
126         metadataBytes []byte
127         // Each element corresponds to the 16KiB metadata pieces. If true, we have
128         // received that piece.
129         metadataCompletedChunks []bool
130         metadataChanged         sync.Cond
131
132         // Closed when .Info is obtained.
133         gotMetainfoC chan struct{}
134
135         readers                map[*reader]struct{}
136         _readerNowPieces       bitmap.Bitmap
137         _readerReadaheadPieces bitmap.Bitmap
138
139         // A cache of pieces we need to get. Calculated from various piece and
140         // file priorities and completion states elsewhere.
141         _pendingPieces roaring.Bitmap
142         // A cache of completed piece indices.
143         _completedPieces roaring.Bitmap
144         // Pieces that need to be hashed.
145         piecesQueuedForHash       bitmap.Bitmap
146         activePieceHashes         int
147         initialPieceCheckDisabled bool
148
149         connsWithAllPieces map[*Peer]struct{}
150
151         requestState map[RequestIndex]requestState
152         // Chunks we've written to since the corresponding piece was last checked.
153         dirtyChunks typedRoaring.Bitmap[RequestIndex]
154
155         pex pexState
156
157         // Is On when all pieces are complete.
158         Complete chansync.Flag
159
160         // Torrent sources in use keyed by the source string.
161         activeSources sync.Map
162         sourcesLogger log.Logger
163
164         smartBanCache smartBanCache
165
166         // Large allocations reused between request state updates.
167         requestPieceStates []request_strategy.PieceRequestOrderState
168         requestIndexes     []RequestIndex
169 }
170
171 func (t *Torrent) length() int64 {
172         return t._length.Value
173 }
174
175 func (t *Torrent) selectivePieceAvailabilityFromPeers(i pieceIndex) (count int) {
176         // This could be done with roaring.BitSliceIndexing.
177         t.iterPeers(func(peer *Peer) {
178                 if _, ok := t.connsWithAllPieces[peer]; ok {
179                         return
180                 }
181                 if peer.peerHasPiece(i) {
182                         count++
183                 }
184         })
185         return
186 }
187
188 func (t *Torrent) decPieceAvailability(i pieceIndex) {
189         if !t.haveInfo() {
190                 return
191         }
192         p := t.piece(i)
193         if p.relativeAvailability <= 0 {
194                 panic(p.relativeAvailability)
195         }
196         p.relativeAvailability--
197         t.updatePieceRequestOrder(i)
198 }
199
200 func (t *Torrent) incPieceAvailability(i pieceIndex) {
201         // If we don't the info, this should be reconciled when we do.
202         if t.haveInfo() {
203                 p := t.piece(i)
204                 p.relativeAvailability++
205                 t.updatePieceRequestOrder(i)
206         }
207 }
208
209 func (t *Torrent) readerNowPieces() bitmap.Bitmap {
210         return t._readerNowPieces
211 }
212
213 func (t *Torrent) readerReadaheadPieces() bitmap.Bitmap {
214         return t._readerReadaheadPieces
215 }
216
217 func (t *Torrent) ignorePieceForRequests(i pieceIndex) bool {
218         return !t.wantPieceIndex(i)
219 }
220
221 // Returns a channel that is closed when the Torrent is closed.
222 func (t *Torrent) Closed() events.Done {
223         return t.closed.Done()
224 }
225
226 // KnownSwarm returns the known subset of the peers in the Torrent's swarm, including active,
227 // pending, and half-open peers.
228 func (t *Torrent) KnownSwarm() (ks []PeerInfo) {
229         // Add pending peers to the list
230         t.peers.Each(func(peer PeerInfo) {
231                 ks = append(ks, peer)
232         })
233
234         // Add half-open peers to the list
235         for _, peer := range t.halfOpen {
236                 ks = append(ks, peer)
237         }
238
239         // Add active peers to the list
240         for conn := range t.conns {
241                 ks = append(ks, PeerInfo{
242                         Id:     conn.PeerID,
243                         Addr:   conn.RemoteAddr,
244                         Source: conn.Discovery,
245                         // > If the connection is encrypted, that's certainly enough to set SupportsEncryption.
246                         // > But if we're not connected to them with an encrypted connection, I couldn't say
247                         // > what's appropriate. We can carry forward the SupportsEncryption value as we
248                         // > received it from trackers/DHT/PEX, or just use the encryption state for the
249                         // > connection. It's probably easiest to do the latter for now.
250                         // https://github.com/anacrolix/torrent/pull/188
251                         SupportsEncryption: conn.headerEncrypted,
252                 })
253         }
254
255         return
256 }
257
258 func (t *Torrent) setChunkSize(size pp.Integer) {
259         t.chunkSize = size
260         t.chunkPool = sync.Pool{
261                 New: func() interface{} {
262                         b := make([]byte, size)
263                         return &b
264                 },
265         }
266 }
267
268 func (t *Torrent) pieceComplete(piece pieceIndex) bool {
269         return t._completedPieces.Contains(bitmap.BitIndex(piece))
270 }
271
272 func (t *Torrent) pieceCompleteUncached(piece pieceIndex) storage.Completion {
273         if t.storage == nil {
274                 return storage.Completion{Complete: false, Ok: true}
275         }
276         return t.pieces[piece].Storage().Completion()
277 }
278
279 // There's a connection to that address already.
280 func (t *Torrent) addrActive(addr string) bool {
281         if _, ok := t.halfOpen[addr]; ok {
282                 return true
283         }
284         for c := range t.conns {
285                 ra := c.RemoteAddr
286                 if ra.String() == addr {
287                         return true
288                 }
289         }
290         return false
291 }
292
293 func (t *Torrent) appendUnclosedConns(ret []*PeerConn) []*PeerConn {
294         return t.appendConns(ret, func(conn *PeerConn) bool {
295                 return !conn.closed.IsSet()
296         })
297 }
298
299 func (t *Torrent) appendConns(ret []*PeerConn, f func(*PeerConn) bool) []*PeerConn {
300         for c := range t.conns {
301                 if f(c) {
302                         ret = append(ret, c)
303                 }
304         }
305         return ret
306 }
307
308 func (t *Torrent) addPeer(p PeerInfo) (added bool) {
309         cl := t.cl
310         torrent.Add(fmt.Sprintf("peers added by source %q", p.Source), 1)
311         if t.closed.IsSet() {
312                 return false
313         }
314         if ipAddr, ok := tryIpPortFromNetAddr(p.Addr); ok {
315                 if cl.badPeerIPPort(ipAddr.IP, ipAddr.Port) {
316                         torrent.Add("peers not added because of bad addr", 1)
317                         // cl.logger.Printf("peers not added because of bad addr: %v", p)
318                         return false
319                 }
320         }
321         if replaced, ok := t.peers.AddReturningReplacedPeer(p); ok {
322                 torrent.Add("peers replaced", 1)
323                 if !replaced.equal(p) {
324                         t.logger.WithDefaultLevel(log.Debug).Printf("added %v replacing %v", p, replaced)
325                         added = true
326                 }
327         } else {
328                 added = true
329         }
330         t.openNewConns()
331         for t.peers.Len() > cl.config.TorrentPeersHighWater {
332                 _, ok := t.peers.DeleteMin()
333                 if ok {
334                         torrent.Add("excess reserve peers discarded", 1)
335                 }
336         }
337         return
338 }
339
340 func (t *Torrent) invalidateMetadata() {
341         for i := 0; i < len(t.metadataCompletedChunks); i++ {
342                 t.metadataCompletedChunks[i] = false
343         }
344         t.nameMu.Lock()
345         t.gotMetainfoC = make(chan struct{})
346         t.info = nil
347         t.nameMu.Unlock()
348 }
349
350 func (t *Torrent) saveMetadataPiece(index int, data []byte) {
351         if t.haveInfo() {
352                 return
353         }
354         if index >= len(t.metadataCompletedChunks) {
355                 t.logger.Printf("%s: ignoring metadata piece %d", t, index)
356                 return
357         }
358         copy(t.metadataBytes[(1<<14)*index:], data)
359         t.metadataCompletedChunks[index] = true
360 }
361
362 func (t *Torrent) metadataPieceCount() int {
363         return (len(t.metadataBytes) + (1 << 14) - 1) / (1 << 14)
364 }
365
366 func (t *Torrent) haveMetadataPiece(piece int) bool {
367         if t.haveInfo() {
368                 return (1<<14)*piece < len(t.metadataBytes)
369         } else {
370                 return piece < len(t.metadataCompletedChunks) && t.metadataCompletedChunks[piece]
371         }
372 }
373
374 func (t *Torrent) metadataSize() int {
375         return len(t.metadataBytes)
376 }
377
378 func infoPieceHashes(info *metainfo.Info) (ret [][]byte) {
379         for i := 0; i < len(info.Pieces); i += sha1.Size {
380                 ret = append(ret, info.Pieces[i:i+sha1.Size])
381         }
382         return
383 }
384
385 func (t *Torrent) makePieces() {
386         hashes := infoPieceHashes(t.info)
387         t.pieces = make([]Piece, len(hashes))
388         for i, hash := range hashes {
389                 piece := &t.pieces[i]
390                 piece.t = t
391                 piece.index = pieceIndex(i)
392                 piece.noPendingWrites.L = &piece.pendingWritesMutex
393                 piece.hash = (*metainfo.Hash)(unsafe.Pointer(&hash[0]))
394                 files := *t.files
395                 beginFile := pieceFirstFileIndex(piece.torrentBeginOffset(), files)
396                 endFile := pieceEndFileIndex(piece.torrentEndOffset(), files)
397                 piece.files = files[beginFile:endFile]
398         }
399 }
400
401 // Returns the index of the first file containing the piece. files must be
402 // ordered by offset.
403 func pieceFirstFileIndex(pieceOffset int64, files []*File) int {
404         for i, f := range files {
405                 if f.offset+f.length > pieceOffset {
406                         return i
407                 }
408         }
409         return 0
410 }
411
412 // Returns the index after the last file containing the piece. files must be
413 // ordered by offset.
414 func pieceEndFileIndex(pieceEndOffset int64, files []*File) int {
415         for i, f := range files {
416                 if f.offset+f.length >= pieceEndOffset {
417                         return i + 1
418                 }
419         }
420         return 0
421 }
422
423 func (t *Torrent) cacheLength() {
424         var l int64
425         for _, f := range t.info.UpvertedFiles() {
426                 l += f.Length
427         }
428         t._length = Some(l)
429 }
430
431 // TODO: This shouldn't fail for storage reasons. Instead we should handle storage failure
432 // separately.
433 func (t *Torrent) setInfo(info *metainfo.Info) error {
434         if err := validateInfo(info); err != nil {
435                 return fmt.Errorf("bad info: %s", err)
436         }
437         if t.storageOpener != nil {
438                 var err error
439                 t.storage, err = t.storageOpener.OpenTorrent(info, t.infoHash)
440                 if err != nil {
441                         return fmt.Errorf("error opening torrent storage: %s", err)
442                 }
443         }
444         t.nameMu.Lock()
445         t.info = info
446         t.nameMu.Unlock()
447         t._chunksPerRegularPiece = chunkIndexType((pp.Integer(t.usualPieceSize()) + t.chunkSize - 1) / t.chunkSize)
448         t.updateComplete()
449         t.fileIndex = segments.NewIndex(common.LengthIterFromUpvertedFiles(info.UpvertedFiles()))
450         t.displayName = "" // Save a few bytes lol.
451         t.initFiles()
452         t.cacheLength()
453         t.makePieces()
454         return nil
455 }
456
457 func (t *Torrent) pieceRequestOrderKey(i int) request_strategy.PieceRequestOrderKey {
458         return request_strategy.PieceRequestOrderKey{
459                 InfoHash: t.infoHash,
460                 Index:    i,
461         }
462 }
463
464 // This seems to be all the follow-up tasks after info is set, that can't fail.
465 func (t *Torrent) onSetInfo() {
466         t.pieceRequestOrder = rand.Perm(t.numPieces())
467         t.initPieceRequestOrder()
468         MakeSliceWithLength(&t.requestPieceStates, t.numPieces())
469         for i := range t.pieces {
470                 p := &t.pieces[i]
471                 // Need to add relativeAvailability before updating piece completion, as that may result in conns
472                 // being dropped.
473                 if p.relativeAvailability != 0 {
474                         panic(p.relativeAvailability)
475                 }
476                 p.relativeAvailability = t.selectivePieceAvailabilityFromPeers(i)
477                 t.addRequestOrderPiece(i)
478                 t.updatePieceCompletion(i)
479                 if !t.initialPieceCheckDisabled && !p.storageCompletionOk {
480                         // t.logger.Printf("piece %s completion unknown, queueing check", p)
481                         t.queuePieceCheck(i)
482                 }
483         }
484         t.cl.event.Broadcast()
485         close(t.gotMetainfoC)
486         t.updateWantPeersEvent()
487         t.requestState = make(map[RequestIndex]requestState)
488         t.tryCreateMorePieceHashers()
489         t.iterPeers(func(p *Peer) {
490                 p.onGotInfo(t.info)
491                 p.updateRequests("onSetInfo")
492         })
493 }
494
495 // Called when metadata for a torrent becomes available.
496 func (t *Torrent) setInfoBytesLocked(b []byte) error {
497         if metainfo.HashBytes(b) != t.infoHash {
498                 return errors.New("info bytes have wrong hash")
499         }
500         var info metainfo.Info
501         if err := bencode.Unmarshal(b, &info); err != nil {
502                 return fmt.Errorf("error unmarshalling info bytes: %s", err)
503         }
504         t.metadataBytes = b
505         t.metadataCompletedChunks = nil
506         if t.info != nil {
507                 return nil
508         }
509         if err := t.setInfo(&info); err != nil {
510                 return err
511         }
512         t.onSetInfo()
513         return nil
514 }
515
516 func (t *Torrent) haveAllMetadataPieces() bool {
517         if t.haveInfo() {
518                 return true
519         }
520         if t.metadataCompletedChunks == nil {
521                 return false
522         }
523         for _, have := range t.metadataCompletedChunks {
524                 if !have {
525                         return false
526                 }
527         }
528         return true
529 }
530
531 // TODO: Propagate errors to disconnect peer.
532 func (t *Torrent) setMetadataSize(size int) (err error) {
533         if t.haveInfo() {
534                 // We already know the correct metadata size.
535                 return
536         }
537         if uint32(size) > maxMetadataSize {
538                 return log.WithLevel(log.Warning, errors.New("bad size"))
539         }
540         if len(t.metadataBytes) == size {
541                 return
542         }
543         t.metadataBytes = make([]byte, size)
544         t.metadataCompletedChunks = make([]bool, (size+(1<<14)-1)/(1<<14))
545         t.metadataChanged.Broadcast()
546         for c := range t.conns {
547                 c.requestPendingMetadata()
548         }
549         return
550 }
551
552 // The current working name for the torrent. Either the name in the info dict,
553 // or a display name given such as by the dn value in a magnet link, or "".
554 func (t *Torrent) name() string {
555         t.nameMu.RLock()
556         defer t.nameMu.RUnlock()
557         if t.haveInfo() {
558                 return t.info.BestName()
559         }
560         if t.displayName != "" {
561                 return t.displayName
562         }
563         return "infohash:" + t.infoHash.HexString()
564 }
565
566 func (t *Torrent) pieceState(index pieceIndex) (ret PieceState) {
567         p := &t.pieces[index]
568         ret.Priority = t.piecePriority(index)
569         ret.Completion = p.completion()
570         ret.QueuedForHash = p.queuedForHash()
571         ret.Hashing = p.hashing
572         ret.Checking = ret.QueuedForHash || ret.Hashing
573         ret.Marking = p.marking
574         if !ret.Complete && t.piecePartiallyDownloaded(index) {
575                 ret.Partial = true
576         }
577         return
578 }
579
580 func (t *Torrent) metadataPieceSize(piece int) int {
581         return metadataPieceSize(len(t.metadataBytes), piece)
582 }
583
584 func (t *Torrent) newMetadataExtensionMessage(c *PeerConn, msgType pp.ExtendedMetadataRequestMsgType, piece int, data []byte) pp.Message {
585         return pp.Message{
586                 Type:       pp.Extended,
587                 ExtendedID: c.PeerExtensionIDs[pp.ExtensionNameMetadata],
588                 ExtendedPayload: append(bencode.MustMarshal(pp.ExtendedMetadataRequestMsg{
589                         Piece:     piece,
590                         TotalSize: len(t.metadataBytes),
591                         Type:      msgType,
592                 }), data...),
593         }
594 }
595
596 type pieceAvailabilityRun struct {
597         Count        pieceIndex
598         Availability int
599 }
600
601 func (me pieceAvailabilityRun) String() string {
602         return fmt.Sprintf("%v(%v)", me.Count, me.Availability)
603 }
604
605 func (t *Torrent) pieceAvailabilityRuns() (ret []pieceAvailabilityRun) {
606         rle := missinggo.NewRunLengthEncoder(func(el interface{}, count uint64) {
607                 ret = append(ret, pieceAvailabilityRun{Availability: el.(int), Count: int(count)})
608         })
609         for i := range t.pieces {
610                 rle.Append(t.pieces[i].availability(), 1)
611         }
612         rle.Flush()
613         return
614 }
615
616 func (t *Torrent) pieceAvailabilityFrequencies() (freqs []int) {
617         freqs = make([]int, t.numActivePeers()+1)
618         for i := range t.pieces {
619                 freqs[t.piece(i).availability()]++
620         }
621         return
622 }
623
624 func (t *Torrent) pieceStateRuns() (ret PieceStateRuns) {
625         rle := missinggo.NewRunLengthEncoder(func(el interface{}, count uint64) {
626                 ret = append(ret, PieceStateRun{
627                         PieceState: el.(PieceState),
628                         Length:     int(count),
629                 })
630         })
631         for index := range t.pieces {
632                 rle.Append(t.pieceState(pieceIndex(index)), 1)
633         }
634         rle.Flush()
635         return
636 }
637
638 // Produces a small string representing a PieceStateRun.
639 func (psr PieceStateRun) String() (ret string) {
640         ret = fmt.Sprintf("%d", psr.Length)
641         ret += func() string {
642                 switch psr.Priority {
643                 case PiecePriorityNext:
644                         return "N"
645                 case PiecePriorityNormal:
646                         return "."
647                 case PiecePriorityReadahead:
648                         return "R"
649                 case PiecePriorityNow:
650                         return "!"
651                 case PiecePriorityHigh:
652                         return "H"
653                 default:
654                         return ""
655                 }
656         }()
657         if psr.Hashing {
658                 ret += "H"
659         }
660         if psr.QueuedForHash {
661                 ret += "Q"
662         }
663         if psr.Marking {
664                 ret += "M"
665         }
666         if psr.Partial {
667                 ret += "P"
668         }
669         if psr.Complete {
670                 ret += "C"
671         }
672         if !psr.Ok {
673                 ret += "?"
674         }
675         return
676 }
677
678 func (t *Torrent) writeStatus(w io.Writer) {
679         fmt.Fprintf(w, "Infohash: %s\n", t.infoHash.HexString())
680         fmt.Fprintf(w, "Metadata length: %d\n", t.metadataSize())
681         if !t.haveInfo() {
682                 fmt.Fprintf(w, "Metadata have: ")
683                 for _, h := range t.metadataCompletedChunks {
684                         fmt.Fprintf(w, "%c", func() rune {
685                                 if h {
686                                         return 'H'
687                                 } else {
688                                         return '.'
689                                 }
690                         }())
691                 }
692                 fmt.Fprintln(w)
693         }
694         fmt.Fprintf(w, "Piece length: %s\n",
695                 func() string {
696                         if t.haveInfo() {
697                                 return fmt.Sprintf("%v (%v chunks)",
698                                         t.usualPieceSize(),
699                                         float64(t.usualPieceSize())/float64(t.chunkSize))
700                         } else {
701                                 return "no info"
702                         }
703                 }(),
704         )
705         if t.info != nil {
706                 fmt.Fprintf(w, "Num Pieces: %d (%d completed)\n", t.numPieces(), t.numPiecesCompleted())
707                 fmt.Fprintf(w, "Piece States: %s\n", t.pieceStateRuns())
708                 // Generates a huge, unhelpful listing when piece availability is very scattered. Prefer
709                 // availability frequencies instead.
710                 if false {
711                         fmt.Fprintf(w, "Piece availability: %v\n", strings.Join(func() (ret []string) {
712                                 for _, run := range t.pieceAvailabilityRuns() {
713                                         ret = append(ret, run.String())
714                                 }
715                                 return
716                         }(), " "))
717                 }
718                 fmt.Fprintf(w, "Piece availability frequency: %v\n", strings.Join(
719                         func() (ret []string) {
720                                 for avail, freq := range t.pieceAvailabilityFrequencies() {
721                                         if freq == 0 {
722                                                 continue
723                                         }
724                                         ret = append(ret, fmt.Sprintf("%v: %v", avail, freq))
725                                 }
726                                 return
727                         }(),
728                         ", "))
729         }
730         fmt.Fprintf(w, "Reader Pieces:")
731         t.forReaderOffsetPieces(func(begin, end pieceIndex) (again bool) {
732                 fmt.Fprintf(w, " %d:%d", begin, end)
733                 return true
734         })
735         fmt.Fprintln(w)
736
737         fmt.Fprintf(w, "Enabled trackers:\n")
738         func() {
739                 tw := tabwriter.NewWriter(w, 0, 0, 2, ' ', 0)
740                 fmt.Fprintf(tw, "    URL\tExtra\n")
741                 for _, ta := range slices.Sort(slices.FromMapElems(t.trackerAnnouncers), func(l, r torrentTrackerAnnouncer) bool {
742                         lu := l.URL()
743                         ru := r.URL()
744                         var luns, runs url.URL = *lu, *ru
745                         luns.Scheme = ""
746                         runs.Scheme = ""
747                         var ml missinggo.MultiLess
748                         ml.StrictNext(luns.String() == runs.String(), luns.String() < runs.String())
749                         ml.StrictNext(lu.String() == ru.String(), lu.String() < ru.String())
750                         return ml.Less()
751                 }).([]torrentTrackerAnnouncer) {
752                         fmt.Fprintf(tw, "    %q\t%v\n", ta.URL(), ta.statusLine())
753                 }
754                 tw.Flush()
755         }()
756
757         fmt.Fprintf(w, "DHT Announces: %d\n", t.numDHTAnnounces)
758
759         spew.NewDefaultConfig()
760         spew.Fdump(w, t.statsLocked())
761
762         peers := t.peersAsSlice()
763         sort.Slice(peers, func(_i, _j int) bool {
764                 i := peers[_i]
765                 j := peers[_j]
766                 if less, ok := multiless.New().EagerSameLess(
767                         i.downloadRate() == j.downloadRate(), i.downloadRate() < j.downloadRate(),
768                 ).LessOk(); ok {
769                         return less
770                 }
771                 return worseConn(i, j)
772         })
773         var buf bytes.Buffer
774         for i, c := range peers {
775                 fmt.Fprintf(w, "%2d. ", i+1)
776                 buf.Reset()
777                 c.writeStatus(&buf, t)
778                 w.Write(bytes.TrimRight(
779                         bytes.ReplaceAll(buf.Bytes(), []byte("\n"), []byte("\n    ")),
780                         " "))
781         }
782 }
783
784 func (t *Torrent) haveInfo() bool {
785         return t.info != nil
786 }
787
788 // Returns a run-time generated MetaInfo that includes the info bytes and
789 // announce-list as currently known to the client.
790 func (t *Torrent) newMetaInfo() metainfo.MetaInfo {
791         return metainfo.MetaInfo{
792                 CreationDate: time.Now().Unix(),
793                 Comment:      "dynamic metainfo from client",
794                 CreatedBy:    "go.torrent",
795                 AnnounceList: t.metainfo.UpvertedAnnounceList().Clone(),
796                 InfoBytes: func() []byte {
797                         if t.haveInfo() {
798                                 return t.metadataBytes
799                         } else {
800                                 return nil
801                         }
802                 }(),
803                 UrlList: func() []string {
804                         ret := make([]string, 0, len(t.webSeeds))
805                         for url := range t.webSeeds {
806                                 ret = append(ret, url)
807                         }
808                         return ret
809                 }(),
810         }
811 }
812
813 // Get bytes left
814 func (t *Torrent) BytesMissing() (n int64) {
815         t.cl.rLock()
816         n = t.bytesMissingLocked()
817         t.cl.rUnlock()
818         return
819 }
820
821 func (t *Torrent) bytesMissingLocked() int64 {
822         return t.bytesLeft()
823 }
824
825 func iterFlipped(b *roaring.Bitmap, end uint64, cb func(uint32) bool) {
826         roaring.Flip(b, 0, end).Iterate(cb)
827 }
828
829 func (t *Torrent) bytesLeft() (left int64) {
830         iterFlipped(&t._completedPieces, uint64(t.numPieces()), func(x uint32) bool {
831                 p := t.piece(pieceIndex(x))
832                 left += int64(p.length() - p.numDirtyBytes())
833                 return true
834         })
835         return
836 }
837
838 // Bytes left to give in tracker announces.
839 func (t *Torrent) bytesLeftAnnounce() int64 {
840         if t.haveInfo() {
841                 return t.bytesLeft()
842         } else {
843                 return -1
844         }
845 }
846
847 func (t *Torrent) piecePartiallyDownloaded(piece pieceIndex) bool {
848         if t.pieceComplete(piece) {
849                 return false
850         }
851         if t.pieceAllDirty(piece) {
852                 return false
853         }
854         return t.pieces[piece].hasDirtyChunks()
855 }
856
857 func (t *Torrent) usualPieceSize() int {
858         return int(t.info.PieceLength)
859 }
860
861 func (t *Torrent) numPieces() pieceIndex {
862         return t.info.NumPieces()
863 }
864
865 func (t *Torrent) numPiecesCompleted() (num pieceIndex) {
866         return pieceIndex(t._completedPieces.GetCardinality())
867 }
868
869 func (t *Torrent) close(wg *sync.WaitGroup) (err error) {
870         if !t.closed.Set() {
871                 err = errors.New("already closed")
872                 return
873         }
874         for _, f := range t.onClose {
875                 f()
876         }
877         if t.storage != nil {
878                 wg.Add(1)
879                 go func() {
880                         defer wg.Done()
881                         t.storageLock.Lock()
882                         defer t.storageLock.Unlock()
883                         if f := t.storage.Close; f != nil {
884                                 err1 := f()
885                                 if err1 != nil {
886                                         t.logger.WithDefaultLevel(log.Warning).Printf("error closing storage: %v", err1)
887                                 }
888                         }
889                 }()
890         }
891         t.iterPeers(func(p *Peer) {
892                 p.close()
893         })
894         if t.storage != nil {
895                 t.deletePieceRequestOrder()
896         }
897         for i := range t.pieces {
898                 p := t.piece(i)
899                 if p.relativeAvailability != 0 {
900                         panic(fmt.Sprintf("piece %v has relative availability %v", i, p.relativeAvailability))
901                 }
902         }
903         t.pex.Reset()
904         t.cl.event.Broadcast()
905         t.pieceStateChanges.Close()
906         t.updateWantPeersEvent()
907         return
908 }
909
910 func (t *Torrent) requestOffset(r Request) int64 {
911         return torrentRequestOffset(t.length(), int64(t.usualPieceSize()), r)
912 }
913
914 // Return the request that would include the given offset into the torrent data. Returns !ok if
915 // there is no such request.
916 func (t *Torrent) offsetRequest(off int64) (req Request, ok bool) {
917         return torrentOffsetRequest(t.length(), t.info.PieceLength, int64(t.chunkSize), off)
918 }
919
920 func (t *Torrent) writeChunk(piece int, begin int64, data []byte) (err error) {
921         defer perf.ScopeTimerErr(&err)()
922         n, err := t.pieces[piece].Storage().WriteAt(data, begin)
923         if err == nil && n != len(data) {
924                 err = io.ErrShortWrite
925         }
926         return err
927 }
928
929 func (t *Torrent) bitfield() (bf []bool) {
930         bf = make([]bool, t.numPieces())
931         t._completedPieces.Iterate(func(piece uint32) (again bool) {
932                 bf[piece] = true
933                 return true
934         })
935         return
936 }
937
938 func (t *Torrent) pieceNumChunks(piece pieceIndex) chunkIndexType {
939         return chunkIndexType((t.pieceLength(piece) + t.chunkSize - 1) / t.chunkSize)
940 }
941
942 func (t *Torrent) chunksPerRegularPiece() chunkIndexType {
943         return t._chunksPerRegularPiece
944 }
945
946 func (t *Torrent) numChunks() RequestIndex {
947         if t.numPieces() == 0 {
948                 return 0
949         }
950         return RequestIndex(t.numPieces()-1)*t.chunksPerRegularPiece() + t.pieceNumChunks(t.numPieces()-1)
951 }
952
953 func (t *Torrent) pendAllChunkSpecs(pieceIndex pieceIndex) {
954         t.dirtyChunks.RemoveRange(
955                 uint64(t.pieceRequestIndexOffset(pieceIndex)),
956                 uint64(t.pieceRequestIndexOffset(pieceIndex+1)))
957 }
958
959 func (t *Torrent) pieceLength(piece pieceIndex) pp.Integer {
960         if t.info.PieceLength == 0 {
961                 // There will be no variance amongst pieces. Only pain.
962                 return 0
963         }
964         if piece == t.numPieces()-1 {
965                 ret := pp.Integer(t.length() % t.info.PieceLength)
966                 if ret != 0 {
967                         return ret
968                 }
969         }
970         return pp.Integer(t.info.PieceLength)
971 }
972
973 func (t *Torrent) smartBanBlockCheckingWriter(piece pieceIndex) *blockCheckingWriter {
974         return &blockCheckingWriter{
975                 cache:        &t.smartBanCache,
976                 requestIndex: t.pieceRequestIndexOffset(piece),
977                 chunkSize:    t.chunkSize.Int(),
978         }
979 }
980
981 func (t *Torrent) hashPiece(piece pieceIndex) (
982         ret metainfo.Hash,
983         // These are peers that sent us blocks that differ from what we hash here.
984         differingPeers map[bannableAddr]struct{},
985         err error,
986 ) {
987         p := t.piece(piece)
988         p.waitNoPendingWrites()
989         storagePiece := t.pieces[piece].Storage()
990
991         // Does the backend want to do its own hashing?
992         if i, ok := storagePiece.PieceImpl.(storage.SelfHashing); ok {
993                 var sum metainfo.Hash
994                 // log.Printf("A piece decided to self-hash: %d", piece)
995                 sum, err = i.SelfHash()
996                 missinggo.CopyExact(&ret, sum)
997                 return
998         }
999
1000         hash := pieceHash.New()
1001         const logPieceContents = false
1002         smartBanWriter := t.smartBanBlockCheckingWriter(piece)
1003         writers := []io.Writer{hash, smartBanWriter}
1004         var examineBuf bytes.Buffer
1005         if logPieceContents {
1006                 writers = append(writers, &examineBuf)
1007         }
1008         _, err = storagePiece.WriteTo(io.MultiWriter(writers...))
1009         if logPieceContents {
1010                 t.logger.WithDefaultLevel(log.Debug).Printf("hashed %q with copy err %v", examineBuf.Bytes(), err)
1011         }
1012         smartBanWriter.Flush()
1013         differingPeers = smartBanWriter.badPeers
1014         missinggo.CopyExact(&ret, hash.Sum(nil))
1015         return
1016 }
1017
1018 func (t *Torrent) haveAnyPieces() bool {
1019         return !t._completedPieces.IsEmpty()
1020 }
1021
1022 func (t *Torrent) haveAllPieces() bool {
1023         if !t.haveInfo() {
1024                 return false
1025         }
1026         return t._completedPieces.GetCardinality() == bitmap.BitRange(t.numPieces())
1027 }
1028
1029 func (t *Torrent) havePiece(index pieceIndex) bool {
1030         return t.haveInfo() && t.pieceComplete(index)
1031 }
1032
1033 func (t *Torrent) maybeDropMutuallyCompletePeer(
1034         // I'm not sure about taking peer here, not all peer implementations actually drop. Maybe that's
1035         // okay?
1036         p *Peer,
1037 ) {
1038         if !t.cl.config.DropMutuallyCompletePeers {
1039                 return
1040         }
1041         if !t.haveAllPieces() {
1042                 return
1043         }
1044         if all, known := p.peerHasAllPieces(); !(known && all) {
1045                 return
1046         }
1047         if p.useful() {
1048                 return
1049         }
1050         t.logger.WithDefaultLevel(log.Debug).Printf("dropping %v, which is mutually complete", p)
1051         p.drop()
1052 }
1053
1054 func (t *Torrent) haveChunk(r Request) (ret bool) {
1055         // defer func() {
1056         //      log.Println("have chunk", r, ret)
1057         // }()
1058         if !t.haveInfo() {
1059                 return false
1060         }
1061         if t.pieceComplete(pieceIndex(r.Index)) {
1062                 return true
1063         }
1064         p := &t.pieces[r.Index]
1065         return !p.pendingChunk(r.ChunkSpec, t.chunkSize)
1066 }
1067
1068 func chunkIndexFromChunkSpec(cs ChunkSpec, chunkSize pp.Integer) chunkIndexType {
1069         return chunkIndexType(cs.Begin / chunkSize)
1070 }
1071
1072 func (t *Torrent) wantPieceIndex(index pieceIndex) bool {
1073         return t._pendingPieces.Contains(uint32(index))
1074 }
1075
1076 // A pool of []*PeerConn, to reduce allocations in functions that need to index or sort Torrent
1077 // conns (which is a map).
1078 var peerConnSlices sync.Pool
1079
1080 func getPeerConnSlice(cap int) []*PeerConn {
1081         getInterface := peerConnSlices.Get()
1082         if getInterface == nil {
1083                 return make([]*PeerConn, 0, cap)
1084         } else {
1085                 return getInterface.([]*PeerConn)[:0]
1086         }
1087 }
1088
1089 // The worst connection is one that hasn't been sent, or sent anything useful for the longest. A bad
1090 // connection is one that usually sends us unwanted pieces, or has been in the worse half of the
1091 // established connections for more than a minute. This is O(n log n). If there was a way to not
1092 // consider the position of a conn relative to the total number, it could be reduced to O(n).
1093 func (t *Torrent) worstBadConn() (ret *PeerConn) {
1094         wcs := worseConnSlice{conns: t.appendUnclosedConns(getPeerConnSlice(len(t.conns)))}
1095         defer peerConnSlices.Put(wcs.conns)
1096         wcs.initKeys()
1097         heap.Init(&wcs)
1098         for wcs.Len() != 0 {
1099                 c := heap.Pop(&wcs).(*PeerConn)
1100                 if c._stats.ChunksReadWasted.Int64() >= 6 && c._stats.ChunksReadWasted.Int64() > c._stats.ChunksReadUseful.Int64() {
1101                         return c
1102                 }
1103                 // If the connection is in the worst half of the established
1104                 // connection quota and is older than a minute.
1105                 if wcs.Len() >= (t.maxEstablishedConns+1)/2 {
1106                         // Give connections 1 minute to prove themselves.
1107                         if time.Since(c.completedHandshake) > time.Minute {
1108                                 return c
1109                         }
1110                 }
1111         }
1112         return nil
1113 }
1114
1115 type PieceStateChange struct {
1116         Index int
1117         PieceState
1118 }
1119
1120 func (t *Torrent) publishPieceChange(piece pieceIndex) {
1121         t.cl._mu.Defer(func() {
1122                 cur := t.pieceState(piece)
1123                 p := &t.pieces[piece]
1124                 if cur != p.publicPieceState {
1125                         p.publicPieceState = cur
1126                         t.pieceStateChanges.Publish(PieceStateChange{
1127                                 int(piece),
1128                                 cur,
1129                         })
1130                 }
1131         })
1132 }
1133
1134 func (t *Torrent) pieceNumPendingChunks(piece pieceIndex) pp.Integer {
1135         if t.pieceComplete(piece) {
1136                 return 0
1137         }
1138         return pp.Integer(t.pieceNumChunks(piece) - t.pieces[piece].numDirtyChunks())
1139 }
1140
1141 func (t *Torrent) pieceAllDirty(piece pieceIndex) bool {
1142         return t.pieces[piece].allChunksDirty()
1143 }
1144
1145 func (t *Torrent) readersChanged() {
1146         t.updateReaderPieces()
1147         t.updateAllPiecePriorities("Torrent.readersChanged")
1148 }
1149
1150 func (t *Torrent) updateReaderPieces() {
1151         t._readerNowPieces, t._readerReadaheadPieces = t.readerPiecePriorities()
1152 }
1153
1154 func (t *Torrent) readerPosChanged(from, to pieceRange) {
1155         if from == to {
1156                 return
1157         }
1158         t.updateReaderPieces()
1159         // Order the ranges, high and low.
1160         l, h := from, to
1161         if l.begin > h.begin {
1162                 l, h = h, l
1163         }
1164         if l.end < h.begin {
1165                 // Two distinct ranges.
1166                 t.updatePiecePriorities(l.begin, l.end, "Torrent.readerPosChanged")
1167                 t.updatePiecePriorities(h.begin, h.end, "Torrent.readerPosChanged")
1168         } else {
1169                 // Ranges overlap.
1170                 end := l.end
1171                 if h.end > end {
1172                         end = h.end
1173                 }
1174                 t.updatePiecePriorities(l.begin, end, "Torrent.readerPosChanged")
1175         }
1176 }
1177
1178 func (t *Torrent) maybeNewConns() {
1179         // Tickle the accept routine.
1180         t.cl.event.Broadcast()
1181         t.openNewConns()
1182 }
1183
1184 func (t *Torrent) piecePriorityChanged(piece pieceIndex, reason string) {
1185         if t._pendingPieces.Contains(uint32(piece)) {
1186                 t.iterPeers(func(c *Peer) {
1187                         // if c.requestState.Interested {
1188                         //      return
1189                         // }
1190                         if !c.isLowOnRequests() {
1191                                 return
1192                         }
1193                         if !c.peerHasPiece(piece) {
1194                                 return
1195                         }
1196                         if c.requestState.Interested && c.peerChoking && !c.peerAllowedFast.Contains(piece) {
1197                                 return
1198                         }
1199                         c.updateRequests(reason)
1200                 })
1201         }
1202         t.maybeNewConns()
1203         t.publishPieceChange(piece)
1204 }
1205
1206 func (t *Torrent) updatePiecePriority(piece pieceIndex, reason string) {
1207         if !t.closed.IsSet() {
1208                 // It would be possible to filter on pure-priority changes here to avoid churning the piece
1209                 // request order.
1210                 t.updatePieceRequestOrder(piece)
1211         }
1212         p := &t.pieces[piece]
1213         newPrio := p.uncachedPriority()
1214         // t.logger.Printf("torrent %p: piece %d: uncached priority: %v", t, piece, newPrio)
1215         if newPrio == PiecePriorityNone {
1216                 if !t._pendingPieces.CheckedRemove(uint32(piece)) {
1217                         return
1218                 }
1219         } else {
1220                 if !t._pendingPieces.CheckedAdd(uint32(piece)) {
1221                         return
1222                 }
1223         }
1224         t.piecePriorityChanged(piece, reason)
1225 }
1226
1227 func (t *Torrent) updateAllPiecePriorities(reason string) {
1228         t.updatePiecePriorities(0, t.numPieces(), reason)
1229 }
1230
1231 // Update all piece priorities in one hit. This function should have the same
1232 // output as updatePiecePriority, but across all pieces.
1233 func (t *Torrent) updatePiecePriorities(begin, end pieceIndex, reason string) {
1234         for i := begin; i < end; i++ {
1235                 t.updatePiecePriority(i, reason)
1236         }
1237 }
1238
1239 // Returns the range of pieces [begin, end) that contains the extent of bytes.
1240 func (t *Torrent) byteRegionPieces(off, size int64) (begin, end pieceIndex) {
1241         if off >= t.length() {
1242                 return
1243         }
1244         if off < 0 {
1245                 size += off
1246                 off = 0
1247         }
1248         if size <= 0 {
1249                 return
1250         }
1251         begin = pieceIndex(off / t.info.PieceLength)
1252         end = pieceIndex((off + size + t.info.PieceLength - 1) / t.info.PieceLength)
1253         if end > pieceIndex(t.info.NumPieces()) {
1254                 end = pieceIndex(t.info.NumPieces())
1255         }
1256         return
1257 }
1258
1259 // Returns true if all iterations complete without breaking. Returns the read regions for all
1260 // readers. The reader regions should not be merged as some callers depend on this method to
1261 // enumerate readers.
1262 func (t *Torrent) forReaderOffsetPieces(f func(begin, end pieceIndex) (more bool)) (all bool) {
1263         for r := range t.readers {
1264                 p := r.pieces
1265                 if p.begin >= p.end {
1266                         continue
1267                 }
1268                 if !f(p.begin, p.end) {
1269                         return false
1270                 }
1271         }
1272         return true
1273 }
1274
1275 func (t *Torrent) piecePriority(piece pieceIndex) piecePriority {
1276         return t.piece(piece).uncachedPriority()
1277 }
1278
1279 func (t *Torrent) pendRequest(req RequestIndex) {
1280         t.piece(t.pieceIndexOfRequestIndex(req)).pendChunkIndex(req % t.chunksPerRegularPiece())
1281 }
1282
1283 func (t *Torrent) pieceCompletionChanged(piece pieceIndex, reason string) {
1284         t.cl.event.Broadcast()
1285         if t.pieceComplete(piece) {
1286                 t.onPieceCompleted(piece)
1287         } else {
1288                 t.onIncompletePiece(piece)
1289         }
1290         t.updatePiecePriority(piece, reason)
1291 }
1292
1293 func (t *Torrent) numReceivedConns() (ret int) {
1294         for c := range t.conns {
1295                 if c.Discovery == PeerSourceIncoming {
1296                         ret++
1297                 }
1298         }
1299         return
1300 }
1301
1302 func (t *Torrent) maxHalfOpen() int {
1303         // Note that if we somehow exceed the maximum established conns, we want
1304         // the negative value to have an effect.
1305         establishedHeadroom := int64(t.maxEstablishedConns - len(t.conns))
1306         extraIncoming := int64(t.numReceivedConns() - t.maxEstablishedConns/2)
1307         // We want to allow some experimentation with new peers, and to try to
1308         // upset an oversupply of received connections.
1309         return int(min(max(5, extraIncoming)+establishedHeadroom, int64(t.cl.config.HalfOpenConnsPerTorrent)))
1310 }
1311
1312 func (t *Torrent) openNewConns() (initiated int) {
1313         defer t.updateWantPeersEvent()
1314         for t.peers.Len() != 0 {
1315                 if !t.wantConns() {
1316                         return
1317                 }
1318                 if len(t.halfOpen) >= t.maxHalfOpen() {
1319                         return
1320                 }
1321                 if len(t.cl.dialers) == 0 {
1322                         return
1323                 }
1324                 if t.cl.numHalfOpen >= t.cl.config.TotalHalfOpenConns {
1325                         return
1326                 }
1327                 p := t.peers.PopMax()
1328                 t.initiateConn(p)
1329                 initiated++
1330         }
1331         return
1332 }
1333
1334 func (t *Torrent) updatePieceCompletion(piece pieceIndex) bool {
1335         p := t.piece(piece)
1336         uncached := t.pieceCompleteUncached(piece)
1337         cached := p.completion()
1338         changed := cached != uncached
1339         complete := uncached.Complete
1340         p.storageCompletionOk = uncached.Ok
1341         x := uint32(piece)
1342         if complete {
1343                 t._completedPieces.Add(x)
1344                 t.openNewConns()
1345         } else {
1346                 t._completedPieces.Remove(x)
1347         }
1348         p.t.updatePieceRequestOrder(piece)
1349         t.updateComplete()
1350         if complete && len(p.dirtiers) != 0 {
1351                 t.logger.Printf("marked piece %v complete but still has dirtiers", piece)
1352         }
1353         if changed {
1354                 log.Fstr("piece %d completion changed: %+v -> %+v", piece, cached, uncached).LogLevel(log.Debug, t.logger)
1355                 t.pieceCompletionChanged(piece, "Torrent.updatePieceCompletion")
1356         }
1357         return changed
1358 }
1359
1360 // Non-blocking read. Client lock is not required.
1361 func (t *Torrent) readAt(b []byte, off int64) (n int, err error) {
1362         for len(b) != 0 {
1363                 p := &t.pieces[off/t.info.PieceLength]
1364                 p.waitNoPendingWrites()
1365                 var n1 int
1366                 n1, err = p.Storage().ReadAt(b, off-p.Info().Offset())
1367                 if n1 == 0 {
1368                         break
1369                 }
1370                 off += int64(n1)
1371                 n += n1
1372                 b = b[n1:]
1373         }
1374         return
1375 }
1376
1377 // Returns an error if the metadata was completed, but couldn't be set for some reason. Blame it on
1378 // the last peer to contribute. TODO: Actually we shouldn't blame peers for failure to open storage
1379 // etc. Also we should probably cached metadata pieces per-Peer, to isolate failure appropriately.
1380 func (t *Torrent) maybeCompleteMetadata() error {
1381         if t.haveInfo() {
1382                 // Nothing to do.
1383                 return nil
1384         }
1385         if !t.haveAllMetadataPieces() {
1386                 // Don't have enough metadata pieces.
1387                 return nil
1388         }
1389         err := t.setInfoBytesLocked(t.metadataBytes)
1390         if err != nil {
1391                 t.invalidateMetadata()
1392                 return fmt.Errorf("error setting info bytes: %s", err)
1393         }
1394         if t.cl.config.Debug {
1395                 t.logger.Printf("%s: got metadata from peers", t)
1396         }
1397         return nil
1398 }
1399
1400 func (t *Torrent) readerPiecePriorities() (now, readahead bitmap.Bitmap) {
1401         t.forReaderOffsetPieces(func(begin, end pieceIndex) bool {
1402                 if end > begin {
1403                         now.Add(bitmap.BitIndex(begin))
1404                         readahead.AddRange(bitmap.BitRange(begin)+1, bitmap.BitRange(end))
1405                 }
1406                 return true
1407         })
1408         return
1409 }
1410
1411 func (t *Torrent) needData() bool {
1412         if t.closed.IsSet() {
1413                 return false
1414         }
1415         if !t.haveInfo() {
1416                 return true
1417         }
1418         return !t._pendingPieces.IsEmpty()
1419 }
1420
1421 func appendMissingStrings(old, new []string) (ret []string) {
1422         ret = old
1423 new:
1424         for _, n := range new {
1425                 for _, o := range old {
1426                         if o == n {
1427                                 continue new
1428                         }
1429                 }
1430                 ret = append(ret, n)
1431         }
1432         return
1433 }
1434
1435 func appendMissingTrackerTiers(existing [][]string, minNumTiers int) (ret [][]string) {
1436         ret = existing
1437         for minNumTiers > len(ret) {
1438                 ret = append(ret, nil)
1439         }
1440         return
1441 }
1442
1443 func (t *Torrent) addTrackers(announceList [][]string) {
1444         fullAnnounceList := &t.metainfo.AnnounceList
1445         t.metainfo.AnnounceList = appendMissingTrackerTiers(*fullAnnounceList, len(announceList))
1446         for tierIndex, trackerURLs := range announceList {
1447                 (*fullAnnounceList)[tierIndex] = appendMissingStrings((*fullAnnounceList)[tierIndex], trackerURLs)
1448         }
1449         t.startMissingTrackerScrapers()
1450         t.updateWantPeersEvent()
1451 }
1452
1453 // Don't call this before the info is available.
1454 func (t *Torrent) bytesCompleted() int64 {
1455         if !t.haveInfo() {
1456                 return 0
1457         }
1458         return t.length() - t.bytesLeft()
1459 }
1460
1461 func (t *Torrent) SetInfoBytes(b []byte) (err error) {
1462         t.cl.lock()
1463         defer t.cl.unlock()
1464         return t.setInfoBytesLocked(b)
1465 }
1466
1467 // Returns true if connection is removed from torrent.Conns.
1468 func (t *Torrent) deletePeerConn(c *PeerConn) (ret bool) {
1469         if !c.closed.IsSet() {
1470                 panic("connection is not closed")
1471                 // There are behaviours prevented by the closed state that will fail
1472                 // if the connection has been deleted.
1473         }
1474         _, ret = t.conns[c]
1475         delete(t.conns, c)
1476         // Avoid adding a drop event more than once. Probably we should track whether we've generated
1477         // the drop event against the PexConnState instead.
1478         if ret {
1479                 if !t.cl.config.DisablePEX {
1480                         t.pex.Drop(c)
1481                 }
1482         }
1483         torrent.Add("deleted connections", 1)
1484         c.deleteAllRequests("Torrent.deletePeerConn")
1485         t.assertPendingRequests()
1486         if t.numActivePeers() == 0 && len(t.connsWithAllPieces) != 0 {
1487                 panic(t.connsWithAllPieces)
1488         }
1489         return
1490 }
1491
1492 func (t *Torrent) decPeerPieceAvailability(p *Peer) {
1493         if t.deleteConnWithAllPieces(p) {
1494                 return
1495         }
1496         if !t.haveInfo() {
1497                 return
1498         }
1499         p.peerPieces().Iterate(func(i uint32) bool {
1500                 p.t.decPieceAvailability(pieceIndex(i))
1501                 return true
1502         })
1503 }
1504
1505 func (t *Torrent) assertPendingRequests() {
1506         if !check {
1507                 return
1508         }
1509         // var actual pendingRequests
1510         // if t.haveInfo() {
1511         //      actual.m = make([]int, t.numChunks())
1512         // }
1513         // t.iterPeers(func(p *Peer) {
1514         //      p.requestState.Requests.Iterate(func(x uint32) bool {
1515         //              actual.Inc(x)
1516         //              return true
1517         //      })
1518         // })
1519         // diff := cmp.Diff(actual.m, t.pendingRequests.m)
1520         // if diff != "" {
1521         //      panic(diff)
1522         // }
1523 }
1524
1525 func (t *Torrent) dropConnection(c *PeerConn) {
1526         t.cl.event.Broadcast()
1527         c.close()
1528         if t.deletePeerConn(c) {
1529                 t.openNewConns()
1530         }
1531 }
1532
1533 // Peers as in contact information for dialing out.
1534 func (t *Torrent) wantPeers() bool {
1535         if t.closed.IsSet() {
1536                 return false
1537         }
1538         if t.peers.Len() > t.cl.config.TorrentPeersLowWater {
1539                 return false
1540         }
1541         return t.wantConns()
1542 }
1543
1544 func (t *Torrent) updateWantPeersEvent() {
1545         if t.wantPeers() {
1546                 t.wantPeersEvent.Set()
1547         } else {
1548                 t.wantPeersEvent.Clear()
1549         }
1550 }
1551
1552 // Returns whether the client should make effort to seed the torrent.
1553 func (t *Torrent) seeding() bool {
1554         cl := t.cl
1555         if t.closed.IsSet() {
1556                 return false
1557         }
1558         if t.dataUploadDisallowed {
1559                 return false
1560         }
1561         if cl.config.NoUpload {
1562                 return false
1563         }
1564         if !cl.config.Seed {
1565                 return false
1566         }
1567         if cl.config.DisableAggressiveUpload && t.needData() {
1568                 return false
1569         }
1570         return true
1571 }
1572
1573 func (t *Torrent) onWebRtcConn(
1574         c datachannel.ReadWriteCloser,
1575         dcc webtorrent.DataChannelContext,
1576 ) {
1577         defer c.Close()
1578         netConn := webrtcNetConn{
1579                 ReadWriteCloser:    c,
1580                 DataChannelContext: dcc,
1581         }
1582         peerRemoteAddr := netConn.RemoteAddr()
1583         //t.logger.Levelf(log.Critical, "onWebRtcConn remote addr: %v", peerRemoteAddr)
1584         if t.cl.badPeerAddr(peerRemoteAddr) {
1585                 return
1586         }
1587         localAddrIpPort := missinggo.IpPortFromNetAddr(netConn.LocalAddr())
1588         pc, err := t.cl.initiateProtocolHandshakes(
1589                 context.Background(),
1590                 netConn,
1591                 t,
1592                 false,
1593                 newConnectionOpts{
1594                         outgoing:        dcc.LocalOffered,
1595                         remoteAddr:      peerRemoteAddr,
1596                         localPublicAddr: localAddrIpPort,
1597                         network:         webrtcNetwork,
1598                         connString:      fmt.Sprintf("webrtc offer_id %x: %v", dcc.OfferId, regularNetConnPeerConnConnString(netConn)),
1599                 },
1600         )
1601         if err != nil {
1602                 t.logger.WithDefaultLevel(log.Error).Printf("error in handshaking webrtc connection: %v", err)
1603                 return
1604         }
1605         if dcc.LocalOffered {
1606                 pc.Discovery = PeerSourceTracker
1607         } else {
1608                 pc.Discovery = PeerSourceIncoming
1609         }
1610         pc.conn.SetWriteDeadline(time.Time{})
1611         t.cl.lock()
1612         defer t.cl.unlock()
1613         err = t.cl.runHandshookConn(pc, t)
1614         if err != nil {
1615                 t.logger.WithDefaultLevel(log.Debug).Printf("error running handshook webrtc conn: %v", err)
1616         }
1617 }
1618
1619 func (t *Torrent) logRunHandshookConn(pc *PeerConn, logAll bool, level log.Level) {
1620         err := t.cl.runHandshookConn(pc, t)
1621         if err != nil || logAll {
1622                 t.logger.WithDefaultLevel(level).Levelf(log.ErrorLevel(err), "error running handshook conn: %v", err)
1623         }
1624 }
1625
1626 func (t *Torrent) runHandshookConnLoggingErr(pc *PeerConn) {
1627         t.logRunHandshookConn(pc, false, log.Debug)
1628 }
1629
1630 func (t *Torrent) startWebsocketAnnouncer(u url.URL) torrentTrackerAnnouncer {
1631         wtc, release := t.cl.websocketTrackers.Get(u.String(), t.infoHash)
1632         // This needs to run before the Torrent is dropped from the Client, to prevent a new webtorrent.TrackerClient for
1633         // the same info hash before the old one is cleaned up.
1634         t.onClose = append(t.onClose, release)
1635         wst := websocketTrackerStatus{u, wtc}
1636         go func() {
1637                 err := wtc.Announce(tracker.Started, t.infoHash)
1638                 if err != nil {
1639                         t.logger.WithDefaultLevel(log.Warning).Printf(
1640                                 "error in initial announce to %q: %v",
1641                                 u.String(), err,
1642                         )
1643                 }
1644         }()
1645         return wst
1646 }
1647
1648 func (t *Torrent) startScrapingTracker(_url string) {
1649         if _url == "" {
1650                 return
1651         }
1652         u, err := url.Parse(_url)
1653         if err != nil {
1654                 // URLs with a leading '*' appear to be a uTorrent convention to
1655                 // disable trackers.
1656                 if _url[0] != '*' {
1657                         log.Str("error parsing tracker url").AddValues("url", _url).Log(t.logger)
1658                 }
1659                 return
1660         }
1661         if u.Scheme == "udp" {
1662                 u.Scheme = "udp4"
1663                 t.startScrapingTracker(u.String())
1664                 u.Scheme = "udp6"
1665                 t.startScrapingTracker(u.String())
1666                 return
1667         }
1668         if _, ok := t.trackerAnnouncers[_url]; ok {
1669                 return
1670         }
1671         sl := func() torrentTrackerAnnouncer {
1672                 switch u.Scheme {
1673                 case "ws", "wss":
1674                         if t.cl.config.DisableWebtorrent {
1675                                 return nil
1676                         }
1677                         return t.startWebsocketAnnouncer(*u)
1678                 case "udp4":
1679                         if t.cl.config.DisableIPv4Peers || t.cl.config.DisableIPv4 {
1680                                 return nil
1681                         }
1682                 case "udp6":
1683                         if t.cl.config.DisableIPv6 {
1684                                 return nil
1685                         }
1686                 }
1687                 newAnnouncer := &trackerScraper{
1688                         u:               *u,
1689                         t:               t,
1690                         lookupTrackerIp: t.cl.config.LookupTrackerIp,
1691                 }
1692                 go newAnnouncer.Run()
1693                 return newAnnouncer
1694         }()
1695         if sl == nil {
1696                 return
1697         }
1698         if t.trackerAnnouncers == nil {
1699                 t.trackerAnnouncers = make(map[string]torrentTrackerAnnouncer)
1700         }
1701         t.trackerAnnouncers[_url] = sl
1702 }
1703
1704 // Adds and starts tracker scrapers for tracker URLs that aren't already
1705 // running.
1706 func (t *Torrent) startMissingTrackerScrapers() {
1707         if t.cl.config.DisableTrackers {
1708                 return
1709         }
1710         t.startScrapingTracker(t.metainfo.Announce)
1711         for _, tier := range t.metainfo.AnnounceList {
1712                 for _, url := range tier {
1713                         t.startScrapingTracker(url)
1714                 }
1715         }
1716 }
1717
1718 // Returns an AnnounceRequest with fields filled out to defaults and current
1719 // values.
1720 func (t *Torrent) announceRequest(event tracker.AnnounceEvent) tracker.AnnounceRequest {
1721         // Note that IPAddress is not set. It's set for UDP inside the tracker code, since it's
1722         // dependent on the network in use.
1723         return tracker.AnnounceRequest{
1724                 Event: event,
1725                 NumWant: func() int32 {
1726                         if t.wantPeers() && len(t.cl.dialers) > 0 {
1727                                 return 200 // Win has UDP packet limit. See: https://github.com/anacrolix/torrent/issues/764
1728                         } else {
1729                                 return 0
1730                         }
1731                 }(),
1732                 Port:     uint16(t.cl.incomingPeerPort()),
1733                 PeerId:   t.cl.peerID,
1734                 InfoHash: t.infoHash,
1735                 Key:      t.cl.announceKey(),
1736
1737                 // The following are vaguely described in BEP 3.
1738
1739                 Left:     t.bytesLeftAnnounce(),
1740                 Uploaded: t.stats.BytesWrittenData.Int64(),
1741                 // There's no mention of wasted or unwanted download in the BEP.
1742                 Downloaded: t.stats.BytesReadUsefulData.Int64(),
1743         }
1744 }
1745
1746 // Adds peers revealed in an announce until the announce ends, or we have
1747 // enough peers.
1748 func (t *Torrent) consumeDhtAnnouncePeers(pvs <-chan dht.PeersValues) {
1749         cl := t.cl
1750         for v := range pvs {
1751                 cl.lock()
1752                 added := 0
1753                 for _, cp := range v.Peers {
1754                         if cp.Port == 0 {
1755                                 // Can't do anything with this.
1756                                 continue
1757                         }
1758                         if t.addPeer(PeerInfo{
1759                                 Addr:   ipPortAddr{cp.IP, cp.Port},
1760                                 Source: PeerSourceDhtGetPeers,
1761                         }) {
1762                                 added++
1763                         }
1764                 }
1765                 cl.unlock()
1766                 // if added != 0 {
1767                 //      log.Printf("added %v peers from dht for %v", added, t.InfoHash().HexString())
1768                 // }
1769         }
1770 }
1771
1772 // Announce using the provided DHT server. Peers are consumed automatically. done is closed when the
1773 // announce ends. stop will force the announce to end.
1774 func (t *Torrent) AnnounceToDht(s DhtServer) (done <-chan struct{}, stop func(), err error) {
1775         ps, err := s.Announce(t.infoHash, t.cl.incomingPeerPort(), true)
1776         if err != nil {
1777                 return
1778         }
1779         _done := make(chan struct{})
1780         done = _done
1781         stop = ps.Close
1782         go func() {
1783                 t.consumeDhtAnnouncePeers(ps.Peers())
1784                 close(_done)
1785         }()
1786         return
1787 }
1788
1789 func (t *Torrent) timeboxedAnnounceToDht(s DhtServer) error {
1790         _, stop, err := t.AnnounceToDht(s)
1791         if err != nil {
1792                 return err
1793         }
1794         select {
1795         case <-t.closed.Done():
1796         case <-time.After(5 * time.Minute):
1797         }
1798         stop()
1799         return nil
1800 }
1801
1802 func (t *Torrent) dhtAnnouncer(s DhtServer) {
1803         cl := t.cl
1804         cl.lock()
1805         defer cl.unlock()
1806         for {
1807                 for {
1808                         if t.closed.IsSet() {
1809                                 return
1810                         }
1811                         // We're also announcing ourselves as a listener, so we don't just want peer addresses.
1812                         // TODO: We can include the announce_peer step depending on whether we can receive
1813                         // inbound connections. We should probably only announce once every 15 mins too.
1814                         if !t.wantConns() {
1815                                 goto wait
1816                         }
1817                         // TODO: Determine if there's a listener on the port we're announcing.
1818                         if len(cl.dialers) == 0 && len(cl.listeners) == 0 {
1819                                 goto wait
1820                         }
1821                         break
1822                 wait:
1823                         cl.event.Wait()
1824                 }
1825                 func() {
1826                         t.numDHTAnnounces++
1827                         cl.unlock()
1828                         defer cl.lock()
1829                         err := t.timeboxedAnnounceToDht(s)
1830                         if err != nil {
1831                                 t.logger.WithDefaultLevel(log.Warning).Printf("error announcing %q to DHT: %s", t, err)
1832                         }
1833                 }()
1834         }
1835 }
1836
1837 func (t *Torrent) addPeers(peers []PeerInfo) (added int) {
1838         for _, p := range peers {
1839                 if t.addPeer(p) {
1840                         added++
1841                 }
1842         }
1843         return
1844 }
1845
1846 // The returned TorrentStats may require alignment in memory. See
1847 // https://github.com/anacrolix/torrent/issues/383.
1848 func (t *Torrent) Stats() TorrentStats {
1849         t.cl.rLock()
1850         defer t.cl.rUnlock()
1851         return t.statsLocked()
1852 }
1853
1854 func (t *Torrent) statsLocked() (ret TorrentStats) {
1855         ret.ActivePeers = len(t.conns)
1856         ret.HalfOpenPeers = len(t.halfOpen)
1857         ret.PendingPeers = t.peers.Len()
1858         ret.TotalPeers = t.numTotalPeers()
1859         ret.ConnectedSeeders = 0
1860         for c := range t.conns {
1861                 if all, ok := c.peerHasAllPieces(); all && ok {
1862                         ret.ConnectedSeeders++
1863                 }
1864         }
1865         ret.ConnStats = t.stats.Copy()
1866         ret.PiecesComplete = t.numPiecesCompleted()
1867         return
1868 }
1869
1870 // The total number of peers in the torrent.
1871 func (t *Torrent) numTotalPeers() int {
1872         peers := make(map[string]struct{})
1873         for conn := range t.conns {
1874                 ra := conn.conn.RemoteAddr()
1875                 if ra == nil {
1876                         // It's been closed and doesn't support RemoteAddr.
1877                         continue
1878                 }
1879                 peers[ra.String()] = struct{}{}
1880         }
1881         for addr := range t.halfOpen {
1882                 peers[addr] = struct{}{}
1883         }
1884         t.peers.Each(func(peer PeerInfo) {
1885                 peers[peer.Addr.String()] = struct{}{}
1886         })
1887         return len(peers)
1888 }
1889
1890 // Reconcile bytes transferred before connection was associated with a
1891 // torrent.
1892 func (t *Torrent) reconcileHandshakeStats(c *PeerConn) {
1893         if c._stats != (ConnStats{
1894                 // Handshakes should only increment these fields:
1895                 BytesWritten: c._stats.BytesWritten,
1896                 BytesRead:    c._stats.BytesRead,
1897         }) {
1898                 panic("bad stats")
1899         }
1900         c.postHandshakeStats(func(cs *ConnStats) {
1901                 cs.BytesRead.Add(c._stats.BytesRead.Int64())
1902                 cs.BytesWritten.Add(c._stats.BytesWritten.Int64())
1903         })
1904         c.reconciledHandshakeStats = true
1905 }
1906
1907 // Returns true if the connection is added.
1908 func (t *Torrent) addPeerConn(c *PeerConn) (err error) {
1909         defer func() {
1910                 if err == nil {
1911                         torrent.Add("added connections", 1)
1912                 }
1913         }()
1914         if t.closed.IsSet() {
1915                 return errors.New("torrent closed")
1916         }
1917         for c0 := range t.conns {
1918                 if c.PeerID != c0.PeerID {
1919                         continue
1920                 }
1921                 if !t.cl.config.DropDuplicatePeerIds {
1922                         continue
1923                 }
1924                 if c.hasPreferredNetworkOver(c0) {
1925                         c0.close()
1926                         t.deletePeerConn(c0)
1927                 } else {
1928                         return errors.New("existing connection preferred")
1929                 }
1930         }
1931         if len(t.conns) >= t.maxEstablishedConns {
1932                 c := t.worstBadConn()
1933                 if c == nil {
1934                         return errors.New("don't want conns")
1935                 }
1936                 c.close()
1937                 t.deletePeerConn(c)
1938         }
1939         if len(t.conns) >= t.maxEstablishedConns {
1940                 panic(len(t.conns))
1941         }
1942         t.conns[c] = struct{}{}
1943         if !t.cl.config.DisablePEX && !c.PeerExtensionBytes.SupportsExtended() {
1944                 t.pex.Add(c) // as no further extended handshake expected
1945         }
1946         return nil
1947 }
1948
1949 func (t *Torrent) wantConns() bool {
1950         if !t.networkingEnabled.Bool() {
1951                 return false
1952         }
1953         if t.closed.IsSet() {
1954                 return false
1955         }
1956         if !t.needData() && (!t.seeding() || !t.haveAnyPieces()) {
1957                 return false
1958         }
1959         return len(t.conns) < t.maxEstablishedConns || t.worstBadConn() != nil
1960 }
1961
1962 func (t *Torrent) SetMaxEstablishedConns(max int) (oldMax int) {
1963         t.cl.lock()
1964         defer t.cl.unlock()
1965         oldMax = t.maxEstablishedConns
1966         t.maxEstablishedConns = max
1967         wcs := worseConnSlice{
1968                 conns: t.appendConns(nil, func(*PeerConn) bool {
1969                         return true
1970                 }),
1971         }
1972         wcs.initKeys()
1973         heap.Init(&wcs)
1974         for len(t.conns) > t.maxEstablishedConns && wcs.Len() > 0 {
1975                 t.dropConnection(heap.Pop(&wcs).(*PeerConn))
1976         }
1977         t.openNewConns()
1978         return oldMax
1979 }
1980
1981 func (t *Torrent) pieceHashed(piece pieceIndex, passed bool, hashIoErr error) {
1982         t.logger.LazyLog(log.Debug, func() log.Msg {
1983                 return log.Fstr("hashed piece %d (passed=%t)", piece, passed)
1984         })
1985         p := t.piece(piece)
1986         p.numVerifies++
1987         t.cl.event.Broadcast()
1988         if t.closed.IsSet() {
1989                 return
1990         }
1991
1992         // Don't score the first time a piece is hashed, it could be an initial check.
1993         if p.storageCompletionOk {
1994                 if passed {
1995                         pieceHashedCorrect.Add(1)
1996                 } else {
1997                         log.Fmsg(
1998                                 "piece %d failed hash: %d connections contributed", piece, len(p.dirtiers),
1999                         ).AddValues(t, p).LogLevel(
2000
2001                                 log.Debug, t.logger)
2002
2003                         pieceHashedNotCorrect.Add(1)
2004                 }
2005         }
2006
2007         p.marking = true
2008         t.publishPieceChange(piece)
2009         defer func() {
2010                 p.marking = false
2011                 t.publishPieceChange(piece)
2012         }()
2013
2014         if passed {
2015                 if len(p.dirtiers) != 0 {
2016                         // Don't increment stats above connection-level for every involved connection.
2017                         t.allStats((*ConnStats).incrementPiecesDirtiedGood)
2018                 }
2019                 for c := range p.dirtiers {
2020                         c._stats.incrementPiecesDirtiedGood()
2021                 }
2022                 t.clearPieceTouchers(piece)
2023                 hasDirty := p.hasDirtyChunks()
2024                 t.cl.unlock()
2025                 if hasDirty {
2026                         p.Flush() // You can be synchronous here!
2027                 }
2028                 err := p.Storage().MarkComplete()
2029                 if err != nil {
2030                         t.logger.Printf("%T: error marking piece complete %d: %s", t.storage, piece, err)
2031                 }
2032                 t.cl.lock()
2033
2034                 if t.closed.IsSet() {
2035                         return
2036                 }
2037                 t.pendAllChunkSpecs(piece)
2038         } else {
2039                 if len(p.dirtiers) != 0 && p.allChunksDirty() && hashIoErr == nil {
2040                         // Peers contributed to all the data for this piece hash failure, and the failure was
2041                         // not due to errors in the storage (such as data being dropped in a cache).
2042
2043                         // Increment Torrent and above stats, and then specific connections.
2044                         t.allStats((*ConnStats).incrementPiecesDirtiedBad)
2045                         for c := range p.dirtiers {
2046                                 // Y u do dis peer?!
2047                                 c.stats().incrementPiecesDirtiedBad()
2048                         }
2049
2050                         bannableTouchers := make([]*Peer, 0, len(p.dirtiers))
2051                         for c := range p.dirtiers {
2052                                 if !c.trusted {
2053                                         bannableTouchers = append(bannableTouchers, c)
2054                                 }
2055                         }
2056                         t.clearPieceTouchers(piece)
2057                         slices.Sort(bannableTouchers, connLessTrusted)
2058
2059                         if t.cl.config.Debug {
2060                                 t.logger.Printf(
2061                                         "bannable conns by trust for piece %d: %v",
2062                                         piece,
2063                                         func() (ret []connectionTrust) {
2064                                                 for _, c := range bannableTouchers {
2065                                                         ret = append(ret, c.trust())
2066                                                 }
2067                                                 return
2068                                         }(),
2069                                 )
2070                         }
2071
2072                         if len(bannableTouchers) >= 1 {
2073                                 c := bannableTouchers[0]
2074                                 if len(bannableTouchers) != 1 {
2075                                         t.logger.Levelf(log.Warning, "would have banned %v for touching piece %v after failed piece check", c.remoteIp(), piece)
2076                                 } else {
2077                                         // Turns out it's still useful to ban peers like this because if there's only a
2078                                         // single peer for a piece, and we never progress that piece to completion, we
2079                                         // will never smart-ban them. Discovered in
2080                                         // https://github.com/anacrolix/torrent/issues/715.
2081                                         t.logger.Levelf(log.Warning, "banning %v for being sole dirtier of piece %v after failed piece check", c, piece)
2082                                         c.ban()
2083                                 }
2084                         }
2085                 }
2086                 t.onIncompletePiece(piece)
2087                 p.Storage().MarkNotComplete()
2088         }
2089         t.updatePieceCompletion(piece)
2090 }
2091
2092 func (t *Torrent) cancelRequestsForPiece(piece pieceIndex) {
2093         start := t.pieceRequestIndexOffset(piece)
2094         end := start + t.pieceNumChunks(piece)
2095         for ri := start; ri < end; ri++ {
2096                 t.cancelRequest(ri)
2097         }
2098 }
2099
2100 func (t *Torrent) onPieceCompleted(piece pieceIndex) {
2101         t.pendAllChunkSpecs(piece)
2102         t.cancelRequestsForPiece(piece)
2103         t.piece(piece).readerCond.Broadcast()
2104         for conn := range t.conns {
2105                 conn.have(piece)
2106                 t.maybeDropMutuallyCompletePeer(&conn.Peer)
2107         }
2108 }
2109
2110 // Called when a piece is found to be not complete.
2111 func (t *Torrent) onIncompletePiece(piece pieceIndex) {
2112         if t.pieceAllDirty(piece) {
2113                 t.pendAllChunkSpecs(piece)
2114         }
2115         if !t.wantPieceIndex(piece) {
2116                 // t.logger.Printf("piece %d incomplete and unwanted", piece)
2117                 return
2118         }
2119         // We could drop any connections that we told we have a piece that we
2120         // don't here. But there's a test failure, and it seems clients don't care
2121         // if you request pieces that you already claim to have. Pruning bad
2122         // connections might just remove any connections that aren't treating us
2123         // favourably anyway.
2124
2125         // for c := range t.conns {
2126         //      if c.sentHave(piece) {
2127         //              c.drop()
2128         //      }
2129         // }
2130         t.iterPeers(func(conn *Peer) {
2131                 if conn.peerHasPiece(piece) {
2132                         conn.updateRequests("piece incomplete")
2133                 }
2134         })
2135 }
2136
2137 func (t *Torrent) tryCreateMorePieceHashers() {
2138         for !t.closed.IsSet() && t.activePieceHashes < 2 && t.tryCreatePieceHasher() {
2139         }
2140 }
2141
2142 func (t *Torrent) tryCreatePieceHasher() bool {
2143         if t.storage == nil {
2144                 return false
2145         }
2146         pi, ok := t.getPieceToHash()
2147         if !ok {
2148                 return false
2149         }
2150         p := t.piece(pi)
2151         t.piecesQueuedForHash.Remove(bitmap.BitIndex(pi))
2152         p.hashing = true
2153         t.publishPieceChange(pi)
2154         t.updatePiecePriority(pi, "Torrent.tryCreatePieceHasher")
2155         t.storageLock.RLock()
2156         t.activePieceHashes++
2157         go t.pieceHasher(pi)
2158         return true
2159 }
2160
2161 func (t *Torrent) getPieceToHash() (ret pieceIndex, ok bool) {
2162         t.piecesQueuedForHash.IterTyped(func(i pieceIndex) bool {
2163                 if t.piece(i).hashing {
2164                         return true
2165                 }
2166                 ret = i
2167                 ok = true
2168                 return false
2169         })
2170         return
2171 }
2172
2173 func (t *Torrent) dropBannedPeers() {
2174         t.iterPeers(func(p *Peer) {
2175                 remoteIp := p.remoteIp()
2176                 if remoteIp == nil {
2177                         if p.bannableAddr.Ok {
2178                                 t.logger.WithDefaultLevel(log.Debug).Printf("can't get remote ip for peer %v", p)
2179                         }
2180                         return
2181                 }
2182                 netipAddr := netip.MustParseAddr(remoteIp.String())
2183                 if Some(netipAddr) != p.bannableAddr {
2184                         t.logger.WithDefaultLevel(log.Debug).Printf(
2185                                 "peer remote ip does not match its bannable addr [peer=%v, remote ip=%v, bannable addr=%v]",
2186                                 p, remoteIp, p.bannableAddr)
2187                 }
2188                 if _, ok := t.cl.badPeerIPs[netipAddr]; ok {
2189                         // Should this be a close?
2190                         p.drop()
2191                         t.logger.WithDefaultLevel(log.Debug).Printf("dropped %v for banned remote IP %v", p, netipAddr)
2192                 }
2193         })
2194 }
2195
2196 func (t *Torrent) pieceHasher(index pieceIndex) {
2197         p := t.piece(index)
2198         sum, failedPeers, copyErr := t.hashPiece(index)
2199         correct := sum == *p.hash
2200         switch copyErr {
2201         case nil, io.EOF:
2202         default:
2203                 log.Fmsg("piece %v (%s) hash failure copy error: %v", p, p.hash.HexString(), copyErr).Log(t.logger)
2204         }
2205         t.storageLock.RUnlock()
2206         t.cl.lock()
2207         defer t.cl.unlock()
2208         if correct {
2209                 for peer := range failedPeers {
2210                         t.cl.banPeerIP(peer.AsSlice())
2211                         t.logger.WithDefaultLevel(log.Debug).Printf("smart banned %v for piece %v", peer, index)
2212                 }
2213                 t.dropBannedPeers()
2214                 for ri := t.pieceRequestIndexOffset(index); ri < t.pieceRequestIndexOffset(index+1); ri++ {
2215                         t.smartBanCache.ForgetBlock(ri)
2216                 }
2217         }
2218         p.hashing = false
2219         t.pieceHashed(index, correct, copyErr)
2220         t.updatePiecePriority(index, "Torrent.pieceHasher")
2221         t.activePieceHashes--
2222         t.tryCreateMorePieceHashers()
2223 }
2224
2225 // Return the connections that touched a piece, and clear the entries while doing it.
2226 func (t *Torrent) clearPieceTouchers(pi pieceIndex) {
2227         p := t.piece(pi)
2228         for c := range p.dirtiers {
2229                 delete(c.peerTouchedPieces, pi)
2230                 delete(p.dirtiers, c)
2231         }
2232 }
2233
2234 func (t *Torrent) peersAsSlice() (ret []*Peer) {
2235         t.iterPeers(func(p *Peer) {
2236                 ret = append(ret, p)
2237         })
2238         return
2239 }
2240
2241 func (t *Torrent) queuePieceCheck(pieceIndex pieceIndex) {
2242         piece := t.piece(pieceIndex)
2243         if piece.queuedForHash() {
2244                 return
2245         }
2246         t.piecesQueuedForHash.Add(bitmap.BitIndex(pieceIndex))
2247         t.publishPieceChange(pieceIndex)
2248         t.updatePiecePriority(pieceIndex, "Torrent.queuePieceCheck")
2249         t.tryCreateMorePieceHashers()
2250 }
2251
2252 // Forces all the pieces to be re-hashed. See also Piece.VerifyData. This should not be called
2253 // before the Info is available.
2254 func (t *Torrent) VerifyData() {
2255         for i := pieceIndex(0); i < t.NumPieces(); i++ {
2256                 t.Piece(i).VerifyData()
2257         }
2258 }
2259
2260 // Start the process of connecting to the given peer for the given torrent if appropriate.
2261 func (t *Torrent) initiateConn(peer PeerInfo) {
2262         if peer.Id == t.cl.peerID {
2263                 return
2264         }
2265         if t.cl.badPeerAddr(peer.Addr) && !peer.Trusted {
2266                 return
2267         }
2268         addr := peer.Addr
2269         if t.addrActive(addr.String()) {
2270                 return
2271         }
2272         t.cl.numHalfOpen++
2273         t.halfOpen[addr.String()] = peer
2274         go t.cl.outgoingConnection(t, addr, peer.Source, peer.Trusted)
2275 }
2276
2277 // Adds a trusted, pending peer for each of the given Client's addresses. Typically used in tests to
2278 // quickly make one Client visible to the Torrent of another Client.
2279 func (t *Torrent) AddClientPeer(cl *Client) int {
2280         return t.AddPeers(func() (ps []PeerInfo) {
2281                 for _, la := range cl.ListenAddrs() {
2282                         ps = append(ps, PeerInfo{
2283                                 Addr:    la,
2284                                 Trusted: true,
2285                         })
2286                 }
2287                 return
2288         }())
2289 }
2290
2291 // All stats that include this Torrent. Useful when we want to increment ConnStats but not for every
2292 // connection.
2293 func (t *Torrent) allStats(f func(*ConnStats)) {
2294         f(&t.stats)
2295         f(&t.cl.stats)
2296 }
2297
2298 func (t *Torrent) hashingPiece(i pieceIndex) bool {
2299         return t.pieces[i].hashing
2300 }
2301
2302 func (t *Torrent) pieceQueuedForHash(i pieceIndex) bool {
2303         return t.piecesQueuedForHash.Get(bitmap.BitIndex(i))
2304 }
2305
2306 func (t *Torrent) dialTimeout() time.Duration {
2307         return reducedDialTimeout(t.cl.config.MinDialTimeout, t.cl.config.NominalDialTimeout, t.cl.config.HalfOpenConnsPerTorrent, t.peers.Len())
2308 }
2309
2310 func (t *Torrent) piece(i int) *Piece {
2311         return &t.pieces[i]
2312 }
2313
2314 func (t *Torrent) onWriteChunkErr(err error) {
2315         if t.userOnWriteChunkErr != nil {
2316                 go t.userOnWriteChunkErr(err)
2317                 return
2318         }
2319         t.logger.WithDefaultLevel(log.Critical).Printf("default chunk write error handler: disabling data download")
2320         t.disallowDataDownloadLocked()
2321 }
2322
2323 func (t *Torrent) DisallowDataDownload() {
2324         t.disallowDataDownloadLocked()
2325 }
2326
2327 func (t *Torrent) disallowDataDownloadLocked() {
2328         t.dataDownloadDisallowed.Set()
2329 }
2330
2331 func (t *Torrent) AllowDataDownload() {
2332         t.dataDownloadDisallowed.Clear()
2333 }
2334
2335 // Enables uploading data, if it was disabled.
2336 func (t *Torrent) AllowDataUpload() {
2337         t.cl.lock()
2338         defer t.cl.unlock()
2339         t.dataUploadDisallowed = false
2340         for c := range t.conns {
2341                 c.updateRequests("allow data upload")
2342         }
2343 }
2344
2345 // Disables uploading data, if it was enabled.
2346 func (t *Torrent) DisallowDataUpload() {
2347         t.cl.lock()
2348         defer t.cl.unlock()
2349         t.dataUploadDisallowed = true
2350         for c := range t.conns {
2351                 // TODO: This doesn't look right. Shouldn't we tickle writers to choke peers or something instead?
2352                 c.updateRequests("disallow data upload")
2353         }
2354 }
2355
2356 // Sets a handler that is called if there's an error writing a chunk to local storage. By default,
2357 // or if nil, a critical message is logged, and data download is disabled.
2358 func (t *Torrent) SetOnWriteChunkError(f func(error)) {
2359         t.cl.lock()
2360         defer t.cl.unlock()
2361         t.userOnWriteChunkErr = f
2362 }
2363
2364 func (t *Torrent) iterPeers(f func(p *Peer)) {
2365         for pc := range t.conns {
2366                 f(&pc.Peer)
2367         }
2368         for _, ws := range t.webSeeds {
2369                 f(ws)
2370         }
2371 }
2372
2373 func (t *Torrent) callbacks() *Callbacks {
2374         return &t.cl.config.Callbacks
2375 }
2376
2377 type AddWebSeedsOpt func(*webseed.Client)
2378
2379 // Sets the WebSeed trailing path escaper for a webseed.Client.
2380 func WebSeedPathEscaper(custom webseed.PathEscaper) AddWebSeedsOpt {
2381         return func(c *webseed.Client) {
2382                 c.PathEscaper = custom
2383         }
2384 }
2385
2386 func (t *Torrent) AddWebSeeds(urls []string, opts ...AddWebSeedsOpt) {
2387         t.cl.lock()
2388         defer t.cl.unlock()
2389         for _, u := range urls {
2390                 t.addWebSeed(u, opts...)
2391         }
2392 }
2393
2394 func (t *Torrent) addWebSeed(url string, opts ...AddWebSeedsOpt) {
2395         if t.cl.config.DisableWebseeds {
2396                 return
2397         }
2398         if _, ok := t.webSeeds[url]; ok {
2399                 return
2400         }
2401         // I don't think Go http supports pipelining requests. However, we can have more ready to go
2402         // right away. This value should be some multiple of the number of connections to a host. I
2403         // would expect that double maxRequests plus a bit would be appropriate. This value is based on
2404         // downloading Sintel (08ada5a7a6183aae1e09d831df6748d566095a10) from
2405         // "https://webtorrent.io/torrents/".
2406         const maxRequests = 16
2407         ws := webseedPeer{
2408                 peer: Peer{
2409                         t:                        t,
2410                         outgoing:                 true,
2411                         Network:                  "http",
2412                         reconciledHandshakeStats: true,
2413                         // This should affect how often we have to recompute requests for this peer. Note that
2414                         // because we can request more than 1 thing at a time over HTTP, we will hit the low
2415                         // requests mark more often, so recomputation is probably sooner than with regular peer
2416                         // conns. ~4x maxRequests would be about right.
2417                         PeerMaxRequests: 128,
2418                         // TODO: Set ban prefix?
2419                         RemoteAddr: remoteAddrFromUrl(url),
2420                         callbacks:  t.callbacks(),
2421                 },
2422                 client: webseed.Client{
2423                         HttpClient: t.cl.httpClient,
2424                         Url:        url,
2425                         ResponseBodyWrapper: func(r io.Reader) io.Reader {
2426                                 return &rateLimitedReader{
2427                                         l: t.cl.config.DownloadRateLimiter,
2428                                         r: r,
2429                                 }
2430                         },
2431                 },
2432                 activeRequests: make(map[Request]webseed.Request, maxRequests),
2433         }
2434         ws.peer.initRequestState()
2435         for _, opt := range opts {
2436                 opt(&ws.client)
2437         }
2438         ws.peer.initUpdateRequestsTimer()
2439         ws.requesterCond.L = t.cl.locker()
2440         for i := 0; i < maxRequests; i += 1 {
2441                 go ws.requester(i)
2442         }
2443         for _, f := range t.callbacks().NewPeer {
2444                 f(&ws.peer)
2445         }
2446         ws.peer.logger = t.logger.WithContextValue(&ws)
2447         ws.peer.peerImpl = &ws
2448         if t.haveInfo() {
2449                 ws.onGotInfo(t.info)
2450         }
2451         t.webSeeds[url] = &ws.peer
2452 }
2453
2454 func (t *Torrent) peerIsActive(p *Peer) (active bool) {
2455         t.iterPeers(func(p1 *Peer) {
2456                 if p1 == p {
2457                         active = true
2458                 }
2459         })
2460         return
2461 }
2462
2463 func (t *Torrent) requestIndexToRequest(ri RequestIndex) Request {
2464         index := t.pieceIndexOfRequestIndex(ri)
2465         return Request{
2466                 pp.Integer(index),
2467                 t.piece(index).chunkIndexSpec(ri % t.chunksPerRegularPiece()),
2468         }
2469 }
2470
2471 func (t *Torrent) requestIndexFromRequest(r Request) RequestIndex {
2472         return t.pieceRequestIndexOffset(pieceIndex(r.Index)) + RequestIndex(r.Begin/t.chunkSize)
2473 }
2474
2475 func (t *Torrent) pieceRequestIndexOffset(piece pieceIndex) RequestIndex {
2476         return RequestIndex(piece) * t.chunksPerRegularPiece()
2477 }
2478
2479 func (t *Torrent) updateComplete() {
2480         t.Complete.SetBool(t.haveAllPieces())
2481 }
2482
2483 func (t *Torrent) cancelRequest(r RequestIndex) *Peer {
2484         p := t.requestingPeer(r)
2485         if p != nil {
2486                 p.cancel(r)
2487         }
2488         // TODO: This is a check that an old invariant holds. It can be removed after some testing.
2489         //delete(t.pendingRequests, r)
2490         if _, ok := t.requestState[r]; ok {
2491                 panic("expected request state to be gone")
2492         }
2493         return p
2494 }
2495
2496 func (t *Torrent) requestingPeer(r RequestIndex) *Peer {
2497         return t.requestState[r].peer
2498 }
2499
2500 func (t *Torrent) addConnWithAllPieces(p *Peer) {
2501         if t.connsWithAllPieces == nil {
2502                 t.connsWithAllPieces = make(map[*Peer]struct{}, t.maxEstablishedConns)
2503         }
2504         t.connsWithAllPieces[p] = struct{}{}
2505 }
2506
2507 func (t *Torrent) deleteConnWithAllPieces(p *Peer) bool {
2508         _, ok := t.connsWithAllPieces[p]
2509         delete(t.connsWithAllPieces, p)
2510         return ok
2511 }
2512
2513 func (t *Torrent) numActivePeers() int {
2514         return len(t.conns) + len(t.webSeeds)
2515 }
2516
2517 func (t *Torrent) hasStorageCap() bool {
2518         f := t.storage.Capacity
2519         if f == nil {
2520                 return false
2521         }
2522         _, ok := (*f)()
2523         return ok
2524 }
2525
2526 func (t *Torrent) pieceIndexOfRequestIndex(ri RequestIndex) pieceIndex {
2527         return pieceIndex(ri / t.chunksPerRegularPiece())
2528 }
2529
2530 func (t *Torrent) iterUndirtiedRequestIndexesInPiece(
2531         reuseIter *typedRoaring.Iterator[RequestIndex],
2532         piece pieceIndex,
2533         f func(RequestIndex),
2534 ) {
2535         reuseIter.Initialize(&t.dirtyChunks)
2536         pieceRequestIndexOffset := t.pieceRequestIndexOffset(piece)
2537         iterBitmapUnsetInRange(
2538                 reuseIter,
2539                 pieceRequestIndexOffset, pieceRequestIndexOffset+t.pieceNumChunks(piece),
2540                 f,
2541         )
2542 }
2543
2544 type requestState struct {
2545         peer *Peer
2546         when time.Time
2547 }
2548
2549 // Returns an error if a received chunk is out of bounds in someway.
2550 func (t *Torrent) checkValidReceiveChunk(r Request) error {
2551         if !t.haveInfo() {
2552                 return errors.New("torrent missing info")
2553         }
2554         if int(r.Index) >= t.numPieces() {
2555                 return fmt.Errorf("chunk index %v, torrent num pieces %v", r.Index, t.numPieces())
2556         }
2557         pieceLength := t.pieceLength(pieceIndex(r.Index))
2558         if r.Begin >= pieceLength {
2559                 return fmt.Errorf("chunk begins beyond end of piece (%v >= %v)", r.Begin, pieceLength)
2560         }
2561         // We could check chunk lengths here, but chunk request size is not changed often, and tricky
2562         // for peers to manipulate as they need to send potentially large buffers to begin with. There
2563         // should be considerable checks elsewhere for this case due to the network overhead. We should
2564         // catch most of the overflow manipulation stuff by checking index and begin above.
2565         return nil
2566 }