mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 04:17:39 +03:00
Make gVisor optional
This commit is contained in:
parent
057dd738a7
commit
0e80d729a3
11 changed files with 23 additions and 26 deletions
|
@ -1,4 +1,4 @@
|
||||||
//go:build !(no_gvisor || !(linux || windows || darwin))
|
//go:build with_gvisor
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
@ -22,6 +22,8 @@ import (
|
||||||
"gvisor.dev/gvisor/pkg/waiter"
|
"gvisor.dev/gvisor/pkg/waiter"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const WithGVisor = true
|
||||||
|
|
||||||
const defaultNIC tcpip.NICID = 1
|
const defaultNIC tcpip.NICID = 1
|
||||||
|
|
||||||
type GVisor struct {
|
type GVisor struct {
|
||||||
|
@ -45,7 +47,7 @@ func NewGVisor(
|
||||||
) (Stack, error) {
|
) (Stack, error) {
|
||||||
gTun, isGTun := options.Tun.(GVisorTun)
|
gTun, isGTun := options.Tun.(GVisorTun)
|
||||||
if !isGTun {
|
if !isGTun {
|
||||||
return nil, ErrGVisorUnsupported
|
return nil, E.New("gVisor stack is unsupported on current platform")
|
||||||
}
|
}
|
||||||
|
|
||||||
return &GVisor{
|
return &GVisor{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !(no_gvisor || !(linux || windows || darwin))
|
//go:build with_gvisor
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !(no_gvisor || !(linux || windows || darwin))
|
//go:build with_gvisor
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
//go:build !no_gvisor && !(linux || windows || darwin)
|
|
||||||
|
|
||||||
package tun
|
|
||||||
|
|
||||||
func NewGVisor(
|
|
||||||
options StackOptions,
|
|
||||||
) (Stack, error) {
|
|
||||||
return nil, ErrGVisorUnsupported
|
|
||||||
}
|
|
|
@ -1,7 +1,13 @@
|
||||||
//go:build no_gvisor
|
//go:build !with_gvisor
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
import E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
|
||||||
|
const WithGVisor = false
|
||||||
|
|
||||||
|
var ErrGVisorNotIncluded = E.New(`gVisor is not included in this build, rebuild with -tags with_gvisor`)
|
||||||
|
|
||||||
func NewGVisor(
|
func NewGVisor(
|
||||||
options StackOptions,
|
options StackOptions,
|
||||||
) (Stack, error) {
|
) (Stack, error) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !(no_gvisor || !(linux || windows || darwin))
|
//go:build with_gvisor
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
import E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
|
||||||
func NewLWIP(
|
func NewLWIP(
|
||||||
options StackOptions,
|
options StackOptions,
|
||||||
) (Stack, error) {
|
) (Stack, error) {
|
||||||
return nil, ErrLWIPNotIncluded
|
return nil, E.New(`LWIP is not included in this build, rebuild with -tags with_lwip`)
|
||||||
}
|
}
|
||||||
|
|
10
stack.go
10
stack.go
|
@ -8,12 +8,6 @@ import (
|
||||||
"github.com/sagernet/sing/common/logger"
|
"github.com/sagernet/sing/common/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
ErrGVisorNotIncluded = E.New("gVisor is disabled in current build, try build without -tags `no_gvisor`")
|
|
||||||
ErrGVisorUnsupported = E.New("gVisor stack is unsupported on current platform")
|
|
||||||
ErrLWIPNotIncluded = E.New("LWIP stack is disabled in current build, try build with -tags `with_lwip` and CGO_ENABLED=1")
|
|
||||||
)
|
|
||||||
|
|
||||||
type Stack interface {
|
type Stack interface {
|
||||||
Start() error
|
Start() error
|
||||||
Close() error
|
Close() error
|
||||||
|
@ -37,7 +31,9 @@ func NewStack(
|
||||||
options StackOptions,
|
options StackOptions,
|
||||||
) (Stack, error) {
|
) (Stack, error) {
|
||||||
switch stack {
|
switch stack {
|
||||||
case "gvisor", "":
|
case "":
|
||||||
|
return NewSystem(options)
|
||||||
|
case "gvisor":
|
||||||
return NewGVisor(options)
|
return NewGVisor(options)
|
||||||
case "system":
|
case "system":
|
||||||
return NewSystem(options)
|
return NewSystem(options)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !no_gvisor && darwin
|
//go:build with_gvisor && darwin
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !no_gvisor && linux
|
//go:build with_gvisor && linux
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !no_gvisor && windows
|
//go:build with_gvisor && windows
|
||||||
|
|
||||||
package tun
|
package tun
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue