package ncutils import ( "bytes" "crypto/rand" "encoding/gob" "errors" "fmt" "io" "log" "net" "net/http" "os" "os/exec" "path/filepath" "regexp" "runtime" "strconv" "strings" "time" "github.com/c-robinson/iplib" "github.com/gravitl/netmaker/logger" "github.com/gravitl/netmaker/models" "github.com/gravitl/netmaker/netclient/global_settings" ) var ( // Version - version of the netclient Version = "dev" ) // MAX_NAME_LENGTH - maximum node name length const MAX_NAME_LENGTH = 62 // NO_DB_RECORD - error message result const NO_DB_RECORD = "no result found" // NO_DB_RECORDS - error record result const NO_DB_RECORDS = "could not find any records" // LINUX_APP_DATA_PATH - linux path const LINUX_APP_DATA_PATH = "/etc/netclient" // MAC_APP_DATA_PATH - mac path const MAC_APP_DATA_PATH = "/Applications/Netclient" // WINDOWS_APP_DATA_PATH - windows path const WINDOWS_APP_DATA_PATH = "C:\\Program Files (x86)\\Netclient" // WINDOWS_SVC_NAME - service name const WINDOWS_SVC_NAME = "netclient" // NETCLIENT_DEFAULT_PORT - default port const NETCLIENT_DEFAULT_PORT = 51821 // DEFAULT_GC_PERCENT - garbage collection percent const DEFAULT_GC_PERCENT = 10 // KEY_SIZE = ideal length for keys const KEY_SIZE = 2048 // constants for random strings const ( letterIdxBits = 6 // 6 bits to represent a letter index letterIdxMask = 1<> 2) } } return data, err } // GetNetclientServerPath - gets netclient server path func GetNetclientServerPath(server string) string { if IsWindows() { return WINDOWS_APP_DATA_PATH + "\\" + server + "\\" } else if IsMac() { return MAC_APP_DATA_PATH + "/" + server + "/" } else { return LINUX_APP_DATA_PATH + "/" + server } } // GetNetclientPathSpecific - gets specific netclient config path func GetNetclientPathSpecific() string { if IsWindows() { return WINDOWS_APP_DATA_PATH + "\\" } else if IsMac() { return MAC_APP_DATA_PATH + "/config/" } else { return LINUX_APP_DATA_PATH + "/config/" } } func CheckIPAddress(ip string) error { if net.ParseIP(ip) == nil { return fmt.Errorf("ip address %s is invalid", ip) } return nil } // GetNewIface - Gets the name of the real interface created on Mac func GetNewIface(dir string) (string, error) { files, _ := os.ReadDir(dir) var newestFile string var newestTime int64 = 0 var err error for _, f := range files { fi, err := os.Stat(dir + f.Name()) if err != nil { return "", err } currTime := fi.ModTime().Unix() if currTime > newestTime && strings.Contains(f.Name(), ".sock") { newestTime = currTime newestFile = f.Name() } } resultArr := strings.Split(newestFile, ".") if resultArr[0] == "" { err = errors.New("sock file does not exist") } return resultArr[0], err } // GetFileAsString - returns the string contents of a given file func GetFileAsString(path string) (string, error) { content, err := os.ReadFile(path) if err != nil { return "", err } return string(content), err } // GetNetclientPathSpecific - gets specific netclient config path func GetWGPathSpecific() string { if IsWindows() { return WINDOWS_APP_DATA_PATH + "\\" } else { return "/etc/wireguard/" } } // Copy - copies a src file to dest func Copy(src, dst string) error { sourceFileStat, err := os.Stat(src) if err != nil { return err } if !sourceFileStat.Mode().IsRegular() { return errors.New(src + " is not a regular file") } source, err := os.Open(src) if err != nil { return err } defer source.Close() destination, err := os.Create(dst) if err != nil { return err } defer destination.Close() _, err = io.Copy(destination, source) if err != nil { return err } err = os.Chmod(dst, 0755) return err } // RunsCmds - runs cmds func RunCmds(commands []string, printerr bool) error { var err error for _, command := range commands { // prevent panic if len(strings.Trim(command, " ")) == 0 { continue } args := strings.Fields(command) out, err := exec.Command(args[0], args[1:]...).CombinedOutput() if err != nil && printerr { logger.Log(0, "error running command:", command) logger.Log(0, strings.TrimSuffix(string(out), "\n")) } } return err } // FileExists - checks if file exists locally func FileExists(f string) bool { info, err := os.Stat(f) if os.IsNotExist(err) { return false } if err != nil && strings.Contains(err.Error(), "not a directory") { return false } if err != nil { logger.Log(0, "error reading file: "+f+", "+err.Error()) } return !info.IsDir() } // GetSystemNetworks - get networks locally func GetSystemNetworks() ([]string, error) { var networks []string files, err := filepath.Glob(GetNetclientPathSpecific() + "netconfig-*") if err != nil { return nil, err } for _, file := range files { // don't want files such as *.bak, *.swp if filepath.Ext(file) != "" { continue } file := filepath.Base(file) temp := strings.Split(file, "-") networks = append(networks, strings.Join(temp[1:], "-")) } return networks, nil } // ShortenString - Brings string down to specified length. Stops names from being too long func ShortenString(input string, length int) string { output := input if len(input) > length { output = input[0:length] } return output } // DNSFormatString - Formats a string with correct usage for DNS func DNSFormatString(input string) string { reg, err := regexp.Compile("[^a-zA-Z0-9-]+") if err != nil { logger.Log(0, "error with regex: "+err.Error()) return "" } return reg.ReplaceAllString(input, "") } // GetHostname - Gets hostname of machine func GetHostname() string { hostname, err := os.Hostname() if err != nil { return "" } if len(hostname) > MAX_NAME_LENGTH { hostname = hostname[0:MAX_NAME_LENGTH] } return hostname } // CheckUID - Checks to make sure user has root privileges func CheckUID() { // start our application out, err := RunCmd("id -u", true) if err != nil { log.Fatal(out, err) } id, err := strconv.Atoi(string(out[:len(out)-1])) if err != nil { log.Fatal(err) } if id != 0 { log.Fatal("This program must be run with elevated privileges (sudo). This program installs a SystemD service and configures WireGuard and networking rules. Please re-run with sudo/root.") } } // CheckFirewall - checks if iptables of nft install, if not exit func CheckFirewall() { if !IsIPTablesPresent() && !IsNFTablesPresent() { log.Fatal("neither iptables nor nft is installed - please install one or the other and try again") } } // CheckWG - Checks if WireGuard is installed. If not, exit func CheckWG() { uspace := GetWireGuard() if !HasWG() { if uspace == "wg" { log.Fatal("WireGuard not installed. Please install WireGuard (wireguard-tools) and try again.") } logger.Log(0, "running with userspace wireguard: ", uspace) } else if uspace != "wg" { logger.Log(0, "running userspace WireGuard with ", uspace) } } // HasWG - returns true if wg command exists func HasWG() bool { var _, err = exec.LookPath("wg") return err == nil } // ConvertKeyToBytes - util to convert a key to bytes to use elsewhere func ConvertKeyToBytes(key *[32]byte) ([]byte, error) { var buffer bytes.Buffer var enc = gob.NewEncoder(&buffer) if err := enc.Encode(key); err != nil { return nil, err } return buffer.Bytes(), nil } // ConvertBytesToKey - util to convert bytes to a key to use elsewhere func ConvertBytesToKey(data []byte) (*[32]byte, error) { var buffer = bytes.NewBuffer(data) var dec = gob.NewDecoder(buffer) var result = new([32]byte) var err = dec.Decode(result) if err != nil { return nil, err } return result, err } // ServerAddrSliceContains - sees if a string slice contains a string element func ServerAddrSliceContains(slice []models.ServerAddr, item models.ServerAddr) bool { for _, s := range slice { if s.Address == item.Address && s.IsLeader == item.IsLeader { return true } } return false } // MakeRandomString - generates a random string of len n func MakeRandomString(n int) string { const validChars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" result := make([]byte, n) if _, err := rand.Reader.Read(result); err != nil { return "" } for i, b := range result { result[i] = validChars[b%byte(len(validChars))] } return string(result) } func GetIPNetFromString(ip string) (net.IPNet, error) { var ipnet *net.IPNet var err error // parsing as a CIDR first. If valid CIDR, append if _, cidr, err := net.ParseCIDR(ip); err == nil { ipnet = cidr } else { // parsing as an IP second. If valid IP, check if ipv4 or ipv6, then append if iplib.Version(net.ParseIP(ip)) == 4 { ipnet = &net.IPNet{ IP: net.ParseIP(ip), Mask: net.CIDRMask(32, 32), } } else if iplib.Version(net.ParseIP(ip)) == 6 { ipnet = &net.IPNet{ IP: net.ParseIP(ip), Mask: net.CIDRMask(128, 128), } } } if ipnet == nil { err = errors.New(ip + " is not a valid ip or cidr") return net.IPNet{}, err } return *ipnet, err } // ModPort - Change Node Port if UDP Hole Punching or ListenPort is not free func ModPort(node *models.LegacyNode) error { var err error if node.UDPHolePunch == "yes" { node.ListenPort = 0 } else { node.ListenPort, err = GetFreePort(node.ListenPort) } return err }