mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +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>
134 lines
2.5 KiB
Go
134 lines
2.5 KiB
Go
//go:build linux && !android
|
|
|
|
package iface
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/vishvananda/netlink"
|
|
)
|
|
|
|
type wgLink struct {
|
|
attrs *netlink.LinkAttrs
|
|
}
|
|
|
|
func newWGLink(name string) *wgLink {
|
|
attrs := netlink.NewLinkAttrs()
|
|
attrs.Name = name
|
|
|
|
return &wgLink{
|
|
attrs: &attrs,
|
|
}
|
|
}
|
|
|
|
// Attrs returns the Wireguard's default attributes
|
|
func (l *wgLink) Attrs() *netlink.LinkAttrs {
|
|
return l.attrs
|
|
}
|
|
|
|
// Type returns the interface type
|
|
func (l *wgLink) Type() string {
|
|
return "wireguard"
|
|
}
|
|
|
|
// Close deletes the link interface
|
|
func (l *wgLink) Close() error {
|
|
return netlink.LinkDel(l)
|
|
}
|
|
|
|
func (l *wgLink) recreate() error {
|
|
name := l.attrs.Name
|
|
|
|
// check if interface exists
|
|
link, err := netlink.LinkByName(name)
|
|
if err != nil {
|
|
switch err.(type) {
|
|
case netlink.LinkNotFoundError:
|
|
break
|
|
default:
|
|
return fmt.Errorf("link by name: %w", err)
|
|
}
|
|
}
|
|
|
|
// remove if interface exists
|
|
if link != nil {
|
|
err = netlink.LinkDel(l)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
log.Debugf("adding device: %s", name)
|
|
err = netlink.LinkAdd(l)
|
|
if os.IsExist(err) {
|
|
log.Infof("interface %s already exists. Will reuse.", name)
|
|
} else if err != nil {
|
|
return fmt.Errorf("link add: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (l *wgLink) setMTU(mtu int) error {
|
|
if err := netlink.LinkSetMTU(l, mtu); err != nil {
|
|
log.Errorf("error setting MTU on interface: %s", l.attrs.Name)
|
|
|
|
return fmt.Errorf("link set mtu: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (l *wgLink) up() error {
|
|
if err := netlink.LinkSetUp(l); err != nil {
|
|
log.Errorf("error bringing up interface: %s", l.attrs.Name)
|
|
return fmt.Errorf("link setup: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (l *wgLink) assignAddr(address WGAddress) error {
|
|
//delete existing addresses
|
|
list, err := netlink.AddrList(l, 0)
|
|
if err != nil {
|
|
return fmt.Errorf("list addr: %w", err)
|
|
}
|
|
|
|
if len(list) > 0 {
|
|
for _, a := range list {
|
|
addr := a
|
|
err = netlink.AddrDel(l, &addr)
|
|
if err != nil {
|
|
return fmt.Errorf("del addr: %w", err)
|
|
}
|
|
}
|
|
}
|
|
|
|
name := l.attrs.Name
|
|
addrStr := address.String()
|
|
|
|
log.Debugf("adding address %s to interface: %s", addrStr, name)
|
|
|
|
addr, err := netlink.ParseAddr(addrStr)
|
|
if err != nil {
|
|
return fmt.Errorf("parse addr: %w", err)
|
|
}
|
|
|
|
err = netlink.AddrAdd(l, addr)
|
|
if os.IsExist(err) {
|
|
log.Infof("interface %s already has the address: %s", name, addrStr)
|
|
} else if err != nil {
|
|
return fmt.Errorf("add addr: %w", err)
|
|
}
|
|
|
|
// On linux, the link must be brought up
|
|
if err := netlink.LinkSetUp(l); err != nil {
|
|
return fmt.Errorf("link setup: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|