2022-06-30 13:27:56 +00:00
|
|
|
package route
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-07-02 14:55:10 +00:00
|
|
|
"io"
|
2022-06-30 13:27:56 +00:00
|
|
|
"net"
|
2022-07-02 14:55:10 +00:00
|
|
|
"net/http"
|
2022-07-07 13:47:21 +00:00
|
|
|
"net/netip"
|
2022-07-09 01:26:50 +00:00
|
|
|
"net/url"
|
2022-07-02 14:55:10 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2022-07-10 01:15:01 +00:00
|
|
|
"reflect"
|
2022-07-07 13:47:21 +00:00
|
|
|
"strings"
|
2022-07-02 14:55:10 +00:00
|
|
|
"time"
|
2022-06-30 13:27:56 +00:00
|
|
|
|
2022-07-06 07:01:09 +00:00
|
|
|
"github.com/sagernet/sing-box/adapter"
|
2022-07-07 13:47:21 +00:00
|
|
|
"github.com/sagernet/sing-box/common/dialer"
|
2022-07-06 07:01:09 +00:00
|
|
|
"github.com/sagernet/sing-box/common/geoip"
|
|
|
|
"github.com/sagernet/sing-box/common/geosite"
|
2022-07-10 00:18:52 +00:00
|
|
|
"github.com/sagernet/sing-box/common/iffmonitor"
|
2022-07-06 07:01:09 +00:00
|
|
|
"github.com/sagernet/sing-box/common/sniff"
|
|
|
|
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"
|
2022-07-08 15:03:57 +00:00
|
|
|
"github.com/sagernet/sing/common"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
|
|
"github.com/sagernet/sing/common/bufio"
|
|
|
|
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"
|
|
|
|
"github.com/sagernet/sing/common/rw"
|
2022-07-07 13:47:21 +00:00
|
|
|
|
|
|
|
"golang.org/x/net/dns/dnsmessage"
|
2022-06-30 13:27:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ adapter.Router = (*Router)(nil)
|
|
|
|
|
|
|
|
type Router struct {
|
2022-07-07 13:47:21 +00:00
|
|
|
ctx context.Context
|
|
|
|
logger log.Logger
|
|
|
|
dnsLogger log.Logger
|
2022-07-03 15:23:18 +00:00
|
|
|
|
|
|
|
outboundByTag map[string]adapter.Outbound
|
|
|
|
rules []adapter.Rule
|
|
|
|
|
|
|
|
defaultDetour string
|
|
|
|
defaultOutboundForConnection adapter.Outbound
|
|
|
|
defaultOutboundForPacketConnection adapter.Outbound
|
2022-07-02 06:07:50 +00:00
|
|
|
|
2022-07-05 05:23:47 +00:00
|
|
|
needGeoIPDatabase bool
|
2022-07-05 01:05:35 +00:00
|
|
|
needGeositeDatabase bool
|
2022-07-05 05:23:47 +00:00
|
|
|
geoIPOptions option.GeoIPOptions
|
2022-07-05 01:05:35 +00:00
|
|
|
geositeOptions option.GeositeOptions
|
2022-07-05 05:23:47 +00:00
|
|
|
geoIPReader *geoip.Reader
|
2022-07-05 01:05:35 +00:00
|
|
|
geositeReader *geosite.Reader
|
2022-07-08 03:00:46 +00:00
|
|
|
geositeCache map[string]adapter.Rule
|
2022-07-07 13:47:21 +00:00
|
|
|
|
2022-07-11 10:44:59 +00:00
|
|
|
dnsClient *dns.Client
|
|
|
|
defaultDomainStrategy dns.DomainStrategy
|
2022-07-07 15:36:32 +00:00
|
|
|
dnsRules []adapter.Rule
|
2022-07-11 10:44:59 +00:00
|
|
|
defaultTransport dns.Transport
|
|
|
|
transports []dns.Transport
|
|
|
|
transportMap map[string]dns.Transport
|
2022-07-10 00:18:52 +00:00
|
|
|
|
|
|
|
autoDetectInterface bool
|
|
|
|
interfaceMonitor iffmonitor.InterfaceMonitor
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-07 13:47:21 +00:00
|
|
|
func NewRouter(ctx context.Context, logger log.Logger, options option.RouteOptions, dnsOptions option.DNSOptions) (*Router, error) {
|
2022-07-02 14:55:10 +00:00
|
|
|
router := &Router{
|
2022-07-07 13:47:21 +00:00
|
|
|
ctx: ctx,
|
|
|
|
logger: logger.WithPrefix("router: "),
|
|
|
|
dnsLogger: logger.WithPrefix("dns: "),
|
|
|
|
outboundByTag: make(map[string]adapter.Outbound),
|
|
|
|
rules: make([]adapter.Rule, 0, len(options.Rules)),
|
2022-07-07 15:36:32 +00:00
|
|
|
dnsRules: make([]adapter.Rule, 0, len(dnsOptions.Rules)),
|
2022-07-07 13:47:21 +00:00
|
|
|
needGeoIPDatabase: hasGeoRule(options.Rules, isGeoIPRule) || hasGeoDNSRule(dnsOptions.Rules, isGeoIPDNSRule),
|
|
|
|
needGeositeDatabase: hasGeoRule(options.Rules, isGeositeRule) || hasGeoDNSRule(dnsOptions.Rules, isGeositeDNSRule),
|
|
|
|
geoIPOptions: common.PtrValueOrDefault(options.GeoIP),
|
2022-07-07 15:36:32 +00:00
|
|
|
geositeOptions: common.PtrValueOrDefault(options.Geosite),
|
2022-07-08 03:00:46 +00:00
|
|
|
geositeCache: make(map[string]adapter.Rule),
|
2022-07-07 13:47:21 +00:00
|
|
|
defaultDetour: options.Final,
|
2022-07-11 10:44:59 +00:00
|
|
|
dnsClient: dns.NewClient(dns.DomainStrategy(dnsOptions.DNSClientOptions.Strategy), dnsOptions.DNSClientOptions.DisableCache, dnsOptions.DNSClientOptions.DisableExpire),
|
|
|
|
defaultDomainStrategy: dns.DomainStrategy(dnsOptions.Strategy),
|
2022-07-10 00:18:52 +00:00
|
|
|
autoDetectInterface: options.AutoDetectInterface,
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
for i, ruleOptions := range options.Rules {
|
2022-07-07 13:47:21 +00:00
|
|
|
routeRule, err := NewRule(router, logger, ruleOptions)
|
2022-07-02 14:55:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse rule[", i, "]")
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
2022-07-07 13:47:21 +00:00
|
|
|
router.rules = append(router.rules, routeRule)
|
|
|
|
}
|
|
|
|
for i, dnsRuleOptions := range dnsOptions.Rules {
|
|
|
|
dnsRule, err := NewDNSRule(router, logger, dnsRuleOptions)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse dns rule[", i, "]")
|
|
|
|
}
|
2022-07-07 15:36:32 +00:00
|
|
|
router.dnsRules = append(router.dnsRules, dnsRule)
|
2022-07-07 13:47:21 +00:00
|
|
|
}
|
2022-07-11 10:44:59 +00:00
|
|
|
transports := make([]dns.Transport, len(dnsOptions.Servers))
|
|
|
|
dummyTransportMap := make(map[string]dns.Transport)
|
|
|
|
transportMap := make(map[string]dns.Transport)
|
2022-07-07 13:47:21 +00:00
|
|
|
transportTags := make([]string, len(dnsOptions.Servers))
|
|
|
|
transportTagMap := make(map[string]bool)
|
|
|
|
for i, server := range dnsOptions.Servers {
|
|
|
|
var tag string
|
|
|
|
if server.Tag != "" {
|
|
|
|
tag = server.Tag
|
|
|
|
} else {
|
|
|
|
tag = F.ToString(i)
|
|
|
|
}
|
|
|
|
transportTags[i] = tag
|
|
|
|
transportTagMap[tag] = true
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
lastLen := len(dummyTransportMap)
|
|
|
|
for i, server := range dnsOptions.Servers {
|
|
|
|
tag := transportTags[i]
|
|
|
|
if _, exists := dummyTransportMap[tag]; exists {
|
|
|
|
continue
|
|
|
|
}
|
2022-07-09 01:26:50 +00:00
|
|
|
var detour N.Dialer
|
|
|
|
if server.Detour == "" {
|
|
|
|
detour = dialer.NewRouter(router)
|
|
|
|
} else {
|
|
|
|
detour = dialer.NewDetour(router, server.Detour)
|
|
|
|
}
|
2022-07-10 01:15:01 +00:00
|
|
|
if server.Address != "local" {
|
|
|
|
serverURL, err := url.Parse(server.Address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2022-07-07 13:47:21 +00:00
|
|
|
}
|
2022-07-10 01:15:01 +00:00
|
|
|
serverAddress := serverURL.Hostname()
|
|
|
|
if serverAddress == "" {
|
|
|
|
serverAddress = server.Address
|
|
|
|
}
|
|
|
|
_, notIpAddress := netip.ParseAddr(serverAddress)
|
|
|
|
if server.AddressResolver != "" {
|
|
|
|
if !transportTagMap[server.AddressResolver] {
|
|
|
|
return nil, E.New("parse dns server[", tag, "]: address resolver not found: ", server.AddressResolver)
|
|
|
|
}
|
|
|
|
if upstream, exists := dummyTransportMap[server.AddressResolver]; exists {
|
2022-07-11 10:44:59 +00:00
|
|
|
detour = dns.NewDialerWrapper(detour, router.dnsClient, upstream, dns.DomainStrategy(server.AddressStrategy), time.Duration(server.AddressFallbackDelay))
|
2022-07-10 01:15:01 +00:00
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else if notIpAddress != nil {
|
|
|
|
return nil, E.New("parse dns server[", tag, "]: missing address_resolver")
|
2022-07-07 13:47:21 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-11 10:44:59 +00:00
|
|
|
transport, err := dns.NewTransport(ctx, detour, server.Address)
|
2022-07-07 13:47:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse dns server[", tag, "]")
|
|
|
|
}
|
|
|
|
transports[i] = transport
|
|
|
|
dummyTransportMap[tag] = transport
|
|
|
|
if server.Tag != "" {
|
|
|
|
transportMap[server.Tag] = transport
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(transports) == len(dummyTransportMap) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if lastLen != len(dummyTransportMap) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
unresolvedTags := common.MapIndexed(common.FilterIndexed(dnsOptions.Servers, func(index int, server option.DNSServerOptions) bool {
|
|
|
|
_, exists := dummyTransportMap[transportTags[index]]
|
|
|
|
return !exists
|
|
|
|
}), func(index int, server option.DNSServerOptions) string {
|
|
|
|
return transportTags[index]
|
|
|
|
})
|
|
|
|
return nil, E.New("found circular reference in dns servers: ", strings.Join(unresolvedTags, " "))
|
|
|
|
}
|
2022-07-11 10:44:59 +00:00
|
|
|
var defaultTransport dns.Transport
|
2022-07-07 13:47:21 +00:00
|
|
|
if options.Final != "" {
|
|
|
|
defaultTransport = dummyTransportMap[options.Final]
|
|
|
|
if defaultTransport == nil {
|
|
|
|
return nil, E.New("default dns server not found: ", options.Final)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if defaultTransport == nil {
|
|
|
|
if len(transports) == 0 {
|
|
|
|
transports = append(transports, dns.NewLocalTransport())
|
|
|
|
}
|
|
|
|
defaultTransport = transports[0]
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
2022-07-07 13:47:21 +00:00
|
|
|
router.defaultTransport = defaultTransport
|
|
|
|
router.transports = transports
|
|
|
|
router.transportMap = transportMap
|
2022-07-10 00:18:52 +00:00
|
|
|
|
|
|
|
if options.AutoDetectInterface {
|
|
|
|
monitor, err := iffmonitor.New(router.logger)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "create default interface monitor")
|
|
|
|
}
|
|
|
|
router.interfaceMonitor = monitor
|
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
return router, nil
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-03 15:23:18 +00:00
|
|
|
func (r *Router) Initialize(outbounds []adapter.Outbound, defaultOutbound func() adapter.Outbound) error {
|
2022-07-02 06:07:50 +00:00
|
|
|
outboundByTag := make(map[string]adapter.Outbound)
|
2022-07-03 15:23:18 +00:00
|
|
|
for _, detour := range outbounds {
|
|
|
|
outboundByTag[detour.Tag()] = detour
|
|
|
|
}
|
|
|
|
var defaultOutboundForConnection adapter.Outbound
|
|
|
|
var defaultOutboundForPacketConnection adapter.Outbound
|
|
|
|
if r.defaultDetour != "" {
|
|
|
|
detour, loaded := outboundByTag[r.defaultDetour]
|
|
|
|
if !loaded {
|
|
|
|
return E.New("default detour not found: ", r.defaultDetour)
|
|
|
|
}
|
|
|
|
if common.Contains(detour.Network(), C.NetworkTCP) {
|
|
|
|
defaultOutboundForConnection = detour
|
|
|
|
}
|
|
|
|
if common.Contains(detour.Network(), C.NetworkUDP) {
|
|
|
|
defaultOutboundForPacketConnection = detour
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var index, packetIndex int
|
|
|
|
if defaultOutboundForConnection == nil {
|
|
|
|
for i, detour := range outbounds {
|
|
|
|
if common.Contains(detour.Network(), C.NetworkTCP) {
|
|
|
|
index = i
|
|
|
|
defaultOutboundForConnection = detour
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if defaultOutboundForPacketConnection == nil {
|
|
|
|
for i, detour := range outbounds {
|
|
|
|
if common.Contains(detour.Network(), C.NetworkUDP) {
|
|
|
|
packetIndex = i
|
|
|
|
defaultOutboundForPacketConnection = detour
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
2022-07-03 15:23:18 +00:00
|
|
|
if defaultOutboundForConnection == nil || defaultOutboundForPacketConnection == nil {
|
|
|
|
detour := defaultOutbound()
|
|
|
|
if defaultOutboundForConnection == nil {
|
|
|
|
defaultOutboundForConnection = detour
|
|
|
|
}
|
|
|
|
if defaultOutboundForPacketConnection == nil {
|
|
|
|
defaultOutboundForPacketConnection = detour
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if defaultOutboundForConnection != defaultOutboundForPacketConnection {
|
|
|
|
var description string
|
|
|
|
if defaultOutboundForConnection.Tag() != "" {
|
|
|
|
description = defaultOutboundForConnection.Tag()
|
|
|
|
} else {
|
|
|
|
description = F.ToString(index)
|
|
|
|
}
|
|
|
|
var packetDescription string
|
|
|
|
if defaultOutboundForPacketConnection.Tag() != "" {
|
|
|
|
packetDescription = defaultOutboundForPacketConnection.Tag()
|
|
|
|
} else {
|
|
|
|
packetDescription = F.ToString(packetIndex)
|
|
|
|
}
|
|
|
|
r.logger.Info("using ", defaultOutboundForConnection.Type(), "[", description, "] as default outbound for connection")
|
|
|
|
r.logger.Info("using ", defaultOutboundForPacketConnection.Type(), "[", packetDescription, "] as default outbound for packet connection")
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
2022-07-03 15:23:18 +00:00
|
|
|
r.defaultOutboundForConnection = defaultOutboundForConnection
|
|
|
|
r.defaultOutboundForPacketConnection = defaultOutboundForPacketConnection
|
2022-07-02 06:07:50 +00:00
|
|
|
r.outboundByTag = outboundByTag
|
2022-07-07 13:47:21 +00:00
|
|
|
for i, rule := range r.rules {
|
|
|
|
if _, loaded := outboundByTag[rule.Outbound()]; !loaded {
|
|
|
|
return E.New("outbound not found for rule[", i, "]: ", rule.Outbound())
|
|
|
|
}
|
|
|
|
}
|
2022-07-03 15:23:18 +00:00
|
|
|
return nil
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 14:55:10 +00:00
|
|
|
func (r *Router) Start() error {
|
2022-07-05 01:05:35 +00:00
|
|
|
if r.needGeoIPDatabase {
|
2022-07-04 11:34:45 +00:00
|
|
|
err := r.prepareGeoIPDatabase()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
2022-07-05 01:05:35 +00:00
|
|
|
if r.needGeositeDatabase {
|
|
|
|
err := r.prepareGeositeDatabase()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, rule := range r.rules {
|
|
|
|
err := rule.Start()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-07-07 15:36:32 +00:00
|
|
|
for _, rule := range r.dnsRules {
|
|
|
|
err := rule.Start()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-07-05 05:23:47 +00:00
|
|
|
if r.needGeositeDatabase {
|
|
|
|
for _, rule := range r.rules {
|
|
|
|
err := rule.UpdateGeosite()
|
|
|
|
if err != nil {
|
|
|
|
r.logger.Error("failed to initialize geosite: ", err)
|
|
|
|
}
|
|
|
|
}
|
2022-07-07 15:36:32 +00:00
|
|
|
for _, rule := range r.dnsRules {
|
|
|
|
err := rule.UpdateGeosite()
|
|
|
|
if err != nil {
|
|
|
|
r.logger.Error("failed to initialize geosite: ", err)
|
|
|
|
}
|
|
|
|
}
|
2022-07-05 05:23:47 +00:00
|
|
|
err := common.Close(r.geositeReader)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-07-08 03:00:46 +00:00
|
|
|
r.geositeCache = nil
|
|
|
|
r.geositeReader = nil
|
2022-07-05 05:23:47 +00:00
|
|
|
}
|
2022-07-10 00:18:52 +00:00
|
|
|
if r.interfaceMonitor != nil {
|
|
|
|
err := r.interfaceMonitor.Start()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-07-02 06:07:50 +00:00
|
|
|
return nil
|
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
|
|
|
|
func (r *Router) Close() error {
|
2022-07-07 15:36:32 +00:00
|
|
|
for _, rule := range r.rules {
|
|
|
|
err := rule.Close()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, rule := range r.dnsRules {
|
|
|
|
err := rule.Close()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
return common.Close(
|
2022-07-05 01:05:35 +00:00
|
|
|
common.PtrOrNil(r.geoIPReader),
|
2022-07-10 00:18:52 +00:00
|
|
|
r.interfaceMonitor,
|
2022-07-02 14:55:10 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-07-05 05:23:47 +00:00
|
|
|
func (r *Router) GeoIPReader() *geoip.Reader {
|
2022-07-05 01:05:35 +00:00
|
|
|
return r.geoIPReader
|
|
|
|
}
|
|
|
|
|
2022-07-08 03:00:46 +00:00
|
|
|
func (r *Router) LoadGeosite(code string) (adapter.Rule, error) {
|
|
|
|
rule, cached := r.geositeCache[code]
|
|
|
|
if cached {
|
|
|
|
return rule, nil
|
|
|
|
}
|
|
|
|
items, err := r.geositeReader.Read(code)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rule, err = NewDefaultRule(r, nil, geosite.Compile(items))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r.geositeCache[code] = rule
|
|
|
|
return rule, nil
|
2022-07-05 01:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) Outbound(tag string) (adapter.Outbound, bool) {
|
|
|
|
outbound, loaded := r.outboundByTag[tag]
|
|
|
|
return outbound, loaded
|
|
|
|
}
|
|
|
|
|
2022-07-06 15:11:48 +00:00
|
|
|
func (r *Router) DefaultOutbound(network string) adapter.Outbound {
|
|
|
|
if network == C.NetworkTCP {
|
|
|
|
return r.defaultOutboundForConnection
|
|
|
|
} else {
|
|
|
|
return r.defaultOutboundForPacketConnection
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func (r *Router) RouteConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
|
2022-07-06 04:39:44 +00:00
|
|
|
if metadata.SniffEnabled {
|
|
|
|
_buffer := buf.StackNew()
|
|
|
|
defer common.KeepAlive(_buffer)
|
|
|
|
buffer := common.Dup(_buffer)
|
|
|
|
defer buffer.Release()
|
2022-07-11 12:37:57 +00:00
|
|
|
sniffMetadata, err := sniff.PeekStream(ctx, conn, buffer, sniff.TLSClientHello, sniff.HTTPHost)
|
2022-07-06 04:39:44 +00:00
|
|
|
if err == nil {
|
|
|
|
metadata.Protocol = sniffMetadata.Protocol
|
|
|
|
metadata.Domain = sniffMetadata.Domain
|
|
|
|
if metadata.SniffOverrideDestination && sniff.IsDomainName(metadata.Domain) {
|
|
|
|
metadata.Destination.Fqdn = metadata.Domain
|
|
|
|
}
|
|
|
|
if metadata.Domain != "" {
|
2022-07-11 12:37:57 +00:00
|
|
|
r.logger.WithContext(ctx).Debug("sniffed protocol: ", metadata.Protocol, ", domain: ", metadata.Domain)
|
2022-07-06 04:39:44 +00:00
|
|
|
} else {
|
2022-07-11 12:37:57 +00:00
|
|
|
r.logger.WithContext(ctx).Debug("sniffed protocol: ", metadata.Protocol)
|
2022-07-06 04:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if !buffer.IsEmpty() {
|
|
|
|
conn = bufio.NewCachedConn(conn, buffer)
|
|
|
|
}
|
|
|
|
}
|
2022-07-11 10:44:59 +00:00
|
|
|
if metadata.Destination.IsFqdn() && metadata.DomainStrategy != dns.DomainStrategyAsIS {
|
2022-07-07 15:36:32 +00:00
|
|
|
addresses, err := r.Lookup(adapter.WithContext(ctx, &metadata), metadata.Destination.Fqdn, metadata.DomainStrategy)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
metadata.DestinationAddresses = addresses
|
2022-07-11 12:37:57 +00:00
|
|
|
r.dnsLogger.WithContext(ctx).Debug("resolved [", strings.Join(F.MapToString(metadata.DestinationAddresses), " "), "]")
|
2022-07-07 15:36:32 +00:00
|
|
|
}
|
2022-07-05 01:05:35 +00:00
|
|
|
detour := r.match(ctx, metadata, r.defaultOutboundForConnection)
|
|
|
|
if !common.Contains(detour.Network(), C.NetworkTCP) {
|
|
|
|
conn.Close()
|
|
|
|
return E.New("missing supported outbound, closing connection")
|
|
|
|
}
|
2022-07-07 15:36:32 +00:00
|
|
|
return detour.NewConnection(ctx, conn, metadata)
|
2022-07-05 01:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
|
2022-07-10 01:15:01 +00:00
|
|
|
if metadata.SniffEnabled {
|
2022-07-06 04:39:44 +00:00
|
|
|
_buffer := buf.StackNewPacket()
|
|
|
|
defer common.KeepAlive(_buffer)
|
|
|
|
buffer := common.Dup(_buffer)
|
|
|
|
defer buffer.Release()
|
|
|
|
_, err := conn.ReadPacket(buffer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
sniffMetadata, err := sniff.PeekPacket(ctx, buffer.Bytes(), sniff.QUICClientHello)
|
|
|
|
originDestination := metadata.Destination
|
|
|
|
if err == nil {
|
|
|
|
metadata.Protocol = sniffMetadata.Protocol
|
|
|
|
metadata.Domain = sniffMetadata.Domain
|
|
|
|
if metadata.SniffOverrideDestination && sniff.IsDomainName(metadata.Domain) {
|
|
|
|
metadata.Destination.Fqdn = metadata.Domain
|
|
|
|
}
|
|
|
|
if metadata.Domain != "" {
|
2022-07-11 12:37:57 +00:00
|
|
|
r.logger.WithContext(ctx).Debug("sniffed packet protocol: ", metadata.Protocol, ", domain: ", metadata.Domain)
|
2022-07-06 04:39:44 +00:00
|
|
|
} else {
|
2022-07-11 12:37:57 +00:00
|
|
|
r.logger.WithContext(ctx).Debug("sniffed packet protocol: ", metadata.Protocol)
|
2022-07-06 04:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
conn = bufio.NewCachedPacketConn(conn, buffer, originDestination)
|
|
|
|
}
|
2022-07-11 10:44:59 +00:00
|
|
|
if metadata.Destination.IsFqdn() && metadata.DomainStrategy != dns.DomainStrategyAsIS {
|
2022-07-07 15:36:32 +00:00
|
|
|
addresses, err := r.Lookup(adapter.WithContext(ctx, &metadata), metadata.Destination.Fqdn, metadata.DomainStrategy)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
metadata.DestinationAddresses = addresses
|
2022-07-11 12:37:57 +00:00
|
|
|
r.dnsLogger.WithContext(ctx).Debug("resolved [", strings.Join(F.MapToString(metadata.DestinationAddresses), " "), "]")
|
2022-07-07 15:36:32 +00:00
|
|
|
}
|
2022-07-05 01:05:35 +00:00
|
|
|
detour := r.match(ctx, metadata, r.defaultOutboundForPacketConnection)
|
|
|
|
if !common.Contains(detour.Network(), C.NetworkUDP) {
|
|
|
|
conn.Close()
|
|
|
|
return E.New("missing supported outbound, closing packet connection")
|
|
|
|
}
|
2022-07-07 15:36:32 +00:00
|
|
|
return detour.NewPacketConnection(ctx, conn, metadata)
|
2022-07-07 13:47:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) Exchange(ctx context.Context, message *dnsmessage.Message) (*dnsmessage.Message, error) {
|
|
|
|
return r.dnsClient.Exchange(ctx, r.matchDNS(ctx), message)
|
|
|
|
}
|
|
|
|
|
2022-07-11 10:44:59 +00:00
|
|
|
func (r *Router) Lookup(ctx context.Context, domain string, strategy dns.DomainStrategy) ([]netip.Addr, error) {
|
2022-07-07 13:47:21 +00:00
|
|
|
return r.dnsClient.Lookup(ctx, r.matchDNS(ctx), domain, strategy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) LookupDefault(ctx context.Context, domain string) ([]netip.Addr, error) {
|
|
|
|
return r.dnsClient.Lookup(ctx, r.matchDNS(ctx), domain, r.defaultDomainStrategy)
|
2022-07-05 01:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) match(ctx context.Context, metadata adapter.InboundContext, defaultOutbound adapter.Outbound) adapter.Outbound {
|
|
|
|
for i, rule := range r.rules {
|
|
|
|
if rule.Match(&metadata) {
|
|
|
|
detour := rule.Outbound()
|
2022-07-10 06:22:28 +00:00
|
|
|
r.logger.WithContext(ctx).Debug("match[", i, "] ", rule.String(), " => ", detour)
|
2022-07-05 01:05:35 +00:00
|
|
|
if outbound, loaded := r.Outbound(detour); loaded {
|
|
|
|
return outbound
|
|
|
|
}
|
|
|
|
r.logger.WithContext(ctx).Error("outbound not found: ", detour)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultOutbound
|
|
|
|
}
|
|
|
|
|
2022-07-11 10:44:59 +00:00
|
|
|
func (r *Router) matchDNS(ctx context.Context) dns.Transport {
|
2022-07-07 13:47:21 +00:00
|
|
|
metadata := adapter.ContextFrom(ctx)
|
|
|
|
if metadata == nil {
|
2022-07-10 01:15:01 +00:00
|
|
|
r.dnsLogger.WithContext(ctx).Warn("no context: ", reflect.TypeOf(ctx))
|
2022-07-07 13:47:21 +00:00
|
|
|
return r.defaultTransport
|
|
|
|
}
|
2022-07-07 15:36:32 +00:00
|
|
|
for i, rule := range r.dnsRules {
|
2022-07-07 13:47:21 +00:00
|
|
|
if rule.Match(metadata) {
|
|
|
|
detour := rule.Outbound()
|
2022-07-10 06:22:28 +00:00
|
|
|
r.dnsLogger.WithContext(ctx).Debug("match[", i, "] ", rule.String(), " => ", detour)
|
2022-07-07 13:47:21 +00:00
|
|
|
if transport, loaded := r.transportMap[detour]; loaded {
|
|
|
|
return transport
|
|
|
|
}
|
|
|
|
r.dnsLogger.WithContext(ctx).Error("transport not found: ", detour)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r.defaultTransport
|
|
|
|
}
|
|
|
|
|
2022-07-10 00:18:52 +00:00
|
|
|
func (r *Router) AutoDetectInterface() bool {
|
|
|
|
return r.autoDetectInterface
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) DefaultInterfaceName() string {
|
|
|
|
if r.interfaceMonitor == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return r.interfaceMonitor.DefaultInterfaceName()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Router) DefaultInterfaceIndex() int {
|
|
|
|
if r.interfaceMonitor == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return r.interfaceMonitor.DefaultInterfaceIndex()
|
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func hasGeoRule(rules []option.Rule, cond func(rule option.DefaultRule) bool) bool {
|
|
|
|
for _, rule := range rules {
|
|
|
|
switch rule.Type {
|
|
|
|
case C.RuleTypeDefault:
|
|
|
|
if cond(rule.DefaultOptions) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
case C.RuleTypeLogical:
|
|
|
|
for _, subRule := range rule.LogicalOptions.Rules {
|
|
|
|
if cond(subRule) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-07-07 13:47:21 +00:00
|
|
|
func hasGeoDNSRule(rules []option.DNSRule, cond func(rule option.DefaultDNSRule) bool) bool {
|
|
|
|
for _, rule := range rules {
|
|
|
|
switch rule.Type {
|
|
|
|
case C.RuleTypeDefault:
|
|
|
|
if cond(rule.DefaultOptions) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
case C.RuleTypeLogical:
|
|
|
|
for _, subRule := range rule.LogicalOptions.Rules {
|
|
|
|
if cond(subRule) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func isGeoIPRule(rule option.DefaultRule) bool {
|
|
|
|
return len(rule.SourceGeoIP) > 0 && common.Any(rule.SourceGeoIP, notPrivateNode) || len(rule.GeoIP) > 0 && common.Any(rule.GeoIP, notPrivateNode)
|
|
|
|
}
|
|
|
|
|
2022-07-07 13:47:21 +00:00
|
|
|
func isGeoIPDNSRule(rule option.DefaultDNSRule) bool {
|
|
|
|
return len(rule.SourceGeoIP) > 0 && common.Any(rule.SourceGeoIP, notPrivateNode)
|
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func isGeositeRule(rule option.DefaultRule) bool {
|
|
|
|
return len(rule.Geosite) > 0
|
|
|
|
}
|
|
|
|
|
2022-07-07 13:47:21 +00:00
|
|
|
func isGeositeDNSRule(rule option.DefaultDNSRule) bool {
|
|
|
|
return len(rule.Geosite) > 0
|
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func notPrivateNode(code string) bool {
|
|
|
|
return code != "private"
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 11:34:45 +00:00
|
|
|
func (r *Router) prepareGeoIPDatabase() error {
|
2022-07-02 14:55:10 +00:00
|
|
|
var geoPath string
|
2022-07-05 01:05:35 +00:00
|
|
|
if r.geoIPOptions.Path != "" {
|
|
|
|
geoPath = r.geoIPOptions.Path
|
2022-07-02 14:55:10 +00:00
|
|
|
} else {
|
2022-07-05 05:23:47 +00:00
|
|
|
geoPath = "geoip.db"
|
2022-07-06 06:44:51 +00:00
|
|
|
if foundPath, loaded := C.FindPath(geoPath); loaded {
|
2022-07-04 11:34:45 +00:00
|
|
|
geoPath = foundPath
|
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
2022-07-04 11:34:45 +00:00
|
|
|
if !rw.FileExists(geoPath) {
|
2022-07-02 14:55:10 +00:00
|
|
|
r.logger.Warn("geoip database not exists: ", geoPath)
|
|
|
|
var err error
|
|
|
|
for attempts := 0; attempts < 3; attempts++ {
|
|
|
|
err = r.downloadGeoIPDatabase(geoPath)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
r.logger.Error("download geoip database: ", err)
|
|
|
|
os.Remove(geoPath)
|
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2022-07-04 11:34:45 +00:00
|
|
|
return err
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-05 05:23:47 +00:00
|
|
|
geoReader, codes, err := geoip.Open(geoPath)
|
|
|
|
if err != nil {
|
2022-07-04 11:34:45 +00:00
|
|
|
return E.Cause(err, "open geoip database")
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
2022-07-05 05:23:47 +00:00
|
|
|
r.logger.Info("loaded geoip database: ", len(codes), " codes")
|
|
|
|
r.geoIPReader = geoReader
|
2022-07-04 11:34:45 +00:00
|
|
|
return nil
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func (r *Router) prepareGeositeDatabase() error {
|
|
|
|
var geoPath string
|
|
|
|
if r.geositeOptions.Path != "" {
|
|
|
|
geoPath = r.geoIPOptions.Path
|
|
|
|
} else {
|
|
|
|
geoPath = "geosite.db"
|
2022-07-06 06:44:51 +00:00
|
|
|
if foundPath, loaded := C.FindPath(geoPath); loaded {
|
2022-07-05 01:05:35 +00:00
|
|
|
geoPath = foundPath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !rw.FileExists(geoPath) {
|
|
|
|
r.logger.Warn("geosite database not exists: ", geoPath)
|
|
|
|
var err error
|
|
|
|
for attempts := 0; attempts < 3; attempts++ {
|
|
|
|
err = r.downloadGeositeDatabase(geoPath)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
r.logger.Error("download geosite database: ", err)
|
|
|
|
os.Remove(geoPath)
|
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-07-05 05:23:47 +00:00
|
|
|
geoReader, codes, err := geosite.Open(geoPath)
|
2022-07-05 01:05:35 +00:00
|
|
|
if err == nil {
|
2022-07-05 05:23:47 +00:00
|
|
|
r.logger.Info("loaded geosite database: ", len(codes), " codes")
|
2022-07-05 01:05:35 +00:00
|
|
|
r.geositeReader = geoReader
|
|
|
|
} else {
|
|
|
|
return E.Cause(err, "open geosite database")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-07-02 14:55:10 +00:00
|
|
|
func (r *Router) downloadGeoIPDatabase(savePath string) error {
|
|
|
|
var downloadURL string
|
2022-07-05 01:05:35 +00:00
|
|
|
if r.geoIPOptions.DownloadURL != "" {
|
|
|
|
downloadURL = r.geoIPOptions.DownloadURL
|
2022-07-02 14:55:10 +00:00
|
|
|
} else {
|
2022-07-05 05:23:47 +00:00
|
|
|
downloadURL = "https://github.com/SagerNet/sing-geoip/releases/latest/download/geoip.db"
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
|
|
|
r.logger.Info("downloading geoip database")
|
|
|
|
var detour adapter.Outbound
|
2022-07-05 01:05:35 +00:00
|
|
|
if r.geoIPOptions.DownloadDetour != "" {
|
|
|
|
outbound, loaded := r.Outbound(r.geoIPOptions.DownloadDetour)
|
2022-07-02 14:55:10 +00:00
|
|
|
if !loaded {
|
2022-07-05 01:05:35 +00:00
|
|
|
return E.New("detour outbound not found: ", r.geoIPOptions.DownloadDetour)
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
|
|
|
detour = outbound
|
|
|
|
} else {
|
2022-07-03 15:23:18 +00:00
|
|
|
detour = r.defaultOutboundForConnection
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if parentDir := filepath.Dir(savePath); parentDir != "" {
|
|
|
|
os.MkdirAll(parentDir, 0o755)
|
|
|
|
}
|
|
|
|
|
|
|
|
saveFile, err := os.OpenFile(savePath, os.O_CREATE|os.O_WRONLY, 0o644)
|
|
|
|
if err != nil {
|
|
|
|
return E.Cause(err, "open output file: ", downloadURL)
|
|
|
|
}
|
|
|
|
defer saveFile.Close()
|
|
|
|
|
|
|
|
httpClient := &http.Client{
|
|
|
|
Transport: &http.Transport{
|
|
|
|
ForceAttemptHTTP2: true,
|
|
|
|
TLSHandshakeTimeout: 5 * time.Second,
|
|
|
|
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
|
|
return detour.DialContext(ctx, network, M.ParseSocksaddr(addr))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
response, err := httpClient.Get(downloadURL)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer response.Body.Close()
|
|
|
|
_, err = io.Copy(saveFile, response.Body)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
func (r *Router) downloadGeositeDatabase(savePath string) error {
|
|
|
|
var downloadURL string
|
|
|
|
if r.geositeOptions.DownloadURL != "" {
|
|
|
|
downloadURL = r.geositeOptions.DownloadURL
|
|
|
|
} else {
|
|
|
|
downloadURL = "https://github.com/SagerNet/sing-geosite/releases/latest/download/geosite.db"
|
|
|
|
}
|
|
|
|
r.logger.Info("downloading geoip database")
|
|
|
|
var detour adapter.Outbound
|
|
|
|
if r.geositeOptions.DownloadDetour != "" {
|
|
|
|
outbound, loaded := r.Outbound(r.geositeOptions.DownloadDetour)
|
|
|
|
if !loaded {
|
|
|
|
return E.New("detour outbound not found: ", r.geoIPOptions.DownloadDetour)
|
|
|
|
}
|
|
|
|
detour = outbound
|
|
|
|
} else {
|
|
|
|
detour = r.defaultOutboundForConnection
|
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
if parentDir := filepath.Dir(savePath); parentDir != "" {
|
|
|
|
os.MkdirAll(parentDir, 0o755)
|
2022-07-03 15:23:18 +00:00
|
|
|
}
|
2022-07-02 14:55:10 +00:00
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
saveFile, err := os.OpenFile(savePath, os.O_CREATE|os.O_WRONLY, 0o644)
|
|
|
|
if err != nil {
|
|
|
|
return E.Cause(err, "open output file: ", downloadURL)
|
2022-07-03 15:23:18 +00:00
|
|
|
}
|
2022-07-05 01:05:35 +00:00
|
|
|
defer saveFile.Close()
|
2022-07-02 14:55:10 +00:00
|
|
|
|
2022-07-05 01:05:35 +00:00
|
|
|
httpClient := &http.Client{
|
|
|
|
Transport: &http.Transport{
|
|
|
|
ForceAttemptHTTP2: true,
|
|
|
|
TLSHandshakeTimeout: 5 * time.Second,
|
|
|
|
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
|
|
return detour.DialContext(ctx, network, M.ParseSocksaddr(addr))
|
|
|
|
},
|
|
|
|
},
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|
2022-07-05 01:05:35 +00:00
|
|
|
response, err := httpClient.Get(downloadURL)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer response.Body.Close()
|
|
|
|
_, err = io.Copy(saveFile, response.Body)
|
|
|
|
return err
|
2022-07-02 14:55:10 +00:00
|
|
|
}
|