| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- package peer_protocol
- import (
- "context"
- "encoding/hex"
- "errors"
- "fmt"
- "github.com/anacrolix/torrent/internal/ctxrw"
- "io"
- "math/bits"
- "strconv"
- "strings"
- "unsafe"
- "github.com/anacrolix/torrent/metainfo"
- )
- type ExtensionBit uint
- // https://www.bittorrent.org/beps/bep_0004.html
- // https://wiki.theory.org/BitTorrentSpecification.html#Reserved_Bytes
- const (
- ExtensionBitDht = 0 // http://www.bittorrent.org/beps/bep_0005.html
- ExtensionBitFast = 2 // http://www.bittorrent.org/beps/bep_0006.html
- // A peer connection initiator can set this when sending a v1 infohash during handshake if they
- // allow the receiving end to upgrade to v2 by responding with the corresponding v2 infohash.
- // BEP 52, and BEP 4. TODO: Set by default and then clear it when it's not appropriate to send.
- ExtensionBitV2Upgrade = 4
- ExtensionBitAzureusExtensionNegotiation1 = 16
- ExtensionBitAzureusExtensionNegotiation2 = 17
- // LibTorrent Extension Protocol, http://www.bittorrent.org/beps/bep_0010.html
- ExtensionBitLtep = 20
- // https://wiki.theory.org/BitTorrent_Location-aware_Protocol_1
- ExtensionBitLocationAwareProtocol = 43
- ExtensionBitAzureusMessagingProtocol = 63 // https://www.bittorrent.org/beps/bep_0004.html
- )
- func handshakeWriter(w io.Writer, bb <-chan []byte, done chan<- error) {
- var err error
- for b := range bb {
- _, err = w.Write(b)
- if err != nil {
- break
- }
- }
- done <- err
- }
- type (
- PeerExtensionBits [8]byte
- )
- var bitTags = []struct {
- bit ExtensionBit
- tag string
- }{
- // Ordered by their bit position left to right.
- {ExtensionBitAzureusMessagingProtocol, "amp"},
- {ExtensionBitLocationAwareProtocol, "loc"},
- {ExtensionBitLtep, "ltep"},
- {ExtensionBitAzureusExtensionNegotiation2, "azen2"},
- {ExtensionBitAzureusExtensionNegotiation1, "azen1"},
- {ExtensionBitV2Upgrade, "v2"},
- {ExtensionBitFast, "fast"},
- {ExtensionBitDht, "dht"},
- }
- func (pex PeerExtensionBits) String() string {
- pexHex := hex.EncodeToString(pex[:])
- tags := make([]string, 0, len(bitTags)+1)
- for _, bitTag := range bitTags {
- if pex.GetBit(bitTag.bit) {
- tags = append(tags, bitTag.tag)
- pex.SetBit(bitTag.bit, false)
- }
- }
- unknownCount := bits.OnesCount64(*(*uint64)((unsafe.Pointer(&pex[0]))))
- if unknownCount != 0 {
- tags = append(tags, fmt.Sprintf("%v unknown", unknownCount))
- }
- return fmt.Sprintf("%v (%s)", pexHex, strings.Join(tags, ", "))
- }
- func NewPeerExtensionBytes(bits ...ExtensionBit) (ret PeerExtensionBits) {
- for _, b := range bits {
- ret.SetBit(b, true)
- }
- return
- }
- func (pex PeerExtensionBits) SupportsExtended() bool {
- return pex.GetBit(ExtensionBitLtep)
- }
- func (pex PeerExtensionBits) SupportsDHT() bool {
- return pex.GetBit(ExtensionBitDht)
- }
- func (pex PeerExtensionBits) SupportsFast() bool {
- return pex.GetBit(ExtensionBitFast)
- }
- func (pex *PeerExtensionBits) SetBit(bit ExtensionBit, on bool) {
- if on {
- pex[7-bit/8] |= 1 << (bit % 8)
- } else {
- pex[7-bit/8] &^= 1 << (bit % 8)
- }
- }
- func (pex PeerExtensionBits) GetBit(bit ExtensionBit) bool {
- return pex[7-bit/8]&(1<<(bit%8)) != 0
- }
- type HandshakeResult struct {
- PeerExtensionBits
- PeerID [20]byte
- metainfo.Hash
- }
- // ih is nil if we expect the peer to declare the InfoHash, such as when the peer initiated the
- // connection. Returns ok if the Handshake was successful, and err if there was an unexpected
- // condition other than the peer simply abandoning the Handshake.
- func Handshake(
- ctx context.Context,
- sock io.ReadWriter,
- ih *metainfo.Hash,
- peerID [20]byte,
- extensions PeerExtensionBits,
- ) (
- res HandshakeResult, err error,
- ) {
- sock = ctxrw.WrapReadWriter(ctx, sock)
- // Bytes to be sent to the peer. Should never block the sender.
- postCh := make(chan []byte, 4)
- // A single error value sent when the writer completes.
- writeDone := make(chan error, 1)
- // Performs writes to the socket and ensures posts don't block.
- go handshakeWriter(sock, postCh, writeDone)
- defer func() {
- close(postCh) // Done writing.
- if err != nil {
- return
- }
- // Wait until writes complete before returning from handshake.
- err = <-writeDone
- if err != nil {
- err = fmt.Errorf("error writing: %w", err)
- }
- }()
- post := func(bb []byte) {
- select {
- case postCh <- bb:
- default:
- panic("mustn't block while posting")
- }
- }
- post([]byte(Protocol))
- post(extensions[:])
- if ih != nil { // We already know what we want.
- post(ih[:])
- post(peerID[:])
- }
- var b [68]byte
- _, err = io.ReadFull(sock, b[:68])
- if err != nil {
- return res, fmt.Errorf("while reading: %w", err)
- }
- if string(b[:20]) != Protocol {
- return res, errors.New("unexpected protocol string")
- }
- copyExact := func(dst, src []byte) {
- if dstLen, srcLen := uint64(len(dst)), uint64(len(src)); dstLen != srcLen {
- panic("dst len " + strconv.FormatUint(dstLen, 10) + " != src len " + strconv.FormatUint(srcLen, 10))
- }
- copy(dst, src)
- }
- copyExact(res.PeerExtensionBits[:], b[20:28])
- copyExact(res.Hash[:], b[28:48])
- copyExact(res.PeerID[:], b[48:68])
- // peerExtensions.Add(res.PeerExtensionBits.String(), 1)
- // TODO: Maybe we can just drop peers here if we're not interested. This
- // could prevent them trying to reconnect, falsely believing there was
- // just a problem.
- if ih == nil { // We were waiting for the peer to tell us what they wanted.
- post(res.Hash[:])
- post(peerID[:])
- }
- return
- }
|