mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 01:53:42 +01:00
4fec709bb1
* compile client under freebsd (#1620) Compile netbird client under freebsd and now support netstack and userspace modes. Refactoring linux specific code to share same code with FreeBSD, move to *_unix.go files. Not implemented yet: Kernel mode not supported DNS probably does not work yet Routing also probably does not work yet SSH support did not tested yet Lack of test environment for freebsd (dedicated VM for github runners under FreeBSD required) Lack of tests for freebsd specific code info reporting need to review and also implement, for example OS reported as GENERIC instead of FreeBSD (lack of FreeBSD icon in management interface) Lack of proper client setup under FreeBSD Lack of FreeBSD port/package * Add DNS routes (#1943) Given domains are resolved periodically and resolved IPs are replaced with the new ones. Unless the flag keep_route is set to true, then only new ones are added. This option is helpful if there are long-running connections that might still point to old IP addresses from changed DNS records. * Add process posture check (#1693) Introduces a process posture check to validate the existence and active status of specific binaries on peer systems. The check ensures that files are present at specified paths, and that corresponding processes are running. This check supports Linux, Windows, and macOS systems. Co-authored-by: Evgenii <mail@skillcoder.com> Co-authored-by: Pascal Fischer <pascal@netbird.io> Co-authored-by: Zoltan Papp <zoltan.pmail@gmail.com> Co-authored-by: Viktor Liu <17948409+lixmal@users.noreply.github.com> Co-authored-by: Bethuel Mmbaga <bethuelmbaga12@gmail.com>
169 lines
4.3 KiB
Go
169 lines
4.3 KiB
Go
//go:build (linux && !android) || freebsd
|
|
|
|
package dns
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"regexp"
|
|
"strings"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const (
|
|
defaultResolvConfPath = "/etc/resolv.conf"
|
|
)
|
|
|
|
var timeoutRegex = regexp.MustCompile(`timeout:\d+`)
|
|
var attemptsRegex = regexp.MustCompile(`attempts:\d+`)
|
|
|
|
type resolvConf struct {
|
|
nameServers []string
|
|
searchDomains []string
|
|
others []string
|
|
}
|
|
|
|
func (r *resolvConf) String() string {
|
|
return fmt.Sprintf("search domains: %v, name servers: %v, others: %s", r.searchDomains, r.nameServers, r.others)
|
|
}
|
|
|
|
func parseDefaultResolvConf() (*resolvConf, error) {
|
|
return parseResolvConfFile(defaultResolvConfPath)
|
|
}
|
|
|
|
func parseBackupResolvConf() (*resolvConf, error) {
|
|
return parseResolvConfFile(fileDefaultResolvConfBackupLocation)
|
|
}
|
|
|
|
func parseResolvConfFile(resolvConfFile string) (*resolvConf, error) {
|
|
rconf := &resolvConf{
|
|
searchDomains: make([]string, 0),
|
|
nameServers: make([]string, 0),
|
|
others: make([]string, 0),
|
|
}
|
|
|
|
file, err := os.Open(resolvConfFile)
|
|
if err != nil {
|
|
return rconf, fmt.Errorf("failed to open %s file: %w", resolvConfFile, err)
|
|
}
|
|
defer func() {
|
|
if err := file.Close(); err != nil {
|
|
log.Errorf("failed closing %s: %s", resolvConfFile, err)
|
|
}
|
|
}()
|
|
|
|
cur, err := os.ReadFile(resolvConfFile)
|
|
if err != nil {
|
|
return rconf, fmt.Errorf("failed to read %s file: %w", resolvConfFile, err)
|
|
}
|
|
|
|
if len(cur) == 0 {
|
|
return rconf, fmt.Errorf("file is empty")
|
|
}
|
|
|
|
for _, line := range strings.Split(string(cur), "\n") {
|
|
line = strings.TrimSpace(line)
|
|
|
|
if strings.HasPrefix(line, "#") {
|
|
continue
|
|
}
|
|
|
|
if strings.HasPrefix(line, "domain") {
|
|
continue
|
|
}
|
|
|
|
if strings.HasPrefix(line, "options") && strings.Contains(line, "rotate") {
|
|
line = strings.ReplaceAll(line, "rotate", "")
|
|
splitLines := strings.Fields(line)
|
|
if len(splitLines) == 1 {
|
|
continue
|
|
}
|
|
line = strings.Join(splitLines, " ")
|
|
}
|
|
|
|
if strings.HasPrefix(line, "search") {
|
|
splitLines := strings.Fields(line)
|
|
if len(splitLines) < 2 {
|
|
continue
|
|
}
|
|
|
|
rconf.searchDomains = splitLines[1:]
|
|
continue
|
|
}
|
|
|
|
if strings.HasPrefix(line, "nameserver") {
|
|
splitLines := strings.Fields(line)
|
|
if len(splitLines) != 2 {
|
|
continue
|
|
}
|
|
rconf.nameServers = append(rconf.nameServers, splitLines[1])
|
|
continue
|
|
}
|
|
|
|
if line != "" {
|
|
rconf.others = append(rconf.others, line)
|
|
}
|
|
}
|
|
return rconf, nil
|
|
}
|
|
|
|
// prepareOptionsWithTimeout appends timeout to existing options if it doesn't exist,
|
|
// otherwise it adds a new option with timeout and attempts.
|
|
func prepareOptionsWithTimeout(input []string, timeout int, attempts int) []string {
|
|
configs := make([]string, len(input))
|
|
copy(configs, input)
|
|
|
|
for i, config := range configs {
|
|
if strings.HasPrefix(config, "options") {
|
|
config = strings.ReplaceAll(config, "rotate", "")
|
|
config = strings.Join(strings.Fields(config), " ")
|
|
|
|
if strings.Contains(config, "timeout:") {
|
|
config = timeoutRegex.ReplaceAllString(config, fmt.Sprintf("timeout:%d", timeout))
|
|
} else {
|
|
config = strings.Replace(config, "options ", fmt.Sprintf("options timeout:%d ", timeout), 1)
|
|
}
|
|
|
|
if strings.Contains(config, "attempts:") {
|
|
config = attemptsRegex.ReplaceAllString(config, fmt.Sprintf("attempts:%d", attempts))
|
|
} else {
|
|
config = strings.Replace(config, "options ", fmt.Sprintf("options attempts:%d ", attempts), 1)
|
|
}
|
|
|
|
configs[i] = config
|
|
return configs
|
|
}
|
|
}
|
|
|
|
return append(configs, fmt.Sprintf("options timeout:%d attempts:%d", timeout, attempts))
|
|
}
|
|
|
|
// removeFirstNbNameserver removes the given nameserver from the given file if it is in the first position
|
|
// and writes the file back to the original location
|
|
func removeFirstNbNameserver(filename, nameserverIP string) error {
|
|
resolvConf, err := parseResolvConfFile(filename)
|
|
if err != nil {
|
|
return fmt.Errorf("parse backup resolv.conf: %w", err)
|
|
}
|
|
content, err := os.ReadFile(filename)
|
|
if err != nil {
|
|
return fmt.Errorf("read %s: %w", filename, err)
|
|
}
|
|
|
|
if len(resolvConf.nameServers) > 1 && resolvConf.nameServers[0] == nameserverIP {
|
|
newContent := strings.Replace(string(content), fmt.Sprintf("nameserver %s\n", nameserverIP), "", 1)
|
|
|
|
stat, err := os.Stat(filename)
|
|
if err != nil {
|
|
return fmt.Errorf("stat %s: %w", filename, err)
|
|
}
|
|
if err := os.WriteFile(filename, []byte(newContent), stat.Mode()); err != nil {
|
|
return fmt.Errorf("write %s: %w", filename, err)
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|