2014-04-03 12:16:59 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2014-08-28 00:06:36 +00:00
|
|
|
"container/heap"
|
2016-07-24 17:26:30 +00:00
|
|
|
"crypto/sha1"
|
2016-05-12 02:43:37 +00:00
|
|
|
"errors"
|
2014-04-03 12:16:59 +00:00
|
|
|
"fmt"
|
2014-06-26 07:29:12 +00:00
|
|
|
"io"
|
2016-02-01 10:11:41 +00:00
|
|
|
"math/rand"
|
2018-02-19 05:19:18 +00:00
|
|
|
"net/url"
|
2014-07-22 15:54:11 +00:00
|
|
|
"sync"
|
2016-07-12 06:44:06 +00:00
|
|
|
"text/tabwriter"
|
2014-12-01 22:40:18 +00:00
|
|
|
"time"
|
2019-01-30 06:54:02 +00:00
|
|
|
"unsafe"
|
2014-08-21 11:08:56 +00:00
|
|
|
|
2019-07-17 08:12:11 +00:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
|
|
|
2019-08-10 08:46:07 +00:00
|
|
|
"github.com/anacrolix/dht/v2"
|
2018-01-31 05:42:40 +00:00
|
|
|
"github.com/anacrolix/log"
|
2015-06-01 08:22:12 +00:00
|
|
|
"github.com/anacrolix/missinggo"
|
2016-01-27 18:54:48 +00:00
|
|
|
"github.com/anacrolix/missinggo/perf"
|
2015-09-06 02:33:22 +00:00
|
|
|
"github.com/anacrolix/missinggo/pubsub"
|
2016-07-12 06:40:14 +00:00
|
|
|
"github.com/anacrolix/missinggo/slices"
|
2020-01-10 04:09:21 +00:00
|
|
|
"github.com/anacrolix/missinggo/v2/bitmap"
|
|
|
|
"github.com/anacrolix/missinggo/v2/prioritybitmap"
|
2019-08-21 10:58:40 +00:00
|
|
|
|
2015-04-28 05:24:17 +00:00
|
|
|
"github.com/anacrolix/torrent/bencode"
|
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2015-03-20 05:37:44 +00:00
|
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
2016-03-28 09:38:30 +00:00
|
|
|
"github.com/anacrolix/torrent/storage"
|
2016-05-19 12:49:37 +00:00
|
|
|
"github.com/anacrolix/torrent/tracker"
|
2014-04-03 12:16:59 +00:00
|
|
|
)
|
|
|
|
|
2019-12-18 05:49:15 +00:00
|
|
|
// Maintains state of torrent within a Client. Many methods should not be called before the info is
|
|
|
|
// available, see .Info and .GotInfo.
|
2016-04-03 08:40:43 +00:00
|
|
|
type Torrent struct {
|
2018-06-23 08:33:56 +00:00
|
|
|
// Torrent-level aggregate statistics. First in struct to ensure 64-bit
|
|
|
|
// alignment. See #262.
|
|
|
|
stats ConnStats
|
2018-01-28 05:07:11 +00:00
|
|
|
cl *Client
|
2019-08-21 10:44:12 +00:00
|
|
|
logger log.Logger
|
2016-02-01 10:11:41 +00:00
|
|
|
|
2020-02-22 08:40:50 +00:00
|
|
|
networkingEnabled bool
|
|
|
|
dataDownloadDisallowed bool
|
|
|
|
userOnWriteChunkErr func(error)
|
2018-06-24 10:04:31 +00:00
|
|
|
|
2020-01-10 04:09:21 +00:00
|
|
|
// Determines what chunks to request from peers.
|
|
|
|
requestStrategy requestStrategy
|
2017-08-17 15:51:02 +00:00
|
|
|
|
2016-05-11 11:44:55 +00:00
|
|
|
closed missinggo.Event
|
2016-04-04 03:01:31 +00:00
|
|
|
infoHash metainfo.Hash
|
2017-09-15 09:35:16 +00:00
|
|
|
pieces []Piece
|
2015-09-06 02:33:22 +00:00
|
|
|
// Values are the piece indices that changed.
|
|
|
|
pieceStateChanges *pubsub.PubSub
|
2016-08-30 05:07:59 +00:00
|
|
|
// The size of chunks to request from peers over the wire. This is
|
|
|
|
// normally 16KiB by convention these days.
|
|
|
|
chunkSize pp.Integer
|
2016-10-05 04:57:00 +00:00
|
|
|
chunkPool *sync.Pool
|
2015-03-18 07:28:13 +00:00
|
|
|
// Total length of the torrent in bytes. Stored because it's not O(1) to
|
|
|
|
// get this from the info dict.
|
2018-01-06 12:15:41 +00:00
|
|
|
length *int64
|
2015-02-09 13:14:52 +00:00
|
|
|
|
2016-04-03 06:52:52 +00:00
|
|
|
// The storage to open when the info dict becomes available.
|
2016-09-02 05:10:57 +00:00
|
|
|
storageOpener *storage.Client
|
2016-04-03 06:52:52 +00:00
|
|
|
// Storage for torrent data.
|
2016-09-02 05:10:57 +00:00
|
|
|
storage *storage.Torrent
|
2017-12-01 12:09:07 +00:00
|
|
|
// Read-locked for using storage, and write-locked for Closing.
|
|
|
|
storageLock sync.RWMutex
|
2014-08-24 19:31:34 +00:00
|
|
|
|
2018-02-16 00:03:21 +00:00
|
|
|
// TODO: Only announce stuff is used?
|
2016-05-22 12:45:08 +00:00
|
|
|
metainfo metainfo.MetaInfo
|
|
|
|
|
2016-04-03 06:52:52 +00:00
|
|
|
// The info dict. nil if we don't have it (yet).
|
2018-01-21 11:49:12 +00:00
|
|
|
info *metainfo.Info
|
|
|
|
files *[]*File
|
2017-09-23 05:25:47 +00:00
|
|
|
|
2018-02-16 01:15:07 +00:00
|
|
|
// Active peer connections, running message stream loops. TODO: Make this
|
|
|
|
// open (not-closed) connections only.
|
2020-02-21 00:07:50 +00:00
|
|
|
conns map[*PeerConn]struct{}
|
2016-07-05 06:23:17 +00:00
|
|
|
maxEstablishedConns int
|
2015-03-18 07:28:13 +00:00
|
|
|
// Set of addrs to which we're attempting to connect. Connections are
|
|
|
|
// half-open until all handshakes are completed.
|
2017-09-23 05:25:47 +00:00
|
|
|
halfOpen map[string]Peer
|
2020-02-21 00:07:50 +00:00
|
|
|
fastestConn *PeerConn
|
2014-11-21 06:09:55 +00:00
|
|
|
|
2014-11-16 19:30:44 +00:00
|
|
|
// Reserve of peers to connect to. A peer can be both here and in the
|
|
|
|
// active connections if were told about the peer after connecting with
|
2016-08-30 05:07:59 +00:00
|
|
|
// them. That encourages us to reconnect to peers that are well known in
|
|
|
|
// the swarm.
|
2018-04-04 07:59:28 +00:00
|
|
|
peers prioritizedPeers
|
2016-05-22 12:45:08 +00:00
|
|
|
wantPeersEvent missinggo.Event
|
|
|
|
// An announcer for each tracker URL.
|
|
|
|
trackerAnnouncers map[string]*trackerScraper
|
2016-08-30 05:07:59 +00:00
|
|
|
// How many times we've initiated a DHT announce. TODO: Move into stats.
|
2016-06-15 05:29:47 +00:00
|
|
|
numDHTAnnounces int
|
|
|
|
|
2016-08-30 05:07:59 +00:00
|
|
|
// Name used if the info name isn't available. Should be cleared when the
|
|
|
|
// Info does become available.
|
2019-03-12 00:22:25 +00:00
|
|
|
nameMu sync.RWMutex
|
2015-11-22 07:44:08 +00:00
|
|
|
displayName string
|
2017-11-08 08:31:10 +00:00
|
|
|
|
2016-08-30 05:07:59 +00:00
|
|
|
// The bencoded bytes of the info dict. This is actively manipulated if
|
|
|
|
// the info bytes aren't initially available, and we try to fetch them
|
|
|
|
// from peers.
|
2016-04-03 06:50:53 +00:00
|
|
|
metadataBytes []byte
|
2015-03-18 07:28:13 +00:00
|
|
|
// Each element corresponds to the 16KiB metadata pieces. If true, we have
|
|
|
|
// received that piece.
|
2016-04-03 06:50:53 +00:00
|
|
|
metadataCompletedChunks []bool
|
2017-11-08 08:31:10 +00:00
|
|
|
metadataChanged sync.Cond
|
2014-09-25 08:05:52 +00:00
|
|
|
|
2016-05-09 05:47:39 +00:00
|
|
|
// Set when .Info is obtained.
|
|
|
|
gotMetainfo missinggo.Event
|
2015-09-26 07:27:35 +00:00
|
|
|
|
2020-01-10 04:09:21 +00:00
|
|
|
readers map[*reader]struct{}
|
|
|
|
_readerNowPieces bitmap.Bitmap
|
|
|
|
_readerReadaheadPieces bitmap.Bitmap
|
2016-01-18 14:28:56 +00:00
|
|
|
|
2018-01-25 06:18:36 +00:00
|
|
|
// A cache of pieces we need to get. Calculated from various piece and
|
|
|
|
// file priorities and completion states elsewhere.
|
2020-01-10 04:09:21 +00:00
|
|
|
_pendingPieces prioritybitmap.PriorityBitmap
|
2016-08-30 05:07:59 +00:00
|
|
|
// A cache of completed piece indices.
|
2020-01-10 04:09:21 +00:00
|
|
|
_completedPieces bitmap.Bitmap
|
2017-10-12 05:09:32 +00:00
|
|
|
// Pieces that need to be hashed.
|
|
|
|
piecesQueuedForHash bitmap.Bitmap
|
2019-08-21 03:31:33 +00:00
|
|
|
activePieceHashes int
|
2016-02-01 10:11:41 +00:00
|
|
|
|
2016-08-30 05:07:59 +00:00
|
|
|
// A pool of piece priorities []int for assignment to new connections.
|
|
|
|
// These "inclinations" are used to give connections preference for
|
|
|
|
// different pieces.
|
2016-02-01 10:11:41 +00:00
|
|
|
connPieceInclinationPool sync.Pool
|
2018-02-01 03:46:03 +00:00
|
|
|
|
2018-02-04 08:14:07 +00:00
|
|
|
// Count of each request across active connections.
|
2018-02-01 03:46:03 +00:00
|
|
|
pendingRequests map[request]int
|
2015-09-26 07:27:35 +00:00
|
|
|
}
|
|
|
|
|
2020-01-10 04:09:21 +00:00
|
|
|
func (t *Torrent) numConns() int {
|
|
|
|
return len(t.conns)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) numReaders() int {
|
|
|
|
return len(t.readers)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) readerNowPieces() bitmap.Bitmap {
|
|
|
|
return t._readerNowPieces
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) readerReadaheadPieces() bitmap.Bitmap {
|
|
|
|
return t._readerReadaheadPieces
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) ignorePieces() bitmap.Bitmap {
|
|
|
|
ret := t._completedPieces.Copy()
|
|
|
|
ret.Union(t.piecesQueuedForHash)
|
|
|
|
for i := 0; i < t.numPieces(); i++ {
|
|
|
|
if t.piece(i).hashing {
|
|
|
|
ret.Set(i, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) pendingPieces() *prioritybitmap.PriorityBitmap {
|
|
|
|
return &t._pendingPieces
|
|
|
|
}
|
|
|
|
|
2018-02-04 11:47:01 +00:00
|
|
|
func (t *Torrent) tickleReaders() {
|
|
|
|
t.cl.event.Broadcast()
|
|
|
|
}
|
|
|
|
|
2016-11-30 07:02:39 +00:00
|
|
|
// Returns a channel that is closed when the Torrent is closed.
|
|
|
|
func (t *Torrent) Closed() <-chan struct{} {
|
2018-07-25 03:41:50 +00:00
|
|
|
return t.closed.LockedChan(t.cl.locker())
|
2016-11-30 07:02:39 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 14:22:53 +00:00
|
|
|
// KnownSwarm returns the known subset of the peers in the Torrent's swarm, including active,
|
|
|
|
// pending, and half-open peers.
|
|
|
|
func (t *Torrent) KnownSwarm() (ks []Peer) {
|
|
|
|
// Add pending peers to the list
|
2018-04-04 07:59:28 +00:00
|
|
|
t.peers.Each(func(peer Peer) {
|
2017-09-12 14:22:53 +00:00
|
|
|
ks = append(ks, peer)
|
2018-04-04 07:59:28 +00:00
|
|
|
})
|
2017-09-12 14:22:53 +00:00
|
|
|
|
2017-09-16 10:48:16 +00:00
|
|
|
// Add half-open peers to the list
|
|
|
|
for _, peer := range t.halfOpen {
|
|
|
|
ks = append(ks, peer)
|
|
|
|
}
|
|
|
|
|
2017-09-12 14:22:53 +00:00
|
|
|
// Add active peers to the list
|
|
|
|
for conn := range t.conns {
|
|
|
|
|
|
|
|
ks = append(ks, Peer{
|
2017-09-16 14:45:12 +00:00
|
|
|
Id: conn.PeerID,
|
2020-02-20 05:47:37 +00:00
|
|
|
Addr: conn.remoteAddr,
|
2017-09-12 14:22:53 +00:00
|
|
|
Source: conn.Discovery,
|
2017-09-16 10:48:16 +00:00
|
|
|
// > If the connection is encrypted, that's certainly enough to set SupportsEncryption.
|
|
|
|
// > But if we're not connected to them with an encrypted connection, I couldn't say
|
|
|
|
// > what's appropriate. We can carry forward the SupportsEncryption value as we
|
|
|
|
// > received it from trackers/DHT/PEX, or just use the encryption state for the
|
|
|
|
// > connection. It's probably easiest to do the latter for now.
|
|
|
|
// https://github.com/anacrolix/torrent/pull/188
|
2017-09-16 14:44:09 +00:00
|
|
|
SupportsEncryption: conn.headerEncrypted,
|
2017-09-12 14:22:53 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-10-05 04:57:00 +00:00
|
|
|
func (t *Torrent) setChunkSize(size pp.Integer) {
|
|
|
|
t.chunkSize = size
|
|
|
|
t.chunkPool = &sync.Pool{
|
|
|
|
New: func() interface{} {
|
2017-11-07 05:11:59 +00:00
|
|
|
b := make([]byte, size)
|
|
|
|
return &b
|
2016-10-05 04:57:00 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceComplete(piece pieceIndex) bool {
|
2020-01-10 04:09:21 +00:00
|
|
|
return t._completedPieces.Get(bitmap.BitIndex(piece))
|
2016-02-16 13:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceCompleteUncached(piece pieceIndex) storage.Completion {
|
2017-10-12 05:09:32 +00:00
|
|
|
return t.pieces[piece].Storage().Completion()
|
2015-03-10 15:41:21 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 07:28:13 +00:00
|
|
|
// There's a connection to that address already.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) addrActive(addr string) bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
if _, ok := t.halfOpen[addr]; ok {
|
2014-11-16 19:30:44 +00:00
|
|
|
return true
|
|
|
|
}
|
2016-11-23 00:48:44 +00:00
|
|
|
for c := range t.conns {
|
2018-11-04 05:56:55 +00:00
|
|
|
ra := c.remoteAddr
|
2017-12-01 23:01:27 +00:00
|
|
|
if ra.String() == addr {
|
2014-11-16 19:30:44 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) unclosedConnsAsSlice() (ret []*PeerConn) {
|
|
|
|
ret = make([]*PeerConn, 0, len(t.conns))
|
2016-11-23 00:48:44 +00:00
|
|
|
for c := range t.conns {
|
2016-02-01 10:08:52 +00:00
|
|
|
if !c.closed.IsSet() {
|
2016-07-05 14:42:16 +00:00
|
|
|
ret = append(ret, c)
|
2015-06-29 14:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-28 00:06:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-15 05:29:47 +00:00
|
|
|
func (t *Torrent) addPeer(p Peer) {
|
|
|
|
cl := t.cl
|
2018-02-08 12:55:28 +00:00
|
|
|
peersAddedBySource.Add(string(p.Source), 1)
|
2018-06-12 10:17:15 +00:00
|
|
|
if t.closed.IsSet() {
|
|
|
|
return
|
|
|
|
}
|
2020-02-20 05:47:37 +00:00
|
|
|
if ipAddr, ok := tryIpPortFromNetAddr(p.Addr); ok {
|
|
|
|
if cl.badPeerIPPort(ipAddr.IP, ipAddr.Port) {
|
|
|
|
torrent.Add("peers not added because of bad addr", 1)
|
|
|
|
return
|
|
|
|
}
|
2015-09-28 05:30:13 +00:00
|
|
|
}
|
2018-04-04 07:59:28 +00:00
|
|
|
if t.peers.Add(p) {
|
|
|
|
torrent.Add("peers replaced", 1)
|
2015-09-28 05:30:13 +00:00
|
|
|
}
|
2018-02-04 01:59:23 +00:00
|
|
|
t.openNewConns()
|
2018-04-04 07:59:28 +00:00
|
|
|
for t.peers.Len() > cl.config.TorrentPeersHighWater {
|
2018-04-14 11:44:41 +00:00
|
|
|
_, ok := t.peers.DeleteMin()
|
|
|
|
if ok {
|
|
|
|
torrent.Add("excess reserve peers discarded", 1)
|
|
|
|
}
|
2018-04-04 07:59:28 +00:00
|
|
|
}
|
2014-08-21 11:10:19 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) invalidateMetadata() {
|
2016-07-23 14:34:40 +00:00
|
|
|
for i := range t.metadataCompletedChunks {
|
|
|
|
t.metadataCompletedChunks[i] = false
|
|
|
|
}
|
2019-03-12 00:22:25 +00:00
|
|
|
t.nameMu.Lock()
|
2016-04-03 06:50:53 +00:00
|
|
|
t.info = nil
|
2019-03-12 00:22:25 +00:00
|
|
|
t.nameMu.Unlock()
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) saveMetadataPiece(index int, data []byte) {
|
2014-06-28 09:38:31 +00:00
|
|
|
if t.haveInfo() {
|
|
|
|
return
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if index >= len(t.metadataCompletedChunks) {
|
2019-01-15 18:18:30 +00:00
|
|
|
t.logger.Printf("%s: ignoring metadata piece %d", t, index)
|
2014-07-14 13:12:52 +00:00
|
|
|
return
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
copy(t.metadataBytes[(1<<14)*index:], data)
|
|
|
|
t.metadataCompletedChunks[index] = true
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) metadataPieceCount() int {
|
2016-04-03 06:50:53 +00:00
|
|
|
return (len(t.metadataBytes) + (1 << 14) - 1) / (1 << 14)
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) haveMetadataPiece(piece int) bool {
|
2014-08-21 17:42:00 +00:00
|
|
|
if t.haveInfo() {
|
2016-04-03 06:50:53 +00:00
|
|
|
return (1<<14)*piece < len(t.metadataBytes)
|
2014-08-21 17:42:00 +00:00
|
|
|
} else {
|
2016-04-03 06:50:53 +00:00
|
|
|
return piece < len(t.metadataCompletedChunks) && t.metadataCompletedChunks[piece]
|
2014-08-21 17:42:00 +00:00
|
|
|
}
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) metadataSize() int {
|
2016-04-03 06:50:53 +00:00
|
|
|
return len(t.metadataBytes)
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 06:54:02 +00:00
|
|
|
func infoPieceHashes(info *metainfo.Info) (ret [][]byte) {
|
2016-07-24 17:26:30 +00:00
|
|
|
for i := 0; i < len(info.Pieces); i += sha1.Size {
|
2019-01-30 06:54:02 +00:00
|
|
|
ret = append(ret, info.Pieces[i:i+sha1.Size])
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-12 06:42:54 +00:00
|
|
|
func (t *Torrent) makePieces() {
|
2016-08-26 10:29:05 +00:00
|
|
|
hashes := infoPieceHashes(t.info)
|
2020-02-20 00:09:57 +00:00
|
|
|
t.pieces = make([]Piece, len(hashes))
|
2016-07-12 06:42:54 +00:00
|
|
|
for i, hash := range hashes {
|
|
|
|
piece := &t.pieces[i]
|
|
|
|
piece.t = t
|
2018-07-11 23:15:15 +00:00
|
|
|
piece.index = pieceIndex(i)
|
2016-07-12 06:42:54 +00:00
|
|
|
piece.noPendingWrites.L = &piece.pendingWritesMutex
|
2019-01-30 06:54:02 +00:00
|
|
|
piece.hash = (*metainfo.Hash)(unsafe.Pointer(&hash[0]))
|
2018-01-25 06:01:29 +00:00
|
|
|
files := *t.files
|
|
|
|
beginFile := pieceFirstFileIndex(piece.torrentBeginOffset(), files)
|
|
|
|
endFile := pieceEndFileIndex(piece.torrentEndOffset(), files)
|
|
|
|
piece.files = files[beginFile:endFile]
|
2018-01-21 11:49:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 06:01:29 +00:00
|
|
|
// Returns the index of the first file containing the piece. files must be
|
|
|
|
// ordered by offset.
|
2018-01-21 11:49:12 +00:00
|
|
|
func pieceFirstFileIndex(pieceOffset int64, files []*File) int {
|
|
|
|
for i, f := range files {
|
|
|
|
if f.offset+f.length > pieceOffset {
|
|
|
|
return i
|
|
|
|
}
|
2016-07-12 06:42:54 +00:00
|
|
|
}
|
2018-01-25 06:01:29 +00:00
|
|
|
return 0
|
2018-01-21 11:49:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 06:01:29 +00:00
|
|
|
// Returns the index after the last file containing the piece. files must be
|
|
|
|
// ordered by offset.
|
|
|
|
func pieceEndFileIndex(pieceEndOffset int64, files []*File) int {
|
2018-01-21 11:49:12 +00:00
|
|
|
for i, f := range files {
|
|
|
|
if f.offset+f.length >= pieceEndOffset {
|
2018-01-25 06:01:29 +00:00
|
|
|
return i + 1
|
2018-01-21 11:49:12 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-25 06:01:29 +00:00
|
|
|
return 0
|
2018-01-21 11:49:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 06:10:37 +00:00
|
|
|
func (t *Torrent) cacheLength() {
|
2018-01-21 11:49:12 +00:00
|
|
|
var l int64
|
|
|
|
for _, f := range t.info.UpvertedFiles() {
|
|
|
|
l += f.Length
|
|
|
|
}
|
|
|
|
t.length = &l
|
2016-07-12 06:42:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 06:10:37 +00:00
|
|
|
func (t *Torrent) setInfo(info *metainfo.Info) error {
|
|
|
|
if err := validateInfo(info); err != nil {
|
2016-05-09 05:47:39 +00:00
|
|
|
return fmt.Errorf("bad info: %s", err)
|
2016-03-28 10:57:04 +00:00
|
|
|
}
|
2018-01-25 06:10:37 +00:00
|
|
|
if t.storageOpener != nil {
|
|
|
|
var err error
|
|
|
|
t.storage, err = t.storageOpener.OpenTorrent(info, t.infoHash)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error opening torrent storage: %s", err)
|
|
|
|
}
|
2016-03-28 11:40:29 +00:00
|
|
|
}
|
2019-03-12 00:22:25 +00:00
|
|
|
t.nameMu.Lock()
|
2018-01-25 06:10:37 +00:00
|
|
|
t.info = info
|
2019-03-12 00:22:25 +00:00
|
|
|
t.nameMu.Unlock()
|
2018-01-25 06:10:37 +00:00
|
|
|
t.displayName = "" // Save a few bytes lol.
|
|
|
|
t.initFiles()
|
|
|
|
t.cacheLength()
|
2016-07-12 06:42:54 +00:00
|
|
|
t.makePieces()
|
2018-01-25 06:10:37 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) onSetInfo() {
|
2016-11-23 00:48:44 +00:00
|
|
|
for conn := range t.conns {
|
2015-02-09 13:12:29 +00:00
|
|
|
if err := conn.setNumPieces(t.numPieces()); err != nil {
|
2019-01-15 18:18:30 +00:00
|
|
|
t.logger.Printf("closing connection: %s", err)
|
2020-02-21 00:07:50 +00:00
|
|
|
conn.close()
|
2014-07-16 07:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for i := range t.pieces {
|
2018-07-11 23:15:15 +00:00
|
|
|
t.updatePieceCompletion(pieceIndex(i))
|
2017-10-12 05:09:32 +00:00
|
|
|
p := &t.pieces[i]
|
|
|
|
if !p.storageCompletionOk {
|
2019-01-15 18:18:30 +00:00
|
|
|
// t.logger.Printf("piece %s completion unknown, queueing check", p)
|
2018-07-11 23:15:15 +00:00
|
|
|
t.queuePieceCheck(pieceIndex(i))
|
2017-10-12 05:09:32 +00:00
|
|
|
}
|
2016-02-16 13:00:55 +00:00
|
|
|
}
|
2018-01-25 06:10:37 +00:00
|
|
|
t.cl.event.Broadcast()
|
|
|
|
t.gotMetainfo.Set()
|
|
|
|
t.updateWantPeersEvent()
|
2018-02-01 03:46:03 +00:00
|
|
|
t.pendingRequests = make(map[request]int)
|
2019-08-21 03:31:33 +00:00
|
|
|
t.tryCreateMorePieceHashers()
|
2018-01-25 06:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Called when metadata for a torrent becomes available.
|
|
|
|
func (t *Torrent) setInfoBytes(b []byte) error {
|
|
|
|
if metainfo.HashBytes(b) != t.infoHash {
|
|
|
|
return errors.New("info bytes have wrong hash")
|
|
|
|
}
|
|
|
|
var info metainfo.Info
|
|
|
|
if err := bencode.Unmarshal(b, &info); err != nil {
|
|
|
|
return fmt.Errorf("error unmarshalling info bytes: %s", err)
|
|
|
|
}
|
|
|
|
if err := t.setInfo(&info); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
t.metadataBytes = b
|
|
|
|
t.metadataCompletedChunks = nil
|
|
|
|
t.onSetInfo()
|
2016-05-09 05:47:39 +00:00
|
|
|
return nil
|
2016-02-16 13:00:55 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) haveAllMetadataPieces() bool {
|
2014-06-28 09:38:31 +00:00
|
|
|
if t.haveInfo() {
|
|
|
|
return true
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if t.metadataCompletedChunks == nil {
|
2014-06-26 14:57:07 +00:00
|
|
|
return false
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, have := range t.metadataCompletedChunks {
|
2014-06-26 14:57:07 +00:00
|
|
|
if !have {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-04-07 09:13:51 +00:00
|
|
|
// TODO: Propagate errors to disconnect peer.
|
2018-07-10 02:20:36 +00:00
|
|
|
func (t *Torrent) setMetadataSize(bytes int) (err error) {
|
2015-03-27 04:36:59 +00:00
|
|
|
if t.haveInfo() {
|
|
|
|
// We already know the correct metadata size.
|
2014-06-26 14:57:07 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-24 05:46:34 +00:00
|
|
|
if bytes <= 0 || bytes > 10000000 { // 10MB, pulled from my ass.
|
2016-05-16 08:48:56 +00:00
|
|
|
return errors.New("bad size")
|
2015-03-27 04:36:59 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if t.metadataBytes != nil && len(t.metadataBytes) == int(bytes) {
|
2015-02-06 03:54:59 +00:00
|
|
|
return
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
t.metadataBytes = make([]byte, bytes)
|
|
|
|
t.metadataCompletedChunks = make([]bool, (bytes+(1<<14)-1)/(1<<14))
|
2017-11-08 08:31:10 +00:00
|
|
|
t.metadataChanged.Broadcast()
|
2016-11-23 00:48:44 +00:00
|
|
|
for c := range t.conns {
|
2016-05-16 08:46:38 +00:00
|
|
|
c.requestPendingMetadata()
|
2015-03-27 04:36:59 +00:00
|
|
|
}
|
2016-05-16 08:48:56 +00:00
|
|
|
return
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 06:35:29 +00:00
|
|
|
// The current working name for the torrent. Either the name in the info dict,
|
|
|
|
// or a display name given such as by the dn value in a magnet link, or "".
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) name() string {
|
2019-03-12 00:22:25 +00:00
|
|
|
t.nameMu.RLock()
|
|
|
|
defer t.nameMu.RUnlock()
|
2015-02-06 03:54:59 +00:00
|
|
|
if t.haveInfo() {
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.info.Name
|
2015-02-06 03:54:59 +00:00
|
|
|
}
|
2015-11-22 07:44:08 +00:00
|
|
|
return t.displayName
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceState(index pieceIndex) (ret PieceState) {
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[index]
|
2016-01-18 07:35:14 +00:00
|
|
|
ret.Priority = t.piecePriority(index)
|
2018-01-28 04:58:55 +00:00
|
|
|
ret.Completion = p.completion()
|
2017-10-12 05:09:32 +00:00
|
|
|
if p.queuedForHash() || p.hashing {
|
2015-06-01 08:22:12 +00:00
|
|
|
ret.Checking = true
|
|
|
|
}
|
2015-07-17 11:07:01 +00:00
|
|
|
if !ret.Complete && t.piecePartiallyDownloaded(index) {
|
2015-06-01 08:22:12 +00:00
|
|
|
ret.Partial = true
|
|
|
|
}
|
|
|
|
return
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) metadataPieceSize(piece int) int {
|
2016-04-03 06:50:53 +00:00
|
|
|
return metadataPieceSize(len(t.metadataBytes), piece)
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) newMetadataExtensionMessage(c *PeerConn, msgType int, piece int, data []byte) pp.Message {
|
2014-06-28 09:38:31 +00:00
|
|
|
d := map[string]int{
|
|
|
|
"msg_type": msgType,
|
|
|
|
"piece": piece,
|
|
|
|
}
|
|
|
|
if data != nil {
|
2016-04-03 06:50:53 +00:00
|
|
|
d["total_size"] = len(t.metadataBytes)
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
2018-07-10 02:20:36 +00:00
|
|
|
p := bencode.MustMarshal(d)
|
2014-06-28 09:38:31 +00:00
|
|
|
return pp.Message{
|
|
|
|
Type: pp.Extended,
|
2018-07-10 02:20:36 +00:00
|
|
|
ExtendedID: c.PeerExtensionIDs[pp.ExtensionNameMetadata],
|
2014-06-28 09:38:31 +00:00
|
|
|
ExtendedPayload: append(p, data...),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-27 05:42:33 +00:00
|
|
|
func (t *Torrent) pieceStateRuns() (ret PieceStateRuns) {
|
2015-06-01 08:22:12 +00:00
|
|
|
rle := missinggo.NewRunLengthEncoder(func(el interface{}, count uint64) {
|
|
|
|
ret = append(ret, PieceStateRun{
|
|
|
|
PieceState: el.(PieceState),
|
|
|
|
Length: int(count),
|
|
|
|
})
|
|
|
|
})
|
2016-04-03 06:50:53 +00:00
|
|
|
for index := range t.pieces {
|
2018-07-11 23:15:15 +00:00
|
|
|
rle.Append(t.pieceState(pieceIndex(index)), 1)
|
2015-06-01 08:22:12 +00:00
|
|
|
}
|
|
|
|
rle.Flush()
|
|
|
|
return
|
2015-01-26 09:52:59 +00:00
|
|
|
}
|
|
|
|
|
2015-06-01 08:22:12 +00:00
|
|
|
// Produces a small string representing a PieceStateRun.
|
2020-02-27 05:42:33 +00:00
|
|
|
func (psr PieceStateRun) String() (ret string) {
|
2015-06-01 08:22:12 +00:00
|
|
|
ret = fmt.Sprintf("%d", psr.Length)
|
|
|
|
ret += func() string {
|
|
|
|
switch psr.Priority {
|
|
|
|
case PiecePriorityNext:
|
|
|
|
return "N"
|
|
|
|
case PiecePriorityNormal:
|
|
|
|
return "."
|
|
|
|
case PiecePriorityReadahead:
|
|
|
|
return "R"
|
|
|
|
case PiecePriorityNow:
|
|
|
|
return "!"
|
2018-01-28 04:58:55 +00:00
|
|
|
case PiecePriorityHigh:
|
|
|
|
return "H"
|
2015-06-01 08:22:12 +00:00
|
|
|
default:
|
|
|
|
return ""
|
2015-01-26 09:52:59 +00:00
|
|
|
}
|
2015-06-01 08:22:12 +00:00
|
|
|
}()
|
|
|
|
if psr.Checking {
|
|
|
|
ret += "H"
|
|
|
|
}
|
|
|
|
if psr.Partial {
|
|
|
|
ret += "P"
|
2015-01-26 09:52:59 +00:00
|
|
|
}
|
2015-06-01 08:22:12 +00:00
|
|
|
if psr.Complete {
|
|
|
|
ret += "C"
|
2015-01-26 09:52:59 +00:00
|
|
|
}
|
2018-01-28 04:58:55 +00:00
|
|
|
if !psr.Ok {
|
|
|
|
ret += "?"
|
|
|
|
}
|
2015-01-26 09:52:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-12 11:23:20 +00:00
|
|
|
func (t *Torrent) writeStatus(w io.Writer) {
|
2017-02-16 09:10:32 +00:00
|
|
|
fmt.Fprintf(w, "Infohash: %s\n", t.infoHash.HexString())
|
2015-03-25 04:50:31 +00:00
|
|
|
fmt.Fprintf(w, "Metadata length: %d\n", t.metadataSize())
|
2015-06-29 14:46:24 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
fmt.Fprintf(w, "Metadata have: ")
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, h := range t.metadataCompletedChunks {
|
2015-06-29 14:46:24 +00:00
|
|
|
fmt.Fprintf(w, "%c", func() rune {
|
|
|
|
if h {
|
|
|
|
return 'H'
|
|
|
|
} else {
|
|
|
|
return '.'
|
|
|
|
}
|
|
|
|
}())
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w)
|
2015-03-25 04:50:31 +00:00
|
|
|
}
|
2014-08-25 12:15:45 +00:00
|
|
|
fmt.Fprintf(w, "Piece length: %s\n", func() string {
|
|
|
|
if t.haveInfo() {
|
2015-02-25 04:42:47 +00:00
|
|
|
return fmt.Sprint(t.usualPieceSize())
|
2014-08-25 12:15:45 +00:00
|
|
|
} else {
|
|
|
|
return "?"
|
|
|
|
}
|
|
|
|
}())
|
2017-08-29 05:16:53 +00:00
|
|
|
if t.info != nil {
|
2018-02-01 07:45:58 +00:00
|
|
|
fmt.Fprintf(w, "Num Pieces: %d (%d completed)\n", t.numPieces(), t.numPiecesCompleted())
|
2020-02-27 05:42:33 +00:00
|
|
|
fmt.Fprintf(w, "Piece States: %s", t.pieceStateRuns())
|
2014-12-07 03:16:02 +00:00
|
|
|
fmt.Fprintln(w)
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
2016-01-27 18:54:48 +00:00
|
|
|
fmt.Fprintf(w, "Reader Pieces:")
|
2018-07-11 23:15:15 +00:00
|
|
|
t.forReaderOffsetPieces(func(begin, end pieceIndex) (again bool) {
|
2016-01-18 07:35:14 +00:00
|
|
|
fmt.Fprintf(w, " %d:%d", begin, end)
|
|
|
|
return true
|
|
|
|
})
|
2015-04-14 13:59:41 +00:00
|
|
|
fmt.Fprintln(w)
|
2016-06-15 05:29:47 +00:00
|
|
|
|
2018-02-17 00:13:48 +00:00
|
|
|
fmt.Fprintf(w, "Enabled trackers:\n")
|
2016-07-12 06:44:06 +00:00
|
|
|
func() {
|
|
|
|
tw := tabwriter.NewWriter(w, 0, 0, 2, ' ', 0)
|
|
|
|
fmt.Fprintf(tw, " URL\tNext announce\tLast announce\n")
|
2016-07-12 07:49:00 +00:00
|
|
|
for _, ta := range slices.Sort(slices.FromMapElems(t.trackerAnnouncers), func(l, r *trackerScraper) bool {
|
2019-10-15 03:59:23 +00:00
|
|
|
lu := l.u
|
|
|
|
ru := r.u
|
|
|
|
var luns, runs url.URL = lu, ru
|
|
|
|
luns.Scheme = ""
|
|
|
|
runs.Scheme = ""
|
|
|
|
var ml missinggo.MultiLess
|
|
|
|
ml.StrictNext(luns.String() == runs.String(), luns.String() < runs.String())
|
|
|
|
ml.StrictNext(lu.String() == ru.String(), lu.String() < ru.String())
|
|
|
|
return ml.Less()
|
2016-07-12 06:44:06 +00:00
|
|
|
}).([]*trackerScraper) {
|
|
|
|
fmt.Fprintf(tw, " %s\n", ta.statusLine())
|
|
|
|
}
|
|
|
|
tw.Flush()
|
|
|
|
}()
|
2016-06-15 05:29:47 +00:00
|
|
|
|
|
|
|
fmt.Fprintf(w, "DHT Announces: %d\n", t.numDHTAnnounces)
|
|
|
|
|
2018-01-27 01:02:05 +00:00
|
|
|
spew.NewDefaultConfig()
|
|
|
|
spew.Fdump(w, t.statsLocked())
|
|
|
|
|
2016-11-23 00:48:44 +00:00
|
|
|
conns := t.connsAsSlice()
|
|
|
|
slices.Sort(conns, worseConn)
|
|
|
|
for i, c := range conns {
|
2015-06-29 14:46:24 +00:00
|
|
|
fmt.Fprintf(w, "%2d. ", i+1)
|
2020-02-21 00:07:50 +00:00
|
|
|
c.writeStatus(w, t)
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) haveInfo() bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.info != nil
|
2014-05-20 14:52:49 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 23:52:01 +00:00
|
|
|
// Returns a run-time generated MetaInfo that includes the info bytes and
|
|
|
|
// announce-list as currently known to the client.
|
2016-08-26 10:29:05 +00:00
|
|
|
func (t *Torrent) newMetaInfo() metainfo.MetaInfo {
|
|
|
|
return metainfo.MetaInfo{
|
2014-12-01 22:37:40 +00:00
|
|
|
CreationDate: time.Now().Unix(),
|
|
|
|
Comment: "dynamic metainfo from client",
|
|
|
|
CreatedBy: "go.torrent",
|
2017-02-19 04:57:30 +00:00
|
|
|
AnnounceList: t.metainfo.UpvertedAnnounceList(),
|
2017-11-08 08:56:20 +00:00
|
|
|
InfoBytes: func() []byte {
|
|
|
|
if t.haveInfo() {
|
|
|
|
return t.metadataBytes
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}(),
|
2014-12-01 22:37:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-29 14:37:52 +00:00
|
|
|
func (t *Torrent) BytesMissing() int64 {
|
2018-07-25 03:41:50 +00:00
|
|
|
t.cl.rLock()
|
|
|
|
defer t.cl.rUnlock()
|
2016-11-27 03:26:45 +00:00
|
|
|
return t.bytesMissingLocked()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) bytesMissingLocked() int64 {
|
2016-07-29 14:37:52 +00:00
|
|
|
return t.bytesLeft()
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) bytesLeft() (left int64) {
|
2020-01-10 04:09:21 +00:00
|
|
|
bitmap.Flip(t._completedPieces, 0, bitmap.BitIndex(t.numPieces())).IterTyped(func(piece int) bool {
|
2017-12-01 06:58:42 +00:00
|
|
|
p := &t.pieces[piece]
|
2017-09-23 05:28:13 +00:00
|
|
|
left += int64(p.length() - p.numDirtyBytes())
|
|
|
|
return true
|
|
|
|
})
|
2014-05-22 14:35:24 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-21 22:06:48 +00:00
|
|
|
// Bytes left to give in tracker announces.
|
2019-07-17 08:12:11 +00:00
|
|
|
func (t *Torrent) bytesLeftAnnounce() int64 {
|
2016-03-21 22:06:48 +00:00
|
|
|
if t.haveInfo() {
|
2019-07-17 08:12:11 +00:00
|
|
|
return t.bytesLeft()
|
2016-03-21 22:06:48 +00:00
|
|
|
} else {
|
2019-07-17 08:12:11 +00:00
|
|
|
return -1
|
2016-03-21 22:06:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) piecePartiallyDownloaded(piece pieceIndex) bool {
|
2016-02-04 14:18:54 +00:00
|
|
|
if t.pieceComplete(piece) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if t.pieceAllDirty(piece) {
|
2016-02-09 13:46:54 +00:00
|
|
|
return false
|
2016-02-04 14:18:54 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.pieces[piece].hasDirtyChunks()
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) usualPieceSize() int {
|
2016-04-03 06:50:53 +00:00
|
|
|
return int(t.info.PieceLength)
|
2014-05-28 15:32:34 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) numPieces() pieceIndex {
|
|
|
|
return pieceIndex(t.info.NumPieces())
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) numPiecesCompleted() (num int) {
|
2020-01-10 04:09:21 +00:00
|
|
|
return t._completedPieces.Len()
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) close() (err error) {
|
2016-05-11 11:44:55 +00:00
|
|
|
t.closed.Set()
|
2018-02-04 11:47:01 +00:00
|
|
|
t.tickleReaders()
|
2016-09-02 05:10:57 +00:00
|
|
|
if t.storage != nil {
|
2017-12-01 12:09:07 +00:00
|
|
|
t.storageLock.Lock()
|
2016-09-02 05:10:57 +00:00
|
|
|
t.storage.Close()
|
2017-12-01 12:09:07 +00:00
|
|
|
t.storageLock.Unlock()
|
2014-12-05 06:54:55 +00:00
|
|
|
}
|
2016-11-23 00:48:44 +00:00
|
|
|
for conn := range t.conns {
|
2020-02-21 00:07:50 +00:00
|
|
|
conn.close()
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
2017-06-03 08:42:40 +00:00
|
|
|
t.cl.event.Broadcast()
|
2015-09-06 02:33:22 +00:00
|
|
|
t.pieceStateChanges.Close()
|
2016-05-23 00:19:14 +00:00
|
|
|
t.updateWantPeersEvent()
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) requestOffset(r request) int64 {
|
2018-01-06 12:15:41 +00:00
|
|
|
return torrentRequestOffset(*t.length, int64(t.usualPieceSize()), r)
|
2014-04-08 15:15:39 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 16:20:01 +00:00
|
|
|
// Return the request that would include the given offset into the torrent
|
|
|
|
// data. Returns !ok if there is no such request.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) offsetRequest(off int64) (req request, ok bool) {
|
2018-01-06 12:15:41 +00:00
|
|
|
return torrentOffsetRequest(*t.length, t.info.PieceLength, int64(t.chunkSize), off)
|
2014-04-08 06:45:33 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) writeChunk(piece int, begin int64, data []byte) (err error) {
|
2018-06-21 13:22:13 +00:00
|
|
|
defer perf.ScopeTimerErr(&err)()
|
2016-04-03 06:50:53 +00:00
|
|
|
n, err := t.pieces[piece].Storage().WriteAt(data, begin)
|
2015-06-02 14:03:43 +00:00
|
|
|
if err == nil && n != len(data) {
|
|
|
|
err = io.ErrShortWrite
|
|
|
|
}
|
2020-02-22 08:38:56 +00:00
|
|
|
return err
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) bitfield() (bf []bool) {
|
2016-02-16 13:00:55 +00:00
|
|
|
bf = make([]bool, t.numPieces())
|
2020-01-10 04:09:21 +00:00
|
|
|
t._completedPieces.IterTyped(func(piece int) (again bool) {
|
2016-02-16 13:00:55 +00:00
|
|
|
bf[piece] = true
|
|
|
|
return true
|
|
|
|
})
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceNumChunks(piece pieceIndex) pp.Integer {
|
|
|
|
return (t.pieceLength(piece) + t.chunkSize - 1) / t.chunkSize
|
2016-01-13 06:11:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pendAllChunkSpecs(pieceIndex pieceIndex) {
|
2020-01-10 04:09:21 +00:00
|
|
|
t.pieces[pieceIndex]._dirtyChunks.Clear()
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceLength(piece pieceIndex) pp.Integer {
|
2018-02-04 08:10:25 +00:00
|
|
|
if t.info.PieceLength == 0 {
|
|
|
|
// There will be no variance amongst pieces. Only pain.
|
|
|
|
return 0
|
|
|
|
}
|
2016-04-04 05:28:25 +00:00
|
|
|
if piece == t.numPieces()-1 {
|
2018-01-06 12:15:41 +00:00
|
|
|
ret := pp.Integer(*t.length % t.info.PieceLength)
|
2017-09-23 05:28:13 +00:00
|
|
|
if ret != 0 {
|
|
|
|
return ret
|
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
2017-09-23 05:28:13 +00:00
|
|
|
return pp.Integer(t.info.PieceLength)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2020-01-07 08:18:07 +00:00
|
|
|
func (t *Torrent) hashPiece(piece pieceIndex) (ret metainfo.Hash, copyErr error) {
|
2014-04-08 16:36:05 +00:00
|
|
|
hash := pieceHash.New()
|
2019-08-21 00:43:06 +00:00
|
|
|
p := t.piece(piece)
|
2016-01-24 20:22:33 +00:00
|
|
|
p.waitNoPendingWrites()
|
2018-07-11 23:15:15 +00:00
|
|
|
ip := t.info.Piece(int(piece))
|
2016-02-18 00:45:31 +00:00
|
|
|
pl := ip.Length()
|
2020-01-23 02:56:39 +00:00
|
|
|
_, copyErr = io.CopyN( // Return no error iff pl bytes are copied.
|
|
|
|
hash, io.NewSectionReader(t.pieces[piece].Storage(), 0, pl), pl)
|
2020-01-07 08:18:07 +00:00
|
|
|
missinggo.CopyExact(&ret, hash.Sum(nil))
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
2015-02-27 01:45:55 +00:00
|
|
|
|
2016-04-19 04:11:11 +00:00
|
|
|
func (t *Torrent) haveAnyPieces() bool {
|
2020-01-10 04:09:21 +00:00
|
|
|
return t._completedPieces.Len() != 0
|
2018-02-04 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) haveAllPieces() bool {
|
|
|
|
if !t.haveInfo() {
|
|
|
|
return false
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
2020-01-10 04:09:21 +00:00
|
|
|
return t._completedPieces.Len() == bitmap.BitIndex(t.numPieces())
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) havePiece(index pieceIndex) bool {
|
2015-03-10 15:41:21 +00:00
|
|
|
return t.haveInfo() && t.pieceComplete(index)
|
2014-09-13 17:50:15 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) haveChunk(r request) (ret bool) {
|
2016-01-13 06:11:59 +00:00
|
|
|
// defer func() {
|
|
|
|
// log.Println("have chunk", r, ret)
|
|
|
|
// }()
|
2015-04-14 13:59:41 +00:00
|
|
|
if !t.haveInfo() {
|
2014-09-13 17:50:15 +00:00
|
|
|
return false
|
|
|
|
}
|
2018-07-17 11:28:01 +00:00
|
|
|
if t.pieceComplete(pieceIndex(r.Index)) {
|
2015-07-17 11:07:01 +00:00
|
|
|
return true
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[r.Index]
|
2015-07-15 05:31:18 +00:00
|
|
|
return !p.pendingChunk(r.chunkSpec, t.chunkSize)
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2015-07-15 05:31:18 +00:00
|
|
|
func chunkIndex(cs chunkSpec, chunkSize pp.Integer) int {
|
2015-05-16 00:51:48 +00:00
|
|
|
return int(cs.Begin / chunkSize)
|
2014-09-13 17:50:15 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) wantPieceIndex(index pieceIndex) bool {
|
2014-06-26 14:57:07 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return false
|
|
|
|
}
|
2016-11-22 03:20:48 +00:00
|
|
|
if index < 0 || index >= t.numPieces() {
|
|
|
|
return false
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[index]
|
2017-10-12 05:09:32 +00:00
|
|
|
if p.queuedForHash() {
|
2015-04-14 13:59:41 +00:00
|
|
|
return false
|
|
|
|
}
|
2017-09-15 09:35:16 +00:00
|
|
|
if p.hashing {
|
2015-04-14 13:59:41 +00:00
|
|
|
return false
|
|
|
|
}
|
2016-01-27 18:54:48 +00:00
|
|
|
if t.pieceComplete(index) {
|
|
|
|
return false
|
|
|
|
}
|
2020-01-10 04:09:21 +00:00
|
|
|
if t._pendingPieces.Contains(bitmap.BitIndex(index)) {
|
2016-01-27 18:54:48 +00:00
|
|
|
return true
|
|
|
|
}
|
2019-01-15 18:18:30 +00:00
|
|
|
// t.logger.Printf("piece %d not pending", index)
|
2018-07-11 23:15:15 +00:00
|
|
|
return !t.forReaderOffsetPieces(func(begin, end pieceIndex) bool {
|
2016-01-27 18:54:48 +00:00
|
|
|
return index < begin || index >= end
|
|
|
|
})
|
|
|
|
}
|
2014-09-13 18:06:17 +00:00
|
|
|
|
2016-07-05 14:42:16 +00:00
|
|
|
// The worst connection is one that hasn't been sent, or sent anything useful
|
|
|
|
// for the longest. A bad connection is one that usually sends us unwanted
|
|
|
|
// pieces, or has been in worser half of the established connections for more
|
|
|
|
// than a minute.
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) worstBadConn() *PeerConn {
|
2017-09-21 09:32:03 +00:00
|
|
|
wcs := worseConnSlice{t.unclosedConnsAsSlice()}
|
|
|
|
heap.Init(&wcs)
|
2015-08-03 15:32:45 +00:00
|
|
|
for wcs.Len() != 0 {
|
2020-02-21 00:07:50 +00:00
|
|
|
c := heap.Pop(&wcs).(*PeerConn)
|
2020-01-10 04:09:21 +00:00
|
|
|
if c._stats.ChunksReadWasted.Int64() >= 6 && c._stats.ChunksReadWasted.Int64() > c._stats.ChunksReadUseful.Int64() {
|
2015-08-03 15:32:45 +00:00
|
|
|
return c
|
|
|
|
}
|
2018-02-04 08:14:07 +00:00
|
|
|
// If the connection is in the worst half of the established
|
|
|
|
// connection quota and is older than a minute.
|
2016-07-05 06:23:17 +00:00
|
|
|
if wcs.Len() >= (t.maxEstablishedConns+1)/2 {
|
2015-08-03 15:32:45 +00:00
|
|
|
// Give connections 1 minute to prove themselves.
|
|
|
|
if time.Since(c.completedHandshake) > time.Minute {
|
|
|
|
return c
|
|
|
|
}
|
2015-06-29 14:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-09-06 02:33:22 +00:00
|
|
|
|
2016-02-07 10:55:47 +00:00
|
|
|
type PieceStateChange struct {
|
|
|
|
Index int
|
|
|
|
PieceState
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) publishPieceChange(piece pieceIndex) {
|
2019-12-13 04:55:56 +00:00
|
|
|
t.cl._mu.Defer(func() {
|
|
|
|
cur := t.pieceState(piece)
|
|
|
|
p := &t.pieces[piece]
|
|
|
|
if cur != p.publicPieceState {
|
|
|
|
p.publicPieceState = cur
|
|
|
|
t.pieceStateChanges.Publish(PieceStateChange{
|
|
|
|
int(piece),
|
|
|
|
cur,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2015-09-06 02:33:22 +00:00
|
|
|
}
|
2016-01-13 06:11:59 +00:00
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceNumPendingChunks(piece pieceIndex) pp.Integer {
|
2016-01-27 18:54:48 +00:00
|
|
|
if t.pieceComplete(piece) {
|
|
|
|
return 0
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.pieceNumChunks(piece) - t.pieces[piece].numDirtyChunks()
|
2016-01-13 06:11:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceAllDirty(piece pieceIndex) bool {
|
2020-01-10 04:09:21 +00:00
|
|
|
return t.pieces[piece]._dirtyChunks.Len() == int(t.pieceNumChunks(piece))
|
2016-01-13 06:11:59 +00:00
|
|
|
}
|
2016-01-18 07:35:14 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) readersChanged() {
|
2016-10-31 08:00:08 +00:00
|
|
|
t.updateReaderPieces()
|
|
|
|
t.updateAllPiecePriorities()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) updateReaderPieces() {
|
2020-01-10 04:09:21 +00:00
|
|
|
t._readerNowPieces, t._readerReadaheadPieces = t.readerPiecePriorities()
|
2016-10-31 08:00:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) readerPosChanged(from, to pieceRange) {
|
|
|
|
if from == to {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.updateReaderPieces()
|
|
|
|
// Order the ranges, high and low.
|
|
|
|
l, h := from, to
|
|
|
|
if l.begin > h.begin {
|
|
|
|
l, h = h, l
|
|
|
|
}
|
|
|
|
if l.end < h.begin {
|
|
|
|
// Two distinct ranges.
|
|
|
|
t.updatePiecePriorities(l.begin, l.end)
|
|
|
|
t.updatePiecePriorities(h.begin, h.end)
|
|
|
|
} else {
|
|
|
|
// Ranges overlap.
|
|
|
|
end := l.end
|
|
|
|
if h.end > end {
|
|
|
|
end = h.end
|
|
|
|
}
|
|
|
|
t.updatePiecePriorities(l.begin, end)
|
|
|
|
}
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) maybeNewConns() {
|
2016-02-01 10:11:41 +00:00
|
|
|
// Tickle the accept routine.
|
|
|
|
t.cl.event.Broadcast()
|
|
|
|
t.openNewConns()
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) piecePriorityChanged(piece pieceIndex) {
|
2019-01-15 18:18:30 +00:00
|
|
|
// t.logger.Printf("piece %d priority changed", piece)
|
2016-11-23 00:48:44 +00:00
|
|
|
for c := range t.conns {
|
2017-09-01 05:26:50 +00:00
|
|
|
if c.updatePiecePriority(piece) {
|
2018-01-25 06:18:36 +00:00
|
|
|
// log.Print("conn piece priority changed")
|
2017-09-01 05:26:50 +00:00
|
|
|
c.updateRequests()
|
|
|
|
}
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
t.maybeNewConns()
|
2016-02-04 14:19:42 +00:00
|
|
|
t.publishPieceChange(piece)
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) updatePiecePriority(piece pieceIndex) {
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2018-01-25 06:18:36 +00:00
|
|
|
newPrio := p.uncachedPriority()
|
2019-01-15 18:18:30 +00:00
|
|
|
// t.logger.Printf("torrent %p: piece %d: uncached priority: %v", t, piece, newPrio)
|
2018-01-25 06:18:36 +00:00
|
|
|
if newPrio == PiecePriorityNone {
|
2020-01-10 04:09:21 +00:00
|
|
|
if !t._pendingPieces.Remove(bitmap.BitIndex(piece)) {
|
2018-01-25 06:18:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2020-01-10 04:09:21 +00:00
|
|
|
if !t._pendingPieces.Set(bitmap.BitIndex(piece), newPrio.BitmapPriority()) {
|
2018-01-25 06:18:36 +00:00
|
|
|
return
|
|
|
|
}
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
2016-08-30 05:41:26 +00:00
|
|
|
t.piecePriorityChanged(piece)
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-31 08:00:08 +00:00
|
|
|
func (t *Torrent) updateAllPiecePriorities() {
|
2018-07-11 23:15:15 +00:00
|
|
|
t.updatePiecePriorities(0, t.numPieces())
|
2016-10-31 08:00:08 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 06:57:57 +00:00
|
|
|
// Update all piece priorities in one hit. This function should have the same
|
|
|
|
// output as updatePiecePriority, but across all pieces.
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) updatePiecePriorities(begin, end pieceIndex) {
|
2016-10-31 08:00:08 +00:00
|
|
|
for i := begin; i < end; i++ {
|
2016-08-30 05:41:26 +00:00
|
|
|
t.updatePiecePriority(i)
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
2016-01-18 07:35:14 +00:00
|
|
|
}
|
|
|
|
|
2016-10-23 05:33:26 +00:00
|
|
|
// Returns the range of pieces [begin, end) that contains the extent of bytes.
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) byteRegionPieces(off, size int64) (begin, end pieceIndex) {
|
2018-01-06 12:15:41 +00:00
|
|
|
if off >= *t.length {
|
2016-01-18 07:35:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if off < 0 {
|
|
|
|
size += off
|
|
|
|
off = 0
|
|
|
|
}
|
|
|
|
if size <= 0 {
|
|
|
|
return
|
|
|
|
}
|
2018-07-11 23:15:15 +00:00
|
|
|
begin = pieceIndex(off / t.info.PieceLength)
|
|
|
|
end = pieceIndex((off + size + t.info.PieceLength - 1) / t.info.PieceLength)
|
|
|
|
if end > pieceIndex(t.info.NumPieces()) {
|
|
|
|
end = pieceIndex(t.info.NumPieces())
|
2016-01-18 07:35:14 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-30 05:07:59 +00:00
|
|
|
// Returns true if all iterations complete without breaking. Returns the read
|
|
|
|
// regions for all readers. The reader regions should not be merged as some
|
|
|
|
// callers depend on this method to enumerate readers.
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) forReaderOffsetPieces(f func(begin, end pieceIndex) (more bool)) (all bool) {
|
2016-01-18 07:35:14 +00:00
|
|
|
for r := range t.readers {
|
2016-10-23 05:33:26 +00:00
|
|
|
p := r.pieces
|
|
|
|
if p.begin >= p.end {
|
2016-01-18 07:35:14 +00:00
|
|
|
continue
|
|
|
|
}
|
2016-10-23 05:33:26 +00:00
|
|
|
if !f(p.begin, p.end) {
|
2016-01-18 07:35:14 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) piecePriority(piece pieceIndex) piecePriority {
|
2020-01-10 04:09:21 +00:00
|
|
|
prio, ok := t._pendingPieces.GetPriority(bitmap.BitIndex(piece))
|
2018-01-25 06:18:36 +00:00
|
|
|
if !ok {
|
2018-01-21 11:49:12 +00:00
|
|
|
return PiecePriorityNone
|
|
|
|
}
|
2018-01-29 07:21:37 +00:00
|
|
|
if prio > 0 {
|
|
|
|
panic(prio)
|
|
|
|
}
|
|
|
|
ret := piecePriority(-prio)
|
|
|
|
if ret == PiecePriorityNone {
|
|
|
|
panic(piece)
|
|
|
|
}
|
|
|
|
return ret
|
2016-02-04 14:18:54 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pendRequest(req request) {
|
2016-01-27 18:54:48 +00:00
|
|
|
ci := chunkIndex(req.chunkSpec, t.chunkSize)
|
2016-04-03 06:50:53 +00:00
|
|
|
t.pieces[req.Index].pendChunkIndex(ci)
|
2016-01-27 18:54:48 +00:00
|
|
|
}
|
2016-02-01 10:11:41 +00:00
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) pieceCompletionChanged(piece pieceIndex) {
|
2019-08-21 00:43:06 +00:00
|
|
|
t.tickleReaders()
|
2016-11-23 00:48:44 +00:00
|
|
|
t.cl.event.Broadcast()
|
|
|
|
if t.pieceComplete(piece) {
|
|
|
|
t.onPieceCompleted(piece)
|
2016-11-22 10:12:53 +00:00
|
|
|
} else {
|
2016-11-23 00:48:44 +00:00
|
|
|
t.onIncompletePiece(piece)
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
|
|
|
t.updatePiecePriority(piece)
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2018-02-16 01:15:07 +00:00
|
|
|
func (t *Torrent) numReceivedConns() (ret int) {
|
|
|
|
for c := range t.conns {
|
2020-02-21 00:07:50 +00:00
|
|
|
if c.Discovery == PeerSourceIncoming {
|
2018-02-16 01:15:07 +00:00
|
|
|
ret++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) maxHalfOpen() int {
|
|
|
|
// Note that if we somehow exceed the maximum established conns, we want
|
|
|
|
// the negative value to have an effect.
|
|
|
|
establishedHeadroom := int64(t.maxEstablishedConns - len(t.conns))
|
|
|
|
extraIncoming := int64(t.numReceivedConns() - t.maxEstablishedConns/2)
|
|
|
|
// We want to allow some experimentation with new peers, and to try to
|
|
|
|
// upset an oversupply of received connections.
|
2018-07-10 02:23:00 +00:00
|
|
|
return int(min(max(5, extraIncoming)+establishedHeadroom, int64(t.cl.config.HalfOpenConnsPerTorrent)))
|
2018-02-16 01:15:07 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) openNewConns() {
|
2018-02-04 01:59:23 +00:00
|
|
|
defer t.updateWantPeersEvent()
|
2018-04-04 07:59:28 +00:00
|
|
|
for t.peers.Len() != 0 {
|
2018-02-04 01:59:23 +00:00
|
|
|
if !t.wantConns() {
|
|
|
|
return
|
|
|
|
}
|
2018-02-16 01:15:07 +00:00
|
|
|
if len(t.halfOpen) >= t.maxHalfOpen() {
|
2018-02-04 01:59:23 +00:00
|
|
|
return
|
|
|
|
}
|
2018-04-04 07:59:28 +00:00
|
|
|
p := t.peers.PopMax()
|
2018-02-04 01:59:23 +00:00
|
|
|
t.initiateConn(p)
|
|
|
|
}
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) getConnPieceInclination() []int {
|
2016-02-01 10:11:41 +00:00
|
|
|
_ret := t.connPieceInclinationPool.Get()
|
|
|
|
if _ret == nil {
|
|
|
|
pieceInclinationsNew.Add(1)
|
2018-07-11 23:15:15 +00:00
|
|
|
return rand.Perm(int(t.numPieces()))
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
pieceInclinationsReused.Add(1)
|
2017-11-07 13:34:59 +00:00
|
|
|
return *_ret.(*[]int)
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) putPieceInclination(pi []int) {
|
2017-11-07 05:11:59 +00:00
|
|
|
t.connPieceInclinationPool.Put(&pi)
|
2016-02-01 10:11:41 +00:00
|
|
|
pieceInclinationsPut.Add(1)
|
|
|
|
}
|
2016-02-16 13:00:55 +00:00
|
|
|
|
2019-04-09 02:57:54 +00:00
|
|
|
func (t *Torrent) updatePieceCompletion(piece pieceIndex) bool {
|
2019-08-21 00:43:06 +00:00
|
|
|
p := t.piece(piece)
|
|
|
|
uncached := t.pieceCompleteUncached(piece)
|
|
|
|
cached := p.completion()
|
|
|
|
changed := cached != uncached
|
2020-01-07 08:18:07 +00:00
|
|
|
complete := uncached.Complete
|
2019-08-21 00:43:06 +00:00
|
|
|
p.storageCompletionOk = uncached.Ok
|
2020-01-10 04:09:21 +00:00
|
|
|
t._completedPieces.Set(bitmap.BitIndex(piece), complete)
|
2020-01-07 08:18:07 +00:00
|
|
|
if complete && len(p.dirtiers) != 0 {
|
|
|
|
t.logger.Printf("marked piece %v complete but still has dirtiers", piece)
|
|
|
|
}
|
2016-04-03 06:36:57 +00:00
|
|
|
if changed {
|
2019-08-22 00:20:13 +00:00
|
|
|
log.Fstr("piece %d completion changed: %+v -> %+v", piece, cached, uncached).WithValues(debugLogValue).Log(t.logger)
|
2016-11-23 00:48:44 +00:00
|
|
|
t.pieceCompletionChanged(piece)
|
2016-04-03 06:36:57 +00:00
|
|
|
}
|
2019-04-09 02:57:54 +00:00
|
|
|
return changed
|
2016-02-16 13:00:55 +00:00
|
|
|
}
|
2016-02-20 16:32:59 +00:00
|
|
|
|
|
|
|
// Non-blocking read. Client lock is not required.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) readAt(b []byte, off int64) (n int, err error) {
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[off/t.info.PieceLength]
|
2016-03-28 09:38:30 +00:00
|
|
|
p.waitNoPendingWrites()
|
|
|
|
return p.Storage().ReadAt(b, off-p.Info().Offset())
|
2016-02-20 16:32:59 +00:00
|
|
|
}
|
2016-02-21 06:24:59 +00:00
|
|
|
|
2016-07-23 14:34:40 +00:00
|
|
|
// Returns an error if the metadata was completed, but couldn't be set for
|
|
|
|
// some reason. Blame it on the last peer to contribute.
|
|
|
|
func (t *Torrent) maybeCompleteMetadata() error {
|
2016-05-03 06:47:11 +00:00
|
|
|
if t.haveInfo() {
|
|
|
|
// Nothing to do.
|
2016-07-23 14:34:40 +00:00
|
|
|
return nil
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
|
|
|
if !t.haveAllMetadataPieces() {
|
|
|
|
// Don't have enough metadata pieces.
|
2016-07-23 14:34:40 +00:00
|
|
|
return nil
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
2016-05-09 05:47:39 +00:00
|
|
|
err := t.setInfoBytes(t.metadataBytes)
|
2016-05-03 06:47:11 +00:00
|
|
|
if err != nil {
|
|
|
|
t.invalidateMetadata()
|
2016-07-23 14:34:40 +00:00
|
|
|
return fmt.Errorf("error setting info bytes: %s", err)
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
|
|
|
if t.cl.config.Debug {
|
2019-01-15 18:18:30 +00:00
|
|
|
t.logger.Printf("%s: got metadata from peers", t)
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
2016-07-23 14:34:40 +00:00
|
|
|
return nil
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
|
|
|
|
2016-08-30 05:41:26 +00:00
|
|
|
func (t *Torrent) readerPiecePriorities() (now, readahead bitmap.Bitmap) {
|
2018-07-11 23:15:15 +00:00
|
|
|
t.forReaderOffsetPieces(func(begin, end pieceIndex) bool {
|
2016-08-30 05:41:26 +00:00
|
|
|
if end > begin {
|
2018-07-11 23:15:15 +00:00
|
|
|
now.Add(bitmap.BitIndex(begin))
|
|
|
|
readahead.AddRange(bitmap.BitIndex(begin)+1, bitmap.BitIndex(end))
|
2016-08-30 05:41:26 +00:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:47:11 +00:00
|
|
|
func (t *Torrent) needData() bool {
|
2016-07-29 14:41:45 +00:00
|
|
|
if t.closed.IsSet() {
|
|
|
|
return false
|
|
|
|
}
|
2016-05-03 06:47:11 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return true
|
|
|
|
}
|
2020-01-10 04:09:21 +00:00
|
|
|
return t._pendingPieces.Len() != 0
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
|
|
|
|
2016-05-22 12:45:08 +00:00
|
|
|
func appendMissingStrings(old, new []string) (ret []string) {
|
|
|
|
ret = old
|
|
|
|
new:
|
|
|
|
for _, n := range new {
|
|
|
|
for _, o := range old {
|
|
|
|
if o == n {
|
|
|
|
continue new
|
|
|
|
}
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
2016-05-22 12:45:08 +00:00
|
|
|
ret = append(ret, n)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func appendMissingTrackerTiers(existing [][]string, minNumTiers int) (ret [][]string) {
|
|
|
|
ret = existing
|
|
|
|
for minNumTiers > len(ret) {
|
|
|
|
ret = append(ret, nil)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) addTrackers(announceList [][]string) {
|
|
|
|
fullAnnounceList := &t.metainfo.AnnounceList
|
|
|
|
t.metainfo.AnnounceList = appendMissingTrackerTiers(*fullAnnounceList, len(announceList))
|
|
|
|
for tierIndex, trackerURLs := range announceList {
|
|
|
|
(*fullAnnounceList)[tierIndex] = appendMissingStrings((*fullAnnounceList)[tierIndex], trackerURLs)
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
2016-05-22 12:45:08 +00:00
|
|
|
t.startMissingTrackerScrapers()
|
2016-05-23 00:19:14 +00:00
|
|
|
t.updateWantPeersEvent()
|
2016-05-03 06:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't call this before the info is available.
|
|
|
|
func (t *Torrent) bytesCompleted() int64 {
|
|
|
|
if !t.haveInfo() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return t.info.TotalLength() - t.bytesLeft()
|
|
|
|
}
|
2016-05-09 05:47:39 +00:00
|
|
|
|
|
|
|
func (t *Torrent) SetInfoBytes(b []byte) (err error) {
|
2018-07-25 03:41:50 +00:00
|
|
|
t.cl.lock()
|
|
|
|
defer t.cl.unlock()
|
2016-05-09 05:47:39 +00:00
|
|
|
return t.setInfoBytes(b)
|
|
|
|
}
|
2016-05-11 11:44:55 +00:00
|
|
|
|
|
|
|
// Returns true if connection is removed from torrent.Conns.
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) deleteConnection(c *PeerConn) (ret bool) {
|
2018-02-02 02:36:18 +00:00
|
|
|
if !c.closed.IsSet() {
|
|
|
|
panic("connection is not closed")
|
|
|
|
// There are behaviours prevented by the closed state that will fail
|
|
|
|
// if the connection has been deleted.
|
|
|
|
}
|
2016-11-23 00:48:44 +00:00
|
|
|
_, ret = t.conns[c]
|
|
|
|
delete(t.conns, c)
|
2018-06-15 12:42:05 +00:00
|
|
|
torrent.Add("deleted connections", 1)
|
2018-02-01 03:46:03 +00:00
|
|
|
c.deleteAllRequests()
|
|
|
|
if len(t.conns) == 0 {
|
|
|
|
t.assertNoPendingRequests()
|
|
|
|
}
|
2016-11-23 00:48:44 +00:00
|
|
|
return
|
2016-05-11 11:44:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-01 03:46:03 +00:00
|
|
|
func (t *Torrent) assertNoPendingRequests() {
|
2018-06-16 07:00:50 +00:00
|
|
|
if len(t.pendingRequests) != 0 {
|
|
|
|
panic(t.pendingRequests)
|
2018-02-01 03:46:03 +00:00
|
|
|
}
|
2020-01-10 05:18:55 +00:00
|
|
|
//if len(t.lastRequested) != 0 {
|
|
|
|
// panic(t.lastRequested)
|
|
|
|
//}
|
2018-02-01 03:46:03 +00:00
|
|
|
}
|
|
|
|
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) dropConnection(c *PeerConn) {
|
2016-05-11 11:44:55 +00:00
|
|
|
t.cl.event.Broadcast()
|
2020-02-21 00:07:50 +00:00
|
|
|
c.close()
|
2016-05-11 11:44:55 +00:00
|
|
|
if t.deleteConnection(c) {
|
|
|
|
t.openNewConns()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 12:45:08 +00:00
|
|
|
func (t *Torrent) wantPeers() bool {
|
|
|
|
if t.closed.IsSet() {
|
|
|
|
return false
|
|
|
|
}
|
2018-04-04 07:59:28 +00:00
|
|
|
if t.peers.Len() > t.cl.config.TorrentPeersLowWater {
|
2016-05-22 12:45:08 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return t.needData() || t.seeding()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) updateWantPeersEvent() {
|
|
|
|
if t.wantPeers() {
|
|
|
|
t.wantPeersEvent.Set()
|
|
|
|
} else {
|
|
|
|
t.wantPeersEvent.Clear()
|
2016-05-11 11:44:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns whether the client should make effort to seed the torrent.
|
|
|
|
func (t *Torrent) seeding() bool {
|
|
|
|
cl := t.cl
|
2016-07-29 14:41:45 +00:00
|
|
|
if t.closed.IsSet() {
|
|
|
|
return false
|
|
|
|
}
|
2016-05-11 11:44:55 +00:00
|
|
|
if cl.config.NoUpload {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !cl.config.Seed {
|
|
|
|
return false
|
|
|
|
}
|
2017-11-05 03:04:33 +00:00
|
|
|
if cl.config.DisableAggressiveUpload && t.needData() {
|
2016-05-11 11:44:55 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2016-05-19 12:49:37 +00:00
|
|
|
|
2018-02-19 05:19:18 +00:00
|
|
|
func (t *Torrent) startScrapingTracker(_url string) {
|
|
|
|
if _url == "" {
|
2017-02-19 04:57:30 +00:00
|
|
|
return
|
|
|
|
}
|
2018-06-17 06:19:24 +00:00
|
|
|
u, err := url.Parse(_url)
|
|
|
|
if err != nil {
|
2019-01-15 18:18:30 +00:00
|
|
|
// URLs with a leading '*' appear to be a uTorrent convention to
|
|
|
|
// disable trackers.
|
|
|
|
if _url[0] != '*' {
|
|
|
|
log.Str("error parsing tracker url").AddValues("url", _url).Log(t.logger)
|
|
|
|
}
|
2018-07-07 01:35:47 +00:00
|
|
|
return
|
2018-06-17 06:19:24 +00:00
|
|
|
}
|
2018-02-19 05:19:18 +00:00
|
|
|
if u.Scheme == "udp" {
|
|
|
|
u.Scheme = "udp4"
|
|
|
|
t.startScrapingTracker(u.String())
|
|
|
|
u.Scheme = "udp6"
|
|
|
|
t.startScrapingTracker(u.String())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if u.Scheme == "udp4" && (t.cl.config.DisableIPv4Peers || t.cl.config.DisableIPv4) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if u.Scheme == "udp6" && t.cl.config.DisableIPv6 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if _, ok := t.trackerAnnouncers[_url]; ok {
|
2017-02-19 04:57:30 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
newAnnouncer := &trackerScraper{
|
2018-02-19 05:19:18 +00:00
|
|
|
u: *u,
|
|
|
|
t: t,
|
2017-02-19 04:57:30 +00:00
|
|
|
}
|
|
|
|
if t.trackerAnnouncers == nil {
|
|
|
|
t.trackerAnnouncers = make(map[string]*trackerScraper)
|
|
|
|
}
|
2018-02-19 05:19:18 +00:00
|
|
|
t.trackerAnnouncers[_url] = newAnnouncer
|
2017-02-19 04:57:30 +00:00
|
|
|
go newAnnouncer.Run()
|
|
|
|
}
|
|
|
|
|
2016-05-22 12:45:08 +00:00
|
|
|
// Adds and starts tracker scrapers for tracker URLs that aren't already
|
|
|
|
// running.
|
|
|
|
func (t *Torrent) startMissingTrackerScrapers() {
|
2016-05-22 13:44:08 +00:00
|
|
|
if t.cl.config.DisableTrackers {
|
|
|
|
return
|
|
|
|
}
|
2017-02-19 04:57:30 +00:00
|
|
|
t.startScrapingTracker(t.metainfo.Announce)
|
|
|
|
for _, tier := range t.metainfo.AnnounceList {
|
|
|
|
for _, url := range tier {
|
|
|
|
t.startScrapingTracker(url)
|
2016-05-19 12:49:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 12:45:08 +00:00
|
|
|
// Returns an AnnounceRequest with fields filled out to defaults and current
|
|
|
|
// values.
|
2019-05-31 16:11:01 +00:00
|
|
|
func (t *Torrent) announceRequest(event tracker.AnnounceEvent) tracker.AnnounceRequest {
|
2018-04-12 06:12:14 +00:00
|
|
|
// Note that IPAddress is not set. It's set for UDP inside the tracker
|
|
|
|
// code, since it's dependent on the network in use.
|
2016-05-22 12:45:08 +00:00
|
|
|
return tracker.AnnounceRequest{
|
2019-05-31 16:11:01 +00:00
|
|
|
Event: event,
|
2016-05-22 12:45:08 +00:00
|
|
|
NumWant: -1,
|
|
|
|
Port: uint16(t.cl.incomingPeerPort()),
|
|
|
|
PeerId: t.cl.peerID,
|
|
|
|
InfoHash: t.infoHash,
|
2018-02-19 05:19:18 +00:00
|
|
|
Key: t.cl.announceKey(),
|
2018-04-12 06:12:14 +00:00
|
|
|
|
|
|
|
// The following are vaguely described in BEP 3.
|
|
|
|
|
|
|
|
Left: t.bytesLeftAnnounce(),
|
2018-06-12 10:21:53 +00:00
|
|
|
Uploaded: t.stats.BytesWrittenData.Int64(),
|
2018-04-12 06:12:14 +00:00
|
|
|
// There's no mention of wasted or unwanted download in the BEP.
|
2018-06-12 10:21:53 +00:00
|
|
|
Downloaded: t.stats.BytesReadUsefulData.Int64(),
|
2016-05-19 12:49:37 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-15 05:13:53 +00:00
|
|
|
|
2016-07-23 12:38:31 +00:00
|
|
|
// Adds peers revealed in an announce until the announce ends, or we have
|
|
|
|
// enough peers.
|
2019-01-21 02:46:26 +00:00
|
|
|
func (t *Torrent) consumeDhtAnnouncePeers(pvs <-chan dht.PeersValues) {
|
2016-06-15 05:13:53 +00:00
|
|
|
cl := t.cl
|
2019-01-21 02:46:26 +00:00
|
|
|
for v := range pvs {
|
|
|
|
cl.lock()
|
|
|
|
for _, cp := range v.Peers {
|
|
|
|
if cp.Port == 0 {
|
|
|
|
// Can't do anything with this.
|
|
|
|
continue
|
2016-07-23 12:38:31 +00:00
|
|
|
}
|
2019-01-21 02:46:26 +00:00
|
|
|
t.addPeer(Peer{
|
2020-02-20 05:47:37 +00:00
|
|
|
Addr: ipPortAddr{cp.IP, cp.Port},
|
2020-02-21 00:07:50 +00:00
|
|
|
Source: PeerSourceDhtGetPeers,
|
2019-01-21 02:46:26 +00:00
|
|
|
})
|
2016-06-15 05:13:53 +00:00
|
|
|
}
|
2019-01-21 02:46:26 +00:00
|
|
|
cl.unlock()
|
2016-07-23 12:38:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-20 06:46:29 +00:00
|
|
|
func (t *Torrent) announceToDht(impliedPort bool, s DhtServer) error {
|
2019-01-21 02:46:26 +00:00
|
|
|
ps, err := s.Announce(t.infoHash, t.cl.incomingPeerPort(), impliedPort)
|
2016-07-23 12:38:31 +00:00
|
|
|
if err != nil {
|
2019-01-21 02:46:26 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-02-20 06:46:29 +00:00
|
|
|
go t.consumeDhtAnnouncePeers(ps.Peers())
|
2019-01-21 02:46:26 +00:00
|
|
|
select {
|
|
|
|
case <-t.closed.LockedChan(t.cl.locker()):
|
|
|
|
case <-time.After(5 * time.Minute):
|
2016-07-23 12:38:31 +00:00
|
|
|
}
|
|
|
|
ps.Close()
|
2019-01-21 02:46:26 +00:00
|
|
|
return nil
|
2016-07-23 12:38:31 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 06:46:29 +00:00
|
|
|
func (t *Torrent) dhtAnnouncer(s DhtServer) {
|
2016-07-23 12:38:31 +00:00
|
|
|
cl := t.cl
|
|
|
|
for {
|
|
|
|
select {
|
2018-07-25 03:41:50 +00:00
|
|
|
case <-t.closed.LockedChan(cl.locker()):
|
2016-06-15 05:13:53 +00:00
|
|
|
return
|
2019-01-22 00:41:07 +00:00
|
|
|
case <-t.wantPeersEvent.LockedChan(cl.locker()):
|
2016-06-15 05:13:53 +00:00
|
|
|
}
|
2019-01-22 00:41:07 +00:00
|
|
|
cl.lock()
|
|
|
|
t.numDHTAnnounces++
|
|
|
|
cl.unlock()
|
2019-01-21 02:46:26 +00:00
|
|
|
err := t.announceToDht(true, s)
|
2019-01-22 00:41:07 +00:00
|
|
|
if err != nil {
|
|
|
|
t.logger.Printf("error announcing %q to DHT: %s", t, err)
|
|
|
|
}
|
2016-06-15 05:13:53 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-15 05:29:47 +00:00
|
|
|
|
|
|
|
func (t *Torrent) addPeers(peers []Peer) {
|
|
|
|
for _, p := range peers {
|
|
|
|
t.addPeer(p)
|
|
|
|
}
|
|
|
|
}
|
2016-07-05 05:52:33 +00:00
|
|
|
|
|
|
|
func (t *Torrent) Stats() TorrentStats {
|
2018-07-25 03:41:50 +00:00
|
|
|
t.cl.rLock()
|
|
|
|
defer t.cl.rUnlock()
|
2018-01-27 01:02:05 +00:00
|
|
|
return t.statsLocked()
|
|
|
|
}
|
2017-04-20 20:19:58 +00:00
|
|
|
|
2018-06-12 10:21:53 +00:00
|
|
|
func (t *Torrent) statsLocked() (ret TorrentStats) {
|
|
|
|
ret.ActivePeers = len(t.conns)
|
|
|
|
ret.HalfOpenPeers = len(t.halfOpen)
|
|
|
|
ret.PendingPeers = t.peers.Len()
|
|
|
|
ret.TotalPeers = t.numTotalPeers()
|
|
|
|
ret.ConnectedSeeders = 0
|
2018-01-29 07:18:08 +00:00
|
|
|
for c := range t.conns {
|
|
|
|
if all, ok := c.peerHasAllPieces(); all && ok {
|
2018-06-12 10:21:53 +00:00
|
|
|
ret.ConnectedSeeders++
|
2018-01-29 07:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-12 10:21:53 +00:00
|
|
|
ret.ConnStats = t.stats.Copy()
|
|
|
|
return
|
2016-07-05 05:52:33 +00:00
|
|
|
}
|
2016-07-05 06:23:17 +00:00
|
|
|
|
2017-04-20 20:19:58 +00:00
|
|
|
// The total number of peers in the torrent.
|
|
|
|
func (t *Torrent) numTotalPeers() int {
|
|
|
|
peers := make(map[string]struct{})
|
|
|
|
for conn := range t.conns {
|
2017-12-01 22:58:08 +00:00
|
|
|
ra := conn.conn.RemoteAddr()
|
|
|
|
if ra == nil {
|
|
|
|
// It's been closed and doesn't support RemoteAddr.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
peers[ra.String()] = struct{}{}
|
2017-04-20 20:19:58 +00:00
|
|
|
}
|
|
|
|
for addr := range t.halfOpen {
|
|
|
|
peers[addr] = struct{}{}
|
|
|
|
}
|
2018-04-04 07:59:28 +00:00
|
|
|
t.peers.Each(func(peer Peer) {
|
2020-02-20 05:47:37 +00:00
|
|
|
peers[peer.Addr.String()] = struct{}{}
|
2018-04-04 07:59:28 +00:00
|
|
|
})
|
2017-04-20 20:19:58 +00:00
|
|
|
return len(peers)
|
|
|
|
}
|
|
|
|
|
2018-02-02 08:07:20 +00:00
|
|
|
// Reconcile bytes transferred before connection was associated with a
|
|
|
|
// torrent.
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) reconcileHandshakeStats(c *PeerConn) {
|
2020-01-10 04:09:21 +00:00
|
|
|
if c._stats != (ConnStats{
|
2018-06-09 23:18:52 +00:00
|
|
|
// Handshakes should only increment these fields:
|
2020-01-10 04:09:21 +00:00
|
|
|
BytesWritten: c._stats.BytesWritten,
|
|
|
|
BytesRead: c._stats.BytesRead,
|
2018-06-09 23:18:52 +00:00
|
|
|
}) {
|
|
|
|
panic("bad stats")
|
|
|
|
}
|
|
|
|
c.postHandshakeStats(func(cs *ConnStats) {
|
2020-01-10 04:09:21 +00:00
|
|
|
cs.BytesRead.Add(c._stats.BytesRead.Int64())
|
|
|
|
cs.BytesWritten.Add(c._stats.BytesWritten.Int64())
|
2018-06-09 23:18:52 +00:00
|
|
|
})
|
|
|
|
c.reconciledHandshakeStats = true
|
2018-02-02 08:07:20 +00:00
|
|
|
}
|
|
|
|
|
2016-07-05 06:23:17 +00:00
|
|
|
// Returns true if the connection is added.
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) addConnection(c *PeerConn) (err error) {
|
2018-06-15 12:42:05 +00:00
|
|
|
defer func() {
|
|
|
|
if err == nil {
|
|
|
|
torrent.Add("added connections", 1)
|
|
|
|
}
|
|
|
|
}()
|
2018-02-04 02:00:08 +00:00
|
|
|
if t.closed.IsSet() {
|
2018-06-12 10:14:00 +00:00
|
|
|
return errors.New("torrent closed")
|
2016-07-05 06:23:17 +00:00
|
|
|
}
|
2018-06-16 06:40:37 +00:00
|
|
|
for c0 := range t.conns {
|
|
|
|
if c.PeerID != c0.PeerID {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !t.cl.config.dropDuplicatePeerIds {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if left, ok := c.hasPreferredNetworkOver(c0); ok && left {
|
2020-02-21 00:07:50 +00:00
|
|
|
c0.close()
|
2018-06-16 06:40:37 +00:00
|
|
|
t.deleteConnection(c0)
|
|
|
|
} else {
|
|
|
|
return errors.New("existing connection preferred")
|
|
|
|
}
|
|
|
|
}
|
2016-07-05 06:23:17 +00:00
|
|
|
if len(t.conns) >= t.maxEstablishedConns {
|
|
|
|
c := t.worstBadConn()
|
2018-06-26 10:47:21 +00:00
|
|
|
if c == nil {
|
|
|
|
return errors.New("don't want conns")
|
|
|
|
}
|
2020-02-21 00:07:50 +00:00
|
|
|
c.close()
|
2016-07-05 06:23:17 +00:00
|
|
|
t.deleteConnection(c)
|
|
|
|
}
|
|
|
|
if len(t.conns) >= t.maxEstablishedConns {
|
|
|
|
panic(len(t.conns))
|
|
|
|
}
|
2018-06-09 23:18:52 +00:00
|
|
|
t.conns[c] = struct{}{}
|
2018-06-12 10:14:00 +00:00
|
|
|
return nil
|
2016-07-05 06:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) wantConns() bool {
|
2017-08-17 15:51:02 +00:00
|
|
|
if !t.networkingEnabled {
|
|
|
|
return false
|
|
|
|
}
|
2016-07-29 14:41:45 +00:00
|
|
|
if t.closed.IsSet() {
|
|
|
|
return false
|
|
|
|
}
|
2016-07-05 06:23:17 +00:00
|
|
|
if !t.seeding() && !t.needData() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if len(t.conns) < t.maxEstablishedConns {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return t.worstBadConn() != nil
|
|
|
|
}
|
2016-07-05 14:42:16 +00:00
|
|
|
|
|
|
|
func (t *Torrent) SetMaxEstablishedConns(max int) (oldMax int) {
|
2018-07-25 03:41:50 +00:00
|
|
|
t.cl.lock()
|
|
|
|
defer t.cl.unlock()
|
2016-07-05 14:42:16 +00:00
|
|
|
oldMax = t.maxEstablishedConns
|
|
|
|
t.maxEstablishedConns = max
|
2016-11-23 00:48:44 +00:00
|
|
|
wcs := slices.HeapInterface(slices.FromMapKeys(t.conns), worseConn)
|
2016-07-05 14:42:16 +00:00
|
|
|
for len(t.conns) > t.maxEstablishedConns && wcs.Len() > 0 {
|
2020-02-21 00:07:50 +00:00
|
|
|
t.dropConnection(wcs.Pop().(*PeerConn))
|
2016-07-05 14:42:16 +00:00
|
|
|
}
|
|
|
|
t.openNewConns()
|
|
|
|
return oldMax
|
|
|
|
}
|
2016-07-29 14:37:52 +00:00
|
|
|
|
2020-01-23 02:54:37 +00:00
|
|
|
func (t *Torrent) pieceHashed(piece pieceIndex, passed bool, hashIoErr error) {
|
|
|
|
t.logger.Log(log.Fstr("hashed piece %d (passed=%t)", piece, passed).WithValues(debugLogValue))
|
2019-08-21 03:31:33 +00:00
|
|
|
p := t.piece(piece)
|
|
|
|
p.numVerifies++
|
|
|
|
t.cl.event.Broadcast()
|
2016-11-22 10:12:53 +00:00
|
|
|
if t.closed.IsSet() {
|
|
|
|
return
|
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
|
|
|
|
// Don't score the first time a piece is hashed, it could be an initial check.
|
2018-02-03 01:14:39 +00:00
|
|
|
if p.storageCompletionOk {
|
2020-01-23 02:54:37 +00:00
|
|
|
if passed {
|
2016-11-22 10:12:53 +00:00
|
|
|
pieceHashedCorrect.Add(1)
|
|
|
|
} else {
|
2020-01-07 04:13:28 +00:00
|
|
|
log.Fmsg("piece %d failed hash: %d connections contributed", piece, len(p.dirtiers)).AddValues(t, p).Log(t.logger)
|
2016-11-22 10:12:53 +00:00
|
|
|
pieceHashedNotCorrect.Add(1)
|
|
|
|
}
|
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
|
2020-01-23 02:54:37 +00:00
|
|
|
if passed {
|
2020-01-07 04:13:28 +00:00
|
|
|
if len(p.dirtiers) != 0 {
|
|
|
|
// Don't increment stats above connection-level for every involved connection.
|
2018-06-09 23:18:52 +00:00
|
|
|
t.allStats((*ConnStats).incrementPiecesDirtiedGood)
|
2018-02-03 00:53:11 +00:00
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
for c := range p.dirtiers {
|
2020-01-10 04:09:21 +00:00
|
|
|
c._stats.incrementPiecesDirtiedGood()
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
t.clearPieceTouchers(piece)
|
2016-11-22 10:12:53 +00:00
|
|
|
err := p.Storage().MarkComplete()
|
|
|
|
if err != nil {
|
2019-01-15 18:18:30 +00:00
|
|
|
t.logger.Printf("%T: error marking piece complete %d: %s", t.storage, piece, err)
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
2020-01-23 02:54:37 +00:00
|
|
|
t.pendAllChunkSpecs(piece)
|
2016-12-06 05:10:10 +00:00
|
|
|
} else {
|
2020-01-23 02:54:37 +00:00
|
|
|
if len(p.dirtiers) != 0 && p.allChunksDirty() && hashIoErr == nil {
|
|
|
|
// Peers contributed to all the data for this piece hash failure, and the failure was
|
|
|
|
// not due to errors in the storage (such as data being dropped in a cache).
|
2020-01-07 04:13:28 +00:00
|
|
|
|
|
|
|
// Increment Torrent and above stats, and then specific connections.
|
2018-06-09 23:18:52 +00:00
|
|
|
t.allStats((*ConnStats).incrementPiecesDirtiedBad)
|
2020-01-07 04:13:28 +00:00
|
|
|
for c := range p.dirtiers {
|
2016-12-06 05:10:10 +00:00
|
|
|
// Y u do dis peer?!
|
2020-01-23 02:54:37 +00:00
|
|
|
c.stats().incrementPiecesDirtiedBad()
|
2016-11-23 01:59:23 +00:00
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
|
2020-02-21 00:07:50 +00:00
|
|
|
bannableTouchers := make([]*PeerConn, 0, len(p.dirtiers))
|
2020-01-07 04:13:28 +00:00
|
|
|
for c := range p.dirtiers {
|
|
|
|
if !c.trusted {
|
|
|
|
bannableTouchers = append(bannableTouchers, c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.clearPieceTouchers(piece)
|
|
|
|
slices.Sort(bannableTouchers, connLessTrusted)
|
|
|
|
|
2017-12-03 02:44:37 +00:00
|
|
|
if t.cl.config.Debug {
|
2020-01-07 04:13:28 +00:00
|
|
|
t.logger.Printf(
|
|
|
|
"bannable conns by trust for piece %d: %v",
|
2019-12-18 02:52:00 +00:00
|
|
|
piece,
|
|
|
|
func() (ret []connectionTrust) {
|
2020-01-07 04:13:28 +00:00
|
|
|
for _, c := range bannableTouchers {
|
2019-12-18 02:52:00 +00:00
|
|
|
ret = append(ret, c.trust())
|
|
|
|
}
|
|
|
|
return
|
2020-01-07 04:13:28 +00:00
|
|
|
}(),
|
|
|
|
)
|
2017-12-03 02:44:37 +00:00
|
|
|
}
|
2020-01-07 04:13:28 +00:00
|
|
|
|
|
|
|
if len(bannableTouchers) >= 1 {
|
|
|
|
c := bannableTouchers[0]
|
2020-02-20 05:47:37 +00:00
|
|
|
t.cl.banPeerIP(c.remoteIp())
|
2020-02-21 00:07:50 +00:00
|
|
|
c.drop()
|
2019-12-18 02:52:00 +00:00
|
|
|
}
|
2016-12-06 05:10:10 +00:00
|
|
|
}
|
|
|
|
t.onIncompletePiece(piece)
|
2018-01-28 05:02:14 +00:00
|
|
|
p.Storage().MarkNotComplete()
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
2018-01-28 05:02:14 +00:00
|
|
|
t.updatePieceCompletion(piece)
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) cancelRequestsForPiece(piece pieceIndex) {
|
2017-11-05 04:26:23 +00:00
|
|
|
// TODO: Make faster
|
2017-08-31 13:48:52 +00:00
|
|
|
for cn := range t.conns {
|
2017-09-01 05:26:50 +00:00
|
|
|
cn.tickleWriter()
|
2017-08-31 13:48:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) onPieceCompleted(piece pieceIndex) {
|
2016-11-22 10:12:53 +00:00
|
|
|
t.pendAllChunkSpecs(piece)
|
2017-08-31 13:48:52 +00:00
|
|
|
t.cancelRequestsForPiece(piece)
|
2016-11-23 00:48:44 +00:00
|
|
|
for conn := range t.conns {
|
2020-02-21 00:07:50 +00:00
|
|
|
conn.have(piece)
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 06:02:52 +00:00
|
|
|
// Called when a piece is found to be not complete.
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) onIncompletePiece(piece pieceIndex) {
|
2016-11-22 10:12:53 +00:00
|
|
|
if t.pieceAllDirty(piece) {
|
|
|
|
t.pendAllChunkSpecs(piece)
|
|
|
|
}
|
|
|
|
if !t.wantPieceIndex(piece) {
|
2019-01-15 18:18:30 +00:00
|
|
|
// t.logger.Printf("piece %d incomplete and unwanted", piece)
|
2016-11-22 10:12:53 +00:00
|
|
|
return
|
|
|
|
}
|
2016-11-23 00:52:41 +00:00
|
|
|
// We could drop any connections that we told we have a piece that we
|
|
|
|
// don't here. But there's a test failure, and it seems clients don't care
|
|
|
|
// if you request pieces that you already claim to have. Pruning bad
|
|
|
|
// connections might just remove any connections that aren't treating us
|
|
|
|
// favourably anyway.
|
2017-02-02 05:53:19 +00:00
|
|
|
|
2016-11-23 00:52:41 +00:00
|
|
|
// for c := range t.conns {
|
|
|
|
// if c.sentHave(piece) {
|
2020-02-21 00:07:50 +00:00
|
|
|
// c.drop()
|
2016-11-23 00:52:41 +00:00
|
|
|
// }
|
|
|
|
// }
|
2016-11-23 00:48:44 +00:00
|
|
|
for conn := range t.conns {
|
2020-02-21 00:07:50 +00:00
|
|
|
if conn.peerHasPiece(piece) {
|
2016-11-22 10:12:53 +00:00
|
|
|
conn.updateRequests()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 03:31:33 +00:00
|
|
|
func (t *Torrent) tryCreateMorePieceHashers() {
|
2020-01-07 20:29:12 +00:00
|
|
|
for !t.closed.IsSet() && t.activePieceHashes < 2 && t.tryCreatePieceHasher() {
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
2019-08-21 03:31:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) tryCreatePieceHasher() bool {
|
|
|
|
if t.storage == nil {
|
|
|
|
return false
|
2017-10-12 05:09:32 +00:00
|
|
|
}
|
2019-08-21 03:31:33 +00:00
|
|
|
pi, ok := t.getPieceToHash()
|
|
|
|
if !ok {
|
|
|
|
return false
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
2019-08-21 03:31:33 +00:00
|
|
|
p := t.piece(pi)
|
|
|
|
t.piecesQueuedForHash.Remove(pi)
|
2017-09-15 09:35:16 +00:00
|
|
|
p.hashing = true
|
2019-08-21 03:31:33 +00:00
|
|
|
t.publishPieceChange(pi)
|
|
|
|
t.updatePiecePriority(pi)
|
2017-12-01 12:09:07 +00:00
|
|
|
t.storageLock.RLock()
|
2019-08-21 03:31:33 +00:00
|
|
|
t.activePieceHashes++
|
|
|
|
go t.pieceHasher(pi)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) getPieceToHash() (ret pieceIndex, ok bool) {
|
|
|
|
t.piecesQueuedForHash.IterTyped(func(i pieceIndex) bool {
|
|
|
|
if t.piece(i).hashing {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
ret = i
|
|
|
|
ok = true
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) pieceHasher(index pieceIndex) {
|
|
|
|
p := t.piece(index)
|
2020-01-07 08:18:07 +00:00
|
|
|
sum, copyErr := t.hashPiece(index)
|
|
|
|
correct := sum == *p.hash
|
2020-02-27 05:45:57 +00:00
|
|
|
switch copyErr {
|
|
|
|
case nil, io.EOF:
|
|
|
|
default:
|
2020-01-08 22:51:36 +00:00
|
|
|
log.Fmsg("piece %v (%s) hash failure copy error: %v", p, p.hash.HexString(), copyErr).Log(t.logger)
|
2020-01-07 08:18:07 +00:00
|
|
|
}
|
2017-12-01 12:09:07 +00:00
|
|
|
t.storageLock.RUnlock()
|
2019-08-21 03:31:33 +00:00
|
|
|
t.cl.lock()
|
|
|
|
defer t.cl.unlock()
|
2017-09-15 09:35:16 +00:00
|
|
|
p.hashing = false
|
2019-08-21 03:31:33 +00:00
|
|
|
t.updatePiecePriority(index)
|
2020-01-23 02:54:37 +00:00
|
|
|
t.pieceHashed(index, correct, copyErr)
|
2019-08-21 03:31:33 +00:00
|
|
|
t.publishPieceChange(index)
|
|
|
|
t.activePieceHashes--
|
|
|
|
t.tryCreateMorePieceHashers()
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
|
|
|
|
2020-01-07 04:13:28 +00:00
|
|
|
// Return the connections that touched a piece, and clear the entries while doing it.
|
|
|
|
func (t *Torrent) clearPieceTouchers(pi pieceIndex) {
|
|
|
|
p := t.piece(pi)
|
|
|
|
for c := range p.dirtiers {
|
|
|
|
delete(c.peerTouchedPieces, pi)
|
|
|
|
delete(p.dirtiers, c)
|
2016-11-22 10:12:53 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-23 00:48:44 +00:00
|
|
|
|
2020-02-21 00:07:50 +00:00
|
|
|
func (t *Torrent) connsAsSlice() (ret []*PeerConn) {
|
2016-11-23 00:48:44 +00:00
|
|
|
for c := range t.conns {
|
|
|
|
ret = append(ret, c)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2017-01-01 00:02:37 +00:00
|
|
|
|
2018-07-11 23:15:15 +00:00
|
|
|
func (t *Torrent) queuePieceCheck(pieceIndex pieceIndex) {
|
2019-08-21 03:31:33 +00:00
|
|
|
piece := t.piece(pieceIndex)
|
2017-10-12 05:09:32 +00:00
|
|
|
if piece.queuedForHash() {
|
2017-01-01 00:02:37 +00:00
|
|
|
return
|
|
|
|
}
|
2018-07-11 23:15:15 +00:00
|
|
|
t.piecesQueuedForHash.Add(bitmap.BitIndex(pieceIndex))
|
2017-01-01 00:02:37 +00:00
|
|
|
t.publishPieceChange(pieceIndex)
|
2018-06-26 04:51:55 +00:00
|
|
|
t.updatePiecePriority(pieceIndex)
|
2019-08-21 03:31:33 +00:00
|
|
|
t.tryCreateMorePieceHashers()
|
2017-01-01 00:02:37 +00:00
|
|
|
}
|
2017-09-15 09:22:32 +00:00
|
|
|
|
2019-12-18 05:49:15 +00:00
|
|
|
// Forces all the pieces to be re-hashed. See also Piece.VerifyData. This should not be called
|
|
|
|
// before the Info is available.
|
2017-09-15 09:22:32 +00:00
|
|
|
func (t *Torrent) VerifyData() {
|
2018-07-11 23:15:15 +00:00
|
|
|
for i := pieceIndex(0); i < t.NumPieces(); i++ {
|
2017-09-15 09:22:32 +00:00
|
|
|
t.Piece(i).VerifyData()
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 01:59:23 +00:00
|
|
|
|
2019-12-18 02:52:00 +00:00
|
|
|
// Start the process of connecting to the given peer for the given torrent if appropriate.
|
2018-02-04 01:59:23 +00:00
|
|
|
func (t *Torrent) initiateConn(peer Peer) {
|
|
|
|
if peer.Id == t.cl.peerID {
|
|
|
|
return
|
|
|
|
}
|
2020-02-20 05:47:37 +00:00
|
|
|
|
|
|
|
if t.cl.badPeerAddr(peer.Addr) && !peer.Trusted {
|
2018-02-04 01:59:23 +00:00
|
|
|
return
|
|
|
|
}
|
2020-02-20 05:47:37 +00:00
|
|
|
addr := peer.Addr
|
2018-11-04 05:56:55 +00:00
|
|
|
if t.addrActive(addr.String()) {
|
2018-02-04 01:59:23 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-04 05:56:55 +00:00
|
|
|
t.halfOpen[addr.String()] = peer
|
2019-12-18 02:52:00 +00:00
|
|
|
go t.cl.outgoingConnection(t, addr, peer.Source, peer.Trusted)
|
2018-02-04 01:59:23 +00:00
|
|
|
}
|
2018-04-12 01:41:07 +00:00
|
|
|
|
2020-02-21 00:07:50 +00:00
|
|
|
// Adds a trusted, pending peer for each of the given Client's addresses. Typically used in tests to
|
|
|
|
// quickly make one Client visible to the Torrent of another Client.
|
2018-04-12 01:41:07 +00:00
|
|
|
func (t *Torrent) AddClientPeer(cl *Client) {
|
|
|
|
t.AddPeers(func() (ps []Peer) {
|
|
|
|
for _, la := range cl.ListenAddrs() {
|
|
|
|
ps = append(ps, Peer{
|
2020-02-20 05:47:37 +00:00
|
|
|
Addr: la,
|
2019-12-18 02:52:00 +00:00
|
|
|
Trusted: true,
|
2018-04-12 01:41:07 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}())
|
|
|
|
}
|
2018-06-09 23:18:52 +00:00
|
|
|
|
2020-01-22 04:56:16 +00:00
|
|
|
// All stats that include this Torrent. Useful when we want to increment ConnStats but not for every
|
|
|
|
// connection.
|
2018-06-09 23:18:52 +00:00
|
|
|
func (t *Torrent) allStats(f func(*ConnStats)) {
|
2018-06-12 10:21:53 +00:00
|
|
|
f(&t.stats)
|
2018-06-09 23:18:52 +00:00
|
|
|
f(&t.cl.stats)
|
|
|
|
}
|
2018-06-26 03:04:15 +00:00
|
|
|
|
|
|
|
func (t *Torrent) hashingPiece(i pieceIndex) bool {
|
|
|
|
return t.pieces[i].hashing
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) pieceQueuedForHash(i pieceIndex) bool {
|
|
|
|
return t.piecesQueuedForHash.Get(bitmap.BitIndex(i))
|
|
|
|
}
|
2018-07-10 01:19:14 +00:00
|
|
|
|
|
|
|
func (t *Torrent) dialTimeout() time.Duration {
|
2018-07-10 02:23:00 +00:00
|
|
|
return reducedDialTimeout(t.cl.config.MinDialTimeout, t.cl.config.NominalDialTimeout, t.cl.config.HalfOpenConnsPerTorrent, t.peers.Len())
|
2018-07-10 01:19:14 +00:00
|
|
|
}
|
2019-08-21 00:43:06 +00:00
|
|
|
|
|
|
|
func (t *Torrent) piece(i int) *Piece {
|
|
|
|
return &t.pieces[i]
|
|
|
|
}
|
2020-01-10 04:09:21 +00:00
|
|
|
|
|
|
|
func (t *Torrent) requestStrategyTorrent() requestStrategyTorrent {
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2020-01-10 05:18:55 +00:00
|
|
|
type torrentRequestStrategyCallbacks struct {
|
|
|
|
t *Torrent
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cb torrentRequestStrategyCallbacks) requestTimedOut(r request) {
|
|
|
|
torrent.Add("request timeouts", 1)
|
|
|
|
cb.t.cl.lock()
|
|
|
|
defer cb.t.cl.unlock()
|
|
|
|
for cn := range cb.t.conns {
|
2020-02-21 00:07:50 +00:00
|
|
|
if cn.peerHasPiece(pieceIndex(r.Index)) {
|
2020-01-10 05:18:55 +00:00
|
|
|
cn.updateRequests()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) requestStrategyCallbacks() requestStrategyCallbacks {
|
|
|
|
return torrentRequestStrategyCallbacks{t}
|
2020-01-10 04:09:21 +00:00
|
|
|
}
|
2020-02-22 08:40:50 +00:00
|
|
|
|
|
|
|
func (t *Torrent) onWriteChunkErr(err error) {
|
|
|
|
if t.userOnWriteChunkErr != nil {
|
|
|
|
go t.userOnWriteChunkErr(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.disallowDataDownloadLocked()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) DisallowDataDownload() {
|
|
|
|
t.cl.lock()
|
|
|
|
defer t.cl.unlock()
|
|
|
|
t.disallowDataDownloadLocked()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) disallowDataDownloadLocked() {
|
|
|
|
log.Printf("disallowing data download")
|
|
|
|
t.dataDownloadDisallowed = true
|
|
|
|
for c := range t.conns {
|
|
|
|
c.updateRequests()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) AllowDataDownload() {
|
|
|
|
t.cl.lock()
|
|
|
|
defer t.cl.unlock()
|
|
|
|
log.Printf("AllowDataDownload")
|
|
|
|
t.dataDownloadDisallowed = false
|
|
|
|
for c := range t.conns {
|
|
|
|
c.updateRequests()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) SetOnWriteChunkError(f func(error)) {
|
|
|
|
t.cl.lock()
|
|
|
|
defer t.cl.unlock()
|
|
|
|
t.userOnWriteChunkErr = f
|
|
|
|
}
|