2014-04-03 12:16:59 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2014-06-28 09:38:31 +00:00
|
|
|
"bitbucket.org/anacrolix/go.torrent/mmap_span"
|
|
|
|
pp "bitbucket.org/anacrolix/go.torrent/peer_protocol"
|
|
|
|
"bitbucket.org/anacrolix/go.torrent/tracker"
|
2014-04-03 12:16:59 +00:00
|
|
|
"container/list"
|
|
|
|
"fmt"
|
2014-06-28 09:38:31 +00:00
|
|
|
"github.com/anacrolix/libtorgo/bencode"
|
|
|
|
"github.com/anacrolix/libtorgo/metainfo"
|
2014-06-26 07:29:12 +00:00
|
|
|
"io"
|
2014-06-26 14:57:07 +00:00
|
|
|
"log"
|
2014-04-03 12:16:59 +00:00
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2014-05-23 10:58:11 +00:00
|
|
|
func (t *torrent) PieceNumPendingBytes(index pp.Integer) (count pp.Integer) {
|
2014-04-03 12:16:59 +00:00
|
|
|
pendingChunks := t.Pieces[index].PendingChunkSpecs
|
2014-05-23 10:58:11 +00:00
|
|
|
count = pp.Integer(len(pendingChunks)) * chunkSize
|
2014-04-03 12:16:59 +00:00
|
|
|
_lastChunkSpec := lastChunkSpec(t.PieceLength(index))
|
|
|
|
if _lastChunkSpec.Length != chunkSize {
|
|
|
|
if _, ok := pendingChunks[_lastChunkSpec]; ok {
|
|
|
|
count += _lastChunkSpec.Length - chunkSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-09 14:26:58 +00:00
|
|
|
type pieceBytesLeft struct {
|
|
|
|
Piece, BytesLeft int
|
|
|
|
}
|
|
|
|
|
|
|
|
type torrentPiece struct {
|
|
|
|
piece
|
|
|
|
bytesLeftElement *list.Element
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
type torrent struct {
|
2014-07-09 14:26:58 +00:00
|
|
|
InfoHash InfoHash
|
|
|
|
Pieces []*torrentPiece
|
|
|
|
PiecesByBytesLeft *OrderedList
|
|
|
|
Data mmap_span.MMapSpan
|
|
|
|
Info *metainfo.Info
|
|
|
|
Conns []*connection
|
|
|
|
Peers []Peer
|
|
|
|
Priorities *list.List
|
2014-04-03 12:16:59 +00:00
|
|
|
// BEP 12 Multitracker Metadata Extension. The tracker.Client instances
|
|
|
|
// mirror their respective URLs from the announce-list key.
|
2014-05-22 14:33:07 +00:00
|
|
|
Trackers [][]tracker.Client
|
|
|
|
lastReadPiece int
|
2014-06-26 14:57:07 +00:00
|
|
|
DisplayName string
|
|
|
|
MetaData []byte
|
2014-06-28 09:38:31 +00:00
|
|
|
metadataHave []bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) InvalidateMetadata() {
|
2014-07-14 13:12:52 +00:00
|
|
|
t.MetaData = nil
|
|
|
|
t.metadataHave = nil
|
2014-06-28 09:38:31 +00:00
|
|
|
t.Info = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) SaveMetadataPiece(index int, data []byte) {
|
|
|
|
if t.haveInfo() {
|
|
|
|
return
|
|
|
|
}
|
2014-07-14 13:12:52 +00:00
|
|
|
if index >= len(t.metadataHave) {
|
|
|
|
log.Printf("%s: ignoring metadata piece %d", t, index)
|
|
|
|
return
|
|
|
|
}
|
2014-06-28 09:38:31 +00:00
|
|
|
copy(t.MetaData[(1<<14)*index:], data)
|
|
|
|
t.metadataHave[index] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) MetadataPieceCount() int {
|
|
|
|
return (len(t.MetaData) + (1 << 14) - 1) / (1 << 14)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) HaveMetadataPiece(piece int) bool {
|
|
|
|
return t.haveInfo() || t.metadataHave[piece]
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 09:38:31 +00:00
|
|
|
func (t *torrent) metadataSizeKnown() bool {
|
|
|
|
return t.MetaData != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) metadataSize() int {
|
|
|
|
return len(t.MetaData)
|
|
|
|
}
|
|
|
|
|
|
|
|
func infoPieceHashes(info *metainfo.Info) (ret []string) {
|
|
|
|
for i := 0; i < len(info.Pieces); i += 20 {
|
|
|
|
ret = append(ret, string(info.Pieces[i:i+20]))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) setMetadata(md metainfo.Info, dataDir string, infoBytes []byte) (err error) {
|
|
|
|
t.Info = &md
|
|
|
|
t.MetaData = infoBytes
|
|
|
|
t.metadataHave = nil
|
|
|
|
t.Data, err = mmapTorrentData(&md, dataDir)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2014-07-09 14:26:58 +00:00
|
|
|
t.PiecesByBytesLeft = NewList(func(a, b interface{}) bool {
|
|
|
|
apb := t.PieceNumPendingBytes(pp.Integer(a.(int)))
|
|
|
|
bpb := t.PieceNumPendingBytes(pp.Integer(b.(int)))
|
|
|
|
if apb < bpb {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if apb > bpb {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return a.(int) < b.(int)
|
|
|
|
})
|
|
|
|
for index, hash := range infoPieceHashes(&md) {
|
|
|
|
piece := &torrentPiece{}
|
2014-06-28 09:38:31 +00:00
|
|
|
copyHashSum(piece.Hash[:], []byte(hash))
|
|
|
|
t.Pieces = append(t.Pieces, piece)
|
2014-07-09 14:26:58 +00:00
|
|
|
piece.bytesLeftElement = t.PiecesByBytesLeft.Insert(index)
|
|
|
|
t.pendAllChunkSpecs(pp.Integer(index))
|
2014-06-28 09:38:31 +00:00
|
|
|
}
|
|
|
|
t.Priorities = list.New()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) HaveAllMetadataPieces() bool {
|
|
|
|
if t.haveInfo() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if t.metadataHave == nil {
|
2014-06-26 14:57:07 +00:00
|
|
|
return false
|
|
|
|
}
|
2014-06-28 09:38:31 +00:00
|
|
|
for _, have := range t.metadataHave {
|
2014-06-26 14:57:07 +00:00
|
|
|
if !have {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-06-28 09:38:31 +00:00
|
|
|
func (t *torrent) SetMetadataSize(bytes int64) {
|
2014-06-26 14:57:07 +00:00
|
|
|
if t.MetaData != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.MetaData = make([]byte, bytes)
|
2014-06-28 09:38:31 +00:00
|
|
|
t.metadataHave = make([]bool, (bytes+(1<<14)-1)/(1<<14))
|
2014-06-26 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) Name() string {
|
2014-06-28 09:38:31 +00:00
|
|
|
if !t.haveInfo() {
|
2014-06-26 14:57:07 +00:00
|
|
|
return t.DisplayName
|
|
|
|
}
|
2014-06-28 09:38:31 +00:00
|
|
|
return t.Info.Name
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-26 07:29:12 +00:00
|
|
|
func (t *torrent) pieceStatusChar(index int) byte {
|
|
|
|
p := t.Pieces[index]
|
|
|
|
switch {
|
|
|
|
case p.Complete():
|
|
|
|
return 'C'
|
|
|
|
case p.QueuedForHash:
|
|
|
|
return 'Q'
|
|
|
|
case p.Hashing:
|
|
|
|
return 'H'
|
|
|
|
case t.PiecePartiallyDownloaded(index):
|
|
|
|
return 'P'
|
|
|
|
default:
|
|
|
|
return '.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-28 09:38:31 +00:00
|
|
|
func (t *torrent) metadataPieceSize(piece int) int {
|
|
|
|
return metadataPieceSize(len(t.MetaData), piece)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) NewMetadataExtensionMessage(c *connection, msgType int, piece int, data []byte) pp.Message {
|
|
|
|
d := map[string]int{
|
|
|
|
"msg_type": msgType,
|
|
|
|
"piece": piece,
|
|
|
|
}
|
|
|
|
if data != nil {
|
|
|
|
d["total_size"] = len(t.MetaData)
|
|
|
|
}
|
|
|
|
p, err := bencode.Marshal(d)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return pp.Message{
|
|
|
|
Type: pp.Extended,
|
|
|
|
ExtendedID: byte(c.PeerExtensionIDs["ut_metadata"]),
|
|
|
|
ExtendedPayload: append(p, data...),
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-06-26 07:29:12 +00:00
|
|
|
func (t *torrent) WriteStatus(w io.Writer) {
|
2014-07-09 14:26:58 +00:00
|
|
|
fmt.Fprintf(w, "Infohash: %x\n", t.InfoHash)
|
2014-06-26 07:29:12 +00:00
|
|
|
fmt.Fprint(w, "Pieces: ")
|
|
|
|
for index := range t.Pieces {
|
|
|
|
fmt.Fprintf(w, "%c", t.pieceStatusChar(index))
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w)
|
|
|
|
fmt.Fprintln(w, "Priorities: ")
|
2014-06-29 09:08:46 +00:00
|
|
|
if t.Priorities != nil {
|
|
|
|
for e := t.Priorities.Front(); e != nil; e = e.Next() {
|
|
|
|
fmt.Fprintf(w, "\t%v\n", e.Value)
|
|
|
|
}
|
2014-06-26 07:29:12 +00:00
|
|
|
}
|
|
|
|
for _, c := range t.Conns {
|
|
|
|
c.WriteStatus(w)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-20 14:52:49 +00:00
|
|
|
func (t *torrent) String() string {
|
2014-06-26 14:57:07 +00:00
|
|
|
return t.Name()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) haveInfo() bool {
|
|
|
|
return t.Info != nil
|
2014-05-20 14:52:49 +00:00
|
|
|
}
|
|
|
|
|
2014-05-22 14:35:24 +00:00
|
|
|
func (t *torrent) BytesLeft() (left int64) {
|
2014-06-26 14:57:07 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return -1
|
|
|
|
}
|
2014-05-23 10:58:11 +00:00
|
|
|
for i := pp.Integer(0); i < pp.Integer(t.NumPieces()); i++ {
|
2014-05-22 14:35:24 +00:00
|
|
|
left += int64(t.PieceNumPendingBytes(i))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-06-26 07:29:12 +00:00
|
|
|
func (t *torrent) PiecePartiallyDownloaded(index int) bool {
|
|
|
|
return t.PieceNumPendingBytes(pp.Integer(index)) != t.PieceLength(pp.Integer(index))
|
|
|
|
}
|
|
|
|
|
2014-05-23 11:01:05 +00:00
|
|
|
func NumChunksForPiece(chunkSize int, pieceSize int) int {
|
|
|
|
return (pieceSize + chunkSize - 1) / chunkSize
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *torrent) ChunkCount() (num int) {
|
|
|
|
num += (t.NumPieces() - 1) * NumChunksForPiece(chunkSize, int(t.PieceLength(0)))
|
|
|
|
num += NumChunksForPiece(chunkSize, int(t.PieceLength(pp.Integer(t.NumPieces()-1))))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-28 15:32:34 +00:00
|
|
|
func (t *torrent) UsualPieceSize() int {
|
2014-06-28 09:38:31 +00:00
|
|
|
return int(t.Info.PieceLength)
|
2014-05-28 15:32:34 +00:00
|
|
|
}
|
|
|
|
|
2014-05-23 11:01:05 +00:00
|
|
|
func (t *torrent) LastPieceSize() int {
|
|
|
|
return int(t.PieceLength(pp.Integer(t.NumPieces() - 1)))
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) NumPieces() int {
|
2014-06-28 09:38:31 +00:00
|
|
|
return len(t.Info.Pieces) / 20
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) NumPiecesCompleted() (num int) {
|
2014-04-03 12:16:59 +00:00
|
|
|
for _, p := range t.Pieces {
|
|
|
|
if p.Complete() {
|
|
|
|
num++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) Length() int64 {
|
2014-06-29 09:10:59 +00:00
|
|
|
return int64(t.LastPieceSize()) + int64(len(t.Pieces)-1)*int64(t.UsualPieceSize())
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) Close() (err error) {
|
2014-04-03 12:16:59 +00:00
|
|
|
t.Data.Close()
|
|
|
|
for _, conn := range t.Conns {
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-08 06:45:33 +00:00
|
|
|
// Return the request that would include the given offset into the torrent data.
|
|
|
|
func torrentOffsetRequest(torrentLength, pieceSize, chunkSize, offset int64) (
|
2014-04-16 11:13:44 +00:00
|
|
|
r request, ok bool) {
|
2014-04-08 06:45:33 +00:00
|
|
|
if offset < 0 || offset >= torrentLength {
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
2014-05-23 10:58:11 +00:00
|
|
|
r.Index = pp.Integer(offset / pieceSize)
|
|
|
|
r.Begin = pp.Integer(offset % pieceSize / chunkSize * chunkSize)
|
2014-04-08 06:45:33 +00:00
|
|
|
left := torrentLength - int64(r.Index)*pieceSize - int64(r.Begin)
|
|
|
|
if chunkSize < left {
|
2014-05-23 10:58:11 +00:00
|
|
|
r.Length = pp.Integer(chunkSize)
|
2014-04-08 06:45:33 +00:00
|
|
|
} else {
|
2014-05-23 10:58:11 +00:00
|
|
|
r.Length = pp.Integer(left)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
ok = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-16 11:13:44 +00:00
|
|
|
func torrentRequestOffset(torrentLength, pieceSize int64, r request) (off int64) {
|
2014-04-08 15:15:39 +00:00
|
|
|
off = int64(r.Index)*pieceSize + int64(r.Begin)
|
|
|
|
if off < 0 || off >= torrentLength {
|
|
|
|
panic("invalid request")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-16 11:13:44 +00:00
|
|
|
func (t *torrent) requestOffset(r request) int64 {
|
2014-06-28 09:38:31 +00:00
|
|
|
return torrentRequestOffset(t.Length(), int64(t.UsualPieceSize()), r)
|
2014-04-08 15:15:39 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 06:45:33 +00:00
|
|
|
// Return the request that would include the given offset into the torrent data.
|
2014-04-16 11:13:44 +00:00
|
|
|
func (t *torrent) offsetRequest(off int64) (req request, ok bool) {
|
2014-06-28 09:38:31 +00:00
|
|
|
return torrentOffsetRequest(t.Length(), t.Info.PieceLength, chunkSize, off)
|
2014-04-08 06:45:33 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) WriteChunk(piece int, begin int64, data []byte) (err error) {
|
2014-06-28 09:38:31 +00:00
|
|
|
_, err = t.Data.WriteAt(data, int64(piece)*t.Info.PieceLength+begin)
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) bitfield() (bf []bool) {
|
2014-04-03 12:16:59 +00:00
|
|
|
for _, p := range t.Pieces {
|
|
|
|
bf = append(bf, p.EverHashed && len(p.PendingChunkSpecs) == 0)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-23 10:58:11 +00:00
|
|
|
func (t *torrent) pendAllChunkSpecs(index pp.Integer) {
|
2014-04-03 12:16:59 +00:00
|
|
|
piece := t.Pieces[index]
|
|
|
|
if piece.PendingChunkSpecs == nil {
|
|
|
|
piece.PendingChunkSpecs = make(
|
2014-04-08 16:36:05 +00:00
|
|
|
map[chunkSpec]struct{},
|
2014-06-28 09:38:31 +00:00
|
|
|
(t.Info.PieceLength+chunkSize-1)/chunkSize)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
2014-04-08 16:36:05 +00:00
|
|
|
c := chunkSpec{
|
2014-04-03 12:16:59 +00:00
|
|
|
Begin: 0,
|
|
|
|
}
|
|
|
|
cs := piece.PendingChunkSpecs
|
2014-05-23 10:58:11 +00:00
|
|
|
for left := pp.Integer(t.PieceLength(index)); left != 0; left -= c.Length {
|
2014-04-03 12:16:59 +00:00
|
|
|
c.Length = left
|
|
|
|
if c.Length > chunkSize {
|
|
|
|
c.Length = chunkSize
|
|
|
|
}
|
|
|
|
cs[c] = struct{}{}
|
|
|
|
c.Begin += c.Length
|
|
|
|
}
|
2014-07-09 14:26:58 +00:00
|
|
|
t.PiecesByBytesLeft.ValueChanged(piece.bytesLeftElement)
|
2014-04-03 12:16:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type Peer struct {
|
2014-07-16 07:06:18 +00:00
|
|
|
Id [20]byte
|
|
|
|
IP net.IP
|
|
|
|
Port int
|
|
|
|
Source peerSource
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
|
2014-05-23 10:58:11 +00:00
|
|
|
func (t *torrent) PieceLength(piece pp.Integer) (len_ pp.Integer) {
|
2014-04-03 12:16:59 +00:00
|
|
|
if int(piece) == t.NumPieces()-1 {
|
2014-06-28 09:38:31 +00:00
|
|
|
len_ = pp.Integer(t.Data.Size() % t.Info.PieceLength)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
if len_ == 0 {
|
2014-06-28 09:38:31 +00:00
|
|
|
len_ = pp.Integer(t.Info.PieceLength)
|
2014-04-03 12:16:59 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-23 10:58:11 +00:00
|
|
|
func (t *torrent) HashPiece(piece pp.Integer) (ps pieceSum) {
|
2014-04-08 16:36:05 +00:00
|
|
|
hash := pieceHash.New()
|
2014-06-28 09:38:31 +00:00
|
|
|
n, err := t.Data.WriteSectionTo(hash, int64(piece)*t.Info.PieceLength, t.Info.PieceLength)
|
2014-04-03 12:16:59 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-05-23 10:58:11 +00:00
|
|
|
if pp.Integer(n) != t.PieceLength(piece) {
|
2014-06-28 09:38:31 +00:00
|
|
|
log.Print(t.Info)
|
2014-04-03 12:16:59 +00:00
|
|
|
panic(fmt.Sprintf("hashed wrong number of bytes: expected %d; did %d; piece %d", t.PieceLength(piece), n, piece))
|
|
|
|
}
|
|
|
|
copyHashSum(ps[:], hash.Sum(nil))
|
|
|
|
return
|
|
|
|
}
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) haveAllPieces() bool {
|
2014-06-27 08:57:35 +00:00
|
|
|
if !t.haveInfo() {
|
2014-06-26 14:57:07 +00:00
|
|
|
return false
|
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
for _, piece := range t.Pieces {
|
|
|
|
if !piece.Complete() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (me *torrent) haveAnyPieces() bool {
|
2014-04-03 12:16:59 +00:00
|
|
|
for _, piece := range me.Pieces {
|
|
|
|
if piece.Complete() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2014-04-08 16:36:05 +00:00
|
|
|
func (t *torrent) wantPiece(index int) bool {
|
2014-06-26 14:57:07 +00:00
|
|
|
if !t.haveInfo() {
|
|
|
|
return false
|
|
|
|
}
|
2014-04-03 12:16:59 +00:00
|
|
|
p := t.Pieces[index]
|
|
|
|
return p.EverHashed && len(p.PendingChunkSpecs) != 0
|
|
|
|
}
|