2020-04-30 20:20:09 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Package router presents an interface to manipulate the host network
|
|
|
|
// stack's state.
|
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/tailscale/wireguard-go/device"
|
|
|
|
"github.com/tailscale/wireguard-go/tun"
|
2020-05-08 05:17:30 +00:00
|
|
|
"inet.af/netaddr"
|
2020-04-30 20:20:09 +00:00
|
|
|
"tailscale.com/types/logger"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Router is responsible for managing the system network stack.
|
|
|
|
//
|
|
|
|
// There is typically only one instance of this interface per process.
|
|
|
|
type Router interface {
|
|
|
|
// Up brings the router up.
|
|
|
|
Up() error
|
|
|
|
|
2020-05-12 07:08:52 +00:00
|
|
|
// Set updates the OS network stack with a new Config. It may be
|
|
|
|
// called multiple times with identical Configs, which the
|
2020-05-08 01:07:13 +00:00
|
|
|
// implementation should handle gracefully.
|
2020-05-12 07:08:52 +00:00
|
|
|
Set(*Config) error
|
2020-04-30 20:20:09 +00:00
|
|
|
|
|
|
|
// Close closes the router.
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2020-04-30 20:37:30 +00:00
|
|
|
// New returns a new Router for the current platform, using the
|
|
|
|
// provided tun device.
|
2020-04-30 20:20:09 +00:00
|
|
|
func New(logf logger.Logf, wgdev *device.Device, tundev tun.Device) (Router, error) {
|
|
|
|
return newUserspaceRouter(logf, wgdev, tundev)
|
|
|
|
}
|
|
|
|
|
2020-05-13 22:35:22 +00:00
|
|
|
type NetfilterMode int
|
|
|
|
|
|
|
|
const (
|
|
|
|
NetfilterOff NetfilterMode = iota // remove all tailscale netfilter state
|
|
|
|
NetfilterNoDivert // manage tailscale chains, but don't call them
|
|
|
|
NetfilterOn // manage tailscale chains and call them from main chains
|
|
|
|
)
|
|
|
|
|
2020-05-12 07:08:52 +00:00
|
|
|
// Config is the subset of Tailscale configuration that is relevant to
|
|
|
|
// the OS's network stack.
|
|
|
|
type Config struct {
|
2020-05-13 22:35:22 +00:00
|
|
|
LocalAddrs []netaddr.IPPrefix
|
|
|
|
DNS []netaddr.IP
|
|
|
|
DNSDomains []string
|
|
|
|
Routes []netaddr.IPPrefix // routes to point into the Tailscale interface
|
|
|
|
|
|
|
|
// Linux-only things below, ignored on other platforms.
|
|
|
|
|
|
|
|
SubnetRoutes []netaddr.IPPrefix // subnets being advertised to other Tailscale nodes
|
|
|
|
SNATSubnetRoutes bool // SNAT traffic to local subnets
|
|
|
|
NetfilterMode NetfilterMode // how much to manage netfilter rules
|
2020-04-30 20:20:09 +00:00
|
|
|
}
|
2020-05-12 07:08:52 +00:00
|
|
|
|
|
|
|
// shutdownConfig is a routing configuration that removes all router
|
|
|
|
// state from the OS. It's the config used when callers pass in a nil
|
|
|
|
// Config.
|
2020-05-13 22:35:22 +00:00
|
|
|
var shutdownConfig = Config{}
|