2022-07-09 11:18:37 +00:00
|
|
|
package inbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
2022-10-25 04:55:00 +00:00
|
|
|
"github.com/sagernet/sing-box/experimental/libbox/platform"
|
2022-07-09 11:18:37 +00:00
|
|
|
"github.com/sagernet/sing-box/log"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
2022-07-11 10:44:59 +00:00
|
|
|
"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"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
2022-08-14 16:25:49 +00:00
|
|
|
"github.com/sagernet/sing/common/ranges"
|
2022-07-09 11:18:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ adapter.Inbound = (*Tun)(nil)
|
|
|
|
|
|
|
|
type Tun struct {
|
2022-08-07 09:21:49 +00:00
|
|
|
tag string
|
2022-07-26 11:21:56 +00:00
|
|
|
ctx context.Context
|
|
|
|
router adapter.Router
|
|
|
|
logger log.ContextLogger
|
|
|
|
inboundOptions option.InboundOptions
|
2022-08-14 16:25:49 +00:00
|
|
|
tunOptions tun.Options
|
2022-07-26 11:21:56 +00:00
|
|
|
endpointIndependentNat bool
|
|
|
|
udpTimeout int64
|
2022-08-07 09:21:49 +00:00
|
|
|
stack string
|
|
|
|
tunIf tun.Tun
|
|
|
|
tunStack tun.Stack
|
2022-10-25 04:55:00 +00:00
|
|
|
platformInterface platform.Interface
|
2023-02-28 11:02:27 +00:00
|
|
|
platformOptions option.TunPlatformOptions
|
2022-07-09 11:18:37 +00:00
|
|
|
}
|
|
|
|
|
2022-10-25 04:55:00 +00:00
|
|
|
func NewTun(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.TunInboundOptions, platformInterface platform.Interface) (*Tun, error) {
|
2022-07-10 01:15:01 +00:00
|
|
|
tunName := options.InterfaceName
|
|
|
|
if tunName == "" {
|
2022-09-05 16:15:09 +00:00
|
|
|
tunName = tun.CalculateInterfaceName("")
|
2022-07-10 01:15:01 +00:00
|
|
|
}
|
|
|
|
tunMTU := options.MTU
|
|
|
|
if tunMTU == 0 {
|
2022-09-06 14:52:37 +00:00
|
|
|
tunMTU = 9000
|
2022-07-10 01:15:01 +00:00
|
|
|
}
|
2022-07-26 11:21:56 +00:00
|
|
|
var udpTimeout int64
|
|
|
|
if options.UDPTimeout != 0 {
|
|
|
|
udpTimeout = options.UDPTimeout
|
|
|
|
} else {
|
|
|
|
udpTimeout = int64(C.UDPTimeout.Seconds())
|
|
|
|
}
|
2022-08-14 16:25:49 +00:00
|
|
|
includeUID := uidToRange(options.IncludeUID)
|
|
|
|
if len(options.IncludeUIDRange) > 0 {
|
|
|
|
var err error
|
|
|
|
includeUID, err = parseRange(includeUID, options.IncludeUIDRange)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse include_uid_range")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
excludeUID := uidToRange(options.ExcludeUID)
|
|
|
|
if len(options.ExcludeUIDRange) > 0 {
|
|
|
|
var err error
|
|
|
|
excludeUID, err = parseRange(excludeUID, options.ExcludeUIDRange)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse exclude_uid_range")
|
|
|
|
}
|
|
|
|
}
|
2022-07-09 11:18:37 +00:00
|
|
|
return &Tun{
|
2022-08-14 16:25:49 +00:00
|
|
|
tag: tag,
|
|
|
|
ctx: ctx,
|
|
|
|
router: router,
|
|
|
|
logger: logger,
|
|
|
|
inboundOptions: options.InboundOptions,
|
|
|
|
tunOptions: tun.Options{
|
|
|
|
Name: tunName,
|
|
|
|
MTU: tunMTU,
|
2022-09-05 16:15:09 +00:00
|
|
|
Inet4Address: common.Map(options.Inet4Address, option.ListenPrefix.Build),
|
|
|
|
Inet6Address: common.Map(options.Inet6Address, option.ListenPrefix.Build),
|
2022-08-14 16:25:49 +00:00
|
|
|
AutoRoute: options.AutoRoute,
|
2022-08-26 13:53:08 +00:00
|
|
|
StrictRoute: options.StrictRoute,
|
2022-10-12 08:20:17 +00:00
|
|
|
Inet4RouteAddress: common.Map(options.Inet4RouteAddress, option.ListenPrefix.Build),
|
|
|
|
Inet6RouteAddress: common.Map(options.Inet6RouteAddress, option.ListenPrefix.Build),
|
2022-08-14 16:25:49 +00:00
|
|
|
IncludeUID: includeUID,
|
|
|
|
ExcludeUID: excludeUID,
|
2022-08-15 03:40:49 +00:00
|
|
|
IncludeAndroidUser: options.IncludeAndroidUser,
|
|
|
|
IncludePackage: options.IncludePackage,
|
|
|
|
ExcludePackage: options.ExcludePackage,
|
2022-09-05 05:12:29 +00:00
|
|
|
InterfaceMonitor: router.InterfaceMonitor(),
|
2022-09-05 16:15:09 +00:00
|
|
|
TableIndex: 2022,
|
2022-08-14 16:25:49 +00:00
|
|
|
},
|
2022-07-26 11:21:56 +00:00
|
|
|
endpointIndependentNat: options.EndpointIndependentNat,
|
|
|
|
udpTimeout: udpTimeout,
|
2022-08-07 09:21:49 +00:00
|
|
|
stack: options.Stack,
|
2022-10-25 04:55:00 +00:00
|
|
|
platformInterface: platformInterface,
|
2023-02-28 11:02:27 +00:00
|
|
|
platformOptions: common.PtrValueOrDefault(options.Platform),
|
2022-07-09 11:18:37 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2022-08-14 16:25:49 +00:00
|
|
|
func uidToRange(uidList option.Listable[uint32]) []ranges.Range[uint32] {
|
|
|
|
return common.Map(uidList, func(uid uint32) ranges.Range[uint32] {
|
|
|
|
return ranges.NewSingle(uid)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseRange(uidRanges []ranges.Range[uint32], rangeList []string) ([]ranges.Range[uint32], error) {
|
|
|
|
for _, uidRange := range rangeList {
|
|
|
|
if !strings.Contains(uidRange, ":") {
|
|
|
|
return nil, E.New("missing ':' in range: ", uidRange)
|
|
|
|
}
|
|
|
|
subIndex := strings.Index(uidRange, ":")
|
|
|
|
if subIndex == 0 {
|
|
|
|
return nil, E.New("missing range start: ", uidRange)
|
|
|
|
} else if subIndex == len(uidRange)-1 {
|
|
|
|
return nil, E.New("missing range end: ", uidRange)
|
|
|
|
}
|
|
|
|
var start, end uint64
|
|
|
|
var err error
|
|
|
|
start, err = strconv.ParseUint(uidRange[:subIndex], 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse range start")
|
|
|
|
}
|
|
|
|
end, err = strconv.ParseUint(uidRange[subIndex+1:], 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse range end")
|
|
|
|
}
|
|
|
|
uidRanges = append(uidRanges, ranges.New(uint32(start), uint32(end)))
|
|
|
|
}
|
|
|
|
return uidRanges, nil
|
|
|
|
}
|
|
|
|
|
2022-07-09 11:18:37 +00:00
|
|
|
func (t *Tun) Type() string {
|
|
|
|
return C.TypeTun
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tun) Tag() string {
|
|
|
|
return t.tag
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tun) Start() error {
|
2022-10-25 04:55:00 +00:00
|
|
|
if C.IsAndroid && t.platformInterface == nil {
|
2022-08-15 03:40:49 +00:00
|
|
|
t.tunOptions.BuildAndroidRules(t.router.PackageManager(), t)
|
|
|
|
}
|
2022-10-25 04:55:00 +00:00
|
|
|
var (
|
|
|
|
tunInterface tun.Tun
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
if t.platformInterface != nil {
|
2023-04-17 11:05:02 +00:00
|
|
|
tunInterface, err = t.platformInterface.OpenTun(&t.tunOptions, t.platformOptions)
|
2022-10-25 04:55:00 +00:00
|
|
|
} else {
|
2023-02-26 11:16:28 +00:00
|
|
|
tunInterface, err = tun.New(t.tunOptions)
|
2022-10-25 04:55:00 +00:00
|
|
|
}
|
2022-07-09 11:18:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return E.Cause(err, "configure tun interface")
|
|
|
|
}
|
2022-10-25 04:55:00 +00:00
|
|
|
t.tunIf = tunInterface
|
2022-09-06 11:30:12 +00:00
|
|
|
t.tunStack, err = tun.NewStack(t.stack, tun.StackOptions{
|
|
|
|
Context: t.ctx,
|
2022-10-25 04:55:00 +00:00
|
|
|
Tun: tunInterface,
|
2022-09-06 11:30:12 +00:00
|
|
|
MTU: t.tunOptions.MTU,
|
|
|
|
Name: t.tunOptions.Name,
|
|
|
|
Inet4Address: t.tunOptions.Inet4Address,
|
|
|
|
Inet6Address: t.tunOptions.Inet6Address,
|
|
|
|
EndpointIndependentNat: t.endpointIndependentNat,
|
|
|
|
UDPTimeout: t.udpTimeout,
|
|
|
|
Handler: t,
|
2022-09-07 14:54:04 +00:00
|
|
|
Logger: t.logger,
|
2023-03-15 13:50:18 +00:00
|
|
|
UnderPlatform: t.platformInterface != nil,
|
2022-09-06 11:30:12 +00:00
|
|
|
})
|
2022-08-07 09:21:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
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-08-14 16:25:49 +00:00
|
|
|
t.logger.Info("started at ", t.tunOptions.Name)
|
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.Source = upstreamMetadata.Source
|
|
|
|
metadata.Destination = upstreamMetadata.Destination
|
2022-10-07 12:30:27 +00:00
|
|
|
metadata.InboundOptions = t.inboundOptions
|
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)
|
|
|
|
}
|
2022-09-16 07:32:50 +00:00
|
|
|
return nil
|
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)
|
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.Source = upstreamMetadata.Source
|
|
|
|
metadata.Destination = upstreamMetadata.Destination
|
2022-10-07 12:30:27 +00:00
|
|
|
metadata.InboundOptions = t.inboundOptions
|
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)
|
|
|
|
}
|
2022-09-16 07:32:50 +00:00
|
|
|
return nil
|
2022-07-09 11:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tun) NewError(ctx context.Context, err error) {
|
|
|
|
NewError(t.logger, ctx, err)
|
|
|
|
}
|