sing-box/inbound/tun.go

178 lines
5 KiB
Go
Raw Normal View History

2022-07-19 23:12:40 +00:00
//go:build (linux || windows) && !no_gvisor
2022-07-17 03:16:13 +00:00
2022-07-09 11:18:37 +00:00
package inbound
import (
"context"
"net"
"net/netip"
"strconv"
"strings"
"time"
2022-07-09 11:18:37 +00:00
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/common/canceler"
2022-07-09 11:18:37 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-07-11 10:44:59 +00:00
"github.com/sagernet/sing-dns"
"github.com/sagernet/sing-tun"
2022-07-13 11:01:20 +00:00
"github.com/sagernet/sing/common"
2022-07-09 11:18:37 +00:00
E "github.com/sagernet/sing/common/exceptions"
F "github.com/sagernet/sing/common/format"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
)
var _ adapter.Inbound = (*Tun)(nil)
type Tun struct {
tag string
ctx context.Context
router adapter.Router
logger log.ContextLogger
inboundOptions option.InboundOptions
tunName string
tunMTU uint32
inet4Address netip.Prefix
inet6Address netip.Prefix
autoRoute bool
endpointIndependentNat bool
udpTimeout int64
2022-07-10 01:15:01 +00:00
2022-07-13 11:01:20 +00:00
tunIf tun.Tun
tunStack *tun.GVisorTun
2022-07-09 11:18:37 +00:00
}
2022-07-12 07:17:29 +00:00
func NewTun(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.TunInboundOptions) (*Tun, error) {
2022-07-10 01:15:01 +00:00
tunName := options.InterfaceName
if tunName == "" {
tunName = mkInterfaceName()
}
tunMTU := options.MTU
if tunMTU == 0 {
tunMTU = 1500
}
var udpTimeout int64
if options.UDPTimeout != 0 {
udpTimeout = options.UDPTimeout
} else {
udpTimeout = int64(C.UDPTimeout.Seconds())
}
2022-07-09 11:18:37 +00:00
return &Tun{
tag: tag,
ctx: ctx,
router: router,
logger: logger,
inboundOptions: options.InboundOptions,
tunName: tunName,
tunMTU: tunMTU,
inet4Address: options.Inet4Address.Build(),
inet6Address: options.Inet6Address.Build(),
autoRoute: options.AutoRoute,
endpointIndependentNat: options.EndpointIndependentNat,
udpTimeout: udpTimeout,
2022-07-09 11:18:37 +00:00
}, nil
}
func (t *Tun) Type() string {
return C.TypeTun
}
func (t *Tun) Tag() string {
return t.tag
}
func (t *Tun) Start() error {
2022-07-13 11:01:20 +00:00
tunIf, err := tun.Open(t.tunName, t.inet4Address, t.inet6Address, t.tunMTU, t.autoRoute)
2022-07-09 11:18:37 +00:00
if err != nil {
return E.Cause(err, "configure tun interface")
}
2022-07-13 11:01:20 +00:00
t.tunIf = tunIf
t.tunStack = tun.NewGVisor(t.ctx, tunIf, t.tunMTU, t.endpointIndependentNat, t.udpTimeout, t)
2022-07-13 11:01:20 +00:00
err = t.tunStack.Start()
2022-07-09 11:18:37 +00:00
if err != nil {
return err
}
2022-07-10 01:15:01 +00:00
t.logger.Info("started at ", t.tunName)
2022-07-09 11:18:37 +00:00
return nil
}
func (t *Tun) Close() error {
2022-07-13 11:01:20 +00:00
return common.Close(
t.tunStack,
t.tunIf,
2022-07-09 11:18:37 +00:00
)
}
func (t *Tun) NewConnection(ctx context.Context, conn net.Conn, upstreamMetadata M.Metadata) error {
2022-07-12 07:17:29 +00:00
ctx = log.ContextWithNewID(ctx)
2022-07-09 11:18:37 +00:00
var metadata adapter.InboundContext
metadata.Inbound = t.tag
2022-07-19 14:16:49 +00:00
metadata.InboundType = C.TypeTun
2022-07-09 11:18:37 +00:00
metadata.Network = C.NetworkTCP
metadata.Source = upstreamMetadata.Source
metadata.Destination = upstreamMetadata.Destination
2022-07-10 01:15:01 +00:00
metadata.SniffEnabled = t.inboundOptions.SniffEnabled
metadata.SniffOverrideDestination = t.inboundOptions.SniffOverrideDestination
2022-07-11 10:44:59 +00:00
metadata.DomainStrategy = dns.DomainStrategy(t.inboundOptions.DomainStrategy)
2022-07-12 07:17:29 +00:00
t.logger.InfoContext(ctx, "inbound connection from ", metadata.Source)
t.logger.InfoContext(ctx, "inbound connection to ", metadata.Destination)
2022-07-20 01:41:44 +00:00
err := t.router.RouteConnection(ctx, conn, metadata)
if err != nil {
t.NewError(ctx, err)
}
return err
2022-07-09 11:18:37 +00:00
}
func (t *Tun) NewPacketConnection(ctx context.Context, conn N.PacketConn, upstreamMetadata M.Metadata) error {
2022-07-12 07:17:29 +00:00
ctx = log.ContextWithNewID(ctx)
if tun.NeedTimeoutFromContext(ctx) {
ctx, conn = canceler.NewPacketConn(ctx, conn, time.Duration(t.udpTimeout)*time.Second)
}
2022-07-09 11:18:37 +00:00
var metadata adapter.InboundContext
metadata.Inbound = t.tag
2022-07-19 14:16:49 +00:00
metadata.InboundType = C.TypeTun
2022-07-09 11:18:37 +00:00
metadata.Network = C.NetworkUDP
metadata.Source = upstreamMetadata.Source
metadata.Destination = upstreamMetadata.Destination
2022-07-10 01:15:01 +00:00
metadata.SniffEnabled = t.inboundOptions.SniffEnabled
metadata.SniffOverrideDestination = t.inboundOptions.SniffOverrideDestination
2022-07-11 10:44:59 +00:00
metadata.DomainStrategy = dns.DomainStrategy(t.inboundOptions.DomainStrategy)
2022-07-12 07:17:29 +00:00
t.logger.InfoContext(ctx, "inbound packet connection from ", metadata.Source)
t.logger.InfoContext(ctx, "inbound packet connection to ", metadata.Destination)
2022-07-20 01:41:44 +00:00
err := t.router.RoutePacketConnection(ctx, conn, metadata)
if err != nil {
t.NewError(ctx, err)
}
return err
2022-07-09 11:18:37 +00:00
}
func (t *Tun) NewError(ctx context.Context, err error) {
NewError(t.logger, ctx, err)
}
func mkInterfaceName() (tunName string) {
2022-07-24 14:54:16 +00:00
if C.IsDarwin {
2022-07-09 11:18:37 +00:00
tunName = "utun"
2022-07-24 14:54:16 +00:00
} else {
2022-07-09 11:18:37 +00:00
tunName = "tun"
}
interfaces, err := net.Interfaces()
if err != nil {
return
}
var tunIndex int
for _, netInterface := range interfaces {
if strings.HasPrefix(netInterface.Name, tunName) {
index, parseErr := strconv.ParseInt(netInterface.Name[len(tunName):], 10, 16)
if parseErr == nil {
tunIndex = int(index) + 1
}
}
}
tunName = F.ToString(tunName, tunIndex)
return
}