Basic implementation of the admin package
This commit is contained in:
parent
cf52cbff52
commit
bdd0259280
122
go-workspace/src/admin/admin.go
Normal file
122
go-workspace/src/admin/admin.go
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
// Package admin deals with the parsing and creation of admin.tgz files.
|
||||||
|
package admin
|
||||||
|
|
||||||
|
import (
|
||||||
|
"cryptic-net/garage"
|
||||||
|
"cryptic-net/nebula"
|
||||||
|
"cryptic-net/tarutil"
|
||||||
|
"cryptic-net/yamlutil"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/fs"
|
||||||
|
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
nebulaCertsCACertPath = "nebula/certs/ca.crt"
|
||||||
|
nebulaCertsCAKeyPath = "nebula/certs/ca.key"
|
||||||
|
|
||||||
|
garageGlobalBucketKeyYmlPath = "garage/cryptic-net-global-bucket-key.yml"
|
||||||
|
garageAdminBucketKeyYmlPath = "garage/cryptic-net-admin-bucket-key.yml"
|
||||||
|
garageRPCSecretPath = "garage/rpc-secret.txt"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Admin is used for accessing all information contained within an admin.tgz.
|
||||||
|
type Admin struct {
|
||||||
|
NebulaCACert nebula.CACert
|
||||||
|
|
||||||
|
GarageRPCSecret string
|
||||||
|
GarageGlobalBucketS3APICredentials garage.S3APICredentials
|
||||||
|
GarageAdminBucketS3APICredentials garage.S3APICredentials
|
||||||
|
}
|
||||||
|
|
||||||
|
// FromFS loads an Admin instance from the given fs.FS, which presumably
|
||||||
|
// represents the file structure of an admin.tgz file.
|
||||||
|
func FromFS(adminFS fs.FS) (Admin, error) {
|
||||||
|
|
||||||
|
var a Admin
|
||||||
|
|
||||||
|
filesToLoadAsYAML := []struct {
|
||||||
|
into interface{}
|
||||||
|
path string
|
||||||
|
}{
|
||||||
|
{&a.GarageGlobalBucketS3APICredentials, garageGlobalBucketKeyYmlPath},
|
||||||
|
{&a.GarageAdminBucketS3APICredentials, garageAdminBucketKeyYmlPath},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, f := range filesToLoadAsYAML {
|
||||||
|
if err := yamlutil.LoadYamlFSFile(f.into, adminFS, f.path); err != nil {
|
||||||
|
return Admin{}, fmt.Errorf("loading %q from fs: %w", f.path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
filesToLoadAsString := []struct {
|
||||||
|
into *string
|
||||||
|
path string
|
||||||
|
}{
|
||||||
|
{&a.NebulaCACert.CACert, nebulaCertsCACertPath},
|
||||||
|
{&a.NebulaCACert.CAKey, nebulaCertsCAKeyPath},
|
||||||
|
{&a.GarageRPCSecret, garageRPCSecretPath},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, f := range filesToLoadAsString {
|
||||||
|
body, err := fs.ReadFile(adminFS, f.path)
|
||||||
|
if err != nil {
|
||||||
|
return Admin{}, fmt.Errorf("loading %q from fs: %w", f.path, err)
|
||||||
|
}
|
||||||
|
*f.into = string(body)
|
||||||
|
}
|
||||||
|
|
||||||
|
return a, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// FromReader reads an admin.tgz file from the given io.Reader.
|
||||||
|
func FromReader(r io.Reader) (Admin, error) {
|
||||||
|
|
||||||
|
fs, err := tarutil.FSFromReader(r)
|
||||||
|
if err != nil {
|
||||||
|
return Admin{}, fmt.Errorf("reading admin.tgz: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return FromFS(fs)
|
||||||
|
}
|
||||||
|
|
||||||
|
// WriteTo writes the Admin as a new admin.tgz to the given io.Writer.
|
||||||
|
func (a Admin) WriteTo(into io.Writer) error {
|
||||||
|
|
||||||
|
w := tarutil.NewTGZWriter(into)
|
||||||
|
|
||||||
|
filesToWriteAsYAML := []struct {
|
||||||
|
value interface{}
|
||||||
|
path string
|
||||||
|
}{
|
||||||
|
{a.GarageGlobalBucketS3APICredentials, garageGlobalBucketKeyYmlPath},
|
||||||
|
{a.GarageAdminBucketS3APICredentials, garageAdminBucketKeyYmlPath},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, f := range filesToWriteAsYAML {
|
||||||
|
|
||||||
|
b, err := yaml.Marshal(f.value)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("yaml encoding data for %q: %w", f.path, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteFileBytes(f.path, b)
|
||||||
|
}
|
||||||
|
|
||||||
|
filesToWriteAsString := []struct {
|
||||||
|
value string
|
||||||
|
path string
|
||||||
|
}{
|
||||||
|
{a.NebulaCACert.CACert, nebulaCertsCACertPath},
|
||||||
|
{a.NebulaCACert.CAKey, nebulaCertsCAKeyPath},
|
||||||
|
{a.GarageRPCSecret, garageRPCSecretPath},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, f := range filesToWriteAsString {
|
||||||
|
w.WriteFileBytes(f.path, []byte(f.value))
|
||||||
|
}
|
||||||
|
|
||||||
|
return w.Close()
|
||||||
|
}
|
@ -1,8 +1,10 @@
|
|||||||
// Package bootstrap deals with the creation of bootstrap files
|
// Package bootstrap deals with the parsing and creation of bootstrap.tgz files.
|
||||||
|
// It also contains some helpers which rely on bootstrap data.
|
||||||
package bootstrap
|
package bootstrap
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"cryptic-net/garage"
|
"cryptic-net/garage"
|
||||||
|
"cryptic-net/nebula"
|
||||||
"cryptic-net/tarutil"
|
"cryptic-net/tarutil"
|
||||||
"cryptic-net/yamlutil"
|
"cryptic-net/yamlutil"
|
||||||
"crypto/sha512"
|
"crypto/sha512"
|
||||||
@ -12,7 +14,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
@ -24,16 +25,11 @@ const (
|
|||||||
|
|
||||||
// Bootstrap is used for accessing all information contained within a
|
// Bootstrap is used for accessing all information contained within a
|
||||||
// bootstrap.tgz file.
|
// bootstrap.tgz file.
|
||||||
//
|
|
||||||
// An instance of Bootstrap is read-only, the creator sub-package should be used
|
|
||||||
// to create new instances.
|
|
||||||
type Bootstrap struct {
|
type Bootstrap struct {
|
||||||
Hosts map[string]Host
|
Hosts map[string]Host
|
||||||
HostName string
|
HostName string
|
||||||
|
|
||||||
NebulaCertsCACert string
|
NebulaHostCert nebula.HostCert
|
||||||
NebulaCertsHostCert string
|
|
||||||
NebulaCertsHostKey string
|
|
||||||
|
|
||||||
GarageRPCSecret string
|
GarageRPCSecret string
|
||||||
GarageGlobalBucketS3APICredentials garage.S3APICredentials
|
GarageGlobalBucketS3APICredentials garage.S3APICredentials
|
||||||
@ -65,9 +61,9 @@ func FromFS(bootstrapFS fs.FS) (Bootstrap, error) {
|
|||||||
path string
|
path string
|
||||||
}{
|
}{
|
||||||
{&b.HostName, hostNamePath},
|
{&b.HostName, hostNamePath},
|
||||||
{&b.NebulaCertsCACert, nebulaCertsCACertPath},
|
{&b.NebulaHostCert.CACert, nebulaCertsCACertPath},
|
||||||
{&b.NebulaCertsHostCert, nebulaCertsHostCertPath},
|
{&b.NebulaHostCert.HostCert, nebulaCertsHostCertPath},
|
||||||
{&b.NebulaCertsHostKey, nebulaCertsHostKeyPath},
|
{&b.NebulaHostCert.HostKey, nebulaCertsHostKeyPath},
|
||||||
{&b.GarageRPCSecret, garageRPCSecretPath},
|
{&b.GarageRPCSecret, garageRPCSecretPath},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -79,9 +75,6 @@ func FromFS(bootstrapFS fs.FS) (Bootstrap, error) {
|
|||||||
*f.into = string(body)
|
*f.into = string(body)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO confirm if this is necessary
|
|
||||||
b.GarageRPCSecret = strings.TrimSpace(b.GarageRPCSecret)
|
|
||||||
|
|
||||||
return b, nil
|
return b, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,9 +111,9 @@ func (b Bootstrap) WriteTo(into io.Writer) error {
|
|||||||
path string
|
path string
|
||||||
}{
|
}{
|
||||||
{b.HostName, hostNamePath},
|
{b.HostName, hostNamePath},
|
||||||
{b.NebulaCertsCACert, nebulaCertsCACertPath},
|
{b.NebulaHostCert.CACert, nebulaCertsCACertPath},
|
||||||
{b.NebulaCertsHostCert, nebulaCertsHostCertPath},
|
{b.NebulaHostCert.HostCert, nebulaCertsHostCertPath},
|
||||||
{b.NebulaCertsHostKey, nebulaCertsHostKeyPath},
|
{b.NebulaHostCert.HostKey, nebulaCertsHostKeyPath},
|
||||||
{b.GarageRPCSecret, garageRPCSecretPath},
|
{b.GarageRPCSecret, garageRPCSecretPath},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
package entrypoint
|
package entrypoint
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"cryptic-net/admin"
|
||||||
"cryptic-net/bootstrap"
|
"cryptic-net/bootstrap"
|
||||||
"cryptic-net/nebula"
|
"cryptic-net/nebula"
|
||||||
"cryptic-net/tarutil"
|
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/fs"
|
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"regexp"
|
"regexp"
|
||||||
@ -141,25 +140,25 @@ var subCmdHostsDelete = subCmd{
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func readAdminFS(path string) (fs.FS, error) {
|
func readAdmin(path string) (admin.Admin, error) {
|
||||||
|
|
||||||
if path == "-" {
|
if path == "-" {
|
||||||
|
|
||||||
outFS, err := tarutil.FSFromReader(os.Stdin)
|
adm, err := admin.FromReader(os.Stdin)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("reading admin.tgz from stdin: %w", err)
|
return admin.Admin{}, fmt.Errorf("parsing admin.tgz from stdin: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return outFS, nil
|
return adm, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
f, err := os.Open(path)
|
f, err := os.Open(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("opening file: %w", err)
|
return admin.Admin{}, fmt.Errorf("opening file: %w", err)
|
||||||
}
|
}
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
|
|
||||||
return tarutil.FSFromReader(f)
|
return admin.FromReader(f)
|
||||||
}
|
}
|
||||||
|
|
||||||
var subCmdHostsMakeBootstrap = subCmd{
|
var subCmdHostsMakeBootstrap = subCmd{
|
||||||
@ -190,7 +189,7 @@ var subCmdHostsMakeBootstrap = subCmd{
|
|||||||
|
|
||||||
env := subCmdCtx.env
|
env := subCmdCtx.env
|
||||||
|
|
||||||
adminFS, err := readAdminFS(*adminPath)
|
adm, err := readAdmin(*adminPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("reading admin.tgz with --admin-path of %q: %w", *adminPath, err)
|
return fmt.Errorf("reading admin.tgz with --admin-path of %q: %w", *adminPath, err)
|
||||||
}
|
}
|
||||||
@ -214,7 +213,7 @@ var subCmdHostsMakeBootstrap = subCmd{
|
|||||||
return fmt.Errorf("couldn't find host into for %q in garage, has `cryptic-net hosts add` been run yet?", *name)
|
return fmt.Errorf("couldn't find host into for %q in garage, has `cryptic-net hosts add` been run yet?", *name)
|
||||||
}
|
}
|
||||||
|
|
||||||
nebulaHostCert, err := nebula.NewHostCert(adminFS, host)
|
nebulaHostCert, err := nebula.NewHostCert(adm.NebulaCACert, host.Name, host.Nebula.IP)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("creating new nebula host key/cert: %w", err)
|
return fmt.Errorf("creating new nebula host key/cert: %w", err)
|
||||||
}
|
}
|
||||||
@ -223,13 +222,10 @@ var subCmdHostsMakeBootstrap = subCmd{
|
|||||||
Hosts: hosts,
|
Hosts: hosts,
|
||||||
HostName: *name,
|
HostName: *name,
|
||||||
|
|
||||||
NebulaCertsCACert: nebulaHostCert.CACert,
|
NebulaHostCert: nebulaHostCert,
|
||||||
NebulaCertsHostCert: nebulaHostCert.HostCert,
|
|
||||||
NebulaCertsHostKey: nebulaHostCert.HostKey,
|
|
||||||
|
|
||||||
// TODO these should use adminFS
|
GarageRPCSecret: adm.GarageRPCSecret,
|
||||||
GarageRPCSecret: env.Bootstrap.GarageRPCSecret,
|
GarageGlobalBucketS3APICredentials: adm.GarageGlobalBucketS3APICredentials,
|
||||||
GarageGlobalBucketS3APICredentials: env.Bootstrap.GarageGlobalBucketS3APICredentials,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return newBootstrap.WriteTo(os.Stdout)
|
return newBootstrap.WriteTo(os.Stdout)
|
||||||
|
@ -37,9 +37,9 @@ func Main() {
|
|||||||
|
|
||||||
config := map[string]interface{}{
|
config := map[string]interface{}{
|
||||||
"pki": map[string]string{
|
"pki": map[string]string{
|
||||||
"ca": env.Bootstrap.NebulaCertsCACert,
|
"ca": env.Bootstrap.NebulaHostCert.CACert,
|
||||||
"cert": env.Bootstrap.NebulaCertsHostCert,
|
"cert": env.Bootstrap.NebulaHostCert.HostCert,
|
||||||
"key": env.Bootstrap.NebulaCertsHostKey,
|
"key": env.Bootstrap.NebulaHostCert.HostKey,
|
||||||
},
|
},
|
||||||
"static_host_map": staticHostMap,
|
"static_host_map": staticHostMap,
|
||||||
"punchy": map[string]bool{
|
"punchy": map[string]bool{
|
||||||
|
@ -3,12 +3,10 @@
|
|||||||
package nebula
|
package nebula
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"cryptic-net/bootstrap"
|
|
||||||
"crypto/ed25519"
|
"crypto/ed25519"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/fs"
|
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -43,7 +41,7 @@ type CACert struct {
|
|||||||
// NewHostCert generates a new key/cert for a nebula host using the CA key
|
// NewHostCert generates a new key/cert for a nebula host using the CA key
|
||||||
// which will be found in the adminFS.
|
// which will be found in the adminFS.
|
||||||
func NewHostCert(
|
func NewHostCert(
|
||||||
adminFS fs.FS, host bootstrap.Host,
|
caCert CACert, hostName, hostIP string,
|
||||||
) (
|
) (
|
||||||
HostCert, error,
|
HostCert, error,
|
||||||
) {
|
) {
|
||||||
@ -51,22 +49,12 @@ func NewHostCert(
|
|||||||
// The logic here is largely based on
|
// The logic here is largely based on
|
||||||
// https://github.com/slackhq/nebula/blob/v1.4.0/cmd/nebula-cert/sign.go
|
// https://github.com/slackhq/nebula/blob/v1.4.0/cmd/nebula-cert/sign.go
|
||||||
|
|
||||||
caKeyPEM, err := fs.ReadFile(adminFS, "nebula/certs/ca.key")
|
caKey, _, err := cert.UnmarshalEd25519PrivateKey([]byte(caCert.CAKey))
|
||||||
if err != nil {
|
|
||||||
return HostCert{}, fmt.Errorf("reading ca.key from admin fs: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
caKey, _, err := cert.UnmarshalEd25519PrivateKey(caKeyPEM)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return HostCert{}, fmt.Errorf("unmarshaling ca.key: %w", err)
|
return HostCert{}, fmt.Errorf("unmarshaling ca.key: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
caCrtPEM, err := fs.ReadFile(adminFS, "nebula/certs/ca.crt")
|
caCrt, _, err := cert.UnmarshalNebulaCertificateFromPEM([]byte(caCert.CACert))
|
||||||
if err != nil {
|
|
||||||
return HostCert{}, fmt.Errorf("reading ca.crt from admin fs: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
caCrt, _, err := cert.UnmarshalNebulaCertificateFromPEM(caCrtPEM)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return HostCert{}, fmt.Errorf("unmarshaling ca.crt: %w", err)
|
return HostCert{}, fmt.Errorf("unmarshaling ca.crt: %w", err)
|
||||||
}
|
}
|
||||||
@ -78,9 +66,9 @@ func NewHostCert(
|
|||||||
|
|
||||||
expireAt := caCrt.Details.NotAfter.Add(-1 * time.Second)
|
expireAt := caCrt.Details.NotAfter.Add(-1 * time.Second)
|
||||||
|
|
||||||
ip := net.ParseIP(host.Nebula.IP)
|
ip := net.ParseIP(hostIP)
|
||||||
if ip == nil {
|
if ip == nil {
|
||||||
return HostCert{}, fmt.Errorf("invalid host ip %q", host.Nebula.IP)
|
return HostCert{}, fmt.Errorf("invalid host ip %q", hostIP)
|
||||||
}
|
}
|
||||||
|
|
||||||
ipNet := &net.IPNet{
|
ipNet := &net.IPNet{
|
||||||
@ -100,7 +88,7 @@ func NewHostCert(
|
|||||||
|
|
||||||
hostCrt := cert.NebulaCertificate{
|
hostCrt := cert.NebulaCertificate{
|
||||||
Details: cert.NebulaCertificateDetails{
|
Details: cert.NebulaCertificateDetails{
|
||||||
Name: host.Name,
|
Name: hostName,
|
||||||
Ips: []*net.IPNet{ipNet},
|
Ips: []*net.IPNet{ipNet},
|
||||||
NotBefore: time.Now(),
|
NotBefore: time.Now(),
|
||||||
NotAfter: expireAt,
|
NotAfter: expireAt,
|
||||||
@ -126,7 +114,7 @@ func NewHostCert(
|
|||||||
}
|
}
|
||||||
|
|
||||||
return HostCert{
|
return HostCert{
|
||||||
CACert: string(caCrtPEM),
|
CACert: caCert.CACert,
|
||||||
HostKey: string(hostKeyPEM),
|
HostKey: string(hostKeyPEM),
|
||||||
HostCert: string(hostCrtPEM),
|
HostCert: string(hostCrtPEM),
|
||||||
}, nil
|
}, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user