2022-06-30 13:27:56 +00:00
|
|
|
package adapter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-10-25 14:24:19 +00:00
|
|
|
"net"
|
2023-12-01 05:24:12 +00:00
|
|
|
"net/http"
|
2022-07-07 13:47:21 +00:00
|
|
|
"net/netip"
|
2024-10-25 14:24:19 +00:00
|
|
|
"sync"
|
2022-06-30 13:27:56 +00:00
|
|
|
|
2022-07-05 05:23:47 +00:00
|
|
|
"github.com/sagernet/sing-box/common/geoip"
|
2024-10-25 14:24:19 +00:00
|
|
|
C "github.com/sagernet/sing-box/constant"
|
2022-07-11 10:44:59 +00:00
|
|
|
"github.com/sagernet/sing-dns"
|
2022-08-04 14:01:20 +00:00
|
|
|
"github.com/sagernet/sing-tun"
|
2022-07-14 15:06:03 +00:00
|
|
|
"github.com/sagernet/sing/common/control"
|
2024-10-25 14:24:19 +00:00
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
2023-12-01 05:24:12 +00:00
|
|
|
N "github.com/sagernet/sing/common/network"
|
2024-06-07 07:55:21 +00:00
|
|
|
"github.com/sagernet/sing/common/x/list"
|
2023-08-29 05:43:42 +00:00
|
|
|
"github.com/sagernet/sing/service"
|
2022-07-07 13:47:21 +00:00
|
|
|
|
2022-09-13 08:18:39 +00:00
|
|
|
mdns "github.com/miekg/dns"
|
2024-06-07 07:55:21 +00:00
|
|
|
"go4.org/netipx"
|
2022-06-30 13:27:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Router interface {
|
2022-07-05 05:23:47 +00:00
|
|
|
Service
|
2023-12-20 12:00:00 +00:00
|
|
|
PreStarter
|
2023-12-02 09:47:57 +00:00
|
|
|
PostStarter
|
2024-06-07 07:55:21 +00:00
|
|
|
Cleanup() error
|
2022-07-14 15:06:03 +00:00
|
|
|
|
2022-07-21 13:03:41 +00:00
|
|
|
Outbounds() []Outbound
|
2022-06-30 13:27:56 +00:00
|
|
|
Outbound(tag string) (Outbound, bool)
|
2023-12-01 05:24:12 +00:00
|
|
|
DefaultOutbound(network string) (Outbound, error)
|
2022-07-14 15:06:03 +00:00
|
|
|
|
2023-03-25 04:03:23 +00:00
|
|
|
FakeIPStore() FakeIPStore
|
|
|
|
|
2023-11-08 04:09:22 +00:00
|
|
|
ConnectionRouter
|
2024-10-21 15:38:34 +00:00
|
|
|
ConnectionRouterEx
|
2022-07-14 15:06:03 +00:00
|
|
|
|
2022-07-05 05:23:47 +00:00
|
|
|
GeoIPReader() *geoip.Reader
|
2022-07-08 03:00:46 +00:00
|
|
|
LoadGeosite(code string) (Rule, error)
|
2022-07-14 15:06:03 +00:00
|
|
|
|
2023-12-01 05:24:12 +00:00
|
|
|
RuleSet(tag string) (RuleSet, bool)
|
|
|
|
|
2024-02-16 05:06:34 +00:00
|
|
|
NeedWIFIState() bool
|
|
|
|
|
2022-09-13 08:18:39 +00:00
|
|
|
Exchange(ctx context.Context, message *mdns.Msg) (*mdns.Msg, error)
|
2022-07-11 10:44:59 +00:00
|
|
|
Lookup(ctx context.Context, domain string, strategy dns.DomainStrategy) ([]netip.Addr, error)
|
2022-07-07 13:47:21 +00:00
|
|
|
LookupDefault(ctx context.Context, domain string) ([]netip.Addr, error)
|
2023-08-24 13:52:38 +00:00
|
|
|
ClearDNSCache()
|
2022-07-14 15:06:03 +00:00
|
|
|
|
2022-09-14 04:46:02 +00:00
|
|
|
InterfaceFinder() control.InterfaceFinder
|
2023-04-18 06:04:09 +00:00
|
|
|
UpdateInterfaces() error
|
2022-07-15 03:51:51 +00:00
|
|
|
DefaultInterface() string
|
2022-07-10 00:18:52 +00:00
|
|
|
AutoDetectInterface() bool
|
2022-10-25 04:55:00 +00:00
|
|
|
AutoDetectInterfaceFunc() control.Func
|
2024-06-24 01:49:15 +00:00
|
|
|
DefaultMark() uint32
|
2024-06-07 07:55:21 +00:00
|
|
|
RegisterAutoRedirectOutputMark(mark uint32) error
|
|
|
|
AutoRedirectOutputMark() uint32
|
2022-08-04 14:01:20 +00:00
|
|
|
NetworkMonitor() tun.NetworkUpdateMonitor
|
|
|
|
InterfaceMonitor() tun.DefaultInterfaceMonitor
|
2022-08-15 03:40:49 +00:00
|
|
|
PackageManager() tun.PackageManager
|
2023-11-24 12:58:07 +00:00
|
|
|
WIFIState() WIFIState
|
2022-07-19 14:16:49 +00:00
|
|
|
Rules() []Rule
|
2022-09-10 06:09:47 +00:00
|
|
|
|
|
|
|
ClashServer() ClashServer
|
2022-09-26 11:37:06 +00:00
|
|
|
SetClashServer(server ClashServer)
|
|
|
|
|
|
|
|
V2RayServer() V2RayServer
|
|
|
|
SetV2RayServer(server V2RayServer)
|
2023-04-24 02:05:13 +00:00
|
|
|
|
|
|
|
ResetNetwork() error
|
2022-07-02 06:07:50 +00:00
|
|
|
}
|
|
|
|
|
2024-10-21 15:38:34 +00:00
|
|
|
// Deprecated: Use ConnectionRouterEx instead.
|
|
|
|
type ConnectionRouter interface {
|
|
|
|
RouteConnection(ctx context.Context, conn net.Conn, metadata InboundContext) error
|
|
|
|
RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext) error
|
2023-02-08 08:28:52 +00:00
|
|
|
}
|
|
|
|
|
2024-10-21 15:38:34 +00:00
|
|
|
type ConnectionRouterEx interface {
|
|
|
|
ConnectionRouter
|
|
|
|
RouteConnectionEx(ctx context.Context, conn net.Conn, metadata InboundContext, onClose N.CloseHandlerFunc)
|
|
|
|
RoutePacketConnectionEx(ctx context.Context, conn N.PacketConn, metadata InboundContext, onClose N.CloseHandlerFunc)
|
2023-12-01 05:24:12 +00:00
|
|
|
}
|
|
|
|
|
2024-10-21 15:38:34 +00:00
|
|
|
func ContextWithRouter(ctx context.Context, router Router) context.Context {
|
|
|
|
return service.ContextWith(ctx, router)
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
2022-07-24 06:05:06 +00:00
|
|
|
|
2024-10-21 15:38:34 +00:00
|
|
|
func RouterFromContext(ctx context.Context) Router {
|
|
|
|
return service.FromContext[Router](ctx)
|
2022-07-24 06:05:06 +00:00
|
|
|
}
|
2022-11-06 02:36:19 +00:00
|
|
|
|
2023-12-01 05:24:12 +00:00
|
|
|
type RuleSet interface {
|
2024-06-07 07:55:21 +00:00
|
|
|
Name() string
|
2024-10-25 14:24:19 +00:00
|
|
|
StartContext(ctx context.Context, startContext *HTTPStartContext) error
|
2024-06-07 07:55:21 +00:00
|
|
|
PostStart() error
|
2023-12-01 05:24:12 +00:00
|
|
|
Metadata() RuleSetMetadata
|
2024-06-07 07:55:21 +00:00
|
|
|
ExtractIPSet() []*netipx.IPSet
|
|
|
|
IncRef()
|
|
|
|
DecRef()
|
|
|
|
Cleanup()
|
|
|
|
RegisterCallback(callback RuleSetUpdateCallback) *list.Element[RuleSetUpdateCallback]
|
|
|
|
UnregisterCallback(element *list.Element[RuleSetUpdateCallback])
|
2023-12-01 05:24:12 +00:00
|
|
|
Close() error
|
|
|
|
HeadlessRule
|
|
|
|
}
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
type RuleSetUpdateCallback func(it RuleSet)
|
|
|
|
|
2023-12-01 05:24:12 +00:00
|
|
|
type RuleSetMetadata struct {
|
|
|
|
ContainsProcessRule bool
|
|
|
|
ContainsWIFIRule bool
|
2024-02-03 09:45:27 +00:00
|
|
|
ContainsIPCIDRRule bool
|
2023-12-01 05:24:12 +00:00
|
|
|
}
|
2024-10-25 14:24:19 +00:00
|
|
|
type HTTPStartContext struct {
|
|
|
|
access sync.Mutex
|
|
|
|
httpClientCache map[string]*http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewHTTPStartContext() *HTTPStartContext {
|
|
|
|
return &HTTPStartContext{
|
|
|
|
httpClientCache: make(map[string]*http.Client),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HTTPStartContext) HTTPClient(detour string, dialer N.Dialer) *http.Client {
|
|
|
|
c.access.Lock()
|
|
|
|
defer c.access.Unlock()
|
|
|
|
if httpClient, loaded := c.httpClientCache[detour]; loaded {
|
|
|
|
return httpClient
|
|
|
|
}
|
|
|
|
httpClient := &http.Client{
|
|
|
|
Transport: &http.Transport{
|
|
|
|
ForceAttemptHTTP2: true,
|
|
|
|
TLSHandshakeTimeout: C.TCPTimeout,
|
|
|
|
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
|
|
return dialer.DialContext(ctx, network, M.ParseSocksaddr(addr))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
c.httpClientCache[detour] = httpClient
|
|
|
|
return httpClient
|
|
|
|
}
|
2023-12-01 05:24:12 +00:00
|
|
|
|
2024-10-25 14:24:19 +00:00
|
|
|
func (c *HTTPStartContext) Close() {
|
|
|
|
c.access.Lock()
|
|
|
|
defer c.access.Unlock()
|
|
|
|
for _, client := range c.httpClientCache {
|
|
|
|
client.CloseIdleConnections()
|
|
|
|
}
|
2023-12-01 05:24:12 +00:00
|
|
|
}
|
|
|
|
|
2022-11-06 02:36:19 +00:00
|
|
|
type InterfaceUpdateListener interface {
|
2023-07-23 06:42:19 +00:00
|
|
|
InterfaceUpdated()
|
2022-11-06 02:36:19 +00:00
|
|
|
}
|
2023-11-24 12:58:07 +00:00
|
|
|
|
|
|
|
type WIFIState struct {
|
|
|
|
SSID string
|
|
|
|
BSSID string
|
|
|
|
}
|