2023-12-18 11:46:58 +01:00
|
|
|
//go:build !ios
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
package device
|
2021-05-01 12:45:37 +02:00
|
|
|
|
|
|
|
import (
|
2024-09-02 19:19:14 +02:00
|
|
|
"fmt"
|
2021-05-01 12:45:37 +02:00
|
|
|
"os/exec"
|
2023-02-13 18:34:56 +01:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2024-01-03 16:06:20 +01:00
|
|
|
"golang.zx2c4.com/wireguard/device"
|
|
|
|
"golang.zx2c4.com/wireguard/tun"
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
"github.com/netbirdio/netbird/client/iface/bind"
|
|
|
|
"github.com/netbirdio/netbird/client/iface/configurer"
|
2021-05-01 12:45:37 +02:00
|
|
|
)
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
type TunDevice struct {
|
2024-01-03 16:06:20 +01:00
|
|
|
name string
|
|
|
|
address WGAddress
|
|
|
|
port int
|
|
|
|
key string
|
|
|
|
mtu int
|
|
|
|
iceBind *bind.ICEBind
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
device *device.Device
|
|
|
|
filteredDevice *FilteredDevice
|
|
|
|
udpMux *bind.UniversalUDPMuxDefault
|
|
|
|
configurer WGConfigurer
|
2024-01-03 16:06:20 +01:00
|
|
|
}
|
|
|
|
|
2024-10-22 20:53:14 +02:00
|
|
|
func NewTunDevice(name string, address WGAddress, port int, key string, mtu int, iceBind *bind.ICEBind) *TunDevice {
|
2024-10-02 18:24:22 +02:00
|
|
|
return &TunDevice{
|
2024-01-03 16:06:20 +01:00
|
|
|
name: name,
|
|
|
|
address: address,
|
|
|
|
port: port,
|
|
|
|
key: key,
|
|
|
|
mtu: mtu,
|
2024-10-22 20:53:14 +02:00
|
|
|
iceBind: iceBind,
|
2024-01-03 16:06:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) Create() (WGConfigurer, error) {
|
2024-01-03 16:06:20 +01:00
|
|
|
tunDevice, err := tun.CreateTUN(t.name, t.mtu)
|
2023-03-17 10:37:27 +01:00
|
|
|
if err != nil {
|
2024-09-02 19:19:14 +02:00
|
|
|
return nil, fmt.Errorf("error creating tun device: %s", err)
|
2024-01-03 16:06:20 +01:00
|
|
|
}
|
2024-10-02 18:24:22 +02:00
|
|
|
t.filteredDevice = newDeviceFilter(tunDevice)
|
2024-01-03 16:06:20 +01:00
|
|
|
|
|
|
|
// We need to create a wireguard-go device and listen to configuration requests
|
|
|
|
t.device = device.NewDevice(
|
2024-10-02 18:24:22 +02:00
|
|
|
t.filteredDevice,
|
2024-01-03 16:06:20 +01:00
|
|
|
t.iceBind,
|
2024-07-15 14:45:18 +02:00
|
|
|
device.NewLogger(wgLogLevel(), "[netbird] "),
|
2024-01-03 16:06:20 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
err = t.assignAddr()
|
|
|
|
if err != nil {
|
|
|
|
t.device.Close()
|
2024-09-02 19:19:14 +02:00
|
|
|
return nil, fmt.Errorf("error assigning ip: %s", err)
|
2024-01-03 16:06:20 +01:00
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
t.configurer = configurer.NewUSPConfigurer(t.device, t.name)
|
|
|
|
err = t.configurer.ConfigureInterface(t.key, t.port)
|
2024-01-03 16:06:20 +01:00
|
|
|
if err != nil {
|
|
|
|
t.device.Close()
|
2024-10-02 18:24:22 +02:00
|
|
|
t.configurer.Close()
|
2024-09-02 19:19:14 +02:00
|
|
|
return nil, fmt.Errorf("error configuring interface: %s", err)
|
2024-01-03 16:06:20 +01:00
|
|
|
}
|
|
|
|
return t.configurer, nil
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) Up() (*bind.UniversalUDPMuxDefault, error) {
|
2024-01-03 16:06:20 +01:00
|
|
|
err := t.device.Up()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2023-03-17 10:37:27 +01:00
|
|
|
}
|
2022-06-04 19:41:01 +02:00
|
|
|
|
2024-01-03 16:06:20 +01:00
|
|
|
udpMux, err := t.iceBind.GetICEMux()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
t.udpMux = udpMux
|
|
|
|
log.Debugf("device is ready to use: %s", t.name)
|
|
|
|
return udpMux, nil
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) UpdateAddr(address WGAddress) error {
|
2024-01-03 16:06:20 +01:00
|
|
|
t.address = address
|
|
|
|
return t.assignAddr()
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) Close() error {
|
2024-01-03 16:06:20 +01:00
|
|
|
if t.configurer != nil {
|
2024-10-02 18:24:22 +02:00
|
|
|
t.configurer.Close()
|
2024-01-03 16:06:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if t.device != nil {
|
|
|
|
t.device.Close()
|
|
|
|
t.device = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if t.udpMux != nil {
|
|
|
|
return t.udpMux.Close()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) WgAddress() WGAddress {
|
2024-01-03 16:06:20 +01:00
|
|
|
return t.address
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) DeviceName() string {
|
2024-01-03 16:06:20 +01:00
|
|
|
return t.name
|
|
|
|
}
|
|
|
|
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) FilteredDevice() *FilteredDevice {
|
|
|
|
return t.filteredDevice
|
2021-06-24 11:46:33 +02:00
|
|
|
}
|
2021-05-01 12:45:37 +02:00
|
|
|
|
|
|
|
// assignAddr Adds IP address to the tunnel interface and network route based on the range provided
|
2024-10-02 18:24:22 +02:00
|
|
|
func (t *TunDevice) assignAddr() error {
|
2024-01-03 16:06:20 +01:00
|
|
|
cmd := exec.Command("ifconfig", t.name, "inet", t.address.IP.String(), t.address.IP.String())
|
2021-05-01 12:45:37 +02:00
|
|
|
if out, err := cmd.CombinedOutput(); err != nil {
|
2024-05-22 12:32:01 +02:00
|
|
|
log.Errorf("adding address command '%v' failed with output: %s", cmd.String(), out)
|
2021-05-01 12:45:37 +02:00
|
|
|
return err
|
|
|
|
}
|
2021-08-29 17:48:31 +02:00
|
|
|
|
2024-05-22 12:32:01 +02:00
|
|
|
// dummy ipv6 so routing works
|
|
|
|
cmd = exec.Command("ifconfig", t.name, "inet6", "fe80::/64")
|
|
|
|
if out, err := cmd.CombinedOutput(); err != nil {
|
|
|
|
log.Debugf("adding address command '%v' failed with output: %s", cmd.String(), out)
|
|
|
|
}
|
|
|
|
|
2024-01-03 16:06:20 +01:00
|
|
|
routeCmd := exec.Command("route", "add", "-net", t.address.Network.String(), "-interface", t.name)
|
2022-01-17 14:01:58 +01:00
|
|
|
if out, err := routeCmd.CombinedOutput(); err != nil {
|
2024-05-22 12:32:01 +02:00
|
|
|
log.Errorf("adding route command '%v' failed with output: %s", routeCmd.String(), out)
|
2021-08-29 17:48:31 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2021-07-19 15:02:11 +02:00
|
|
|
}
|