yggdrasil-go/src/yggdrasil/core.go

67 lines
1.7 KiB
Go
Raw Normal View History

2017-12-29 07:16:20 +03:00
package yggdrasil
import "io/ioutil"
import "log"
import "regexp"
2017-12-29 07:16:20 +03:00
type Core struct {
2018-01-05 01:37:51 +03:00
// This is the main data structure that holds everything else for a node
// TODO? move keys out of core and into something more appropriate
// e.g. box keys live in sessions
// sig keys live in peers or sigs (or wherever signing/validating logic is)
boxPub boxPubKey
boxPriv boxPrivKey
sigPub sigPubKey
sigPriv sigPrivKey
switchTable switchTable
peers peers
sigs sigManager
sessions sessions
router router
dht dht
tun tunDevice
2018-01-21 03:17:15 +03:00
admin admin
2018-01-05 01:37:51 +03:00
searches searches
tcp *tcpInterface
udp *udpInterface
log *log.Logger
ifceExpr *regexp.Regexp // the zone of link-local IPv6 peers must match this
2017-12-29 07:16:20 +03:00
}
func (c *Core) Init() {
2018-01-05 01:37:51 +03:00
// Only called by the simulator, to set up nodes with random keys
bpub, bpriv := newBoxKeys()
spub, spriv := newSigKeys()
c.init(bpub, bpriv, spub, spriv)
2017-12-29 07:16:20 +03:00
}
func (c *Core) init(bpub *boxPubKey,
2018-01-05 01:37:51 +03:00
bpriv *boxPrivKey,
spub *sigPubKey,
spriv *sigPrivKey) {
// 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 avoid race conditions
util_initByteStore()
c.log = log.New(ioutil.Discard, "", 0)
c.boxPub, c.boxPriv = *bpub, *bpriv
c.sigPub, c.sigPriv = *spub, *spriv
c.sigs.init()
c.searches.init(c)
c.dht.init(c)
c.sessions.init(c)
c.peers.init(c)
c.router.init(c)
c.switchTable.init(c, c.sigPub) // TODO move before peers? before router?
c.tun.init(c)
2017-12-29 07:16:20 +03:00
}
func (c *Core) GetNodeID() *NodeID {
2018-01-05 01:37:51 +03:00
return getNodeID(&c.boxPub)
2017-12-29 07:16:20 +03:00
}
func (c *Core) GetTreeID() *TreeID {
2018-01-05 01:37:51 +03:00
return getTreeID(&c.sigPub)
2017-12-29 07:16:20 +03:00
}