2020-07-27 20:43:58 +00:00
|
|
|
package mobileNebula
|
|
|
|
|
|
|
|
import (
|
2020-08-17 16:56:15 +00:00
|
|
|
"bytes"
|
2020-07-27 20:43:58 +00:00
|
|
|
"crypto/rand"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2021-04-23 21:23:06 +00:00
|
|
|
"io/ioutil"
|
2020-07-27 20:43:58 +00:00
|
|
|
"net"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2020-08-17 16:56:15 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-07-27 20:43:58 +00:00
|
|
|
"github.com/slackhq/nebula"
|
|
|
|
"github.com/slackhq/nebula/cert"
|
|
|
|
"golang.org/x/crypto/curve25519"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
type m map[string]interface{}
|
|
|
|
|
|
|
|
type CIDR struct {
|
|
|
|
Ip string
|
|
|
|
MaskCIDR string
|
|
|
|
MaskSize int
|
|
|
|
Network string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Validity struct {
|
|
|
|
Valid bool
|
|
|
|
Reason string
|
|
|
|
}
|
|
|
|
|
|
|
|
type RawCert struct {
|
|
|
|
RawCert string
|
|
|
|
Cert *cert.NebulaCertificate
|
|
|
|
Validity Validity
|
|
|
|
}
|
|
|
|
|
|
|
|
type KeyPair struct {
|
|
|
|
PublicKey string
|
|
|
|
PrivateKey string
|
|
|
|
}
|
|
|
|
|
|
|
|
func RenderConfig(configData string, key string) (string, error) {
|
|
|
|
config := newConfig()
|
|
|
|
var d m
|
|
|
|
|
|
|
|
err := json.Unmarshal([]byte(configData), &d)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
config.PKI.CA, _ = d["ca"].(string)
|
|
|
|
config.PKI.Cert, _ = d["cert"].(string)
|
|
|
|
config.PKI.Key = key
|
|
|
|
|
|
|
|
i, _ := d["port"].(float64)
|
|
|
|
config.Listen.Port = int(i)
|
|
|
|
|
|
|
|
config.Cipher, _ = d["cipher"].(string)
|
|
|
|
// Log verbosity is not required
|
|
|
|
if val, _ := d["logVerbosity"].(string); val != "" {
|
|
|
|
config.Logging.Level = val
|
|
|
|
}
|
|
|
|
|
|
|
|
i, _ = d["lhDuration"].(float64)
|
|
|
|
config.Lighthouse.Interval = int(i)
|
|
|
|
|
|
|
|
if i, ok := d["mtu"].(float64); ok {
|
|
|
|
mtu := int(i)
|
|
|
|
config.Tun.MTU = &mtu
|
|
|
|
}
|
|
|
|
|
|
|
|
config.Lighthouse.Hosts = make([]string, 0)
|
|
|
|
staticHostmap := d["staticHostmap"].(map[string]interface{})
|
|
|
|
for nebIp, mapping := range staticHostmap {
|
|
|
|
def := mapping.(map[string]interface{})
|
|
|
|
|
|
|
|
isLh := def["lighthouse"].(bool)
|
|
|
|
if isLh {
|
|
|
|
config.Lighthouse.Hosts = append(config.Lighthouse.Hosts, nebIp)
|
|
|
|
}
|
|
|
|
|
|
|
|
hosts := def["destinations"].([]interface{})
|
|
|
|
realHosts := make([]string, len(hosts))
|
|
|
|
|
|
|
|
for i, h := range hosts {
|
|
|
|
realHosts[i] = h.(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
config.StaticHostmap[nebIp] = realHosts
|
|
|
|
}
|
|
|
|
|
|
|
|
if unsafeRoutes, ok := d["unsafeRoutes"].([]interface{}); ok {
|
|
|
|
config.Tun.UnsafeRoutes = make([]configUnsafeRoute, len(unsafeRoutes))
|
|
|
|
for i, r := range unsafeRoutes {
|
|
|
|
rawRoute := r.(map[string]interface{})
|
|
|
|
route := &config.Tun.UnsafeRoutes[i]
|
|
|
|
route.Route = rawRoute["route"].(string)
|
|
|
|
route.Via = rawRoute["via"].(string)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
finalConfig, err := yaml.Marshal(config)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(finalConfig), nil
|
|
|
|
}
|
|
|
|
|
2020-08-17 16:56:15 +00:00
|
|
|
func TestConfig(configData string, key string) error {
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
fmt.Println("Recovered in f", r)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
yamlConfig, err := RenderConfig(configData, key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-04-23 21:23:06 +00:00
|
|
|
// We don't want to leak the config into the system logs
|
|
|
|
l := logrus.New()
|
|
|
|
l.SetOutput(bytes.NewBuffer([]byte{}))
|
|
|
|
|
|
|
|
config := nebula.NewConfig(l)
|
2020-08-17 16:56:15 +00:00
|
|
|
err = config.LoadString(yamlConfig)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to load config: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = nebula.Main(config, true, "", l, nil)
|
|
|
|
if err != nil {
|
|
|
|
switch v := err.(type) {
|
|
|
|
case nebula.ContextualError:
|
|
|
|
return v.Unwrap()
|
|
|
|
default:
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-27 20:43:58 +00:00
|
|
|
func GetConfigSetting(configData string, setting string) string {
|
2021-04-23 21:23:06 +00:00
|
|
|
// We don't want to leak the config into the system logs
|
|
|
|
l := logrus.New()
|
|
|
|
l.SetOutput(ioutil.Discard)
|
|
|
|
|
|
|
|
config := nebula.NewConfig(l)
|
2020-07-27 20:43:58 +00:00
|
|
|
config.LoadString(configData)
|
|
|
|
return config.GetString(setting, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
func ParseCIDR(cidr string) (*CIDR, error) {
|
|
|
|
ip, ipNet, err := net.ParseCIDR(cidr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
size, _ := ipNet.Mask.Size()
|
|
|
|
|
|
|
|
return &CIDR{
|
|
|
|
Ip: ip.String(),
|
|
|
|
MaskCIDR: fmt.Sprintf("%d.%d.%d.%d", ipNet.Mask[0], ipNet.Mask[1], ipNet.Mask[2], ipNet.Mask[3]),
|
|
|
|
MaskSize: size,
|
|
|
|
Network: ipNet.IP.String(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a JSON representation of 1 or more certificates
|
|
|
|
func ParseCerts(rawStringCerts string) (string, error) {
|
|
|
|
var certs []RawCert
|
|
|
|
var c *cert.NebulaCertificate
|
|
|
|
var err error
|
|
|
|
rawCerts := []byte(rawStringCerts)
|
|
|
|
|
|
|
|
for {
|
|
|
|
c, rawCerts, err = cert.UnmarshalNebulaCertificateFromPEM(rawCerts)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
rawCert, err := c.MarshalToPEM()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
rc := RawCert{
|
|
|
|
RawCert: string(rawCert),
|
|
|
|
Cert: c,
|
|
|
|
Validity: Validity{
|
|
|
|
Valid: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.Expired(time.Now()) {
|
|
|
|
rc.Validity.Valid = false
|
|
|
|
rc.Validity.Reason = "Certificate is expired"
|
|
|
|
}
|
|
|
|
|
|
|
|
if rc.Validity.Valid && c.Details.IsCA && !c.CheckSignature(c.Details.PublicKey) {
|
|
|
|
rc.Validity.Valid = false
|
|
|
|
rc.Validity.Reason = "Certificate signature did not match"
|
|
|
|
}
|
|
|
|
|
|
|
|
certs = append(certs, rc)
|
|
|
|
|
|
|
|
if rawCerts == nil || strings.TrimSpace(string(rawCerts)) == "" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rawJson, err := json.Marshal(certs)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(rawJson), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateKeyPair() (string, error) {
|
|
|
|
pub, priv, err := x25519Keypair()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
kp := KeyPair{}
|
|
|
|
kp.PublicKey = string(cert.MarshalX25519PublicKey(pub))
|
|
|
|
kp.PrivateKey = string(cert.MarshalX25519PrivateKey(priv))
|
|
|
|
|
|
|
|
rawJson, err := json.Marshal(kp)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(rawJson), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func x25519Keypair() ([]byte, []byte, error) {
|
|
|
|
var pubkey, privkey [32]byte
|
|
|
|
if _, err := io.ReadFull(rand.Reader, privkey[:]); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
curve25519.ScalarBaseMult(&pubkey, &privkey)
|
|
|
|
return pubkey[:], privkey[:], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//func VerifyCertAndKey(cert string, key string) (string, error) {
|
|
|
|
//
|
|
|
|
//}
|