2022-12-20 03:55:24 +08:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2022-12-22 03:43:46 +08:00
|
|
|
"errors"
|
2022-12-24 01:38:04 +08:00
|
|
|
"fmt"
|
2022-12-20 03:55:24 +08:00
|
|
|
|
2022-12-24 01:38:04 +08:00
|
|
|
"github.com/google/uuid"
|
2022-12-20 03:55:24 +08:00
|
|
|
"github.com/gravitl/netmaker/database"
|
2022-12-20 07:04:55 +08:00
|
|
|
"github.com/gravitl/netmaker/logger"
|
2022-12-20 03:55:24 +08:00
|
|
|
"github.com/gravitl/netmaker/models"
|
2023-01-19 13:10:30 +08:00
|
|
|
"github.com/gravitl/netmaker/servercfg"
|
2022-12-22 03:43:46 +08:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
2022-12-20 03:55:24 +08:00
|
|
|
)
|
|
|
|
|
2022-12-24 01:38:04 +08:00
|
|
|
var (
|
|
|
|
// ErrHostExists error indicating that host exists when trying to create new host
|
|
|
|
ErrHostExists error = errors.New("host already exists")
|
|
|
|
// ErrInvalidHostID
|
|
|
|
ErrInvalidHostID error = errors.New("invalid host id")
|
|
|
|
)
|
2022-12-22 03:43:46 +08:00
|
|
|
|
2022-12-20 03:55:24 +08:00
|
|
|
// GetAllHosts - returns all hosts in flat list or error
|
|
|
|
func GetAllHosts() ([]models.Host, error) {
|
|
|
|
currHostMap, err := GetHostsMap()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var currentHosts = []models.Host{}
|
|
|
|
for k := range currHostMap {
|
|
|
|
var h = *currHostMap[k]
|
|
|
|
currentHosts = append(currentHosts, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
return currentHosts, nil
|
|
|
|
}
|
|
|
|
|
2022-12-23 04:44:42 +08:00
|
|
|
// GetAllHostsAPI - get's all the hosts in an API usable format
|
|
|
|
func GetAllHostsAPI(hosts []models.Host) []models.ApiHost {
|
|
|
|
apiHosts := []models.ApiHost{}
|
|
|
|
for i := range hosts {
|
|
|
|
newApiHost := hosts[i].ConvertNMHostToAPI()
|
|
|
|
apiHosts = append(apiHosts, *newApiHost)
|
|
|
|
}
|
|
|
|
return apiHosts[:]
|
|
|
|
}
|
|
|
|
|
2022-12-20 03:55:24 +08:00
|
|
|
// GetHostsMap - gets all the current hosts on machine in a map
|
|
|
|
func GetHostsMap() (map[string]*models.Host, error) {
|
|
|
|
records, err := database.FetchRecords(database.HOSTS_TABLE_NAME)
|
|
|
|
if err != nil && !database.IsEmptyRecord(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
currHostMap := make(map[string]*models.Host)
|
|
|
|
for k := range records {
|
|
|
|
var h models.Host
|
|
|
|
err = json.Unmarshal([]byte(records[k]), &h)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
currHostMap[h.ID.String()] = &h
|
|
|
|
}
|
|
|
|
|
|
|
|
return currHostMap, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHost - gets a host from db given id
|
|
|
|
func GetHost(hostid string) (*models.Host, error) {
|
|
|
|
record, err := database.FetchRecord(database.HOSTS_TABLE_NAME, hostid)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var h models.Host
|
|
|
|
if err = json.Unmarshal([]byte(record), &h); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHost - creates a host if not exist
|
|
|
|
func CreateHost(h *models.Host) error {
|
|
|
|
_, err := GetHost(h.ID.String())
|
|
|
|
if (err != nil && !database.IsEmptyRecord(err)) || (err == nil) {
|
2022-12-22 03:43:46 +08:00
|
|
|
return ErrHostExists
|
2022-12-20 03:55:24 +08:00
|
|
|
}
|
2022-12-22 03:43:46 +08:00
|
|
|
//encrypt that password so we never see it
|
|
|
|
hash, err := bcrypt.GenerateFromPassword([]byte(h.HostPass), 5)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
h.HostPass = string(hash)
|
2022-12-20 03:55:24 +08:00
|
|
|
return UpsertHost(h)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateHost - updates host data by field
|
|
|
|
func UpdateHost(newHost, currentHost *models.Host) {
|
|
|
|
// unchangeable fields via API here
|
|
|
|
newHost.DaemonInstalled = currentHost.DaemonInstalled
|
|
|
|
newHost.OS = currentHost.OS
|
|
|
|
newHost.IPForwarding = currentHost.IPForwarding
|
|
|
|
newHost.HostPass = currentHost.HostPass
|
|
|
|
newHost.MacAddress = currentHost.MacAddress
|
|
|
|
newHost.Debug = currentHost.Debug
|
|
|
|
newHost.Nodes = currentHost.Nodes
|
|
|
|
newHost.PublicKey = currentHost.PublicKey
|
|
|
|
newHost.InternetGateway = currentHost.InternetGateway
|
|
|
|
newHost.TrafficKeyPublic = currentHost.TrafficKeyPublic
|
|
|
|
|
|
|
|
// changeable fields
|
|
|
|
if len(newHost.Version) == 0 {
|
|
|
|
newHost.Version = currentHost.Version
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(newHost.Name) == 0 {
|
|
|
|
newHost.Name = currentHost.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
if newHost.LocalRange.String() != currentHost.LocalRange.String() {
|
|
|
|
newHost.LocalRange = currentHost.LocalRange
|
|
|
|
}
|
|
|
|
|
|
|
|
if newHost.MTU == 0 {
|
|
|
|
newHost.MTU = currentHost.MTU
|
|
|
|
}
|
|
|
|
|
|
|
|
if newHost.ListenPort == 0 {
|
|
|
|
newHost.ListenPort = currentHost.ListenPort
|
|
|
|
}
|
|
|
|
|
|
|
|
if newHost.ProxyListenPort == 0 {
|
|
|
|
newHost.ProxyListenPort = currentHost.ProxyListenPort
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpsertHost - upserts into DB a given host model, does not check for existence*
|
|
|
|
func UpsertHost(h *models.Host) error {
|
|
|
|
data, err := json.Marshal(h)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return database.Insert(h.ID.String(), string(data), database.HOSTS_TABLE_NAME)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveHost - removes a given host from server
|
|
|
|
func RemoveHost(h *models.Host) error {
|
|
|
|
if len(h.Nodes) > 0 {
|
2023-01-09 23:48:19 +08:00
|
|
|
return fmt.Errorf("host still has associated nodes")
|
2022-12-20 03:55:24 +08:00
|
|
|
}
|
|
|
|
return database.DeleteRecord(database.HOSTS_TABLE_NAME, h.ID.String())
|
|
|
|
}
|
2022-12-22 03:43:46 +08:00
|
|
|
|
2023-01-17 17:56:54 +08:00
|
|
|
// RemoveHostByID - removes a given host by id from server
|
|
|
|
func RemoveHostByID(hostID string) error {
|
|
|
|
return database.DeleteRecord(database.HOSTS_TABLE_NAME, hostID)
|
|
|
|
}
|
|
|
|
|
2023-01-19 13:10:30 +08:00
|
|
|
// UpdateHostNetwork - adds/deletes host from a network
|
|
|
|
func UpdateHostNetwork(h *models.Host, network string, add bool) (*models.Node, error) {
|
|
|
|
|
|
|
|
if add {
|
|
|
|
newNode := models.Node{}
|
|
|
|
newNode.Server = servercfg.GetServer()
|
|
|
|
newNode.Network = network
|
|
|
|
if err := AssociateNodeToHost(&newNode, h); err != nil {
|
|
|
|
return nil, err
|
2022-12-20 07:04:55 +08:00
|
|
|
}
|
2023-01-19 13:10:30 +08:00
|
|
|
return &newNode, nil
|
2022-12-20 07:04:55 +08:00
|
|
|
}
|
|
|
|
|
2023-01-19 13:10:30 +08:00
|
|
|
return nil, errors.New("failed to update host networks")
|
2022-12-22 03:43:46 +08:00
|
|
|
}
|
2022-12-24 01:38:04 +08:00
|
|
|
|
|
|
|
// AssociateNodeToHost - associates and creates a node with a given host
|
2022-12-24 02:03:33 +08:00
|
|
|
// should be the only way nodes get created as of 0.18
|
2022-12-24 01:38:04 +08:00
|
|
|
func AssociateNodeToHost(n *models.Node, h *models.Host) error {
|
|
|
|
if len(h.ID.String()) == 0 || h.ID == uuid.Nil {
|
|
|
|
return ErrInvalidHostID
|
|
|
|
}
|
|
|
|
n.HostID = h.ID
|
2022-12-24 03:22:34 +08:00
|
|
|
err := createNode(n)
|
2022-12-24 01:38:04 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
h.Nodes = append(h.Nodes, n.ID.String())
|
|
|
|
return UpsertHost(h)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DissasociateNodeFromHost - deletes a node and removes from host nodes
|
2022-12-24 02:03:33 +08:00
|
|
|
// should be the only way nodes are deleted as of 0.18
|
2022-12-24 01:38:04 +08:00
|
|
|
func DissasociateNodeFromHost(n *models.Node, h *models.Host) error {
|
|
|
|
if len(h.ID.String()) == 0 || h.ID == uuid.Nil {
|
|
|
|
return ErrInvalidHostID
|
|
|
|
}
|
|
|
|
if n.HostID != h.ID { // check if node actually belongs to host
|
|
|
|
return fmt.Errorf("node is not associated with host")
|
|
|
|
}
|
|
|
|
if len(h.Nodes) == 0 {
|
|
|
|
return fmt.Errorf("no nodes present in given host")
|
|
|
|
}
|
|
|
|
index := -1
|
|
|
|
for i := range h.Nodes {
|
|
|
|
if h.Nodes[i] == n.ID.String() {
|
|
|
|
index = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if index < 0 {
|
|
|
|
if len(h.Nodes) == 0 {
|
|
|
|
return fmt.Errorf("node %s, not found in host, %s", n.ID.String(), h.ID.String())
|
|
|
|
}
|
2022-12-27 22:17:30 +08:00
|
|
|
} else {
|
|
|
|
h.Nodes = RemoveStringSlice(h.Nodes, index)
|
2022-12-24 01:38:04 +08:00
|
|
|
}
|
2022-12-24 02:03:33 +08:00
|
|
|
if err := deleteNodeByID(n); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-12-27 22:17:30 +08:00
|
|
|
|
2022-12-24 01:38:04 +08:00
|
|
|
return UpsertHost(h)
|
|
|
|
}
|
2022-12-24 04:55:35 +08:00
|
|
|
|
2023-01-17 17:56:54 +08:00
|
|
|
// DisassociateAllNodesFromHost - deletes all nodes of the host
|
|
|
|
func DisassociateAllNodesFromHost(hostID string) error {
|
|
|
|
host, err := GetHost(hostID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, nodeID := range host.Nodes {
|
|
|
|
node, err := GetNodeByID(nodeID)
|
|
|
|
if err != nil {
|
|
|
|
logger.Log(0, "failed to get host node", err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err := DeleteNode(&node, true); err != nil {
|
|
|
|
logger.Log(0, "failed to delete node", node.ID.String(), err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
logger.Log(3, "deleted node", node.ID.String(), "of host", host.ID.String())
|
|
|
|
}
|
|
|
|
host.Nodes = []string{}
|
|
|
|
return UpsertHost(host)
|
|
|
|
}
|
|
|
|
|
2022-12-24 04:55:35 +08:00
|
|
|
// GetDefaultHosts - retrieve all hosts marked as default from DB
|
|
|
|
func GetDefaultHosts() []models.Host {
|
|
|
|
defaultHostList := []models.Host{}
|
|
|
|
hosts, err := GetAllHosts()
|
|
|
|
if err != nil {
|
|
|
|
return defaultHostList
|
|
|
|
}
|
|
|
|
for i := range hosts {
|
|
|
|
if hosts[i].IsDefault {
|
|
|
|
defaultHostList = append(defaultHostList, hosts[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultHostList[:]
|
|
|
|
}
|
2022-12-27 23:15:00 +08:00
|
|
|
|
|
|
|
// AddDefaultHostsToNetwork - adds a node to network for every default host on Netmaker server
|
|
|
|
func AddDefaultHostsToNetwork(network, server string) error {
|
|
|
|
// add default hosts to network
|
|
|
|
defaultHosts := GetDefaultHosts()
|
|
|
|
for i := range defaultHosts {
|
|
|
|
newNode := models.Node{}
|
|
|
|
newNode.Network = network
|
|
|
|
newNode.Server = server
|
|
|
|
if err := AssociateNodeToHost(&newNode, &defaultHosts[i]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2022-12-29 01:10:03 +08:00
|
|
|
|
|
|
|
// GetHostNetworks - fetches all the networks
|
|
|
|
func GetHostNetworks(hostID string) []string {
|
|
|
|
currHost, err := GetHost(hostID)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
nets := []string{}
|
|
|
|
for i := range currHost.Nodes {
|
|
|
|
n, err := GetNodeByID(currHost.Nodes[i])
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
nets = append(nets, n.Network)
|
|
|
|
}
|
|
|
|
return nets
|
|
|
|
}
|
2023-01-10 21:24:52 +08:00
|
|
|
|
|
|
|
// GetRelatedHosts - fetches related hosts of a given host
|
|
|
|
func GetRelatedHosts(hostID string) []models.Host {
|
|
|
|
relatedHosts := []models.Host{}
|
|
|
|
networks := GetHostNetworks(hostID)
|
|
|
|
networkMap := make(map[string]struct{})
|
|
|
|
for _, network := range networks {
|
|
|
|
networkMap[network] = struct{}{}
|
|
|
|
}
|
|
|
|
hosts, err := GetAllHosts()
|
|
|
|
if err == nil {
|
|
|
|
for _, host := range hosts {
|
2023-01-10 22:24:43 +08:00
|
|
|
if host.ID.String() == hostID {
|
|
|
|
continue
|
|
|
|
}
|
2023-01-10 21:24:52 +08:00
|
|
|
networks := GetHostNetworks(host.ID.String())
|
|
|
|
for _, network := range networks {
|
|
|
|
if _, ok := networkMap[network]; ok {
|
|
|
|
relatedHosts = append(relatedHosts, host)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return relatedHosts
|
|
|
|
}
|