mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-07 06:29:06 +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>
141 lines
3.5 KiB
Go
141 lines
3.5 KiB
Go
//go:build !ios
|
|
|
|
package systemops
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"net/netip"
|
|
"os/exec"
|
|
"regexp"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var expectedVPNint = "utun100"
|
|
var expectedExternalInt = "lo0"
|
|
var expectedInternalInt = "lo0"
|
|
|
|
func init() {
|
|
testCases = append(testCases, []testCase{
|
|
{
|
|
name: "To more specific route without custom dialer via vpn",
|
|
destination: "10.10.0.2:53",
|
|
expectedInterface: expectedVPNint,
|
|
dialer: &net.Dialer{},
|
|
expectedPacket: createPacketExpectation("100.64.0.1", 12345, "10.10.0.2", 53),
|
|
},
|
|
}...)
|
|
}
|
|
|
|
func TestConcurrentRoutes(t *testing.T) {
|
|
baseIP := netip.MustParseAddr("192.0.2.0")
|
|
intf := &net.Interface{Name: "lo0"}
|
|
|
|
r := NewSysOps(nil)
|
|
|
|
var wg sync.WaitGroup
|
|
for i := 0; i < 1024; i++ {
|
|
wg.Add(1)
|
|
go func(ip netip.Addr) {
|
|
defer wg.Done()
|
|
prefix := netip.PrefixFrom(ip, 32)
|
|
if err := r.addToRouteTable(prefix, Nexthop{netip.Addr{}, intf}); err != nil {
|
|
t.Errorf("Failed to add route for %s: %v", prefix, err)
|
|
}
|
|
}(baseIP)
|
|
baseIP = baseIP.Next()
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
baseIP = netip.MustParseAddr("192.0.2.0")
|
|
|
|
for i := 0; i < 1024; i++ {
|
|
wg.Add(1)
|
|
go func(ip netip.Addr) {
|
|
defer wg.Done()
|
|
prefix := netip.PrefixFrom(ip, 32)
|
|
if err := r.removeFromRouteTable(prefix, Nexthop{netip.Addr{}, intf}); err != nil {
|
|
t.Errorf("Failed to remove route for %s: %v", prefix, err)
|
|
}
|
|
}(baseIP)
|
|
baseIP = baseIP.Next()
|
|
}
|
|
|
|
wg.Wait()
|
|
}
|
|
|
|
func createAndSetupDummyInterface(t *testing.T, intf string, ipAddressCIDR string) string {
|
|
t.Helper()
|
|
|
|
err := exec.Command("ifconfig", intf, "alias", ipAddressCIDR).Run()
|
|
require.NoError(t, err, "Failed to create loopback alias")
|
|
|
|
t.Cleanup(func() {
|
|
err := exec.Command("ifconfig", intf, ipAddressCIDR, "-alias").Run()
|
|
assert.NoError(t, err, "Failed to remove loopback alias")
|
|
})
|
|
|
|
return "lo0"
|
|
}
|
|
|
|
func addDummyRoute(t *testing.T, dstCIDR string, gw net.IP, _ string) {
|
|
t.Helper()
|
|
|
|
var originalNexthop net.IP
|
|
if dstCIDR == "0.0.0.0/0" {
|
|
var err error
|
|
originalNexthop, err = fetchOriginalGateway()
|
|
if err != nil {
|
|
t.Logf("Failed to fetch original gateway: %v", err)
|
|
}
|
|
|
|
if output, err := exec.Command("route", "delete", "-net", dstCIDR).CombinedOutput(); err != nil {
|
|
t.Logf("Failed to delete route: %v, output: %s", err, output)
|
|
}
|
|
}
|
|
|
|
t.Cleanup(func() {
|
|
if originalNexthop != nil {
|
|
err := exec.Command("route", "add", "-net", dstCIDR, originalNexthop.String()).Run()
|
|
assert.NoError(t, err, "Failed to restore original route")
|
|
}
|
|
})
|
|
|
|
err := exec.Command("route", "add", "-net", dstCIDR, gw.String()).Run()
|
|
require.NoError(t, err, "Failed to add route")
|
|
|
|
t.Cleanup(func() {
|
|
err := exec.Command("route", "delete", "-net", dstCIDR).Run()
|
|
assert.NoError(t, err, "Failed to remove route")
|
|
})
|
|
}
|
|
|
|
func fetchOriginalGateway() (net.IP, error) {
|
|
output, err := exec.Command("route", "-n", "get", "default").CombinedOutput()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
matches := regexp.MustCompile(`gateway: (\S+)`).FindStringSubmatch(string(output))
|
|
if len(matches) == 0 {
|
|
return nil, fmt.Errorf("gateway not found")
|
|
}
|
|
|
|
return net.ParseIP(matches[1]), nil
|
|
}
|
|
|
|
func setupDummyInterfacesAndRoutes(t *testing.T) {
|
|
t.Helper()
|
|
|
|
defaultDummy := createAndSetupDummyInterface(t, expectedExternalInt, "192.168.0.1/24")
|
|
addDummyRoute(t, "0.0.0.0/0", net.IPv4(192, 168, 0, 1), defaultDummy)
|
|
|
|
otherDummy := createAndSetupDummyInterface(t, expectedInternalInt, "192.168.1.1/24")
|
|
addDummyRoute(t, "10.0.0.0/8", net.IPv4(192, 168, 1, 1), otherDummy)
|
|
}
|