2014-04-03 12:16:59 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2014-08-28 00:06:36 +00:00
|
|
|
"container/heap"
|
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"
|
2014-06-26 14:57:07 +00:00
|
|
|
"log"
|
2016-03-21 22:06:48 +00:00
|
|
|
"math"
|
2016-02-01 10:11:41 +00:00
|
|
|
"math/rand"
|
2014-04-03 12:16:59 +00:00
|
|
|
"net"
|
2016-05-16 09:50:46 +00:00
|
|
|
"os"
|
2014-08-28 00:06:36 +00:00
|
|
|
"sort"
|
2014-07-22 15:54:11 +00:00
|
|
|
"sync"
|
2014-12-01 22:40:18 +00:00
|
|
|
"time"
|
2014-08-21 11:08:56 +00:00
|
|
|
|
2015-06-01 08:22:12 +00:00
|
|
|
"github.com/anacrolix/missinggo"
|
2016-01-31 14:46:28 +00:00
|
|
|
"github.com/anacrolix/missinggo/bitmap"
|
2016-02-07 10:58:48 +00:00
|
|
|
"github.com/anacrolix/missinggo/itertools"
|
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-02-21 06:24:59 +00:00
|
|
|
"github.com/bradfitz/iter"
|
2015-03-26 06:18:08 +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"
|
2014-04-03 12:16:59 +00:00
|
|
|
)
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) chunkIndexSpec(chunkIndex, piece int) chunkSpec {
|
2016-01-13 06:11:59 +00:00
|
|
|
return chunkIndexSpec(chunkIndex, t.pieceLength(piece), t.chunkSize)
|
|
|
|
}
|
|
|
|
|
2016-01-06 01:19:49 +00:00
|
|
|
type peersKey struct {
|
2014-08-21 11:10:19 +00:00
|
|
|
IPBytes string
|
|
|
|
Port int
|
|
|
|
}
|
|
|
|
|
2016-02-20 16:31:50 +00:00
|
|
|
// Maintains state of torrent within a Client.
|
2016-04-03 08:40:43 +00:00
|
|
|
type Torrent struct {
|
2016-02-01 10:11:41 +00:00
|
|
|
cl *Client
|
|
|
|
|
2016-05-11 11:44:55 +00:00
|
|
|
closed missinggo.Event
|
2016-04-04 03:01:31 +00:00
|
|
|
infoHash metainfo.Hash
|
2016-04-03 06:50:53 +00:00
|
|
|
pieces []piece
|
2015-09-06 02:33:22 +00:00
|
|
|
// Values are the piece indices that changed.
|
|
|
|
pieceStateChanges *pubsub.PubSub
|
|
|
|
chunkSize pp.Integer
|
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.
|
|
|
|
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-05-16 11:50:43 +00:00
|
|
|
storageOpener storage.Client
|
2016-04-03 06:52:52 +00:00
|
|
|
// Storage for torrent data.
|
|
|
|
storage storage.Torrent
|
2014-08-24 19:31:34 +00:00
|
|
|
|
2016-04-03 06:52:52 +00:00
|
|
|
// The info dict. nil if we don't have it (yet).
|
2016-04-03 06:50:53 +00:00
|
|
|
info *metainfo.InfoEx
|
2015-03-18 07:28:13 +00:00
|
|
|
// Active peer connections, running message stream loops.
|
2016-04-03 06:50:53 +00:00
|
|
|
conns []*connection
|
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.
|
2016-04-03 06:50:53 +00:00
|
|
|
halfOpen map[string]struct{}
|
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
|
|
|
|
// them. That encourages us to reconnect to peers that are well known.
|
2016-04-03 06:50:53 +00:00
|
|
|
peers map[peersKey]Peer
|
2014-11-21 06:09:55 +00:00
|
|
|
wantPeers sync.Cond
|
2014-11-16 19:30:44 +00:00
|
|
|
|
2014-04-03 12:16:59 +00:00
|
|
|
// BEP 12 Multitracker Metadata Extension. The tracker.Client instances
|
2015-02-24 14:34:57 +00:00
|
|
|
// mirror their respective URLs from the announce-list metainfo key.
|
2016-04-03 06:50:53 +00:00
|
|
|
trackers []trackerTier
|
2015-03-18 07:28:13 +00:00
|
|
|
// Name used if the info name isn't available.
|
2015-11-22 07:44:08 +00:00
|
|
|
displayName string
|
2015-03-18 07:28:13 +00:00
|
|
|
// The bencoded bytes of the info dict.
|
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
|
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
|
|
|
|
2016-01-18 07:35:14 +00:00
|
|
|
readers map[*Reader]struct{}
|
2016-01-18 14:28:56 +00:00
|
|
|
|
2016-02-16 13:00:55 +00:00
|
|
|
pendingPieces bitmap.Bitmap
|
|
|
|
completedPieces bitmap.Bitmap
|
2016-02-01 10:11:41 +00:00
|
|
|
|
|
|
|
connPieceInclinationPool sync.Pool
|
2015-09-26 07:27:35 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) setDisplayName(dn string) {
|
2015-12-12 03:03:04 +00:00
|
|
|
t.displayName = dn
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceComplete(piece int) bool {
|
2016-02-16 13:00:55 +00:00
|
|
|
return t.completedPieces.Get(piece)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceCompleteUncached(piece int) bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.pieces[piece].Storage().GetIsComplete()
|
2015-03-10 15:41:21 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) numConnsUnchoked() (num int) {
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, c := range t.conns {
|
2015-01-10 13:16:57 +00:00
|
|
|
if !c.PeerChoked {
|
|
|
|
num++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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-04-03 06:50:53 +00:00
|
|
|
for _, c := range t.conns {
|
2015-03-12 19:21:13 +00:00
|
|
|
if c.remoteAddr().String() == addr {
|
2014-11-16 19:30:44 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) worstConns(cl *Client) (wcs *worstConns) {
|
2014-09-13 17:40:35 +00:00
|
|
|
wcs = &worstConns{
|
2016-04-03 06:50:53 +00:00
|
|
|
c: make([]*connection, 0, len(t.conns)),
|
2015-06-16 06:57:47 +00:00
|
|
|
t: t,
|
|
|
|
cl: cl,
|
2014-09-13 17:40:35 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, c := range t.conns {
|
2016-02-01 10:08:52 +00:00
|
|
|
if !c.closed.IsSet() {
|
2015-06-29 14:45:26 +00:00
|
|
|
wcs.c = append(wcs.c, c)
|
|
|
|
}
|
|
|
|
}
|
2014-08-28 00:06:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) addPeer(p Peer, cl *Client) {
|
2015-09-28 05:30:13 +00:00
|
|
|
cl.openNewConns(t)
|
2016-04-03 06:50:53 +00:00
|
|
|
if len(t.peers) >= torrentPeersHighWater {
|
2015-09-28 05:30:13 +00:00
|
|
|
return
|
|
|
|
}
|
2016-01-06 01:19:49 +00:00
|
|
|
key := peersKey{string(p.IP), p.Port}
|
2016-04-03 06:50:53 +00:00
|
|
|
if _, ok := t.peers[key]; ok {
|
2015-09-28 05:30:13 +00:00
|
|
|
return
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
t.peers[key] = p
|
2015-09-28 05:30:13 +00:00
|
|
|
peersAddedBySource.Add(string(p.Source), 1)
|
|
|
|
cl.openNewConns(t)
|
|
|
|
|
2014-08-21 11:10:19 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) invalidateMetadata() {
|
2016-04-03 06:50:53 +00:00
|
|
|
t.metadataBytes = nil
|
|
|
|
t.metadataCompletedChunks = nil
|
|
|
|
t.info = nil
|
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) {
|
2014-07-14 13:12:52 +00:00
|
|
|
log.Printf("%s: ignoring metadata piece %d", t, index)
|
|
|
|
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) metadataSizeKnown() bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.metadataBytes != nil
|
2014-06-28 09:38:31 +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
|
|
|
}
|
|
|
|
|
|
|
|
func infoPieceHashes(info *metainfo.Info) (ret []string) {
|
|
|
|
for i := 0; i < len(info.Pieces); i += 20 {
|
|
|
|
ret = append(ret, string(info.Pieces[i:i+20]))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-16 07:09:30 +00:00
|
|
|
// Called when metadata for a torrent becomes available.
|
2016-05-09 05:47:39 +00:00
|
|
|
func (t *Torrent) setInfoBytes(b []byte) error {
|
|
|
|
if t.haveInfo() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var ie *metainfo.InfoEx
|
|
|
|
err := bencode.Unmarshal(b, &ie)
|
2015-06-02 14:17:58 +00:00
|
|
|
if err != nil {
|
2016-05-09 05:47:39 +00:00
|
|
|
return fmt.Errorf("error unmarshalling info bytes: %s", err)
|
2015-06-02 14:17:58 +00:00
|
|
|
}
|
2016-05-09 05:47:39 +00:00
|
|
|
if ie.Hash() != t.infoHash {
|
2016-05-12 02:43:37 +00:00
|
|
|
return errors.New("info bytes have wrong hash")
|
2016-05-09 05:47:39 +00:00
|
|
|
}
|
|
|
|
err = validateInfo(&ie.Info)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("bad info: %s", err)
|
2016-03-28 10:57:04 +00:00
|
|
|
}
|
2016-05-09 05:47:39 +00:00
|
|
|
t.info = ie
|
|
|
|
t.cl.event.Broadcast()
|
|
|
|
t.gotMetainfo.Set()
|
2016-04-03 06:50:53 +00:00
|
|
|
t.storage, err = t.storageOpener.OpenTorrent(t.info)
|
2016-03-28 11:40:29 +00:00
|
|
|
if err != nil {
|
2016-05-09 05:47:39 +00:00
|
|
|
return fmt.Errorf("error opening torrent storage: %s", err)
|
2016-03-28 11:40:29 +00:00
|
|
|
}
|
2015-02-09 13:14:52 +00:00
|
|
|
t.length = 0
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, f := range t.info.UpvertedFiles() {
|
2015-02-09 13:14:52 +00:00
|
|
|
t.length += f.Length
|
|
|
|
}
|
2016-05-09 05:47:39 +00:00
|
|
|
t.metadataBytes = b
|
2016-04-03 06:50:53 +00:00
|
|
|
t.metadataCompletedChunks = nil
|
2016-05-09 05:47:39 +00:00
|
|
|
hashes := infoPieceHashes(&t.info.Info)
|
2016-04-03 06:50:53 +00:00
|
|
|
t.pieces = make([]piece, len(hashes))
|
2015-10-16 11:10:03 +00:00
|
|
|
for i, hash := range hashes {
|
2016-04-03 06:50:53 +00:00
|
|
|
piece := &t.pieces[i]
|
2016-02-07 10:58:48 +00:00
|
|
|
piece.t = t
|
|
|
|
piece.index = i
|
2015-08-04 16:40:46 +00:00
|
|
|
piece.noPendingWrites.L = &piece.pendingWritesMutex
|
2015-08-03 14:29:01 +00:00
|
|
|
missinggo.CopyExact(piece.Hash[:], hash)
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, conn := range t.conns {
|
2015-02-09 13:12:29 +00:00
|
|
|
if err := conn.setNumPieces(t.numPieces()); err != nil {
|
2014-07-16 07:09:30 +00:00
|
|
|
log.Printf("closing connection: %s", err)
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for i := range t.pieces {
|
2016-02-17 06:20:21 +00:00
|
|
|
t.updatePieceCompletion(i)
|
2016-04-03 06:50:53 +00:00
|
|
|
t.pieces[i].QueuedForHash = true
|
2016-02-16 13:00:55 +00:00
|
|
|
}
|
|
|
|
go func() {
|
2016-04-03 06:50:53 +00:00
|
|
|
for i := range t.pieces {
|
2016-02-16 13:00:55 +00:00
|
|
|
t.verifyPiece(i)
|
|
|
|
}
|
|
|
|
}()
|
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) verifyPiece(piece int) {
|
2016-02-16 13:00:55 +00:00
|
|
|
t.cl.verifyPiece(t, piece)
|
2014-06-28 09:38:31 +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.
|
2016-05-16 08:48:56 +00:00
|
|
|
func (t *Torrent) setMetadataSize(bytes int64) (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))
|
|
|
|
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 {
|
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
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceState(index int) (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)
|
2015-06-01 08:22:12 +00:00
|
|
|
if t.pieceComplete(index) {
|
|
|
|
ret.Complete = true
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
2015-06-01 08:22:12 +00:00
|
|
|
if p.QueuedForHash || p.Hashing {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) newMetadataExtensionMessage(c *connection, 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
|
|
|
}
|
|
|
|
p, err := bencode.Marshal(d)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return pp.Message{
|
|
|
|
Type: pp.Extended,
|
2016-04-04 05:28:25 +00:00
|
|
|
ExtendedID: c.PeerExtensionIDs["ut_metadata"],
|
2014-06-28 09:38:31 +00:00
|
|
|
ExtendedPayload: append(p, data...),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceStateRuns() (ret []PieceStateRun) {
|
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 {
|
2015-06-01 08:22:12 +00:00
|
|
|
rle.Append(t.pieceState(index), 1)
|
|
|
|
}
|
|
|
|
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.
|
|
|
|
func pieceStateRunStatusChars(psr PieceStateRun) (ret string) {
|
|
|
|
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 "!"
|
|
|
|
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
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) writeStatus(w io.Writer, cl *Client) {
|
|
|
|
fmt.Fprintf(w, "Infohash: %x\n", t.infoHash)
|
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 "?"
|
|
|
|
}
|
|
|
|
}())
|
2014-12-07 03:16:02 +00:00
|
|
|
if t.haveInfo() {
|
2015-09-25 12:05:32 +00:00
|
|
|
fmt.Fprintf(w, "Num Pieces: %d\n", t.numPieces())
|
|
|
|
fmt.Fprint(w, "Piece States:")
|
2015-06-01 08:22:12 +00:00
|
|
|
for _, psr := range t.pieceStateRuns() {
|
|
|
|
w.Write([]byte(" "))
|
|
|
|
w.Write([]byte(pieceStateRunStatusChars(psr)))
|
2014-09-13 17:43:11 +00:00
|
|
|
}
|
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:")
|
|
|
|
t.forReaderOffsetPieces(func(begin, end int) (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)
|
2014-11-21 06:07:42 +00:00
|
|
|
fmt.Fprintf(w, "Trackers: ")
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, tier := range t.trackers {
|
2014-11-21 06:07:42 +00:00
|
|
|
for _, tr := range tier {
|
2016-02-07 07:49:35 +00:00
|
|
|
fmt.Fprintf(w, "%q ", tr)
|
2014-11-21 06:07:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fmt.Fprintf(w, "\n")
|
2016-04-03 06:50:53 +00:00
|
|
|
fmt.Fprintf(w, "Pending peers: %d\n", len(t.peers))
|
|
|
|
fmt.Fprintf(w, "Half open: %d\n", len(t.halfOpen))
|
|
|
|
fmt.Fprintf(w, "Active peers: %d\n", len(t.conns))
|
2014-09-13 17:40:35 +00:00
|
|
|
sort.Sort(&worstConns{
|
2016-04-03 06:50:53 +00:00
|
|
|
c: t.conns,
|
2015-06-16 06:57:47 +00:00
|
|
|
t: t,
|
|
|
|
cl: cl,
|
2014-09-13 17:40:35 +00:00
|
|
|
})
|
2016-04-03 06:50:53 +00:00
|
|
|
for i, c := range t.conns {
|
2015-06-29 14:46:24 +00:00
|
|
|
fmt.Fprintf(w, "%2d. ", i+1)
|
2015-03-12 09:06:23 +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
|
|
|
}
|
|
|
|
|
2014-12-01 22:37:40 +00:00
|
|
|
// TODO: Include URIs that weren't converted to tracker clients.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) announceList() (al [][]string) {
|
2016-04-03 06:50:53 +00:00
|
|
|
missinggo.CastSlice(&al, t.trackers)
|
2014-12-01 22:37:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) metainfo() *metainfo.MetaInfo {
|
2016-04-03 06:50:53 +00:00
|
|
|
if t.metadataBytes == nil {
|
2014-12-02 05:33:38 +00:00
|
|
|
panic("info bytes not set")
|
|
|
|
}
|
2014-12-01 22:37:40 +00:00
|
|
|
return &metainfo.MetaInfo{
|
2016-04-03 06:50:53 +00:00
|
|
|
Info: *t.info,
|
2014-12-01 22:37:40 +00:00
|
|
|
CreationDate: time.Now().Unix(),
|
|
|
|
Comment: "dynamic metainfo from client",
|
|
|
|
CreatedBy: "go.torrent",
|
2015-02-25 04:42:47 +00:00
|
|
|
AnnounceList: t.announceList(),
|
2014-12-01 22:37:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) bytesLeft() (left int64) {
|
2015-03-10 15:39:01 +00:00
|
|
|
for i := 0; i < t.numPieces(); i++ {
|
2016-04-03 06:50:53 +00:00
|
|
|
left += int64(t.pieces[i].bytesLeft())
|
2014-05-22 14:35:24 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-21 22:06:48 +00:00
|
|
|
// Bytes left to give in tracker announces.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) bytesLeftAnnounce() uint64 {
|
2016-03-21 22:06:48 +00:00
|
|
|
if t.haveInfo() {
|
|
|
|
return uint64(t.bytesLeft())
|
|
|
|
} else {
|
|
|
|
return math.MaxUint64
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) piecePartiallyDownloaded(piece int) 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
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) lastPieceSize() int {
|
2015-03-20 12:52:53 +00:00
|
|
|
return int(t.pieceLength(t.numPieces() - 1))
|
2014-05-23 11:01:05 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) numPieces() int {
|
2016-04-03 06:50:53 +00:00
|
|
|
return 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) {
|
2016-02-16 13:00:55 +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()
|
2016-03-28 09:38:30 +00:00
|
|
|
if c, ok := t.storage.(io.Closer); ok {
|
2015-03-01 03:32:54 +00:00
|
|
|
c.Close()
|
2014-12-05 06:54:55 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, conn := range t.conns {
|
2014-04-03 12:16:59 +00:00
|
|
|
conn.Close()
|
|
|
|
}
|
2015-09-06 02:33:22 +00:00
|
|
|
t.pieceStateChanges.Close()
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) requestOffset(r request) int64 {
|
2016-01-16 13:14:15 +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) {
|
2016-04-03 06:50:53 +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) {
|
2016-01-27 18:54:48 +00:00
|
|
|
tr := perf.NewTimer()
|
2016-03-28 09:38:30 +00:00
|
|
|
|
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
|
|
|
|
}
|
2016-01-27 18:54:48 +00:00
|
|
|
if err == nil {
|
|
|
|
tr.Stop("write chunk")
|
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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())
|
|
|
|
t.completedPieces.IterTyped(func(piece int) (again bool) {
|
|
|
|
bf[piece] = true
|
|
|
|
return true
|
|
|
|
})
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) validOutgoingRequest(r request) bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
if r.Index >= pp.Integer(t.info.NumPieces()) {
|
2015-05-16 00:51:48 +00:00
|
|
|
return false
|
|
|
|
}
|
2015-07-15 05:31:18 +00:00
|
|
|
if r.Begin%t.chunkSize != 0 {
|
2015-05-16 00:51:48 +00:00
|
|
|
return false
|
|
|
|
}
|
2015-07-15 05:31:18 +00:00
|
|
|
if r.Length > t.chunkSize {
|
2015-05-16 00:51:48 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
pieceLength := t.pieceLength(int(r.Index))
|
|
|
|
if r.Begin+r.Length > pieceLength {
|
|
|
|
return false
|
|
|
|
}
|
2015-07-15 05:31:18 +00:00
|
|
|
return r.Length == t.chunkSize || r.Begin+r.Length == pieceLength
|
2015-05-16 00:51:48 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceChunks(piece int) (css []chunkSpec) {
|
2015-07-15 05:31:18 +00:00
|
|
|
css = make([]chunkSpec, 0, (t.pieceLength(piece)+t.chunkSize-1)/t.chunkSize)
|
2014-08-21 17:42:38 +00:00
|
|
|
var cs chunkSpec
|
2015-03-20 12:52:53 +00:00
|
|
|
for left := t.pieceLength(piece); left != 0; left -= cs.Length {
|
2014-08-21 17:42:38 +00:00
|
|
|
cs.Length = left
|
2015-07-15 05:31:18 +00:00
|
|
|
if cs.Length > t.chunkSize {
|
|
|
|
cs.Length = t.chunkSize
|
2014-08-21 17:42:38 +00:00
|
|
|
}
|
|
|
|
css = append(css, cs)
|
|
|
|
cs.Begin += cs.Length
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceNumChunks(piece int) int {
|
2016-01-13 06:11:59 +00:00
|
|
|
return int((t.pieceLength(piece) + t.chunkSize - 1) / t.chunkSize)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pendAllChunkSpecs(pieceIndex int) {
|
2016-04-03 06:50:53 +00:00
|
|
|
t.pieces[pieceIndex].DirtyChunks.Clear()
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Peer struct {
|
2014-07-16 07:06:18 +00:00
|
|
|
Id [20]byte
|
|
|
|
IP net.IP
|
|
|
|
Port int
|
|
|
|
Source peerSource
|
2015-03-18 07:37:26 +00:00
|
|
|
// Peer is known to support encryption.
|
|
|
|
SupportsEncryption bool
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceLength(piece int) (len_ pp.Integer) {
|
2016-04-03 06:50:53 +00:00
|
|
|
if piece < 0 || piece >= t.info.NumPieces() {
|
2016-01-13 06:11:59 +00:00
|
|
|
return
|
|
|
|
}
|
2016-04-04 05:28:25 +00:00
|
|
|
if piece == t.numPieces()-1 {
|
2016-04-03 06:50:53 +00:00
|
|
|
len_ = pp.Integer(t.length % t.info.PieceLength)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
if len_ == 0 {
|
2016-04-03 06:50:53 +00:00
|
|
|
len_ = pp.Integer(t.info.PieceLength)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-04 03:01:31 +00:00
|
|
|
func (t *Torrent) hashPiece(piece int) (ret metainfo.Hash) {
|
2014-04-08 16:36:05 +00:00
|
|
|
hash := pieceHash.New()
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2016-01-24 20:22:33 +00:00
|
|
|
p.waitNoPendingWrites()
|
2016-04-03 06:50:53 +00:00
|
|
|
ip := t.info.Piece(piece)
|
2016-02-18 00:45:31 +00:00
|
|
|
pl := ip.Length()
|
2016-04-03 06:50:53 +00:00
|
|
|
n, err := io.Copy(hash, io.NewSectionReader(t.pieces[piece].Storage(), 0, pl))
|
2016-02-18 00:45:31 +00:00
|
|
|
if n == pl {
|
|
|
|
missinggo.CopyExact(&ret, hash.Sum(nil))
|
2015-10-03 14:22:46 +00:00
|
|
|
return
|
|
|
|
}
|
2016-05-16 09:50:46 +00:00
|
|
|
if err != io.ErrUnexpectedEOF && !os.IsNotExist(err) {
|
2016-03-28 09:38:30 +00:00
|
|
|
log.Printf("unexpected error hashing piece with %T: %s", t.storage, err)
|
2015-10-03 14:22:46 +00:00
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
2015-02-27 01:45:55 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) haveAllPieces() bool {
|
2014-06-27 08:57:35 +00:00
|
|
|
if !t.haveInfo() {
|
2014-06-26 14:57:07 +00:00
|
|
|
return false
|
|
|
|
}
|
2016-02-16 13:00:55 +00:00
|
|
|
return t.completedPieces.Len() == t.numPieces()
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-19 04:11:11 +00:00
|
|
|
func (t *Torrent) haveAnyPieces() bool {
|
|
|
|
for i := range t.pieces {
|
|
|
|
if t.pieceComplete(i) {
|
2014-04-03 12:16:59 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) havePiece(index int) 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
|
|
|
|
}
|
2015-07-17 11:07:01 +00:00
|
|
|
if t.pieceComplete(int(r.Index)) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-04-19 04:11:11 +00:00
|
|
|
func (t *Torrent) wantPiece(r request) bool {
|
|
|
|
if !t.wantPieceIndex(int(r.Index)) {
|
2014-07-24 03:42:31 +00:00
|
|
|
return false
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if t.pieces[r.Index].pendingChunk(r.chunkSpec, t.chunkSize) {
|
2015-04-14 13:59:41 +00:00
|
|
|
return true
|
|
|
|
}
|
2016-01-18 07:35:14 +00:00
|
|
|
// TODO: What about pieces that were wanted, but aren't now, and aren't
|
|
|
|
// completed either? That used to be done here.
|
2015-04-14 13:59:41 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-04-19 04:11:11 +00:00
|
|
|
func (t *Torrent) wantPieceIndex(index int) bool {
|
2014-06-26 14:57:07 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return false
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[index]
|
2015-04-14 13:59:41 +00:00
|
|
|
if p.QueuedForHash {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if p.Hashing {
|
|
|
|
return false
|
|
|
|
}
|
2016-01-27 18:54:48 +00:00
|
|
|
if t.pieceComplete(index) {
|
|
|
|
return false
|
|
|
|
}
|
2016-01-31 14:46:28 +00:00
|
|
|
if t.pendingPieces.Contains(index) {
|
2016-01-27 18:54:48 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return !t.forReaderOffsetPieces(func(begin, end int) bool {
|
|
|
|
return index < begin || index >= end
|
|
|
|
})
|
|
|
|
}
|
2016-01-18 07:35:14 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) forNeededPieces(f func(piece int) (more bool)) (all bool) {
|
2016-01-27 18:54:48 +00:00
|
|
|
return t.forReaderOffsetPieces(func(begin, end int) (more bool) {
|
|
|
|
for i := begin; begin < end; i++ {
|
|
|
|
if !f(i) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
2014-09-13 18:06:17 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) connHasWantedPieces(c *connection) bool {
|
2016-02-06 14:22:31 +00:00
|
|
|
return !c.pieceRequestOrder.IsEmpty()
|
2014-09-13 18:06:17 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) extentPieces(off, _len int64) (pieces []int) {
|
2015-02-25 04:42:47 +00:00
|
|
|
for i := off / int64(t.usualPieceSize()); i*int64(t.usualPieceSize()) < off+_len; i++ {
|
2014-09-13 18:06:17 +00:00
|
|
|
pieces = append(pieces, int(i))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-06-29 14:45:26 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) worstBadConn(cl *Client) *connection {
|
2015-06-29 14:45:26 +00:00
|
|
|
wcs := t.worstConns(cl)
|
|
|
|
heap.Init(wcs)
|
2015-08-03 15:32:45 +00:00
|
|
|
for wcs.Len() != 0 {
|
2015-06-29 14:45:26 +00:00
|
|
|
c := heap.Pop(wcs).(*connection)
|
2015-08-03 15:32:45 +00:00
|
|
|
if c.UnwantedChunksReceived >= 6 && c.UnwantedChunksReceived > c.UsefulChunksReceived {
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
if wcs.Len() >= (socketsPerTorrent+1)/2 {
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) publishPieceChange(piece int) {
|
2015-09-06 02:33:22 +00:00
|
|
|
cur := t.pieceState(piece)
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2015-09-06 02:33:22 +00:00
|
|
|
if cur != p.PublicPieceState {
|
2016-02-07 10:55:47 +00:00
|
|
|
p.PublicPieceState = cur
|
|
|
|
t.pieceStateChanges.Publish(PieceStateChange{
|
|
|
|
piece,
|
|
|
|
cur,
|
|
|
|
})
|
2015-09-06 02:33:22 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-13 06:11:59 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceNumPendingChunks(piece int) int {
|
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
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceAllDirty(piece int) bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.pieces[piece].DirtyChunks.Len() == 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) forUrgentPieces(f func(piece int) (again bool)) (all bool) {
|
2016-01-27 18:54:48 +00:00
|
|
|
return t.forReaderOffsetPieces(func(begin, end int) (again bool) {
|
2016-01-18 07:35:14 +00:00
|
|
|
if begin < end {
|
|
|
|
if !f(begin) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) readersChanged() {
|
2016-02-01 10:11:41 +00:00
|
|
|
t.updatePiecePriorities()
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) piecePriorityChanged(piece int) {
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, c := range t.conns {
|
2016-02-01 10:11:41 +00:00
|
|
|
c.updatePiecePriority(piece)
|
|
|
|
}
|
|
|
|
t.maybeNewConns()
|
2016-02-04 14:19:42 +00:00
|
|
|
t.publishPieceChange(piece)
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) updatePiecePriority(piece int) bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2016-02-01 10:11:41 +00:00
|
|
|
newPrio := t.piecePriorityUncached(piece)
|
|
|
|
if newPrio == p.priority {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
p.priority = newPrio
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
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.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) updatePiecePriorities() {
|
2016-02-01 11:06:13 +00:00
|
|
|
newPrios := make([]piecePriority, t.numPieces())
|
2016-02-06 14:22:31 +00:00
|
|
|
t.pendingPieces.IterTyped(func(piece int) (more bool) {
|
|
|
|
newPrios[piece] = PiecePriorityNormal
|
2016-02-01 11:06:13 +00:00
|
|
|
return true
|
|
|
|
})
|
|
|
|
t.forReaderOffsetPieces(func(begin, end int) (next bool) {
|
|
|
|
if begin < end {
|
|
|
|
newPrios[begin].Raise(PiecePriorityNow)
|
|
|
|
}
|
|
|
|
for i := begin + 1; i < end; i++ {
|
2016-02-01 17:45:57 +00:00
|
|
|
newPrios[i].Raise(PiecePriorityReadahead)
|
2016-02-01 11:06:13 +00:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
2016-02-16 13:00:55 +00:00
|
|
|
t.completedPieces.IterTyped(func(piece int) (more bool) {
|
|
|
|
newPrios[piece] = PiecePriorityNone
|
|
|
|
return true
|
|
|
|
})
|
2016-02-01 11:06:13 +00:00
|
|
|
for i, prio := range newPrios {
|
2016-04-03 06:50:53 +00:00
|
|
|
if prio != t.pieces[i].priority {
|
|
|
|
t.pieces[i].priority = prio
|
2016-02-01 10:11:41 +00:00
|
|
|
t.piecePriorityChanged(i)
|
|
|
|
}
|
|
|
|
}
|
2016-01-18 07:35:14 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) byteRegionPieces(off, size int64) (begin, end int) {
|
2016-01-18 07:35:14 +00:00
|
|
|
if off >= t.length {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if off < 0 {
|
|
|
|
size += off
|
|
|
|
off = 0
|
|
|
|
}
|
|
|
|
if size <= 0 {
|
|
|
|
return
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
begin = int(off / t.info.PieceLength)
|
|
|
|
end = int((off + size + t.info.PieceLength - 1) / t.info.PieceLength)
|
|
|
|
if end > t.info.NumPieces() {
|
|
|
|
end = t.info.NumPieces()
|
2016-01-18 07:35:14 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-01-27 18:54:48 +00:00
|
|
|
// Returns true if all iterations complete without breaking.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) forReaderOffsetPieces(f func(begin, end int) (more bool)) (all bool) {
|
2016-02-20 03:41:04 +00:00
|
|
|
// There's an oppurtunity here to build a map of beginning pieces, and a
|
|
|
|
// bitmap of the rest. I wonder if it's worth the allocation overhead.
|
2016-01-18 07:35:14 +00:00
|
|
|
for r := range t.readers {
|
|
|
|
r.mu.Lock()
|
|
|
|
pos, readahead := r.pos, r.readahead
|
|
|
|
r.mu.Unlock()
|
|
|
|
if readahead < 1 {
|
|
|
|
readahead = 1
|
|
|
|
}
|
|
|
|
begin, end := t.byteRegionPieces(pos, readahead)
|
|
|
|
if begin >= end {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !f(begin, end) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) piecePriority(piece int) piecePriority {
|
2016-02-01 10:11:41 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return PiecePriorityNone
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.pieces[piece].priority
|
2016-02-01 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) piecePriorityUncached(piece int) (ret piecePriority) {
|
2016-01-18 07:35:14 +00:00
|
|
|
ret = PiecePriorityNone
|
|
|
|
if t.pieceComplete(piece) {
|
|
|
|
return
|
|
|
|
}
|
2016-01-31 14:46:28 +00:00
|
|
|
if t.pendingPieces.Contains(piece) {
|
2016-01-18 14:28:56 +00:00
|
|
|
ret = PiecePriorityNormal
|
|
|
|
}
|
2016-02-01 11:06:13 +00:00
|
|
|
raiseRet := ret.Raise
|
2016-01-27 18:54:48 +00:00
|
|
|
t.forReaderOffsetPieces(func(begin, end int) (again bool) {
|
2016-01-18 07:35:14 +00:00
|
|
|
if piece == begin {
|
|
|
|
raiseRet(PiecePriorityNow)
|
|
|
|
}
|
|
|
|
if begin <= piece && piece < end {
|
|
|
|
raiseRet(PiecePriorityReadahead)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2016-01-18 14:28:56 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pendPiece(piece int) {
|
2016-01-31 14:46:28 +00:00
|
|
|
if t.pendingPieces.Contains(piece) {
|
2016-01-18 14:28:56 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if t.havePiece(piece) {
|
|
|
|
return
|
|
|
|
}
|
2016-01-31 14:46:28 +00:00
|
|
|
t.pendingPieces.Add(piece)
|
2016-02-01 10:11:41 +00:00
|
|
|
if !t.updatePiecePriority(piece) {
|
|
|
|
return
|
2016-01-18 14:28:56 +00:00
|
|
|
}
|
2016-02-01 10:11:41 +00:00
|
|
|
t.piecePriorityChanged(piece)
|
2016-01-18 14:28:56 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) getCompletedPieces() (ret bitmap.Bitmap) {
|
2016-02-16 13:00:55 +00:00
|
|
|
return t.completedPieces.Copy()
|
2016-02-04 14:18:54 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) unpendPieces(unpend *bitmap.Bitmap) {
|
2016-02-04 14:18:54 +00:00
|
|
|
t.pendingPieces.Sub(unpend)
|
|
|
|
t.updatePiecePriorities()
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pendPieceRange(begin, end int) {
|
2016-02-08 10:36:50 +00:00
|
|
|
for i := begin; i < end; i++ {
|
|
|
|
t.pendPiece(i)
|
|
|
|
}
|
2016-02-04 14:18:54 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) unpendPieceRange(begin, end int) {
|
2016-02-04 14:18:54 +00:00
|
|
|
var bm bitmap.Bitmap
|
|
|
|
bm.AddRange(begin, end)
|
|
|
|
t.unpendPieces(&bm)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) connRequestPiecePendingChunks(c *connection, piece int) (more bool) {
|
2016-01-18 14:28:56 +00:00
|
|
|
if !c.PeerHasPiece(piece) {
|
|
|
|
return true
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
chunkIndices := t.pieces[piece].undirtiedChunkIndices().ToSortedSlice()
|
2016-02-07 10:58:48 +00:00
|
|
|
return itertools.ForPerm(len(chunkIndices), func(i int) bool {
|
|
|
|
req := request{pp.Integer(piece), t.chunkIndexSpec(chunkIndices[i], piece)}
|
|
|
|
return c.Request(req)
|
|
|
|
})
|
2016-01-18 14:28:56 +00:00
|
|
|
}
|
2016-01-27 18:54:48 +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
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) pieceChanged(piece int) {
|
2016-02-01 10:11:41 +00:00
|
|
|
t.cl.pieceChanged(t, piece)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) openNewConns() {
|
2016-02-01 10:11:41 +00:00
|
|
|
t.cl.openNewConns(t)
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
return rand.Perm(t.numPieces())
|
|
|
|
}
|
|
|
|
pieceInclinationsReused.Add(1)
|
|
|
|
return _ret.([]int)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) putPieceInclination(pi []int) {
|
2016-02-01 10:11:41 +00:00
|
|
|
t.connPieceInclinationPool.Put(pi)
|
|
|
|
pieceInclinationsPut.Add(1)
|
|
|
|
}
|
2016-02-16 13:00:55 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) updatePieceCompletion(piece int) {
|
2016-04-03 06:36:57 +00:00
|
|
|
pcu := t.pieceCompleteUncached(piece)
|
|
|
|
changed := t.completedPieces.Get(piece) != pcu
|
|
|
|
t.completedPieces.Set(piece, pcu)
|
|
|
|
if changed {
|
|
|
|
t.pieceChanged(piece)
|
|
|
|
}
|
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-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) updateAllPieceCompletions() {
|
2016-02-21 06:24:59 +00:00
|
|
|
for i := range iter.N(t.numPieces()) {
|
|
|
|
t.updatePieceCompletion(i)
|
|
|
|
}
|
|
|
|
}
|
2016-05-03 06:47:11 +00:00
|
|
|
|
|
|
|
func (t *Torrent) maybeMetadataCompleted() {
|
|
|
|
if t.haveInfo() {
|
|
|
|
// Nothing to do.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !t.haveAllMetadataPieces() {
|
|
|
|
// Don't have enough metadata pieces.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// TODO(anacrolix): If this fails, I think something harsher should be
|
|
|
|
// done.
|
2016-05-09 05:47:39 +00:00
|
|
|
err := t.setInfoBytes(t.metadataBytes)
|
2016-05-03 06:47:11 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("error setting metadata: %s", err)
|
|
|
|
t.invalidateMetadata()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if t.cl.config.Debug {
|
|
|
|
log.Printf("%s: got metadata from peers", t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) readerPieces() (ret bitmap.Bitmap) {
|
|
|
|
t.forReaderOffsetPieces(func(begin, end int) bool {
|
|
|
|
ret.AddRange(begin, end)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) needData() bool {
|
|
|
|
if !t.haveInfo() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if t.pendingPieces.Len() != 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return !t.readerPieces().IterTyped(func(piece int) bool {
|
|
|
|
return t.pieceComplete(piece)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) addTrackers(announceList [][]string) {
|
|
|
|
newTrackers := copyTrackers(t.trackers)
|
|
|
|
for tierIndex, tier := range announceList {
|
|
|
|
if tierIndex < len(newTrackers) {
|
|
|
|
newTrackers[tierIndex] = mergeTier(newTrackers[tierIndex], tier)
|
|
|
|
} else {
|
|
|
|
newTrackers = append(newTrackers, mergeTier(nil, tier))
|
|
|
|
}
|
|
|
|
shuffleTier(newTrackers[tierIndex])
|
|
|
|
}
|
|
|
|
t.trackers = newTrackers
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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) {
|
|
|
|
t.cl.mu.Lock()
|
|
|
|
defer t.cl.mu.Unlock()
|
|
|
|
if t.info != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return t.setInfoBytes(b)
|
|
|
|
}
|
2016-05-11 11:44:55 +00:00
|
|
|
|
|
|
|
// Returns true if connection is removed from torrent.Conns.
|
|
|
|
func (t *Torrent) deleteConnection(c *connection) bool {
|
|
|
|
for i0, _c := range t.conns {
|
|
|
|
if _c != c {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
i1 := len(t.conns) - 1
|
|
|
|
if i0 != i1 {
|
|
|
|
t.conns[i0] = t.conns[i1]
|
|
|
|
}
|
|
|
|
t.conns = t.conns[:i1]
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Torrent) dropConnection(c *connection) {
|
|
|
|
t.cl.event.Broadcast()
|
|
|
|
c.Close()
|
|
|
|
if t.deleteConnection(c) {
|
|
|
|
t.openNewConns()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true when peers are required, or false if the torrent is closing.
|
|
|
|
func (t *Torrent) waitWantPeers() bool {
|
|
|
|
t.cl.mu.Lock()
|
|
|
|
defer t.cl.mu.Unlock()
|
|
|
|
for {
|
|
|
|
if t.closed.IsSet() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if len(t.peers) > torrentPeersLowWater {
|
|
|
|
goto wait
|
|
|
|
}
|
|
|
|
if t.needData() || t.seeding() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
wait:
|
|
|
|
t.wantPeers.Wait()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns whether the client should make effort to seed the torrent.
|
|
|
|
func (t *Torrent) seeding() bool {
|
|
|
|
cl := t.cl
|
|
|
|
if cl.config.NoUpload {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !cl.config.Seed {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if t.needData() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|