2018-01-26 18:04:13 +00:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
2018-01-31 19:11:08 +00:00
|
|
|
"bytes"
|
2018-02-02 10:02:25 +00:00
|
|
|
"errors"
|
2018-02-01 07:19:12 +00:00
|
|
|
"fmt"
|
2018-02-01 20:28:45 +00:00
|
|
|
"io"
|
2018-01-26 18:04:13 +00:00
|
|
|
"net"
|
2018-01-31 19:11:08 +00:00
|
|
|
|
2018-02-01 18:54:23 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/network/payload"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
2018-01-26 18:04:13 +00:00
|
|
|
)
|
|
|
|
|
2018-02-01 07:19:12 +00:00
|
|
|
func listenTCP(s *Server, port int) error {
|
|
|
|
ln, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
|
2018-01-26 18:04:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-01-31 13:32:57 +00:00
|
|
|
s.listener = ln
|
|
|
|
|
2018-01-26 18:04:13 +00:00
|
|
|
for {
|
|
|
|
conn, err := ln.Accept()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-02-01 13:53:49 +00:00
|
|
|
|
2018-01-29 18:17:49 +00:00
|
|
|
go handleConnection(s, conn)
|
2018-01-26 18:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 13:59:32 +00:00
|
|
|
func connectToRemoteNode(s *Server, address string) {
|
|
|
|
conn, err := net.Dial("tcp", address)
|
|
|
|
if err != nil {
|
2018-01-28 17:42:22 +00:00
|
|
|
s.logger.Printf("failed to connect to remote node %s", address)
|
2018-01-28 13:59:32 +00:00
|
|
|
if conn != nil {
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2018-01-29 18:17:49 +00:00
|
|
|
go handleConnection(s, conn)
|
2018-01-28 13:59:32 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 18:04:13 +00:00
|
|
|
func connectToSeeds(s *Server, addrs []string) {
|
|
|
|
for _, addr := range addrs {
|
2018-01-28 13:59:32 +00:00
|
|
|
go connectToRemoteNode(s, addr)
|
2018-01-26 18:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 18:17:49 +00:00
|
|
|
func handleConnection(s *Server, conn net.Conn) {
|
2018-01-31 19:11:08 +00:00
|
|
|
peer := NewTCPPeer(conn, s)
|
2018-01-26 18:04:13 +00:00
|
|
|
s.register <- peer
|
|
|
|
|
|
|
|
// remove the peer from connected peers and cleanup the connection.
|
|
|
|
defer func() {
|
2018-02-02 10:02:25 +00:00
|
|
|
peer.disconnect()
|
2018-01-26 18:04:13 +00:00
|
|
|
}()
|
|
|
|
|
2018-02-01 13:53:49 +00:00
|
|
|
// Start a goroutine that will handle all outgoing messages.
|
2018-01-26 18:04:13 +00:00
|
|
|
go peer.writeLoop()
|
2018-02-01 13:53:49 +00:00
|
|
|
// Start a goroutine that will handle all incomming messages.
|
|
|
|
go handleMessage(s, peer)
|
2018-01-26 18:04:13 +00:00
|
|
|
|
2018-01-31 19:11:08 +00:00
|
|
|
// Read from the connection and decode it into a Message ready for processing.
|
|
|
|
buf := make([]byte, 1024)
|
2018-01-26 18:04:13 +00:00
|
|
|
for {
|
2018-01-31 19:11:08 +00:00
|
|
|
_, err := conn.Read(buf)
|
2018-02-01 20:28:45 +00:00
|
|
|
if err == io.EOF {
|
2018-02-02 10:02:25 +00:00
|
|
|
return
|
2018-02-01 20:28:45 +00:00
|
|
|
}
|
2018-01-31 19:11:08 +00:00
|
|
|
if err != nil {
|
|
|
|
s.logger.Printf("conn read error: %s", err)
|
2018-02-02 10:02:25 +00:00
|
|
|
return
|
2018-01-31 19:11:08 +00:00
|
|
|
}
|
|
|
|
|
2018-01-28 10:20:42 +00:00
|
|
|
msg := &Message{}
|
2018-01-31 19:11:08 +00:00
|
|
|
if err := msg.decode(bytes.NewReader(buf)); err != nil {
|
|
|
|
s.logger.Printf("decode error %s", err)
|
2018-02-02 10:02:25 +00:00
|
|
|
return
|
2018-01-26 18:04:13 +00:00
|
|
|
}
|
2018-02-01 13:53:49 +00:00
|
|
|
|
|
|
|
peer.receive <- msg
|
2018-01-31 19:11:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-01 07:19:12 +00:00
|
|
|
// handleMessage hands the message received from a TCP connection over to the server.
|
2018-02-01 13:53:49 +00:00
|
|
|
func handleMessage(s *Server, p *TCPPeer) {
|
2018-02-02 10:02:25 +00:00
|
|
|
var err error
|
|
|
|
|
2018-02-01 13:53:49 +00:00
|
|
|
// Disconnect the peer when we break out of the loop.
|
|
|
|
defer func() {
|
2018-02-02 10:02:25 +00:00
|
|
|
p.disconnect()
|
2018-02-01 13:53:49 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
|
|
|
msg := <-p.receive
|
|
|
|
command := msg.commandType()
|
|
|
|
|
|
|
|
s.logger.Printf("IN :: %d :: %s :: %v", p.id(), command, msg)
|
|
|
|
|
|
|
|
switch command {
|
|
|
|
case cmdVersion:
|
2018-02-02 10:02:25 +00:00
|
|
|
if err = s.handleVersionCmd(msg, p); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-02-01 13:53:49 +00:00
|
|
|
p.nonce = msg.Payload.(*payload.Version).Nonce
|
2018-02-02 10:02:25 +00:00
|
|
|
|
|
|
|
// When a node receives a connection request, it declares its version immediately.
|
|
|
|
// There will be no other communication until both sides are getting versions of each other.
|
|
|
|
// When a node receives the version message, it replies to a verack as a response immediately.
|
|
|
|
// NOTE: The current official NEO nodes dont mimic this behaviour. There is small chance that the
|
|
|
|
// official nodes will not respond directly with a verack after we sended our version.
|
|
|
|
// is this a bug? - anthdm 02/02/2018
|
|
|
|
msgVerack := <-p.receive
|
|
|
|
if msgVerack.commandType() != cmdVerack {
|
|
|
|
s.logger.Printf("expected verack after sended out version")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// start the protocol
|
|
|
|
go s.sendLoop(p)
|
2018-02-01 13:53:49 +00:00
|
|
|
case cmdAddr:
|
2018-02-02 10:02:25 +00:00
|
|
|
err = s.handleAddrCmd(msg, p)
|
2018-02-01 13:53:49 +00:00
|
|
|
case cmdGetAddr:
|
2018-02-02 10:02:25 +00:00
|
|
|
err = s.handleGetaddrCmd(msg, p)
|
2018-02-01 13:53:49 +00:00
|
|
|
case cmdInv:
|
2018-02-02 10:02:25 +00:00
|
|
|
err = s.handleInvCmd(msg, p)
|
2018-02-01 13:53:49 +00:00
|
|
|
case cmdBlock:
|
2018-02-02 10:02:25 +00:00
|
|
|
err = s.handleBlockCmd(msg, p)
|
2018-02-01 13:53:49 +00:00
|
|
|
case cmdConsensus:
|
|
|
|
case cmdTX:
|
|
|
|
case cmdVerack:
|
2018-02-02 10:02:25 +00:00
|
|
|
// If we receive a verack here we disconnect. We already handled the verack
|
|
|
|
// when we sended our version.
|
|
|
|
err = errors.New("received verack twice")
|
2018-02-01 13:53:49 +00:00
|
|
|
case cmdGetHeaders:
|
|
|
|
case cmdGetBlocks:
|
|
|
|
case cmdGetData:
|
|
|
|
case cmdHeaders:
|
|
|
|
}
|
2018-02-02 10:02:25 +00:00
|
|
|
|
|
|
|
// catch all errors here and disconnect.
|
|
|
|
if err != nil {
|
|
|
|
s.logger.Printf("processing message failed: %s", err)
|
|
|
|
return
|
|
|
|
}
|
2018-01-26 18:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-31 21:14:13 +00:00
|
|
|
|
2018-02-02 10:02:25 +00:00
|
|
|
type sendTuple struct {
|
|
|
|
msg *Message
|
|
|
|
err chan error
|
|
|
|
}
|
|
|
|
|
2018-01-31 21:14:13 +00:00
|
|
|
// TCPPeer represents a remote node, backed by TCP transport.
|
|
|
|
type TCPPeer struct {
|
|
|
|
s *Server
|
|
|
|
// nonce (id) of the peer.
|
|
|
|
nonce uint32
|
|
|
|
// underlying TCP connection
|
|
|
|
conn net.Conn
|
|
|
|
// host and port information about this peer.
|
|
|
|
endpoint util.Endpoint
|
|
|
|
// channel to coordinate messages writen back to the connection.
|
2018-02-02 10:02:25 +00:00
|
|
|
send chan sendTuple
|
2018-02-01 13:53:49 +00:00
|
|
|
// channel to receive from underlying connection.
|
|
|
|
receive chan *Message
|
2018-01-31 21:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewTCPPeer returns a pointer to a TCP Peer.
|
|
|
|
func NewTCPPeer(conn net.Conn, s *Server) *TCPPeer {
|
|
|
|
e, _ := util.EndpointFromString(conn.RemoteAddr().String())
|
|
|
|
|
|
|
|
return &TCPPeer{
|
|
|
|
conn: conn,
|
2018-02-02 10:02:25 +00:00
|
|
|
send: make(chan sendTuple),
|
2018-02-01 13:53:49 +00:00
|
|
|
receive: make(chan *Message),
|
2018-01-31 21:14:13 +00:00
|
|
|
endpoint: e,
|
|
|
|
s: s,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 10:02:25 +00:00
|
|
|
func (p *TCPPeer) callVersion(msg *Message) error {
|
|
|
|
t := sendTuple{
|
|
|
|
msg: msg,
|
|
|
|
err: make(chan error),
|
|
|
|
}
|
|
|
|
|
|
|
|
p.send <- t
|
|
|
|
|
|
|
|
return <-t.err
|
2018-01-31 21:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// id implements the peer interface
|
|
|
|
func (p *TCPPeer) id() uint32 {
|
|
|
|
return p.nonce
|
|
|
|
}
|
|
|
|
|
|
|
|
// endpoint implements the peer interface
|
|
|
|
func (p *TCPPeer) addr() util.Endpoint {
|
|
|
|
return p.endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
// callGetaddr will send the "getaddr" command to the remote.
|
2018-02-02 10:02:25 +00:00
|
|
|
func (p *TCPPeer) callGetaddr(msg *Message) error {
|
|
|
|
t := sendTuple{
|
|
|
|
msg: msg,
|
|
|
|
err: make(chan error),
|
|
|
|
}
|
|
|
|
|
|
|
|
p.send <- t
|
|
|
|
|
|
|
|
return <-t.err
|
2018-01-31 21:14:13 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 10:02:25 +00:00
|
|
|
func (p *TCPPeer) callVerack(msg *Message) error {
|
|
|
|
t := sendTuple{
|
|
|
|
msg: msg,
|
|
|
|
err: make(chan error),
|
|
|
|
}
|
|
|
|
|
|
|
|
p.send <- t
|
|
|
|
|
|
|
|
return <-t.err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *TCPPeer) callGetdata(msg *Message) error {
|
|
|
|
t := sendTuple{
|
|
|
|
msg: msg,
|
|
|
|
err: make(chan error),
|
|
|
|
}
|
|
|
|
|
|
|
|
p.send <- t
|
|
|
|
|
|
|
|
return <-t.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// disconnect disconnects the peer, cleaning up all its resources.
|
|
|
|
// 3 goroutines needs to be cleanup (writeLoop, handleConnection and handleMessage)
|
2018-01-31 21:14:13 +00:00
|
|
|
func (p *TCPPeer) disconnect() {
|
2018-02-02 10:02:25 +00:00
|
|
|
select {
|
|
|
|
case <-p.send:
|
|
|
|
case <-p.receive:
|
|
|
|
default:
|
|
|
|
close(p.send)
|
|
|
|
close(p.receive)
|
|
|
|
p.s.unregister <- p
|
|
|
|
p.conn.Close()
|
|
|
|
}
|
2018-01-31 21:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// writeLoop writes messages to the underlying TCP connection.
|
|
|
|
// A goroutine writeLoop is started for each connection.
|
|
|
|
// There should be at most one writer to a connection executing
|
|
|
|
// all writes from this goroutine.
|
|
|
|
func (p *TCPPeer) writeLoop() {
|
|
|
|
// clean up the connection.
|
|
|
|
defer func() {
|
2018-02-02 10:02:25 +00:00
|
|
|
p.disconnect()
|
2018-01-31 21:14:13 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
2018-02-02 10:02:25 +00:00
|
|
|
t := <-p.send
|
|
|
|
if t.msg == nil {
|
|
|
|
return
|
|
|
|
}
|
2018-01-31 21:14:13 +00:00
|
|
|
|
2018-02-02 10:02:25 +00:00
|
|
|
p.s.logger.Printf("OUT :: %s :: %+v", t.msg.commandType(), t.msg.Payload)
|
2018-01-31 21:14:13 +00:00
|
|
|
|
2018-02-02 10:02:25 +00:00
|
|
|
t.err <- t.msg.encode(p.conn)
|
2018-01-31 21:14:13 +00:00
|
|
|
}
|
|
|
|
}
|