2014-04-03 12:16:59 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2017-11-08 04:00:18 +00:00
|
|
|
"net"
|
2014-08-21 11:08:56 +00:00
|
|
|
|
2021-12-17 11:06:21 +00:00
|
|
|
"github.com/RoaringBitmap/roaring"
|
2019-12-18 02:52:00 +00:00
|
|
|
"github.com/anacrolix/missinggo/v2"
|
2021-05-12 23:56:58 +00:00
|
|
|
"github.com/anacrolix/torrent/types"
|
2019-08-21 10:58:40 +00:00
|
|
|
"golang.org/x/time/rate"
|
|
|
|
|
2015-06-02 14:17:58 +00:00
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2015-04-07 16:17:15 +00:00
|
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
2014-04-03 12:16:59 +00:00
|
|
|
)
|
|
|
|
|
2021-05-12 23:56:58 +00:00
|
|
|
type (
|
|
|
|
Request = types.Request
|
|
|
|
ChunkSpec = types.ChunkSpec
|
|
|
|
piecePriority = types.PiecePriority
|
|
|
|
)
|
2014-04-03 12:16:59 +00:00
|
|
|
|
2021-05-12 23:56:58 +00:00
|
|
|
const (
|
|
|
|
PiecePriorityNormal = types.PiecePriorityNormal
|
|
|
|
PiecePriorityNone = types.PiecePriorityNone
|
|
|
|
PiecePriorityNow = types.PiecePriorityNow
|
|
|
|
PiecePriorityReadahead = types.PiecePriorityReadahead
|
|
|
|
PiecePriorityNext = types.PiecePriorityNext
|
|
|
|
PiecePriorityHigh = types.PiecePriorityHigh
|
|
|
|
)
|
2018-02-03 02:35:09 +00:00
|
|
|
|
2021-01-28 03:23:22 +00:00
|
|
|
func newRequest(index, begin, length pp.Integer) Request {
|
|
|
|
return Request{index, ChunkSpec{begin, length}}
|
2014-04-16 07:33:33 +00:00
|
|
|
}
|
|
|
|
|
2021-01-28 03:23:22 +00:00
|
|
|
func newRequestFromMessage(msg *pp.Message) Request {
|
2018-02-02 08:19:14 +00:00
|
|
|
switch msg.Type {
|
2018-02-02 12:56:06 +00:00
|
|
|
case pp.Request, pp.Cancel, pp.Reject:
|
2018-02-02 08:19:14 +00:00
|
|
|
return newRequest(msg.Index, msg.Begin, msg.Length)
|
|
|
|
case pp.Piece:
|
|
|
|
return newRequest(msg.Index, msg.Begin, pp.Integer(len(msg.Piece)))
|
|
|
|
default:
|
|
|
|
panic(msg.Type)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 03:53:00 +00:00
|
|
|
// The size in bytes of a metadata extension piece.
|
2021-12-17 21:58:56 +00:00
|
|
|
func metadataPieceSize(totalSize, piece int) int {
|
2014-06-26 14:57:07 +00:00
|
|
|
ret := totalSize - piece*(1<<14)
|
|
|
|
if ret > 1<<14 {
|
|
|
|
ret = 1 << 14
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2015-03-10 15:41:21 +00:00
|
|
|
|
2015-04-07 16:20:01 +00:00
|
|
|
// Return the request that would include the given offset into the torrent data.
|
2021-09-02 10:53:49 +00:00
|
|
|
func torrentOffsetRequest(
|
|
|
|
torrentLength, pieceSize, chunkSize, offset int64,
|
|
|
|
) (
|
|
|
|
r Request, ok bool,
|
|
|
|
) {
|
2015-04-07 16:20:01 +00:00
|
|
|
if offset < 0 || offset >= torrentLength {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Index = pp.Integer(offset / pieceSize)
|
|
|
|
r.Begin = pp.Integer(offset % pieceSize / chunkSize * chunkSize)
|
|
|
|
r.Length = pp.Integer(chunkSize)
|
|
|
|
pieceLeft := pp.Integer(pieceSize - int64(r.Begin))
|
|
|
|
if r.Length > pieceLeft {
|
|
|
|
r.Length = pieceLeft
|
|
|
|
}
|
|
|
|
torrentLeft := torrentLength - int64(r.Index)*pieceSize - int64(r.Begin)
|
|
|
|
if int64(r.Length) > torrentLeft {
|
|
|
|
r.Length = pp.Integer(torrentLeft)
|
|
|
|
}
|
|
|
|
ok = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-28 03:23:22 +00:00
|
|
|
func torrentRequestOffset(torrentLength, pieceSize int64, r Request) (off int64) {
|
2015-04-07 16:20:01 +00:00
|
|
|
off = int64(r.Index)*pieceSize + int64(r.Begin)
|
|
|
|
if off < 0 || off >= torrentLength {
|
2021-01-28 03:23:22 +00:00
|
|
|
panic("invalid Request")
|
2015-04-07 16:20:01 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-06-02 14:17:58 +00:00
|
|
|
|
|
|
|
func validateInfo(info *metainfo.Info) error {
|
|
|
|
if len(info.Pieces)%20 != 0 {
|
|
|
|
return errors.New("pieces has invalid length")
|
|
|
|
}
|
2016-09-12 06:54:43 +00:00
|
|
|
if info.PieceLength == 0 {
|
|
|
|
if info.TotalLength() != 0 {
|
|
|
|
return errors.New("zero piece length")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if int((info.TotalLength()+info.PieceLength-1)/info.PieceLength) != info.NumPieces() {
|
|
|
|
return errors.New("piece count and file lengths are at odds")
|
|
|
|
}
|
2015-06-02 14:17:58 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-03-22 02:11:36 +00:00
|
|
|
|
2021-12-17 21:58:56 +00:00
|
|
|
func chunkIndexSpec(index, pieceLength, chunkSize pp.Integer) ChunkSpec {
|
2021-01-28 03:23:22 +00:00
|
|
|
ret := ChunkSpec{pp.Integer(index) * chunkSize, chunkSize}
|
2016-03-22 02:11:36 +00:00
|
|
|
if ret.Begin+ret.Length > pieceLength {
|
|
|
|
ret.Length = pieceLength - ret.Begin
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2016-11-23 01:59:23 +00:00
|
|
|
|
2021-01-20 02:10:32 +00:00
|
|
|
func connLessTrusted(l, r *Peer) bool {
|
2019-12-18 02:52:00 +00:00
|
|
|
return l.trust().Less(r.trust())
|
2016-11-23 01:59:23 +00:00
|
|
|
}
|
2017-11-08 04:00:18 +00:00
|
|
|
|
2018-04-12 01:41:07 +00:00
|
|
|
func connIsIpv6(nc interface {
|
|
|
|
LocalAddr() net.Addr
|
|
|
|
}) bool {
|
|
|
|
ra := nc.LocalAddr()
|
2020-02-20 05:47:37 +00:00
|
|
|
rip := addrIpOrNil(ra)
|
2018-02-12 13:48:21 +00:00
|
|
|
return rip.To4() == nil && rip.To16() != nil
|
|
|
|
}
|
2018-02-16 01:14:15 +00:00
|
|
|
|
|
|
|
func clamp(min, value, max int64) int64 {
|
|
|
|
if min > max {
|
|
|
|
panic("harumph")
|
|
|
|
}
|
|
|
|
if value < min {
|
|
|
|
value = min
|
|
|
|
}
|
|
|
|
if value > max {
|
|
|
|
value = max
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
|
|
|
func max(as ...int64) int64 {
|
|
|
|
ret := as[0]
|
|
|
|
for _, a := range as[1:] {
|
|
|
|
if a > ret {
|
|
|
|
ret = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2021-12-23 21:55:57 +00:00
|
|
|
func maxInt(as ...int) int {
|
|
|
|
ret := as[0]
|
|
|
|
for _, a := range as[1:] {
|
|
|
|
if a > ret {
|
|
|
|
ret = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2018-02-16 01:14:15 +00:00
|
|
|
func min(as ...int64) int64 {
|
|
|
|
ret := as[0]
|
|
|
|
for _, a := range as[1:] {
|
|
|
|
if a < ret {
|
|
|
|
ret = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2018-06-11 02:20:51 +00:00
|
|
|
|
2021-05-12 07:45:36 +00:00
|
|
|
func minInt(as ...int) int {
|
|
|
|
ret := as[0]
|
|
|
|
for _, a := range as[1:] {
|
|
|
|
if a < ret {
|
|
|
|
ret = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2018-06-11 02:20:51 +00:00
|
|
|
var unlimited = rate.NewLimiter(rate.Inf, 0)
|
2018-06-26 03:04:15 +00:00
|
|
|
|
2018-07-07 01:32:52 +00:00
|
|
|
type (
|
2018-07-17 11:28:01 +00:00
|
|
|
pieceIndex = int
|
2018-07-07 01:32:52 +00:00
|
|
|
InfoHash = metainfo.Hash
|
2018-11-15 23:35:30 +00:00
|
|
|
IpPort = missinggo.IpPort
|
2018-07-07 01:32:52 +00:00
|
|
|
)
|
2021-12-17 11:06:21 +00:00
|
|
|
|
|
|
|
func boolSliceToBitmap(slice []bool) (rb roaring.Bitmap) {
|
|
|
|
for i, b := range slice {
|
|
|
|
if b {
|
|
|
|
rb.AddInt(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|