| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- //go:build (linux || windows || darwin) && !no_gvisor
- package inbound
- import (
- "context"
- "net"
- "net/netip"
- "strconv"
- "strings"
- "time"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/common/canceler"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing-box/option"
- "github.com/sagernet/sing-dns"
- "github.com/sagernet/sing-tun"
- "github.com/sagernet/sing/common"
- 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
- tunIf tun.Tun
- tunStack *tun.GVisorTun
- }
- func NewTun(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.TunInboundOptions) (*Tun, error) {
- 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())
- }
- 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,
- }, nil
- }
- func (t *Tun) Type() string {
- return C.TypeTun
- }
- func (t *Tun) Tag() string {
- return t.tag
- }
- func (t *Tun) Start() error {
- tunIf, err := tun.Open(t.tunName, t.inet4Address, t.inet6Address, t.tunMTU, t.autoRoute)
- if err != nil {
- return E.Cause(err, "configure tun interface")
- }
- t.tunIf = tunIf
- t.tunStack = tun.NewGVisor(t.ctx, tunIf, t.tunMTU, t.endpointIndependentNat, t.udpTimeout, t)
- err = t.tunStack.Start()
- if err != nil {
- return err
- }
- t.logger.Info("started at ", t.tunName)
- return nil
- }
- func (t *Tun) Close() error {
- return common.Close(
- t.tunStack,
- t.tunIf,
- )
- }
- func (t *Tun) NewConnection(ctx context.Context, conn net.Conn, upstreamMetadata M.Metadata) error {
- ctx = log.ContextWithNewID(ctx)
- var metadata adapter.InboundContext
- metadata.Inbound = t.tag
- metadata.InboundType = C.TypeTun
- metadata.Network = N.NetworkTCP
- metadata.Source = upstreamMetadata.Source
- metadata.Destination = upstreamMetadata.Destination
- metadata.SniffEnabled = t.inboundOptions.SniffEnabled
- metadata.SniffOverrideDestination = t.inboundOptions.SniffOverrideDestination
- metadata.DomainStrategy = dns.DomainStrategy(t.inboundOptions.DomainStrategy)
- t.logger.InfoContext(ctx, "inbound connection from ", metadata.Source)
- t.logger.InfoContext(ctx, "inbound connection to ", metadata.Destination)
- err := t.router.RouteConnection(ctx, conn, metadata)
- if err != nil {
- t.NewError(ctx, err)
- }
- return err
- }
- func (t *Tun) NewPacketConnection(ctx context.Context, conn N.PacketConn, upstreamMetadata M.Metadata) error {
- ctx = log.ContextWithNewID(ctx)
- if tun.NeedTimeoutFromContext(ctx) {
- ctx, conn = canceler.NewPacketConn(ctx, conn, time.Duration(t.udpTimeout)*time.Second)
- }
- var metadata adapter.InboundContext
- metadata.Inbound = t.tag
- metadata.InboundType = C.TypeTun
- metadata.Network = N.NetworkUDP
- metadata.Source = upstreamMetadata.Source
- metadata.Destination = upstreamMetadata.Destination
- metadata.SniffEnabled = t.inboundOptions.SniffEnabled
- metadata.SniffOverrideDestination = t.inboundOptions.SniffOverrideDestination
- metadata.DomainStrategy = dns.DomainStrategy(t.inboundOptions.DomainStrategy)
- t.logger.InfoContext(ctx, "inbound packet connection from ", metadata.Source)
- t.logger.InfoContext(ctx, "inbound packet connection to ", metadata.Destination)
- err := t.router.RoutePacketConnection(ctx, conn, metadata)
- if err != nil {
- t.NewError(ctx, err)
- }
- return err
- }
- func (t *Tun) NewError(ctx context.Context, err error) {
- NewError(t.logger, ctx, err)
- }
- func mkInterfaceName() (tunName string) {
- if C.IsDarwin {
- tunName = "utun"
- } else {
- 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
- }
|