2021-08-16 23:30:51 +02:00
|
|
|
package server
|
2021-07-17 14:38:59 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-07-30 17:46:38 +02:00
|
|
|
"fmt"
|
2021-07-24 16:14:29 +02:00
|
|
|
"time"
|
|
|
|
|
2021-07-22 10:28:00 +02:00
|
|
|
"github.com/golang/protobuf/ptypes/timestamp"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2021-07-22 15:23:24 +02:00
|
|
|
"github.com/wiretrustee/wiretrustee/encryption"
|
2021-07-17 14:38:59 +02:00
|
|
|
"github.com/wiretrustee/wiretrustee/management/proto"
|
2021-07-22 10:28:00 +02:00
|
|
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
|
|
"google.golang.org/grpc/codes"
|
2021-07-17 14:38:59 +02:00
|
|
|
"google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Server an instance of a Management server
|
|
|
|
type Server struct {
|
2021-08-16 23:30:51 +02:00
|
|
|
accountManager *AccountManager
|
2021-07-30 17:46:38 +02:00
|
|
|
wgKey wgtypes.Key
|
2021-07-20 18:09:26 +02:00
|
|
|
proto.UnimplementedManagementServiceServer
|
2021-08-29 17:48:31 +02:00
|
|
|
peersUpdateManager *PeersUpdateManager
|
|
|
|
config *Config
|
2021-07-22 10:28:00 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 17:46:38 +02:00
|
|
|
// AllowedIPsFormat generates Wireguard AllowedIPs format (e.g. 100.30.30.1/32)
|
|
|
|
const AllowedIPsFormat = "%s/32"
|
|
|
|
|
2021-07-17 14:38:59 +02:00
|
|
|
// NewServer creates a new Management server
|
2021-08-29 17:48:31 +02:00
|
|
|
func NewServer(config *Config, accountManager *AccountManager, peersUpdateManager *PeersUpdateManager) (*Server, error) {
|
2021-07-22 10:28:00 +02:00
|
|
|
key, err := wgtypes.GeneratePrivateKey()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-08-29 17:48:31 +02:00
|
|
|
|
2021-07-17 14:38:59 +02:00
|
|
|
return &Server{
|
2021-07-22 10:28:00 +02:00
|
|
|
wgKey: key,
|
|
|
|
// peerKey -> event channel
|
2021-08-29 17:48:31 +02:00
|
|
|
peersUpdateManager: peersUpdateManager,
|
|
|
|
accountManager: accountManager,
|
|
|
|
config: config,
|
2021-07-17 14:38:59 +02:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-07-22 10:28:00 +02:00
|
|
|
func (s *Server) GetServerKey(ctx context.Context, req *proto.Empty) (*proto.ServerKeyResponse, error) {
|
|
|
|
|
|
|
|
// todo introduce something more meaningful with the key expiration/rotation
|
|
|
|
now := time.Now().Add(24 * time.Hour)
|
|
|
|
secs := int64(now.Second())
|
|
|
|
nanos := int32(now.Nanosecond())
|
|
|
|
expiresAt := ×tamp.Timestamp{Seconds: secs, Nanos: nanos}
|
|
|
|
|
|
|
|
return &proto.ServerKeyResponse{
|
|
|
|
Key: s.wgKey.PublicKey().String(),
|
|
|
|
ExpiresAt: expiresAt,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//Sync validates the existence of a connecting peer, sends an initial state (all available for the connecting peers) and
|
|
|
|
// notifies the connected peer of any updates (e.g. new peers under the same account)
|
|
|
|
func (s *Server) Sync(req *proto.EncryptedMessage, srv proto.ManagementService_SyncServer) error {
|
|
|
|
|
|
|
|
log.Debugf("Sync request from peer %s", req.WgPubKey)
|
|
|
|
|
|
|
|
peerKey, err := wgtypes.ParseKey(req.GetWgPubKey())
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("error while parsing peer's Wireguard public key %s on Sync request.", peerKey.String())
|
|
|
|
return status.Errorf(codes.InvalidArgument, "provided wgPubKey %s is invalid", peerKey.String())
|
|
|
|
}
|
|
|
|
|
2021-07-30 17:46:38 +02:00
|
|
|
peer, err := s.accountManager.GetPeer(peerKey.String())
|
|
|
|
if err != nil {
|
2021-08-15 16:56:26 +02:00
|
|
|
return status.Errorf(codes.PermissionDenied, "provided peer with the key wgPubKey %s is not registered", peerKey.String())
|
2021-07-22 10:28:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
syncReq := &proto.SyncRequest{}
|
2021-07-22 15:23:24 +02:00
|
|
|
err = encryption.DecryptMessage(peerKey, s.wgKey, req.Body, syncReq)
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return status.Errorf(codes.InvalidArgument, "invalid request message")
|
|
|
|
}
|
|
|
|
|
2021-07-30 17:46:38 +02:00
|
|
|
err = s.sendInitialSync(peerKey, peer, srv)
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-08-29 17:48:31 +02:00
|
|
|
updates := s.peersUpdateManager.CreateChannel(peerKey.String())
|
|
|
|
err = s.accountManager.MarkPeerConnected(peerKey.String(), true)
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("failed marking peer as connected %s %v", peerKey, err)
|
|
|
|
}
|
|
|
|
// Todo start turn credentials goroutine
|
2021-07-22 10:28:00 +02:00
|
|
|
// keep a connection to the peer and send updates when available
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
// condition when there are some updates
|
|
|
|
case update, open := <-updates:
|
|
|
|
if !open {
|
|
|
|
// updates channel has been closed
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
log.Debugf("recevied an update for peer %s", peerKey.String())
|
|
|
|
|
2021-07-22 15:23:24 +02:00
|
|
|
encryptedResp, err := encryption.EncryptMessage(peerKey, s.wgKey, update.Update)
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return status.Errorf(codes.Internal, "failed processing update message")
|
|
|
|
}
|
|
|
|
|
2021-07-22 15:23:24 +02:00
|
|
|
err = srv.SendMsg(&proto.EncryptedMessage{
|
|
|
|
WgPubKey: s.wgKey.PublicKey().String(),
|
|
|
|
Body: encryptedResp,
|
|
|
|
})
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return status.Errorf(codes.Internal, "failed sending update message")
|
|
|
|
}
|
|
|
|
// condition when client <-> server connection has been terminated
|
|
|
|
case <-srv.Context().Done():
|
|
|
|
// happens when connection drops, e.g. client disconnects
|
|
|
|
log.Debugf("stream of peer %s has been closed", peerKey.String())
|
2021-08-29 17:48:31 +02:00
|
|
|
s.peersUpdateManager.CloseChannel(peerKey.String())
|
|
|
|
err := s.accountManager.MarkPeerConnected(peerKey.String(), false)
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("failed marking peer as disconnected %s %v", peerKey, err)
|
|
|
|
}
|
|
|
|
// todo stop turn goroutine
|
2021-07-22 10:28:00 +02:00
|
|
|
return srv.Context().Err()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 11:50:19 +02:00
|
|
|
func (s *Server) registerPeer(peerKey wgtypes.Key, req *proto.LoginRequest) (*Peer, error) {
|
2021-07-22 10:28:00 +02:00
|
|
|
|
2021-08-24 11:50:19 +02:00
|
|
|
meta := req.GetMeta()
|
|
|
|
if meta == nil {
|
|
|
|
return nil, status.Errorf(codes.InvalidArgument, "peer meta data was not provided")
|
|
|
|
}
|
|
|
|
peer, err := s.accountManager.AddPeer(req.GetSetupKey(), Peer{
|
|
|
|
Key: peerKey.String(),
|
|
|
|
Name: meta.GetHostname(),
|
|
|
|
Meta: PeerSystemMeta{
|
|
|
|
Hostname: meta.GetHostname(),
|
|
|
|
GoOS: meta.GetGoOS(),
|
|
|
|
Kernel: meta.GetKernel(),
|
|
|
|
Core: meta.GetCore(),
|
|
|
|
Platform: meta.GetPlatform(),
|
|
|
|
OS: meta.GetOS(),
|
|
|
|
WtVersion: meta.GetWiretrusteeVersion(),
|
|
|
|
},
|
|
|
|
})
|
2021-07-17 14:38:59 +02:00
|
|
|
if err != nil {
|
2021-08-15 16:56:26 +02:00
|
|
|
return nil, status.Errorf(codes.NotFound, "provided setup key doesn't exists")
|
2021-07-22 10:28:00 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 17:46:38 +02:00
|
|
|
peers, err := s.accountManager.GetPeersForAPeer(peer.Key)
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
2021-08-15 16:56:26 +02:00
|
|
|
return nil, status.Error(codes.Internal, "internal server error")
|
2021-07-22 10:28:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// notify other peers of our registration
|
2021-07-30 17:46:38 +02:00
|
|
|
for _, remotePeer := range peers {
|
2021-08-29 17:48:31 +02:00
|
|
|
// exclude notified peer and add ourselves
|
|
|
|
peersToSend := []*Peer{peer}
|
|
|
|
for _, p := range peers {
|
|
|
|
if remotePeer.Key != p.Key {
|
|
|
|
peersToSend = append(peersToSend, p)
|
2021-07-22 10:28:00 +02:00
|
|
|
}
|
2021-08-29 17:48:31 +02:00
|
|
|
}
|
|
|
|
update := toSyncResponse(s.config, peer, peersToSend)
|
|
|
|
err = s.peersUpdateManager.SendUpdate(remotePeer.Key, &UpdateMessage{Update: update})
|
|
|
|
if err != nil {
|
|
|
|
// todo rethink if we should keep this return
|
|
|
|
return nil, err
|
2021-07-22 10:28:00 +02:00
|
|
|
}
|
2021-07-17 14:38:59 +02:00
|
|
|
}
|
|
|
|
|
2021-08-15 16:56:26 +02:00
|
|
|
return peer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login endpoint first checks whether peer is registered under any account
|
|
|
|
// In case it is, the login is successful
|
|
|
|
// In case it isn't, the endpoint checks whether setup key is provided within the request and tries to register a peer.
|
|
|
|
// In case of the successful registration login is also successful
|
|
|
|
func (s *Server) Login(ctx context.Context, req *proto.EncryptedMessage) (*proto.EncryptedMessage, error) {
|
|
|
|
|
|
|
|
log.Debugf("Login request from peer %s", req.WgPubKey)
|
|
|
|
|
|
|
|
peerKey, err := wgtypes.ParseKey(req.GetWgPubKey())
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("error while parsing peer's Wireguard public key %s on Sync request.", req.WgPubKey)
|
|
|
|
return nil, status.Errorf(codes.InvalidArgument, "provided wgPubKey %s is invalid", req.WgPubKey)
|
|
|
|
}
|
|
|
|
|
|
|
|
peer, err := s.accountManager.GetPeer(peerKey.String())
|
|
|
|
if err != nil {
|
|
|
|
if errStatus, ok := status.FromError(err); ok && errStatus.Code() == codes.NotFound {
|
|
|
|
//peer doesn't exist -> check if setup key was provided
|
|
|
|
loginReq := &proto.LoginRequest{}
|
|
|
|
err = encryption.DecryptMessage(peerKey, s.wgKey, req.Body, loginReq)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.InvalidArgument, "invalid request message")
|
|
|
|
}
|
|
|
|
|
|
|
|
if loginReq.GetSetupKey() == "" {
|
|
|
|
//absent setup key -> permission denied
|
|
|
|
return nil, status.Errorf(codes.PermissionDenied, "provided peer with the key wgPubKey %s is not registered", peerKey.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
//setup key is present -> try normal registration flow
|
2021-08-24 11:50:19 +02:00
|
|
|
peer, err = s.registerPeer(peerKey, loginReq)
|
2021-08-15 16:56:26 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return nil, status.Error(codes.Internal, "internal server error")
|
|
|
|
}
|
|
|
|
}
|
2021-08-29 17:48:31 +02:00
|
|
|
// Todo fill up turn credentials
|
2021-08-15 16:56:26 +02:00
|
|
|
|
|
|
|
// if peer has reached this point then it has logged in
|
|
|
|
loginResp := &proto.LoginResponse{
|
|
|
|
WiretrusteeConfig: toWiretrusteeConfig(s.config),
|
|
|
|
PeerConfig: toPeerConfig(peer),
|
|
|
|
}
|
|
|
|
encryptedResp, err := encryption.EncryptMessage(peerKey, s.wgKey, loginResp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.Internal, "failed logging in peer")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &proto.EncryptedMessage{
|
|
|
|
WgPubKey: s.wgKey.PublicKey().String(),
|
|
|
|
Body: encryptedResp,
|
|
|
|
}, nil
|
2021-07-17 14:38:59 +02:00
|
|
|
}
|
|
|
|
|
2021-08-16 23:30:51 +02:00
|
|
|
func toResponseProto(configProto Protocol) proto.HostConfig_Protocol {
|
2021-07-30 17:46:38 +02:00
|
|
|
switch configProto {
|
2021-08-16 23:30:51 +02:00
|
|
|
case UDP:
|
2021-07-30 17:46:38 +02:00
|
|
|
return proto.HostConfig_UDP
|
2021-08-16 23:30:51 +02:00
|
|
|
case DTLS:
|
2021-07-30 17:46:38 +02:00
|
|
|
return proto.HostConfig_DTLS
|
2021-08-16 23:30:51 +02:00
|
|
|
case HTTP:
|
2021-07-30 17:46:38 +02:00
|
|
|
return proto.HostConfig_HTTP
|
2021-08-16 23:30:51 +02:00
|
|
|
case HTTPS:
|
2021-07-30 17:46:38 +02:00
|
|
|
return proto.HostConfig_HTTPS
|
2021-08-16 23:30:51 +02:00
|
|
|
case TCP:
|
2021-07-30 17:46:38 +02:00
|
|
|
return proto.HostConfig_TCP
|
|
|
|
default:
|
|
|
|
//mbragin: todo something better?
|
|
|
|
panic(fmt.Errorf("unexpected config protocol type %v", configProto))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-16 23:30:51 +02:00
|
|
|
func toWiretrusteeConfig(config *Config) *proto.WiretrusteeConfig {
|
2021-07-30 17:46:38 +02:00
|
|
|
|
|
|
|
var stuns []*proto.HostConfig
|
|
|
|
for _, stun := range config.Stuns {
|
|
|
|
stuns = append(stuns, &proto.HostConfig{
|
|
|
|
Uri: stun.URI,
|
|
|
|
Protocol: toResponseProto(stun.Proto),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
var turns []*proto.ProtectedHostConfig
|
|
|
|
for _, turn := range config.Turns {
|
|
|
|
turns = append(turns, &proto.ProtectedHostConfig{
|
|
|
|
HostConfig: &proto.HostConfig{
|
|
|
|
Uri: turn.URI,
|
|
|
|
Protocol: toResponseProto(turn.Proto),
|
|
|
|
},
|
|
|
|
User: turn.Username,
|
|
|
|
Password: string(turn.Password),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-15 16:56:26 +02:00
|
|
|
return &proto.WiretrusteeConfig{
|
2021-07-30 17:46:38 +02:00
|
|
|
Stuns: stuns,
|
|
|
|
Turns: turns,
|
|
|
|
Signal: &proto.HostConfig{
|
|
|
|
Uri: config.Signal.URI,
|
|
|
|
Protocol: toResponseProto(config.Signal.Proto),
|
|
|
|
},
|
|
|
|
}
|
2021-08-15 16:56:26 +02:00
|
|
|
}
|
2021-07-30 17:46:38 +02:00
|
|
|
|
2021-08-16 23:30:51 +02:00
|
|
|
func toPeerConfig(peer *Peer) *proto.PeerConfig {
|
2021-08-15 16:56:26 +02:00
|
|
|
return &proto.PeerConfig{
|
|
|
|
Address: peer.IP.String() + "/24", //todo make it explicit
|
2021-07-30 17:46:38 +02:00
|
|
|
}
|
2021-08-15 16:56:26 +02:00
|
|
|
}
|
|
|
|
|
2021-08-16 23:30:51 +02:00
|
|
|
func toSyncResponse(config *Config, peer *Peer, peers []*Peer) *proto.SyncResponse {
|
2021-08-15 16:56:26 +02:00
|
|
|
|
|
|
|
wtConfig := toWiretrusteeConfig(config)
|
|
|
|
|
|
|
|
pConfig := toPeerConfig(peer)
|
2021-07-30 17:46:38 +02:00
|
|
|
|
|
|
|
remotePeers := make([]*proto.RemotePeerConfig, 0, len(peers))
|
|
|
|
for _, rPeer := range peers {
|
|
|
|
remotePeers = append(remotePeers, &proto.RemotePeerConfig{
|
|
|
|
WgPubKey: rPeer.Key,
|
|
|
|
AllowedIps: []string{fmt.Sprintf(AllowedIPsFormat, rPeer.IP)}, //todo /32
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return &proto.SyncResponse{
|
|
|
|
WiretrusteeConfig: wtConfig,
|
|
|
|
PeerConfig: pConfig,
|
|
|
|
RemotePeers: remotePeers,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-17 14:38:59 +02:00
|
|
|
// IsHealthy indicates whether the service is healthy
|
|
|
|
func (s *Server) IsHealthy(ctx context.Context, req *proto.Empty) (*proto.Empty, error) {
|
|
|
|
return &proto.Empty{}, nil
|
|
|
|
}
|
2021-07-22 10:28:00 +02:00
|
|
|
|
|
|
|
// sendInitialSync sends initial proto.SyncResponse to the peer requesting synchronization
|
2021-08-16 23:30:51 +02:00
|
|
|
func (s *Server) sendInitialSync(peerKey wgtypes.Key, peer *Peer, srv proto.ManagementService_SyncServer) error {
|
2021-07-22 10:28:00 +02:00
|
|
|
|
2021-07-30 17:46:38 +02:00
|
|
|
peers, err := s.accountManager.GetPeersForAPeer(peer.Key)
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
2021-07-30 17:46:38 +02:00
|
|
|
log.Warnf("error getting a list of peers for a peer %s", peer.Key)
|
2021-07-22 10:28:00 +02:00
|
|
|
return err
|
|
|
|
}
|
2021-07-30 17:46:38 +02:00
|
|
|
plainResp := toSyncResponse(s.config, peer, peers)
|
2021-07-22 10:28:00 +02:00
|
|
|
|
2021-07-22 15:23:24 +02:00
|
|
|
encryptedResp, err := encryption.EncryptMessage(peerKey, s.wgKey, plainResp)
|
2021-07-22 10:28:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return status.Errorf(codes.Internal, "error handling request")
|
|
|
|
}
|
2021-08-29 17:48:31 +02:00
|
|
|
// Todo fill up the turn credentials
|
2021-07-22 15:23:24 +02:00
|
|
|
err = srv.Send(&proto.EncryptedMessage{
|
|
|
|
WgPubKey: s.wgKey.PublicKey().String(),
|
|
|
|
Body: encryptedResp,
|
|
|
|
})
|
2021-07-22 10:28:00 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("failed sending SyncResponse %v", err)
|
|
|
|
return status.Errorf(codes.Internal, "error handling request")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|