2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-02-12 06:57:45 +00:00
|
|
|
|
2020-04-30 21:20:09 +01:00
|
|
|
package router
|
2020-02-12 06:57:45 +00:00
|
|
|
|
|
|
|
import (
|
2022-12-09 23:12:20 +00:00
|
|
|
"github.com/tailscale/wireguard-go/tun"
|
2020-02-15 03:23:16 +00:00
|
|
|
"tailscale.com/types/logger"
|
2021-07-20 21:28:06 +01:00
|
|
|
"tailscale.com/wgengine/monitor"
|
2020-02-12 06:57:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// For now this router only supports the userspace WireGuard implementations.
|
|
|
|
//
|
2020-02-17 02:37:45 +00:00
|
|
|
// Work is currently underway for an in-kernel FreeBSD implementation of wireguard
|
|
|
|
// https://svnweb.freebsd.org/base?view=revision&revision=357986
|
2020-02-12 06:57:45 +00:00
|
|
|
|
2021-07-20 21:28:06 +01:00
|
|
|
func newUserspaceRouter(logf logger.Logf, tundev tun.Device, linkMon *monitor.Mon) (Router, error) {
|
|
|
|
return newUserspaceBSDRouter(logf, tundev, linkMon)
|
2020-02-12 06:57:45 +00:00
|
|
|
}
|
2020-07-14 14:12:00 +01:00
|
|
|
|
2020-07-31 06:10:14 +01:00
|
|
|
func cleanup(logf logger.Logf, interfaceName string) {
|
|
|
|
// If the interface was left behind, ifconfig down will not remove it.
|
|
|
|
// In fact, this will leave a system in a tainted state where starting tailscaled
|
|
|
|
// will result in "interface tailscale0 already exists"
|
|
|
|
// until the defunct interface is ifconfig-destroyed.
|
|
|
|
ifup := []string{"ifconfig", interfaceName, "destroy"}
|
|
|
|
if out, err := cmd(ifup...).CombinedOutput(); err != nil {
|
|
|
|
logf("ifconfig destroy: %v\n%s", err, out)
|
|
|
|
}
|
|
|
|
}
|