130 lines
3.0 KiB
Go
130 lines
3.0 KiB
Go
|
package torrent
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/anacrolix/log"
|
||
|
|
||
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
pexRetryDelay = 10 * time.Second
|
||
|
pexInterval = 1 * time.Minute
|
||
|
)
|
||
|
|
||
|
// per-connection PEX state
|
||
|
type pexConnState struct {
|
||
|
enabled bool
|
||
|
xid pp.ExtensionNumber
|
||
|
last *pexEvent
|
||
|
timer *time.Timer
|
||
|
gate chan struct{}
|
||
|
readyfn func()
|
||
|
torrent *Torrent
|
||
|
Listed bool
|
||
|
info log.Logger
|
||
|
dbg log.Logger
|
||
|
}
|
||
|
|
||
|
func (s *pexConnState) IsEnabled() bool {
|
||
|
return s.enabled
|
||
|
}
|
||
|
|
||
|
// Init is called from the reader goroutine upon the extended handshake completion
|
||
|
func (s *pexConnState) Init(c *PeerConn) {
|
||
|
xid, ok := c.PeerExtensionIDs[pp.ExtensionNamePex]
|
||
|
if !ok || xid == 0 || c.t.cl.config.DisablePEX {
|
||
|
return
|
||
|
}
|
||
|
s.xid = xid
|
||
|
s.last = nil
|
||
|
s.torrent = c.t
|
||
|
s.info = c.t.cl.logger.WithDefaultLevel(log.Info)
|
||
|
s.dbg = c.logger.WithDefaultLevel(log.Debug)
|
||
|
s.readyfn = c.tickleWriter
|
||
|
s.gate = make(chan struct{}, 1)
|
||
|
s.timer = time.AfterFunc(0, func() {
|
||
|
s.gate <- struct{}{}
|
||
|
s.readyfn() // wake up the writer
|
||
|
})
|
||
|
s.enabled = true
|
||
|
}
|
||
|
|
||
|
// schedule next PEX message
|
||
|
func (s *pexConnState) sched(delay time.Duration) {
|
||
|
s.timer.Reset(delay)
|
||
|
}
|
||
|
|
||
|
// generate next PEX message for the peer; returns nil if nothing yet to send
|
||
|
func (s *pexConnState) genmsg() *pp.PexMsg {
|
||
|
tx, last := s.torrent.pex.Genmsg(s.last)
|
||
|
if tx.Len() == 0 {
|
||
|
return nil
|
||
|
}
|
||
|
s.last = last
|
||
|
return &tx
|
||
|
}
|
||
|
|
||
|
// Share is called from the writer goroutine if when it is woken up with the write buffers empty
|
||
|
// Returns whether there's more room on the send buffer to write to.
|
||
|
func (s *pexConnState) Share(postfn messageWriter) bool {
|
||
|
select {
|
||
|
case <-s.gate:
|
||
|
if tx := s.genmsg(); tx != nil {
|
||
|
s.dbg.Print("sending PEX message: ", tx)
|
||
|
flow := postfn(tx.Message(s.xid))
|
||
|
s.sched(pexInterval)
|
||
|
return flow
|
||
|
} else {
|
||
|
// no PEX to send this time - try again shortly
|
||
|
s.sched(pexRetryDelay)
|
||
|
}
|
||
|
default:
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
// Recv is called from the reader goroutine
|
||
|
func (s *pexConnState) Recv(payload []byte) error {
|
||
|
if !s.torrent.wantPeers() {
|
||
|
s.dbg.Printf("peer reserve ok, incoming PEX discarded")
|
||
|
return nil
|
||
|
}
|
||
|
if time.Now().Before(s.torrent.pex.rest) {
|
||
|
s.dbg.Printf("in cooldown period, incoming PEX discarded")
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
rx, err := pp.LoadPexMsg(payload)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("error unmarshalling PEX message: %s", err)
|
||
|
}
|
||
|
s.dbg.Print("incoming PEX message: ", rx)
|
||
|
torrent.Add("pex added peers received", int64(len(rx.Added)))
|
||
|
torrent.Add("pex added6 peers received", int64(len(rx.Added6)))
|
||
|
|
||
|
var peers peerInfos
|
||
|
peers.AppendFromPex(rx.Added6, rx.Added6Flags)
|
||
|
peers.AppendFromPex(rx.Added, rx.AddedFlags)
|
||
|
s.dbg.Printf("adding %d peers from PEX", len(peers))
|
||
|
if len(peers) > 0 {
|
||
|
s.torrent.pex.rest = time.Now().Add(pexInterval)
|
||
|
s.torrent.addPeers(peers)
|
||
|
}
|
||
|
|
||
|
// one day we may also want to:
|
||
|
// - check if the peer is not flooding us with PEX updates
|
||
|
// - handle drops somehow
|
||
|
// - detect malicious peers
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (s *pexConnState) Close() {
|
||
|
if s.timer != nil {
|
||
|
s.timer.Stop()
|
||
|
}
|
||
|
}
|