torrent/handshake.go

73 lines
1.6 KiB
Go
Raw Permalink Normal View History

2017-11-08 04:00:18 +00:00
package torrent
import (
"bytes"
"fmt"
"io"
"net"
"time"
"github.com/anacrolix/torrent/mse"
2017-12-01 07:12:29 +00:00
pp "github.com/anacrolix/torrent/peer_protocol"
2017-11-08 04:00:18 +00:00
)
// Wraps a raw connection and provides the interface we want for using the
// connection in the message loop.
type deadlineReader struct {
nc net.Conn
r io.Reader
}
func (r deadlineReader) Read(b []byte) (int, error) {
// Keep-alives should be received every 2 mins. Give a bit of gracetime.
err := r.nc.SetReadDeadline(time.Now().Add(150 * time.Second))
if err != nil {
return 0, fmt.Errorf("error setting read deadline: %s", err)
}
return r.r.Read(b)
}
// Handles stream encryption for inbound connections.
2017-11-08 04:00:18 +00:00
func handleEncryption(
rw io.ReadWriter,
skeys mse.SecretKeyIter,
policy HeaderObfuscationPolicy,
selector mse.CryptoSelector,
2017-11-08 04:00:18 +00:00
) (
ret io.ReadWriter,
headerEncrypted bool,
2018-02-15 23:36:29 +00:00
cryptoMethod mse.CryptoMethod,
2017-11-08 04:00:18 +00:00
err error,
) {
// Tries to start an unencrypted stream.
if !policy.RequirePreferred || !policy.Preferred {
2017-11-08 04:00:18 +00:00
var protocol [len(pp.Protocol)]byte
_, err = io.ReadFull(rw, protocol[:])
if err != nil {
return
}
// Put the protocol back into the stream.
2017-11-08 04:00:18 +00:00
rw = struct {
io.Reader
io.Writer
}{
io.MultiReader(bytes.NewReader(protocol[:]), rw),
rw,
}
if string(protocol[:]) == pp.Protocol {
ret = rw
return
}
if policy.RequirePreferred {
// We are here because we require unencrypted connections.
err = fmt.Errorf("unexpected protocol string %q and header obfuscation disabled", protocol)
return
}
2017-11-08 04:00:18 +00:00
}
headerEncrypted = true
ret, cryptoMethod, err = mse.ReceiveHandshake(rw, skeys, selector)
2017-11-08 04:00:18 +00:00
return
}
2018-07-07 01:36:58 +00:00
type PeerExtensionBits = pp.PeerExtensionBits