2013-09-26 09:49:15 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2013-09-30 11:51:08 +00:00
|
|
|
"bufio"
|
2014-09-11 04:20:47 +00:00
|
|
|
"bytes"
|
2013-09-28 22:11:24 +00:00
|
|
|
"crypto/rand"
|
2014-06-26 14:57:07 +00:00
|
|
|
"crypto/sha1"
|
2015-03-12 09:06:23 +00:00
|
|
|
"encoding/hex"
|
2013-09-26 09:49:15 +00:00
|
|
|
"errors"
|
2014-08-21 15:33:13 +00:00
|
|
|
"expvar"
|
2013-10-07 07:58:33 +00:00
|
|
|
"fmt"
|
2013-09-26 09:49:15 +00:00
|
|
|
"io"
|
2013-09-28 22:11:24 +00:00
|
|
|
"log"
|
2014-11-19 03:56:50 +00:00
|
|
|
"math/big"
|
2014-03-16 15:30:10 +00:00
|
|
|
mathRand "math/rand"
|
2013-09-28 22:11:24 +00:00
|
|
|
"net"
|
2015-03-10 15:41:41 +00:00
|
|
|
"net/url"
|
2013-09-26 09:49:15 +00:00
|
|
|
"os"
|
2014-11-29 01:41:53 +00:00
|
|
|
"path/filepath"
|
2014-11-19 03:56:50 +00:00
|
|
|
"sort"
|
2015-03-18 07:21:00 +00:00
|
|
|
"strconv"
|
2014-09-13 17:50:15 +00:00
|
|
|
"strings"
|
2013-10-20 14:07:01 +00:00
|
|
|
"time"
|
2014-03-20 05:58:09 +00:00
|
|
|
|
2015-08-05 22:56:36 +00:00
|
|
|
"github.com/anacrolix/missinggo"
|
2016-02-06 14:20:40 +00:00
|
|
|
"github.com/anacrolix/missinggo/bitmap"
|
2016-03-06 06:26:04 +00:00
|
|
|
"github.com/anacrolix/missinggo/pproffd"
|
2015-09-06 02:35:56 +00:00
|
|
|
"github.com/anacrolix/missinggo/pubsub"
|
2015-03-20 12:52:53 +00:00
|
|
|
"github.com/anacrolix/sync"
|
2015-03-26 06:18:08 +00:00
|
|
|
"github.com/anacrolix/utp"
|
|
|
|
|
2015-04-28 05:24:17 +00:00
|
|
|
"github.com/anacrolix/torrent/bencode"
|
2015-03-20 05:37:44 +00:00
|
|
|
"github.com/anacrolix/torrent/dht"
|
|
|
|
"github.com/anacrolix/torrent/iplist"
|
2015-04-28 05:24:17 +00:00
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2015-03-26 06:18:08 +00:00
|
|
|
"github.com/anacrolix/torrent/mse"
|
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"
|
2015-03-20 05:37:44 +00:00
|
|
|
"github.com/anacrolix/torrent/tracker"
|
2013-09-26 09:49:15 +00:00
|
|
|
)
|
|
|
|
|
2016-02-21 06:22:55 +00:00
|
|
|
// I could move a lot of these counters to their own file, but I suspect they
|
|
|
|
// may be attached to a Client someday.
|
2014-08-21 15:33:13 +00:00
|
|
|
var (
|
2015-06-22 09:48:30 +00:00
|
|
|
unwantedChunksReceived = expvar.NewInt("chunksReceivedUnwanted")
|
|
|
|
unexpectedChunksReceived = expvar.NewInt("chunksReceivedUnexpected")
|
|
|
|
chunksReceived = expvar.NewInt("chunksReceived")
|
2015-06-28 06:41:51 +00:00
|
|
|
|
2015-09-28 05:30:13 +00:00
|
|
|
peersAddedBySource = expvar.NewMap("peersAddedBySource")
|
2015-06-28 06:41:51 +00:00
|
|
|
|
|
|
|
uploadChunksPosted = expvar.NewInt("uploadChunksPosted")
|
|
|
|
unexpectedCancels = expvar.NewInt("unexpectedCancels")
|
|
|
|
postedCancels = expvar.NewInt("postedCancels")
|
|
|
|
duplicateConnsAvoided = expvar.NewInt("duplicateConnsAvoided")
|
|
|
|
|
|
|
|
pieceHashedCorrect = expvar.NewInt("pieceHashedCorrect")
|
|
|
|
pieceHashedNotCorrect = expvar.NewInt("pieceHashedNotCorrect")
|
|
|
|
|
|
|
|
unsuccessfulDials = expvar.NewInt("dialSuccessful")
|
|
|
|
successfulDials = expvar.NewInt("dialUnsuccessful")
|
|
|
|
|
2015-06-29 14:35:47 +00:00
|
|
|
acceptUTP = expvar.NewInt("acceptUTP")
|
|
|
|
acceptTCP = expvar.NewInt("acceptTCP")
|
|
|
|
acceptReject = expvar.NewInt("acceptReject")
|
|
|
|
|
2015-08-01 18:06:22 +00:00
|
|
|
peerExtensions = expvar.NewMap("peerExtensions")
|
|
|
|
completedHandshakeConnectionFlags = expvar.NewMap("completedHandshakeConnectionFlags")
|
2015-03-18 07:28:13 +00:00
|
|
|
// Count of connections to peer with same client ID.
|
|
|
|
connsToSelf = expvar.NewInt("connsToSelf")
|
|
|
|
// Number of completed connections to a client we're already connected with.
|
|
|
|
duplicateClientConns = expvar.NewInt("duplicateClientConns")
|
|
|
|
receivedMessageTypes = expvar.NewMap("receivedMessageTypes")
|
2016-02-04 14:17:06 +00:00
|
|
|
receivedKeepalives = expvar.NewInt("receivedKeepalives")
|
2015-03-18 07:28:13 +00:00
|
|
|
supportedExtensionMessages = expvar.NewMap("supportedExtensionMessages")
|
2016-02-09 13:45:47 +00:00
|
|
|
postedMessageTypes = expvar.NewMap("postedMessageTypes")
|
|
|
|
postedKeepalives = expvar.NewInt("postedKeepalives")
|
2016-02-21 06:22:55 +00:00
|
|
|
// Requests received for pieces we don't have.
|
|
|
|
requestsReceivedForMissingPieces = expvar.NewInt("requestsReceivedForMissingPieces")
|
2014-08-21 15:33:13 +00:00
|
|
|
)
|
|
|
|
|
2014-08-28 00:06:36 +00:00
|
|
|
const (
|
|
|
|
// Justification for set bits follows.
|
|
|
|
//
|
2015-08-01 17:53:37 +00:00
|
|
|
// Extension protocol ([5]|=0x10):
|
|
|
|
// http://www.bittorrent.org/beps/bep_0010.html
|
|
|
|
//
|
|
|
|
// Fast Extension ([7]|=0x04):
|
|
|
|
// http://bittorrent.org/beps/bep_0006.html.
|
|
|
|
// Disabled until AllowedFast is implemented.
|
|
|
|
//
|
|
|
|
// DHT ([7]|=1):
|
|
|
|
// http://www.bittorrent.org/beps/bep_0005.html
|
2015-03-18 07:21:00 +00:00
|
|
|
defaultExtensionBytes = "\x00\x00\x00\x00\x00\x10\x00\x01"
|
2014-08-28 00:06:36 +00:00
|
|
|
|
2015-06-29 14:46:43 +00:00
|
|
|
socketsPerTorrent = 80
|
2015-02-21 03:56:17 +00:00
|
|
|
torrentPeersHighWater = 200
|
|
|
|
torrentPeersLowWater = 50
|
|
|
|
|
|
|
|
// Limit how long handshake can take. This is to reduce the lingering
|
|
|
|
// impact of a few bad apples. 4s loses 1% of successful handshakes that
|
|
|
|
// are obtained with 60s timeout, and 5% of unsuccessful handshakes.
|
2016-04-04 05:18:51 +00:00
|
|
|
handshakesTimeout = 20 * time.Second
|
2015-02-25 03:48:39 +00:00
|
|
|
|
2015-06-28 06:40:46 +00:00
|
|
|
// These are our extended message IDs.
|
2015-03-25 04:42:14 +00:00
|
|
|
metadataExtendedId = iota + 1 // 0 is reserved for deleting keys
|
|
|
|
pexExtendedId
|
|
|
|
|
2015-06-28 06:40:46 +00:00
|
|
|
// Updated occasionally to when there's been some changes to client
|
|
|
|
// behaviour in case other clients are assuming anything of us. See also
|
|
|
|
// `bep20`.
|
|
|
|
extendedHandshakeClientVersion = "go.torrent dev 20150624"
|
2014-08-28 00:06:36 +00:00
|
|
|
)
|
2014-08-21 08:12:49 +00:00
|
|
|
|
2014-03-16 15:30:10 +00:00
|
|
|
// Currently doesn't really queue, but should in the future.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) queuePieceCheck(t *Torrent, pieceIndex int) {
|
2016-04-03 06:50:53 +00:00
|
|
|
piece := &t.pieces[pieceIndex]
|
2014-03-19 17:30:08 +00:00
|
|
|
if piece.QueuedForHash {
|
2013-10-20 14:07:01 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-19 17:30:08 +00:00
|
|
|
piece.QueuedForHash = true
|
2016-04-04 05:28:25 +00:00
|
|
|
t.publishPieceChange(pieceIndex)
|
|
|
|
go cl.verifyPiece(t, pieceIndex)
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
|
|
|
|
2015-02-24 14:34:57 +00:00
|
|
|
// Queue a piece check if one isn't already queued, and the piece has never
|
|
|
|
// been checked before.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) queueFirstHash(t *Torrent, piece int) {
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2015-03-10 15:41:21 +00:00
|
|
|
if p.EverHashed || p.Hashing || p.QueuedForHash || t.pieceComplete(piece) {
|
2014-09-13 17:50:15 +00:00
|
|
|
return
|
|
|
|
}
|
2016-01-04 11:34:24 +00:00
|
|
|
cl.queuePieceCheck(t, piece)
|
2014-09-13 17:50:15 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 03:30:55 +00:00
|
|
|
// Clients contain zero or more Torrents. A client manages a blocklist, the
|
|
|
|
// TCP/UDP protocol ports, and DHT as desired.
|
2013-10-06 07:01:39 +00:00
|
|
|
type Client struct {
|
2015-04-27 04:05:27 +00:00
|
|
|
halfOpenLimit int
|
|
|
|
peerID [20]byte
|
|
|
|
listeners []net.Listener
|
|
|
|
utpSock *utp.Socket
|
|
|
|
dHT *dht.Server
|
2015-09-23 08:25:22 +00:00
|
|
|
ipBlockList iplist.Ranger
|
2016-04-04 03:01:31 +00:00
|
|
|
bannedTorrents map[metainfo.Hash]struct{}
|
2015-04-27 04:05:27 +00:00
|
|
|
config Config
|
|
|
|
pruneTimer *time.Timer
|
|
|
|
extensionBytes peerExtensionBytes
|
2015-03-18 07:29:51 +00:00
|
|
|
// Set of addresses that have our client ID. This intentionally will
|
|
|
|
// include ourselves if we end up trying to connect to our own address
|
|
|
|
// through legitimate channels.
|
|
|
|
dopplegangerAddrs map[string]struct{}
|
2015-02-25 03:48:39 +00:00
|
|
|
|
2016-03-28 09:38:30 +00:00
|
|
|
defaultStorage storage.I
|
2013-09-28 22:11:24 +00:00
|
|
|
|
2016-03-05 08:36:21 +00:00
|
|
|
mu sync.RWMutex
|
|
|
|
event sync.Cond
|
|
|
|
closed missinggo.Event
|
2013-10-20 14:07:01 +00:00
|
|
|
|
2016-04-04 03:01:31 +00:00
|
|
|
torrents map[metainfo.Hash]*Torrent
|
2015-02-25 00:25:22 +00:00
|
|
|
}
|
2014-08-24 19:24:18 +00:00
|
|
|
|
2015-09-23 08:25:22 +00:00
|
|
|
func (me *Client) IPBlockList() iplist.Ranger {
|
2015-02-25 00:25:22 +00:00
|
|
|
me.mu.Lock()
|
|
|
|
defer me.mu.Unlock()
|
|
|
|
return me.ipBlockList
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-23 08:25:22 +00:00
|
|
|
func (me *Client) SetIPBlockList(list iplist.Ranger) {
|
2014-11-29 01:41:53 +00:00
|
|
|
me.mu.Lock()
|
|
|
|
defer me.mu.Unlock()
|
|
|
|
me.ipBlockList = list
|
2014-11-30 02:33:17 +00:00
|
|
|
if me.dHT != nil {
|
|
|
|
me.dHT.SetIPBlockList(list)
|
|
|
|
}
|
2014-11-29 01:41:53 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 19:54:43 +00:00
|
|
|
func (me *Client) PeerID() string {
|
|
|
|
return string(me.peerID[:])
|
|
|
|
}
|
|
|
|
|
2014-11-16 19:16:26 +00:00
|
|
|
func (me *Client) ListenAddr() (addr net.Addr) {
|
|
|
|
for _, l := range me.listeners {
|
|
|
|
addr = l.Addr()
|
2015-05-20 08:14:42 +00:00
|
|
|
break
|
2014-11-16 19:16:26 +00:00
|
|
|
}
|
|
|
|
return
|
2014-08-21 08:07:06 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 03:56:50 +00:00
|
|
|
type hashSorter struct {
|
2016-04-04 03:01:31 +00:00
|
|
|
Hashes []metainfo.Hash
|
2014-11-19 03:56:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (me hashSorter) Len() int {
|
|
|
|
return len(me.Hashes)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me hashSorter) Less(a, b int) bool {
|
|
|
|
return (&big.Int{}).SetBytes(me.Hashes[a][:]).Cmp((&big.Int{}).SetBytes(me.Hashes[b][:])) < 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me hashSorter) Swap(a, b int) {
|
|
|
|
me.Hashes[a], me.Hashes[b] = me.Hashes[b], me.Hashes[a]
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) sortedTorrents() (ret []*Torrent) {
|
2014-11-19 03:56:50 +00:00
|
|
|
var hs hashSorter
|
|
|
|
for ih := range cl.torrents {
|
|
|
|
hs.Hashes = append(hs.Hashes, ih)
|
|
|
|
}
|
|
|
|
sort.Sort(hs)
|
|
|
|
for _, ih := range hs.Hashes {
|
|
|
|
ret = append(ret, cl.torrent(ih))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-08 06:28:14 +00:00
|
|
|
// Writes out a human readable status of the client, such as for writing to a
|
|
|
|
// HTTP status page.
|
2014-11-19 03:56:50 +00:00
|
|
|
func (cl *Client) WriteStatus(_w io.Writer) {
|
2014-11-29 01:41:53 +00:00
|
|
|
cl.mu.RLock()
|
|
|
|
defer cl.mu.RUnlock()
|
2014-11-19 03:56:50 +00:00
|
|
|
w := bufio.NewWriter(_w)
|
|
|
|
defer w.Flush()
|
2015-02-25 03:52:19 +00:00
|
|
|
if addr := cl.ListenAddr(); addr != nil {
|
|
|
|
fmt.Fprintf(w, "Listening on %s\n", cl.ListenAddr())
|
|
|
|
} else {
|
2015-03-10 15:39:01 +00:00
|
|
|
fmt.Fprintln(w, "Not listening!")
|
2015-02-25 03:52:19 +00:00
|
|
|
}
|
2015-06-22 09:46:26 +00:00
|
|
|
fmt.Fprintf(w, "Peer ID: %+q\n", cl.peerID)
|
2014-08-21 08:07:06 +00:00
|
|
|
if cl.dHT != nil {
|
2014-12-07 03:19:02 +00:00
|
|
|
dhtStats := cl.dHT.Stats()
|
2015-08-03 14:31:53 +00:00
|
|
|
fmt.Fprintf(w, "DHT nodes: %d (%d good, %d banned)\n", dhtStats.Nodes, dhtStats.GoodNodes, dhtStats.BadNodes)
|
2015-04-01 06:29:55 +00:00
|
|
|
fmt.Fprintf(w, "DHT Server ID: %x\n", cl.dHT.ID())
|
2016-03-21 05:02:36 +00:00
|
|
|
fmt.Fprintf(w, "DHT port: %d\n", missinggo.AddrPort(cl.dHT.Addr()))
|
2015-04-01 06:29:55 +00:00
|
|
|
fmt.Fprintf(w, "DHT announces: %d\n", dhtStats.ConfirmedAnnounces)
|
|
|
|
fmt.Fprintf(w, "Outstanding transactions: %d\n", dhtStats.OutstandingTransactions)
|
2014-07-22 15:50:49 +00:00
|
|
|
}
|
2015-03-27 15:51:16 +00:00
|
|
|
fmt.Fprintf(w, "# Torrents: %d\n", len(cl.torrents))
|
2014-07-16 07:07:28 +00:00
|
|
|
fmt.Fprintln(w)
|
2014-11-19 03:56:50 +00:00
|
|
|
for _, t := range cl.sortedTorrents() {
|
2016-04-03 10:54:14 +00:00
|
|
|
if t.name() == "" {
|
2014-11-18 20:32:51 +00:00
|
|
|
fmt.Fprint(w, "<unknown name>")
|
|
|
|
} else {
|
2016-04-03 10:54:14 +00:00
|
|
|
fmt.Fprint(w, t.name())
|
2014-11-18 20:32:51 +00:00
|
|
|
}
|
2015-02-21 03:57:37 +00:00
|
|
|
fmt.Fprint(w, "\n")
|
2014-11-18 20:32:51 +00:00
|
|
|
if t.haveInfo() {
|
2016-03-21 21:33:08 +00:00
|
|
|
fmt.Fprintf(w, "%f%% of %d bytes", 100*(1-float64(t.bytesLeft())/float64(t.length)), t.length)
|
2015-02-21 03:57:37 +00:00
|
|
|
} else {
|
|
|
|
w.WriteString("<missing metainfo>")
|
2014-11-18 20:32:51 +00:00
|
|
|
}
|
|
|
|
fmt.Fprint(w, "\n")
|
2015-06-16 06:57:47 +00:00
|
|
|
t.writeStatus(w, cl)
|
2014-07-17 05:58:33 +00:00
|
|
|
fmt.Fprintln(w)
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-01 22:39:09 +00:00
|
|
|
func (cl *Client) configDir() string {
|
2015-04-27 04:05:27 +00:00
|
|
|
if cl.config.ConfigDir == "" {
|
2015-02-25 03:48:39 +00:00
|
|
|
return filepath.Join(os.Getenv("HOME"), ".config/torrent")
|
|
|
|
}
|
2015-04-27 04:05:27 +00:00
|
|
|
return cl.config.ConfigDir
|
2014-12-01 22:39:09 +00:00
|
|
|
}
|
|
|
|
|
2015-06-22 09:48:50 +00:00
|
|
|
// The directory where the Client expects to find and store configuration
|
|
|
|
// data. Defaults to $HOME/.config/torrent.
|
2014-12-03 07:07:50 +00:00
|
|
|
func (cl *Client) ConfigDir() string {
|
|
|
|
return cl.configDir()
|
|
|
|
}
|
|
|
|
|
2015-06-03 03:30:55 +00:00
|
|
|
// Creates a new client.
|
2014-08-21 08:07:06 +00:00
|
|
|
func NewClient(cfg *Config) (cl *Client, err error) {
|
|
|
|
if cfg == nil {
|
|
|
|
cfg = &Config{}
|
2013-10-14 14:39:12 +00:00
|
|
|
}
|
2014-08-21 08:07:06 +00:00
|
|
|
|
2015-04-01 03:30:22 +00:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
cl = nil
|
|
|
|
}
|
|
|
|
}()
|
2014-08-21 08:07:06 +00:00
|
|
|
cl = &Client{
|
2016-03-28 09:38:30 +00:00
|
|
|
halfOpenLimit: socketsPerTorrent,
|
|
|
|
config: *cfg,
|
|
|
|
defaultStorage: cfg.DefaultStorage,
|
2015-03-18 07:29:51 +00:00
|
|
|
dopplegangerAddrs: make(map[string]struct{}),
|
2016-04-04 03:01:31 +00:00
|
|
|
torrents: make(map[metainfo.Hash]*Torrent),
|
2014-08-21 08:07:06 +00:00
|
|
|
}
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(&cl.extensionBytes, defaultExtensionBytes)
|
2014-08-21 08:07:06 +00:00
|
|
|
cl.event.L = &cl.mu
|
2016-03-28 09:38:30 +00:00
|
|
|
if cl.defaultStorage == nil {
|
|
|
|
cl.defaultStorage = storage.NewFile(cfg.DataDir)
|
2015-02-25 04:41:13 +00:00
|
|
|
}
|
2015-08-03 15:07:22 +00:00
|
|
|
if cfg.IPBlocklist != nil {
|
|
|
|
cl.ipBlockList = cfg.IPBlocklist
|
2014-12-01 22:39:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 19:54:43 +00:00
|
|
|
if cfg.PeerID != "" {
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(&cl.peerID, cfg.PeerID)
|
2014-11-16 19:54:43 +00:00
|
|
|
} else {
|
2015-03-08 06:28:14 +00:00
|
|
|
o := copy(cl.peerID[:], bep20)
|
2014-11-16 19:54:43 +00:00
|
|
|
_, err = rand.Read(cl.peerID[o:])
|
|
|
|
if err != nil {
|
|
|
|
panic("error generating peer id")
|
|
|
|
}
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
2014-08-21 08:07:06 +00:00
|
|
|
|
2014-11-16 19:29:31 +00:00
|
|
|
// Returns the laddr string to listen on for the next Listen call.
|
|
|
|
listenAddr := func() string {
|
|
|
|
if addr := cl.ListenAddr(); addr != nil {
|
|
|
|
return addr.String()
|
|
|
|
}
|
2014-11-21 06:07:04 +00:00
|
|
|
if cfg.ListenAddr == "" {
|
2015-05-20 08:14:42 +00:00
|
|
|
return ":50007"
|
2014-11-21 06:07:04 +00:00
|
|
|
}
|
2014-11-16 19:29:31 +00:00
|
|
|
return cfg.ListenAddr
|
2014-05-21 07:40:54 +00:00
|
|
|
}
|
2015-04-27 04:05:27 +00:00
|
|
|
if !cl.config.DisableTCP {
|
2014-11-17 05:27:01 +00:00
|
|
|
var l net.Listener
|
2015-08-04 16:41:50 +00:00
|
|
|
l, err = net.Listen(func() string {
|
|
|
|
if cl.config.DisableIPv6 {
|
|
|
|
return "tcp4"
|
|
|
|
} else {
|
|
|
|
return "tcp"
|
|
|
|
}
|
|
|
|
}(), listenAddr())
|
2014-11-16 19:29:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cl.listeners = append(cl.listeners, l)
|
|
|
|
go cl.acceptConnections(l, false)
|
|
|
|
}
|
2015-04-27 04:05:27 +00:00
|
|
|
if !cl.config.DisableUTP {
|
2015-08-04 16:41:50 +00:00
|
|
|
cl.utpSock, err = utp.NewSocket(func() string {
|
|
|
|
if cl.config.DisableIPv6 {
|
|
|
|
return "udp4"
|
|
|
|
} else {
|
|
|
|
return "udp"
|
|
|
|
}
|
|
|
|
}(), listenAddr())
|
2014-11-16 19:29:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2015-01-10 13:16:19 +00:00
|
|
|
cl.listeners = append(cl.listeners, cl.utpSock)
|
|
|
|
go cl.acceptConnections(cl.utpSock, true)
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
2014-08-21 08:07:06 +00:00
|
|
|
if !cfg.NoDHT {
|
2014-11-28 18:13:08 +00:00
|
|
|
dhtCfg := cfg.DHTConfig
|
2015-08-03 14:43:46 +00:00
|
|
|
if dhtCfg.IPBlocklist == nil {
|
|
|
|
dhtCfg.IPBlocklist = cl.ipBlockList
|
2014-11-20 02:02:20 +00:00
|
|
|
}
|
2014-11-28 18:13:08 +00:00
|
|
|
if dhtCfg.Addr == "" {
|
|
|
|
dhtCfg.Addr = listenAddr()
|
2014-11-20 02:02:20 +00:00
|
|
|
}
|
2015-01-10 13:16:19 +00:00
|
|
|
if dhtCfg.Conn == nil && cl.utpSock != nil {
|
2015-10-03 14:02:14 +00:00
|
|
|
dhtCfg.Conn = cl.utpSock
|
2014-11-28 18:13:08 +00:00
|
|
|
}
|
2016-01-16 13:12:53 +00:00
|
|
|
cl.dHT, err = dht.NewServer(&dhtCfg)
|
2014-08-21 08:07:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
// Stops the client. All connections to peers are closed and all activity will
|
|
|
|
// come to a halt.
|
2015-03-08 06:28:14 +00:00
|
|
|
func (me *Client) Close() {
|
2014-04-08 16:36:05 +00:00
|
|
|
me.mu.Lock()
|
2015-02-09 13:21:50 +00:00
|
|
|
defer me.mu.Unlock()
|
2016-03-05 08:36:21 +00:00
|
|
|
me.closed.Set()
|
2015-08-03 15:15:09 +00:00
|
|
|
if me.dHT != nil {
|
|
|
|
me.dHT.Close()
|
|
|
|
}
|
2014-11-21 06:07:04 +00:00
|
|
|
for _, l := range me.listeners {
|
|
|
|
l.Close()
|
|
|
|
}
|
2014-03-18 11:39:33 +00:00
|
|
|
for _, t := range me.torrents {
|
2015-02-09 13:12:29 +00:00
|
|
|
t.close()
|
2014-03-18 11:39:33 +00:00
|
|
|
}
|
2015-08-03 15:15:09 +00:00
|
|
|
me.event.Broadcast()
|
2014-03-18 11:39:33 +00:00
|
|
|
}
|
|
|
|
|
2014-12-01 09:27:11 +00:00
|
|
|
var ipv6BlockRange = iplist.Range{Description: "non-IPv4 address"}
|
|
|
|
|
2015-10-18 13:00:26 +00:00
|
|
|
func (cl *Client) ipBlockRange(ip net.IP) (r iplist.Range, blocked bool) {
|
2014-11-29 01:41:53 +00:00
|
|
|
if cl.ipBlockList == nil {
|
2014-11-30 02:33:17 +00:00
|
|
|
return
|
2014-11-29 01:41:53 +00:00
|
|
|
}
|
2015-04-01 06:36:51 +00:00
|
|
|
ip4 := ip.To4()
|
2015-10-18 13:00:26 +00:00
|
|
|
// If blocklists are enabled, then block non-IPv4 addresses, because
|
|
|
|
// blocklists do not yet support IPv6.
|
2015-04-01 06:36:51 +00:00
|
|
|
if ip4 == nil {
|
2015-11-13 11:33:50 +00:00
|
|
|
if missinggo.CryHeard() {
|
|
|
|
log.Printf("blocking non-IPv4 address: %s", ip)
|
|
|
|
}
|
2015-10-18 13:00:26 +00:00
|
|
|
r = ipv6BlockRange
|
|
|
|
blocked = true
|
2014-12-01 09:27:11 +00:00
|
|
|
return
|
|
|
|
}
|
2015-10-18 13:00:26 +00:00
|
|
|
return cl.ipBlockList.Lookup(ip4)
|
2014-11-29 01:41:53 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 07:36:27 +00:00
|
|
|
func (cl *Client) waitAccept() {
|
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
|
|
|
for {
|
|
|
|
for _, t := range cl.torrents {
|
|
|
|
if cl.wantConns(t) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2016-03-05 08:36:21 +00:00
|
|
|
if cl.closed.IsSet() {
|
2015-08-03 15:15:09 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:36:27 +00:00
|
|
|
cl.event.Wait()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-16 19:29:31 +00:00
|
|
|
func (cl *Client) acceptConnections(l net.Listener, utp bool) {
|
2014-03-17 14:44:22 +00:00
|
|
|
for {
|
2015-03-18 07:36:27 +00:00
|
|
|
cl.waitAccept()
|
2014-11-16 19:29:31 +00:00
|
|
|
conn, err := l.Accept()
|
2016-03-06 06:26:04 +00:00
|
|
|
conn = pproffd.WrapNetConn(conn)
|
2016-03-05 08:36:21 +00:00
|
|
|
if cl.closed.IsSet() {
|
2014-07-03 15:44:15 +00:00
|
|
|
if conn != nil {
|
|
|
|
conn.Close()
|
|
|
|
}
|
2014-03-18 11:39:33 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-17 14:44:22 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
2016-03-05 08:36:21 +00:00
|
|
|
// I think something harsher should happen here? Our accept
|
|
|
|
// routine just fucked off.
|
2014-03-17 14:44:22 +00:00
|
|
|
return
|
|
|
|
}
|
2015-06-29 14:35:47 +00:00
|
|
|
if utp {
|
|
|
|
acceptUTP.Add(1)
|
|
|
|
} else {
|
|
|
|
acceptTCP.Add(1)
|
|
|
|
}
|
2014-11-29 01:41:53 +00:00
|
|
|
cl.mu.RLock()
|
2015-03-18 07:29:51 +00:00
|
|
|
doppleganger := cl.dopplegangerAddr(conn.RemoteAddr().String())
|
2016-03-30 08:11:55 +00:00
|
|
|
_, blocked := cl.ipBlockRange(missinggo.AddrIP(conn.RemoteAddr()))
|
2014-11-29 01:41:53 +00:00
|
|
|
cl.mu.RUnlock()
|
2015-10-18 13:00:26 +00:00
|
|
|
if blocked || doppleganger {
|
2015-06-29 14:35:47 +00:00
|
|
|
acceptReject.Add(1)
|
2015-03-12 09:04:44 +00:00
|
|
|
// log.Printf("inbound connection from %s blocked by %s", conn.RemoteAddr(), blockRange)
|
2014-12-26 06:18:36 +00:00
|
|
|
conn.Close()
|
2014-11-29 01:41:53 +00:00
|
|
|
continue
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
go cl.incomingConnection(conn, utp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) incomingConnection(nc net.Conn, utp bool) {
|
|
|
|
defer nc.Close()
|
|
|
|
if tc, ok := nc.(*net.TCPConn); ok {
|
|
|
|
tc.SetLinger(0)
|
|
|
|
}
|
|
|
|
c := newConnection()
|
|
|
|
c.conn = nc
|
|
|
|
c.rw = nc
|
|
|
|
c.Discovery = peerSourceIncoming
|
|
|
|
c.uTP = utp
|
|
|
|
err := cl.runReceivedConn(c)
|
|
|
|
if err != nil {
|
2015-03-25 06:28:34 +00:00
|
|
|
// log.Print(err)
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 23:52:01 +00:00
|
|
|
// Returns a handle to the given torrent, if it's present in the client.
|
2016-04-04 03:01:31 +00:00
|
|
|
func (cl *Client) Torrent(ih metainfo.Hash) (t *Torrent, ok bool) {
|
2015-03-18 07:28:13 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
2016-04-03 08:40:43 +00:00
|
|
|
t, ok = cl.torrents[ih]
|
2015-03-18 07:28:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-04 03:01:31 +00:00
|
|
|
func (me *Client) torrent(ih metainfo.Hash) *Torrent {
|
2015-03-08 06:28:14 +00:00
|
|
|
return me.torrents[ih]
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 05:27:01 +00:00
|
|
|
type dialResult struct {
|
2015-03-18 07:28:13 +00:00
|
|
|
Conn net.Conn
|
|
|
|
UTP bool
|
2014-11-17 05:27:01 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func doDial(dial func(addr string, t *Torrent) (net.Conn, error), ch chan dialResult, utp bool, addr string, t *Torrent) {
|
2015-03-18 07:28:13 +00:00
|
|
|
conn, err := dial(addr, t)
|
2014-11-18 00:04:33 +00:00
|
|
|
if err != nil {
|
2014-12-26 06:18:36 +00:00
|
|
|
if conn != nil {
|
|
|
|
conn.Close()
|
|
|
|
}
|
2014-11-18 00:04:33 +00:00
|
|
|
conn = nil // Pedantic
|
|
|
|
}
|
2014-11-17 05:27:01 +00:00
|
|
|
ch <- dialResult{conn, utp}
|
2014-11-17 07:44:06 +00:00
|
|
|
if err == nil {
|
|
|
|
successfulDials.Add(1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
unsuccessfulDials.Add(1)
|
2014-11-17 05:27:01 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 03:53:00 +00:00
|
|
|
func reducedDialTimeout(max time.Duration, halfOpenLimit int, pendingPeers int) (ret time.Duration) {
|
|
|
|
ret = max / time.Duration((pendingPeers+halfOpenLimit)/halfOpenLimit)
|
|
|
|
if ret < minDialTimeout {
|
|
|
|
ret = minDialTimeout
|
|
|
|
}
|
|
|
|
return
|
2014-11-18 00:04:09 +00:00
|
|
|
}
|
|
|
|
|
2015-09-17 02:54:03 +00:00
|
|
|
// Returns whether an address is known to connect to a client with our own ID.
|
2015-03-18 07:29:51 +00:00
|
|
|
func (me *Client) dopplegangerAddr(addr string) bool {
|
|
|
|
_, ok := me.dopplegangerAddrs[addr]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2014-07-22 11:45:12 +00:00
|
|
|
// Start the process of connecting to the given peer for the given torrent if
|
|
|
|
// appropriate.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) initiateConn(peer Peer, t *Torrent) {
|
2014-08-21 08:07:06 +00:00
|
|
|
if peer.Id == me.peerID {
|
2013-09-28 22:11:24 +00:00
|
|
|
return
|
|
|
|
}
|
2014-11-16 19:30:44 +00:00
|
|
|
addr := net.JoinHostPort(peer.IP.String(), fmt.Sprintf("%d", peer.Port))
|
2015-03-18 07:29:51 +00:00
|
|
|
if me.dopplegangerAddr(addr) || t.addrActive(addr) {
|
2014-11-16 19:30:44 +00:00
|
|
|
duplicateConnsAvoided.Add(1)
|
|
|
|
return
|
2014-08-27 23:35:13 +00:00
|
|
|
}
|
2015-10-18 13:00:26 +00:00
|
|
|
if r, ok := me.ipBlockRange(peer.IP); ok {
|
2014-11-30 02:33:17 +00:00
|
|
|
log.Printf("outbound connect to %s blocked by IP blocklist rule %s", peer.IP, r)
|
2014-11-29 01:41:53 +00:00
|
|
|
return
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
t.halfOpen[addr] = struct{}{}
|
2015-03-18 07:28:13 +00:00
|
|
|
go me.outgoingConnection(t, addr, peer.Source)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) dialTimeout(t *Torrent) time.Duration {
|
2015-03-30 12:10:37 +00:00
|
|
|
me.mu.Lock()
|
2016-04-03 06:50:53 +00:00
|
|
|
pendingPeers := len(t.peers)
|
2015-03-30 12:10:37 +00:00
|
|
|
me.mu.Unlock()
|
|
|
|
return reducedDialTimeout(nominalDialTimeout, me.halfOpenLimit, pendingPeers)
|
2015-03-18 07:28:13 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) dialTCP(addr string, t *Torrent) (c net.Conn, err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
c, err = net.DialTimeout("tcp", addr, me.dialTimeout(t))
|
|
|
|
if err == nil {
|
|
|
|
c.(*net.TCPConn).SetLinger(0)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) dialUTP(addr string, t *Torrent) (c net.Conn, err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
return me.utpSock.DialTimeout(addr, me.dialTimeout(t))
|
|
|
|
}
|
|
|
|
|
2015-08-01 18:04:42 +00:00
|
|
|
// Returns a connection over UTP or TCP, whichever is first to connect.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) dialFirst(addr string, t *Torrent) (conn net.Conn, utp bool) {
|
2015-03-18 07:28:13 +00:00
|
|
|
// Initiate connections via TCP and UTP simultaneously. Use the first one
|
|
|
|
// that succeeds.
|
|
|
|
left := 0
|
2015-04-27 04:05:27 +00:00
|
|
|
if !me.config.DisableUTP {
|
2015-03-18 07:28:13 +00:00
|
|
|
left++
|
|
|
|
}
|
2015-04-27 04:05:27 +00:00
|
|
|
if !me.config.DisableTCP {
|
2015-03-18 07:28:13 +00:00
|
|
|
left++
|
|
|
|
}
|
|
|
|
resCh := make(chan dialResult, left)
|
2015-04-27 04:05:27 +00:00
|
|
|
if !me.config.DisableUTP {
|
2015-03-18 07:28:13 +00:00
|
|
|
go doDial(me.dialUTP, resCh, true, addr, t)
|
|
|
|
}
|
2015-04-27 04:05:27 +00:00
|
|
|
if !me.config.DisableTCP {
|
2015-03-18 07:28:13 +00:00
|
|
|
go doDial(me.dialTCP, resCh, false, addr, t)
|
|
|
|
}
|
|
|
|
var res dialResult
|
|
|
|
// Wait for a successful connection.
|
|
|
|
for ; left > 0 && res.Conn == nil; left-- {
|
|
|
|
res = <-resCh
|
|
|
|
}
|
|
|
|
if left > 0 {
|
|
|
|
// There are still incompleted dials.
|
2014-04-03 12:16:59 +00:00
|
|
|
go func() {
|
2015-03-18 07:28:13 +00:00
|
|
|
for ; left > 0; left-- {
|
|
|
|
conn := (<-resCh).Conn
|
|
|
|
if conn != nil {
|
|
|
|
conn.Close()
|
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
}()
|
2015-03-18 07:28:13 +00:00
|
|
|
}
|
|
|
|
conn = res.Conn
|
|
|
|
utp = res.UTP
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) noLongerHalfOpen(t *Torrent, addr string) {
|
2016-04-03 06:50:53 +00:00
|
|
|
if _, ok := t.halfOpen[addr]; !ok {
|
2015-03-18 07:28:13 +00:00
|
|
|
panic("invariant broken")
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
delete(t.halfOpen, addr)
|
2015-03-18 07:28:13 +00:00
|
|
|
me.openNewConns(t)
|
|
|
|
}
|
|
|
|
|
2016-03-02 12:27:46 +00:00
|
|
|
// Performs initiator handshakes and returns a connection. Returns nil
|
|
|
|
// *connection if no connection for valid reasons.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) handshakesConnection(nc net.Conn, t *Torrent, encrypted, utp bool) (c *connection, err error) {
|
2015-08-01 18:04:42 +00:00
|
|
|
c = newConnection()
|
|
|
|
c.conn = nc
|
|
|
|
c.rw = nc
|
|
|
|
c.encrypted = encrypted
|
|
|
|
c.uTP = utp
|
|
|
|
err = nc.SetDeadline(time.Now().Add(handshakesTimeout))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ok, err := me.initiateHandshakes(c, t)
|
|
|
|
if !ok {
|
|
|
|
c = nil
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-18 07:28:13 +00:00
|
|
|
// Returns nil connection and nil error if no connection could be established
|
|
|
|
// for valid reasons.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) establishOutgoingConn(t *Torrent, addr string) (c *connection, err error) {
|
2015-08-01 18:04:42 +00:00
|
|
|
nc, utp := me.dialFirst(addr, t)
|
2015-03-18 07:28:13 +00:00
|
|
|
if nc == nil {
|
|
|
|
return
|
|
|
|
}
|
2015-08-01 18:04:42 +00:00
|
|
|
c, err = me.handshakesConnection(nc, t, !me.config.DisableEncryption, utp)
|
2015-03-18 07:28:13 +00:00
|
|
|
if err != nil {
|
|
|
|
nc.Close()
|
|
|
|
return
|
|
|
|
} else if c != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
nc.Close()
|
2015-06-08 08:16:01 +00:00
|
|
|
if me.config.DisableEncryption {
|
|
|
|
// We already tried without encryption.
|
|
|
|
return
|
|
|
|
}
|
2015-08-01 17:53:37 +00:00
|
|
|
// Try again without encryption, using whichever protocol type worked last
|
|
|
|
// time.
|
2015-03-18 07:28:13 +00:00
|
|
|
if utp {
|
|
|
|
nc, err = me.dialUTP(addr, t)
|
|
|
|
} else {
|
|
|
|
nc, err = me.dialTCP(addr, t)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("error dialing for unencrypted connection: %s", err)
|
|
|
|
return
|
|
|
|
}
|
2015-08-01 18:04:42 +00:00
|
|
|
c, err = me.handshakesConnection(nc, t, false, utp)
|
2016-03-02 12:27:46 +00:00
|
|
|
if err != nil || c == nil {
|
2015-03-18 07:28:13 +00:00
|
|
|
nc.Close()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2014-11-17 05:27:01 +00:00
|
|
|
|
2015-03-18 07:28:13 +00:00
|
|
|
// Called to dial out and run a connection. The addr we're given is already
|
|
|
|
// considered half-open.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) outgoingConnection(t *Torrent, addr string, ps peerSource) {
|
2015-03-18 07:28:13 +00:00
|
|
|
c, err := me.establishOutgoingConn(t, addr)
|
|
|
|
me.mu.Lock()
|
|
|
|
defer me.mu.Unlock()
|
|
|
|
// Don't release lock between here and addConnection, unless it's for
|
|
|
|
// failure.
|
|
|
|
me.noLongerHalfOpen(t, addr)
|
|
|
|
if err != nil {
|
2016-03-22 02:10:18 +00:00
|
|
|
if me.config.Debug {
|
|
|
|
log.Printf("error establishing outgoing connection: %s", err)
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if c == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer c.Close()
|
|
|
|
c.Discovery = ps
|
|
|
|
err = me.runInitiatedHandshookConn(c, t)
|
|
|
|
if err != nil {
|
2016-03-22 02:10:18 +00:00
|
|
|
if me.config.Debug {
|
|
|
|
log.Printf("error in established outgoing connection: %s", err)
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
}
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 19:16:26 +00:00
|
|
|
// The port number for incoming peer connections. 0 if the client isn't
|
|
|
|
// listening.
|
2014-06-29 08:57:49 +00:00
|
|
|
func (cl *Client) incomingPeerPort() int {
|
2014-11-16 19:16:26 +00:00
|
|
|
listenAddr := cl.ListenAddr()
|
|
|
|
if listenAddr == nil {
|
2014-06-29 08:57:49 +00:00
|
|
|
return 0
|
|
|
|
}
|
2016-03-21 05:02:36 +00:00
|
|
|
return missinggo.AddrPort(listenAddr)
|
2014-06-29 08:57:49 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 19:16:26 +00:00
|
|
|
// Convert a net.Addr to its compact IP representation. Either 4 or 16 bytes
|
|
|
|
// per "yourip" field of http://www.bittorrent.org/beps/bep_0010.html.
|
2014-07-22 11:45:12 +00:00
|
|
|
func addrCompactIP(addr net.Addr) (string, error) {
|
2014-11-16 19:16:26 +00:00
|
|
|
host, _, err := net.SplitHostPort(addr.String())
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
ip := net.ParseIP(host)
|
|
|
|
if v4 := ip.To4(); v4 != nil {
|
|
|
|
if len(v4) != 4 {
|
|
|
|
panic(v4)
|
2014-07-22 11:45:12 +00:00
|
|
|
}
|
2014-11-16 19:16:26 +00:00
|
|
|
return string(v4), nil
|
2014-07-22 11:45:12 +00:00
|
|
|
}
|
2014-11-16 19:16:26 +00:00
|
|
|
return string(ip.To16()), nil
|
2014-07-22 11:45:12 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 19:21:13 +00:00
|
|
|
func handshakeWriter(w io.Writer, bb <-chan []byte, done chan<- error) {
|
2014-08-21 08:12:49 +00:00
|
|
|
var err error
|
|
|
|
for b := range bb {
|
|
|
|
_, err = w.Write(b)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
done <- err
|
|
|
|
}
|
|
|
|
|
2015-03-12 09:04:44 +00:00
|
|
|
type (
|
|
|
|
peerExtensionBytes [8]byte
|
|
|
|
peerID [20]byte
|
|
|
|
)
|
2014-08-21 08:12:49 +00:00
|
|
|
|
2015-03-12 19:21:13 +00:00
|
|
|
func (me *peerExtensionBytes) SupportsExtended() bool {
|
|
|
|
return me[5]&0x10 != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *peerExtensionBytes) SupportsDHT() bool {
|
|
|
|
return me[7]&0x01 != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *peerExtensionBytes) SupportsFast() bool {
|
|
|
|
return me[7]&0x04 != 0
|
|
|
|
}
|
|
|
|
|
2014-08-21 08:12:49 +00:00
|
|
|
type handshakeResult struct {
|
|
|
|
peerExtensionBytes
|
|
|
|
peerID
|
2016-04-04 03:01:31 +00:00
|
|
|
metainfo.Hash
|
2014-08-21 08:12:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-09 13:16:01 +00:00
|
|
|
// ih is nil if we expect the peer to declare the InfoHash, such as when the
|
|
|
|
// peer initiated the connection. Returns ok if the handshake was successful,
|
|
|
|
// and err if there was an unexpected condition other than the peer simply
|
|
|
|
// abandoning the handshake.
|
2016-04-04 03:01:31 +00:00
|
|
|
func handshake(sock io.ReadWriter, ih *metainfo.Hash, peerID [20]byte, extensions peerExtensionBytes) (res handshakeResult, ok bool, err error) {
|
2014-08-21 08:12:49 +00:00
|
|
|
// Bytes to be sent to the peer. Should never block the sender.
|
|
|
|
postCh := make(chan []byte, 4)
|
|
|
|
// A single error value sent when the writer completes.
|
|
|
|
writeDone := make(chan error, 1)
|
|
|
|
// Performs writes to the socket and ensures posts don't block.
|
|
|
|
go handshakeWriter(sock, postCh, writeDone)
|
|
|
|
|
2014-03-20 11:01:56 +00:00
|
|
|
defer func() {
|
2014-08-21 08:12:49 +00:00
|
|
|
close(postCh) // Done writing.
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
// Wait until writes complete before returning from handshake.
|
|
|
|
err = <-writeDone
|
|
|
|
if err != nil {
|
2015-03-18 07:28:13 +00:00
|
|
|
err = fmt.Errorf("error writing: %s", err)
|
2014-08-21 08:12:49 +00:00
|
|
|
}
|
2014-03-20 11:01:56 +00:00
|
|
|
}()
|
2014-08-21 08:12:49 +00:00
|
|
|
|
|
|
|
post := func(bb []byte) {
|
|
|
|
select {
|
|
|
|
case postCh <- bb:
|
|
|
|
default:
|
|
|
|
panic("mustn't block while posting")
|
|
|
|
}
|
2014-03-20 13:14:17 +00:00
|
|
|
}
|
2014-08-21 08:12:49 +00:00
|
|
|
|
|
|
|
post([]byte(pp.Protocol))
|
2015-03-12 19:21:13 +00:00
|
|
|
post(extensions[:])
|
2014-08-21 08:12:49 +00:00
|
|
|
if ih != nil { // We already know what we want.
|
|
|
|
post(ih[:])
|
|
|
|
post(peerID[:])
|
|
|
|
}
|
|
|
|
var b [68]byte
|
|
|
|
_, err = io.ReadFull(sock, b[:68])
|
2013-10-20 14:07:01 +00:00
|
|
|
if err != nil {
|
2014-08-21 08:12:49 +00:00
|
|
|
err = nil
|
2013-10-14 14:39:12 +00:00
|
|
|
return
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
2014-05-21 08:01:58 +00:00
|
|
|
if string(b[:20]) != pp.Protocol {
|
2013-09-29 06:45:17 +00:00
|
|
|
return
|
|
|
|
}
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(&res.peerExtensionBytes, b[20:28])
|
2016-04-04 03:01:31 +00:00
|
|
|
missinggo.CopyExact(&res.Hash, b[28:48])
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(&res.peerID, b[48:68])
|
2015-03-12 09:06:23 +00:00
|
|
|
peerExtensions.Add(hex.EncodeToString(res.peerExtensionBytes[:]), 1)
|
2014-08-21 08:12:49 +00:00
|
|
|
|
2015-03-12 09:06:23 +00:00
|
|
|
// TODO: Maybe we can just drop peers here if we're not interested. This
|
|
|
|
// could prevent them trying to reconnect, falsely believing there was
|
|
|
|
// just a problem.
|
2014-08-21 08:12:49 +00:00
|
|
|
if ih == nil { // We were waiting for the peer to tell us what they wanted.
|
2016-04-04 03:01:31 +00:00
|
|
|
post(res.Hash[:])
|
2014-08-21 08:12:49 +00:00
|
|
|
post(peerID[:])
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
2014-08-21 08:12:49 +00:00
|
|
|
|
|
|
|
ok = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-21 03:58:28 +00:00
|
|
|
// Wraps a raw connection and provides the interface we want for using the
|
|
|
|
// connection in the message loop.
|
2015-03-18 07:28:13 +00:00
|
|
|
type deadlineReader struct {
|
|
|
|
nc net.Conn
|
|
|
|
r io.Reader
|
2014-08-27 23:45:20 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 07:28:13 +00:00
|
|
|
func (me deadlineReader) Read(b []byte) (n int, err error) {
|
2014-11-20 02:02:20 +00:00
|
|
|
// Keep-alives should be received every 2 mins. Give a bit of gracetime.
|
2015-03-18 07:28:13 +00:00
|
|
|
err = me.nc.SetReadDeadline(time.Now().Add(150 * time.Second))
|
2014-08-27 23:45:20 +00:00
|
|
|
if err != nil {
|
2015-01-21 13:42:13 +00:00
|
|
|
err = fmt.Errorf("error setting read deadline: %s", err)
|
2014-08-27 23:45:20 +00:00
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
n, err = me.r.Read(b)
|
2015-02-21 03:58:28 +00:00
|
|
|
// Convert common errors into io.EOF.
|
2015-03-18 07:28:13 +00:00
|
|
|
// if err != nil {
|
|
|
|
// if opError, ok := err.(*net.OpError); ok && opError.Op == "read" && opError.Err == syscall.ECONNRESET {
|
|
|
|
// err = io.EOF
|
|
|
|
// } else if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
|
|
|
|
// if n != 0 {
|
|
|
|
// panic(n)
|
|
|
|
// }
|
|
|
|
// err = io.EOF
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type readWriter struct {
|
|
|
|
io.Reader
|
|
|
|
io.Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
func maybeReceiveEncryptedHandshake(rw io.ReadWriter, skeys [][]byte) (ret io.ReadWriter, encrypted bool, err error) {
|
|
|
|
var protocol [len(pp.Protocol)]byte
|
|
|
|
_, err = io.ReadFull(rw, protocol[:])
|
2014-09-13 17:45:38 +00:00
|
|
|
if err != nil {
|
2015-03-18 07:28:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ret = readWriter{
|
|
|
|
io.MultiReader(bytes.NewReader(protocol[:]), rw),
|
|
|
|
rw,
|
|
|
|
}
|
|
|
|
if string(protocol[:]) == pp.Protocol {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
encrypted = true
|
|
|
|
ret, err = mse.ReceiveHandshake(ret, skeys)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) receiveSkeys() (ret [][]byte) {
|
|
|
|
for ih := range cl.torrents {
|
|
|
|
ret = append(ret, ih[:])
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) initiateHandshakes(c *connection, t *Torrent) (ok bool, err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
if c.encrypted {
|
2016-04-03 08:40:43 +00:00
|
|
|
c.rw, err = mse.InitiateHandshake(c.rw, t.infoHash[:], nil)
|
2015-03-18 07:28:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
2014-09-13 17:45:38 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
ih, ok, err := me.connBTHandshake(c, &t.infoHash)
|
|
|
|
if ih != t.infoHash {
|
2015-03-18 07:28:13 +00:00
|
|
|
ok = false
|
|
|
|
}
|
2014-08-27 23:45:20 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-27 04:37:58 +00:00
|
|
|
// Do encryption and bittorrent handshakes as receiver.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) receiveHandshakes(c *connection) (t *Torrent, err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
skeys := cl.receiveSkeys()
|
|
|
|
cl.mu.Unlock()
|
2015-04-20 07:30:22 +00:00
|
|
|
if !cl.config.DisableEncryption {
|
|
|
|
c.rw, c.encrypted, err = maybeReceiveEncryptedHandshake(c.rw, skeys)
|
|
|
|
if err != nil {
|
|
|
|
if err == mse.ErrNoSecretKeyMatch {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return
|
2015-03-18 07:28:13 +00:00
|
|
|
}
|
2014-08-28 00:06:57 +00:00
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
ih, ok, err := cl.connBTHandshake(c, nil)
|
2015-02-09 13:17:59 +00:00
|
|
|
if err != nil {
|
2015-06-28 06:39:04 +00:00
|
|
|
err = fmt.Errorf("error during bt handshake: %s", err)
|
2015-02-09 13:17:59 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
2015-03-12 19:21:13 +00:00
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
t = cl.torrents[ih]
|
|
|
|
cl.mu.Unlock()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns !ok if handshake failed for valid reasons.
|
2016-04-04 03:01:31 +00:00
|
|
|
func (cl *Client) connBTHandshake(c *connection, ih *metainfo.Hash) (ret metainfo.Hash, ok bool, err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
res, ok, err := handshake(c.rw, ih, cl.peerID, cl.extensionBytes)
|
|
|
|
if err != nil || !ok {
|
2015-03-12 19:21:13 +00:00
|
|
|
return
|
|
|
|
}
|
2016-04-04 03:01:31 +00:00
|
|
|
ret = res.Hash
|
2015-03-18 07:28:13 +00:00
|
|
|
c.PeerExtensionBytes = res.peerExtensionBytes
|
|
|
|
c.PeerID = res.peerID
|
|
|
|
c.completedHandshake = time.Now()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) runInitiatedHandshookConn(c *connection, t *Torrent) (err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
if c.PeerID == cl.peerID {
|
|
|
|
// Only if we initiated the connection is the remote address a
|
|
|
|
// listen addr for a doppleganger.
|
|
|
|
connsToSelf.Add(1)
|
|
|
|
addr := c.conn.RemoteAddr().String()
|
|
|
|
cl.dopplegangerAddrs[addr] = struct{}{}
|
|
|
|
return
|
2014-08-27 23:45:20 +00:00
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
return cl.runHandshookConn(c, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) runReceivedConn(c *connection) (err error) {
|
|
|
|
err = c.conn.SetDeadline(time.Now().Add(handshakesTimeout))
|
2014-08-21 08:12:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
t, err := cl.receiveHandshakes(c)
|
|
|
|
if err != nil {
|
2015-03-27 04:37:58 +00:00
|
|
|
err = fmt.Errorf("error receiving handshakes: %s", err)
|
2014-08-21 08:12:49 +00:00
|
|
|
return
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
if t == nil {
|
2014-11-16 19:54:00 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
|
|
|
if c.PeerID == cl.peerID {
|
2014-08-21 08:12:49 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
return cl.runHandshookConn(c, t)
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) runHandshookConn(c *connection, t *Torrent) (err error) {
|
2015-03-18 07:28:13 +00:00
|
|
|
c.conn.SetWriteDeadline(time.Time{})
|
|
|
|
c.rw = readWriter{
|
|
|
|
deadlineReader{c.conn, c.rw},
|
|
|
|
c.rw,
|
|
|
|
}
|
2015-08-01 18:06:22 +00:00
|
|
|
completedHandshakeConnectionFlags.Add(c.connectionFlags(), 1)
|
2015-03-18 07:28:13 +00:00
|
|
|
if !cl.addConnection(t, c) {
|
2014-03-16 15:30:10 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
defer cl.dropConnection(t, c)
|
|
|
|
go c.writer()
|
|
|
|
go c.writeOptimizer(time.Minute)
|
|
|
|
cl.sendInitialMessages(c, t)
|
|
|
|
err = cl.connectionLoop(t, c)
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("error during connection loop: %s", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) sendInitialMessages(conn *connection, torrent *Torrent) {
|
2015-03-12 19:21:13 +00:00
|
|
|
if conn.PeerExtensionBytes.SupportsExtended() && me.extensionBytes.SupportsExtended() {
|
2014-06-26 14:57:07 +00:00
|
|
|
conn.Post(pp.Message{
|
|
|
|
Type: pp.Extended,
|
|
|
|
ExtendedID: pp.HandshakeExtendedID,
|
|
|
|
ExtendedPayload: func() []byte {
|
2014-06-28 09:38:31 +00:00
|
|
|
d := map[string]interface{}{
|
2015-03-25 04:49:27 +00:00
|
|
|
"m": func() (ret map[string]int) {
|
|
|
|
ret = make(map[string]int, 2)
|
|
|
|
ret["ut_metadata"] = metadataExtendedId
|
|
|
|
if !me.config.DisablePEX {
|
|
|
|
ret["ut_pex"] = pexExtendedId
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}(),
|
2015-03-25 04:42:14 +00:00
|
|
|
"v": extendedHandshakeClientVersion,
|
2014-08-25 12:12:50 +00:00
|
|
|
// No upload queue is implemented yet.
|
2015-05-14 22:39:53 +00:00
|
|
|
"reqq": 64,
|
2015-04-20 07:30:22 +00:00
|
|
|
}
|
|
|
|
if !me.config.DisableEncryption {
|
|
|
|
d["e"] = 1
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
if torrent.metadataSizeKnown() {
|
|
|
|
d["metadata_size"] = torrent.metadataSize()
|
|
|
|
}
|
2014-06-29 08:57:49 +00:00
|
|
|
if p := me.incomingPeerPort(); p != 0 {
|
|
|
|
d["p"] = p
|
|
|
|
}
|
2015-03-12 19:21:13 +00:00
|
|
|
yourip, err := addrCompactIP(conn.remoteAddr())
|
2014-07-22 11:45:12 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("error calculating yourip field value in extension handshake: %s", err)
|
|
|
|
} else {
|
|
|
|
d["yourip"] = yourip
|
|
|
|
}
|
2014-07-24 03:43:45 +00:00
|
|
|
// log.Printf("sending %v", d)
|
2014-06-28 09:38:31 +00:00
|
|
|
b, err := bencode.Marshal(d)
|
2014-06-26 14:57:07 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}(),
|
|
|
|
})
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
if torrent.haveAnyPieces() {
|
2016-01-04 11:37:49 +00:00
|
|
|
conn.Bitfield(torrent.bitfield())
|
2015-03-12 19:21:13 +00:00
|
|
|
} else if me.extensionBytes.SupportsFast() && conn.PeerExtensionBytes.SupportsFast() {
|
|
|
|
conn.Post(pp.Message{
|
|
|
|
Type: pp.HaveNone,
|
|
|
|
})
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
2015-03-12 19:21:13 +00:00
|
|
|
if conn.PeerExtensionBytes.SupportsDHT() && me.extensionBytes.SupportsDHT() && me.dHT != nil {
|
2014-08-25 12:12:16 +00:00
|
|
|
conn.Post(pp.Message{
|
|
|
|
Type: pp.Port,
|
2016-03-30 08:11:55 +00:00
|
|
|
Port: uint16(missinggo.AddrPort(me.dHT.Addr())),
|
2014-08-25 12:12:16 +00:00
|
|
|
})
|
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) peerUnchoked(torrent *Torrent, conn *connection) {
|
2016-01-24 04:21:17 +00:00
|
|
|
conn.updateRequests()
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) connCancel(t *Torrent, cn *connection, r request) (ok bool) {
|
2014-05-23 11:01:05 +00:00
|
|
|
ok = cn.Cancel(r)
|
|
|
|
if ok {
|
2014-08-23 17:10:47 +00:00
|
|
|
postedCancels.Add(1)
|
2014-05-23 11:01:05 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) connDeleteRequest(t *Torrent, cn *connection, r request) bool {
|
2014-05-23 11:01:05 +00:00
|
|
|
if !cn.RequestPending(r) {
|
2015-06-22 09:48:30 +00:00
|
|
|
return false
|
2014-05-23 11:01:05 +00:00
|
|
|
}
|
|
|
|
delete(cn.Requests, r)
|
2015-06-22 09:48:30 +00:00
|
|
|
return true
|
2014-05-23 11:01:05 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) requestPendingMetadata(t *Torrent, c *connection) {
|
2014-06-27 08:57:35 +00:00
|
|
|
if t.haveInfo() {
|
|
|
|
return
|
|
|
|
}
|
2015-03-27 04:36:59 +00:00
|
|
|
if c.PeerExtensionIDs["ut_metadata"] == 0 {
|
|
|
|
// Peer doesn't support this.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Request metadata pieces that we don't have in a random order.
|
2014-06-26 14:57:07 +00:00
|
|
|
var pending []int
|
2015-02-25 04:42:47 +00:00
|
|
|
for index := 0; index < t.metadataPieceCount(); index++ {
|
2015-03-27 04:36:59 +00:00
|
|
|
if !t.haveMetadataPiece(index) && !c.requestedMetadataPiece(index) {
|
2014-06-26 14:57:07 +00:00
|
|
|
pending = append(pending, index)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, i := range mathRand.Perm(len(pending)) {
|
2015-03-27 04:36:59 +00:00
|
|
|
c.requestMetadataPiece(pending[i])
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) completedMetadata(t *Torrent) {
|
2014-06-28 09:38:31 +00:00
|
|
|
h := sha1.New()
|
2016-04-03 06:50:53 +00:00
|
|
|
h.Write(t.metadataBytes)
|
2016-04-04 03:01:31 +00:00
|
|
|
var ih metainfo.Hash
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(&ih, h.Sum(nil))
|
2016-04-03 08:40:43 +00:00
|
|
|
if ih != t.infoHash {
|
2014-06-28 09:38:31 +00:00
|
|
|
log.Print("bad metadata")
|
2015-02-25 04:42:47 +00:00
|
|
|
t.invalidateMetadata()
|
2014-06-28 09:38:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
var info metainfo.Info
|
2016-04-03 06:50:53 +00:00
|
|
|
err := bencode.Unmarshal(t.metadataBytes, &info)
|
2014-06-28 09:38:31 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("error unmarshalling metadata: %s", err)
|
2015-02-25 04:42:47 +00:00
|
|
|
t.invalidateMetadata()
|
2014-06-28 09:38:31 +00:00
|
|
|
return
|
|
|
|
}
|
2014-07-14 13:12:52 +00:00
|
|
|
// TODO(anacrolix): If this fails, I think something harsher should be
|
|
|
|
// done.
|
2016-04-03 06:50:53 +00:00
|
|
|
err = cl.setMetaData(t, &info, t.metadataBytes)
|
2014-06-29 05:45:21 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("error setting metadata: %s", err)
|
2015-02-25 04:42:47 +00:00
|
|
|
t.invalidateMetadata()
|
2014-06-29 05:45:21 +00:00
|
|
|
return
|
|
|
|
}
|
2015-09-17 02:40:35 +00:00
|
|
|
if cl.config.Debug {
|
|
|
|
log.Printf("%s: got metadata from peers", t)
|
|
|
|
}
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
|
2014-08-21 08:12:49 +00:00
|
|
|
// Process incoming ut_metadata message.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) gotMetadataExtensionMsg(payload []byte, t *Torrent, c *connection) (err error) {
|
2014-06-28 09:38:31 +00:00
|
|
|
var d map[string]int
|
|
|
|
err = bencode.Unmarshal(payload, &d)
|
|
|
|
if err != nil {
|
2014-06-30 14:05:28 +00:00
|
|
|
err = fmt.Errorf("error unmarshalling payload: %s: %q", err, payload)
|
2014-06-28 09:38:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
msgType, ok := d["msg_type"]
|
|
|
|
if !ok {
|
|
|
|
err = errors.New("missing msg_type field")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
piece := d["piece"]
|
|
|
|
switch msgType {
|
|
|
|
case pp.DataMetadataExtensionMsgType:
|
|
|
|
if t.haveInfo() {
|
|
|
|
break
|
|
|
|
}
|
2014-11-19 03:57:27 +00:00
|
|
|
begin := len(payload) - metadataPieceSize(d["total_size"], piece)
|
|
|
|
if begin < 0 || begin >= len(payload) {
|
|
|
|
log.Printf("got bad metadata piece")
|
|
|
|
break
|
|
|
|
}
|
2015-03-27 04:36:59 +00:00
|
|
|
if !c.requestedMetadataPiece(piece) {
|
|
|
|
log.Printf("got unexpected metadata piece %d", piece)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
c.metadataRequests[piece] = false
|
2015-03-19 23:52:01 +00:00
|
|
|
t.saveMetadataPiece(piece, payload[begin:])
|
2014-12-01 09:32:17 +00:00
|
|
|
c.UsefulChunksReceived++
|
|
|
|
c.lastUsefulChunkReceived = time.Now()
|
2015-02-25 04:42:47 +00:00
|
|
|
if !t.haveAllMetadataPieces() {
|
2014-06-28 09:38:31 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
cl.completedMetadata(t)
|
|
|
|
case pp.RequestMetadataExtensionMsgType:
|
2015-02-25 04:42:47 +00:00
|
|
|
if !t.haveMetadataPiece(piece) {
|
|
|
|
c.Post(t.newMetadataExtensionMessage(c, pp.RejectMetadataExtensionMsgType, d["piece"], nil))
|
2014-06-28 09:38:31 +00:00
|
|
|
break
|
|
|
|
}
|
2014-08-21 08:12:49 +00:00
|
|
|
start := (1 << 14) * piece
|
2016-04-03 06:50:53 +00:00
|
|
|
c.Post(t.newMetadataExtensionMessage(c, pp.DataMetadataExtensionMsgType, piece, t.metadataBytes[start:start+t.metadataPieceSize(piece)]))
|
2014-06-28 09:38:31 +00:00
|
|
|
case pp.RejectMetadataExtensionMsgType:
|
|
|
|
default:
|
|
|
|
err = errors.New("unknown msg_type value")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) upload(t *Torrent, c *connection) {
|
2015-06-16 06:57:47 +00:00
|
|
|
if me.config.NoUpload {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !c.PeerInterested {
|
|
|
|
return
|
|
|
|
}
|
2015-07-15 05:29:53 +00:00
|
|
|
seeding := me.seeding(t)
|
|
|
|
if !seeding && !t.connHasWantedPieces(c) {
|
2015-06-16 06:57:47 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
another:
|
2015-07-15 05:29:53 +00:00
|
|
|
for seeding || c.chunksSent < c.UsefulChunksReceived+6 {
|
2015-06-16 06:57:47 +00:00
|
|
|
c.Unchoke()
|
|
|
|
for r := range c.PeerRequests {
|
|
|
|
err := me.sendChunk(t, c, r)
|
|
|
|
if err != nil {
|
2016-02-26 11:12:13 +00:00
|
|
|
if t.pieceComplete(int(r.Index)) && err == io.ErrUnexpectedEOF {
|
|
|
|
// We had the piece, but not anymore.
|
|
|
|
} else {
|
|
|
|
log.Printf("error sending chunk %+v to peer: %s", r, err)
|
|
|
|
}
|
2016-02-21 06:22:55 +00:00
|
|
|
// If we failed to send a chunk, choke the peer to ensure they
|
|
|
|
// flush all their requests. We've probably dropped a piece,
|
|
|
|
// but there's no way to communicate this to the peer. If they
|
|
|
|
// ask for it again, we'll kick them to allow us to send them
|
|
|
|
// an updated bitfield.
|
|
|
|
break another
|
2015-06-16 06:57:47 +00:00
|
|
|
}
|
|
|
|
delete(c.PeerRequests, r)
|
|
|
|
goto another
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Choke()
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) sendChunk(t *Torrent, c *connection, r request) error {
|
2015-09-17 02:50:29 +00:00
|
|
|
// Count the chunk being sent, even if it isn't.
|
2015-06-16 06:57:47 +00:00
|
|
|
b := make([]byte, r.Length)
|
2016-04-03 06:50:53 +00:00
|
|
|
p := t.info.Piece(int(r.Index))
|
2016-02-20 16:32:59 +00:00
|
|
|
n, err := t.readAt(b, p.Offset()+int64(r.Begin))
|
2015-06-16 06:57:47 +00:00
|
|
|
if n != len(b) {
|
2016-02-20 03:40:28 +00:00
|
|
|
if err == nil {
|
|
|
|
panic("expected error")
|
|
|
|
}
|
|
|
|
return err
|
2015-06-16 06:57:47 +00:00
|
|
|
}
|
|
|
|
c.Post(pp.Message{
|
|
|
|
Type: pp.Piece,
|
|
|
|
Index: r.Index,
|
|
|
|
Begin: r.Begin,
|
|
|
|
Piece: b,
|
|
|
|
})
|
2016-02-21 06:22:55 +00:00
|
|
|
c.chunksSent++
|
2015-06-16 06:57:47 +00:00
|
|
|
uploadChunksPosted.Add(1)
|
|
|
|
c.lastChunkSent = time.Now()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-07-24 03:43:45 +00:00
|
|
|
// Processes incoming bittorrent messages. The client lock is held upon entry
|
|
|
|
// and exit.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) connectionLoop(t *Torrent, c *connection) error {
|
2014-05-21 08:01:58 +00:00
|
|
|
decoder := pp.Decoder{
|
2015-03-12 19:21:13 +00:00
|
|
|
R: bufio.NewReader(c.rw),
|
2013-09-30 11:51:08 +00:00
|
|
|
MaxLength: 256 * 1024,
|
|
|
|
}
|
|
|
|
for {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Unlock()
|
2014-05-21 08:01:58 +00:00
|
|
|
var msg pp.Message
|
2014-05-21 07:48:44 +00:00
|
|
|
err := decoder.Decode(&msg)
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
2016-03-05 08:36:21 +00:00
|
|
|
if me.closed.IsSet() || c.closed.IsSet() || err == io.EOF {
|
2014-06-26 08:06:33 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-02-04 14:17:06 +00:00
|
|
|
c.lastMessageReceived = time.Now()
|
2013-09-30 11:51:08 +00:00
|
|
|
if msg.Keepalive {
|
2016-02-04 14:17:06 +00:00
|
|
|
receivedKeepalives.Add(1)
|
2013-09-30 11:51:08 +00:00
|
|
|
continue
|
|
|
|
}
|
2016-02-04 14:17:06 +00:00
|
|
|
receivedMessageTypes.Add(strconv.FormatInt(int64(msg.Type), 10), 1)
|
2013-10-20 14:07:01 +00:00
|
|
|
switch msg.Type {
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Choke:
|
2014-05-21 07:55:50 +00:00
|
|
|
c.PeerChoked = true
|
2016-02-08 10:39:15 +00:00
|
|
|
c.Requests = nil
|
2014-12-30 12:58:38 +00:00
|
|
|
// We can then reset our interest.
|
2016-01-24 04:21:17 +00:00
|
|
|
c.updateRequests()
|
2015-03-12 09:06:23 +00:00
|
|
|
case pp.Reject:
|
|
|
|
me.connDeleteRequest(t, c, newRequest(msg.Index, msg.Begin, msg.Length))
|
2016-01-24 04:21:17 +00:00
|
|
|
c.updateRequests()
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Unchoke:
|
2014-05-21 07:55:50 +00:00
|
|
|
c.PeerChoked = false
|
|
|
|
me.peerUnchoked(t, c)
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Interested:
|
2014-05-21 07:55:50 +00:00
|
|
|
c.PeerInterested = true
|
2015-06-16 06:57:47 +00:00
|
|
|
me.upload(t, c)
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.NotInterested:
|
2014-05-21 07:55:50 +00:00
|
|
|
c.PeerInterested = false
|
|
|
|
c.Choke()
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Have:
|
2016-03-22 01:07:03 +00:00
|
|
|
err = c.peerSentHave(int(msg.Index))
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Request:
|
2015-06-02 14:03:43 +00:00
|
|
|
if c.Choked {
|
2014-08-24 20:00:29 +00:00
|
|
|
break
|
|
|
|
}
|
2015-06-16 06:57:47 +00:00
|
|
|
if !c.PeerInterested {
|
|
|
|
err = errors.New("peer sent request but isn't interested")
|
|
|
|
break
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
2016-02-21 06:22:55 +00:00
|
|
|
if !t.havePiece(msg.Index.Int()) {
|
|
|
|
// This isn't necessarily them screwing up. We can drop pieces
|
|
|
|
// from our storage, and can't communicate this to peers
|
|
|
|
// except by reconnecting.
|
|
|
|
requestsReceivedForMissingPieces.Add(1)
|
|
|
|
err = errors.New("peer requested piece we don't have")
|
|
|
|
break
|
|
|
|
}
|
2015-06-16 06:57:47 +00:00
|
|
|
if c.PeerRequests == nil {
|
|
|
|
c.PeerRequests = make(map[request]struct{}, maxRequests)
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
2015-06-16 06:57:47 +00:00
|
|
|
c.PeerRequests[newRequest(msg.Index, msg.Begin, msg.Length)] = struct{}{}
|
|
|
|
me.upload(t, c)
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Cancel:
|
2014-04-16 07:33:33 +00:00
|
|
|
req := newRequest(msg.Index, msg.Begin, msg.Length)
|
2014-05-21 07:55:50 +00:00
|
|
|
if !c.PeerCancel(req) {
|
2014-08-22 07:47:44 +00:00
|
|
|
unexpectedCancels.Add(1)
|
2014-04-16 07:33:33 +00:00
|
|
|
}
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Bitfield:
|
2016-03-22 01:07:03 +00:00
|
|
|
err = c.peerSentBitfield(msg.Bitfield)
|
2015-03-12 09:06:23 +00:00
|
|
|
case pp.HaveAll:
|
2016-03-22 01:07:03 +00:00
|
|
|
err = c.peerSentHaveAll()
|
2015-03-12 09:06:23 +00:00
|
|
|
case pp.HaveNone:
|
2016-03-22 01:07:03 +00:00
|
|
|
err = c.peerSentHaveNone()
|
2014-05-21 08:01:58 +00:00
|
|
|
case pp.Piece:
|
2016-01-27 18:54:48 +00:00
|
|
|
me.downloadedChunk(t, c, &msg)
|
2014-06-26 14:57:07 +00:00
|
|
|
case pp.Extended:
|
|
|
|
switch msg.ExtendedID {
|
|
|
|
case pp.HandshakeExtendedID:
|
2014-06-29 08:57:49 +00:00
|
|
|
// TODO: Create a bencode struct for this.
|
2014-06-26 14:57:07 +00:00
|
|
|
var d map[string]interface{}
|
|
|
|
err = bencode.Unmarshal(msg.ExtendedPayload, &d)
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("error decoding extended message payload: %s", err)
|
|
|
|
break
|
|
|
|
}
|
2014-11-17 05:27:01 +00:00
|
|
|
// log.Printf("got handshake from %q: %#v", c.Socket.RemoteAddr().String(), d)
|
2014-06-29 08:57:49 +00:00
|
|
|
if reqq, ok := d["reqq"]; ok {
|
|
|
|
if i, ok := reqq.(int64); ok {
|
|
|
|
c.PeerMaxRequests = int(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if v, ok := d["v"]; ok {
|
|
|
|
c.PeerClientName = v.(string)
|
|
|
|
}
|
2014-06-26 14:57:07 +00:00
|
|
|
m, ok := d["m"]
|
|
|
|
if !ok {
|
|
|
|
err = errors.New("handshake missing m item")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
mTyped, ok := m.(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
err = errors.New("handshake m value is not dict")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if c.PeerExtensionIDs == nil {
|
2015-03-27 04:36:59 +00:00
|
|
|
c.PeerExtensionIDs = make(map[string]byte, len(mTyped))
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
for name, v := range mTyped {
|
|
|
|
id, ok := v.(int64)
|
|
|
|
if !ok {
|
|
|
|
log.Printf("bad handshake m item extension ID type: %T", v)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if id == 0 {
|
|
|
|
delete(c.PeerExtensionIDs, name)
|
|
|
|
} else {
|
2015-03-18 07:37:26 +00:00
|
|
|
if c.PeerExtensionIDs[name] == 0 {
|
|
|
|
supportedExtensionMessages.Add(name, 1)
|
|
|
|
}
|
2015-03-27 04:36:59 +00:00
|
|
|
c.PeerExtensionIDs[name] = byte(id)
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
metadata_sizeUntyped, ok := d["metadata_size"]
|
|
|
|
if ok {
|
|
|
|
metadata_size, ok := metadata_sizeUntyped.(int64)
|
|
|
|
if !ok {
|
|
|
|
log.Printf("bad metadata_size type: %T", metadata_sizeUntyped)
|
|
|
|
} else {
|
2015-03-27 04:36:59 +00:00
|
|
|
t.setMetadataSize(metadata_size, me)
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, ok := c.PeerExtensionIDs["ut_metadata"]; ok {
|
|
|
|
me.requestPendingMetadata(t, c)
|
|
|
|
}
|
2015-03-25 04:42:14 +00:00
|
|
|
case metadataExtendedId:
|
2014-06-28 09:38:31 +00:00
|
|
|
err = me.gotMetadataExtensionMsg(msg.ExtendedPayload, t, c)
|
2014-06-30 14:05:28 +00:00
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("error handling metadata extension message: %s", err)
|
|
|
|
}
|
2015-03-25 04:42:14 +00:00
|
|
|
case pexExtendedId:
|
|
|
|
if me.config.DisablePEX {
|
|
|
|
break
|
|
|
|
}
|
2014-06-29 09:07:43 +00:00
|
|
|
var pexMsg peerExchangeMessage
|
|
|
|
err := bencode.Unmarshal(msg.ExtendedPayload, &pexMsg)
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("error unmarshalling PEX message: %s", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
go func() {
|
2015-03-08 06:28:14 +00:00
|
|
|
me.mu.Lock()
|
|
|
|
me.addPeers(t, func() (ret []Peer) {
|
2015-03-18 07:37:26 +00:00
|
|
|
for i, cp := range pexMsg.Added {
|
2014-06-29 09:07:43 +00:00
|
|
|
p := Peer{
|
2014-07-16 07:06:18 +00:00
|
|
|
IP: make([]byte, 4),
|
2016-04-04 05:28:25 +00:00
|
|
|
Port: cp.Port,
|
2014-07-16 07:06:18 +00:00
|
|
|
Source: peerSourcePEX,
|
2014-06-29 09:07:43 +00:00
|
|
|
}
|
2015-03-18 07:37:26 +00:00
|
|
|
if i < len(pexMsg.AddedFlags) && pexMsg.AddedFlags[i]&0x01 != 0 {
|
|
|
|
p.SupportsEncryption = true
|
2014-06-29 09:07:43 +00:00
|
|
|
}
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(p.IP, cp.IP[:])
|
2014-06-29 09:07:43 +00:00
|
|
|
ret = append(ret, p)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}())
|
2015-03-08 06:28:14 +00:00
|
|
|
me.mu.Unlock()
|
2014-06-29 09:07:43 +00:00
|
|
|
}()
|
2014-06-28 09:38:31 +00:00
|
|
|
default:
|
2014-07-09 16:59:37 +00:00
|
|
|
err = fmt.Errorf("unexpected extended message ID: %v", msg.ExtendedID)
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
2014-08-21 08:12:49 +00:00
|
|
|
if err != nil {
|
2014-09-11 04:20:47 +00:00
|
|
|
// That client uses its own extension IDs for outgoing message
|
|
|
|
// types, which is incorrect.
|
2014-09-13 17:47:47 +00:00
|
|
|
if bytes.HasPrefix(c.PeerID[:], []byte("-SD0100-")) ||
|
|
|
|
strings.HasPrefix(string(c.PeerID[:]), "-XL0012-") {
|
2014-09-11 04:20:47 +00:00
|
|
|
return nil
|
|
|
|
}
|
2014-08-21 08:12:49 +00:00
|
|
|
}
|
2014-08-25 12:12:16 +00:00
|
|
|
case pp.Port:
|
|
|
|
if me.dHT == nil {
|
|
|
|
break
|
|
|
|
}
|
2015-03-12 19:21:13 +00:00
|
|
|
pingAddr, err := net.ResolveUDPAddr("", c.remoteAddr().String())
|
2014-11-16 19:16:26 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if msg.Port != 0 {
|
|
|
|
pingAddr.Port = int(msg.Port)
|
|
|
|
}
|
|
|
|
_, err = me.dHT.Ping(pingAddr)
|
2013-10-20 14:07:01 +00:00
|
|
|
default:
|
2014-05-21 07:42:06 +00:00
|
|
|
err = fmt.Errorf("received unknown message type: %#v", msg.Type)
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-29 14:45:26 +00:00
|
|
|
// Returns true if connection is removed from torrent.Conns.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) deleteConnection(t *Torrent, c *connection) bool {
|
2016-04-03 06:50:53 +00:00
|
|
|
for i0, _c := range t.conns {
|
2015-06-29 14:45:26 +00:00
|
|
|
if _c != c {
|
2013-09-30 11:51:08 +00:00
|
|
|
continue
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
i1 := len(t.conns) - 1
|
2013-09-30 11:51:08 +00:00
|
|
|
if i0 != i1 {
|
2016-04-03 06:50:53 +00:00
|
|
|
t.conns[i0] = t.conns[i1]
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
t.conns = t.conns[:i1]
|
2015-06-29 14:45:26 +00:00
|
|
|
return true
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2015-06-29 14:45:26 +00:00
|
|
|
return false
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) dropConnection(t *Torrent, c *connection) {
|
2015-06-29 14:45:26 +00:00
|
|
|
me.event.Broadcast()
|
|
|
|
c.Close()
|
|
|
|
if me.deleteConnection(t, c) {
|
|
|
|
me.openNewConns(t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if the connection is added.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) addConnection(t *Torrent, c *connection) bool {
|
2016-03-05 08:36:21 +00:00
|
|
|
if me.closed.IsSet() {
|
2014-06-26 08:06:33 +00:00
|
|
|
return false
|
|
|
|
}
|
2014-08-27 23:39:27 +00:00
|
|
|
select {
|
|
|
|
case <-t.ceasingNetworking:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
}
|
2014-12-03 07:07:50 +00:00
|
|
|
if !me.wantConns(t) {
|
|
|
|
return false
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, c0 := range t.conns {
|
2014-08-21 08:12:49 +00:00
|
|
|
if c.PeerID == c0.PeerID {
|
2014-05-21 07:42:06 +00:00
|
|
|
// Already connected to a client with that ID.
|
2015-03-18 07:37:26 +00:00
|
|
|
duplicateClientConns.Add(1)
|
2013-09-30 11:51:08 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if len(t.conns) >= socketsPerTorrent {
|
2015-06-29 14:45:26 +00:00
|
|
|
c := t.worstBadConn(me)
|
|
|
|
if c == nil {
|
|
|
|
return false
|
|
|
|
}
|
2015-08-23 02:59:03 +00:00
|
|
|
if me.config.Debug && missinggo.CryHeard() {
|
2015-08-05 22:56:36 +00:00
|
|
|
log.Printf("%s: dropping connection to make room for new one:\n %s", t, c)
|
|
|
|
}
|
2015-06-29 14:45:26 +00:00
|
|
|
c.Close()
|
|
|
|
me.deleteConnection(t, c)
|
2014-08-28 00:06:36 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if len(t.conns) >= socketsPerTorrent {
|
|
|
|
panic(len(t.conns))
|
2015-06-29 14:45:26 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
t.conns = append(t.conns, c)
|
2016-01-24 04:21:17 +00:00
|
|
|
c.t = t
|
2013-09-30 11:51:08 +00:00
|
|
|
return true
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) readerPieces() (ret bitmap.Bitmap) {
|
2016-02-06 14:20:40 +00:00
|
|
|
t.forReaderOffsetPieces(func(begin, end int) bool {
|
|
|
|
ret.AddRange(begin, end)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) needData() bool {
|
2014-12-03 07:07:50 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return true
|
|
|
|
}
|
2016-02-06 14:20:40 +00:00
|
|
|
if t.pendingPieces.Len() != 0 {
|
2016-01-18 07:35:14 +00:00
|
|
|
return true
|
2016-02-06 14:20:40 +00:00
|
|
|
}
|
|
|
|
return !t.readerPieces().IterTyped(func(piece int) bool {
|
|
|
|
return t.pieceComplete(piece)
|
2016-01-18 07:35:14 +00:00
|
|
|
})
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) usefulConn(t *Torrent, c *connection) bool {
|
2016-02-01 10:08:52 +00:00
|
|
|
if c.closed.IsSet() {
|
2015-06-29 14:45:26 +00:00
|
|
|
return false
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
|
|
|
if !t.haveInfo() {
|
2015-06-29 14:45:26 +00:00
|
|
|
return c.supportsExtension("ut_metadata")
|
2015-06-16 06:57:47 +00:00
|
|
|
}
|
|
|
|
if cl.seeding(t) {
|
|
|
|
return c.PeerInterested
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
2015-06-16 06:57:47 +00:00
|
|
|
return t.connHasWantedPieces(c)
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) wantConns(t *Torrent) bool {
|
2015-06-16 06:57:47 +00:00
|
|
|
if !me.seeding(t) && !t.needData() {
|
2014-12-03 07:07:50 +00:00
|
|
|
return false
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if len(t.conns) < socketsPerTorrent {
|
2015-06-29 14:45:26 +00:00
|
|
|
return true
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
2015-06-29 14:45:26 +00:00
|
|
|
return t.worstBadConn(me) != nil
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) openNewConns(t *Torrent) {
|
2014-11-21 06:09:55 +00:00
|
|
|
select {
|
|
|
|
case <-t.ceasingNetworking:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
for len(t.peers) != 0 {
|
2014-12-03 07:07:50 +00:00
|
|
|
if !me.wantConns(t) {
|
|
|
|
return
|
2014-08-27 23:39:27 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if len(t.halfOpen) >= me.halfOpenLimit {
|
2014-12-03 07:07:50 +00:00
|
|
|
return
|
2014-11-21 06:09:55 +00:00
|
|
|
}
|
|
|
|
var (
|
2016-01-06 01:19:49 +00:00
|
|
|
k peersKey
|
2014-11-21 06:09:55 +00:00
|
|
|
p Peer
|
|
|
|
)
|
2016-04-03 06:50:53 +00:00
|
|
|
for k, p = range t.peers {
|
2014-11-21 06:09:55 +00:00
|
|
|
break
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
delete(t.peers, k)
|
2014-11-21 06:09:55 +00:00
|
|
|
me.initiateConn(p, t)
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
2014-11-21 06:09:55 +00:00
|
|
|
t.wantPeers.Broadcast()
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) addPeers(t *Torrent, peers []Peer) {
|
2015-03-08 06:28:14 +00:00
|
|
|
for _, p := range peers {
|
2015-09-17 02:54:03 +00:00
|
|
|
if me.dopplegangerAddr(net.JoinHostPort(
|
|
|
|
p.IP.String(),
|
|
|
|
strconv.FormatInt(int64(p.Port), 10),
|
|
|
|
)) {
|
2015-03-18 07:29:51 +00:00
|
|
|
continue
|
|
|
|
}
|
2015-10-18 13:00:26 +00:00
|
|
|
if _, ok := me.ipBlockRange(p.IP); ok {
|
2014-11-30 02:33:17 +00:00
|
|
|
continue
|
|
|
|
}
|
2015-06-02 14:03:43 +00:00
|
|
|
if p.Port == 0 {
|
2015-09-17 02:39:51 +00:00
|
|
|
// The spec says to scrub these yourselves. Fine.
|
2015-06-02 14:03:43 +00:00
|
|
|
continue
|
|
|
|
}
|
2015-09-28 05:30:13 +00:00
|
|
|
t.addPeer(p, me)
|
2014-11-30 02:33:17 +00:00
|
|
|
}
|
2014-12-09 03:58:49 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 03:01:31 +00:00
|
|
|
func (cl *Client) cachedMetaInfoFilename(ih metainfo.Hash) string {
|
2014-12-01 22:39:09 +00:00
|
|
|
return filepath.Join(cl.configDir(), "torrents", ih.HexString()+".torrent")
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) saveTorrentFile(t *Torrent) error {
|
|
|
|
path := cl.cachedMetaInfoFilename(t.infoHash)
|
2014-12-01 22:39:09 +00:00
|
|
|
os.MkdirAll(filepath.Dir(path), 0777)
|
|
|
|
f, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error opening file: %s", err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
e := bencode.NewEncoder(f)
|
2016-04-03 08:40:43 +00:00
|
|
|
err = e.Encode(t.metainfo())
|
2014-12-01 22:39:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error marshalling metainfo: %s", err)
|
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
mi, err := cl.torrentCacheMetaInfo(t.infoHash)
|
2015-02-06 03:54:59 +00:00
|
|
|
if err != nil {
|
|
|
|
// For example, a script kiddy makes us load too many files, and we're
|
|
|
|
// able to save the torrent, but not load it again to check it.
|
|
|
|
return nil
|
|
|
|
}
|
2016-04-03 08:40:43 +00:00
|
|
|
if !bytes.Equal(mi.Info.Hash.Bytes(), t.infoHash[:]) {
|
|
|
|
log.Fatalf("%x != %x", mi.Info.Hash, t.infoHash[:])
|
2014-12-02 05:32:40 +00:00
|
|
|
}
|
2014-12-01 22:39:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) setMetaData(t *Torrent, md *metainfo.Info, bytes []byte) (err error) {
|
2015-11-05 13:40:16 +00:00
|
|
|
err = t.setMetadata(md, bytes)
|
2015-02-25 03:48:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !cl.config.DisableMetainfoCache {
|
|
|
|
if err := cl.saveTorrentFile(t); err != nil {
|
|
|
|
log.Printf("error saving torrent file for %s: %s", t, err)
|
|
|
|
}
|
|
|
|
}
|
2015-03-18 07:32:31 +00:00
|
|
|
cl.event.Broadcast()
|
2014-09-25 08:05:52 +00:00
|
|
|
close(t.gotMetainfo)
|
2014-06-26 14:57:07 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare a Torrent without any attachment to a Client. That means we can
|
|
|
|
// initialize fields all fields that don't require the Client without locking
|
|
|
|
// it.
|
2016-04-04 03:01:31 +00:00
|
|
|
func newTorrent(ih metainfo.Hash) (t *Torrent) {
|
2016-04-03 08:40:43 +00:00
|
|
|
t = &Torrent{
|
|
|
|
infoHash: ih,
|
2015-07-15 05:31:18 +00:00
|
|
|
chunkSize: defaultChunkSize,
|
2016-04-03 06:50:53 +00:00
|
|
|
peers: make(map[peersKey]Peer),
|
2014-08-24 20:01:05 +00:00
|
|
|
|
2014-08-27 23:39:27 +00:00
|
|
|
closing: make(chan struct{}),
|
|
|
|
ceasingNetworking: make(chan struct{}),
|
2014-09-25 08:05:52 +00:00
|
|
|
|
2014-12-01 22:37:40 +00:00
|
|
|
gotMetainfo: make(chan struct{}),
|
2014-11-16 19:30:44 +00:00
|
|
|
|
2016-04-03 06:50:53 +00:00
|
|
|
halfOpen: make(map[string]struct{}),
|
2015-09-06 02:33:22 +00:00
|
|
|
pieceStateChanges: pubsub.NewPubSub(),
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
2014-11-21 06:09:55 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-01 09:32:17 +00:00
|
|
|
func init() {
|
|
|
|
// For shuffling the tracker tiers.
|
|
|
|
mathRand.Seed(time.Now().Unix())
|
|
|
|
}
|
|
|
|
|
2016-02-07 07:49:35 +00:00
|
|
|
type trackerTier []string
|
|
|
|
|
2014-11-21 06:09:55 +00:00
|
|
|
// The trackers within each tier must be shuffled before use.
|
|
|
|
// http://stackoverflow.com/a/12267471/149482
|
|
|
|
// http://www.bittorrent.org/beps/bep_0012.html#order-of-processing
|
2016-02-07 07:49:35 +00:00
|
|
|
func shuffleTier(tier trackerTier) {
|
2014-11-21 06:09:55 +00:00
|
|
|
for i := range tier {
|
|
|
|
j := mathRand.Intn(i + 1)
|
|
|
|
tier[i], tier[j] = tier[j], tier[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-07 07:49:35 +00:00
|
|
|
func copyTrackers(base []trackerTier) (copy []trackerTier) {
|
2014-11-21 06:09:55 +00:00
|
|
|
for _, tier := range base {
|
2016-02-07 07:49:35 +00:00
|
|
|
copy = append(copy, append(trackerTier(nil), tier...))
|
2014-11-21 06:09:55 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-07 07:49:35 +00:00
|
|
|
func mergeTier(tier trackerTier, newURLs []string) trackerTier {
|
2014-11-21 06:09:55 +00:00
|
|
|
nextURL:
|
|
|
|
for _, url := range newURLs {
|
2016-02-07 07:49:35 +00:00
|
|
|
for _, trURL := range tier {
|
|
|
|
if trURL == url {
|
2014-11-21 06:09:55 +00:00
|
|
|
continue nextURL
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-07 07:49:35 +00:00
|
|
|
tier = append(tier, url)
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
2014-11-21 06:09:55 +00:00
|
|
|
return tier
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) addTrackers(announceList [][]string) {
|
2016-04-03 06:50:53 +00:00
|
|
|
newTrackers := copyTrackers(t.trackers)
|
2014-11-21 06:09:55 +00:00
|
|
|
for tierIndex, tier := range announceList {
|
|
|
|
if tierIndex < len(newTrackers) {
|
|
|
|
newTrackers[tierIndex] = mergeTier(newTrackers[tierIndex], tier)
|
|
|
|
} else {
|
|
|
|
newTrackers = append(newTrackers, mergeTier(nil, tier))
|
|
|
|
}
|
2014-11-21 06:32:27 +00:00
|
|
|
shuffleTier(newTrackers[tierIndex])
|
2014-11-21 06:09:55 +00:00
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
t.trackers = newTrackers
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
|
|
|
|
2015-03-25 06:32:42 +00:00
|
|
|
// Don't call this before the info is available.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) bytesCompleted() int64 {
|
2015-03-25 06:32:42 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return 0
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
return t.info.TotalLength() - t.bytesLeft()
|
2015-03-25 06:32:42 +00:00
|
|
|
}
|
|
|
|
|
2015-03-07 06:11:02 +00:00
|
|
|
// A file-like handle to some torrent data resource.
|
2015-03-01 03:32:54 +00:00
|
|
|
type Handle interface {
|
|
|
|
io.Reader
|
|
|
|
io.Seeker
|
|
|
|
io.Closer
|
2015-03-04 02:06:33 +00:00
|
|
|
io.ReaderAt
|
2015-03-01 03:32:54 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 14:12:36 +00:00
|
|
|
// Returns handles to the files in the torrent. This requires the metainfo is
|
|
|
|
// available first.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) Files() (ret []File) {
|
2015-03-01 03:32:54 +00:00
|
|
|
t.cl.mu.Lock()
|
2015-04-28 05:24:17 +00:00
|
|
|
info := t.Info()
|
2015-03-01 03:32:54 +00:00
|
|
|
t.cl.mu.Unlock()
|
|
|
|
if info == nil {
|
2015-02-25 03:51:56 +00:00
|
|
|
return
|
|
|
|
}
|
2015-01-27 14:12:36 +00:00
|
|
|
var offset int64
|
2015-03-01 03:32:54 +00:00
|
|
|
for _, fi := range info.UpvertedFiles() {
|
2015-01-27 14:12:36 +00:00
|
|
|
ret = append(ret, File{
|
|
|
|
t,
|
2015-03-01 03:32:54 +00:00
|
|
|
strings.Join(append([]string{info.Name}, fi.Path...), "/"),
|
2015-01-27 14:12:36 +00:00
|
|
|
offset,
|
|
|
|
fi.Length,
|
2015-02-09 13:18:59 +00:00
|
|
|
fi,
|
2015-01-27 14:12:36 +00:00
|
|
|
})
|
|
|
|
offset += fi.Length
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) AddPeers(pp []Peer) error {
|
2015-03-08 06:28:14 +00:00
|
|
|
cl := t.cl
|
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
2016-04-03 08:40:43 +00:00
|
|
|
cl.addPeers(t, pp)
|
2015-03-08 06:28:14 +00:00
|
|
|
return nil
|
2014-12-01 09:37:33 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 05:24:17 +00:00
|
|
|
// Marks the entire torrent for download. Requires the info first, see
|
|
|
|
// GotInfo.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (t *Torrent) DownloadAll() {
|
2014-12-01 09:37:33 +00:00
|
|
|
t.cl.mu.Lock()
|
2015-03-19 23:52:01 +00:00
|
|
|
defer t.cl.mu.Unlock()
|
2016-04-03 08:40:43 +00:00
|
|
|
t.pendPieceRange(0, t.numPieces())
|
2014-12-01 09:37:33 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 07:28:13 +00:00
|
|
|
// Returns nil metainfo if it isn't in the cache. Checks that the retrieved
|
|
|
|
// metainfo has the correct infohash.
|
2016-04-04 03:01:31 +00:00
|
|
|
func (cl *Client) torrentCacheMetaInfo(ih metainfo.Hash) (mi *metainfo.MetaInfo, err error) {
|
2015-02-25 03:48:39 +00:00
|
|
|
if cl.config.DisableMetainfoCache {
|
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:28:13 +00:00
|
|
|
f, err := os.Open(cl.cachedMetaInfoFilename(ih))
|
2014-12-02 05:32:40 +00:00
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
dec := bencode.NewDecoder(f)
|
|
|
|
err = dec.Decode(&mi)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2016-03-28 10:57:04 +00:00
|
|
|
if !bytes.Equal(mi.Info.Hash.Bytes(), ih[:]) {
|
2014-12-02 05:32:40 +00:00
|
|
|
err = fmt.Errorf("cached torrent has wrong infohash: %x != %x", mi.Info.Hash, ih[:])
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-20 12:52:53 +00:00
|
|
|
// Specifies a new torrent for adding to a client. There are helpers for
|
|
|
|
// magnet URIs and torrent metainfo files.
|
2015-03-18 07:32:31 +00:00
|
|
|
type TorrentSpec struct {
|
2015-07-15 05:31:18 +00:00
|
|
|
// The tiered tracker URIs.
|
|
|
|
Trackers [][]string
|
2016-04-04 03:01:31 +00:00
|
|
|
InfoHash metainfo.Hash
|
2015-07-15 05:31:18 +00:00
|
|
|
Info *metainfo.InfoEx
|
|
|
|
// The name to use if the Name field from the Info isn't available.
|
2015-03-18 07:32:31 +00:00
|
|
|
DisplayName string
|
2015-07-15 05:31:18 +00:00
|
|
|
// The chunk size to use for outbound requests. Defaults to 16KiB if not
|
|
|
|
// set.
|
|
|
|
ChunkSize int
|
2016-03-28 09:38:30 +00:00
|
|
|
Storage storage.I
|
2015-03-18 07:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TorrentSpecFromMagnetURI(uri string) (spec *TorrentSpec, err error) {
|
2016-04-04 03:48:39 +00:00
|
|
|
m, err := metainfo.ParseMagnetURI(uri)
|
2013-09-26 09:49:15 +00:00
|
|
|
if err != nil {
|
2014-06-26 14:57:07 +00:00
|
|
|
return
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
2015-03-18 07:32:31 +00:00
|
|
|
spec = &TorrentSpec{
|
|
|
|
Trackers: [][]string{m.Trackers},
|
|
|
|
DisplayName: m.DisplayName,
|
2015-04-01 03:34:57 +00:00
|
|
|
InfoHash: m.InfoHash,
|
2015-03-18 07:32:31 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func TorrentSpecFromMetaInfo(mi *metainfo.MetaInfo) (spec *TorrentSpec) {
|
|
|
|
spec = &TorrentSpec{
|
2015-03-27 06:16:50 +00:00
|
|
|
Trackers: mi.AnnounceList,
|
|
|
|
Info: &mi.Info,
|
|
|
|
DisplayName: mi.Info.Name,
|
2015-03-18 07:32:31 +00:00
|
|
|
}
|
2015-10-10 12:31:02 +00:00
|
|
|
|
|
|
|
if len(spec.Trackers) == 0 {
|
|
|
|
spec.Trackers = [][]string{[]string{mi.Announce}}
|
|
|
|
} else {
|
|
|
|
spec.Trackers[0] = append(spec.Trackers[0], mi.Announce)
|
|
|
|
}
|
|
|
|
|
2016-03-30 08:11:55 +00:00
|
|
|
missinggo.CopyExact(&spec.InfoHash, mi.Info.Hash)
|
2015-03-18 07:32:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-27 15:50:55 +00:00
|
|
|
// Add or merge a torrent spec. If the torrent is already present, the
|
|
|
|
// trackers will be merged with the existing ones. If the Info isn't yet
|
|
|
|
// known, it will be set. The display name is replaced if the new spec
|
|
|
|
// provides one. Returns new if the torrent wasn't already in the client.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) AddTorrentSpec(spec *TorrentSpec) (t *Torrent, new bool, err error) {
|
2015-03-18 07:32:31 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
|
|
|
|
|
|
|
t, ok := cl.torrents[spec.InfoHash]
|
2015-03-27 15:50:55 +00:00
|
|
|
if !ok {
|
|
|
|
new = true
|
2015-03-18 07:32:31 +00:00
|
|
|
|
2016-03-28 09:38:30 +00:00
|
|
|
// TODO: This doesn't belong in the core client, it's more of a
|
|
|
|
// helper.
|
2015-03-27 15:50:55 +00:00
|
|
|
if _, ok := cl.bannedTorrents[spec.InfoHash]; ok {
|
|
|
|
err = errors.New("banned torrent")
|
|
|
|
return
|
|
|
|
}
|
2016-01-31 20:05:43 +00:00
|
|
|
// TODO: Tidy this up?
|
|
|
|
t = newTorrent(spec.InfoHash)
|
2016-02-01 10:11:41 +00:00
|
|
|
t.cl = cl
|
2016-02-20 16:31:50 +00:00
|
|
|
t.wantPeers.L = &cl.mu
|
2015-07-15 05:31:18 +00:00
|
|
|
if spec.ChunkSize != 0 {
|
|
|
|
t.chunkSize = pp.Integer(spec.ChunkSize)
|
|
|
|
}
|
2016-03-28 11:40:29 +00:00
|
|
|
t.storageOpener = spec.Storage
|
|
|
|
if t.storageOpener == nil {
|
|
|
|
t.storageOpener = cl.defaultStorage
|
2016-03-28 09:38:30 +00:00
|
|
|
}
|
2015-03-18 07:32:31 +00:00
|
|
|
}
|
|
|
|
if spec.DisplayName != "" {
|
2015-12-12 03:03:04 +00:00
|
|
|
t.setDisplayName(spec.DisplayName)
|
2015-03-18 07:32:31 +00:00
|
|
|
}
|
2015-03-27 15:50:55 +00:00
|
|
|
// Try to merge in info we have on the torrent. Any err left will
|
|
|
|
// terminate the function.
|
2016-04-03 06:50:53 +00:00
|
|
|
if t.info == nil {
|
2015-03-27 15:50:55 +00:00
|
|
|
if spec.Info != nil {
|
|
|
|
err = cl.setMetaData(t, &spec.Info.Info, spec.Info.Bytes)
|
|
|
|
} else {
|
|
|
|
var mi *metainfo.MetaInfo
|
|
|
|
mi, err = cl.torrentCacheMetaInfo(spec.InfoHash)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("error getting cached metainfo: %s", err)
|
|
|
|
err = nil
|
|
|
|
} else if mi != nil {
|
|
|
|
t.addTrackers(mi.AnnounceList)
|
|
|
|
err = cl.setMetaData(t, &mi.Info.Info, mi.Info.Bytes)
|
|
|
|
}
|
2015-02-06 03:54:59 +00:00
|
|
|
}
|
2014-12-02 05:32:40 +00:00
|
|
|
}
|
2014-06-26 14:57:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
2015-03-27 15:50:55 +00:00
|
|
|
t.addTrackers(spec.Trackers)
|
2015-03-18 07:32:31 +00:00
|
|
|
|
|
|
|
cl.torrents[spec.InfoHash] = t
|
2016-04-03 12:06:25 +00:00
|
|
|
t.maybeNewConns()
|
2015-03-18 07:32:31 +00:00
|
|
|
|
2015-03-27 15:50:55 +00:00
|
|
|
// From this point onwards, we can consider the torrent a part of the
|
|
|
|
// client.
|
|
|
|
if new {
|
2015-04-27 04:05:27 +00:00
|
|
|
if !cl.config.DisableTrackers {
|
2016-04-03 08:40:43 +00:00
|
|
|
go cl.announceTorrentTrackers(t)
|
2015-03-27 15:50:55 +00:00
|
|
|
}
|
|
|
|
if cl.dHT != nil {
|
2016-04-03 08:40:43 +00:00
|
|
|
go cl.announceTorrentDHT(t, true)
|
2015-03-27 15:50:55 +00:00
|
|
|
}
|
2014-12-02 01:12:03 +00:00
|
|
|
}
|
2014-06-26 14:57:07 +00:00
|
|
|
return
|
|
|
|
}
|
2014-05-21 07:37:31 +00:00
|
|
|
|
2016-04-04 03:01:31 +00:00
|
|
|
func (me *Client) dropTorrent(infoHash metainfo.Hash) (err error) {
|
2014-07-22 15:54:11 +00:00
|
|
|
t, ok := me.torrents[infoHash]
|
|
|
|
if !ok {
|
|
|
|
err = fmt.Errorf("no such torrent")
|
|
|
|
return
|
|
|
|
}
|
2015-02-09 13:12:29 +00:00
|
|
|
err = t.close()
|
2014-07-22 15:54:11 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
delete(me.torrents, infoHash)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-21 06:09:55 +00:00
|
|
|
// Returns true when peers are required, or false if the torrent is closing.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) waitWantPeers(t *Torrent) bool {
|
2014-11-21 06:09:55 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
2014-07-11 09:30:20 +00:00
|
|
|
for {
|
2014-11-21 06:09:55 +00:00
|
|
|
select {
|
|
|
|
case <-t.ceasingNetworking:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
}
|
2016-04-03 06:50:53 +00:00
|
|
|
if len(t.peers) > torrentPeersLowWater {
|
2015-05-14 22:39:53 +00:00
|
|
|
goto wait
|
|
|
|
}
|
|
|
|
if t.needData() || cl.seeding(t) {
|
2014-11-21 06:09:55 +00:00
|
|
|
return true
|
|
|
|
}
|
2015-05-14 22:39:53 +00:00
|
|
|
wait:
|
2014-11-21 06:09:55 +00:00
|
|
|
t.wantPeers.Wait()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-14 22:39:53 +00:00
|
|
|
// Returns whether the client should make effort to seed the torrent.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) seeding(t *Torrent) bool {
|
2015-06-16 06:57:47 +00:00
|
|
|
if cl.config.NoUpload {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !cl.config.Seed {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if t.needData() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
2015-05-14 22:39:53 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) announceTorrentDHT(t *Torrent, impliedPort bool) {
|
2014-11-21 06:09:55 +00:00
|
|
|
for cl.waitWantPeers(t) {
|
2015-08-01 18:01:41 +00:00
|
|
|
// log.Printf("getting peers for %q from DHT", t)
|
2016-04-03 08:40:43 +00:00
|
|
|
ps, err := cl.dHT.Announce(string(t.infoHash[:]), cl.incomingPeerPort(), impliedPort)
|
2014-07-11 09:30:20 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("error getting peers from dht: %s", err)
|
|
|
|
return
|
|
|
|
}
|
2015-08-01 17:53:37 +00:00
|
|
|
// Count all the unique addresses we got during this announce.
|
2014-12-08 22:57:42 +00:00
|
|
|
allAddrs := make(map[string]struct{})
|
2014-07-11 09:30:20 +00:00
|
|
|
getPeers:
|
|
|
|
for {
|
|
|
|
select {
|
2015-04-01 06:29:55 +00:00
|
|
|
case v, ok := <-ps.Peers:
|
2014-07-11 09:30:20 +00:00
|
|
|
if !ok {
|
|
|
|
break getPeers
|
|
|
|
}
|
2015-08-03 15:20:10 +00:00
|
|
|
addPeers := make([]Peer, 0, len(v.Peers))
|
|
|
|
for _, cp := range v.Peers {
|
|
|
|
if cp.Port == 0 {
|
|
|
|
// Can't do anything with this.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
addPeers = append(addPeers, Peer{
|
|
|
|
IP: cp.IP[:],
|
2016-04-04 05:28:25 +00:00
|
|
|
Port: cp.Port,
|
2015-08-03 15:20:10 +00:00
|
|
|
Source: peerSourceDHT,
|
|
|
|
})
|
|
|
|
key := (&net.UDPAddr{
|
|
|
|
IP: cp.IP[:],
|
2016-04-04 05:28:25 +00:00
|
|
|
Port: cp.Port,
|
2015-08-03 15:20:10 +00:00
|
|
|
}).String()
|
|
|
|
allAddrs[key] = struct{}{}
|
2014-12-08 22:57:42 +00:00
|
|
|
}
|
2014-12-09 03:58:49 +00:00
|
|
|
cl.mu.Lock()
|
2015-08-03 15:20:10 +00:00
|
|
|
cl.addPeers(t, addPeers)
|
2016-04-03 06:50:53 +00:00
|
|
|
numPeers := len(t.peers)
|
2014-12-09 03:58:49 +00:00
|
|
|
cl.mu.Unlock()
|
|
|
|
if numPeers >= torrentPeersHighWater {
|
2014-07-11 09:30:20 +00:00
|
|
|
break getPeers
|
|
|
|
}
|
2014-08-27 23:39:27 +00:00
|
|
|
case <-t.ceasingNetworking:
|
2014-08-24 20:01:05 +00:00
|
|
|
ps.Close()
|
|
|
|
return
|
2014-07-11 09:30:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ps.Close()
|
2015-08-01 18:01:41 +00:00
|
|
|
// log.Printf("finished DHT peer scrape for %s: %d peers", t, len(allAddrs))
|
2014-07-11 09:30:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-07 07:49:35 +00:00
|
|
|
func (cl *Client) trackerBlockedUnlocked(trRawURL string) (blocked bool, err error) {
|
|
|
|
url_, err := url.Parse(trRawURL)
|
2015-03-10 15:41:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
host, _, err := net.SplitHostPort(url_.Host)
|
|
|
|
if err != nil {
|
|
|
|
host = url_.Host
|
|
|
|
}
|
|
|
|
addr, err := net.ResolveIPAddr("ip", host)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2015-10-18 13:00:26 +00:00
|
|
|
cl.mu.RLock()
|
|
|
|
_, blocked = cl.ipBlockRange(addr.IP)
|
|
|
|
cl.mu.RUnlock()
|
2015-03-10 15:41:41 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) announceTorrentSingleTracker(tr string, req *tracker.AnnounceRequest, t *Torrent) error {
|
2015-03-10 15:41:41 +00:00
|
|
|
blocked, err := cl.trackerBlockedUnlocked(tr)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error determining if tracker blocked: %s", err)
|
|
|
|
}
|
|
|
|
if blocked {
|
|
|
|
return fmt.Errorf("tracker blocked: %s", tr)
|
|
|
|
}
|
2016-02-07 07:49:35 +00:00
|
|
|
resp, err := tracker.Announce(tr, req)
|
2014-12-01 09:33:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error announcing: %s", err)
|
|
|
|
}
|
|
|
|
var peers []Peer
|
|
|
|
for _, peer := range resp.Peers {
|
|
|
|
peers = append(peers, Peer{
|
|
|
|
IP: peer.IP,
|
|
|
|
Port: peer.Port,
|
|
|
|
})
|
|
|
|
}
|
2015-03-08 06:28:14 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
cl.addPeers(t, peers)
|
|
|
|
cl.mu.Unlock()
|
2015-03-12 09:04:44 +00:00
|
|
|
|
2015-08-01 18:01:41 +00:00
|
|
|
// log.Printf("%s: %d new peers from %s", t, len(peers), tr)
|
2014-12-01 09:33:52 +00:00
|
|
|
|
|
|
|
time.Sleep(time.Second * time.Duration(resp.Interval))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) announceTorrentTrackersFastStart(req *tracker.AnnounceRequest, trackers []trackerTier, t *Torrent) (atLeastOne bool) {
|
2014-12-01 09:33:52 +00:00
|
|
|
oks := make(chan bool)
|
|
|
|
outstanding := 0
|
|
|
|
for _, tier := range trackers {
|
|
|
|
for _, tr := range tier {
|
|
|
|
outstanding++
|
2016-02-07 07:49:35 +00:00
|
|
|
go func(tr string) {
|
2014-12-01 09:33:52 +00:00
|
|
|
err := cl.announceTorrentSingleTracker(tr, req, t)
|
|
|
|
oks <- err == nil
|
|
|
|
}(tr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for outstanding > 0 {
|
|
|
|
ok := <-oks
|
|
|
|
outstanding--
|
|
|
|
if ok {
|
|
|
|
atLeastOne = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-30 02:33:45 +00:00
|
|
|
// Announce torrent to its trackers.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) announceTorrentTrackers(t *Torrent) {
|
2014-03-16 15:30:10 +00:00
|
|
|
req := tracker.AnnounceRequest{
|
2014-05-22 14:35:24 +00:00
|
|
|
Event: tracker.Started,
|
|
|
|
NumWant: -1,
|
2015-03-27 06:22:00 +00:00
|
|
|
Port: uint16(cl.incomingPeerPort()),
|
2014-08-21 08:07:06 +00:00
|
|
|
PeerId: cl.peerID,
|
2016-04-03 08:40:43 +00:00
|
|
|
InfoHash: t.infoHash,
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
2015-02-21 04:02:06 +00:00
|
|
|
if !cl.waitWantPeers(t) {
|
|
|
|
return
|
|
|
|
}
|
2014-12-01 09:33:52 +00:00
|
|
|
cl.mu.RLock()
|
2016-03-21 22:06:48 +00:00
|
|
|
req.Left = t.bytesLeftAnnounce()
|
2016-04-03 06:50:53 +00:00
|
|
|
trackers := t.trackers
|
2014-12-01 09:33:52 +00:00
|
|
|
cl.mu.RUnlock()
|
|
|
|
if cl.announceTorrentTrackersFastStart(&req, trackers, t) {
|
|
|
|
req.Event = tracker.None
|
|
|
|
}
|
2014-03-16 15:30:10 +00:00
|
|
|
newAnnounce:
|
2014-11-21 06:09:55 +00:00
|
|
|
for cl.waitWantPeers(t) {
|
2014-11-30 02:33:45 +00:00
|
|
|
cl.mu.RLock()
|
2016-03-21 22:06:48 +00:00
|
|
|
req.Left = t.bytesLeftAnnounce()
|
2016-04-03 06:50:53 +00:00
|
|
|
trackers = t.trackers
|
2014-11-30 02:33:45 +00:00
|
|
|
cl.mu.RUnlock()
|
2014-12-26 06:17:49 +00:00
|
|
|
numTrackersTried := 0
|
2014-11-21 06:09:55 +00:00
|
|
|
for _, tier := range trackers {
|
2014-03-16 15:30:10 +00:00
|
|
|
for trIndex, tr := range tier {
|
2014-12-26 06:17:49 +00:00
|
|
|
numTrackersTried++
|
2014-12-01 09:33:52 +00:00
|
|
|
err := cl.announceTorrentSingleTracker(tr, &req, t)
|
2016-01-04 11:54:19 +00:00
|
|
|
if err != nil {
|
2015-03-27 06:20:02 +00:00
|
|
|
continue
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
2014-12-01 09:33:52 +00:00
|
|
|
// Float the successful announce to the top of the tier. If
|
|
|
|
// the trackers list has been changed, we'll be modifying an
|
|
|
|
// old copy so it won't matter.
|
2014-11-30 02:33:45 +00:00
|
|
|
cl.mu.Lock()
|
2014-03-16 15:30:10 +00:00
|
|
|
tier[0], tier[trIndex] = tier[trIndex], tier[0]
|
2014-11-30 02:33:45 +00:00
|
|
|
cl.mu.Unlock()
|
|
|
|
|
2014-05-22 14:35:24 +00:00
|
|
|
req.Event = tracker.None
|
2014-03-16 15:30:10 +00:00
|
|
|
continue newAnnounce
|
|
|
|
}
|
|
|
|
}
|
2014-12-26 06:17:49 +00:00
|
|
|
if numTrackersTried != 0 {
|
|
|
|
log.Printf("%s: all trackers failed", t)
|
|
|
|
}
|
2014-12-01 18:43:34 +00:00
|
|
|
// TODO: Wait until trackers are added if there are none.
|
|
|
|
time.Sleep(10 * time.Second)
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) allTorrentsCompleted() bool {
|
|
|
|
for _, t := range cl.torrents {
|
2014-09-14 17:25:53 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return false
|
|
|
|
}
|
2015-02-25 04:42:47 +00:00
|
|
|
if t.numPiecesCompleted() != t.numPieces() {
|
2014-03-16 15:30:10 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
// Returns true when all torrents are completely downloaded and false if the
|
2014-06-29 14:22:05 +00:00
|
|
|
// client is stopped before that.
|
2014-04-08 16:36:05 +00:00
|
|
|
func (me *Client) WaitAll() bool {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
2014-04-08 16:36:05 +00:00
|
|
|
defer me.mu.Unlock()
|
2014-03-16 15:30:10 +00:00
|
|
|
for !me.allTorrentsCompleted() {
|
2016-03-05 08:36:21 +00:00
|
|
|
if me.closed.IsSet() {
|
2014-04-08 16:36:05 +00:00
|
|
|
return false
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
me.event.Wait()
|
|
|
|
}
|
2014-04-08 16:36:05 +00:00
|
|
|
return true
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
|
2014-08-27 23:32:49 +00:00
|
|
|
// Handle a received chunk from a peer.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) downloadedChunk(t *Torrent, c *connection, msg *pp.Message) {
|
2015-06-22 09:48:30 +00:00
|
|
|
chunksReceived.Add(1)
|
2014-08-21 15:33:13 +00:00
|
|
|
|
2014-05-21 08:01:58 +00:00
|
|
|
req := newRequest(msg.Index, msg.Begin, pp.Integer(len(msg.Piece)))
|
2014-05-21 07:40:54 +00:00
|
|
|
|
|
|
|
// Request has been satisfied.
|
2015-06-22 09:48:30 +00:00
|
|
|
if me.connDeleteRequest(t, c, req) {
|
2016-01-24 04:21:17 +00:00
|
|
|
defer c.updateRequests()
|
2015-06-22 09:48:30 +00:00
|
|
|
} else {
|
|
|
|
unexpectedChunksReceived.Add(1)
|
|
|
|
}
|
2014-05-21 07:40:54 +00:00
|
|
|
|
2016-01-13 06:11:59 +00:00
|
|
|
index := int(req.Index)
|
2016-04-03 06:50:53 +00:00
|
|
|
piece := &t.pieces[index]
|
2015-03-10 15:39:01 +00:00
|
|
|
|
2014-05-21 07:40:54 +00:00
|
|
|
// Do we actually want this chunk?
|
2015-04-14 13:59:41 +00:00
|
|
|
if !t.wantChunk(req) {
|
2015-06-22 09:48:30 +00:00
|
|
|
unwantedChunksReceived.Add(1)
|
2014-09-11 10:30:13 +00:00
|
|
|
c.UnwantedChunksReceived++
|
2016-01-27 18:54:48 +00:00
|
|
|
return
|
2014-05-21 07:40:54 +00:00
|
|
|
}
|
|
|
|
|
2014-08-27 23:32:49 +00:00
|
|
|
c.UsefulChunksReceived++
|
|
|
|
c.lastUsefulChunkReceived = time.Now()
|
|
|
|
|
2015-06-16 06:57:47 +00:00
|
|
|
me.upload(t, c)
|
|
|
|
|
2016-01-27 18:54:48 +00:00
|
|
|
// Need to record that it hasn't been written yet, before we attempt to do
|
|
|
|
// anything with it.
|
|
|
|
piece.incrementPendingWrites()
|
2014-05-21 07:40:54 +00:00
|
|
|
// Record that we have the chunk.
|
2015-07-15 05:31:18 +00:00
|
|
|
piece.unpendChunkIndex(chunkIndex(req.chunkSpec, t.chunkSize))
|
2014-05-21 07:40:54 +00:00
|
|
|
|
2014-05-28 16:44:27 +00:00
|
|
|
// Cancel pending requests for this chunk.
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, c := range t.conns {
|
2014-05-28 16:44:27 +00:00
|
|
|
if me.connCancel(t, c, req) {
|
2016-01-24 04:21:17 +00:00
|
|
|
c.updateRequests()
|
2014-05-28 16:44:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-27 18:54:48 +00:00
|
|
|
me.mu.Unlock()
|
|
|
|
// Write the chunk out.
|
|
|
|
err := t.writeChunk(int(msg.Index), int64(msg.Begin), msg.Piece)
|
|
|
|
me.mu.Lock()
|
|
|
|
|
|
|
|
piece.decrementPendingWrites()
|
|
|
|
|
|
|
|
if err != nil {
|
2016-04-03 06:36:24 +00:00
|
|
|
log.Printf("%s: error writing chunk %v: %s", t, req, err)
|
2016-01-27 18:54:48 +00:00
|
|
|
t.pendRequest(req)
|
2016-04-03 06:36:57 +00:00
|
|
|
t.updatePieceCompletion(int(msg.Index))
|
2016-01-27 18:54:48 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's important that the piece is potentially queued before we check if
|
|
|
|
// the piece is still wanted, because if it is queued, it won't be wanted.
|
|
|
|
if t.pieceAllDirty(index) {
|
|
|
|
me.queuePieceCheck(t, int(req.Index))
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.peerTouchedPieces == nil {
|
|
|
|
c.peerTouchedPieces = make(map[int]struct{})
|
|
|
|
}
|
|
|
|
c.peerTouchedPieces[index] = struct{}{}
|
|
|
|
|
|
|
|
me.event.Broadcast()
|
|
|
|
t.publishPieceChange(int(req.Index))
|
|
|
|
return
|
2013-10-13 12:16:21 +00:00
|
|
|
}
|
|
|
|
|
2015-08-04 16:43:53 +00:00
|
|
|
// Return the connections that touched a piece, and clear the entry while
|
|
|
|
// doing it.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) reapPieceTouches(t *Torrent, piece int) (ret []*connection) {
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, c := range t.conns {
|
2015-08-04 16:43:53 +00:00
|
|
|
if _, ok := c.peerTouchedPieces[piece]; ok {
|
|
|
|
ret = append(ret, c)
|
|
|
|
delete(c.peerTouchedPieces, piece)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) pieceHashed(t *Torrent, piece int, correct bool) {
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2015-06-28 06:41:51 +00:00
|
|
|
if p.EverHashed {
|
2015-08-04 16:43:53 +00:00
|
|
|
// Don't score the first time a piece is hashed, it could be an
|
|
|
|
// initial check.
|
2015-06-28 06:41:51 +00:00
|
|
|
if correct {
|
|
|
|
pieceHashedCorrect.Add(1)
|
|
|
|
} else {
|
2016-04-03 06:36:24 +00:00
|
|
|
log.Printf("%s: piece %d (%x) failed hash", t, piece, p.Hash)
|
2015-06-28 06:41:51 +00:00
|
|
|
pieceHashedNotCorrect.Add(1)
|
|
|
|
}
|
2014-09-13 17:57:51 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
p.EverHashed = true
|
2016-04-04 05:28:25 +00:00
|
|
|
touchers := me.reapPieceTouches(t, piece)
|
2015-02-27 01:45:55 +00:00
|
|
|
if correct {
|
2016-03-28 09:38:30 +00:00
|
|
|
err := p.Storage().MarkComplete()
|
2015-06-02 14:03:43 +00:00
|
|
|
if err != nil {
|
2016-03-28 09:38:30 +00:00
|
|
|
log.Printf("%T: error completing piece %d: %s", t.storage, piece, err)
|
2015-02-27 01:45:55 +00:00
|
|
|
}
|
2016-02-16 13:00:55 +00:00
|
|
|
t.updatePieceCompletion(piece)
|
2015-08-04 16:43:53 +00:00
|
|
|
} else if len(touchers) != 0 {
|
|
|
|
log.Printf("dropping %d conns that touched piece", len(touchers))
|
|
|
|
for _, c := range touchers {
|
|
|
|
me.dropConnection(t, c)
|
|
|
|
}
|
2015-02-27 01:45:55 +00:00
|
|
|
}
|
2016-04-04 05:28:25 +00:00
|
|
|
me.pieceChanged(t, piece)
|
2015-03-10 15:41:21 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) onCompletedPiece(t *Torrent, piece int) {
|
2016-01-31 14:46:28 +00:00
|
|
|
t.pendingPieces.Remove(piece)
|
2016-02-21 16:23:49 +00:00
|
|
|
t.pendAllChunkSpecs(piece)
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, conn := range t.conns {
|
2016-01-18 14:28:56 +00:00
|
|
|
conn.Have(piece)
|
|
|
|
for r := range conn.Requests {
|
|
|
|
if int(r.Index) == piece {
|
|
|
|
conn.Cancel(r)
|
|
|
|
}
|
2014-12-03 07:07:50 +00:00
|
|
|
}
|
2016-01-18 14:28:56 +00:00
|
|
|
// Could check here if peer doesn't have piece, but due to caching
|
|
|
|
// some peers may have said they have a piece but they don't.
|
|
|
|
me.upload(t, conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) onFailedPiece(t *Torrent, piece int) {
|
2016-01-18 14:28:56 +00:00
|
|
|
if t.pieceAllDirty(piece) {
|
|
|
|
t.pendAllChunkSpecs(piece)
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2016-01-18 14:28:56 +00:00
|
|
|
if !t.wantPiece(piece) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
me.openNewConns(t)
|
2016-04-03 06:50:53 +00:00
|
|
|
for _, conn := range t.conns {
|
2016-01-18 14:28:56 +00:00
|
|
|
if conn.PeerHasPiece(piece) {
|
2016-01-24 04:21:17 +00:00
|
|
|
conn.updateRequests()
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-18 14:28:56 +00:00
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) pieceChanged(t *Torrent, piece int) {
|
2016-01-18 14:28:56 +00:00
|
|
|
correct := t.pieceComplete(piece)
|
|
|
|
defer me.event.Broadcast()
|
|
|
|
if correct {
|
|
|
|
me.onCompletedPiece(t, piece)
|
|
|
|
} else {
|
|
|
|
me.onFailedPiece(t, piece)
|
|
|
|
}
|
2016-02-11 06:57:57 +00:00
|
|
|
if t.updatePiecePriority(piece) {
|
|
|
|
t.piecePriorityChanged(piece)
|
|
|
|
}
|
2016-02-08 10:38:30 +00:00
|
|
|
t.publishPieceChange(piece)
|
2013-10-02 07:57:59 +00:00
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (cl *Client) verifyPiece(t *Torrent, piece int) {
|
2014-03-19 17:30:08 +00:00
|
|
|
cl.mu.Lock()
|
2014-09-13 18:07:05 +00:00
|
|
|
defer cl.mu.Unlock()
|
2016-04-03 06:50:53 +00:00
|
|
|
p := &t.pieces[piece]
|
2016-03-28 09:38:30 +00:00
|
|
|
for p.Hashing || t.storage == nil {
|
2014-03-19 17:30:08 +00:00
|
|
|
cl.event.Wait()
|
|
|
|
}
|
2015-02-27 01:45:55 +00:00
|
|
|
p.QueuedForHash = false
|
2016-01-04 11:34:24 +00:00
|
|
|
if t.isClosed() || t.pieceComplete(piece) {
|
2016-02-08 10:38:30 +00:00
|
|
|
t.updatePiecePriority(piece)
|
2016-02-07 10:56:59 +00:00
|
|
|
t.publishPieceChange(piece)
|
2014-07-22 15:54:11 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-19 17:30:08 +00:00
|
|
|
p.Hashing = true
|
2016-02-06 14:21:12 +00:00
|
|
|
t.publishPieceChange(piece)
|
2014-03-19 17:30:08 +00:00
|
|
|
cl.mu.Unlock()
|
2016-01-04 11:34:24 +00:00
|
|
|
sum := t.hashPiece(piece)
|
2013-10-20 14:07:01 +00:00
|
|
|
cl.mu.Lock()
|
2014-09-13 18:07:05 +00:00
|
|
|
select {
|
|
|
|
case <-t.closing:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
2014-03-19 17:30:08 +00:00
|
|
|
p.Hashing = false
|
2016-01-04 11:34:24 +00:00
|
|
|
cl.pieceHashed(t, piece, sum == p.Hash)
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
2013-10-06 07:01:39 +00:00
|
|
|
|
2015-03-08 06:28:14 +00:00
|
|
|
// Returns handles to all the torrents loaded in the Client.
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) Torrents() (ret []*Torrent) {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
|
|
|
for _, t := range me.torrents {
|
2016-04-03 08:40:43 +00:00
|
|
|
ret = append(ret, t)
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
|
|
|
me.mu.Unlock()
|
2013-10-06 07:01:39 +00:00
|
|
|
return
|
|
|
|
}
|
2015-03-18 07:32:31 +00:00
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) AddMagnet(uri string) (T *Torrent, err error) {
|
2015-03-18 07:32:31 +00:00
|
|
|
spec, err := TorrentSpecFromMagnetURI(uri)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
T, _, err = me.AddTorrentSpec(spec)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) AddTorrent(mi *metainfo.MetaInfo) (T *Torrent, err error) {
|
2015-03-18 07:32:31 +00:00
|
|
|
T, _, err = me.AddTorrentSpec(TorrentSpecFromMetaInfo(mi))
|
2016-02-24 10:56:50 +00:00
|
|
|
var ss []string
|
|
|
|
missinggo.CastSlice(&ss, mi.Nodes)
|
|
|
|
me.AddDHTNodes(ss)
|
2015-03-18 07:32:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:40:43 +00:00
|
|
|
func (me *Client) AddTorrentFromFile(filename string) (T *Torrent, err error) {
|
2015-03-18 07:32:31 +00:00
|
|
|
mi, err := metainfo.LoadFromFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2016-02-24 10:56:50 +00:00
|
|
|
return me.AddTorrent(mi)
|
2015-03-18 07:32:31 +00:00
|
|
|
}
|
2015-08-03 15:07:22 +00:00
|
|
|
|
|
|
|
func (me *Client) DHT() *dht.Server {
|
|
|
|
return me.dHT
|
|
|
|
}
|
2016-02-24 10:56:50 +00:00
|
|
|
|
|
|
|
func (me *Client) AddDHTNodes(nodes []string) {
|
|
|
|
for _, n := range nodes {
|
2016-03-15 10:32:47 +00:00
|
|
|
hmp := missinggo.SplitHostMaybePort(n)
|
2016-02-24 10:56:50 +00:00
|
|
|
ip := net.ParseIP(hmp.Host)
|
|
|
|
if ip == nil {
|
|
|
|
log.Printf("won't add DHT node with bad IP: %q", hmp.Host)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ni := dht.NodeInfo{
|
|
|
|
Addr: dht.NewAddr(&net.UDPAddr{
|
|
|
|
IP: ip,
|
|
|
|
Port: hmp.Port,
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
me.DHT().AddNode(ni)
|
|
|
|
}
|
|
|
|
}
|