nebula/overlay/tun_android.go

62 lines
1.2 KiB
Go
Raw Normal View History

2021-10-21 23:24:11 +02:00
//go:build !e2e_testing
// +build !e2e_testing
2021-11-11 23:37:29 +01:00
package overlay
2020-07-01 17:20:52 +02:00
import (
"fmt"
"io"
"net"
"os"
"runtime"
2020-07-01 17:20:52 +02:00
2021-03-26 15:46:30 +01:00
"github.com/sirupsen/logrus"
"github.com/slackhq/nebula/iputil"
2020-07-01 17:20:52 +02:00
)
type tun struct {
2020-07-01 17:20:52 +02:00
io.ReadWriteCloser
fd int
cidr *net.IPNet
l *logrus.Logger
2020-07-01 17:20:52 +02:00
}
func newTunFromFd(l *logrus.Logger, deviceFd int, cidr *net.IPNet, _ int, routes []Route, _ int) (*tun, error) {
if len(routes) > 0 {
return nil, fmt.Errorf("routes are not supported in %s", runtime.GOOS)
}
2020-07-01 17:20:52 +02:00
file := os.NewFile(uintptr(deviceFd), "/dev/net/tun")
return &tun{
2020-07-01 17:20:52 +02:00
ReadWriteCloser: file,
fd: int(file.Fd()),
cidr: cidr,
2021-03-26 15:46:30 +01:00
l: l,
}, nil
2020-07-01 17:20:52 +02:00
}
func newTun(_ *logrus.Logger, _ string, _ *net.IPNet, _ int, _ []Route, _ int, _ bool) (*tun, error) {
2020-07-01 17:20:52 +02:00
return nil, fmt.Errorf("newTun not supported in Android")
}
func (t *tun) RouteFor(iputil.VpnIp) iputil.VpnIp {
return 0
}
func (t tun) Activate() error {
2020-07-01 17:20:52 +02:00
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")
}