Documentation
¶
Overview ¶
Package pairing provides client-server pairing functionality
Index ¶
- Variables
- func AesDecrypt(psk []byte, ciphertext []byte) ([]byte, error)
- func AesEncrypt(psk []byte, plaintext []byte) ([]byte, error)
- type Client
- type ClientError
- type ClientTransport
- type Encoder
- type IPPool
- type IncomingPairingRequest
- type KeyCachingPairingClientStorage
- type KeyPair
- type MetadataEnricher
- type PeerInfo
- type PeerStorage
- type Request
- type RequestWireguardConfig
- type ReservedAddressLister
- type Response
- type ResponseWireguardConfig
- type Server
- type ServerError
- type ServerTransport
Constants ¶
This section is empty.
Variables ¶
var ErrPeerDoesNotExist = errors.New("peer does not exist")
ErrPeerDoesNotExist is returned when a peer does not exist yet
Functions ¶
func AesDecrypt ¶
AesDecrypt decrypts ciphertext using the provided pre-shared key (psk).
Types ¶
type Client ¶
Client allows pairing with a server
func NewDefaultPairingClient ¶
func NewDefaultPairingClient( clientName string, wgConfig *wg.Config, keyPair KeyPair, wgReloader wg.WireguardConfigReloader, encoder Encoder, transport ClientTransport, ) Client
NewDefaultPairingClient executes HTTP pairing requests to the server
func NewKeyCachingPairingClient ¶
func NewKeyCachingPairingClient( storage KeyCachingPairingClientStorage, wgConfig *wg.Config, wgReloader wg.WireguardConfigReloader, client Client, ) Client
NewKeyCachingPairingClient is a decorator that tries to cache the keys obtained by child client
type ClientError ¶
type ClientError struct {
Err error
}
ClientError is an error that indicate, that it's something wrong with the client
func NewClientError ¶
func NewClientError(err error) ClientError
NewClientError creates a new PairingRequestClientError instance
func (ClientError) Error ¶
func (e ClientError) Error() string
type ClientTransport ¶
ClientTransport is an interface for sending pairing requests
func NewHTTPClientPairingTransport ¶
func NewHTTPClientPairingTransport(serverURL string) ClientTransport
NewHTTPClientPairingTransport creates a new PairingClientTransport instance
func NewPSKClientPairingTransport ¶
func NewPSKClientPairingTransport(psk string, child ClientTransport) ClientTransport
NewPSKClientPairingTransport creates a new PairingClientTransport, that encrypts and decrypts requests using the provided pre-shared key (psk).
type Encoder ¶
type Encoder interface { EncodeRequest(Request) ([]byte, error) DecodeRequest([]byte) (Request, error) EncodeResponse(Response) ([]byte, error) DecodeResponse([]byte) (Response, error) }
Encoder is an interface for encoding and decoding pairing requests and responses
func NewJSONPairingEncoder ¶
func NewJSONPairingEncoder() Encoder
NewJSONPairingEncoder creates a new PairingEncoder instance
type IPPool ¶
IPPool is an interface for managing IP addresses
func NewIPPool ¶
func NewIPPool(starting string, reserved ReservedAddressLister) IPPool
NewIPPool creates a new IP pool
type IncomingPairingRequest ¶
IncomingPairingRequest is a request that was received by the server
type KeyCachingPairingClientStorage ¶
KeyCachingPairingClientStorage is a storage for pairing responses cache
func NewBoltKeyCachingPairingClientStorage ¶
func NewBoltKeyCachingPairingClientStorage(path string) (KeyCachingPairingClientStorage, error)
NewBoltKeyCachingPairingClientStorage creates a new KeyCachingPairingClientStorage backed by a bolt database
func NewInMemoryKeyCachingPairingClientStorage ¶
func NewInMemoryKeyCachingPairingClientStorage() KeyCachingPairingClientStorage
NewInMemoryKeyCachingPairingClientStorage creates a new KeyCachingPairingClientStorage backed by memory
type MetadataEnricher ¶
MetadataEnricher is an interface that allows transports exchanging information between their client/server implementations
type PeerInfo ¶
type PeerInfo struct { Name string `json:"name"` IP string `json:"ip"` PublicKey string `json:"public_key"` }
PeerInfo is a struct that contains information about a peer
type PeerStorage ¶
type PeerStorage interface { Store(PeerInfo) error GetByName(string) (PeerInfo, error) List() ([]PeerInfo, error) DeleteByName(string) error }
PeerStorage is an interface for storing and retrieving peers
func NewBoltPeerStorage ¶
func NewBoltPeerStorage(path string) PeerStorage
NewBoltPeerStorage creates a new BoltDB (persistent, on-disk storage) PeerStorage instance
func NewInMemoryPeerStorage ¶
func NewInMemoryPeerStorage() PeerStorage
NewInMemoryPeerStorage creates a new in-memory PeerStorage instance
type Request ¶
type Request struct { Name string `json:"name"` // Name of the peer, that requests pairing, // for example `dev1`, `us-east-1`, etc Wireguard RequestWireguardConfig `json:"wireguard"` Metadata map[string]string `json:"metadata"` // Any protocol-specific metadata }
Request is a request to pair with a server
type RequestWireguardConfig ¶
type RequestWireguardConfig struct {
PublicKey string `json:"public_key"`
}
RequestWireguardConfig is a wireguard configuration for the pairing request
type ReservedAddressLister ¶
ReservedAddressLister is an interface for listing reserved addresses
func NewReservedAddressLister ¶
func NewReservedAddressLister(storage PeerStorage) ReservedAddressLister
NewReservedAddressLister creates a new reserved address lister
type Response ¶
type Response struct { Name string `json:"name"` // Name of the server peer AssignedIP string `json:"assigned_ip"` // IP that the server assigned to the peer, // that requested pairing InternalServerIP string `json:"internal_server_ip"` // IP of the server in the internal network Wireguard ResponseWireguardConfig `json:"wireguard"` Metadata map[string]string `json:"metadata"` // Any protocol-specific metadata }
Response is a response to a pairing request
type ResponseWireguardConfig ¶
type ResponseWireguardConfig struct { PublicKey string `json:"public_key"` Endpoint string `json:"endpoint"` }
ResponseWireguardConfig is a wireguard configuration for the pairing response
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server is a server that can pair with multiple clients
func NewServer ¶
func NewServer( serverName string, publicWgHostPort string, wgConfig *wg.Config, keyPair KeyPair, wgReloader wg.WireguardConfigReloader, encoder Encoder, transport ServerTransport, ips IPPool, storage PeerStorage, enrichers []MetadataEnricher, ) *Server
NewServer creates a new PairingServer instance
type ServerError ¶
type ServerError struct {
Err error
}
ServerError is an error that indicate, that client request was OK, but server failed
func NewServerError ¶
func NewServerError(err error) ServerError
NewServerError creates a new PairingRequestServerError instance
func (ServerError) Error ¶
func (e ServerError) Error() string
type ServerTransport ¶
type ServerTransport interface {
Requests() <-chan IncomingPairingRequest
}
ServerTransport is an interface for receiving pairing requests
func NewHTTPServerPairingTransport ¶
func NewHTTPServerPairingTransport(server *http.Server) ServerTransport
NewHTTPServerPairingTransport creates a new PairingServerTransport instance
func NewPSKPairingServerTransport ¶
func NewPSKPairingServerTransport(psk string, child ServerTransport) ServerTransport
NewPSKPairingServerTransport creates a new PairingServerTransport, that encrypts and decrypts requests using the provided pre-shared key (psk).