torrent/webseed-peer.go

175 lines
4.4 KiB
Go
Raw Normal View History

2020-05-30 07:52:27 +00:00
package torrent
import (
2021-02-09 08:21:54 +00:00
"context"
"errors"
"fmt"
"sync"
2020-06-01 08:25:45 +00:00
"github.com/RoaringBitmap/roaring"
2021-10-20 23:28:57 +00:00
"github.com/anacrolix/log"
"github.com/anacrolix/torrent/metainfo"
2020-06-01 08:41:21 +00:00
pp "github.com/anacrolix/torrent/peer_protocol"
2020-06-01 08:25:45 +00:00
"github.com/anacrolix/torrent/webseed"
2020-05-30 07:52:27 +00:00
)
type webseedPeer struct {
client webseed.Client
activeRequests map[Request]webseed.Request
requesterCond sync.Cond
peer Peer
// Number of requester routines.
maxRequests int
2020-06-01 08:25:45 +00:00
}
var _ peerImpl = (*webseedPeer)(nil)
2020-06-01 08:25:45 +00:00
func (me *webseedPeer) connStatusString() string {
return me.client.Url
}
func (ws *webseedPeer) String() string {
return fmt.Sprintf("webseed peer for %q", ws.client.Url)
}
func (ws *webseedPeer) onGotInfo(info *metainfo.Info) {
ws.client.SetInfo(info)
// There should be probably be a callback in Client instead, so it can remove pieces at its whim
// too.
ws.client.Pieces.Iterate(func(x uint32) bool {
ws.peer.t.incPieceAvailability(pieceIndex(x))
return true
})
}
func (ws *webseedPeer) writeInterested(interested bool) bool {
2020-05-30 07:52:27 +00:00
return true
}
func (ws *webseedPeer) _cancel(r RequestIndex) bool {
active, ok := ws.activeRequests[ws.peer.t.requestIndexToRequest(r)]
2021-05-09 13:38:38 +00:00
if ok {
active.Cancel()
}
if !ws.peer.deleteRequest(r) {
panic("cancelled webseed request should exist")
}
if ws.peer.isLowOnRequests() {
ws.peer.updateRequests("webseedPeer._cancel")
}
return true
2020-05-30 07:52:27 +00:00
}
func (ws *webseedPeer) intoSpec(r Request) webseed.RequestSpec {
return webseed.RequestSpec{ws.peer.t.requestOffset(r), int64(r.Length)}
}
func (ws *webseedPeer) _request(r Request) bool {
ws.requesterCond.Signal()
return true
2020-05-30 07:52:27 +00:00
}
func (ws *webseedPeer) doRequest(r Request) {
webseedRequest := ws.client.NewRequest(ws.intoSpec(r))
ws.activeRequests[r] = webseedRequest
2021-02-09 08:21:54 +00:00
func() {
ws.requesterCond.L.Unlock()
defer ws.requesterCond.L.Lock()
ws.requestResultHandler(r, webseedRequest)
}()
delete(ws.activeRequests, r)
}
func (ws *webseedPeer) requester() {
ws.requesterCond.L.Lock()
defer ws.requesterCond.L.Unlock()
start:
for !ws.peer.closed.IsSet() {
2021-09-19 05:16:37 +00:00
restart := false
ws.peer.actualRequestState.Requests.Iterate(func(x uint32) bool {
r := ws.peer.t.requestIndexToRequest(x)
if _, ok := ws.activeRequests[r]; ok {
2021-09-19 05:16:37 +00:00
return true
}
ws.doRequest(r)
2021-09-19 05:16:37 +00:00
restart = true
return false
})
if restart {
goto start
}
ws.requesterCond.Wait()
}
}
func (ws *webseedPeer) connectionFlags() string {
2020-05-30 07:52:27 +00:00
return "WS"
}
2021-01-04 04:51:23 +00:00
// TODO: This is called when banning peers. Perhaps we want to be able to ban webseeds too. We could
// return bool if this is even possible, and if it isn't, skip to the next drop candidate.
func (ws *webseedPeer) drop() {}
2020-05-30 07:52:27 +00:00
2021-10-20 23:28:57 +00:00
func (ws *webseedPeer) handleUpdateRequests() {
ws.peer.maybeUpdateActualRequestState()
2020-05-30 07:52:27 +00:00
}
2020-05-31 03:09:56 +00:00
func (ws *webseedPeer) onClose() {
2021-10-20 23:28:57 +00:00
ws.peer.logger.WithLevel(log.Debug).Print("closing")
ws.peer.deleteAllRequests()
2021-02-09 08:21:54 +00:00
for _, r := range ws.activeRequests {
r.Cancel()
}
ws.requesterCond.Broadcast()
}
2020-06-01 08:41:21 +00:00
func (ws *webseedPeer) requestResultHandler(r Request, webseedRequest webseed.Request) {
2020-06-02 06:41:49 +00:00
result := <-webseedRequest.Result
// We do this here rather than inside receiveChunk, since we want to count errors too. I'm not
// sure if we can divine which errors indicate cancellation on our end without hitting the
// network though.
ws.peer.doChunkReadStats(int64(len(result.Bytes)))
ws.peer.readBytes(int64(len(result.Bytes)))
ws.peer.t.cl.lock()
2020-06-02 06:41:49 +00:00
defer ws.peer.t.cl.unlock()
if ws.peer.t.closed.IsSet() {
return
}
2020-06-02 06:41:49 +00:00
if result.Err != nil {
if !errors.Is(result.Err, context.Canceled) && !ws.peer.closed.IsSet() {
2021-02-09 08:21:54 +00:00
ws.peer.logger.Printf("Request %v rejected: %v", r, result.Err)
// cfg := spew.NewDefaultConfig()
// cfg.DisableMethods = true
// cfg.Dump(result.Err)
log.Printf("closing %v", ws)
ws.peer.close()
}
ws.peer.remoteRejectedRequest(ws.peer.t.requestIndexFromRequest(r))
2020-06-02 06:41:49 +00:00
} else {
err := ws.peer.receiveChunk(&pp.Message{
Type: pp.Piece,
Index: r.Index,
Begin: r.Begin,
Piece: result.Bytes,
})
if err != nil {
panic(err)
}
2020-06-01 08:41:21 +00:00
}
}
func (me *webseedPeer) isLowOnRequests() bool {
return me.peer.actualRequestState.Requests.GetCardinality() < uint64(me.maxRequests)
}
func (me *webseedPeer) peerPieces() *roaring.Bitmap {
return &me.client.Pieces
}
func (cn *webseedPeer) peerHasAllPieces() (all, known bool) {
if !cn.peer.t.haveInfo() {
return true, false
}
return cn.client.Pieces.GetCardinality() == uint64(cn.peer.t.numPieces()), true
}