2014-05-28 15:27:48 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2016-05-07 08:56:44 +00:00
|
|
|
"io"
|
2018-06-11 02:20:51 +00:00
|
|
|
"net"
|
2016-09-11 05:43:57 +00:00
|
|
|
"sync"
|
2014-05-28 15:27:48 +00:00
|
|
|
"testing"
|
2014-12-26 06:17:00 +00:00
|
|
|
|
2016-09-11 05:43:57 +00:00
|
|
|
"github.com/anacrolix/missinggo/pubsub"
|
2020-05-03 09:31:20 +00:00
|
|
|
"github.com/frankban/quicktest"
|
2019-08-21 10:58:40 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2016-09-11 05:43:57 +00:00
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
2016-11-22 03:20:48 +00:00
|
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
2016-09-11 05:43:57 +00:00
|
|
|
"github.com/anacrolix/torrent/storage"
|
2014-05-28 15:27:48 +00:00
|
|
|
)
|
|
|
|
|
2016-05-11 13:50:21 +00:00
|
|
|
// Ensure that no race exists between sending a bitfield, and a subsequent
|
|
|
|
// Have that would potentially alter it.
|
|
|
|
func TestSendBitfieldThenHave(t *testing.T) {
|
2021-09-14 13:01:20 +00:00
|
|
|
var cl Client
|
|
|
|
cl.init(TestingConfig(t))
|
2018-02-03 04:09:38 +00:00
|
|
|
cl.initLogger()
|
2021-01-25 04:43:28 +00:00
|
|
|
c := cl.newConnection(nil, false, nil, "io.Pipe", "")
|
2018-02-03 04:09:38 +00:00
|
|
|
c.setTorrent(cl.newTorrent(metainfo.Hash{}, nil))
|
2021-09-19 05:16:37 +00:00
|
|
|
if err := c.t.setInfo(&metainfo.Info{Pieces: make([]byte, metainfo.HashSize*3)}); err != nil {
|
2021-09-14 13:01:20 +00:00
|
|
|
t.Log(err)
|
|
|
|
}
|
2019-10-03 09:09:55 +00:00
|
|
|
r, w := io.Pipe()
|
2021-01-25 04:43:28 +00:00
|
|
|
//c.r = r
|
2018-02-03 04:09:38 +00:00
|
|
|
c.w = w
|
2021-05-20 08:51:08 +00:00
|
|
|
c.startWriter()
|
2020-02-21 00:51:24 +00:00
|
|
|
c.locker().Lock()
|
2020-01-10 04:09:21 +00:00
|
|
|
c.t._completedPieces.Add(1)
|
2020-02-21 00:07:50 +00:00
|
|
|
c.postBitfield( /*[]bool{false, true, false}*/ )
|
2020-02-21 00:51:24 +00:00
|
|
|
c.locker().Unlock()
|
|
|
|
c.locker().Lock()
|
2020-02-21 00:07:50 +00:00
|
|
|
c.have(2)
|
2020-02-21 00:51:24 +00:00
|
|
|
c.locker().Unlock()
|
2016-05-11 13:50:21 +00:00
|
|
|
b := make([]byte, 15)
|
|
|
|
n, err := io.ReadFull(r, b)
|
2020-02-21 00:51:24 +00:00
|
|
|
c.locker().Lock()
|
2016-05-11 13:50:21 +00:00
|
|
|
// This will cause connection.writer to terminate.
|
|
|
|
c.closed.Set()
|
2020-02-21 00:51:24 +00:00
|
|
|
c.locker().Unlock()
|
2016-05-11 13:50:21 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, 15, n)
|
|
|
|
// Here we see that the bitfield doesn't have piece 2 set, as that should
|
|
|
|
// arrive in the following Have message.
|
|
|
|
require.EqualValues(t, "\x00\x00\x00\x02\x05@\x00\x00\x00\x05\x04\x00\x00\x00\x02", string(b))
|
|
|
|
}
|
2016-09-11 05:43:57 +00:00
|
|
|
|
|
|
|
type torrentStorage struct {
|
|
|
|
writeSem sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) Close() error { return nil }
|
|
|
|
|
|
|
|
func (me *torrentStorage) Piece(mp metainfo.Piece) storage.PieceImpl {
|
|
|
|
return me
|
|
|
|
}
|
|
|
|
|
2017-10-12 05:09:32 +00:00
|
|
|
func (me *torrentStorage) Completion() storage.Completion {
|
|
|
|
return storage.Completion{}
|
2016-09-11 05:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) MarkComplete() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) MarkNotComplete() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) ReadAt([]byte, int64) (int, error) {
|
|
|
|
panic("shouldn't be called")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) WriteAt(b []byte, _ int64) (int, error) {
|
|
|
|
if len(b) != defaultChunkSize {
|
|
|
|
panic(len(b))
|
|
|
|
}
|
|
|
|
me.writeSem.Unlock()
|
|
|
|
return len(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkConnectionMainReadLoop(b *testing.B) {
|
2020-05-03 09:31:20 +00:00
|
|
|
c := quicktest.New(b)
|
2021-09-14 13:01:20 +00:00
|
|
|
var cl Client
|
|
|
|
cl.init(&ClientConfig{
|
|
|
|
DownloadRateLimiter: unlimited,
|
|
|
|
})
|
2019-10-04 02:38:46 +00:00
|
|
|
cl.initLogger()
|
2016-09-11 05:43:57 +00:00
|
|
|
ts := &torrentStorage{}
|
|
|
|
t := &Torrent{
|
2021-09-14 13:01:20 +00:00
|
|
|
cl: &cl,
|
2021-05-09 13:40:44 +00:00
|
|
|
storage: &storage.Torrent{TorrentImpl: storage.TorrentImpl{Piece: ts.Piece, Close: ts.Close}},
|
2016-09-11 05:43:57 +00:00
|
|
|
pieceStateChanges: pubsub.NewPubSub(),
|
|
|
|
}
|
2018-01-25 06:10:37 +00:00
|
|
|
require.NoError(b, t.setInfo(&metainfo.Info{
|
|
|
|
Pieces: make([]byte, 20),
|
|
|
|
Length: 1 << 20,
|
|
|
|
PieceLength: 1 << 20,
|
|
|
|
}))
|
2016-10-05 04:57:00 +00:00
|
|
|
t.setChunkSize(defaultChunkSize)
|
2020-01-10 04:09:21 +00:00
|
|
|
t._pendingPieces.Set(0, PiecePriorityNormal.BitmapPriority())
|
2018-06-11 02:20:51 +00:00
|
|
|
r, w := net.Pipe()
|
2021-01-25 04:43:28 +00:00
|
|
|
cn := cl.newConnection(r, true, r.RemoteAddr(), r.RemoteAddr().Network(), regularNetConnPeerConnConnString(r))
|
2018-06-11 02:20:51 +00:00
|
|
|
cn.setTorrent(t)
|
2016-09-11 05:43:57 +00:00
|
|
|
mrlErr := make(chan error)
|
2018-06-25 04:09:08 +00:00
|
|
|
msg := pp.Message{
|
|
|
|
Type: pp.Piece,
|
|
|
|
Piece: make([]byte, defaultChunkSize),
|
|
|
|
}
|
2016-09-11 05:43:57 +00:00
|
|
|
go func() {
|
2018-07-25 03:41:50 +00:00
|
|
|
cl.lock()
|
2016-09-11 05:43:57 +00:00
|
|
|
err := cn.mainReadLoop()
|
|
|
|
if err != nil {
|
|
|
|
mrlErr <- err
|
|
|
|
}
|
|
|
|
close(mrlErr)
|
|
|
|
}()
|
2018-06-25 04:09:08 +00:00
|
|
|
wb := msg.MustMarshalBinary()
|
2016-09-11 05:43:57 +00:00
|
|
|
b.SetBytes(int64(len(msg.Piece)))
|
2018-06-25 04:09:08 +00:00
|
|
|
go func() {
|
2016-09-11 05:43:57 +00:00
|
|
|
ts.writeSem.Lock()
|
2021-09-14 03:46:50 +00:00
|
|
|
for i := 0; i < b.N; i += 1 {
|
2018-07-25 03:41:50 +00:00
|
|
|
cl.lock()
|
2018-06-25 04:09:08 +00:00
|
|
|
// The chunk must be written to storage everytime, to ensure the
|
|
|
|
// writeSem is unlocked.
|
2021-09-20 08:52:54 +00:00
|
|
|
t.pendAllChunkSpecs(0)
|
2021-09-19 05:16:37 +00:00
|
|
|
cn.validReceiveChunks = map[RequestIndex]int{
|
|
|
|
t.requestIndexFromRequest(newRequestFromMessage(&msg)): 1,
|
|
|
|
}
|
2018-07-25 03:41:50 +00:00
|
|
|
cl.unlock()
|
2018-06-25 04:09:08 +00:00
|
|
|
n, err := w.Write(wb)
|
|
|
|
require.NoError(b, err)
|
|
|
|
require.EqualValues(b, len(wb), n)
|
|
|
|
ts.writeSem.Lock()
|
|
|
|
}
|
2021-09-14 13:01:20 +00:00
|
|
|
if err := w.Close(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-06-25 04:09:08 +00:00
|
|
|
}()
|
2020-05-03 09:31:20 +00:00
|
|
|
c.Assert([]error{nil, io.EOF}, quicktest.Contains, <-mrlErr)
|
|
|
|
c.Assert(cn._stats.ChunksReadUseful.Int64(), quicktest.Equals, int64(b.N))
|
2016-09-11 05:43:57 +00:00
|
|
|
}
|
2019-12-11 11:45:04 +00:00
|
|
|
|
2020-04-08 16:03:29 +00:00
|
|
|
func TestConnPexPeerFlags(t *testing.T) {
|
|
|
|
var (
|
|
|
|
tcpAddr = &net.TCPAddr{IP: net.IPv6loopback, Port: 4848}
|
|
|
|
udpAddr = &net.UDPAddr{IP: net.IPv6loopback, Port: 4848}
|
|
|
|
)
|
2019-12-11 11:45:04 +00:00
|
|
|
var testcases = []struct {
|
|
|
|
conn *PeerConn
|
|
|
|
f pp.PexPeerFlags
|
|
|
|
}{
|
2021-01-20 02:10:32 +00:00
|
|
|
{&PeerConn{Peer: Peer{outgoing: false, PeerPrefersEncryption: false}}, 0},
|
|
|
|
{&PeerConn{Peer: Peer{outgoing: false, PeerPrefersEncryption: true}}, pp.PexPrefersEncryption},
|
|
|
|
{&PeerConn{Peer: Peer{outgoing: true, PeerPrefersEncryption: false}}, pp.PexOutgoingConn},
|
|
|
|
{&PeerConn{Peer: Peer{outgoing: true, PeerPrefersEncryption: true}}, pp.PexOutgoingConn | pp.PexPrefersEncryption},
|
2021-01-25 04:43:28 +00:00
|
|
|
{&PeerConn{Peer: Peer{RemoteAddr: udpAddr, Network: udpAddr.Network()}}, pp.PexSupportsUtp},
|
|
|
|
{&PeerConn{Peer: Peer{RemoteAddr: udpAddr, Network: udpAddr.Network(), outgoing: true}}, pp.PexOutgoingConn | pp.PexSupportsUtp},
|
|
|
|
{&PeerConn{Peer: Peer{RemoteAddr: tcpAddr, Network: tcpAddr.Network(), outgoing: true}}, pp.PexOutgoingConn},
|
|
|
|
{&PeerConn{Peer: Peer{RemoteAddr: tcpAddr, Network: tcpAddr.Network()}}, 0},
|
2019-12-11 11:45:04 +00:00
|
|
|
}
|
|
|
|
for i, tc := range testcases {
|
|
|
|
f := tc.conn.pexPeerFlags()
|
|
|
|
require.EqualValues(t, tc.f, f, i)
|
|
|
|
}
|
|
|
|
}
|
2020-04-08 16:03:29 +00:00
|
|
|
|
|
|
|
func TestConnPexEvent(t *testing.T) {
|
|
|
|
var (
|
|
|
|
udpAddr = &net.UDPAddr{IP: net.IPv6loopback, Port: 4848}
|
|
|
|
tcpAddr = &net.TCPAddr{IP: net.IPv6loopback, Port: 4848}
|
|
|
|
dialTcpAddr = &net.TCPAddr{IP: net.IPv6loopback, Port: 4747}
|
|
|
|
dialUdpAddr = &net.UDPAddr{IP: net.IPv6loopback, Port: 4747}
|
|
|
|
)
|
|
|
|
var testcases = []struct {
|
|
|
|
t pexEventType
|
|
|
|
c *PeerConn
|
|
|
|
e pexEvent
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
pexAdd,
|
2021-01-25 04:43:28 +00:00
|
|
|
&PeerConn{Peer: Peer{RemoteAddr: udpAddr, Network: udpAddr.Network()}},
|
2020-04-08 16:03:29 +00:00
|
|
|
pexEvent{pexAdd, udpAddr, pp.PexSupportsUtp},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pexDrop,
|
2021-01-25 04:43:28 +00:00
|
|
|
&PeerConn{Peer: Peer{RemoteAddr: tcpAddr, Network: tcpAddr.Network(), outgoing: true, PeerListenPort: dialTcpAddr.Port}},
|
2020-04-08 16:03:29 +00:00
|
|
|
pexEvent{pexDrop, tcpAddr, pp.PexOutgoingConn},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pexAdd,
|
2021-01-25 04:43:28 +00:00
|
|
|
&PeerConn{Peer: Peer{RemoteAddr: tcpAddr, Network: tcpAddr.Network(), PeerListenPort: dialTcpAddr.Port}},
|
2020-04-08 16:03:29 +00:00
|
|
|
pexEvent{pexAdd, dialTcpAddr, 0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pexDrop,
|
2021-01-25 04:43:28 +00:00
|
|
|
&PeerConn{Peer: Peer{RemoteAddr: udpAddr, Network: udpAddr.Network(), PeerListenPort: dialUdpAddr.Port}},
|
2020-04-08 16:03:29 +00:00
|
|
|
pexEvent{pexDrop, dialUdpAddr, pp.PexSupportsUtp},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, tc := range testcases {
|
|
|
|
e := tc.c.pexEvent(tc.t)
|
|
|
|
require.EqualValues(t, tc.e, e, i)
|
|
|
|
}
|
|
|
|
}
|