]> Sergey Matveev's repositories - btrtrc.git/blob - torrent.go
Metadata size handling and DHT logging noise
[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         for i, c := range peers {
774                 fmt.Fprintf(w, "%2d. ", i+1)
775                 c.writeStatus(w, t)
776         }
777 }
778
779 func (t *Torrent) haveInfo() bool {
780         return t.info != nil
781 }
782
783 // Returns a run-time generated MetaInfo that includes the info bytes and
784 // announce-list as currently known to the client.
785 func (t *Torrent) newMetaInfo() metainfo.MetaInfo {
786         return metainfo.MetaInfo{
787                 CreationDate: time.Now().Unix(),
788                 Comment:      "dynamic metainfo from client",
789                 CreatedBy:    "go.torrent",
790                 AnnounceList: t.metainfo.UpvertedAnnounceList().Clone(),
791                 InfoBytes: func() []byte {
792                         if t.haveInfo() {
793                                 return t.metadataBytes
794                         } else {
795                                 return nil
796                         }
797                 }(),
798                 UrlList: func() []string {
799                         ret := make([]string, 0, len(t.webSeeds))
800                         for url := range t.webSeeds {
801                                 ret = append(ret, url)
802                         }
803                         return ret
804                 }(),
805         }
806 }
807
808 // Get bytes left
809 func (t *Torrent) BytesMissing() (n int64) {
810         t.cl.rLock()
811         n = t.bytesMissingLocked()
812         t.cl.rUnlock()
813         return
814 }
815
816 func (t *Torrent) bytesMissingLocked() int64 {
817         return t.bytesLeft()
818 }
819
820 func iterFlipped(b *roaring.Bitmap, end uint64, cb func(uint32) bool) {
821         roaring.Flip(b, 0, end).Iterate(cb)
822 }
823
824 func (t *Torrent) bytesLeft() (left int64) {
825         iterFlipped(&t._completedPieces, uint64(t.numPieces()), func(x uint32) bool {
826                 p := t.piece(pieceIndex(x))
827                 left += int64(p.length() - p.numDirtyBytes())
828                 return true
829         })
830         return
831 }
832
833 // Bytes left to give in tracker announces.
834 func (t *Torrent) bytesLeftAnnounce() int64 {
835         if t.haveInfo() {
836                 return t.bytesLeft()
837         } else {
838                 return -1
839         }
840 }
841
842 func (t *Torrent) piecePartiallyDownloaded(piece pieceIndex) bool {
843         if t.pieceComplete(piece) {
844                 return false
845         }
846         if t.pieceAllDirty(piece) {
847                 return false
848         }
849         return t.pieces[piece].hasDirtyChunks()
850 }
851
852 func (t *Torrent) usualPieceSize() int {
853         return int(t.info.PieceLength)
854 }
855
856 func (t *Torrent) numPieces() pieceIndex {
857         return t.info.NumPieces()
858 }
859
860 func (t *Torrent) numPiecesCompleted() (num pieceIndex) {
861         return pieceIndex(t._completedPieces.GetCardinality())
862 }
863
864 func (t *Torrent) close(wg *sync.WaitGroup) (err error) {
865         if !t.closed.Set() {
866                 err = errors.New("already closed")
867                 return
868         }
869         for _, f := range t.onClose {
870                 f()
871         }
872         if t.storage != nil {
873                 wg.Add(1)
874                 go func() {
875                         defer wg.Done()
876                         t.storageLock.Lock()
877                         defer t.storageLock.Unlock()
878                         if f := t.storage.Close; f != nil {
879                                 err1 := f()
880                                 if err1 != nil {
881                                         t.logger.WithDefaultLevel(log.Warning).Printf("error closing storage: %v", err1)
882                                 }
883                         }
884                 }()
885         }
886         t.iterPeers(func(p *Peer) {
887                 p.close()
888         })
889         if t.storage != nil {
890                 t.deletePieceRequestOrder()
891         }
892         for i := range t.pieces {
893                 p := t.piece(i)
894                 if p.relativeAvailability != 0 {
895                         panic(fmt.Sprintf("piece %v has relative availability %v", i, p.relativeAvailability))
896                 }
897         }
898         t.pex.Reset()
899         t.cl.event.Broadcast()
900         t.pieceStateChanges.Close()
901         t.updateWantPeersEvent()
902         return
903 }
904
905 func (t *Torrent) requestOffset(r Request) int64 {
906         return torrentRequestOffset(t.length(), int64(t.usualPieceSize()), r)
907 }
908
909 // Return the request that would include the given offset into the torrent data. Returns !ok if
910 // there is no such request.
911 func (t *Torrent) offsetRequest(off int64) (req Request, ok bool) {
912         return torrentOffsetRequest(t.length(), t.info.PieceLength, int64(t.chunkSize), off)
913 }
914
915 func (t *Torrent) writeChunk(piece int, begin int64, data []byte) (err error) {
916         defer perf.ScopeTimerErr(&err)()
917         n, err := t.pieces[piece].Storage().WriteAt(data, begin)
918         if err == nil && n != len(data) {
919                 err = io.ErrShortWrite
920         }
921         return err
922 }
923
924 func (t *Torrent) bitfield() (bf []bool) {
925         bf = make([]bool, t.numPieces())
926         t._completedPieces.Iterate(func(piece uint32) (again bool) {
927                 bf[piece] = true
928                 return true
929         })
930         return
931 }
932
933 func (t *Torrent) pieceNumChunks(piece pieceIndex) chunkIndexType {
934         return chunkIndexType((t.pieceLength(piece) + t.chunkSize - 1) / t.chunkSize)
935 }
936
937 func (t *Torrent) chunksPerRegularPiece() chunkIndexType {
938         return t._chunksPerRegularPiece
939 }
940
941 func (t *Torrent) numChunks() RequestIndex {
942         if t.numPieces() == 0 {
943                 return 0
944         }
945         return RequestIndex(t.numPieces()-1)*t.chunksPerRegularPiece() + t.pieceNumChunks(t.numPieces()-1)
946 }
947
948 func (t *Torrent) pendAllChunkSpecs(pieceIndex pieceIndex) {
949         t.dirtyChunks.RemoveRange(
950                 uint64(t.pieceRequestIndexOffset(pieceIndex)),
951                 uint64(t.pieceRequestIndexOffset(pieceIndex+1)))
952 }
953
954 func (t *Torrent) pieceLength(piece pieceIndex) pp.Integer {
955         if t.info.PieceLength == 0 {
956                 // There will be no variance amongst pieces. Only pain.
957                 return 0
958         }
959         if piece == t.numPieces()-1 {
960                 ret := pp.Integer(t.length() % t.info.PieceLength)
961                 if ret != 0 {
962                         return ret
963                 }
964         }
965         return pp.Integer(t.info.PieceLength)
966 }
967
968 func (t *Torrent) smartBanBlockCheckingWriter(piece pieceIndex) *blockCheckingWriter {
969         return &blockCheckingWriter{
970                 cache:        &t.smartBanCache,
971                 requestIndex: t.pieceRequestIndexOffset(piece),
972                 chunkSize:    t.chunkSize.Int(),
973         }
974 }
975
976 func (t *Torrent) hashPiece(piece pieceIndex) (
977         ret metainfo.Hash,
978         // These are peers that sent us blocks that differ from what we hash here.
979         differingPeers map[bannableAddr]struct{},
980         err error,
981 ) {
982         p := t.piece(piece)
983         p.waitNoPendingWrites()
984         storagePiece := t.pieces[piece].Storage()
985
986         // Does the backend want to do its own hashing?
987         if i, ok := storagePiece.PieceImpl.(storage.SelfHashing); ok {
988                 var sum metainfo.Hash
989                 // log.Printf("A piece decided to self-hash: %d", piece)
990                 sum, err = i.SelfHash()
991                 missinggo.CopyExact(&ret, sum)
992                 return
993         }
994
995         hash := pieceHash.New()
996         const logPieceContents = false
997         smartBanWriter := t.smartBanBlockCheckingWriter(piece)
998         writers := []io.Writer{hash, smartBanWriter}
999         var examineBuf bytes.Buffer
1000         if logPieceContents {
1001                 writers = append(writers, &examineBuf)
1002         }
1003         _, err = storagePiece.WriteTo(io.MultiWriter(writers...))
1004         if logPieceContents {
1005                 t.logger.WithDefaultLevel(log.Debug).Printf("hashed %q with copy err %v", examineBuf.Bytes(), err)
1006         }
1007         smartBanWriter.Flush()
1008         differingPeers = smartBanWriter.badPeers
1009         missinggo.CopyExact(&ret, hash.Sum(nil))
1010         return
1011 }
1012
1013 func (t *Torrent) haveAnyPieces() bool {
1014         return !t._completedPieces.IsEmpty()
1015 }
1016
1017 func (t *Torrent) haveAllPieces() bool {
1018         if !t.haveInfo() {
1019                 return false
1020         }
1021         return t._completedPieces.GetCardinality() == bitmap.BitRange(t.numPieces())
1022 }
1023
1024 func (t *Torrent) havePiece(index pieceIndex) bool {
1025         return t.haveInfo() && t.pieceComplete(index)
1026 }
1027
1028 func (t *Torrent) maybeDropMutuallyCompletePeer(
1029         // I'm not sure about taking peer here, not all peer implementations actually drop. Maybe that's
1030         // okay?
1031         p *Peer,
1032 ) {
1033         if !t.cl.config.DropMutuallyCompletePeers {
1034                 return
1035         }
1036         if !t.haveAllPieces() {
1037                 return
1038         }
1039         if all, known := p.peerHasAllPieces(); !(known && all) {
1040                 return
1041         }
1042         if p.useful() {
1043                 return
1044         }
1045         t.logger.WithDefaultLevel(log.Debug).Printf("dropping %v, which is mutually complete", p)
1046         p.drop()
1047 }
1048
1049 func (t *Torrent) haveChunk(r Request) (ret bool) {
1050         // defer func() {
1051         //      log.Println("have chunk", r, ret)
1052         // }()
1053         if !t.haveInfo() {
1054                 return false
1055         }
1056         if t.pieceComplete(pieceIndex(r.Index)) {
1057                 return true
1058         }
1059         p := &t.pieces[r.Index]
1060         return !p.pendingChunk(r.ChunkSpec, t.chunkSize)
1061 }
1062
1063 func chunkIndexFromChunkSpec(cs ChunkSpec, chunkSize pp.Integer) chunkIndexType {
1064         return chunkIndexType(cs.Begin / chunkSize)
1065 }
1066
1067 func (t *Torrent) wantPieceIndex(index pieceIndex) bool {
1068         return t._pendingPieces.Contains(uint32(index))
1069 }
1070
1071 // A pool of []*PeerConn, to reduce allocations in functions that need to index or sort Torrent
1072 // conns (which is a map).
1073 var peerConnSlices sync.Pool
1074
1075 func getPeerConnSlice(cap int) []*PeerConn {
1076         getInterface := peerConnSlices.Get()
1077         if getInterface == nil {
1078                 return make([]*PeerConn, 0, cap)
1079         } else {
1080                 return getInterface.([]*PeerConn)[:0]
1081         }
1082 }
1083
1084 // The worst connection is one that hasn't been sent, or sent anything useful for the longest. A bad
1085 // connection is one that usually sends us unwanted pieces, or has been in the worse half of the
1086 // established connections for more than a minute. This is O(n log n). If there was a way to not
1087 // consider the position of a conn relative to the total number, it could be reduced to O(n).
1088 func (t *Torrent) worstBadConn() (ret *PeerConn) {
1089         wcs := worseConnSlice{conns: t.appendUnclosedConns(getPeerConnSlice(len(t.conns)))}
1090         defer peerConnSlices.Put(wcs.conns)
1091         wcs.initKeys()
1092         heap.Init(&wcs)
1093         for wcs.Len() != 0 {
1094                 c := heap.Pop(&wcs).(*PeerConn)
1095                 if c._stats.ChunksReadWasted.Int64() >= 6 && c._stats.ChunksReadWasted.Int64() > c._stats.ChunksReadUseful.Int64() {
1096                         return c
1097                 }
1098                 // If the connection is in the worst half of the established
1099                 // connection quota and is older than a minute.
1100                 if wcs.Len() >= (t.maxEstablishedConns+1)/2 {
1101                         // Give connections 1 minute to prove themselves.
1102                         if time.Since(c.completedHandshake) > time.Minute {
1103                                 return c
1104                         }
1105                 }
1106         }
1107         return nil
1108 }
1109
1110 type PieceStateChange struct {
1111         Index int
1112         PieceState
1113 }
1114
1115 func (t *Torrent) publishPieceChange(piece pieceIndex) {
1116         t.cl._mu.Defer(func() {
1117                 cur := t.pieceState(piece)
1118                 p := &t.pieces[piece]
1119                 if cur != p.publicPieceState {
1120                         p.publicPieceState = cur
1121                         t.pieceStateChanges.Publish(PieceStateChange{
1122                                 int(piece),
1123                                 cur,
1124                         })
1125                 }
1126         })
1127 }
1128
1129 func (t *Torrent) pieceNumPendingChunks(piece pieceIndex) pp.Integer {
1130         if t.pieceComplete(piece) {
1131                 return 0
1132         }
1133         return pp.Integer(t.pieceNumChunks(piece) - t.pieces[piece].numDirtyChunks())
1134 }
1135
1136 func (t *Torrent) pieceAllDirty(piece pieceIndex) bool {
1137         return t.pieces[piece].allChunksDirty()
1138 }
1139
1140 func (t *Torrent) readersChanged() {
1141         t.updateReaderPieces()
1142         t.updateAllPiecePriorities("Torrent.readersChanged")
1143 }
1144
1145 func (t *Torrent) updateReaderPieces() {
1146         t._readerNowPieces, t._readerReadaheadPieces = t.readerPiecePriorities()
1147 }
1148
1149 func (t *Torrent) readerPosChanged(from, to pieceRange) {
1150         if from == to {
1151                 return
1152         }
1153         t.updateReaderPieces()
1154         // Order the ranges, high and low.
1155         l, h := from, to
1156         if l.begin > h.begin {
1157                 l, h = h, l
1158         }
1159         if l.end < h.begin {
1160                 // Two distinct ranges.
1161                 t.updatePiecePriorities(l.begin, l.end, "Torrent.readerPosChanged")
1162                 t.updatePiecePriorities(h.begin, h.end, "Torrent.readerPosChanged")
1163         } else {
1164                 // Ranges overlap.
1165                 end := l.end
1166                 if h.end > end {
1167                         end = h.end
1168                 }
1169                 t.updatePiecePriorities(l.begin, end, "Torrent.readerPosChanged")
1170         }
1171 }
1172
1173 func (t *Torrent) maybeNewConns() {
1174         // Tickle the accept routine.
1175         t.cl.event.Broadcast()
1176         t.openNewConns()
1177 }
1178
1179 func (t *Torrent) piecePriorityChanged(piece pieceIndex, reason string) {
1180         if t._pendingPieces.Contains(uint32(piece)) {
1181                 t.iterPeers(func(c *Peer) {
1182                         // if c.requestState.Interested {
1183                         //      return
1184                         // }
1185                         if !c.isLowOnRequests() {
1186                                 return
1187                         }
1188                         if !c.peerHasPiece(piece) {
1189                                 return
1190                         }
1191                         if c.requestState.Interested && c.peerChoking && !c.peerAllowedFast.Contains(piece) {
1192                                 return
1193                         }
1194                         c.updateRequests(reason)
1195                 })
1196         }
1197         t.maybeNewConns()
1198         t.publishPieceChange(piece)
1199 }
1200
1201 func (t *Torrent) updatePiecePriority(piece pieceIndex, reason string) {
1202         if !t.closed.IsSet() {
1203                 // It would be possible to filter on pure-priority changes here to avoid churning the piece
1204                 // request order.
1205                 t.updatePieceRequestOrder(piece)
1206         }
1207         p := &t.pieces[piece]
1208         newPrio := p.uncachedPriority()
1209         // t.logger.Printf("torrent %p: piece %d: uncached priority: %v", t, piece, newPrio)
1210         if newPrio == PiecePriorityNone {
1211                 if !t._pendingPieces.CheckedRemove(uint32(piece)) {
1212                         return
1213                 }
1214         } else {
1215                 if !t._pendingPieces.CheckedAdd(uint32(piece)) {
1216                         return
1217                 }
1218         }
1219         t.piecePriorityChanged(piece, reason)
1220 }
1221
1222 func (t *Torrent) updateAllPiecePriorities(reason string) {
1223         t.updatePiecePriorities(0, t.numPieces(), reason)
1224 }
1225
1226 // Update all piece priorities in one hit. This function should have the same
1227 // output as updatePiecePriority, but across all pieces.
1228 func (t *Torrent) updatePiecePriorities(begin, end pieceIndex, reason string) {
1229         for i := begin; i < end; i++ {
1230                 t.updatePiecePriority(i, reason)
1231         }
1232 }
1233
1234 // Returns the range of pieces [begin, end) that contains the extent of bytes.
1235 func (t *Torrent) byteRegionPieces(off, size int64) (begin, end pieceIndex) {
1236         if off >= t.length() {
1237                 return
1238         }
1239         if off < 0 {
1240                 size += off
1241                 off = 0
1242         }
1243         if size <= 0 {
1244                 return
1245         }
1246         begin = pieceIndex(off / t.info.PieceLength)
1247         end = pieceIndex((off + size + t.info.PieceLength - 1) / t.info.PieceLength)
1248         if end > pieceIndex(t.info.NumPieces()) {
1249                 end = pieceIndex(t.info.NumPieces())
1250         }
1251         return
1252 }
1253
1254 // Returns true if all iterations complete without breaking. Returns the read regions for all
1255 // readers. The reader regions should not be merged as some callers depend on this method to
1256 // enumerate readers.
1257 func (t *Torrent) forReaderOffsetPieces(f func(begin, end pieceIndex) (more bool)) (all bool) {
1258         for r := range t.readers {
1259                 p := r.pieces
1260                 if p.begin >= p.end {
1261                         continue
1262                 }
1263                 if !f(p.begin, p.end) {
1264                         return false
1265                 }
1266         }
1267         return true
1268 }
1269
1270 func (t *Torrent) piecePriority(piece pieceIndex) piecePriority {
1271         return t.piece(piece).uncachedPriority()
1272 }
1273
1274 func (t *Torrent) pendRequest(req RequestIndex) {
1275         t.piece(t.pieceIndexOfRequestIndex(req)).pendChunkIndex(req % t.chunksPerRegularPiece())
1276 }
1277
1278 func (t *Torrent) pieceCompletionChanged(piece pieceIndex, reason string) {
1279         t.cl.event.Broadcast()
1280         if t.pieceComplete(piece) {
1281                 t.onPieceCompleted(piece)
1282         } else {
1283                 t.onIncompletePiece(piece)
1284         }
1285         t.updatePiecePriority(piece, reason)
1286 }
1287
1288 func (t *Torrent) numReceivedConns() (ret int) {
1289         for c := range t.conns {
1290                 if c.Discovery == PeerSourceIncoming {
1291                         ret++
1292                 }
1293         }
1294         return
1295 }
1296
1297 func (t *Torrent) maxHalfOpen() int {
1298         // Note that if we somehow exceed the maximum established conns, we want
1299         // the negative value to have an effect.
1300         establishedHeadroom := int64(t.maxEstablishedConns - len(t.conns))
1301         extraIncoming := int64(t.numReceivedConns() - t.maxEstablishedConns/2)
1302         // We want to allow some experimentation with new peers, and to try to
1303         // upset an oversupply of received connections.
1304         return int(min(max(5, extraIncoming)+establishedHeadroom, int64(t.cl.config.HalfOpenConnsPerTorrent)))
1305 }
1306
1307 func (t *Torrent) openNewConns() (initiated int) {
1308         defer t.updateWantPeersEvent()
1309         for t.peers.Len() != 0 {
1310                 if !t.wantConns() {
1311                         return
1312                 }
1313                 if len(t.halfOpen) >= t.maxHalfOpen() {
1314                         return
1315                 }
1316                 if len(t.cl.dialers) == 0 {
1317                         return
1318                 }
1319                 if t.cl.numHalfOpen >= t.cl.config.TotalHalfOpenConns {
1320                         return
1321                 }
1322                 p := t.peers.PopMax()
1323                 t.initiateConn(p)
1324                 initiated++
1325         }
1326         return
1327 }
1328
1329 func (t *Torrent) updatePieceCompletion(piece pieceIndex) bool {
1330         p := t.piece(piece)
1331         uncached := t.pieceCompleteUncached(piece)
1332         cached := p.completion()
1333         changed := cached != uncached
1334         complete := uncached.Complete
1335         p.storageCompletionOk = uncached.Ok
1336         x := uint32(piece)
1337         if complete {
1338                 t._completedPieces.Add(x)
1339                 t.openNewConns()
1340         } else {
1341                 t._completedPieces.Remove(x)
1342         }
1343         p.t.updatePieceRequestOrder(piece)
1344         t.updateComplete()
1345         if complete && len(p.dirtiers) != 0 {
1346                 t.logger.Printf("marked piece %v complete but still has dirtiers", piece)
1347         }
1348         if changed {
1349                 log.Fstr("piece %d completion changed: %+v -> %+v", piece, cached, uncached).LogLevel(log.Debug, t.logger)
1350                 t.pieceCompletionChanged(piece, "Torrent.updatePieceCompletion")
1351         }
1352         return changed
1353 }
1354
1355 // Non-blocking read. Client lock is not required.
1356 func (t *Torrent) readAt(b []byte, off int64) (n int, err error) {
1357         for len(b) != 0 {
1358                 p := &t.pieces[off/t.info.PieceLength]
1359                 p.waitNoPendingWrites()
1360                 var n1 int
1361                 n1, err = p.Storage().ReadAt(b, off-p.Info().Offset())
1362                 if n1 == 0 {
1363                         break
1364                 }
1365                 off += int64(n1)
1366                 n += n1
1367                 b = b[n1:]
1368         }
1369         return
1370 }
1371
1372 // Returns an error if the metadata was completed, but couldn't be set for some reason. Blame it on
1373 // the last peer to contribute. TODO: Actually we shouldn't blame peers for failure to open storage
1374 // etc. Also we should probably cached metadata pieces per-Peer, to isolate failure appropriately.
1375 func (t *Torrent) maybeCompleteMetadata() error {
1376         if t.haveInfo() {
1377                 // Nothing to do.
1378                 return nil
1379         }
1380         if !t.haveAllMetadataPieces() {
1381                 // Don't have enough metadata pieces.
1382                 return nil
1383         }
1384         err := t.setInfoBytesLocked(t.metadataBytes)
1385         if err != nil {
1386                 t.invalidateMetadata()
1387                 return fmt.Errorf("error setting info bytes: %s", err)
1388         }
1389         if t.cl.config.Debug {
1390                 t.logger.Printf("%s: got metadata from peers", t)
1391         }
1392         return nil
1393 }
1394
1395 func (t *Torrent) readerPiecePriorities() (now, readahead bitmap.Bitmap) {
1396         t.forReaderOffsetPieces(func(begin, end pieceIndex) bool {
1397                 if end > begin {
1398                         now.Add(bitmap.BitIndex(begin))
1399                         readahead.AddRange(bitmap.BitRange(begin)+1, bitmap.BitRange(end))
1400                 }
1401                 return true
1402         })
1403         return
1404 }
1405
1406 func (t *Torrent) needData() bool {
1407         if t.closed.IsSet() {
1408                 return false
1409         }
1410         if !t.haveInfo() {
1411                 return true
1412         }
1413         return !t._pendingPieces.IsEmpty()
1414 }
1415
1416 func appendMissingStrings(old, new []string) (ret []string) {
1417         ret = old
1418 new:
1419         for _, n := range new {
1420                 for _, o := range old {
1421                         if o == n {
1422                                 continue new
1423                         }
1424                 }
1425                 ret = append(ret, n)
1426         }
1427         return
1428 }
1429
1430 func appendMissingTrackerTiers(existing [][]string, minNumTiers int) (ret [][]string) {
1431         ret = existing
1432         for minNumTiers > len(ret) {
1433                 ret = append(ret, nil)
1434         }
1435         return
1436 }
1437
1438 func (t *Torrent) addTrackers(announceList [][]string) {
1439         fullAnnounceList := &t.metainfo.AnnounceList
1440         t.metainfo.AnnounceList = appendMissingTrackerTiers(*fullAnnounceList, len(announceList))
1441         for tierIndex, trackerURLs := range announceList {
1442                 (*fullAnnounceList)[tierIndex] = appendMissingStrings((*fullAnnounceList)[tierIndex], trackerURLs)
1443         }
1444         t.startMissingTrackerScrapers()
1445         t.updateWantPeersEvent()
1446 }
1447
1448 // Don't call this before the info is available.
1449 func (t *Torrent) bytesCompleted() int64 {
1450         if !t.haveInfo() {
1451                 return 0
1452         }
1453         return t.length() - t.bytesLeft()
1454 }
1455
1456 func (t *Torrent) SetInfoBytes(b []byte) (err error) {
1457         t.cl.lock()
1458         defer t.cl.unlock()
1459         return t.setInfoBytesLocked(b)
1460 }
1461
1462 // Returns true if connection is removed from torrent.Conns.
1463 func (t *Torrent) deletePeerConn(c *PeerConn) (ret bool) {
1464         if !c.closed.IsSet() {
1465                 panic("connection is not closed")
1466                 // There are behaviours prevented by the closed state that will fail
1467                 // if the connection has been deleted.
1468         }
1469         _, ret = t.conns[c]
1470         delete(t.conns, c)
1471         // Avoid adding a drop event more than once. Probably we should track whether we've generated
1472         // the drop event against the PexConnState instead.
1473         if ret {
1474                 if !t.cl.config.DisablePEX {
1475                         t.pex.Drop(c)
1476                 }
1477         }
1478         torrent.Add("deleted connections", 1)
1479         c.deleteAllRequests("Torrent.deletePeerConn")
1480         t.assertPendingRequests()
1481         if t.numActivePeers() == 0 && len(t.connsWithAllPieces) != 0 {
1482                 panic(t.connsWithAllPieces)
1483         }
1484         return
1485 }
1486
1487 func (t *Torrent) decPeerPieceAvailability(p *Peer) {
1488         if t.deleteConnWithAllPieces(p) {
1489                 return
1490         }
1491         if !t.haveInfo() {
1492                 return
1493         }
1494         p.peerPieces().Iterate(func(i uint32) bool {
1495                 p.t.decPieceAvailability(pieceIndex(i))
1496                 return true
1497         })
1498 }
1499
1500 func (t *Torrent) assertPendingRequests() {
1501         if !check {
1502                 return
1503         }
1504         // var actual pendingRequests
1505         // if t.haveInfo() {
1506         //      actual.m = make([]int, t.numChunks())
1507         // }
1508         // t.iterPeers(func(p *Peer) {
1509         //      p.requestState.Requests.Iterate(func(x uint32) bool {
1510         //              actual.Inc(x)
1511         //              return true
1512         //      })
1513         // })
1514         // diff := cmp.Diff(actual.m, t.pendingRequests.m)
1515         // if diff != "" {
1516         //      panic(diff)
1517         // }
1518 }
1519
1520 func (t *Torrent) dropConnection(c *PeerConn) {
1521         t.cl.event.Broadcast()
1522         c.close()
1523         if t.deletePeerConn(c) {
1524                 t.openNewConns()
1525         }
1526 }
1527
1528 // Peers as in contact information for dialing out.
1529 func (t *Torrent) wantPeers() bool {
1530         if t.closed.IsSet() {
1531                 return false
1532         }
1533         if t.peers.Len() > t.cl.config.TorrentPeersLowWater {
1534                 return false
1535         }
1536         return t.wantConns()
1537 }
1538
1539 func (t *Torrent) updateWantPeersEvent() {
1540         if t.wantPeers() {
1541                 t.wantPeersEvent.Set()
1542         } else {
1543                 t.wantPeersEvent.Clear()
1544         }
1545 }
1546
1547 // Returns whether the client should make effort to seed the torrent.
1548 func (t *Torrent) seeding() bool {
1549         cl := t.cl
1550         if t.closed.IsSet() {
1551                 return false
1552         }
1553         if t.dataUploadDisallowed {
1554                 return false
1555         }
1556         if cl.config.NoUpload {
1557                 return false
1558         }
1559         if !cl.config.Seed {
1560                 return false
1561         }
1562         if cl.config.DisableAggressiveUpload && t.needData() {
1563                 return false
1564         }
1565         return true
1566 }
1567
1568 func (t *Torrent) onWebRtcConn(
1569         c datachannel.ReadWriteCloser,
1570         dcc webtorrent.DataChannelContext,
1571 ) {
1572         defer c.Close()
1573         netConn := webrtcNetConn{
1574                 ReadWriteCloser:    c,
1575                 DataChannelContext: dcc,
1576         }
1577         peerRemoteAddr := netConn.RemoteAddr()
1578         //t.logger.Levelf(log.Critical, "onWebRtcConn remote addr: %v", peerRemoteAddr)
1579         if t.cl.badPeerAddr(peerRemoteAddr) {
1580                 return
1581         }
1582         localAddrIpPort := missinggo.IpPortFromNetAddr(netConn.LocalAddr())
1583         pc, err := t.cl.initiateProtocolHandshakes(
1584                 context.Background(),
1585                 netConn,
1586                 t,
1587                 false,
1588                 newConnectionOpts{
1589                         outgoing:        dcc.LocalOffered,
1590                         remoteAddr:      peerRemoteAddr,
1591                         localPublicAddr: localAddrIpPort,
1592                         network:         webrtcNetwork,
1593                         connString:      fmt.Sprintf("webrtc offer_id %x: %v", dcc.OfferId, regularNetConnPeerConnConnString(netConn)),
1594                 },
1595         )
1596         if err != nil {
1597                 t.logger.WithDefaultLevel(log.Error).Printf("error in handshaking webrtc connection: %v", err)
1598                 return
1599         }
1600         if dcc.LocalOffered {
1601                 pc.Discovery = PeerSourceTracker
1602         } else {
1603                 pc.Discovery = PeerSourceIncoming
1604         }
1605         pc.conn.SetWriteDeadline(time.Time{})
1606         t.cl.lock()
1607         defer t.cl.unlock()
1608         err = t.cl.runHandshookConn(pc, t)
1609         if err != nil {
1610                 t.logger.WithDefaultLevel(log.Debug).Printf("error running handshook webrtc conn: %v", err)
1611         }
1612 }
1613
1614 func (t *Torrent) logRunHandshookConn(pc *PeerConn, logAll bool, level log.Level) {
1615         err := t.cl.runHandshookConn(pc, t)
1616         if err != nil || logAll {
1617                 t.logger.WithDefaultLevel(level).Levelf(log.ErrorLevel(err), "error running handshook conn: %v", err)
1618         }
1619 }
1620
1621 func (t *Torrent) runHandshookConnLoggingErr(pc *PeerConn) {
1622         t.logRunHandshookConn(pc, false, log.Debug)
1623 }
1624
1625 func (t *Torrent) startWebsocketAnnouncer(u url.URL) torrentTrackerAnnouncer {
1626         wtc, release := t.cl.websocketTrackers.Get(u.String(), t.infoHash)
1627         // This needs to run before the Torrent is dropped from the Client, to prevent a new webtorrent.TrackerClient for
1628         // the same info hash before the old one is cleaned up.
1629         t.onClose = append(t.onClose, release)
1630         wst := websocketTrackerStatus{u, wtc}
1631         go func() {
1632                 err := wtc.Announce(tracker.Started, t.infoHash)
1633                 if err != nil {
1634                         t.logger.WithDefaultLevel(log.Warning).Printf(
1635                                 "error in initial announce to %q: %v",
1636                                 u.String(), err,
1637                         )
1638                 }
1639         }()
1640         return wst
1641 }
1642
1643 func (t *Torrent) startScrapingTracker(_url string) {
1644         if _url == "" {
1645                 return
1646         }
1647         u, err := url.Parse(_url)
1648         if err != nil {
1649                 // URLs with a leading '*' appear to be a uTorrent convention to
1650                 // disable trackers.
1651                 if _url[0] != '*' {
1652                         log.Str("error parsing tracker url").AddValues("url", _url).Log(t.logger)
1653                 }
1654                 return
1655         }
1656         if u.Scheme == "udp" {
1657                 u.Scheme = "udp4"
1658                 t.startScrapingTracker(u.String())
1659                 u.Scheme = "udp6"
1660                 t.startScrapingTracker(u.String())
1661                 return
1662         }
1663         if _, ok := t.trackerAnnouncers[_url]; ok {
1664                 return
1665         }
1666         sl := func() torrentTrackerAnnouncer {
1667                 switch u.Scheme {
1668                 case "ws", "wss":
1669                         if t.cl.config.DisableWebtorrent {
1670                                 return nil
1671                         }
1672                         return t.startWebsocketAnnouncer(*u)
1673                 case "udp4":
1674                         if t.cl.config.DisableIPv4Peers || t.cl.config.DisableIPv4 {
1675                                 return nil
1676                         }
1677                 case "udp6":
1678                         if t.cl.config.DisableIPv6 {
1679                                 return nil
1680                         }
1681                 }
1682                 newAnnouncer := &trackerScraper{
1683                         u:               *u,
1684                         t:               t,
1685                         lookupTrackerIp: t.cl.config.LookupTrackerIp,
1686                 }
1687                 go newAnnouncer.Run()
1688                 return newAnnouncer
1689         }()
1690         if sl == nil {
1691                 return
1692         }
1693         if t.trackerAnnouncers == nil {
1694                 t.trackerAnnouncers = make(map[string]torrentTrackerAnnouncer)
1695         }
1696         t.trackerAnnouncers[_url] = sl
1697 }
1698
1699 // Adds and starts tracker scrapers for tracker URLs that aren't already
1700 // running.
1701 func (t *Torrent) startMissingTrackerScrapers() {
1702         if t.cl.config.DisableTrackers {
1703                 return
1704         }
1705         t.startScrapingTracker(t.metainfo.Announce)
1706         for _, tier := range t.metainfo.AnnounceList {
1707                 for _, url := range tier {
1708                         t.startScrapingTracker(url)
1709                 }
1710         }
1711 }
1712
1713 // Returns an AnnounceRequest with fields filled out to defaults and current
1714 // values.
1715 func (t *Torrent) announceRequest(event tracker.AnnounceEvent) tracker.AnnounceRequest {
1716         // Note that IPAddress is not set. It's set for UDP inside the tracker code, since it's
1717         // dependent on the network in use.
1718         return tracker.AnnounceRequest{
1719                 Event: event,
1720                 NumWant: func() int32 {
1721                         if t.wantPeers() && len(t.cl.dialers) > 0 {
1722                                 return 200 // Win has UDP packet limit. See: https://github.com/anacrolix/torrent/issues/764
1723                         } else {
1724                                 return 0
1725                         }
1726                 }(),
1727                 Port:     uint16(t.cl.incomingPeerPort()),
1728                 PeerId:   t.cl.peerID,
1729                 InfoHash: t.infoHash,
1730                 Key:      t.cl.announceKey(),
1731
1732                 // The following are vaguely described in BEP 3.
1733
1734                 Left:     t.bytesLeftAnnounce(),
1735                 Uploaded: t.stats.BytesWrittenData.Int64(),
1736                 // There's no mention of wasted or unwanted download in the BEP.
1737                 Downloaded: t.stats.BytesReadUsefulData.Int64(),
1738         }
1739 }
1740
1741 // Adds peers revealed in an announce until the announce ends, or we have
1742 // enough peers.
1743 func (t *Torrent) consumeDhtAnnouncePeers(pvs <-chan dht.PeersValues) {
1744         cl := t.cl
1745         for v := range pvs {
1746                 cl.lock()
1747                 added := 0
1748                 for _, cp := range v.Peers {
1749                         if cp.Port == 0 {
1750                                 // Can't do anything with this.
1751                                 continue
1752                         }
1753                         if t.addPeer(PeerInfo{
1754                                 Addr:   ipPortAddr{cp.IP, cp.Port},
1755                                 Source: PeerSourceDhtGetPeers,
1756                         }) {
1757                                 added++
1758                         }
1759                 }
1760                 cl.unlock()
1761                 // if added != 0 {
1762                 //      log.Printf("added %v peers from dht for %v", added, t.InfoHash().HexString())
1763                 // }
1764         }
1765 }
1766
1767 // Announce using the provided DHT server. Peers are consumed automatically. done is closed when the
1768 // announce ends. stop will force the announce to end.
1769 func (t *Torrent) AnnounceToDht(s DhtServer) (done <-chan struct{}, stop func(), err error) {
1770         ps, err := s.Announce(t.infoHash, t.cl.incomingPeerPort(), true)
1771         if err != nil {
1772                 return
1773         }
1774         _done := make(chan struct{})
1775         done = _done
1776         stop = ps.Close
1777         go func() {
1778                 t.consumeDhtAnnouncePeers(ps.Peers())
1779                 close(_done)
1780         }()
1781         return
1782 }
1783
1784 func (t *Torrent) timeboxedAnnounceToDht(s DhtServer) error {
1785         _, stop, err := t.AnnounceToDht(s)
1786         if err != nil {
1787                 return err
1788         }
1789         select {
1790         case <-t.closed.Done():
1791         case <-time.After(5 * time.Minute):
1792         }
1793         stop()
1794         return nil
1795 }
1796
1797 func (t *Torrent) dhtAnnouncer(s DhtServer) {
1798         cl := t.cl
1799         cl.lock()
1800         defer cl.unlock()
1801         for {
1802                 for {
1803                         if t.closed.IsSet() {
1804                                 return
1805                         }
1806                         // We're also announcing ourselves as a listener, so we don't just want peer addresses.
1807                         // TODO: We can include the announce_peer step depending on whether we can receive
1808                         // inbound connections. We should probably only announce once every 15 mins too.
1809                         if !t.wantConns() {
1810                                 goto wait
1811                         }
1812                         // TODO: Determine if there's a listener on the port we're announcing.
1813                         if len(cl.dialers) == 0 && len(cl.listeners) == 0 {
1814                                 goto wait
1815                         }
1816                         break
1817                 wait:
1818                         cl.event.Wait()
1819                 }
1820                 func() {
1821                         t.numDHTAnnounces++
1822                         cl.unlock()
1823                         defer cl.lock()
1824                         err := t.timeboxedAnnounceToDht(s)
1825                         if err != nil {
1826                                 t.logger.WithDefaultLevel(log.Warning).Printf("error announcing %q to DHT: %s", t, err)
1827                         }
1828                 }()
1829         }
1830 }
1831
1832 func (t *Torrent) addPeers(peers []PeerInfo) (added int) {
1833         for _, p := range peers {
1834                 if t.addPeer(p) {
1835                         added++
1836                 }
1837         }
1838         return
1839 }
1840
1841 // The returned TorrentStats may require alignment in memory. See
1842 // https://github.com/anacrolix/torrent/issues/383.
1843 func (t *Torrent) Stats() TorrentStats {
1844         t.cl.rLock()
1845         defer t.cl.rUnlock()
1846         return t.statsLocked()
1847 }
1848
1849 func (t *Torrent) statsLocked() (ret TorrentStats) {
1850         ret.ActivePeers = len(t.conns)
1851         ret.HalfOpenPeers = len(t.halfOpen)
1852         ret.PendingPeers = t.peers.Len()
1853         ret.TotalPeers = t.numTotalPeers()
1854         ret.ConnectedSeeders = 0
1855         for c := range t.conns {
1856                 if all, ok := c.peerHasAllPieces(); all && ok {
1857                         ret.ConnectedSeeders++
1858                 }
1859         }
1860         ret.ConnStats = t.stats.Copy()
1861         ret.PiecesComplete = t.numPiecesCompleted()
1862         return
1863 }
1864
1865 // The total number of peers in the torrent.
1866 func (t *Torrent) numTotalPeers() int {
1867         peers := make(map[string]struct{})
1868         for conn := range t.conns {
1869                 ra := conn.conn.RemoteAddr()
1870                 if ra == nil {
1871                         // It's been closed and doesn't support RemoteAddr.
1872                         continue
1873                 }
1874                 peers[ra.String()] = struct{}{}
1875         }
1876         for addr := range t.halfOpen {
1877                 peers[addr] = struct{}{}
1878         }
1879         t.peers.Each(func(peer PeerInfo) {
1880                 peers[peer.Addr.String()] = struct{}{}
1881         })
1882         return len(peers)
1883 }
1884
1885 // Reconcile bytes transferred before connection was associated with a
1886 // torrent.
1887 func (t *Torrent) reconcileHandshakeStats(c *PeerConn) {
1888         if c._stats != (ConnStats{
1889                 // Handshakes should only increment these fields:
1890                 BytesWritten: c._stats.BytesWritten,
1891                 BytesRead:    c._stats.BytesRead,
1892         }) {
1893                 panic("bad stats")
1894         }
1895         c.postHandshakeStats(func(cs *ConnStats) {
1896                 cs.BytesRead.Add(c._stats.BytesRead.Int64())
1897                 cs.BytesWritten.Add(c._stats.BytesWritten.Int64())
1898         })
1899         c.reconciledHandshakeStats = true
1900 }
1901
1902 // Returns true if the connection is added.
1903 func (t *Torrent) addPeerConn(c *PeerConn) (err error) {
1904         defer func() {
1905                 if err == nil {
1906                         torrent.Add("added connections", 1)
1907                 }
1908         }()
1909         if t.closed.IsSet() {
1910                 return errors.New("torrent closed")
1911         }
1912         for c0 := range t.conns {
1913                 if c.PeerID != c0.PeerID {
1914                         continue
1915                 }
1916                 if !t.cl.config.DropDuplicatePeerIds {
1917                         continue
1918                 }
1919                 if c.hasPreferredNetworkOver(c0) {
1920                         c0.close()
1921                         t.deletePeerConn(c0)
1922                 } else {
1923                         return errors.New("existing connection preferred")
1924                 }
1925         }
1926         if len(t.conns) >= t.maxEstablishedConns {
1927                 c := t.worstBadConn()
1928                 if c == nil {
1929                         return errors.New("don't want conns")
1930                 }
1931                 c.close()
1932                 t.deletePeerConn(c)
1933         }
1934         if len(t.conns) >= t.maxEstablishedConns {
1935                 panic(len(t.conns))
1936         }
1937         t.conns[c] = struct{}{}
1938         if !t.cl.config.DisablePEX && !c.PeerExtensionBytes.SupportsExtended() {
1939                 t.pex.Add(c) // as no further extended handshake expected
1940         }
1941         return nil
1942 }
1943
1944 func (t *Torrent) wantConns() bool {
1945         if !t.networkingEnabled.Bool() {
1946                 return false
1947         }
1948         if t.closed.IsSet() {
1949                 return false
1950         }
1951         if !t.needData() && (!t.seeding() || !t.haveAnyPieces()) {
1952                 return false
1953         }
1954         return len(t.conns) < t.maxEstablishedConns || t.worstBadConn() != nil
1955 }
1956
1957 func (t *Torrent) SetMaxEstablishedConns(max int) (oldMax int) {
1958         t.cl.lock()
1959         defer t.cl.unlock()
1960         oldMax = t.maxEstablishedConns
1961         t.maxEstablishedConns = max
1962         wcs := worseConnSlice{
1963                 conns: t.appendConns(nil, func(*PeerConn) bool {
1964                         return true
1965                 }),
1966         }
1967         wcs.initKeys()
1968         heap.Init(&wcs)
1969         for len(t.conns) > t.maxEstablishedConns && wcs.Len() > 0 {
1970                 t.dropConnection(heap.Pop(&wcs).(*PeerConn))
1971         }
1972         t.openNewConns()
1973         return oldMax
1974 }
1975
1976 func (t *Torrent) pieceHashed(piece pieceIndex, passed bool, hashIoErr error) {
1977         t.logger.LazyLog(log.Debug, func() log.Msg {
1978                 return log.Fstr("hashed piece %d (passed=%t)", piece, passed)
1979         })
1980         p := t.piece(piece)
1981         p.numVerifies++
1982         t.cl.event.Broadcast()
1983         if t.closed.IsSet() {
1984                 return
1985         }
1986
1987         // Don't score the first time a piece is hashed, it could be an initial check.
1988         if p.storageCompletionOk {
1989                 if passed {
1990                         pieceHashedCorrect.Add(1)
1991                 } else {
1992                         log.Fmsg(
1993                                 "piece %d failed hash: %d connections contributed", piece, len(p.dirtiers),
1994                         ).AddValues(t, p).LogLevel(
1995
1996                                 log.Debug, t.logger)
1997
1998                         pieceHashedNotCorrect.Add(1)
1999                 }
2000         }
2001
2002         p.marking = true
2003         t.publishPieceChange(piece)
2004         defer func() {
2005                 p.marking = false
2006                 t.publishPieceChange(piece)
2007         }()
2008
2009         if passed {
2010                 if len(p.dirtiers) != 0 {
2011                         // Don't increment stats above connection-level for every involved connection.
2012                         t.allStats((*ConnStats).incrementPiecesDirtiedGood)
2013                 }
2014                 for c := range p.dirtiers {
2015                         c._stats.incrementPiecesDirtiedGood()
2016                 }
2017                 t.clearPieceTouchers(piece)
2018                 hasDirty := p.hasDirtyChunks()
2019                 t.cl.unlock()
2020                 if hasDirty {
2021                         p.Flush() // You can be synchronous here!
2022                 }
2023                 err := p.Storage().MarkComplete()
2024                 if err != nil {
2025                         t.logger.Printf("%T: error marking piece complete %d: %s", t.storage, piece, err)
2026                 }
2027                 t.cl.lock()
2028
2029                 if t.closed.IsSet() {
2030                         return
2031                 }
2032                 t.pendAllChunkSpecs(piece)
2033         } else {
2034                 if len(p.dirtiers) != 0 && p.allChunksDirty() && hashIoErr == nil {
2035                         // Peers contributed to all the data for this piece hash failure, and the failure was
2036                         // not due to errors in the storage (such as data being dropped in a cache).
2037
2038                         // Increment Torrent and above stats, and then specific connections.
2039                         t.allStats((*ConnStats).incrementPiecesDirtiedBad)
2040                         for c := range p.dirtiers {
2041                                 // Y u do dis peer?!
2042                                 c.stats().incrementPiecesDirtiedBad()
2043                         }
2044
2045                         bannableTouchers := make([]*Peer, 0, len(p.dirtiers))
2046                         for c := range p.dirtiers {
2047                                 if !c.trusted {
2048                                         bannableTouchers = append(bannableTouchers, c)
2049                                 }
2050                         }
2051                         t.clearPieceTouchers(piece)
2052                         slices.Sort(bannableTouchers, connLessTrusted)
2053
2054                         if t.cl.config.Debug {
2055                                 t.logger.Printf(
2056                                         "bannable conns by trust for piece %d: %v",
2057                                         piece,
2058                                         func() (ret []connectionTrust) {
2059                                                 for _, c := range bannableTouchers {
2060                                                         ret = append(ret, c.trust())
2061                                                 }
2062                                                 return
2063                                         }(),
2064                                 )
2065                         }
2066
2067                         if len(bannableTouchers) >= 1 {
2068                                 c := bannableTouchers[0]
2069                                 if len(bannableTouchers) != 1 {
2070                                         t.logger.Levelf(log.Warning, "would have banned %v for touching piece %v after failed piece check", c.remoteIp(), piece)
2071                                 } else {
2072                                         // Turns out it's still useful to ban peers like this because if there's only a
2073                                         // single peer for a piece, and we never progress that piece to completion, we
2074                                         // will never smart-ban them. Discovered in
2075                                         // https://github.com/anacrolix/torrent/issues/715.
2076                                         t.logger.Levelf(log.Warning, "banning %v for being sole dirtier of piece %v after failed piece check", c, piece)
2077                                         c.ban()
2078                                 }
2079                         }
2080                 }
2081                 t.onIncompletePiece(piece)
2082                 p.Storage().MarkNotComplete()
2083         }
2084         t.updatePieceCompletion(piece)
2085 }
2086
2087 func (t *Torrent) cancelRequestsForPiece(piece pieceIndex) {
2088         start := t.pieceRequestIndexOffset(piece)
2089         end := start + t.pieceNumChunks(piece)
2090         for ri := start; ri < end; ri++ {
2091                 t.cancelRequest(ri)
2092         }
2093 }
2094
2095 func (t *Torrent) onPieceCompleted(piece pieceIndex) {
2096         t.pendAllChunkSpecs(piece)
2097         t.cancelRequestsForPiece(piece)
2098         t.piece(piece).readerCond.Broadcast()
2099         for conn := range t.conns {
2100                 conn.have(piece)
2101                 t.maybeDropMutuallyCompletePeer(&conn.Peer)
2102         }
2103 }
2104
2105 // Called when a piece is found to be not complete.
2106 func (t *Torrent) onIncompletePiece(piece pieceIndex) {
2107         if t.pieceAllDirty(piece) {
2108                 t.pendAllChunkSpecs(piece)
2109         }
2110         if !t.wantPieceIndex(piece) {
2111                 // t.logger.Printf("piece %d incomplete and unwanted", piece)
2112                 return
2113         }
2114         // We could drop any connections that we told we have a piece that we
2115         // don't here. But there's a test failure, and it seems clients don't care
2116         // if you request pieces that you already claim to have. Pruning bad
2117         // connections might just remove any connections that aren't treating us
2118         // favourably anyway.
2119
2120         // for c := range t.conns {
2121         //      if c.sentHave(piece) {
2122         //              c.drop()
2123         //      }
2124         // }
2125         t.iterPeers(func(conn *Peer) {
2126                 if conn.peerHasPiece(piece) {
2127                         conn.updateRequests("piece incomplete")
2128                 }
2129         })
2130 }
2131
2132 func (t *Torrent) tryCreateMorePieceHashers() {
2133         for !t.closed.IsSet() && t.activePieceHashes < 2 && t.tryCreatePieceHasher() {
2134         }
2135 }
2136
2137 func (t *Torrent) tryCreatePieceHasher() bool {
2138         if t.storage == nil {
2139                 return false
2140         }
2141         pi, ok := t.getPieceToHash()
2142         if !ok {
2143                 return false
2144         }
2145         p := t.piece(pi)
2146         t.piecesQueuedForHash.Remove(bitmap.BitIndex(pi))
2147         p.hashing = true
2148         t.publishPieceChange(pi)
2149         t.updatePiecePriority(pi, "Torrent.tryCreatePieceHasher")
2150         t.storageLock.RLock()
2151         t.activePieceHashes++
2152         go t.pieceHasher(pi)
2153         return true
2154 }
2155
2156 func (t *Torrent) getPieceToHash() (ret pieceIndex, ok bool) {
2157         t.piecesQueuedForHash.IterTyped(func(i pieceIndex) bool {
2158                 if t.piece(i).hashing {
2159                         return true
2160                 }
2161                 ret = i
2162                 ok = true
2163                 return false
2164         })
2165         return
2166 }
2167
2168 func (t *Torrent) dropBannedPeers() {
2169         t.iterPeers(func(p *Peer) {
2170                 remoteIp := p.remoteIp()
2171                 if remoteIp == nil {
2172                         if p.bannableAddr.Ok {
2173                                 t.logger.WithDefaultLevel(log.Debug).Printf("can't get remote ip for peer %v", p)
2174                         }
2175                         return
2176                 }
2177                 netipAddr := netip.MustParseAddr(remoteIp.String())
2178                 if Some(netipAddr) != p.bannableAddr {
2179                         t.logger.WithDefaultLevel(log.Debug).Printf(
2180                                 "peer remote ip does not match its bannable addr [peer=%v, remote ip=%v, bannable addr=%v]",
2181                                 p, remoteIp, p.bannableAddr)
2182                 }
2183                 if _, ok := t.cl.badPeerIPs[netipAddr]; ok {
2184                         // Should this be a close?
2185                         p.drop()
2186                         t.logger.WithDefaultLevel(log.Debug).Printf("dropped %v for banned remote IP %v", p, netipAddr)
2187                 }
2188         })
2189 }
2190
2191 func (t *Torrent) pieceHasher(index pieceIndex) {
2192         p := t.piece(index)
2193         sum, failedPeers, copyErr := t.hashPiece(index)
2194         correct := sum == *p.hash
2195         switch copyErr {
2196         case nil, io.EOF:
2197         default:
2198                 log.Fmsg("piece %v (%s) hash failure copy error: %v", p, p.hash.HexString(), copyErr).Log(t.logger)
2199         }
2200         t.storageLock.RUnlock()
2201         t.cl.lock()
2202         defer t.cl.unlock()
2203         if correct {
2204                 for peer := range failedPeers {
2205                         t.cl.banPeerIP(peer.AsSlice())
2206                         t.logger.WithDefaultLevel(log.Debug).Printf("smart banned %v for piece %v", peer, index)
2207                 }
2208                 t.dropBannedPeers()
2209                 for ri := t.pieceRequestIndexOffset(index); ri < t.pieceRequestIndexOffset(index+1); ri++ {
2210                         t.smartBanCache.ForgetBlock(ri)
2211                 }
2212         }
2213         p.hashing = false
2214         t.pieceHashed(index, correct, copyErr)
2215         t.updatePiecePriority(index, "Torrent.pieceHasher")
2216         t.activePieceHashes--
2217         t.tryCreateMorePieceHashers()
2218 }
2219
2220 // Return the connections that touched a piece, and clear the entries while doing it.
2221 func (t *Torrent) clearPieceTouchers(pi pieceIndex) {
2222         p := t.piece(pi)
2223         for c := range p.dirtiers {
2224                 delete(c.peerTouchedPieces, pi)
2225                 delete(p.dirtiers, c)
2226         }
2227 }
2228
2229 func (t *Torrent) peersAsSlice() (ret []*Peer) {
2230         t.iterPeers(func(p *Peer) {
2231                 ret = append(ret, p)
2232         })
2233         return
2234 }
2235
2236 func (t *Torrent) queuePieceCheck(pieceIndex pieceIndex) {
2237         piece := t.piece(pieceIndex)
2238         if piece.queuedForHash() {
2239                 return
2240         }
2241         t.piecesQueuedForHash.Add(bitmap.BitIndex(pieceIndex))
2242         t.publishPieceChange(pieceIndex)
2243         t.updatePiecePriority(pieceIndex, "Torrent.queuePieceCheck")
2244         t.tryCreateMorePieceHashers()
2245 }
2246
2247 // Forces all the pieces to be re-hashed. See also Piece.VerifyData. This should not be called
2248 // before the Info is available.
2249 func (t *Torrent) VerifyData() {
2250         for i := pieceIndex(0); i < t.NumPieces(); i++ {
2251                 t.Piece(i).VerifyData()
2252         }
2253 }
2254
2255 // Start the process of connecting to the given peer for the given torrent if appropriate.
2256 func (t *Torrent) initiateConn(peer PeerInfo) {
2257         if peer.Id == t.cl.peerID {
2258                 return
2259         }
2260         if t.cl.badPeerAddr(peer.Addr) && !peer.Trusted {
2261                 return
2262         }
2263         addr := peer.Addr
2264         if t.addrActive(addr.String()) {
2265                 return
2266         }
2267         t.cl.numHalfOpen++
2268         t.halfOpen[addr.String()] = peer
2269         go t.cl.outgoingConnection(t, addr, peer.Source, peer.Trusted)
2270 }
2271
2272 // Adds a trusted, pending peer for each of the given Client's addresses. Typically used in tests to
2273 // quickly make one Client visible to the Torrent of another Client.
2274 func (t *Torrent) AddClientPeer(cl *Client) int {
2275         return t.AddPeers(func() (ps []PeerInfo) {
2276                 for _, la := range cl.ListenAddrs() {
2277                         ps = append(ps, PeerInfo{
2278                                 Addr:    la,
2279                                 Trusted: true,
2280                         })
2281                 }
2282                 return
2283         }())
2284 }
2285
2286 // All stats that include this Torrent. Useful when we want to increment ConnStats but not for every
2287 // connection.
2288 func (t *Torrent) allStats(f func(*ConnStats)) {
2289         f(&t.stats)
2290         f(&t.cl.stats)
2291 }
2292
2293 func (t *Torrent) hashingPiece(i pieceIndex) bool {
2294         return t.pieces[i].hashing
2295 }
2296
2297 func (t *Torrent) pieceQueuedForHash(i pieceIndex) bool {
2298         return t.piecesQueuedForHash.Get(bitmap.BitIndex(i))
2299 }
2300
2301 func (t *Torrent) dialTimeout() time.Duration {
2302         return reducedDialTimeout(t.cl.config.MinDialTimeout, t.cl.config.NominalDialTimeout, t.cl.config.HalfOpenConnsPerTorrent, t.peers.Len())
2303 }
2304
2305 func (t *Torrent) piece(i int) *Piece {
2306         return &t.pieces[i]
2307 }
2308
2309 func (t *Torrent) onWriteChunkErr(err error) {
2310         if t.userOnWriteChunkErr != nil {
2311                 go t.userOnWriteChunkErr(err)
2312                 return
2313         }
2314         t.logger.WithDefaultLevel(log.Critical).Printf("default chunk write error handler: disabling data download")
2315         t.disallowDataDownloadLocked()
2316 }
2317
2318 func (t *Torrent) DisallowDataDownload() {
2319         t.disallowDataDownloadLocked()
2320 }
2321
2322 func (t *Torrent) disallowDataDownloadLocked() {
2323         t.dataDownloadDisallowed.Set()
2324 }
2325
2326 func (t *Torrent) AllowDataDownload() {
2327         t.dataDownloadDisallowed.Clear()
2328 }
2329
2330 // Enables uploading data, if it was disabled.
2331 func (t *Torrent) AllowDataUpload() {
2332         t.cl.lock()
2333         defer t.cl.unlock()
2334         t.dataUploadDisallowed = false
2335         for c := range t.conns {
2336                 c.updateRequests("allow data upload")
2337         }
2338 }
2339
2340 // Disables uploading data, if it was enabled.
2341 func (t *Torrent) DisallowDataUpload() {
2342         t.cl.lock()
2343         defer t.cl.unlock()
2344         t.dataUploadDisallowed = true
2345         for c := range t.conns {
2346                 // TODO: This doesn't look right. Shouldn't we tickle writers to choke peers or something instead?
2347                 c.updateRequests("disallow data upload")
2348         }
2349 }
2350
2351 // Sets a handler that is called if there's an error writing a chunk to local storage. By default,
2352 // or if nil, a critical message is logged, and data download is disabled.
2353 func (t *Torrent) SetOnWriteChunkError(f func(error)) {
2354         t.cl.lock()
2355         defer t.cl.unlock()
2356         t.userOnWriteChunkErr = f
2357 }
2358
2359 func (t *Torrent) iterPeers(f func(p *Peer)) {
2360         for pc := range t.conns {
2361                 f(&pc.Peer)
2362         }
2363         for _, ws := range t.webSeeds {
2364                 f(ws)
2365         }
2366 }
2367
2368 func (t *Torrent) callbacks() *Callbacks {
2369         return &t.cl.config.Callbacks
2370 }
2371
2372 type AddWebSeedsOpt func(*webseed.Client)
2373
2374 // Sets the WebSeed trailing path escaper for a webseed.Client.
2375 func WebSeedPathEscaper(custom webseed.PathEscaper) AddWebSeedsOpt {
2376         return func(c *webseed.Client) {
2377                 c.PathEscaper = custom
2378         }
2379 }
2380
2381 func (t *Torrent) AddWebSeeds(urls []string, opts ...AddWebSeedsOpt) {
2382         t.cl.lock()
2383         defer t.cl.unlock()
2384         for _, u := range urls {
2385                 t.addWebSeed(u, opts...)
2386         }
2387 }
2388
2389 func (t *Torrent) addWebSeed(url string, opts ...AddWebSeedsOpt) {
2390         if t.cl.config.DisableWebseeds {
2391                 return
2392         }
2393         if _, ok := t.webSeeds[url]; ok {
2394                 return
2395         }
2396         // I don't think Go http supports pipelining requests. However, we can have more ready to go
2397         // right away. This value should be some multiple of the number of connections to a host. I
2398         // would expect that double maxRequests plus a bit would be appropriate. This value is based on
2399         // downloading Sintel (08ada5a7a6183aae1e09d831df6748d566095a10) from
2400         // "https://webtorrent.io/torrents/".
2401         const maxRequests = 16
2402         ws := webseedPeer{
2403                 peer: Peer{
2404                         t:                        t,
2405                         outgoing:                 true,
2406                         Network:                  "http",
2407                         reconciledHandshakeStats: true,
2408                         // This should affect how often we have to recompute requests for this peer. Note that
2409                         // because we can request more than 1 thing at a time over HTTP, we will hit the low
2410                         // requests mark more often, so recomputation is probably sooner than with regular peer
2411                         // conns. ~4x maxRequests would be about right.
2412                         PeerMaxRequests: 128,
2413                         // TODO: Set ban prefix?
2414                         RemoteAddr: remoteAddrFromUrl(url),
2415                         callbacks:  t.callbacks(),
2416                 },
2417                 client: webseed.Client{
2418                         HttpClient: t.cl.httpClient,
2419                         Url:        url,
2420                         ResponseBodyWrapper: func(r io.Reader) io.Reader {
2421                                 return &rateLimitedReader{
2422                                         l: t.cl.config.DownloadRateLimiter,
2423                                         r: r,
2424                                 }
2425                         },
2426                 },
2427                 activeRequests: make(map[Request]webseed.Request, maxRequests),
2428                 maxRequests:    maxRequests,
2429         }
2430         ws.peer.initRequestState()
2431         for _, opt := range opts {
2432                 opt(&ws.client)
2433         }
2434         ws.peer.initUpdateRequestsTimer()
2435         ws.requesterCond.L = t.cl.locker()
2436         for i := 0; i < maxRequests; i += 1 {
2437                 go ws.requester(i)
2438         }
2439         for _, f := range t.callbacks().NewPeer {
2440                 f(&ws.peer)
2441         }
2442         ws.peer.logger = t.logger.WithContextValue(&ws)
2443         ws.peer.peerImpl = &ws
2444         if t.haveInfo() {
2445                 ws.onGotInfo(t.info)
2446         }
2447         t.webSeeds[url] = &ws.peer
2448 }
2449
2450 func (t *Torrent) peerIsActive(p *Peer) (active bool) {
2451         t.iterPeers(func(p1 *Peer) {
2452                 if p1 == p {
2453                         active = true
2454                 }
2455         })
2456         return
2457 }
2458
2459 func (t *Torrent) requestIndexToRequest(ri RequestIndex) Request {
2460         index := t.pieceIndexOfRequestIndex(ri)
2461         return Request{
2462                 pp.Integer(index),
2463                 t.piece(index).chunkIndexSpec(ri % t.chunksPerRegularPiece()),
2464         }
2465 }
2466
2467 func (t *Torrent) requestIndexFromRequest(r Request) RequestIndex {
2468         return t.pieceRequestIndexOffset(pieceIndex(r.Index)) + RequestIndex(r.Begin/t.chunkSize)
2469 }
2470
2471 func (t *Torrent) pieceRequestIndexOffset(piece pieceIndex) RequestIndex {
2472         return RequestIndex(piece) * t.chunksPerRegularPiece()
2473 }
2474
2475 func (t *Torrent) updateComplete() {
2476         t.Complete.SetBool(t.haveAllPieces())
2477 }
2478
2479 func (t *Torrent) cancelRequest(r RequestIndex) *Peer {
2480         p := t.requestingPeer(r)
2481         if p != nil {
2482                 p.cancel(r)
2483         }
2484         // TODO: This is a check that an old invariant holds. It can be removed after some testing.
2485         //delete(t.pendingRequests, r)
2486         if _, ok := t.requestState[r]; ok {
2487                 panic("expected request state to be gone")
2488         }
2489         return p
2490 }
2491
2492 func (t *Torrent) requestingPeer(r RequestIndex) *Peer {
2493         return t.requestState[r].peer
2494 }
2495
2496 func (t *Torrent) addConnWithAllPieces(p *Peer) {
2497         if t.connsWithAllPieces == nil {
2498                 t.connsWithAllPieces = make(map[*Peer]struct{}, t.maxEstablishedConns)
2499         }
2500         t.connsWithAllPieces[p] = struct{}{}
2501 }
2502
2503 func (t *Torrent) deleteConnWithAllPieces(p *Peer) bool {
2504         _, ok := t.connsWithAllPieces[p]
2505         delete(t.connsWithAllPieces, p)
2506         return ok
2507 }
2508
2509 func (t *Torrent) numActivePeers() int {
2510         return len(t.conns) + len(t.webSeeds)
2511 }
2512
2513 func (t *Torrent) hasStorageCap() bool {
2514         f := t.storage.Capacity
2515         if f == nil {
2516                 return false
2517         }
2518         _, ok := (*f)()
2519         return ok
2520 }
2521
2522 func (t *Torrent) pieceIndexOfRequestIndex(ri RequestIndex) pieceIndex {
2523         return pieceIndex(ri / t.chunksPerRegularPiece())
2524 }
2525
2526 func (t *Torrent) iterUndirtiedRequestIndexesInPiece(
2527         reuseIter *typedRoaring.Iterator[RequestIndex],
2528         piece pieceIndex,
2529         f func(RequestIndex),
2530 ) {
2531         reuseIter.Initialize(&t.dirtyChunks)
2532         pieceRequestIndexOffset := t.pieceRequestIndexOffset(piece)
2533         iterBitmapUnsetInRange(
2534                 reuseIter,
2535                 pieceRequestIndexOffset, pieceRequestIndexOffset+t.pieceNumChunks(piece),
2536                 f,
2537         )
2538 }
2539
2540 type requestState struct {
2541         peer *Peer
2542         when time.Time
2543 }