mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 17:43:38 +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>
109 lines
2.2 KiB
Go
109 lines
2.2 KiB
Go
package freebsd
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type iface struct {
|
|
Name string
|
|
MTU int
|
|
Group string
|
|
IPAddrs []string
|
|
}
|
|
|
|
func parseError(output []byte) error {
|
|
// TODO: implement without allocations
|
|
lines := string(output)
|
|
|
|
if strings.Contains(lines, "does not exist") {
|
|
return ErrDoesNotExist
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func parseIfconfigOutput(output []byte) (*iface, error) {
|
|
// TODO: implement without allocations
|
|
lines := string(output)
|
|
|
|
scanner := bufio.NewScanner(strings.NewReader(lines))
|
|
|
|
var name, mtu, group string
|
|
var ips []string
|
|
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
|
|
// If line contains ": flags", it's a line with interface information
|
|
if strings.Contains(line, ": flags") {
|
|
parts := strings.Fields(line)
|
|
if len(parts) < 4 {
|
|
return nil, fmt.Errorf("failed to parse line: %s", line)
|
|
}
|
|
name = strings.TrimSuffix(parts[0], ":")
|
|
if strings.Contains(line, "mtu") {
|
|
mtuIndex := 0
|
|
for i, part := range parts {
|
|
if part == "mtu" {
|
|
mtuIndex = i
|
|
break
|
|
}
|
|
}
|
|
mtu = parts[mtuIndex+1]
|
|
}
|
|
}
|
|
|
|
// If line contains "groups:", it's a line with interface group
|
|
if strings.Contains(line, "groups:") {
|
|
parts := strings.Fields(line)
|
|
if len(parts) < 2 {
|
|
return nil, fmt.Errorf("failed to parse line: %s", line)
|
|
}
|
|
group = parts[1]
|
|
}
|
|
|
|
// If line contains "inet ", it's a line with IP address
|
|
if strings.Contains(line, "inet ") {
|
|
parts := strings.Fields(line)
|
|
if len(parts) < 2 {
|
|
return nil, fmt.Errorf("failed to parse line: %s", line)
|
|
}
|
|
ips = append(ips, parts[1])
|
|
}
|
|
}
|
|
|
|
if name == "" {
|
|
return nil, fmt.Errorf("interface name not found in ifconfig output")
|
|
}
|
|
|
|
mtuInt, err := strconv.Atoi(mtu)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to parse MTU: %w", err)
|
|
}
|
|
|
|
return &iface{
|
|
Name: name,
|
|
MTU: mtuInt,
|
|
Group: group,
|
|
IPAddrs: ips,
|
|
}, nil
|
|
}
|
|
|
|
func parseIFName(output []byte) (string, error) {
|
|
// TODO: implement without allocations
|
|
lines := strings.Split(string(output), "\n")
|
|
if len(lines) == 0 || lines[0] == "" {
|
|
return "", fmt.Errorf("no output returned")
|
|
}
|
|
|
|
fields := strings.Fields(lines[0])
|
|
if len(fields) > 1 {
|
|
return "", fmt.Errorf("invalid output")
|
|
}
|
|
|
|
return fields[0], nil
|
|
}
|