123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- package adapter
- import (
- "context"
- "net"
- "net/http"
- "net/netip"
- "sync"
- "github.com/sagernet/sing-box/common/geoip"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-dns"
- "github.com/sagernet/sing-tun"
- "github.com/sagernet/sing/common/control"
- M "github.com/sagernet/sing/common/metadata"
- N "github.com/sagernet/sing/common/network"
- "github.com/sagernet/sing/common/x/list"
- "github.com/sagernet/sing/service"
- mdns "github.com/miekg/dns"
- "go4.org/netipx"
- )
- type Router interface {
- Service
- PreStarter
- PostStarter
- Cleanup() error
- Outbounds() []Outbound
- Outbound(tag string) (Outbound, bool)
- DefaultOutbound(network string) (Outbound, error)
- FakeIPStore() FakeIPStore
- ConnectionRouter
- ConnectionRouterEx
- GeoIPReader() *geoip.Reader
- LoadGeosite(code string) (Rule, error)
- RuleSet(tag string) (RuleSet, bool)
- NeedWIFIState() bool
- Exchange(ctx context.Context, message *mdns.Msg) (*mdns.Msg, error)
- Lookup(ctx context.Context, domain string, strategy dns.DomainStrategy) ([]netip.Addr, error)
- LookupDefault(ctx context.Context, domain string) ([]netip.Addr, error)
- ClearDNSCache()
- InterfaceFinder() control.InterfaceFinder
- UpdateInterfaces() error
- DefaultInterface() string
- AutoDetectInterface() bool
- AutoDetectInterfaceFunc() control.Func
- DefaultMark() uint32
- RegisterAutoRedirectOutputMark(mark uint32) error
- AutoRedirectOutputMark() uint32
- NetworkMonitor() tun.NetworkUpdateMonitor
- InterfaceMonitor() tun.DefaultInterfaceMonitor
- PackageManager() tun.PackageManager
- WIFIState() WIFIState
- Rules() []Rule
- ClashServer() ClashServer
- SetClashServer(server ClashServer)
- V2RayServer() V2RayServer
- SetV2RayServer(server V2RayServer)
- ResetNetwork() error
- }
- // 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
- }
- 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)
- }
- func ContextWithRouter(ctx context.Context, router Router) context.Context {
- return service.ContextWith(ctx, router)
- }
- func RouterFromContext(ctx context.Context) Router {
- return service.FromContext[Router](ctx)
- }
- type RuleSet interface {
- Name() string
- StartContext(ctx context.Context, startContext *HTTPStartContext) error
- PostStart() error
- Metadata() RuleSetMetadata
- ExtractIPSet() []*netipx.IPSet
- IncRef()
- DecRef()
- Cleanup()
- RegisterCallback(callback RuleSetUpdateCallback) *list.Element[RuleSetUpdateCallback]
- UnregisterCallback(element *list.Element[RuleSetUpdateCallback])
- Close() error
- HeadlessRule
- }
- type RuleSetUpdateCallback func(it RuleSet)
- type RuleSetMetadata struct {
- ContainsProcessRule bool
- ContainsWIFIRule bool
- ContainsIPCIDRRule bool
- }
- 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
- }
- func (c *HTTPStartContext) Close() {
- c.access.Lock()
- defer c.access.Unlock()
- for _, client := range c.httpClientCache {
- client.CloseIdleConnections()
- }
- }
- type InterfaceUpdateListener interface {
- InterfaceUpdated()
- }
- type WIFIState struct {
- SSID string
- BSSID string
- }
|