Compare commits
1 Commits
v0.2.0
..
a07ed61e00
| Author | SHA1 | Date | |
|---|---|---|---|
| a07ed61e00 |
@@ -31,13 +31,13 @@ func (f *Config) Peers() int {
|
|||||||
// InterfaceConfig represents the [Interface] section
|
// InterfaceConfig represents the [Interface] section
|
||||||
type InterfaceConfig struct {
|
type InterfaceConfig struct {
|
||||||
Address netip.Addr
|
Address netip.Addr
|
||||||
PrivateKey PrivateKey
|
PrivateKey BinaryKey
|
||||||
ListenPort uint16
|
ListenPort uint16
|
||||||
}
|
}
|
||||||
|
|
||||||
// PeerConfig represents a [Peer] section
|
// PeerConfig represents a [Peer] section
|
||||||
type PeerConfig struct {
|
type PeerConfig struct {
|
||||||
PublicKey PublicKey
|
PublicKey BinaryKey
|
||||||
Endpoint EndpointAddress
|
Endpoint EndpointAddress
|
||||||
AllowedIPs []netip.Prefix
|
AllowedIPs []netip.Prefix
|
||||||
}
|
}
|
||||||
@@ -135,7 +135,7 @@ func (p interfaceConfig) Export() (InterfaceConfig, error) {
|
|||||||
ListenPort: p.ListenPort,
|
ListenPort: p.ListenPort,
|
||||||
}
|
}
|
||||||
|
|
||||||
out.PrivateKey, err = PrivateKeyFromBase64(p.PrivateKey)
|
out.PrivateKey, err = BinaryKeyFromBase64(p.PrivateKey)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = core.Wrap(err, "PrivateKey")
|
err = core.Wrap(err, "PrivateKey")
|
||||||
return InterfaceConfig{}, err
|
return InterfaceConfig{}, err
|
||||||
@@ -162,7 +162,7 @@ func (v *intermediateConfig) ExportPeer(i int) (PeerConfig, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// PublicKey
|
// PublicKey
|
||||||
out.PublicKey, err = PublicKeyFromBase64(v.Peer.PublicKey[i])
|
out.PublicKey, err = BinaryKeyFromBase64(v.Peer.PublicKey[i])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = core.Wrap(err, "PublicKey")
|
err = core.Wrap(err, "PublicKey")
|
||||||
return out, err
|
return out, err
|
||||||
|
|||||||
+15
-75
@@ -3,94 +3,34 @@ package wireguard
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"errors"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
// BinaryKey is a binary blob
|
||||||
// PrivateKeySize is the length in bytes of a Wireguard Private Key
|
type BinaryKey []byte
|
||||||
PrivateKeySize = 32
|
|
||||||
// PublicKeySize is the length in bytes of a Wireguard Public Key
|
|
||||||
PublicKeySize = 32
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
func (k BinaryKey) String() string {
|
||||||
// ErrInvalidKeySize indicates the key size is wrong
|
return base64.StdEncoding.EncodeToString(k)
|
||||||
ErrInvalidKeySize = errors.New("invalid key size")
|
|
||||||
)
|
|
||||||
|
|
||||||
type (
|
|
||||||
// PrivateKey is a binary Wireguard Private Key
|
|
||||||
PrivateKey []byte
|
|
||||||
// PublicKey is a binary Wireguard Public Key
|
|
||||||
PublicKey []byte
|
|
||||||
)
|
|
||||||
|
|
||||||
func (key PrivateKey) String() string {
|
|
||||||
return encodeKey(key)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (pub PublicKey) String() string {
|
|
||||||
return encodeKey(pub)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsZero tells if the key hasn't been set
|
// IsZero tells if the key hasn't been set
|
||||||
func (key PrivateKey) IsZero() bool {
|
func (k BinaryKey) IsZero() bool {
|
||||||
return len(key) == 0
|
return len(k) == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsZero tells if the key hasn't been set
|
// Equal checks if two keys are identical
|
||||||
func (pub PublicKey) IsZero() bool {
|
func (k BinaryKey) Equal(alter BinaryKey) bool {
|
||||||
return len(pub) == 0
|
return bytes.Equal(k, alter)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Equal checks if two private keys are identical
|
// BinaryKeyFromBase64 decodes a base64-based string into
|
||||||
func (key PrivateKey) Equal(alter PrivateKey) bool {
|
// a [BinaryKey]
|
||||||
return bytes.Equal(key, alter)
|
func BinaryKeyFromBase64(data string) (BinaryKey, error) {
|
||||||
}
|
|
||||||
|
|
||||||
// Equal checks if two public keys are identical
|
|
||||||
func (pub PublicKey) Equal(alter PublicKey) bool {
|
|
||||||
return bytes.Equal(pub, alter)
|
|
||||||
}
|
|
||||||
|
|
||||||
// PrivateKeyFromBase64 decodes a base64-based string into
|
|
||||||
// a [PrivateKey]
|
|
||||||
func PrivateKeyFromBase64(data string) (PrivateKey, error) {
|
|
||||||
b, err := decodeKey(data, PrivateKeySize)
|
|
||||||
return b, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// PublicKeyFromBase64 decodes a base64-based string into
|
|
||||||
// a [PublicKey]
|
|
||||||
func PublicKeyFromBase64(data string) (PublicKey, error) {
|
|
||||||
b, err := decodeKey(data, PublicKeySize)
|
|
||||||
return b, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func encodeKey(b []byte) string {
|
|
||||||
switch {
|
|
||||||
case len(b) == 0:
|
|
||||||
return ""
|
|
||||||
default:
|
|
||||||
return base64.StdEncoding.EncodeToString(b)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func decodeKey(data string, size int) ([]byte, error) {
|
|
||||||
b, err := base64.StdEncoding.DecodeString(data)
|
b, err := base64.StdEncoding.DecodeString(data)
|
||||||
switch {
|
return BinaryKey(b), err
|
||||||
case err != nil:
|
|
||||||
return []byte{}, err
|
|
||||||
case len(b) != size:
|
|
||||||
err = ErrInvalidKeySize
|
|
||||||
return []byte{}, err
|
|
||||||
default:
|
|
||||||
return b, nil
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// KeyPair holds a Key pair
|
// KeyPair holds a Key pair
|
||||||
type KeyPair struct {
|
type KeyPair struct {
|
||||||
PrivateKey PrivateKey
|
PrivateKey BinaryKey
|
||||||
PublicKey PublicKey
|
PublicKey BinaryKey
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -88,7 +88,7 @@ func getRingZeroGatewayID(z *Zone) int {
|
|||||||
firstNodeID = nodeID
|
firstNodeID = nodeID
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, found := p.getRingInfo(0); found {
|
if p.Gateway() {
|
||||||
gatewayID = nodeID
|
gatewayID = nodeID
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,34 @@ func (m *Machine) ID() int {
|
|||||||
return m.id
|
return m.id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Gateway tells if the Machine is a ring0 gateway
|
||||||
|
func (m *Machine) Gateway() bool {
|
||||||
|
m.mu.Lock()
|
||||||
|
defer m.mu.Unlock()
|
||||||
|
|
||||||
|
if ri, found := m.getRingInfo(0); found {
|
||||||
|
return ri.Enabled
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Machine) SetGateway(enable bool) error {
|
||||||
|
m.mu.Lock()
|
||||||
|
defer m.mu.Unlock()
|
||||||
|
|
||||||
|
ri, found := m.getRingInfo(0)
|
||||||
|
switch {
|
||||||
|
case !found && !enable:
|
||||||
|
return nil
|
||||||
|
case !found:
|
||||||
|
return m.createRingInfo(0, true)
|
||||||
|
default:
|
||||||
|
ri.Enabled = enable
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// FullName returns the Name of the machine including domain name
|
// FullName returns the Name of the machine including domain name
|
||||||
func (m *Machine) FullName() string {
|
func (m *Machine) FullName() string {
|
||||||
if domain := m.zone.zones.domain; domain != "" {
|
if domain := m.zone.zones.domain; domain != "" {
|
||||||
|
|||||||
@@ -134,3 +134,18 @@ func (m *Machine) applyZoneNodeID(zoneID, nodeID int) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *Machine) createRingInfo(ring int, enabled bool) error {
|
||||||
|
keys, err := wireguard.NewKeyPair()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
ri := &RingInfo{
|
||||||
|
Ring: ring,
|
||||||
|
Enabled: enabled,
|
||||||
|
Keys: keys,
|
||||||
|
}
|
||||||
|
|
||||||
|
return m.applyRingInfo(ring, ri)
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user