neo-go/pkg/network/server.go

260 lines
6.2 KiB
Go
Raw Normal View History

2018-01-26 18:04:13 +00:00
package network
import (
"fmt"
"log"
"net"
"os"
2018-01-28 10:12:05 +00:00
"time"
2018-01-27 15:00:28 +00:00
"github.com/anthdm/neo-go/pkg/network/payload"
2018-01-28 07:03:18 +00:00
"github.com/anthdm/neo-go/pkg/util"
2018-01-26 18:04:13 +00:00
)
const (
2018-01-26 20:39:34 +00:00
// node version
version = "2.6.0"
// official ports according to the protocol.
2018-01-26 18:04:13 +00:00
portMainNet = 10333
portTestNet = 20333
2018-01-31 19:11:08 +00:00
maxPeers = 50
2018-01-26 18:04:13 +00:00
)
type messageTuple struct {
peer Peer
2018-01-26 18:04:13 +00:00
msg *Message
}
// Server is the representation of a full working NEO TCP node.
type Server struct {
logger *log.Logger
2018-01-28 07:03:18 +00:00
// id of the server
id uint32
2018-01-26 20:39:34 +00:00
// the port the TCP listener is listening on.
port uint16
2018-01-26 18:04:13 +00:00
// userAgent of the server.
userAgent string
// The "magic" mode the server is currently running on.
// This can either be 0x00746e41 or 0x74746e41 for main or test net.
2018-01-26 20:39:34 +00:00
// Or 56753 to work with the docker privnet.
net NetMode
2018-01-26 18:04:13 +00:00
// map that holds all connected peers to this server.
peers map[Peer]bool
2018-01-31 19:11:08 +00:00
// channel for handling new registerd peers.
register chan Peer
// channel for safely removing and disconnecting peers.
unregister chan Peer
2018-01-26 18:04:13 +00:00
// channel for coordinating messages.
message chan messageTuple
// channel used to gracefull shutdown the server.
quit chan struct{}
// Whether this server will receive and forward messages.
relay bool
// TCP listener of the server
listener net.Listener
// channel for safely responding the number of current connected peers.
peerCountCh chan peerCount
2018-01-26 18:04:13 +00:00
}
// NewServer returns a pointer to a new server.
2018-01-26 20:39:34 +00:00
func NewServer(net NetMode) *Server {
2018-01-31 19:11:08 +00:00
logger := log.New(os.Stdout, "[NEO SERVER] :: ", 0)
2018-01-26 18:04:13 +00:00
2018-01-26 20:39:34 +00:00
if net != ModeTestNet && net != ModeMainNet && net != ModeDevNet {
logger.Fatalf("invalid network mode %d", net)
2018-01-26 18:04:13 +00:00
}
s := &Server{
id: util.RandUint32(1111111, 9999999),
userAgent: fmt.Sprintf("/NEO:%s/", version),
logger: logger,
peers: make(map[Peer]bool),
register: make(chan Peer),
unregister: make(chan Peer),
message: make(chan messageTuple),
relay: true, // currently relay is not handled.
net: net,
quit: make(chan struct{}),
peerCountCh: make(chan peerCount),
2018-01-26 18:04:13 +00:00
}
return s
}
// Start run's the server.
// TODO: server should be initialized with a config.
func (s *Server) Start(opts StartOpts) {
s.port = uint16(opts.TCP)
2018-01-26 20:39:34 +00:00
2018-01-26 18:04:13 +00:00
fmt.Println(logo())
2018-01-28 07:03:18 +00:00
fmt.Println(string(s.userAgent))
fmt.Println("")
s.logger.Printf("NET: %s - TCP: %d - RELAY: %v - ID: %d",
s.net, int(s.port), s.relay, s.id)
2018-01-26 18:04:13 +00:00
go listenTCP(s, opts.TCP)
2018-01-26 18:04:13 +00:00
if opts.RPC > 0 {
go listenHTTP(s, opts.RPC)
}
if len(opts.Seeds) > 0 {
connectToSeeds(s, opts.Seeds)
2018-01-26 18:04:13 +00:00
}
s.loop()
}
// Stop the server, attemping a gracefull shutdown.
func (s *Server) Stop() { s.quit <- struct{}{} }
// shutdown the server, disconnecting all peers.
func (s *Server) shutdown() {
s.logger.Println("attemping a quitefull shutdown.")
s.listener.Close()
// disconnect and remove all connected peers.
for peer := range s.peers {
s.unregister <- peer
}
}
func (s *Server) loop() {
for {
select {
2018-01-31 19:11:08 +00:00
// When a new connection is been established, (by this server or remote node)
// its peer will be received on this channel.
// Any peer registration must happen via this channel.
2018-01-26 18:04:13 +00:00
case peer := <-s.register:
2018-01-31 19:11:08 +00:00
if len(s.peers) < maxPeers {
s.logger.Printf("peer registered from address %s", peer.addr())
s.peers[peer] = true
s.handlePeerConnected(peer)
}
2018-01-27 12:39:07 +00:00
2018-01-31 19:11:08 +00:00
// Unregister should take care of all the cleanup that has to be made.
2018-01-26 18:04:13 +00:00
case peer := <-s.unregister:
2018-01-27 07:37:07 +00:00
if _, ok := s.peers[peer]; ok {
peer.disconnect()
2018-01-27 07:37:07 +00:00
delete(s.peers, peer)
2018-01-31 19:11:08 +00:00
s.logger.Printf("peer %s disconnected", peer.addr())
}
case t := <-s.peerCountCh:
t.count <- len(s.peers)
2018-01-31 19:11:08 +00:00
2018-01-26 18:04:13 +00:00
case <-s.quit:
s.shutdown()
}
}
}
2018-01-29 18:17:49 +00:00
// When a new peer is connected we send our version.
// No further communication should be made before both sides has received
// the versions of eachother.
2018-01-31 19:11:08 +00:00
func (s *Server) handlePeerConnected(p Peer) {
// TODO: get the blockheight of this server once core implemented this.
2018-01-28 07:03:18 +00:00
payload := payload.NewVersion(s.id, s.port, s.userAgent, 0, s.relay)
2018-01-27 15:00:28 +00:00
msg := newMessage(s.net, cmdVersion, payload)
2018-01-31 19:11:08 +00:00
p.callVersion(msg)
2018-01-26 18:04:13 +00:00
}
2018-01-31 19:11:08 +00:00
func (s *Server) handleVersionCmd(msg *Message, p Peer) *Message {
version := msg.Payload.(*payload.Version)
if s.id == version.Nonce {
p.disconnect()
return nil
2018-01-29 18:17:49 +00:00
}
if p.addr().Port != version.Port {
p.disconnect()
return nil
2018-01-28 10:20:42 +00:00
}
return newMessage(ModeDevNet, cmdVerack, nil)
2018-01-30 10:56:36 +00:00
}
func (s *Server) handleGetaddrCmd(msg *Message, p Peer) *Message {
return nil
2018-01-31 19:11:08 +00:00
}
2018-01-30 10:56:36 +00:00
2018-01-31 19:11:08 +00:00
func (s *Server) handleInvCmd(msg *Message, p Peer) *Message {
inv := msg.Payload.(*payload.Inventory)
if !inv.Type.Valid() {
p.disconnect()
return nil
}
if len(inv.Hashes) == 0 {
p.disconnect()
return nil
2018-01-31 19:11:08 +00:00
}
2018-01-30 10:56:36 +00:00
payload := payload.NewInventory(inv.Type, inv.Hashes)
resp := newMessage(s.net, cmdGetData, payload)
return resp
2018-01-27 12:39:07 +00:00
}
func (s *Server) handleAddrCmd(msg *Message, p Peer) {
addrList := msg.Payload.(*payload.AddressList)
for _, addr := range addrList.Addrs {
if !s.peerAlreadyConnected(addr.Addr) {
// TODO: this is not transport abstracted.
go connectToRemoteNode(s, addr.Addr.String())
}
2018-01-31 19:11:08 +00:00
}
}
// check if the addr is already connected to the server.
func (s *Server) peerAlreadyConnected(addr net.Addr) bool {
2018-01-28 13:59:32 +00:00
for peer := range s.peers {
2018-01-31 19:11:08 +00:00
if peer.addr().String() == addr.String() {
2018-01-28 13:59:32 +00:00
return true
}
}
return false
}
func (s *Server) sendLoop(peer Peer) {
2018-01-28 15:18:48 +00:00
// TODO: check if this peer is still connected.
// dont keep asking (maxPeers and no new nodes)
2018-01-28 10:12:05 +00:00
for {
getaddrMsg := newMessage(s.net, cmdGetAddr, nil)
2018-01-31 19:11:08 +00:00
peer.callGetaddr(getaddrMsg)
2018-01-28 10:12:05 +00:00
time.Sleep(120 * time.Second)
2018-01-28 10:12:05 +00:00
}
}
type peerCount struct {
count chan int
}
// peerCount returns the number of connected peers to this server.
func (s *Server) peerCount() int {
ch := peerCount{
count: make(chan int),
}
s.peerCountCh <- ch
return <-ch.count
}
// StartOpts holds the server configuration.
type StartOpts struct {
// tcp port
TCP int
// slice of peer addresses the server will connect to
Seeds []string
// JSON-RPC port. If 0 no RPC handler will be attached.
RPC int
}
2018-01-26 18:04:13 +00:00
func logo() string {
return `
_ ____________ __________
/ | / / ____/ __ \ / ____/ __ \
/ |/ / __/ / / / /_____/ / __/ / / /
/ /| / /___/ /_/ /_____/ /_/ / /_/ /
/_/ |_/_____/\____/ \____/\____/
`
}