Add optional LWIP stack support

This commit is contained in:
世界 2022-08-07 17:15:29 +08:00
parent a937ff2d8d
commit 0fd822f913
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
18 changed files with 300 additions and 57 deletions

View file

@ -3,6 +3,8 @@ package tun
import (
"net"
"net/netip"
"os"
"runtime"
"unsafe"
"github.com/sagernet/netlink"
@ -14,7 +16,8 @@ import (
type NativeTun struct {
name string
fd int
tunFd int
tunFile *os.File
inet4Address netip.Prefix
inet6Address netip.Prefix
mtu uint32
@ -32,12 +35,14 @@ func Open(name string, inet4Address netip.Prefix, inet6Address netip.Prefix, mtu
}
nativeTun := &NativeTun{
name: name,
fd: tunFd,
tunFd: tunFd,
tunFile: os.NewFile(uintptr(tunFd), "tun"),
mtu: mtu,
inet4Address: inet4Address,
inet6Address: inet6Address,
autoRoute: autoRoute,
}
runtime.SetFinalizer(nativeTun.tunFile, nil)
err = nativeTun.configure(tunLink)
if err != nil {
return nil, E.Errors(err, unix.Close(tunFd))
@ -45,6 +50,14 @@ func Open(name string, inet4Address netip.Prefix, inet6Address netip.Prefix, mtu
return nativeTun, nil
}
func (t *NativeTun) Read(p []byte) (n int, err error) {
return t.tunFile.Read(p)
}
func (t *NativeTun) Write(p []byte) (n int, err error) {
return t.tunFile.Write(p)
}
var controlPath string
func init() {
@ -131,8 +144,7 @@ func (t *NativeTun) Close() error {
if t.autoRoute {
errors = append(errors, t.unsetRoute())
}
errors = append(errors, unix.Close(t.fd))
return E.Errors(errors...)
return E.Errors(append(errors, t.tunFile.Close())...)
}
const tunTableIndex = 2022