2018-01-26 18:04:13 +00:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
2018-01-31 19:11:08 +00:00
|
|
|
"bytes"
|
2018-02-01 07:19:12 +00:00
|
|
|
"fmt"
|
2018-01-26 18:04:13 +00:00
|
|
|
"net"
|
2018-01-31 19:11:08 +00:00
|
|
|
|
|
|
|
"github.com/anthdm/neo-go/pkg/network/payload"
|
2018-01-31 21:14:13 +00:00
|
|
|
"github.com/anthdm/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-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-01-28 17:42:22 +00:00
|
|
|
// all cleanup will happen in the server's loop when unregister is received.
|
2018-01-26 18:04:13 +00:00
|
|
|
s.unregister <- peer
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Start a goroutine that will handle all writes to the registered peer.
|
|
|
|
go peer.writeLoop()
|
|
|
|
|
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)
|
|
|
|
if err != nil {
|
|
|
|
s.logger.Printf("conn read error: %s", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
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-01-26 18:04:13 +00:00
|
|
|
break
|
|
|
|
}
|
2018-01-31 19:11:08 +00:00
|
|
|
handleMessage(msg, s, peer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-01 07:19:12 +00:00
|
|
|
// handleMessage hands the message received from a TCP connection over to the server.
|
2018-01-31 19:11:08 +00:00
|
|
|
func handleMessage(msg *Message, s *Server, p *TCPPeer) {
|
|
|
|
command := msg.commandType()
|
|
|
|
|
2018-01-31 21:14:13 +00:00
|
|
|
s.logger.Printf("IN :: %d :: %s :: %v", p.id(), command, msg)
|
2018-01-31 19:11:08 +00:00
|
|
|
|
|
|
|
switch command {
|
|
|
|
case cmdVersion:
|
|
|
|
resp := s.handleVersionCmd(msg, p)
|
|
|
|
p.isVerack = true
|
|
|
|
p.nonce = msg.Payload.(*payload.Version).Nonce
|
|
|
|
p.send <- resp
|
|
|
|
case cmdAddr:
|
|
|
|
s.handleAddrCmd(msg, p)
|
|
|
|
case cmdGetAddr:
|
|
|
|
s.handleGetaddrCmd(msg, p)
|
|
|
|
case cmdInv:
|
|
|
|
resp := s.handleInvCmd(msg, p)
|
|
|
|
p.send <- resp
|
|
|
|
case cmdBlock:
|
|
|
|
case cmdConsensus:
|
|
|
|
case cmdTX:
|
|
|
|
case cmdVerack:
|
|
|
|
go s.sendLoop(p)
|
|
|
|
case cmdGetHeaders:
|
|
|
|
case cmdGetBlocks:
|
|
|
|
case cmdGetData:
|
|
|
|
case cmdHeaders:
|
|
|
|
default:
|
2018-01-26 18:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
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.
|
|
|
|
send chan *Message
|
|
|
|
// whether this peers version was acknowledged.
|
|
|
|
isVerack bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
send: make(chan *Message),
|
|
|
|
endpoint: e,
|
|
|
|
s: s,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *TCPPeer) callVersion(msg *Message) {
|
|
|
|
p.send <- msg
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// verack implements the peer interface
|
|
|
|
func (p *TCPPeer) verack() bool {
|
|
|
|
return p.isVerack
|
|
|
|
}
|
|
|
|
|
|
|
|
// callGetaddr will send the "getaddr" command to the remote.
|
|
|
|
func (p *TCPPeer) callGetaddr(msg *Message) {
|
|
|
|
p.send <- msg
|
|
|
|
}
|
|
|
|
|
|
|
|
// disconnect closes the send channel and the underlying connection.
|
|
|
|
func (p *TCPPeer) disconnect() {
|
|
|
|
close(p.send)
|
|
|
|
p.conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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() {
|
|
|
|
p.conn.Close()
|
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
|
|
|
msg := <-p.send
|
|
|
|
|
|
|
|
p.s.logger.Printf("OUT :: %s :: %+v", msg.commandType(), msg.Payload)
|
|
|
|
|
|
|
|
// should we disconnect here?
|
|
|
|
if err := msg.encode(p.conn); err != nil {
|
|
|
|
p.s.logger.Printf("encode error: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|