5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-23 14:41:36 +00:00
yggdrasil-go/src/yggdrasil/core.go

209 lines
5.3 KiB
Go
Raw Normal View History

2017-12-29 04:16:20 +00:00
package yggdrasil
2018-06-12 22:50:08 +00:00
import (
"encoding/hex"
"errors"
2018-06-12 22:50:08 +00:00
"io/ioutil"
"time"
2018-06-12 22:50:08 +00:00
"github.com/gologme/log"
2018-12-08 01:56:04 +00:00
"github.com/yggdrasil-network/yggdrasil-go/src/config"
"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
2018-06-12 22:50:08 +00:00
)
2017-12-29 04:16:20 +00:00
var buildName string
var buildVersion string
2018-05-27 21:13:37 +00:00
// The Core object represents the Yggdrasil node. You should create a Core
// object for each Yggdrasil node you plan to run.
2017-12-29 04:16:20 +00:00
type Core struct {
2018-01-04 22:37:51 +00:00
// This is the main data structure that holds everything else for a node
// We're going to keep our own copy of the provided config - that way we can
// guarantee that it will be covered by the mutex
config config.NodeState // Config
2018-12-29 19:14:26 +00:00
boxPub crypto.BoxPubKey
boxPriv crypto.BoxPrivKey
sigPub crypto.SigPubKey
sigPriv crypto.SigPrivKey
2018-01-04 22:37:51 +00:00
switchTable switchTable
peers peers
sessions sessions
router router
dht dht
searches searches
link link
log *log.Logger
2017-12-29 04:16:20 +00:00
}
2018-12-29 19:14:26 +00:00
func (c *Core) init() error {
2018-01-04 22:37:51 +00:00
// TODO separate init and start functions
// Init sets up structs
// Start launches goroutines that depend on structs being set up
// This is pretty much required to completely avoid race conditions
2018-05-27 21:13:37 +00:00
if c.log == nil {
c.log = log.New(ioutil.Discard, "", 0)
}
2018-12-29 19:14:26 +00:00
current := c.config.GetCurrent()
boxPrivHex, err := hex.DecodeString(current.EncryptionPrivateKey)
2018-12-29 19:14:26 +00:00
if err != nil {
return err
}
if len(boxPrivHex) < crypto.BoxPrivKeyLen {
return errors.New("EncryptionPrivateKey is incorrect length")
2018-12-29 19:14:26 +00:00
}
sigPrivHex, err := hex.DecodeString(current.SigningPrivateKey)
2018-12-29 19:14:26 +00:00
if err != nil {
return err
}
if len(sigPrivHex) < crypto.SigPrivKeyLen {
return errors.New("SigningPrivateKey is incorrect length")
}
2018-12-29 19:14:26 +00:00
copy(c.boxPriv[:], boxPrivHex)
copy(c.sigPriv[:], sigPrivHex)
boxPub, sigPub := c.boxPriv.Public(), c.sigPriv.Public()
copy(c.boxPub[:], boxPub[:])
copy(c.sigPub[:], sigPub[:])
if bp := hex.EncodeToString(c.boxPub[:]); current.EncryptionPublicKey != bp {
c.log.Warnln("EncryptionPublicKey in config is incorrect, should be", bp)
}
if sp := hex.EncodeToString(c.sigPub[:]); current.SigningPublicKey != sp {
c.log.Warnln("SigningPublicKey in config is incorrect, should be", sp)
}
2018-01-04 22:37:51 +00:00
c.searches.init(c)
c.dht.init(c)
c.sessions.init(c)
c.peers.init(c)
c.router.init(c)
2018-12-29 19:14:26 +00:00
c.switchTable.init(c) // TODO move before peers? before router?
return nil
2017-12-29 04:16:20 +00:00
}
// If any static peers were provided in the configuration above then we should
// configure them. The loop ensures that disconnected peers will eventually
// be reconnected with.
func (c *Core) addPeerLoop() {
for {
// the peers from the config - these could change!
current := c.config.GetCurrent()
// Add peers from the Peers section
for _, peer := range current.Peers {
go c.AddPeer(peer, "")
time.Sleep(time.Second)
}
// Add peers from the InterfacePeers section
for intf, intfpeers := range current.InterfacePeers {
for _, peer := range intfpeers {
go c.AddPeer(peer, intf)
time.Sleep(time.Second)
}
}
// Sit for a while
time.Sleep(time.Minute)
}
}
// UpdateConfig updates the configuration in Core with the provided
// config.NodeConfig and then signals the various module goroutines to
// reconfigure themselves if needed.
func (c *Core) UpdateConfig(config *config.NodeConfig) {
2019-05-17 21:29:52 +00:00
c.log.Debugln("Reloading node configuration...")
c.config.Replace(*config)
errors := 0
2018-12-30 12:04:42 +00:00
components := []chan chan error{
2019-01-14 14:25:52 +00:00
c.searches.reconfigure,
c.dht.reconfigure,
c.sessions.reconfigure,
c.peers.reconfigure,
c.router.reconfigure,
c.switchTable.reconfigure,
c.link.reconfigure,
2018-12-30 12:04:42 +00:00
}
for _, component := range components {
response := make(chan error)
component <- response
if err := <-response; err != nil {
c.log.Errorln(err)
errors++
2018-12-30 12:04:42 +00:00
}
}
if errors > 0 {
2019-05-17 21:29:52 +00:00
c.log.Warnln(errors, "node module(s) reported errors during configuration reload")
} else {
2019-05-17 21:29:52 +00:00
c.log.Infoln("Node configuration reloaded successfully")
}
}
// Start starts up Yggdrasil using the provided config.NodeConfig, and outputs
// debug logging through the provided log.Logger. The started stack will include
// TCP and UDP sockets, a multicast discovery socket, an admin socket, router,
// switch and DHT node. A config.NodeState is returned which contains both the
// current and previous configurations (from reconfigures).
2019-03-28 19:09:19 +00:00
func (c *Core) Start(nc *config.NodeConfig, log *log.Logger) (*config.NodeState, error) {
2018-05-27 21:13:37 +00:00
c.log = log
c.config = config.NodeState{
Current: *nc,
Previous: *nc,
}
if name := BuildName(); name != "unknown" {
c.log.Infoln("Build name:", name)
}
if version := BuildVersion(); version != "unknown" {
c.log.Infoln("Build version:", version)
}
c.log.Infoln("Starting up...")
2018-05-27 21:13:37 +00:00
2018-12-29 19:14:26 +00:00
c.init()
2018-05-27 21:13:37 +00:00
if err := c.link.init(c); err != nil {
c.log.Errorln("Failed to start link interfaces")
2019-03-28 19:09:19 +00:00
return nil, err
}
c.config.Mutex.RLock()
if c.config.Current.SwitchOptions.MaxTotalQueueSize >= SwitchQueueTotalMinSize {
c.switchTable.queueTotalMaxSize = c.config.Current.SwitchOptions.MaxTotalQueueSize
}
c.config.Mutex.RUnlock()
if err := c.switchTable.start(); err != nil {
c.log.Errorln("Failed to start switch")
2019-03-28 19:09:19 +00:00
return nil, err
}
2018-05-27 21:13:37 +00:00
if err := c.router.start(); err != nil {
c.log.Errorln("Failed to start router")
2019-03-28 19:09:19 +00:00
return nil, err
2018-05-27 21:13:37 +00:00
}
go c.addPeerLoop()
c.log.Infoln("Startup complete")
2019-03-28 19:09:19 +00:00
return &c.config, nil
2018-05-27 21:13:37 +00:00
}
// Stop shuts down the Yggdrasil node.
2018-05-27 21:13:37 +00:00
func (c *Core) Stop() {
c.log.Infoln("Stopping...")
2018-05-27 21:13:37 +00:00
}