5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 21:52:32 +00:00
yggdrasil-go/yggdrasil.go

199 lines
5.3 KiB
Go
Raw Normal View History

2017-12-29 04:16:20 +00:00
package main
import "encoding/hex"
import "flag"
import "fmt"
import "io/ioutil"
import "net"
import "os"
import "os/signal"
import "syscall"
2017-12-29 04:16:20 +00:00
import "time"
import "regexp"
import "math/rand"
2017-12-29 04:16:20 +00:00
import _ "net/http/pprof"
import "net/http"
import "log"
import "runtime"
2018-04-19 14:30:40 +00:00
import "yggdrasil"
import "yggdrasil/config"
2017-12-29 04:16:20 +00:00
import "github.com/kardianos/minwinsvc"
2018-05-09 12:54:31 +00:00
import "github.com/neilalexander/hjson-go"
import "github.com/mitchellh/mapstructure"
2018-04-19 14:30:40 +00:00
type nodeConfig = config.NodeConfig
type Core = yggdrasil.Core
2017-12-29 04:16:20 +00:00
type node struct {
2018-01-04 22:37:51 +00:00
core Core
2017-12-29 04:16:20 +00:00
}
func (n *node) init(cfg *nodeConfig, logger *log.Logger) {
boxPub, err := hex.DecodeString(cfg.EncryptionPublicKey)
2018-01-04 22:37:51 +00:00
if err != nil {
panic(err)
}
boxPriv, err := hex.DecodeString(cfg.EncryptionPrivateKey)
2018-01-04 22:37:51 +00:00
if err != nil {
panic(err)
}
sigPub, err := hex.DecodeString(cfg.SigningPublicKey)
2018-01-04 22:37:51 +00:00
if err != nil {
panic(err)
}
sigPriv, err := hex.DecodeString(cfg.SigningPrivateKey)
2018-01-04 22:37:51 +00:00
if err != nil {
panic(err)
}
n.core.DEBUG_init(boxPub, boxPriv, sigPub, sigPriv)
n.core.DEBUG_setLogger(logger)
2018-04-19 14:30:40 +00:00
2018-01-04 22:37:51 +00:00
logger.Println("Starting interface...")
2018-02-09 23:42:55 +00:00
n.core.DEBUG_setupAndStartGlobalTCPInterface(cfg.Listen) // Listen for peers on TCP
2018-02-10 00:50:03 +00:00
n.core.DEBUG_setupAndStartGlobalUDPInterface(cfg.Listen) // Also listen on UDP, TODO allow separate configuration for ip/port to listen on each of these
2018-01-04 22:37:51 +00:00
logger.Println("Started interface")
2018-01-21 00:17:15 +00:00
logger.Println("Starting admin socket...")
n.core.DEBUG_setupAndStartAdminInterface(cfg.AdminListen)
logger.Println("Started admin socket")
for _, pBoxStr := range cfg.AllowedEncryptionPublicKeys {
n.core.DEBUG_addAllowedEncryptionPublicKey(pBoxStr)
2018-05-07 00:48:26 +00:00
}
for _, ll := range cfg.MulticastInterfaces {
ifceExpr, err := regexp.Compile(ll)
if err != nil {
panic(err)
}
n.core.DEBUG_setIfceExpr(ifceExpr)
}
n.core.DEBUG_setupAndStartMulticastInterface()
2018-05-07 00:48:26 +00:00
2018-01-04 22:37:51 +00:00
go func() {
if len(cfg.Peers) == 0 {
return
}
for {
for _, p := range cfg.Peers {
n.core.DEBUG_addPeer(p)
2018-01-04 22:37:51 +00:00
time.Sleep(time.Second)
}
time.Sleep(time.Minute)
}
}()
2017-12-29 04:16:20 +00:00
}
func generateConfig(isAutoconf bool) *nodeConfig {
2018-01-04 22:37:51 +00:00
core := Core{}
bpub, bpriv := core.DEBUG_newBoxKeys()
spub, spriv := core.DEBUG_newSigKeys()
cfg := nodeConfig{}
if isAutoconf {
cfg.Listen = "[::]:0"
} else {
r1 := rand.New(rand.NewSource(time.Now().UnixNano()))
cfg.Listen = fmt.Sprintf("[::]:%d", r1.Intn(65534-32768)+32768)
}
cfg.AdminListen = "[::1]:9001"
cfg.EncryptionPublicKey = hex.EncodeToString(bpub[:])
cfg.EncryptionPrivateKey = hex.EncodeToString(bpriv[:])
cfg.SigningPublicKey = hex.EncodeToString(spub[:])
cfg.SigningPrivateKey = hex.EncodeToString(spriv[:])
2018-01-04 22:37:51 +00:00
cfg.Peers = []string{}
cfg.AllowedEncryptionPublicKeys = []string{}
cfg.MulticastInterfaces = []string{".*"}
2018-03-03 12:30:54 +00:00
cfg.IfName = core.DEBUG_GetTUNDefaultIfName()
cfg.IfMTU = core.DEBUG_GetTUNDefaultIfMTU()
cfg.IfTAPMode = core.DEBUG_GetTUNDefaultIfTAPMode()
2018-04-19 14:30:40 +00:00
2018-01-04 22:37:51 +00:00
return &cfg
2017-12-29 04:16:20 +00:00
}
func doGenconf() string {
cfg := generateConfig(false)
2018-05-09 12:54:31 +00:00
bs, err := hjson.Marshal(cfg)
2018-01-04 22:37:51 +00:00
if err != nil {
panic(err)
}
return string(bs)
2017-12-29 04:16:20 +00:00
}
var pprof = flag.Bool("pprof", false, "Run pprof, see http://localhost:6060/debug/pprof/")
var genconf = flag.Bool("genconf", false, "print a new config to stdout")
var useconf = flag.Bool("useconf", false, "read config from stdin")
var useconffile = flag.String("useconffile", "", "read config from specified file path")
2017-12-29 04:16:20 +00:00
var autoconf = flag.Bool("autoconf", false, "automatic mode (dynamic IP, peer with IPv6 neighbors)")
func main() {
2018-01-04 22:37:51 +00:00
flag.Parse()
var cfg *nodeConfig
switch {
case *autoconf:
cfg = generateConfig(true)
case *useconffile != "" || *useconf:
var config []byte
var err error
if *useconffile != "" {
config, err = ioutil.ReadFile(*useconffile)
} else {
config, err = ioutil.ReadAll(os.Stdin)
}
2018-01-04 22:37:51 +00:00
if err != nil {
panic(err)
}
cfg = generateConfig(false)
2018-05-09 12:54:31 +00:00
var dat map[string]interface{}
if err := hjson.Unmarshal(config, &dat); err != nil {
2018-05-09 13:03:28 +00:00
panic(err)
}
2018-05-09 12:54:31 +00:00
if err = mapstructure.Decode(dat, &cfg); err != nil {
2018-01-04 22:37:51 +00:00
panic(err)
}
case *genconf:
fmt.Println(doGenconf())
default:
flag.PrintDefaults()
}
if cfg == nil {
return
}
logger := log.New(os.Stdout, "", log.Flags())
if *pprof {
runtime.SetBlockProfileRate(1)
go func() { log.Println(http.ListenAndServe("localhost:6060", nil)) }()
}
// Setup
logger.Println("Initializing...")
n := node{}
n.init(cfg, logger)
if cfg.IfName != "none" {
logger.Println("Starting TUN/TAP...")
} else {
logger.Println("Not starting TUN/TAP")
}
2018-02-04 17:25:20 +00:00
//n.core.DEBUG_startTun(cfg.IfName) // 1280, the smallest supported MTU
n.core.DEBUG_startTunWithMTU(cfg.IfName, cfg.IfTAPMode, cfg.IfMTU) // Largest supported MTU
2018-01-04 22:37:51 +00:00
defer func() {
logger.Println("Closing...")
n.core.DEBUG_stopTun()
}()
logger.Println("Started...")
address := (*n.core.GetAddress())[:]
subnet := (*n.core.GetSubnet())[:]
subnet = append(subnet, 0, 0, 0, 0, 0, 0, 0, 0)
logger.Printf("Your IPv6 address is %s", net.IP(address).String())
logger.Printf("Your IPv6 subnet is %s/64", net.IP(subnet).String())
2018-01-04 22:37:51 +00:00
// Catch interrupt to exit gracefully
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
// Create a function to capture the service being stopped on Windows
winTerminate := func() {
2018-02-18 21:32:55 +00:00
c <- os.Interrupt
}
minwinsvc.SetOnExit(winTerminate)
// Wait for the terminate/interrupt signal
2018-01-04 22:37:51 +00:00
<-c
logger.Println("Stopping...")
2017-12-29 04:16:20 +00:00
}