yggdrasil-go/cmd/yggdrasil/main.go

318 lines
8.2 KiB
Go
Raw Permalink Normal View History

2017-12-29 07:16:20 +03:00
package main
import (
"context"
"crypto/ed25519"
"encoding/hex"
"encoding/json"
"flag"
"fmt"
"net"
"os"
"os/signal"
"regexp"
"strings"
"syscall"
2017-12-29 07:16:20 +03:00
"github.com/gologme/log"
2019-06-29 02:32:23 +03:00
gsyslog "github.com/hashicorp/go-syslog"
2023-04-06 23:45:49 +03:00
"github.com/hjson/hjson-go/v4"
"github.com/kardianos/minwinsvc"
2017-12-29 07:16:20 +03:00
"github.com/yggdrasil-network/yggdrasil-go/src/address"
"github.com/yggdrasil-network/yggdrasil-go/src/admin"
2018-12-08 04:56:04 +03:00
"github.com/yggdrasil-network/yggdrasil-go/src/config"
"github.com/yggdrasil-network/yggdrasil-go/src/ipv6rwc"
2021-05-23 22:33:28 +03:00
2021-05-23 22:42:26 +03:00
"github.com/yggdrasil-network/yggdrasil-go/src/core"
"github.com/yggdrasil-network/yggdrasil-go/src/multicast"
"github.com/yggdrasil-network/yggdrasil-go/src/tun"
"github.com/yggdrasil-network/yggdrasil-go/src/version"
)
2017-12-29 07:16:20 +03:00
type node struct {
2022-07-24 12:23:25 +03:00
core *core.Core
tun *tun.TunAdapter
multicast *multicast.Multicast
admin *admin.AdminSocket
2017-12-29 07:16:20 +03:00
}
2023-04-06 23:45:49 +03:00
// The main function is responsible for configuring and starting Yggdrasil.
func main() {
2018-05-28 00:13:37 +03:00
genconf := flag.Bool("genconf", false, "print a new config to stdout")
useconf := flag.Bool("useconf", false, "read HJSON/JSON config from stdin")
useconffile := flag.String("useconffile", "", "read HJSON/JSON config from specified file path")
2018-05-28 00:13:37 +03:00
normaliseconf := flag.Bool("normaliseconf", false, "use in combination with either -useconf or -useconffile, outputs your configuration normalised")
2023-04-06 23:45:49 +03:00
exportkey := flag.Bool("exportkey", false, "use in combination with either -useconf or -useconffile, outputs your private key in PEM format")
confjson := flag.Bool("json", false, "print configuration from -genconf or -normaliseconf as JSON instead of HJSON")
2018-05-28 00:13:37 +03:00
autoconf := flag.Bool("autoconf", false, "automatic mode (dynamic IP, peer with IPv6 neighbors)")
2019-08-14 22:09:02 +03:00
ver := flag.Bool("version", false, "prints the version of this build")
logto := flag.String("logto", "stdout", "file path to log to, \"syslog\" or \"stdout\"")
getaddr := flag.Bool("address", false, "use in combination with either -useconf or -useconffile, outputs your IPv6 address")
getsnet := flag.Bool("subnet", false, "use in combination with either -useconf or -useconffile, outputs your IPv6 subnet")
getpkey := flag.Bool("publickey", false, "use in combination with either -useconf or -useconffile, outputs your public key")
loglevel := flag.String("loglevel", "info", "loglevel to enable")
2018-01-05 01:37:51 +03:00
flag.Parse()
done := make(chan struct{})
defer close(done)
2023-04-06 23:45:49 +03:00
// Catch interrupts from the operating system to exit gracefully.
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
// Create a new logger that logs output to stdout.
var logger *log.Logger
2023-04-06 23:45:49 +03:00
switch *logto {
case "stdout":
logger = log.New(os.Stdout, "", log.Flags())
2023-04-06 23:45:49 +03:00
case "syslog":
if syslogger, err := gsyslog.NewLogger(gsyslog.LOG_NOTICE, "DAEMON", version.BuildName()); err == nil {
logger = log.New(syslogger, "", log.Flags()&^(log.Ldate|log.Ltime))
}
2023-04-06 23:45:49 +03:00
default:
2023-04-06 23:45:49 +03:00
if logfd, err := os.OpenFile(*logto, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644); err == nil {
logger = log.New(logfd, "", log.Flags())
}
}
if logger == nil {
logger = log.New(os.Stdout, "", log.Flags())
logger.Warnln("Logging defaulting to stdout")
}
2023-04-06 23:45:49 +03:00
if *normaliseconf {
2021-06-05 23:49:11 +03:00
setLogLevel("error", logger)
} else {
2023-04-06 23:45:49 +03:00
setLogLevel(*loglevel, logger)
2021-06-05 23:49:11 +03:00
}
2023-04-06 23:45:49 +03:00
cfg := config.GenerateConfig()
var err error
2018-01-05 01:37:51 +03:00
switch {
2023-04-06 23:45:49 +03:00
case *ver:
fmt.Println("Build name:", version.BuildName())
fmt.Println("Build version:", version.BuildVersion())
2019-08-14 22:09:02 +03:00
return
2023-04-06 23:45:49 +03:00
case *autoconf:
2018-05-28 00:13:37 +03:00
// Use an autoconf-generated config, this will give us random keys and
// port numbers, and will use an automatically selected TUN interface.
2023-04-06 23:45:49 +03:00
case *useconf:
if _, err := cfg.ReadFrom(os.Stdin); err != nil {
panic(err)
}
2023-04-06 23:45:49 +03:00
case *useconffile != "":
f, err := os.Open(*useconffile)
if err != nil {
panic(err)
}
if _, err := cfg.ReadFrom(f); err != nil {
panic(err)
}
_ = f.Close()
case *genconf:
cfg.AdminListen = ""
2023-04-06 23:45:49 +03:00
var bs []byte
if *confjson {
bs, err = json.MarshalIndent(cfg, "", " ")
} else {
bs, err = hjson.Marshal(cfg)
}
if err != nil {
panic(err)
}
fmt.Println(string(bs))
return
2023-04-06 23:45:49 +03:00
2018-01-05 01:37:51 +03:00
default:
fmt.Println("Usage:")
2018-01-05 01:37:51 +03:00
flag.PrintDefaults()
2023-04-06 23:45:49 +03:00
if *getaddr || *getsnet {
fmt.Println("\nError: You need to specify some config data using -useconf or -useconffile.")
}
return
2018-01-05 01:37:51 +03:00
}
2023-04-06 23:45:49 +03:00
privateKey := ed25519.PrivateKey(cfg.PrivateKey)
publicKey := privateKey.Public().(ed25519.PublicKey)
switch {
case *getaddr:
addr := address.AddrForKey(publicKey)
ip := net.IP(addr[:])
fmt.Println(ip.String())
2018-01-05 01:37:51 +03:00
return
2023-04-06 23:45:49 +03:00
case *getsnet:
snet := address.SubnetForKey(publicKey)
ipnet := net.IPNet{
IP: append(snet[:], 0, 0, 0, 0, 0, 0, 0, 0),
Mask: net.CIDRMask(len(snet)*8, 128),
2021-05-23 22:33:28 +03:00
}
2023-04-06 23:45:49 +03:00
fmt.Println(ipnet.String())
return
case *getpkey:
fmt.Println(hex.EncodeToString(publicKey))
return
2023-04-06 23:45:49 +03:00
case *normaliseconf:
2023-10-28 18:21:50 +03:00
cfg.AdminListen = ""
if cfg.PrivateKeyPath != "" {
cfg.PrivateKey = nil
}
2023-04-06 23:45:49 +03:00
var bs []byte
if *confjson {
bs, err = json.MarshalIndent(cfg, "", " ")
} else {
bs, err = hjson.Marshal(cfg)
}
2023-04-06 23:45:49 +03:00
if err != nil {
panic(err)
}
fmt.Println(string(bs))
return
2023-04-06 23:45:49 +03:00
case *exportkey:
pem, err := cfg.MarshalPEMPrivateKey()
if err != nil {
panic(err)
}
fmt.Println(string(pem))
return
}
2022-09-03 14:20:57 +03:00
n := &node{}
// Set up the Yggdrasil node itself.
{
2022-10-15 17:42:52 +03:00
options := []core.SetupOption{
core.NodeInfo(cfg.NodeInfo),
core.NodeInfoPrivacy(cfg.NodeInfoPrivacy),
}
2022-09-03 19:26:12 +03:00
for _, addr := range cfg.Listen {
options = append(options, core.ListenAddress(addr))
}
for _, peer := range cfg.Peers {
options = append(options, core.Peer{URI: peer})
}
for intf, peers := range cfg.InterfacePeers {
for _, peer := range peers {
options = append(options, core.Peer{URI: peer, SourceInterface: intf})
}
}
for _, allowed := range cfg.AllowedPublicKeys {
k, err := hex.DecodeString(allowed)
if err != nil {
panic(err)
}
options = append(options, core.AllowedPublicKey(k[:]))
}
2023-04-06 23:45:49 +03:00
if n.core, err = core.New(cfg.Certificate, logger, options...); err != nil {
2022-07-24 12:23:25 +03:00
panic(err)
}
address, subnet := n.core.Address(), n.core.Subnet()
2023-11-26 19:28:48 +03:00
logger.Printf("Your public key is %s", hex.EncodeToString(n.core.PublicKey()))
logger.Printf("Your IPv6 address is %s", address.String())
logger.Printf("Your IPv6 subnet is %s", subnet.String())
2022-07-24 12:23:25 +03:00
}
// Set up the admin socket.
{
options := []admin.SetupOption{
admin.ListenAddress(cfg.AdminListen),
}
if cfg.LogLookups {
options = append(options, admin.LogLookups{})
}
if n.admin, err = admin.New(n.core, logger, options...); err != nil {
panic(err)
}
if n.admin != nil {
n.admin.SetupAdminHandlers()
}
}
// Set up the multicast module.
{
options := []multicast.SetupOption{}
for _, intf := range cfg.MulticastInterfaces {
options = append(options, multicast.MulticastInterface{
Regex: regexp.MustCompile(intf.Regex),
Beacon: intf.Beacon,
Listen: intf.Listen,
Port: intf.Port,
2022-11-01 21:34:49 +03:00
Priority: uint8(intf.Priority),
2023-10-11 21:28:28 +03:00
Password: intf.Password,
})
}
if n.multicast, err = multicast.New(n.core, logger, options...); err != nil {
panic(err)
}
if n.admin != nil && n.multicast != nil {
n.multicast.SetupAdminHandlers(n.admin)
}
2018-05-28 00:13:37 +03:00
}
// Set up the TUN module.
2022-09-03 14:20:57 +03:00
{
options := []tun.SetupOption{
tun.InterfaceName(cfg.IfName),
tun.InterfaceMTU(cfg.IfMTU),
2022-09-03 14:20:57 +03:00
}
if n.tun, err = tun.New(ipv6rwc.NewReadWriteCloser(n.core), logger, options...); err != nil {
2022-09-03 14:20:57 +03:00
panic(err)
}
if n.admin != nil && n.tun != nil {
n.tun.SetupAdminHandlers(n.admin)
2022-09-03 14:20:57 +03:00
}
}
//Windows service shutdown
minwinsvc.SetOnExit(func() {
logger.Infof("Shutting down service ...")
cancel()
// Wait for all parts to shutdown properly
<-done
})
2022-09-03 14:20:57 +03:00
// Block until we are told to shut down.
<-ctx.Done()
2019-07-06 14:17:40 +03:00
// Shut down the node.
2021-06-02 16:40:09 +03:00
_ = n.admin.Stop()
_ = n.multicast.Stop()
_ = n.tun.Stop()
n.core.Stop()
2017-12-29 07:16:20 +03:00
}
2023-04-06 23:45:49 +03:00
func setLogLevel(loglevel string, logger *log.Logger) {
levels := [...]string{"error", "warn", "info", "debug", "trace"}
loglevel = strings.ToLower(loglevel)
2023-04-06 23:45:49 +03:00
contains := func() bool {
for _, l := range levels {
if l == loglevel {
return true
}
}
return false
}
2023-04-06 23:45:49 +03:00
if !contains() { // set default log level
logger.Infoln("Loglevel parse failed. Set default level(info)")
loglevel = "info"
}
2023-04-06 23:45:49 +03:00
for _, l := range levels {
logger.EnableLevel(l)
if l == loglevel {
break
}
}
}