2024-06-10 16:56:36 +00:00
|
|
|
// Package bootstrap deals with the parsing and creation of bootstrap.json
|
|
|
|
// files. It also contains some helpers which rely on bootstrap data.
|
2021-04-20 21:31:37 +00:00
|
|
|
package bootstrap
|
|
|
|
|
|
|
|
import (
|
2022-10-15 16:41:07 +00:00
|
|
|
"crypto/sha512"
|
2024-06-10 16:56:36 +00:00
|
|
|
"encoding/json"
|
2021-04-20 21:31:37 +00:00
|
|
|
"fmt"
|
2024-06-10 16:56:36 +00:00
|
|
|
"isle/nebula"
|
2024-07-12 13:30:21 +00:00
|
|
|
"net/netip"
|
2022-10-15 16:41:07 +00:00
|
|
|
"path/filepath"
|
|
|
|
"sort"
|
2021-04-20 21:31:37 +00:00
|
|
|
)
|
|
|
|
|
2024-06-17 12:13:53 +00:00
|
|
|
// StateDirPath returns the path within the user's state directory where the
|
2022-10-26 22:23:39 +00:00
|
|
|
// bootstrap file is stored.
|
2024-06-17 12:13:53 +00:00
|
|
|
func StateDirPath(dataDirPath string) string {
|
2024-06-10 16:56:36 +00:00
|
|
|
return filepath.Join(dataDirPath, "bootstrap.json")
|
2022-10-26 22:23:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AppDirPath returns the path within the AppDir where an embedded bootstrap
|
|
|
|
// file might be found.
|
|
|
|
func AppDirPath(appDirPath string) string {
|
2024-06-10 16:56:36 +00:00
|
|
|
return filepath.Join(appDirPath, "share/bootstrap.json")
|
2022-10-26 22:23:39 +00:00
|
|
|
}
|
|
|
|
|
2024-07-14 11:11:18 +00:00
|
|
|
// CreationParams are general parameters used when creating a new network. These
|
|
|
|
// are available to all hosts within the network via their bootstrap files.
|
|
|
|
type CreationParams struct {
|
|
|
|
ID string
|
|
|
|
Name string
|
|
|
|
Domain string
|
|
|
|
}
|
|
|
|
|
2024-07-14 09:58:39 +00:00
|
|
|
// Bootstrap contains all information which is needed by a host daemon to join a
|
|
|
|
// network on boot.
|
2022-10-15 14:28:03 +00:00
|
|
|
type Bootstrap struct {
|
2024-07-14 11:11:18 +00:00
|
|
|
NetworkCreationParams CreationParams
|
|
|
|
CAPublicCredentials nebula.CAPublicCredentials
|
2024-06-10 20:31:29 +00:00
|
|
|
|
|
|
|
PrivateCredentials nebula.HostPrivateCredentials
|
|
|
|
HostAssigned `json:"-"`
|
|
|
|
SignedHostAssigned nebula.Signed[HostAssigned] // signed by CA
|
|
|
|
|
2024-07-12 13:30:21 +00:00
|
|
|
Hosts map[nebula.HostName]Host
|
2024-06-10 20:31:29 +00:00
|
|
|
}
|
2022-10-16 15:05:05 +00:00
|
|
|
|
2024-06-10 20:31:29 +00:00
|
|
|
// New initializes and returns a new Bootstrap file for a new host. This
|
|
|
|
// function assigns Hosts an empty map.
|
|
|
|
func New(
|
|
|
|
caCreds nebula.CACredentials,
|
2024-07-14 11:11:18 +00:00
|
|
|
adminCreationParams CreationParams,
|
2024-07-12 13:30:21 +00:00
|
|
|
name nebula.HostName,
|
|
|
|
ip netip.Addr,
|
2024-06-10 20:31:29 +00:00
|
|
|
) (
|
|
|
|
Bootstrap, error,
|
|
|
|
) {
|
|
|
|
hostPubCreds, hostPrivCreds, err := nebula.NewHostCredentials(
|
|
|
|
caCreds, name, ip,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return Bootstrap{}, fmt.Errorf("generating host credentials: %w", err)
|
|
|
|
}
|
2022-10-15 14:28:03 +00:00
|
|
|
|
2024-06-10 20:31:29 +00:00
|
|
|
assigned := HostAssigned{
|
|
|
|
Name: name,
|
|
|
|
PublicCredentials: hostPubCreds,
|
2024-06-10 16:56:36 +00:00
|
|
|
}
|
2022-10-15 14:28:03 +00:00
|
|
|
|
2024-06-10 20:31:29 +00:00
|
|
|
signedAssigned, err := nebula.Sign(assigned, caCreds.SigningPrivateKey)
|
|
|
|
if err != nil {
|
|
|
|
return Bootstrap{}, fmt.Errorf("signing assigned fields: %w", err)
|
2024-06-10 16:56:36 +00:00
|
|
|
}
|
2024-06-10 20:31:29 +00:00
|
|
|
|
|
|
|
return Bootstrap{
|
2024-07-14 11:11:18 +00:00
|
|
|
NetworkCreationParams: adminCreationParams,
|
|
|
|
CAPublicCredentials: caCreds.Public,
|
|
|
|
PrivateCredentials: hostPrivCreds,
|
|
|
|
HostAssigned: assigned,
|
|
|
|
SignedHostAssigned: signedAssigned,
|
|
|
|
Hosts: map[nebula.HostName]Host{},
|
2024-06-10 20:31:29 +00:00
|
|
|
}, nil
|
2022-10-15 14:28:03 +00:00
|
|
|
}
|
2021-04-20 21:31:37 +00:00
|
|
|
|
2024-07-14 09:58:39 +00:00
|
|
|
// UnmarshalJSON implements the json.Unmarshaler interface. It will
|
|
|
|
// automatically populate the HostAssigned field by unwrapping the
|
|
|
|
// SignedHostAssigned field.
|
2024-07-07 10:44:49 +00:00
|
|
|
func (b *Bootstrap) UnmarshalJSON(data []byte) error {
|
|
|
|
type inner Bootstrap
|
|
|
|
|
|
|
|
err := json.Unmarshal(data, (*inner)(b))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
b.HostAssigned, err = b.SignedHostAssigned.Unwrap(
|
|
|
|
b.CAPublicCredentials.SigningKey,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unwrapping HostAssigned: %w", err)
|
2024-06-10 20:31:29 +00:00
|
|
|
}
|
|
|
|
|
2024-07-07 10:44:49 +00:00
|
|
|
return nil
|
2022-10-15 14:28:03 +00:00
|
|
|
}
|
2022-10-11 19:24:53 +00:00
|
|
|
|
2022-10-15 14:28:03 +00:00
|
|
|
// ThisHost is a shortcut for b.Hosts[b.HostName], but will panic if the
|
|
|
|
// HostName isn't found in the Hosts map.
|
|
|
|
func (b Bootstrap) ThisHost() Host {
|
2024-06-10 20:31:29 +00:00
|
|
|
host, ok := b.Hosts[b.Name]
|
2022-10-15 14:28:03 +00:00
|
|
|
if !ok {
|
2024-06-10 20:31:29 +00:00
|
|
|
panic(fmt.Sprintf("hostname %q not defined in bootstrap's hosts", b.Name))
|
2022-10-11 19:24:53 +00:00
|
|
|
}
|
|
|
|
|
2022-10-15 14:28:03 +00:00
|
|
|
return host
|
2022-10-11 19:24:53 +00:00
|
|
|
}
|
2022-10-15 16:41:07 +00:00
|
|
|
|
|
|
|
// Hash returns a deterministic hash of the given hosts map.
|
2024-07-12 13:30:21 +00:00
|
|
|
func HostsHash(hostsMap map[nebula.HostName]Host) ([]byte, error) {
|
2022-10-15 16:41:07 +00:00
|
|
|
|
|
|
|
hosts := make([]Host, 0, len(hostsMap))
|
|
|
|
for _, host := range hostsMap {
|
|
|
|
hosts = append(hosts, host)
|
|
|
|
}
|
|
|
|
|
2024-06-10 16:56:36 +00:00
|
|
|
sort.Slice(hosts, func(i, j int) bool {
|
|
|
|
return hosts[i].Name < hosts[j].Name
|
|
|
|
})
|
2022-10-15 16:41:07 +00:00
|
|
|
|
|
|
|
h := sha512.New()
|
2024-06-10 16:56:36 +00:00
|
|
|
if err := json.NewEncoder(h).Encode(hosts); err != nil {
|
2022-10-15 16:41:07 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return h.Sum(nil), nil
|
|
|
|
}
|