torrent/peerconn.go

1739 lines
46 KiB
Go
Raw Normal View History

package torrent
import (
"bufio"
2015-06-29 09:37:52 +00:00
"bytes"
"fmt"
"io"
"math/rand"
"net"
2016-02-09 13:45:47 +00:00
"strconv"
"strings"
"sync"
"time"
2018-02-03 01:06:52 +00:00
"github.com/anacrolix/log"
"github.com/anacrolix/missinggo"
2017-01-14 09:39:48 +00:00
"github.com/anacrolix/missinggo/iter"
"github.com/anacrolix/missinggo/v2/bitmap"
"github.com/anacrolix/missinggo/v2/prioritybitmap"
"github.com/anacrolix/multiless"
"github.com/anacrolix/torrent/metainfo"
2019-08-21 10:58:40 +00:00
"github.com/pkg/errors"
"github.com/anacrolix/torrent/bencode"
2017-12-01 07:12:29 +00:00
"github.com/anacrolix/torrent/mse"
pp "github.com/anacrolix/torrent/peer_protocol"
)
type PeerSource string
const (
PeerSourceTracker = "Tr"
PeerSourceIncoming = "I"
PeerSourceDhtGetPeers = "Hg" // Peers we found by searching a DHT.
PeerSourceDhtAnnouncePeer = "Ha" // Peers that were announced to us by a DHT.
PeerSourcePex = "X"
// The peer was given directly, such as through a magnet link.
PeerSourceDirect = "M"
)
type peerRequestState struct {
data []byte
}
type PeerRemoteAddr interface {
String() string
}
2021-01-20 02:10:32 +00:00
type Peer struct {
// First to ensure 64-bit alignment for atomics. See #262.
_stats ConnStats
t *Torrent
2020-05-30 05:18:28 +00:00
2020-06-02 07:41:59 +00:00
peerImpl
2020-05-30 05:18:28 +00:00
outgoing bool
Network string
RemoteAddr PeerRemoteAddr
// True if the connection is operating over MSE obfuscation.
headerEncrypted bool
2018-02-15 23:36:29 +00:00
cryptoMethod mse.CryptoMethod
Discovery PeerSource
trusted bool
closed missinggo.Event
// Set true after we've added our ConnStats generated during handshake to
// other ConnStat instances as determined when the *Torrent became known.
reconciledHandshakeStats bool
2014-08-27 23:32:49 +00:00
lastMessageReceived time.Time
completedHandshake time.Time
lastUsefulChunkReceived time.Time
2015-06-16 06:57:47 +00:00
lastChunkSent time.Time
2014-08-27 23:32:49 +00:00
// Stuff controlled by the local peer.
interested bool
lastBecameInterested time.Time
priorInterest time.Duration
lastStartedExpectingToReceiveChunks time.Time
cumulativeExpectedToReceiveChunks time.Duration
_chunksReceivedWhileExpecting int64
choking bool
requests map[request]struct{}
requestsLowWater int
// Chunks that we might reasonably expect to receive from the peer. Due to
// latency, buffering, and implementation differences, we may receive
// chunks that are no longer in the set of requests actually want.
validReceiveChunks map[request]int
// Indexed by metadata piece, set to true if posted and pending a
// response.
metadataRequests []bool
2018-02-04 08:10:25 +00:00
sentHaves bitmap.Bitmap
// Stuff controlled by the remote peer.
2020-03-31 20:14:43 +00:00
peerInterested bool
peerChoking bool
peerRequests map[request]*peerRequestState
PeerPrefersEncryption bool // as indicated by 'e' field in extension handshake
PeerListenPort int
// The pieces the peer has claimed to have.
_peerPieces bitmap.Bitmap
// The peer has everything. This can occur due to a special message, when
// we may not even know the number of pieces in the torrent yet.
peerSentHaveAll bool
// The highest possible number of pieces the torrent could have based on
// communication with the peer. Generally only useful until we have the
// torrent info.
peerMinPieces pieceIndex
// Pieces we've accepted chunks for from the peer.
peerTouchedPieces map[pieceIndex]struct{}
peerAllowedFast bitmap.Bitmap
2015-03-12 09:06:23 +00:00
PeerMaxRequests int // Maximum pending requests the peer allows.
PeerExtensionIDs map[pp.ExtensionName]pp.ExtensionNumber
PeerClientName string
pieceInclination []int
_pieceRequestOrder prioritybitmap.PriorityBitmap
2020-05-30 00:14:20 +00:00
logger log.Logger
}
// Maintains the state of a BitTorrent-protocol based connection with a peer.
2020-05-30 00:14:20 +00:00
type PeerConn struct {
2021-01-20 02:10:32 +00:00
Peer
2020-05-30 00:14:20 +00:00
// A string that should identify the PeerConn's net.Conn endpoints. The net.Conn could
// be wrapping WebRTC, uTP, or TCP etc. Used in writing the conn status for peers.
connString string
// See BEP 3 etc.
PeerID PeerID
PeerExtensionBytes pp.PeerExtensionBits
2020-05-30 00:14:20 +00:00
// The actual Conn, used for closing, and setting socket options.
conn net.Conn
// The Reader and Writer for this Conn, with hooks installed for stats,
// limiting, deadlines etc.
w io.Writer
r io.Reader
writeBuffer *bytes.Buffer
uploadTimer *time.Timer
writerCond sync.Cond
pex pexConnState
callbacks *Callbacks
}
func (cn *PeerConn) connStatusString() string {
2020-10-05 22:50:47 +00:00
return fmt.Sprintf("%+-55q %s %s", cn.PeerID, cn.PeerExtensionBytes, cn.connString)
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) updateExpectingChunks() {
if cn.expectingChunks() {
if cn.lastStartedExpectingToReceiveChunks.IsZero() {
cn.lastStartedExpectingToReceiveChunks = time.Now()
}
} else {
if !cn.lastStartedExpectingToReceiveChunks.IsZero() {
cn.cumulativeExpectedToReceiveChunks += time.Since(cn.lastStartedExpectingToReceiveChunks)
cn.lastStartedExpectingToReceiveChunks = time.Time{}
}
}
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) expectingChunks() bool {
return cn.interested && !cn.peerChoking
}
// Returns true if the connection is over IPv6.
func (cn *PeerConn) ipv6() bool {
ip := cn.remoteIp()
if ip.To4() != nil {
return false
}
return len(ip) == net.IPv6len
}
// Returns true the if the dialer/initiator has the lower client peer ID. TODO: Find the
// specification for this.
func (cn *PeerConn) isPreferredDirection() bool {
return bytes.Compare(cn.t.cl.peerID[:], cn.PeerID[:]) < 0 == cn.outgoing
}
// Returns whether the left connection should be preferred over the right one,
// considering only their networking properties. If ok is false, we can't
// decide.
func (l *PeerConn) hasPreferredNetworkOver(r *PeerConn) (left, ok bool) {
var ml multiLess
ml.NextBool(l.isPreferredDirection(), r.isPreferredDirection())
ml.NextBool(!l.utp(), !r.utp())
ml.NextBool(l.ipv6(), r.ipv6())
return ml.FinalOk()
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) cumInterest() time.Duration {
ret := cn.priorInterest
if cn.interested {
ret += time.Since(cn.lastBecameInterested)
}
return ret
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) peerHasAllPieces() (all bool, known bool) {
if cn.peerSentHaveAll {
return true, true
}
if !cn.t.haveInfo() {
return false, false
}
return bitmap.Flip(cn._peerPieces, 0, bitmap.BitIndex(cn.t.numPieces())).IsEmpty(), true
}
2020-02-21 00:51:24 +00:00
func (cn *PeerConn) locker() *lockWithDeferreds {
2018-07-25 03:41:50 +00:00
return cn.t.cl.locker()
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) supportsExtension(ext pp.ExtensionName) bool {
_, ok := cn.PeerExtensionIDs[ext]
return ok
}
// The best guess at number of pieces in the torrent for this peer.
2021-01-20 02:10:32 +00:00
func (cn *Peer) bestPeerNumPieces() pieceIndex {
if cn.t.haveInfo() {
return cn.t.numPieces()
}
return cn.peerMinPieces
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) completedString() string {
have := pieceIndex(cn._peerPieces.Len())
if cn.peerSentHaveAll {
have = cn.bestPeerNumPieces()
}
return fmt.Sprintf("%d/%d", have, cn.bestPeerNumPieces())
}
func (cn *PeerConn) onGotInfo(info *metainfo.Info) {
cn.setNumPieces(info.NumPieces())
}
// Correct the PeerPieces slice length. Return false if the existing slice is invalid, such as by
// receiving badly sized BITFIELD, or invalid HAVE messages.
func (cn *PeerConn) setNumPieces(num pieceIndex) {
cn._peerPieces.RemoveRange(bitmap.BitIndex(num), bitmap.ToEnd)
cn.peerPiecesChanged()
}
func eventAgeString(t time.Time) string {
if t.IsZero() {
return "never"
}
2017-11-07 05:11:59 +00:00
return fmt.Sprintf("%.2fs ago", time.Since(t).Seconds())
}
func (cn *PeerConn) connectionFlags() (ret string) {
c := func(b byte) {
ret += string([]byte{b})
2014-12-09 06:26:06 +00:00
}
if cn.cryptoMethod == mse.CryptoMethodRC4 {
c('E')
} else if cn.headerEncrypted {
c('e')
}
ret += string(cn.Discovery)
if cn.utp() {
c('U')
}
return
}
func (cn *PeerConn) utp() bool {
return parseNetworkString(cn.Network).Udp
}
2018-06-09 12:08:24 +00:00
// Inspired by https://github.com/transmission/transmission/wiki/Peer-Status-Text.
2021-01-20 02:10:32 +00:00
func (cn *Peer) statusFlags() (ret string) {
c := func(b byte) {
ret += string([]byte{b})
}
if cn.interested {
c('i')
}
if cn.choking {
c('c')
}
c('-')
ret += cn.connectionFlags()
c('-')
if cn.peerInterested {
c('i')
}
if cn.peerChoking {
c('c')
}
return
}
// func (cn *connection) String() string {
// var buf bytes.Buffer
// cn.writeStatus(&buf, nil)
// return buf.String()
// }
2021-01-20 02:10:32 +00:00
func (cn *Peer) downloadRate() float64 {
return float64(cn._stats.BytesReadUsefulData.Int64()) / cn.cumInterest().Seconds()
2015-06-29 09:37:52 +00:00
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) writeStatus(w io.Writer, t *Torrent) {
// \t isn't preserved in <pre> blocks?
fmt.Fprintln(w, cn.connStatusString())
fmt.Fprintf(w, " last msg: %s, connected: %s, last helpful: %s, itime: %s, etime: %s\n",
eventAgeString(cn.lastMessageReceived),
eventAgeString(cn.completedHandshake),
eventAgeString(cn.lastHelpful()),
cn.cumInterest(),
cn.totalExpectingTime(),
)
2015-05-14 22:39:53 +00:00
fmt.Fprintf(w,
" %s completed, %d pieces touched, good chunks: %v/%v-%v reqq: (%d,%d,%d]-%d, flags: %s, dr: %.1f KiB/s\n",
cn.completedString(),
len(cn.peerTouchedPieces),
&cn._stats.ChunksReadUseful,
&cn._stats.ChunksRead,
&cn._stats.ChunksWritten,
cn.requestsLowWater,
cn.numLocalRequests(),
cn.nominalMaxRequests(),
len(cn.peerRequests),
2015-05-14 22:39:53 +00:00
cn.statusFlags(),
cn.downloadRate()/(1<<10),
2015-05-14 22:39:53 +00:00
)
fmt.Fprintf(w, " next pieces: %v%s\n",
iter.ToSlice(iter.Head(10, cn.iterPendingPiecesUntyped)),
func() string {
2020-06-01 09:09:17 +00:00
if cn == t.fastestPeer {
return " (fastest)"
} else {
return ""
}
}(),
)
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) close() {
if !cn.closed.Set() {
return
}
2020-05-30 07:52:27 +00:00
cn.discardPieceInclination()
cn._pieceRequestOrder.Clear()
2021-01-04 04:51:23 +00:00
cn.peerImpl.onClose()
2020-05-30 07:52:27 +00:00
}
2021-01-04 04:51:23 +00:00
func (cn *PeerConn) onClose() {
2020-04-08 16:03:29 +00:00
if cn.pex.IsEnabled() {
cn.pex.Close()
}
cn.tickleWriter()
if cn.conn != nil {
2020-05-03 08:40:40 +00:00
cn.conn.Close()
}
if cb := cn.callbacks.PeerConnClosed; cb != nil {
2020-10-13 02:02:39 +00:00
cb(cn)
}
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) peerHasPiece(piece pieceIndex) bool {
return cn.peerSentHaveAll || cn._peerPieces.Contains(bitmap.BitIndex(piece))
}
// 64KiB, but temporarily less to work around an issue with WebRTC. TODO: Update when
// https://github.com/pion/datachannel/issues/59 is fixed.
const writeBufferHighWaterLen = 1 << 15
// Writes a message into the write buffer. Returns whether it's okay to keep writing. Posting is
// done asynchronously, so it may be that we're not able to honour backpressure from this method. It
// might be possible to merge this with PeerConn.write down the track? They seem to be very similar.
func (cn *PeerConn) post(msg pp.Message) bool {
torrent.Add(fmt.Sprintf("messages posted of type %s", msg.Type.String()), 1)
// We don't need to track bytes here because a connection.w Writer wrapper takes care of that
// (although there's some delay between us recording the message, and the connection writer
// flushing it out.).
cn.writeBuffer.Write(msg.MustMarshalBinary())
// Last I checked only Piece messages affect stats, and we don't post those.
2018-02-03 04:29:06 +00:00
cn.wroteMsg(&msg)
cn.tickleWriter()
return cn.writeBuffer.Len() < writeBufferHighWaterLen
}
2020-06-01 08:25:45 +00:00
// Returns true if there's room to write more.
2020-05-30 07:52:27 +00:00
func (cn *PeerConn) write(msg pp.Message) bool {
cn.wroteMsg(&msg)
cn.writeBuffer.Write(msg.MustMarshalBinary())
torrent.Add(fmt.Sprintf("messages filled of type %s", msg.Type.String()), 1)
return cn.writeBuffer.Len() < writeBufferHighWaterLen
2020-05-30 07:52:27 +00:00
}
func (cn *PeerConn) requestMetadataPiece(index int) {
eID := cn.PeerExtensionIDs[pp.ExtensionNameMetadata]
if eID == 0 {
return
}
if index < len(cn.metadataRequests) && cn.metadataRequests[index] {
return
}
2020-10-12 06:12:34 +00:00
cn.logger.WithDefaultLevel(log.Debug).Printf("requesting metadata piece %d", index)
cn.post(pp.Message{
Type: pp.Extended,
ExtendedID: eID,
ExtendedPayload: func() []byte {
b, err := bencode.Marshal(map[string]int{
"msg_type": pp.RequestMetadataExtensionMsgType,
"piece": index,
})
if err != nil {
panic(err)
}
return b
}(),
})
for index >= len(cn.metadataRequests) {
cn.metadataRequests = append(cn.metadataRequests, false)
}
cn.metadataRequests[index] = true
}
func (cn *PeerConn) requestedMetadataPiece(index int) bool {
return index < len(cn.metadataRequests) && cn.metadataRequests[index]
}
2016-02-08 05:09:12 +00:00
// The actual value to use as the maximum outbound requests.
2021-01-20 02:10:32 +00:00
func (cn *Peer) nominalMaxRequests() (ret int) {
2018-07-07 01:33:48 +00:00
return int(clamp(
1,
int64(cn.PeerMaxRequests),
int64(cn.t.requestStrategy.nominalMaxRequests(cn.requestStrategyConnection())),
))
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) totalExpectingTime() (ret time.Duration) {
ret = cn.cumulativeExpectedToReceiveChunks
if !cn.lastStartedExpectingToReceiveChunks.IsZero() {
ret += time.Since(cn.lastStartedExpectingToReceiveChunks)
}
return
}
func (cn *PeerConn) onPeerSentCancel(r request) {
if _, ok := cn.peerRequests[r]; !ok {
torrent.Add("unexpected cancels received", 1)
return
}
if cn.fastEnabled() {
cn.reject(r)
} else {
delete(cn.peerRequests, r)
2014-04-16 07:33:33 +00:00
}
}
func (cn *PeerConn) choke(msg messageWriter) (more bool) {
if cn.choking {
return true
2014-05-21 07:49:28 +00:00
}
cn.choking = true
more = msg(pp.Message{
Type: pp.Choke,
})
if cn.fastEnabled() {
for r := range cn.peerRequests {
// TODO: Don't reject pieces in allowed fast set.
cn.reject(r)
}
} else {
cn.peerRequests = nil
}
return
2014-05-21 07:49:28 +00:00
}
func (cn *PeerConn) unchoke(msg func(pp.Message) bool) bool {
if !cn.choking {
return true
}
cn.choking = false
return msg(pp.Message{
Type: pp.Unchoke,
})
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) setInterested(interested bool) bool {
if cn.interested == interested {
return true
}
cn.interested = interested
if interested {
cn.lastBecameInterested = time.Now()
} else if !cn.lastBecameInterested.IsZero() {
cn.priorInterest += time.Since(cn.lastBecameInterested)
}
cn.updateExpectingChunks()
// log.Printf("%p: setting interest: %v", cn, interested)
2020-06-02 07:41:59 +00:00
return cn.writeInterested(interested)
2020-05-30 05:18:28 +00:00
}
2020-06-02 07:41:59 +00:00
func (pc *PeerConn) writeInterested(interested bool) bool {
2020-05-30 05:18:28 +00:00
return pc.write(pp.Message{
Type: func() pp.MessageType {
if interested {
return pp.Interested
} else {
return pp.NotInterested
}
}(),
})
}
// The function takes a message to be sent, and returns true if more messages
// are okay.
type messageWriter func(pp.Message) bool
2021-01-20 02:10:32 +00:00
func (cn *Peer) request(r request) bool {
if _, ok := cn.requests[r]; ok {
panic("chunk already requested")
}
if !cn.peerHasPiece(pieceIndex(r.Index)) {
panic("requesting piece peer doesn't have")
}
2020-05-30 05:18:28 +00:00
if !cn.t.peerIsActive(cn) {
panic("requesting but not in active conns")
}
if cn.closed.IsSet() {
panic("requesting when connection is closed")
}
if cn.peerChoking {
if cn.peerAllowedFast.Get(int(r.Index)) {
torrent.Add("allowed fast requests sent", 1)
} else {
panic("requesting while choking and not allowed fast")
}
}
if cn.t.hashingPiece(pieceIndex(r.Index)) {
panic("piece is being hashed")
}
if cn.t.pieceQueuedForHash(pieceIndex(r.Index)) {
panic("piece is queued for hash")
}
if cn.requests == nil {
cn.requests = make(map[request]struct{})
}
cn.requests[r] = struct{}{}
if cn.validReceiveChunks == nil {
cn.validReceiveChunks = make(map[request]int)
}
cn.validReceiveChunks[r]++
cn.t.pendingRequests[r]++
cn.t.requestStrategy.hooks().sentRequest(r)
cn.updateExpectingChunks()
2020-06-02 07:41:59 +00:00
return cn.peerImpl.request(r)
2020-05-30 05:18:28 +00:00
}
2020-06-02 07:41:59 +00:00
func (me *PeerConn) request(r request) bool {
2020-05-30 05:18:28 +00:00
return me.write(pp.Message{
Type: pp.Request,
Index: r.Index,
Begin: r.Begin,
Length: r.Length,
})
}
2020-06-02 07:41:59 +00:00
func (me *PeerConn) cancel(r request) bool {
2020-05-30 05:18:28 +00:00
return me.write(makeCancelMessage(r))
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) doRequestState() bool {
if !cn.t.networkingEnabled || cn.t.dataDownloadDisallowed {
2020-05-30 05:18:28 +00:00
if !cn.setInterested(false) {
return false
}
if len(cn.requests) != 0 {
for r := range cn.requests {
cn.deleteRequest(r)
// log.Printf("%p: cancelling request: %v", cn, r)
2020-06-02 07:41:59 +00:00
if !cn.peerImpl.cancel(r) {
2020-05-30 05:18:28 +00:00
return false
}
}
}
2020-02-22 08:38:56 +00:00
} else if len(cn.requests) <= cn.requestsLowWater {
filledBuffer := false
cn.iterPendingPieces(func(pieceIndex pieceIndex) bool {
cn.iterPendingRequests(pieceIndex, func(r request) bool {
2020-05-30 05:18:28 +00:00
if !cn.setInterested(true) {
filledBuffer = true
return false
}
if len(cn.requests) >= cn.nominalMaxRequests() {
return false
}
// Choking is looked at here because our interest is dependent
// on whether we'd make requests in its absence.
if cn.peerChoking {
if !cn.peerAllowedFast.Get(bitmap.BitIndex(r.Index)) {
return false
}
}
if _, ok := cn.requests[r]; ok {
return true
}
2020-05-30 05:18:28 +00:00
filledBuffer = !cn.request(r)
return !filledBuffer
})
return !filledBuffer
})
if filledBuffer {
// If we didn't completely top up the requests, we shouldn't mark
// the low water, since we'll want to top up the requests as soon
// as we have more write buffer space.
2020-05-30 05:18:28 +00:00
return false
}
cn.requestsLowWater = len(cn.requests) / 2
}
2020-05-30 05:18:28 +00:00
return true
}
func (cn *PeerConn) fillWriteBuffer() {
if !cn.doRequestState() {
return
}
2020-04-08 16:03:29 +00:00
if cn.pex.IsEnabled() {
2020-05-30 05:18:28 +00:00
if flow := cn.pex.Share(cn.write); !flow {
2020-04-15 12:02:34 +00:00
return
}
2020-04-08 16:03:29 +00:00
}
2020-05-30 05:18:28 +00:00
cn.upload(cn.write)
}
2017-12-02 13:35:09 +00:00
// Routine that writes to the peer. Some of what to write is buffered by
// activity elsewhere in the Client, and some is determined locally when the
// connection is writable.
func (cn *PeerConn) writer(keepAliveTimeout time.Duration) {
var (
lastWrite time.Time = time.Now()
keepAliveTimer *time.Timer
)
keepAliveTimer = time.AfterFunc(keepAliveTimeout, func() {
2020-02-21 00:51:24 +00:00
cn.locker().Lock()
defer cn.locker().Unlock()
if time.Since(lastWrite) >= keepAliveTimeout {
cn.tickleWriter()
}
keepAliveTimer.Reset(keepAliveTimeout)
})
2020-02-21 00:51:24 +00:00
cn.locker().Lock()
defer cn.locker().Unlock()
defer cn.close()
defer keepAliveTimer.Stop()
frontBuf := new(bytes.Buffer)
for {
if cn.closed.IsSet() {
return
}
if cn.writeBuffer.Len() == 0 {
2020-05-30 05:18:28 +00:00
cn.fillWriteBuffer()
}
if cn.writeBuffer.Len() == 0 && time.Since(lastWrite) >= keepAliveTimeout && cn.useful() {
cn.writeBuffer.Write(pp.Message{Keepalive: true}.MustMarshalBinary())
postedKeepalives.Add(1)
}
if cn.writeBuffer.Len() == 0 {
2017-11-05 04:26:23 +00:00
// TODO: Minimize wakeups....
cn.writerCond.Wait()
continue
}
// Flip the buffers.
frontBuf, cn.writeBuffer = cn.writeBuffer, frontBuf
2020-02-21 00:51:24 +00:00
cn.locker().Unlock()
n, err := cn.w.Write(frontBuf.Bytes())
2020-02-21 00:51:24 +00:00
cn.locker().Lock()
if n != 0 {
lastWrite = time.Now()
keepAliveTimer.Reset(keepAliveTimeout)
}
if err != nil {
2020-10-12 06:12:34 +00:00
cn.logger.WithDefaultLevel(log.Debug).Printf("error writing: %v", err)
return
}
if n != frontBuf.Len() {
panic("short write")
}
frontBuf.Reset()
}
}
func (cn *PeerConn) have(piece pieceIndex) {
if cn.sentHaves.Get(bitmap.BitIndex(piece)) {
return
}
cn.post(pp.Message{
Type: pp.Have,
Index: pp.Integer(piece),
})
cn.sentHaves.Add(bitmap.BitIndex(piece))
}
func (cn *PeerConn) postBitfield() {
2018-02-04 08:10:25 +00:00
if cn.sentHaves.Len() != 0 {
panic("bitfield must be first have-related message sent")
}
2018-02-04 08:10:25 +00:00
if !cn.t.haveAnyPieces() {
return
}
cn.post(pp.Message{
Type: pp.Bitfield,
2018-02-04 08:10:25 +00:00
Bitfield: cn.t.bitfield(),
})
cn.sentHaves = cn.t._completedPieces.Copy()
}
func (cn *PeerConn) updateRequests() {
// log.Print("update requests")
cn.tickleWriter()
}
// Emits the indices in the Bitmaps bms in order, never repeating any index.
// skip is mutated during execution, and its initial values will never be
// emitted.
func iterBitmapsDistinct(skip *bitmap.Bitmap, bms ...bitmap.Bitmap) iter.Func {
return func(cb iter.Callback) {
for _, bm := range bms {
2020-01-09 23:27:05 +00:00
if !iter.All(
func(i interface{}) bool {
skip.Add(i.(int))
return cb(i)
},
bitmap.Sub(bm, *skip).Iter,
) {
return
}
}
}
}
func iterUnbiasedPieceRequestOrder(cn requestStrategyConnection, f func(piece pieceIndex) bool) bool {
now, readahead := cn.torrent().readerPiecePriorities()
skip := bitmap.Flip(cn.peerPieces(), 0, cn.torrent().numPieces())
skip.Union(cn.torrent().ignorePieces())
2020-01-09 23:27:05 +00:00
// Return an iterator over the different priority classes, minus the skip pieces.
return iter.All(
func(_piece interface{}) bool {
return f(pieceIndex(_piece.(bitmap.BitIndex)))
},
iterBitmapsDistinct(&skip, now, readahead),
// We have to iterate _pendingPieces separately because it isn't a Bitmap.
func(cb iter.Callback) {
cn.torrent().pendingPieces().IterTyped(func(piece int) bool {
if skip.Contains(piece) {
return true
}
more := cb(piece)
skip.Add(piece)
return more
})
},
)
}
2020-01-09 23:27:05 +00:00
// The connection should download highest priority pieces first, without any inclination toward
// avoiding wastage. Generally we might do this if there's a single connection, or this is the
// fastest connection, and we have active readers that signal an ordering preference. It's
// conceivable that the best connection should do this, since it's least likely to waste our time if
// assigned to the highest priority pieces, and assigning more than one this role would cause
// significant wasted bandwidth.
2021-01-20 02:10:32 +00:00
func (cn *Peer) shouldRequestWithoutBias() bool {
return cn.t.requestStrategy.shouldRequestWithoutBias(cn.requestStrategyConnection())
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) iterPendingPieces(f func(pieceIndex) bool) bool {
if !cn.t.haveInfo() {
return false
}
return cn.t.requestStrategy.iterPendingPieces(cn, f)
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) iterPendingPiecesUntyped(f iter.Callback) {
cn.iterPendingPieces(func(i pieceIndex) bool { return f(i) })
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) iterPendingRequests(piece pieceIndex, f func(request) bool) bool {
return cn.t.requestStrategy.iterUndirtiedChunks(
cn.t.piece(piece).requestStrategyPiece(),
func(cs chunkSpec) bool {
return f(request{pp.Integer(piece), cs})
},
)
}
// check callers updaterequests
2021-01-20 02:10:32 +00:00
func (cn *Peer) stopRequestingPiece(piece pieceIndex) bool {
return cn._pieceRequestOrder.Remove(bitmap.BitIndex(piece))
}
// This is distinct from Torrent piece priority, which is the user's
2018-01-25 06:02:52 +00:00
// preference. Connection piece priority is specific to a connection and is
// used to pseudorandomly avoid connections always requesting the same pieces
// and thus wasting effort.
2021-01-20 02:10:32 +00:00
func (cn *Peer) updatePiecePriority(piece pieceIndex) bool {
tpp := cn.t.piecePriority(piece)
if !cn.peerHasPiece(piece) {
tpp = PiecePriorityNone
}
if tpp == PiecePriorityNone {
return cn.stopRequestingPiece(piece)
}
prio := cn.getPieceInclination()[piece]
prio = cn.t.requestStrategy.piecePriority(cn, piece, tpp, prio)
return cn._pieceRequestOrder.Set(bitmap.BitIndex(piece), prio) || cn.shouldRequestWithoutBias()
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) getPieceInclination() []int {
if cn.pieceInclination == nil {
cn.pieceInclination = cn.t.getConnPieceInclination()
}
return cn.pieceInclination
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) discardPieceInclination() {
if cn.pieceInclination == nil {
return
}
cn.t.putPieceInclination(cn.pieceInclination)
cn.pieceInclination = nil
}
2016-03-21 03:17:15 +00:00
func (cn *PeerConn) peerPiecesChanged() {
if cn.t.haveInfo() {
prioritiesChanged := false
for i := pieceIndex(0); i < cn.t.numPieces(); i++ {
if cn.updatePiecePriority(i) {
prioritiesChanged = true
}
}
if prioritiesChanged {
cn.updateRequests()
2016-03-21 03:17:15 +00:00
}
}
2021-01-20 02:10:32 +00:00
cn.t.maybeDropMutuallyCompletePeer(&cn.Peer)
}
func (cn *PeerConn) raisePeerMinPieces(newMin pieceIndex) {
if newMin > cn.peerMinPieces {
cn.peerMinPieces = newMin
}
}
func (cn *PeerConn) peerSentHave(piece pieceIndex) error {
if cn.t.haveInfo() && piece >= cn.t.numPieces() || piece < 0 {
return errors.New("invalid piece")
}
if cn.peerHasPiece(piece) {
return nil
}
cn.raisePeerMinPieces(piece + 1)
cn._peerPieces.Set(bitmap.BitIndex(piece), true)
2021-01-20 02:10:32 +00:00
cn.t.maybeDropMutuallyCompletePeer(&cn.Peer)
if cn.updatePiecePriority(piece) {
cn.updateRequests()
}
return nil
}
func (cn *PeerConn) peerSentBitfield(bf []bool) error {
cn.peerSentHaveAll = false
if len(bf)%8 != 0 {
panic("expected bitfield length divisible by 8")
}
// We know that the last byte means that at most the last 7 bits are
// wasted.
cn.raisePeerMinPieces(pieceIndex(len(bf) - 7))
if cn.t.haveInfo() && len(bf) > int(cn.t.numPieces()) {
// Ignore known excess pieces.
bf = bf[:cn.t.numPieces()]
}
for i, have := range bf {
if have {
cn.raisePeerMinPieces(pieceIndex(i) + 1)
2016-03-21 03:17:15 +00:00
}
cn._peerPieces.Set(i, have)
2016-03-21 03:17:15 +00:00
}
cn.peerPiecesChanged()
return nil
}
func (cn *PeerConn) onPeerSentHaveAll() error {
cn.peerSentHaveAll = true
cn._peerPieces.Clear()
cn.peerPiecesChanged()
return nil
}
func (cn *PeerConn) peerSentHaveNone() error {
cn._peerPieces.Clear()
cn.peerSentHaveAll = false
cn.peerPiecesChanged()
2016-03-21 03:17:15 +00:00
return nil
}
func (c *PeerConn) requestPendingMetadata() {
if c.t.haveInfo() {
return
}
if c.PeerExtensionIDs[pp.ExtensionNameMetadata] == 0 {
// Peer doesn't support this.
return
}
// Request metadata pieces that we don't have in a random order.
var pending []int
for index := 0; index < c.t.metadataPieceCount(); index++ {
if !c.t.haveMetadataPiece(index) && !c.requestedMetadataPiece(index) {
pending = append(pending, index)
}
}
2019-10-01 08:45:36 +00:00
rand.Shuffle(len(pending), func(i, j int) { pending[i], pending[j] = pending[j], pending[i] })
for _, i := range pending {
c.requestMetadataPiece(i)
}
}
2016-07-05 05:52:33 +00:00
func (cn *PeerConn) wroteMsg(msg *pp.Message) {
torrent.Add(fmt.Sprintf("messages written of type %s", msg.Type.String()), 1)
if msg.Type == pp.Extended {
for name, id := range cn.PeerExtensionIDs {
if id != msg.ExtendedID {
continue
}
torrent.Add(fmt.Sprintf("Extended messages written for protocol %q", name), 1)
}
}
cn.allStats(func(cs *ConnStats) { cs.wroteMsg(msg) })
2016-07-05 05:52:33 +00:00
}
func (cn *PeerConn) readMsg(msg *pp.Message) {
cn.allStats(func(cs *ConnStats) { cs.readMsg(msg) })
2016-07-12 06:42:04 +00:00
}
// After handshake, we know what Torrent and Client stats to include for a
// connection.
2021-01-20 02:10:32 +00:00
func (cn *Peer) postHandshakeStats(f func(*ConnStats)) {
t := cn.t
2018-06-12 10:21:53 +00:00
f(&t.stats)
f(&t.cl.stats)
}
// All ConnStats that include this connection. Some objects are not known
// until the handshake is complete, after which it's expected to reconcile the
// differences.
2021-01-20 02:10:32 +00:00
func (cn *Peer) allStats(f func(*ConnStats)) {
f(&cn._stats)
if cn.reconciledHandshakeStats {
cn.postHandshakeStats(f)
2016-07-12 06:42:04 +00:00
}
}
func (cn *PeerConn) wroteBytes(n int64) {
2018-06-12 10:21:53 +00:00
cn.allStats(add(n, func(cs *ConnStats) *Count { return &cs.BytesWritten }))
}
func (cn *PeerConn) readBytes(n int64) {
2018-06-12 10:21:53 +00:00
cn.allStats(add(n, func(cs *ConnStats) *Count { return &cs.BytesRead }))
2016-07-05 05:52:33 +00:00
}
// Returns whether the connection could be useful to us. We're seeding and
// they want data, we don't have metainfo and they can provide it, etc.
2021-01-20 02:10:32 +00:00
func (c *Peer) useful() bool {
t := c.t
if c.closed.IsSet() {
return false
}
if !t.haveInfo() {
return c.supportsExtension("ut_metadata")
}
if t.seeding() && c.peerInterested {
return true
}
if c.peerHasWantedPieces() {
return true
}
return false
}
2016-07-05 14:42:16 +00:00
2021-01-20 02:10:32 +00:00
func (c *Peer) lastHelpful() (ret time.Time) {
ret = c.lastUsefulChunkReceived
if c.t.seeding() && c.lastChunkSent.After(ret) {
ret = c.lastChunkSent
2016-07-05 14:42:16 +00:00
}
return
2016-07-05 14:42:16 +00:00
}
func (c *PeerConn) fastEnabled() bool {
return c.PeerExtensionBytes.SupportsFast() && c.t.cl.config.Extensions.SupportsFast()
}
func (c *PeerConn) reject(r request) {
if !c.fastEnabled() {
panic("fast not enabled")
}
c.post(r.ToMsg(pp.Reject))
delete(c.peerRequests, r)
}
func (c *PeerConn) onReadRequest(r request) error {
2018-02-02 08:19:14 +00:00
requestedChunkLengths.Add(strconv.FormatUint(r.Length.Uint64(), 10), 1)
if _, ok := c.peerRequests[r]; ok {
torrent.Add("duplicate requests received", 1)
return nil
}
if c.choking {
torrent.Add("requests received while choking", 1)
if c.fastEnabled() {
torrent.Add("requests rejected while choking", 1)
c.reject(r)
}
2018-02-02 08:19:14 +00:00
return nil
}
if len(c.peerRequests) >= maxRequests {
torrent.Add("requests received while queue full", 1)
if c.fastEnabled() {
c.reject(r)
}
// BEP 6 says we may close here if we choose.
2018-02-02 08:19:14 +00:00
return nil
}
if !c.t.havePiece(pieceIndex(r.Index)) {
2018-02-02 08:19:14 +00:00
// This isn't necessarily them screwing up. We can drop pieces
// from our storage, and can't communicate this to peers
// except by reconnecting.
requestsReceivedForMissingPieces.Add(1)
return fmt.Errorf("peer requested piece we don't have: %v", r.Index.Int())
}
// Check this after we know we have the piece, so that the piece length will be known.
if r.Begin+r.Length > c.t.pieceLength(pieceIndex(r.Index)) {
torrent.Add("bad requests received", 1)
return errors.New("bad request")
}
if c.peerRequests == nil {
c.peerRequests = make(map[request]*peerRequestState, maxRequests)
2018-02-02 08:19:14 +00:00
}
value := &peerRequestState{}
c.peerRequests[r] = value
go c.peerRequestDataReader(r, value)
//c.tickleWriter()
2018-02-02 08:19:14 +00:00
return nil
}
func (c *PeerConn) peerRequestDataReader(r request, prs *peerRequestState) {
b, err := readPeerRequestData(r, c)
c.locker().Lock()
defer c.locker().Unlock()
if err != nil {
c.peerRequestDataReadFailed(err, r)
} else {
if b == nil {
panic("data must be non-nil to trigger send")
}
prs.data = b
c.tickleWriter()
}
}
// If this is maintained correctly, we might be able to support optional synchronous reading for
// chunk sending, the way it used to work.
func (c *PeerConn) peerRequestDataReadFailed(err error, r request) {
c.logger.WithDefaultLevel(log.Warning).Printf("error reading chunk for peer request %v: %v", r, err)
i := pieceIndex(r.Index)
if c.t.pieceComplete(i) {
// There used to be more code here that just duplicated the following break. Piece
// completions are currently cached, so I'm not sure how helpful this update is, except to
// pull any completion changes pushed to the storage backend in failed reads that got us
// here.
c.t.updatePieceCompletion(i)
}
// If we failed to send a chunk, choke the peer to ensure they flush all their requests. We've
// probably dropped a piece from storage, but there's no way to communicate this to the peer. If
// they ask for it again, we'll kick them to allow us to send them an updated bitfield on the
// next connect. TODO: Support rejecting here too.
if c.choking {
c.logger.WithDefaultLevel(log.Warning).Printf("already choking peer, requests might not be rejected correctly")
}
c.choke(c.post)
}
func readPeerRequestData(r request, c *PeerConn) ([]byte, error) {
b := make([]byte, r.Length)
p := c.t.info.Piece(int(r.Index))
n, err := c.t.readAt(b, p.Offset()+int64(r.Begin))
if n == len(b) {
if err == io.EOF {
err = nil
}
} else {
if err == nil {
panic("expected error")
}
}
return b, err
}
func runSafeExtraneous(f func()) {
if true {
go f()
} else {
f()
}
}
2019-10-01 08:13:55 +00:00
// Processes incoming BitTorrent wire-protocol messages. The client lock is held upon entry and
// exit. Returning will end the connection.
func (c *PeerConn) mainReadLoop() (err error) {
defer func() {
if err != nil {
torrent.Add("connection.mainReadLoop returned with error", 1)
} else {
torrent.Add("connection.mainReadLoop returned with no error", 1)
}
}()
t := c.t
cl := t.cl
2016-09-12 07:10:11 +00:00
decoder := pp.Decoder{
R: bufio.NewReaderSize(c.r, 1<<17),
MaxLength: 256 * 1024,
Pool: t.chunkPool,
}
for {
var msg pp.Message
func() {
2018-07-25 03:41:50 +00:00
cl.unlock()
defer cl.lock()
err = decoder.Decode(&msg)
}()
if cb := c.callbacks.ReadMessage; cb != nil && err == nil {
2020-07-15 04:00:47 +00:00
cb(c, &msg)
}
if t.closed.IsSet() || c.closed.IsSet() {
return nil
}
if err != nil {
return err
}
c.readMsg(&msg)
c.lastMessageReceived = time.Now()
if msg.Keepalive {
receivedKeepalives.Add(1)
continue
}
messageTypesReceived.Add(msg.Type.String(), 1)
if msg.Type.FastExtension() && !c.fastEnabled() {
runSafeExtraneous(func() { torrent.Add("fast messages received when extension is disabled", 1) })
return fmt.Errorf("received fast extension message (type=%v) but extension is disabled", msg.Type)
}
switch msg.Type {
case pp.Choke:
c.peerChoking = true
if !c.fastEnabled() {
c.deleteAllRequests()
}
// We can then reset our interest.
c.updateRequests()
c.updateExpectingChunks()
case pp.Unchoke:
c.peerChoking = false
c.tickleWriter()
c.updateExpectingChunks()
case pp.Interested:
c.peerInterested = true
c.tickleWriter()
case pp.NotInterested:
c.peerInterested = false
// We don't clear their requests since it isn't clear in the spec.
// We'll probably choke them for this, which will clear them if
// appropriate, and is clearly specified.
case pp.Have:
err = c.peerSentHave(pieceIndex(msg.Index))
case pp.Bitfield:
err = c.peerSentBitfield(msg.Bitfield)
case pp.Request:
2018-02-02 08:19:14 +00:00
r := newRequestFromMessage(&msg)
err = c.onReadRequest(r)
case pp.Piece:
err = c.receiveChunk(&msg)
2016-09-12 07:10:11 +00:00
if len(msg.Piece) == int(t.chunkSize) {
2017-11-07 05:11:59 +00:00
t.chunkPool.Put(&msg.Piece)
2016-09-12 07:10:11 +00:00
}
2018-06-26 10:24:39 +00:00
if err != nil {
err = fmt.Errorf("receiving chunk: %s", err)
}
case pp.Cancel:
req := newRequestFromMessage(&msg)
c.onPeerSentCancel(req)
case pp.Port:
2020-07-15 06:15:38 +00:00
ipa, ok := tryIpPortFromNetAddr(c.RemoteAddr)
if !ok {
break
}
pingAddr := net.UDPAddr{
IP: ipa.IP,
Port: ipa.Port,
}
if msg.Port != 0 {
pingAddr.Port = int(msg.Port)
}
cl.eachDhtServer(func(s DhtServer) {
go s.Ping(&pingAddr)
})
case pp.Suggest:
torrent.Add("suggests received", 1)
2020-04-16 07:20:58 +00:00
log.Fmsg("peer suggested piece %d", msg.Index).AddValues(c, msg.Index).SetLevel(log.Debug).Log(c.t.logger)
c.updateRequests()
case pp.HaveAll:
err = c.onPeerSentHaveAll()
case pp.HaveNone:
err = c.peerSentHaveNone()
case pp.Reject:
2020-06-02 06:41:49 +00:00
c.remoteRejectedRequest(newRequestFromMessage(&msg))
case pp.AllowedFast:
torrent.Add("allowed fasts received", 1)
2020-04-16 07:20:58 +00:00
log.Fmsg("peer allowed fast: %d", msg.Index).AddValues(c).SetLevel(log.Debug).Log(c.t.logger)
c.peerAllowedFast.Add(int(msg.Index))
c.updateRequests()
case pp.Extended:
err = c.onReadExtendedMsg(msg.ExtendedID, msg.ExtendedPayload)
default:
err = fmt.Errorf("received unknown message type: %#v", msg.Type)
}
if err != nil {
return err
}
}
}
2021-01-20 02:10:32 +00:00
func (c *Peer) remoteRejectedRequest(r request) {
if c.deleteRequest(r) {
c.decExpectedChunkReceive(r)
}
2020-06-02 06:41:49 +00:00
}
2021-01-20 02:10:32 +00:00
func (c *Peer) decExpectedChunkReceive(r request) {
count := c.validReceiveChunks[r]
if count == 1 {
delete(c.validReceiveChunks, r)
} else if count > 1 {
c.validReceiveChunks[r] = count - 1
} else {
panic(r)
}
}
func (c *PeerConn) onReadExtendedMsg(id pp.ExtensionNumber, payload []byte) (err error) {
defer func() {
// TODO: Should we still do this?
if err != nil {
// These clients use their own extension IDs for outgoing message
// types, which is incorrect.
if bytes.HasPrefix(c.PeerID[:], []byte("-SD0100-")) || strings.HasPrefix(string(c.PeerID[:]), "-XL0012-") {
err = nil
}
}
}()
t := c.t
cl := t.cl
switch id {
case pp.HandshakeExtendedID:
var d pp.ExtendedHandshakeMessage
if err := bencode.Unmarshal(payload, &d); err != nil {
2020-04-18 07:45:01 +00:00
c.logger.Printf("error parsing extended handshake message %q: %s", payload, err)
return errors.Wrap(err, "unmarshalling extended handshake payload")
}
if cb := c.callbacks.ReadExtendedHandshake; cb != nil {
2020-07-15 06:16:09 +00:00
cb(c, &d)
}
2020-04-18 07:45:01 +00:00
//c.logger.WithDefaultLevel(log.Debug).Printf("received extended handshake message:\n%s", spew.Sdump(d))
if d.Reqq != 0 {
c.PeerMaxRequests = d.Reqq
}
c.PeerClientName = d.V
if c.PeerExtensionIDs == nil {
c.PeerExtensionIDs = make(map[pp.ExtensionName]pp.ExtensionNumber, len(d.M))
}
c.PeerListenPort = d.Port
c.PeerPrefersEncryption = d.Encryption
for name, id := range d.M {
if _, ok := c.PeerExtensionIDs[name]; !ok {
torrent.Add(fmt.Sprintf("peers supporting extension %q", name), 1)
}
c.PeerExtensionIDs[name] = id
}
if d.MetadataSize != 0 {
if err = t.setMetadataSize(d.MetadataSize); err != nil {
return errors.Wrapf(err, "setting metadata size to %d", d.MetadataSize)
}
}
c.requestPendingMetadata()
2020-04-08 16:03:29 +00:00
if !t.cl.config.DisablePEX {
t.pex.Add(c) // we learnt enough now
c.pex.Init(c)
}
return nil
case metadataExtendedId:
err := cl.gotMetadataExtensionMsg(payload, t, c)
if err != nil {
return fmt.Errorf("handling metadata extension message: %w", err)
}
return nil
case pexExtendedId:
2020-04-08 16:03:29 +00:00
if !c.pex.IsEnabled() {
return nil // or hang-up maybe?
}
2020-04-08 16:03:29 +00:00
return c.pex.Recv(payload)
default:
return fmt.Errorf("unexpected extended message ID: %v", id)
}
}
// Set both the Reader and Writer for the connection from a single ReadWriter.
func (cn *PeerConn) setRW(rw io.ReadWriter) {
cn.r = rw
cn.w = rw
}
// Returns the Reader and Writer as a combined ReadWriter.
func (cn *PeerConn) rw() io.ReadWriter {
return struct {
io.Reader
io.Writer
}{cn.r, cn.w}
}
// Handle a received chunk from a peer.
2021-01-20 02:10:32 +00:00
func (c *Peer) receiveChunk(msg *pp.Message) error {
t := c.t
cl := t.cl
2018-06-17 06:18:22 +00:00
torrent.Add("chunks received", 1)
2018-02-02 08:19:14 +00:00
req := newRequestFromMessage(msg)
if c.peerChoking {
torrent.Add("chunks received while choking", 1)
}
if c.validReceiveChunks[req] <= 0 {
torrent.Add("chunks received unexpected", 1)
return errors.New("received unexpected chunk")
}
c.decExpectedChunkReceive(req)
if c.peerChoking && c.peerAllowedFast.Get(int(req.Index)) {
torrent.Add("chunks received due to allowed fast", 1)
}
defer func() {
// Request has been satisfied.
if c.deleteRequest(req) {
if c.expectingChunks() {
c._chunksReceivedWhileExpecting++
}
} else {
torrent.Add("chunks received unwanted", 1)
}
}()
// Do we actually want this chunk?
if t.haveChunk(req) {
torrent.Add("chunks received wasted", 1)
c.allStats(add(1, func(cs *ConnStats) *Count { return &cs.ChunksReadWasted }))
return nil
}
piece := &t.pieces[req.Index]
2018-06-12 10:21:53 +00:00
c.allStats(add(1, func(cs *ConnStats) *Count { return &cs.ChunksReadUseful }))
c.allStats(add(int64(len(msg.Piece)), func(cs *ConnStats) *Count { return &cs.BytesReadUsefulData }))
2021-01-20 03:22:44 +00:00
for _, f := range c.t.cl.config.Callbacks.ReceivedUsefulData {
f(ReceivedUsefulDataEvent{c, msg})
}
c.lastUsefulChunkReceived = time.Now()
2020-06-01 09:09:17 +00:00
// if t.fastestPeer != c {
2017-11-07 05:11:59 +00:00
// log.Printf("setting fastest connection %p", c)
// }
2020-06-01 09:09:17 +00:00
t.fastestPeer = c
// Need to record that it hasn't been written yet, before we attempt to do
// anything with it.
piece.incrementPendingWrites()
2017-12-29 01:16:05 +00:00
// Record that we have the chunk, so we aren't trying to download it while
// waiting for it to be written to storage.
piece.unpendChunkIndex(chunkIndex(req.chunkSpec, t.chunkSize))
// Cancel pending requests for this chunk.
for c := range t.conns {
c.postCancel(req)
}
err := func() error {
2018-07-25 03:41:50 +00:00
cl.unlock()
defer cl.lock()
2019-06-13 02:18:08 +00:00
concurrentChunkWrites.Add(1)
defer concurrentChunkWrites.Add(-1)
2020-02-22 08:38:56 +00:00
// Write the chunk out. Note that the upper bound on chunk writing concurrency will be the
// number of connections. We write inline with receiving the chunk (with this lock dance),
// because we want to handle errors synchronously and I haven't thought of a nice way to
// defer any concurrency to the storage and have that notify the client of errors. TODO: Do
// that instead.
return t.writeChunk(int(msg.Index), int64(msg.Begin), msg.Piece)
}()
piece.decrementPendingWrites()
if err != nil {
2020-10-09 23:24:58 +00:00
c.logger.WithDefaultLevel(log.Error).Printf("writing received chunk %v: %v", req, err)
t.pendRequest(req)
//t.updatePieceCompletion(pieceIndex(msg.Index))
t.onWriteChunkErr(err)
return nil
}
c.onDirtiedPiece(pieceIndex(req.Index))
// We need to ensure the piece is only queued once, so only the last chunk writer gets this job.
if t.pieceAllDirty(pieceIndex(req.Index)) && piece.pendingWrites == 0 {
t.queuePieceCheck(pieceIndex(req.Index))
// We don't pend all chunks here anymore because we don't want code dependent on the dirty
// chunk status (such as the haveChunk call above) to have to check all the various other
// piece states like queued for hash, hashing etc. This does mean that we need to be sure
// that chunk pieces are pended at an appropriate time later however.
}
cl.event.Broadcast()
2020-01-23 02:51:14 +00:00
// We do this because we've written a chunk, and may change PieceState.Partial.
t.publishPieceChange(pieceIndex(req.Index))
return nil
}
2021-01-20 02:10:32 +00:00
func (c *Peer) onDirtiedPiece(piece pieceIndex) {
2018-02-03 01:08:16 +00:00
if c.peerTouchedPieces == nil {
c.peerTouchedPieces = make(map[pieceIndex]struct{})
2018-02-03 01:08:16 +00:00
}
c.peerTouchedPieces[piece] = struct{}{}
ds := &c.t.pieces[piece].dirtiers
if *ds == nil {
2021-01-20 02:10:32 +00:00
*ds = make(map[*Peer]struct{})
2018-02-03 01:08:16 +00:00
}
(*ds)[c] = struct{}{}
}
func (c *PeerConn) uploadAllowed() bool {
if c.t.cl.config.NoUpload {
return false
}
if c.t.dataUploadDisallowed {
return false
}
if c.t.seeding() {
return true
}
if !c.peerHasWantedPieces() {
return false
}
// Don't upload more than 100 KiB more than we download.
if c._stats.BytesWrittenData.Int64() >= c._stats.BytesReadData.Int64()+100<<10 {
return false
}
return true
}
func (c *PeerConn) setRetryUploadTimer(delay time.Duration) {
if c.uploadTimer == nil {
c.uploadTimer = time.AfterFunc(delay, c.writerCond.Broadcast)
} else {
c.uploadTimer.Reset(delay)
}
}
// Also handles choking and unchoking of the remote peer.
func (c *PeerConn) upload(msg func(pp.Message) bool) bool {
// Breaking or completing this loop means we don't want to upload to the
// peer anymore, and we choke them.
another:
for c.uploadAllowed() {
// We want to upload to the peer.
if !c.unchoke(msg) {
return false
}
for r, state := range c.peerRequests {
if state.data == nil {
continue
}
res := c.t.cl.config.UploadRateLimiter.ReserveN(time.Now(), int(r.Length))
if !res.OK() {
panic(fmt.Sprintf("upload rate limiter burst size < %d", r.Length))
}
delay := res.Delay()
if delay > 0 {
res.Cancel()
c.setRetryUploadTimer(delay)
// Hard to say what to return here.
return true
}
more := c.sendChunk(r, msg, state)
delete(c.peerRequests, r)
if !more {
return false
}
goto another
}
return true
}
return c.choke(msg)
}
func (cn *PeerConn) drop() {
cn.t.dropConnection(cn)
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) netGoodPiecesDirtied() int64 {
return cn._stats.PiecesDirtiedGood.Int64() - cn._stats.PiecesDirtiedBad.Int64()
}
2021-01-20 02:10:32 +00:00
func (c *Peer) peerHasWantedPieces() bool {
return !c._pieceRequestOrder.IsEmpty()
}
2021-01-20 02:10:32 +00:00
func (c *Peer) numLocalRequests() int {
return len(c.requests)
}
2021-01-20 02:10:32 +00:00
func (c *Peer) deleteRequest(r request) bool {
if _, ok := c.requests[r]; !ok {
return false
}
delete(c.requests, r)
c.updateExpectingChunks()
c.t.requestStrategy.hooks().deletedRequest(r)
pr := c.t.pendingRequests
pr[r]--
n := pr[r]
if n == 0 {
delete(pr, r)
}
if n < 0 {
panic(n)
}
// If a request fails, updating the requests for the current peer first may miss the opportunity
// to try other peers for that request instead, depending on the request strategy. This might
// only affect webseed peers though, since they synchronously issue new requests: PeerConns do
// it in the writer routine.
const updateCurrentConnRequestsFirst = false
if updateCurrentConnRequestsFirst {
c.updateRequests()
}
// Give other conns a chance to pick up the request.
2021-01-20 02:10:32 +00:00
c.t.iterPeers(func(_c *Peer) {
// We previously checked that the peer wasn't interested to to only wake connections that
// were unable to issue requests due to starvation by the request strategy. There could be
// performance ramifications.
if _c != c && c.peerHasPiece(pieceIndex(r.Index)) {
_c.updateRequests()
}
2020-05-30 05:18:28 +00:00
})
if !updateCurrentConnRequestsFirst {
c.updateRequests()
}
return true
}
2017-11-04 06:08:02 +00:00
2021-01-20 02:10:32 +00:00
func (c *Peer) deleteAllRequests() {
for r := range c.requests {
c.deleteRequest(r)
}
if len(c.requests) != 0 {
panic(len(c.requests))
}
// for c := range c.t.conns {
// c.tickleWriter()
// }
}
// This is called when something has changed that should wake the writer, such as putting stuff into
// the writeBuffer, or changing some state that the writer can act on.
func (c *PeerConn) tickleWriter() {
c.writerCond.Broadcast()
}
2021-01-20 02:10:32 +00:00
func (c *Peer) postCancel(r request) bool {
if !c.deleteRequest(r) {
return false
}
2020-06-02 07:41:59 +00:00
c.peerImpl._postCancel(r)
return true
}
2018-02-02 02:26:04 +00:00
2020-06-02 07:41:59 +00:00
func (c *PeerConn) _postCancel(r request) {
2020-05-30 07:52:27 +00:00
c.post(makeCancelMessage(r))
}
func (c *PeerConn) sendChunk(r request, msg func(pp.Message) bool, state *peerRequestState) (more bool) {
c.lastChunkSent = time.Now()
return msg(pp.Message{
2018-02-02 02:26:04 +00:00
Type: pp.Piece,
Index: r.Index,
Begin: r.Begin,
Piece: state.data,
2018-02-02 02:26:04 +00:00
})
}
func (c *PeerConn) setTorrent(t *Torrent) {
if c.t != nil {
panic("connection already associated with a torrent")
}
c.t = t
2020-10-09 23:24:58 +00:00
c.logger.WithDefaultLevel(log.Debug).Printf("set torrent=%v", t)
t.reconcileHandshakeStats(c)
}
2021-01-20 02:10:32 +00:00
func (c *Peer) peerPriority() (peerPriority, error) {
return bep40Priority(c.remoteIpPort(), c.t.cl.publicAddr(c.remoteIp()))
}
2021-01-20 02:10:32 +00:00
func (c *Peer) remoteIp() net.IP {
host, _, _ := net.SplitHostPort(c.RemoteAddr.String())
return net.ParseIP(host)
}
2021-01-20 02:10:32 +00:00
func (c *Peer) remoteIpPort() IpPort {
2020-07-15 06:15:38 +00:00
ipa, _ := tryIpPortFromNetAddr(c.RemoteAddr)
return IpPort{ipa.IP, uint16(ipa.Port)}
}
2019-10-01 11:16:18 +00:00
func (c *PeerConn) pexPeerFlags() pp.PexPeerFlags {
f := pp.PexPeerFlags(0)
if c.PeerPrefersEncryption {
f |= pp.PexPrefersEncryption
}
if c.outgoing {
f |= pp.PexOutgoingConn
}
if c.utp() {
f |= pp.PexSupportsUtp
}
return f
}
2020-10-22 21:58:55 +00:00
// This returns the address to use if we want to dial the peer again. It incorporates the peer's
// advertised listen port.
func (c *PeerConn) dialAddr() PeerRemoteAddr {
2020-04-08 16:03:29 +00:00
if !c.outgoing && c.PeerListenPort != 0 {
2020-07-15 06:15:38 +00:00
switch addr := c.RemoteAddr.(type) {
2020-04-08 16:03:29 +00:00
case *net.TCPAddr:
dialAddr := *addr
dialAddr.Port = c.PeerListenPort
return &dialAddr
case *net.UDPAddr:
dialAddr := *addr
dialAddr.Port = c.PeerListenPort
return &dialAddr
}
}
2020-07-15 06:15:38 +00:00
return c.RemoteAddr
2020-04-08 16:03:29 +00:00
}
2020-03-31 20:14:43 +00:00
func (c *PeerConn) pexEvent(t pexEventType) pexEvent {
f := c.pexPeerFlags()
2020-04-08 16:03:29 +00:00
addr := c.dialAddr()
return pexEvent{t, addr, f}
2020-03-31 20:14:43 +00:00
}
func (c *PeerConn) String() string {
return fmt.Sprintf("connection %p", c)
2019-10-01 11:16:18 +00:00
}
2021-01-20 02:10:32 +00:00
func (c *Peer) trust() connectionTrust {
return connectionTrust{c.trusted, c.netGoodPiecesDirtied()}
}
type connectionTrust struct {
Implicit bool
NetGoodPiecesDirted int64
}
func (l connectionTrust) Less(r connectionTrust) bool {
return multiless.New().Bool(l.Implicit, r.Implicit).Int64(l.NetGoodPiecesDirted, r.NetGoodPiecesDirted).Less()
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) requestStrategyConnection() requestStrategyConnection {
return cn
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) chunksReceivedWhileExpecting() int64 {
return cn._chunksReceivedWhileExpecting
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) fastest() bool {
2020-06-01 09:09:17 +00:00
return cn == cn.t.fastestPeer
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) peerMaxRequests() int {
return cn.PeerMaxRequests
}
2020-02-21 00:51:24 +00:00
// Returns the pieces the peer has claimed to have.
func (cn *PeerConn) PeerPieces() bitmap.Bitmap {
cn.locker().RLock()
defer cn.locker().RUnlock()
return cn.peerPieces()
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) peerPieces() bitmap.Bitmap {
ret := cn._peerPieces.Copy()
if cn.peerSentHaveAll {
ret.AddRange(0, cn.t.numPieces())
}
return ret
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) pieceRequestOrder() *prioritybitmap.PriorityBitmap {
return &cn._pieceRequestOrder
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) stats() *ConnStats {
return &cn._stats
}
2021-01-20 02:10:32 +00:00
func (cn *Peer) torrent() requestStrategyTorrent {
return cn.t.requestStrategyTorrent()
}