12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //go:build !e2e_testing
- // +build !e2e_testing
- package overlay
- import (
- "fmt"
- "io"
- "net"
- "os"
- "github.com/sirupsen/logrus"
- "github.com/slackhq/nebula/cidr"
- "github.com/slackhq/nebula/iputil"
- )
- type tun struct {
- io.ReadWriteCloser
- fd int
- cidr *net.IPNet
- routeTree *cidr.Tree4[iputil.VpnIp]
- l *logrus.Logger
- }
- func newTunFromFd(l *logrus.Logger, deviceFd int, cidr *net.IPNet, _ int, routes []Route, _ int, _ bool) (*tun, error) {
- routeTree, err := makeRouteTree(l, routes, false)
- if err != nil {
- return nil, err
- }
- // XXX Android returns an fd in non-blocking mode which is necessary for shutdown to work properly.
- // Be sure not to call file.Fd() as it will set the fd to blocking mode.
- file := os.NewFile(uintptr(deviceFd), "/dev/net/tun")
- return &tun{
- ReadWriteCloser: file,
- fd: deviceFd,
- cidr: cidr,
- l: l,
- routeTree: routeTree,
- }, nil
- }
- func newTun(_ *logrus.Logger, _ string, _ *net.IPNet, _ int, _ []Route, _ int, _ bool, _ bool) (*tun, error) {
- return nil, fmt.Errorf("newTun not supported in Android")
- }
- func (t *tun) RouteFor(ip iputil.VpnIp) iputil.VpnIp {
- _, r := t.routeTree.MostSpecificContains(ip)
- return r
- }
- func (t tun) Activate() error {
- return nil
- }
- func (t *tun) Cidr() *net.IPNet {
- return t.cidr
- }
- func (t *tun) Name() string {
- return "android"
- }
- func (t *tun) NewMultiQueueReader() (io.ReadWriteCloser, error) {
- return nil, fmt.Errorf("TODO: multiqueue not implemented for android")
- }
|