2013-09-26 09:49:15 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2013-09-30 11:51:08 +00:00
|
|
|
"bufio"
|
2013-09-29 06:45:17 +00:00
|
|
|
"container/list"
|
2013-09-28 22:11:24 +00:00
|
|
|
"crypto/rand"
|
2013-09-30 11:51:08 +00:00
|
|
|
"encoding"
|
2013-09-26 09:49:15 +00:00
|
|
|
"errors"
|
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-03-16 15:30:10 +00:00
|
|
|
mathRand "math/rand"
|
2013-09-28 22:11:24 +00:00
|
|
|
"net"
|
2013-09-26 09:49:15 +00:00
|
|
|
"os"
|
2013-10-20 14:07:01 +00:00
|
|
|
"sync"
|
2014-04-03 12:16:59 +00:00
|
|
|
"syscall"
|
2013-10-20 14:07:01 +00:00
|
|
|
"time"
|
2014-03-20 05:58:09 +00:00
|
|
|
|
|
|
|
metainfo "github.com/nsf/libtorgo/torrent"
|
|
|
|
|
|
|
|
"bitbucket.org/anacrolix/go.torrent/peer_protocol"
|
|
|
|
"bitbucket.org/anacrolix/go.torrent/tracker"
|
|
|
|
_ "bitbucket.org/anacrolix/go.torrent/tracker/udp"
|
2013-09-26 09:49:15 +00:00
|
|
|
)
|
|
|
|
|
2014-03-16 15:30:10 +00:00
|
|
|
// Currently doesn't really queue, but should in the future.
|
2013-10-20 14:07:01 +00:00
|
|
|
func (cl *Client) queuePieceCheck(t *Torrent, pieceIndex peer_protocol.Integer) {
|
|
|
|
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
|
2013-10-20 14:07:01 +00:00
|
|
|
go cl.verifyPiece(t, pieceIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) PrioritizeDataRegion(ih InfoHash, off, len_ int64) {
|
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
|
|
|
t := cl.torrent(ih)
|
2013-10-14 14:39:12 +00:00
|
|
|
newPriorities := make([]Request, 0, (len_+2*(chunkSize-1))/chunkSize)
|
2014-03-19 17:30:08 +00:00
|
|
|
for len_ > 0 {
|
2014-03-17 14:44:22 +00:00
|
|
|
// TODO: Write a function to return the Request for a given offset.
|
2014-03-20 05:58:09 +00:00
|
|
|
req, ok := t.offsetRequest(off)
|
|
|
|
if !ok {
|
|
|
|
break
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
2014-03-20 05:58:09 +00:00
|
|
|
off += int64(req.Length)
|
|
|
|
len_ -= int64(req.Length)
|
|
|
|
if _, ok = t.Pieces[req.Index].PendingChunkSpecs[req.ChunkSpec]; !ok {
|
2013-10-20 14:07:01 +00:00
|
|
|
continue
|
2013-10-14 14:39:12 +00:00
|
|
|
}
|
2014-03-20 05:58:09 +00:00
|
|
|
newPriorities = append(newPriorities, req)
|
2013-10-14 14:39:12 +00:00
|
|
|
}
|
2014-03-19 17:30:08 +00:00
|
|
|
if len(newPriorities) == 0 {
|
2013-10-14 14:39:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if t.Priorities == nil {
|
|
|
|
t.Priorities = list.New()
|
|
|
|
}
|
|
|
|
t.Priorities.PushFront(newPriorities[0])
|
|
|
|
for _, req := range newPriorities[1:] {
|
|
|
|
t.Priorities.PushBack(req)
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
for _, cn := range t.Conns {
|
|
|
|
cl.replenishConnRequests(t, cn)
|
|
|
|
}
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-13 12:16:21 +00:00
|
|
|
type DataSpec struct {
|
|
|
|
InfoHash
|
|
|
|
Request
|
|
|
|
}
|
|
|
|
|
2013-10-06 07:01:39 +00:00
|
|
|
type Client struct {
|
2014-03-19 17:30:08 +00:00
|
|
|
DataDir string
|
|
|
|
HalfOpenLimit int
|
|
|
|
PeerId [20]byte
|
|
|
|
Listener net.Listener
|
|
|
|
DisableTrackers bool
|
2013-09-28 22:11:24 +00:00
|
|
|
|
2013-10-22 07:01:56 +00:00
|
|
|
sync.Mutex
|
|
|
|
mu *sync.Mutex
|
2013-10-20 14:07:01 +00:00
|
|
|
event sync.Cond
|
2014-03-18 11:39:33 +00:00
|
|
|
quit chan struct{}
|
2013-10-20 14:07:01 +00:00
|
|
|
|
2014-03-19 17:30:08 +00:00
|
|
|
halfOpen int
|
|
|
|
torrents map[InfoHash]*Torrent
|
|
|
|
dataWaiter chan struct{}
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
|
2013-10-13 12:16:21 +00:00
|
|
|
func (cl *Client) TorrentReadAt(ih InfoHash, off int64, p []byte) (n int, err error) {
|
2013-10-20 14:07:01 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
defer cl.mu.Unlock()
|
|
|
|
t := cl.torrent(ih)
|
|
|
|
if t == nil {
|
|
|
|
err = errors.New("unknown torrent")
|
|
|
|
return
|
|
|
|
}
|
2014-03-17 14:44:22 +00:00
|
|
|
index := peer_protocol.Integer(off / t.MetaInfo.PieceLength)
|
|
|
|
// Reading outside the bounds of a file is an error.
|
|
|
|
if index < 0 {
|
|
|
|
err = os.ErrInvalid
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if int(index) >= len(t.Pieces) {
|
|
|
|
err = io.EOF
|
|
|
|
return
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
piece := t.Pieces[index]
|
|
|
|
if !piece.EverHashed {
|
|
|
|
cl.queuePieceCheck(t, index)
|
|
|
|
}
|
|
|
|
if piece.Hashing {
|
|
|
|
err = ErrDataNotReady
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pieceOff := peer_protocol.Integer(off % int64(t.PieceLength(0)))
|
|
|
|
high := int(t.PieceLength(index) - pieceOff)
|
|
|
|
if high < len(p) {
|
|
|
|
p = p[:high]
|
|
|
|
}
|
|
|
|
for cs, _ := range piece.PendingChunkSpecs {
|
|
|
|
chunkOff := int64(pieceOff) - int64(cs.Begin)
|
|
|
|
if chunkOff >= int64(t.PieceLength(index)) {
|
|
|
|
panic(chunkOff)
|
2013-10-13 12:16:21 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
if 0 <= chunkOff && chunkOff < int64(cs.Length) {
|
|
|
|
// read begins in a pending chunk
|
2013-10-13 12:16:21 +00:00
|
|
|
err = ErrDataNotReady
|
|
|
|
return
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
// pending chunk caps available data
|
|
|
|
if chunkOff < 0 && int64(len(p)) > -chunkOff {
|
|
|
|
p = p[:-chunkOff]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return t.Data.ReadAt(p, off)
|
2013-10-13 12:16:21 +00:00
|
|
|
}
|
2013-09-26 09:49:15 +00:00
|
|
|
|
2013-10-13 12:16:21 +00:00
|
|
|
func (c *Client) Start() {
|
2013-10-22 07:01:56 +00:00
|
|
|
c.mu = &c.Mutex
|
2013-11-04 13:06:40 +00:00
|
|
|
c.event.L = c.mu
|
2013-10-13 12:16:21 +00:00
|
|
|
c.torrents = make(map[InfoHash]*Torrent)
|
2013-10-14 14:39:12 +00:00
|
|
|
if c.HalfOpenLimit == 0 {
|
|
|
|
c.HalfOpenLimit = 10
|
|
|
|
}
|
2013-10-02 10:12:05 +00:00
|
|
|
o := copy(c.PeerId[:], BEP20)
|
|
|
|
_, err := rand.Read(c.PeerId[o:])
|
2013-09-28 22:11:24 +00:00
|
|
|
if err != nil {
|
|
|
|
panic("error generating peer id")
|
|
|
|
}
|
2014-03-18 11:39:33 +00:00
|
|
|
c.quit = make(chan struct{})
|
2014-03-17 14:44:22 +00:00
|
|
|
if c.Listener != nil {
|
|
|
|
go c.acceptConnections()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 05:58:09 +00:00
|
|
|
func (cl *Client) stopped() bool {
|
|
|
|
select {
|
|
|
|
case <-cl.quit:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-18 11:39:33 +00:00
|
|
|
func (me *Client) Stop() {
|
2014-03-20 11:01:56 +00:00
|
|
|
me.Lock()
|
2014-03-18 11:39:33 +00:00
|
|
|
close(me.quit)
|
|
|
|
me.event.Broadcast()
|
|
|
|
for _, t := range me.torrents {
|
|
|
|
for _, c := range t.Conns {
|
|
|
|
c.Close()
|
|
|
|
}
|
|
|
|
}
|
2014-03-20 11:01:56 +00:00
|
|
|
me.Unlock()
|
2014-03-18 11:39:33 +00:00
|
|
|
}
|
|
|
|
|
2014-03-17 14:44:22 +00:00
|
|
|
func (cl *Client) acceptConnections() {
|
|
|
|
for {
|
|
|
|
conn, err := cl.Listener.Accept()
|
2014-03-18 11:39:33 +00:00
|
|
|
select {
|
|
|
|
case <-cl.quit:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
2014-03-17 14:44:22 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
if err := cl.runConnection(conn, nil); err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
|
2013-10-06 07:01:39 +00:00
|
|
|
func (me *Client) torrent(ih InfoHash) *Torrent {
|
2013-09-28 22:11:24 +00:00
|
|
|
for _, t := range me.torrents {
|
|
|
|
if t.InfoHash == ih {
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-10-06 07:01:39 +00:00
|
|
|
func (me *Client) initiateConn(peer Peer, torrent *Torrent) {
|
2013-09-28 22:11:24 +00:00
|
|
|
if peer.Id == me.PeerId {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
me.halfOpen++
|
|
|
|
go func() {
|
2014-04-03 12:16:59 +00:00
|
|
|
addr := &net.TCPAddr{
|
2013-09-28 22:11:24 +00:00
|
|
|
IP: peer.IP,
|
|
|
|
Port: peer.Port,
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
conn, err := net.DialTimeout(addr.Network(), addr.String(), dialTimeout)
|
2013-10-20 14:07:01 +00:00
|
|
|
|
2014-04-03 12:16:59 +00:00
|
|
|
go func() {
|
|
|
|
me.mu.Lock()
|
|
|
|
defer me.mu.Unlock()
|
|
|
|
if me.halfOpen == 0 {
|
|
|
|
panic("assert")
|
|
|
|
}
|
|
|
|
me.halfOpen--
|
|
|
|
me.openNewConns()
|
|
|
|
}()
|
2013-10-20 14:07:01 +00:00
|
|
|
|
2014-04-03 12:16:59 +00:00
|
|
|
if netOpErr, ok := err.(*net.OpError); ok {
|
|
|
|
if netOpErr.Timeout() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch netOpErr.Err {
|
|
|
|
case syscall.ECONNREFUSED:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2013-09-28 22:11:24 +00:00
|
|
|
if err != nil {
|
2014-04-03 12:16:59 +00:00
|
|
|
log.Printf("error connecting to peer: %s %#v", err, err)
|
2013-09-28 22:11:24 +00:00
|
|
|
return
|
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
log.Printf("connected to %s", conn.RemoteAddr())
|
2014-03-17 14:44:22 +00:00
|
|
|
err = me.runConnection(conn, torrent)
|
2013-10-15 08:42:30 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
}
|
2013-09-28 22:11:24 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2014-03-17 14:44:22 +00:00
|
|
|
func (me *Client) runConnection(sock net.Conn, torrent *Torrent) (err error) {
|
2013-10-22 07:00:35 +00:00
|
|
|
conn := &Connection{
|
2013-09-29 06:45:17 +00:00
|
|
|
Socket: sock,
|
|
|
|
Choked: true,
|
|
|
|
PeerChoked: true,
|
|
|
|
write: make(chan []byte),
|
2013-09-30 11:51:08 +00:00
|
|
|
post: make(chan encoding.BinaryMarshaler),
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
2014-03-20 11:01:56 +00:00
|
|
|
defer func() {
|
|
|
|
// There's a lock and deferred unlock later in this function. The
|
|
|
|
// client will not be locked when this deferred is invoked.
|
|
|
|
me.mu.Lock()
|
|
|
|
defer me.mu.Unlock()
|
|
|
|
conn.Close()
|
|
|
|
}()
|
2013-09-29 06:45:17 +00:00
|
|
|
go conn.writer()
|
|
|
|
go conn.writeOptimizer()
|
|
|
|
conn.post <- peer_protocol.Bytes(peer_protocol.Protocol)
|
|
|
|
conn.post <- peer_protocol.Bytes("\x00\x00\x00\x00\x00\x00\x00\x00")
|
|
|
|
if torrent != nil {
|
|
|
|
conn.post <- peer_protocol.Bytes(torrent.InfoHash[:])
|
|
|
|
conn.post <- peer_protocol.Bytes(me.PeerId[:])
|
|
|
|
}
|
|
|
|
var b [28]byte
|
2013-10-15 08:42:30 +00:00
|
|
|
_, err = io.ReadFull(conn.Socket, b[:])
|
2014-03-20 13:14:17 +00:00
|
|
|
if err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
if err != nil {
|
2013-10-14 14:39:12 +00:00
|
|
|
err = fmt.Errorf("when reading protocol and extensions: %s", err)
|
|
|
|
return
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
|
|
|
if string(b[:20]) != peer_protocol.Protocol {
|
2013-10-14 14:39:12 +00:00
|
|
|
err = fmt.Errorf("wrong protocol: %#v", string(b[:20]))
|
2013-09-29 06:45:17 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if 8 != copy(conn.PeerExtensions[:], b[20:]) {
|
|
|
|
panic("wtf")
|
|
|
|
}
|
2014-03-20 13:14:17 +00:00
|
|
|
// log.Printf("peer extensions: %#v", string(conn.PeerExtensions[:]))
|
2013-09-29 06:45:17 +00:00
|
|
|
var infoHash [20]byte
|
|
|
|
_, err = io.ReadFull(conn.Socket, infoHash[:])
|
|
|
|
if err != nil {
|
2013-10-20 14:07:01 +00:00
|
|
|
return fmt.Errorf("reading peer info hash: %s", err)
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
|
|
|
_, err = io.ReadFull(conn.Socket, conn.PeerId[:])
|
|
|
|
if err != nil {
|
2013-10-20 14:07:01 +00:00
|
|
|
return fmt.Errorf("reading peer id: %s", err)
|
2013-09-29 06:45:17 +00:00
|
|
|
}
|
|
|
|
if torrent == nil {
|
|
|
|
torrent = me.torrent(infoHash)
|
|
|
|
if torrent == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn.post <- peer_protocol.Bytes(torrent.InfoHash[:])
|
|
|
|
conn.post <- peer_protocol.Bytes(me.PeerId[:])
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
2014-03-16 15:30:10 +00:00
|
|
|
defer me.mu.Unlock()
|
|
|
|
if !me.addConnection(torrent, conn) {
|
|
|
|
return
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
if torrent.haveAnyPieces() {
|
|
|
|
conn.Post(peer_protocol.Message{
|
|
|
|
Type: peer_protocol.Bitfield,
|
|
|
|
Bitfield: torrent.bitfield(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
err = me.connectionLoop(torrent, conn)
|
|
|
|
if err != nil {
|
2013-10-22 07:00:35 +00:00
|
|
|
err = fmt.Errorf("during Connection loop: %s", err)
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
|
|
|
me.dropConnection(torrent, conn)
|
2013-10-15 08:42:30 +00:00
|
|
|
return
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 07:00:35 +00:00
|
|
|
func (me *Client) peerGotPiece(torrent *Torrent, conn *Connection, piece int) {
|
2013-10-01 08:43:18 +00:00
|
|
|
if conn.PeerPieces == nil {
|
|
|
|
conn.PeerPieces = make([]bool, len(torrent.Pieces))
|
|
|
|
}
|
|
|
|
conn.PeerPieces[piece] = true
|
|
|
|
if torrent.wantPiece(piece) {
|
|
|
|
me.replenishConnRequests(torrent, conn)
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2013-10-01 08:43:18 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 07:00:35 +00:00
|
|
|
func (me *Client) peerUnchoked(torrent *Torrent, conn *Connection) {
|
2013-10-01 08:43:18 +00:00
|
|
|
me.replenishConnRequests(torrent, conn)
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 07:00:35 +00:00
|
|
|
func (me *Client) connectionLoop(torrent *Torrent, conn *Connection) error {
|
2013-09-30 11:51:08 +00:00
|
|
|
decoder := peer_protocol.Decoder{
|
|
|
|
R: bufio.NewReader(conn.Socket),
|
|
|
|
MaxLength: 256 * 1024,
|
|
|
|
}
|
|
|
|
for {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Unlock()
|
2014-03-20 05:58:09 +00:00
|
|
|
// TODO: Can this be allocated on the stack?
|
2013-09-30 11:51:08 +00:00
|
|
|
msg := new(peer_protocol.Message)
|
|
|
|
err := decoder.Decode(msg)
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
2013-09-30 11:51:08 +00:00
|
|
|
if err != nil {
|
2014-03-20 13:14:17 +00:00
|
|
|
if me.stopped() || err == io.EOF {
|
2014-03-20 05:58:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if msg.Keepalive {
|
|
|
|
continue
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
switch msg.Type {
|
|
|
|
case peer_protocol.Choke:
|
|
|
|
conn.PeerChoked = true
|
|
|
|
conn.Requests = nil
|
|
|
|
case peer_protocol.Unchoke:
|
|
|
|
conn.PeerChoked = false
|
|
|
|
me.peerUnchoked(torrent, conn)
|
|
|
|
case peer_protocol.Interested:
|
|
|
|
conn.PeerInterested = true
|
2014-03-17 14:44:22 +00:00
|
|
|
// TODO: This should be done from a dedicated unchoking routine.
|
|
|
|
conn.Unchoke()
|
2013-10-20 14:07:01 +00:00
|
|
|
case peer_protocol.NotInterested:
|
|
|
|
conn.PeerInterested = false
|
|
|
|
case peer_protocol.Have:
|
|
|
|
me.peerGotPiece(torrent, conn, int(msg.Index))
|
|
|
|
case peer_protocol.Request:
|
2014-03-17 14:44:22 +00:00
|
|
|
if conn.PeerRequests == nil {
|
|
|
|
conn.PeerRequests = make(map[Request]struct{}, maxRequests)
|
|
|
|
}
|
|
|
|
request := Request{
|
2013-10-20 14:07:01 +00:00
|
|
|
Index: msg.Index,
|
|
|
|
ChunkSpec: ChunkSpec{msg.Begin, msg.Length},
|
2014-03-17 14:44:22 +00:00
|
|
|
}
|
|
|
|
conn.PeerRequests[request] = struct{}{}
|
|
|
|
// TODO: Requests should be satisfied from a dedicated upload routine.
|
|
|
|
p := make([]byte, msg.Length)
|
|
|
|
n, err := torrent.Data.ReadAt(p, int64(torrent.PieceLength(0))*int64(msg.Index)+int64(msg.Begin))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("reading torrent data to serve request %s: %s", request, err)
|
|
|
|
}
|
|
|
|
if n != int(msg.Length) {
|
|
|
|
return fmt.Errorf("bad request: %s", msg)
|
|
|
|
}
|
|
|
|
conn.Post(peer_protocol.Message{
|
|
|
|
Type: peer_protocol.Piece,
|
|
|
|
Index: msg.Index,
|
|
|
|
Begin: msg.Begin,
|
|
|
|
Piece: p,
|
|
|
|
})
|
2013-10-20 14:07:01 +00:00
|
|
|
case peer_protocol.Bitfield:
|
|
|
|
if len(msg.Bitfield) < len(torrent.Pieces) {
|
|
|
|
err = errors.New("received invalid bitfield")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if conn.PeerPieces != nil {
|
|
|
|
err = errors.New("received unexpected bitfield")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
conn.PeerPieces = msg.Bitfield[:len(torrent.Pieces)]
|
|
|
|
for index, has := range conn.PeerPieces {
|
|
|
|
if has {
|
|
|
|
me.peerGotPiece(torrent, conn, index)
|
2013-10-02 07:57:59 +00:00
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
case peer_protocol.Piece:
|
|
|
|
request_ := Request{msg.Index, ChunkSpec{msg.Begin, peer_protocol.Integer(len(msg.Piece))}}
|
|
|
|
if _, ok := conn.Requests[request_]; !ok {
|
2014-04-03 12:16:59 +00:00
|
|
|
err = fmt.Errorf("unexpected piece: %s", request_)
|
2013-10-20 14:07:01 +00:00
|
|
|
break
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
delete(conn.Requests, request_)
|
|
|
|
err = me.downloadedChunk(torrent, msg)
|
|
|
|
default:
|
|
|
|
log.Printf("received unknown message type: %#v", msg.Type)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
me.replenishConnRequests(torrent, conn)
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-22 07:00:35 +00:00
|
|
|
func (me *Client) dropConnection(torrent *Torrent, conn *Connection) {
|
2013-09-30 11:51:08 +00:00
|
|
|
conn.Socket.Close()
|
|
|
|
for i0, c := range torrent.Conns {
|
|
|
|
if c != conn {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
i1 := len(torrent.Conns) - 1
|
|
|
|
if i0 != i1 {
|
|
|
|
torrent.Conns[i0] = torrent.Conns[i1]
|
|
|
|
}
|
|
|
|
torrent.Conns = torrent.Conns[:i1]
|
|
|
|
return
|
|
|
|
}
|
2013-10-22 07:00:35 +00:00
|
|
|
panic("no such Connection")
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 07:00:35 +00:00
|
|
|
func (me *Client) addConnection(t *Torrent, c *Connection) bool {
|
2014-03-16 15:30:10 +00:00
|
|
|
for _, c0 := range t.Conns {
|
|
|
|
if c.PeerId == c0.PeerId {
|
|
|
|
log.Printf("%s and %s have the same ID: %s", c.Socket.RemoteAddr(), c0.Socket.RemoteAddr(), c.PeerId)
|
2013-09-30 11:51:08 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.Conns = append(t.Conns, c)
|
|
|
|
return true
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-06 07:01:39 +00:00
|
|
|
func (me *Client) openNewConns() {
|
2013-09-28 22:11:24 +00:00
|
|
|
for _, t := range me.torrents {
|
|
|
|
for len(t.Peers) != 0 {
|
|
|
|
if me.halfOpen >= me.HalfOpenLimit {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p := t.Peers[0]
|
|
|
|
t.Peers = t.Peers[1:]
|
|
|
|
me.initiateConn(p, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 14:07:01 +00:00
|
|
|
func (me *Client) AddPeers(infoHash InfoHash, peers []Peer) error {
|
|
|
|
me.mu.Lock()
|
|
|
|
t := me.torrent(infoHash)
|
|
|
|
if t == nil {
|
|
|
|
return errors.New("no such torrent")
|
|
|
|
}
|
|
|
|
t.Peers = append(t.Peers, peers...)
|
|
|
|
me.openNewConns()
|
|
|
|
me.mu.Unlock()
|
|
|
|
return nil
|
2013-09-28 22:11:24 +00:00
|
|
|
}
|
|
|
|
|
2014-03-16 15:30:10 +00:00
|
|
|
// 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.
|
|
|
|
func newTorrent(metaInfo *metainfo.MetaInfo, dataDir string) (torrent *Torrent, err error) {
|
|
|
|
torrent = &Torrent{
|
2013-09-26 09:49:15 +00:00
|
|
|
InfoHash: BytesInfoHash(metaInfo.InfoHash),
|
2013-10-13 12:16:21 +00:00
|
|
|
MetaInfo: metaInfo,
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
2014-03-20 05:58:09 +00:00
|
|
|
torrent.Data, err = mmapTorrentData(metaInfo, dataDir)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2013-09-26 09:49:15 +00:00
|
|
|
for offset := 0; offset < len(metaInfo.Pieces); offset += PieceHash.Size() {
|
|
|
|
hash := metaInfo.Pieces[offset : offset+PieceHash.Size()]
|
|
|
|
if len(hash) != PieceHash.Size() {
|
2014-03-16 15:30:10 +00:00
|
|
|
err = errors.New("bad piece hash in metainfo")
|
|
|
|
return
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
piece := &piece{}
|
2013-09-26 09:49:15 +00:00
|
|
|
copyHashSum(piece.Hash[:], hash)
|
|
|
|
torrent.Pieces = append(torrent.Pieces, piece)
|
2014-03-20 05:58:09 +00:00
|
|
|
torrent.pendAllChunkSpecs(peer_protocol.Integer(len(torrent.Pieces) - 1))
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
|
|
|
torrent.Trackers = make([][]tracker.Client, len(metaInfo.AnnounceList))
|
|
|
|
for tierIndex := range metaInfo.AnnounceList {
|
|
|
|
tier := torrent.Trackers[tierIndex]
|
|
|
|
for _, url := range metaInfo.AnnounceList[tierIndex] {
|
|
|
|
tr, err := tracker.New(url)
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
tier = append(tier, tr)
|
|
|
|
}
|
|
|
|
// 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
|
|
|
|
for i := range tier {
|
|
|
|
j := mathRand.Intn(i + 1)
|
|
|
|
tier[i], tier[j] = tier[j], tier[i]
|
|
|
|
}
|
|
|
|
torrent.Trackers[tierIndex] = tier
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *Client) AddTorrent(metaInfo *metainfo.MetaInfo) error {
|
|
|
|
torrent, err := newTorrent(metaInfo, me.DataDir)
|
2013-09-26 09:49:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
|
|
|
defer me.mu.Unlock()
|
|
|
|
if _, ok := me.torrents[torrent.InfoHash]; ok {
|
|
|
|
return torrent.Close()
|
|
|
|
}
|
|
|
|
me.torrents[torrent.InfoHash] = torrent
|
2014-03-19 17:30:08 +00:00
|
|
|
if !me.DisableTrackers {
|
|
|
|
go me.announceTorrent(torrent)
|
|
|
|
}
|
2014-03-17 14:44:22 +00:00
|
|
|
for i := range torrent.Pieces {
|
|
|
|
me.queuePieceCheck(torrent, peer_protocol.Integer(i))
|
|
|
|
}
|
2013-09-26 09:49:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-03-20 13:12:53 +00:00
|
|
|
func (cl *Client) listenerAnnouncePort() (port int16) {
|
|
|
|
l := cl.Listener
|
|
|
|
if l == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
addr := l.Addr()
|
|
|
|
switch data := addr.(type) {
|
|
|
|
case *net.TCPAddr:
|
|
|
|
return int16(data.Port)
|
|
|
|
case *net.UDPAddr:
|
|
|
|
return int16(data.Port)
|
|
|
|
default:
|
|
|
|
log.Printf("unknown listener addr type: %T", addr)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-16 15:30:10 +00:00
|
|
|
func (cl *Client) announceTorrent(t *Torrent) {
|
|
|
|
req := tracker.AnnounceRequest{
|
|
|
|
Event: tracker.Started,
|
|
|
|
NumWant: -1,
|
2014-03-20 13:12:53 +00:00
|
|
|
Port: cl.listenerAnnouncePort(),
|
2014-03-16 15:30:10 +00:00
|
|
|
}
|
|
|
|
req.PeerId = cl.PeerId
|
|
|
|
req.InfoHash = t.InfoHash
|
|
|
|
newAnnounce:
|
|
|
|
for {
|
|
|
|
for _, tier := range t.Trackers {
|
|
|
|
for trIndex, tr := range tier {
|
|
|
|
if err := tr.Connect(); err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
resp, err := tr.Announce(&req)
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var peers []Peer
|
|
|
|
for _, peer := range resp.Peers {
|
|
|
|
peers = append(peers, Peer{
|
2014-03-17 14:44:22 +00:00
|
|
|
IP: peer.IP,
|
|
|
|
Port: peer.Port,
|
2014-03-16 15:30:10 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
if err := cl.AddPeers(t.InfoHash, peers); err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Printf("%d new peers from %s", len(peers), "TODO")
|
|
|
|
tier[0], tier[trIndex] = tier[trIndex], tier[0]
|
|
|
|
time.Sleep(time.Second * time.Duration(resp.Interval))
|
|
|
|
continue newAnnounce
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) allTorrentsCompleted() bool {
|
|
|
|
for _, t := range cl.torrents {
|
|
|
|
if !t.haveAllPieces() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2013-10-06 07:01:39 +00:00
|
|
|
func (me *Client) WaitAll() {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
2014-03-16 15:30:10 +00:00
|
|
|
for !me.allTorrentsCompleted() {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.event.Wait()
|
|
|
|
}
|
|
|
|
me.mu.Unlock()
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 07:00:35 +00:00
|
|
|
func (me *Client) replenishConnRequests(torrent *Torrent, conn *Connection) {
|
2013-10-14 14:39:12 +00:00
|
|
|
requestHeatMap := torrent.requestHeat()
|
2013-10-15 08:42:30 +00:00
|
|
|
addRequest := func(req Request) (again bool) {
|
2013-10-20 14:07:01 +00:00
|
|
|
piece := torrent.Pieces[req.Index]
|
|
|
|
if piece.Hashing {
|
2014-03-19 17:30:08 +00:00
|
|
|
// We can't be sure we want this.
|
2013-10-15 08:42:30 +00:00
|
|
|
return true
|
2013-10-01 08:43:18 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
if piece.Complete() {
|
2014-03-19 17:30:08 +00:00
|
|
|
// We already have this.
|
2013-10-15 08:42:30 +00:00
|
|
|
return true
|
2013-10-14 14:39:12 +00:00
|
|
|
}
|
|
|
|
if requestHeatMap[req] > 0 {
|
2014-03-19 17:30:08 +00:00
|
|
|
// We've already requested this.
|
2013-10-15 08:42:30 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return conn.Request(req)
|
|
|
|
}
|
2014-03-19 17:30:08 +00:00
|
|
|
// First request prioritized chunks.
|
2013-10-15 08:42:30 +00:00
|
|
|
if torrent.Priorities != nil {
|
|
|
|
for e := torrent.Priorities.Front(); e != nil; e = e.Next() {
|
|
|
|
if !addRequest(e.Value.(Request)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
// Then finish off incomplete pieces in order of bytes remaining.
|
2013-10-15 08:42:30 +00:00
|
|
|
for _, index := range torrent.piecesByPendingBytesDesc() {
|
2013-10-20 14:07:01 +00:00
|
|
|
if torrent.PieceNumPendingBytes(index) == torrent.PieceLength(index) {
|
2013-10-14 14:39:12 +00:00
|
|
|
continue
|
|
|
|
}
|
2013-10-15 08:42:30 +00:00
|
|
|
for chunkSpec := range torrent.Pieces[index].PendingChunkSpecs {
|
|
|
|
if !addRequest(Request{index, chunkSpec}) {
|
|
|
|
return
|
|
|
|
}
|
2013-10-01 08:43:18 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-20 05:58:09 +00:00
|
|
|
if len(conn.Requests) == 0 {
|
|
|
|
conn.SetInterested(false)
|
|
|
|
}
|
2013-10-13 12:16:21 +00:00
|
|
|
}
|
2013-10-01 08:43:18 +00:00
|
|
|
|
2013-10-14 14:39:12 +00:00
|
|
|
func (me *Client) downloadedChunk(torrent *Torrent, msg *peer_protocol.Message) (err error) {
|
|
|
|
request := Request{msg.Index, ChunkSpec{msg.Begin, peer_protocol.Integer(len(msg.Piece))}}
|
|
|
|
if _, ok := torrent.Pieces[request.Index].PendingChunkSpecs[request.ChunkSpec]; !ok {
|
|
|
|
log.Printf("got unnecessary chunk: %s", request)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = torrent.WriteChunk(int(msg.Index), int64(msg.Begin), msg.Piece)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
delete(torrent.Pieces[request.Index].PendingChunkSpecs, request.ChunkSpec)
|
|
|
|
if len(torrent.Pieces[request.Index].PendingChunkSpecs) == 0 {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.queuePieceCheck(torrent, request.Index)
|
2013-10-14 14:39:12 +00:00
|
|
|
}
|
|
|
|
var next *list.Element
|
|
|
|
for e := torrent.Priorities.Front(); e != nil; e = next {
|
|
|
|
next = e.Next()
|
|
|
|
if e.Value.(Request) == request {
|
|
|
|
torrent.Priorities.Remove(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
me.dataReady(DataSpec{torrent.InfoHash, request})
|
|
|
|
return
|
2013-10-13 12:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) dataReady(ds DataSpec) {
|
2014-03-19 17:30:08 +00:00
|
|
|
if cl.dataWaiter != nil {
|
|
|
|
close(cl.dataWaiter)
|
2013-10-13 12:16:21 +00:00
|
|
|
}
|
2014-03-19 17:30:08 +00:00
|
|
|
cl.dataWaiter = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cl *Client) DataWaiter() <-chan struct{} {
|
|
|
|
cl.Lock()
|
|
|
|
defer cl.Unlock()
|
|
|
|
if cl.dataWaiter == nil {
|
|
|
|
cl.dataWaiter = make(chan struct{})
|
|
|
|
}
|
|
|
|
return cl.dataWaiter
|
2013-10-01 08:43:18 +00:00
|
|
|
}
|
|
|
|
|
2013-10-20 14:07:01 +00:00
|
|
|
func (me *Client) pieceHashed(t *Torrent, piece peer_protocol.Integer, correct bool) {
|
|
|
|
p := t.Pieces[piece]
|
|
|
|
p.EverHashed = true
|
|
|
|
if correct {
|
|
|
|
p.PendingChunkSpecs = nil
|
2014-03-20 13:14:17 +00:00
|
|
|
log.Printf("got piece %d, (%d/%d)", piece, t.NumPiecesCompleted(), t.NumPieces())
|
2013-10-14 14:39:12 +00:00
|
|
|
var next *list.Element
|
2013-10-20 14:07:01 +00:00
|
|
|
if t.Priorities != nil {
|
|
|
|
for e := t.Priorities.Front(); e != nil; e = next {
|
2013-10-14 14:39:12 +00:00
|
|
|
next = e.Next()
|
|
|
|
if e.Value.(Request).Index == piece {
|
2013-10-20 14:07:01 +00:00
|
|
|
t.Priorities.Remove(e)
|
2013-10-14 14:39:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-13 12:16:21 +00:00
|
|
|
me.dataReady(DataSpec{
|
2013-10-20 14:07:01 +00:00
|
|
|
t.InfoHash,
|
2013-10-13 12:16:21 +00:00
|
|
|
Request{
|
|
|
|
peer_protocol.Integer(piece),
|
2013-10-20 14:07:01 +00:00
|
|
|
ChunkSpec{0, peer_protocol.Integer(t.PieceLength(piece))},
|
2013-10-13 12:16:21 +00:00
|
|
|
},
|
|
|
|
})
|
2013-10-20 14:07:01 +00:00
|
|
|
} else {
|
|
|
|
if len(p.PendingChunkSpecs) == 0 {
|
2014-03-20 05:58:09 +00:00
|
|
|
t.pendAllChunkSpecs(piece)
|
2013-10-20 14:07:01 +00:00
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2013-10-20 14:07:01 +00:00
|
|
|
for _, conn := range t.Conns {
|
2013-09-30 11:51:08 +00:00
|
|
|
if correct {
|
|
|
|
conn.Post(peer_protocol.Message{
|
|
|
|
Type: peer_protocol.Have,
|
|
|
|
Index: peer_protocol.Integer(piece),
|
|
|
|
})
|
2014-03-20 13:40:54 +00:00
|
|
|
// TODO: Cancel requests for this piece.
|
2013-09-30 11:51:08 +00:00
|
|
|
} else {
|
|
|
|
if conn.PeerHasPiece(piece) {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.replenishConnRequests(t, conn)
|
2013-09-30 11:51:08 +00:00
|
|
|
}
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-16 15:30:10 +00:00
|
|
|
me.event.Broadcast()
|
2013-10-02 07:57:59 +00:00
|
|
|
}
|
2013-09-30 11:51:08 +00:00
|
|
|
|
2013-10-20 14:07:01 +00:00
|
|
|
func (cl *Client) verifyPiece(t *Torrent, index peer_protocol.Integer) {
|
2014-03-19 17:30:08 +00:00
|
|
|
cl.mu.Lock()
|
|
|
|
p := t.Pieces[index]
|
|
|
|
for p.Hashing {
|
|
|
|
cl.event.Wait()
|
|
|
|
}
|
|
|
|
p.Hashing = true
|
|
|
|
p.QueuedForHash = false
|
|
|
|
cl.mu.Unlock()
|
2013-10-20 14:07:01 +00:00
|
|
|
sum := t.HashPiece(index)
|
|
|
|
cl.mu.Lock()
|
2014-03-19 17:30:08 +00:00
|
|
|
p.Hashing = false
|
|
|
|
cl.pieceHashed(t, index, sum == p.Hash)
|
2013-10-20 14:07:01 +00:00
|
|
|
cl.mu.Unlock()
|
2013-09-26 09:49:15 +00:00
|
|
|
}
|
2013-10-06 07:01:39 +00:00
|
|
|
|
|
|
|
func (me *Client) Torrents() (ret []*Torrent) {
|
2013-10-20 14:07:01 +00:00
|
|
|
me.mu.Lock()
|
|
|
|
for _, t := range me.torrents {
|
|
|
|
ret = append(ret, t)
|
|
|
|
}
|
|
|
|
me.mu.Unlock()
|
2013-10-06 07:01:39 +00:00
|
|
|
return
|
|
|
|
}
|