sing-box/adapter/router.go

88 lines
2 KiB
Go
Raw Normal View History

2022-06-30 13:27:56 +00:00
package adapter
import (
"context"
"net"
2022-07-07 13:47:21 +00:00
"net/netip"
2022-06-30 13:27:56 +00:00
2022-07-05 05:23:47 +00:00
"github.com/sagernet/sing-box/common/geoip"
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"
2022-07-08 15:03:57 +00:00
N "github.com/sagernet/sing/common/network"
2022-07-07 13:47:21 +00:00
2022-09-13 08:18:39 +00:00
mdns "github.com/miekg/dns"
2022-06-30 13:27:56 +00:00
)
type Router interface {
2022-07-05 05:23:47 +00:00
Service
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)
2022-07-06 15:11:48 +00:00
DefaultOutbound(network string) Outbound
2022-07-14 15:06:03 +00:00
2023-03-25 04:03:23 +00:00
FakeIPStore() FakeIPStore
2022-06-30 13:27:56 +00:00
RouteConnection(ctx context.Context, conn net.Conn, metadata InboundContext) error
RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata InboundContext) error
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
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)
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
AutoDetectInterface() bool
2022-10-25 04:55:00 +00:00
AutoDetectInterfaceFunc() control.Func
2022-07-24 09:46:25 +00:00
DefaultMark() int
2022-08-04 14:01:20 +00:00
NetworkMonitor() tun.NetworkUpdateMonitor
InterfaceMonitor() tun.DefaultInterfaceMonitor
PackageManager() tun.PackageManager
2022-07-19 14:16:49 +00:00
Rules() []Rule
2022-09-10 06:09:47 +00:00
2023-02-21 06:53:00 +00:00
TimeService
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)
2022-07-02 06:07:50 +00:00
}
2023-02-08 08:28:52 +00:00
type routerContextKey struct{}
func ContextWithRouter(ctx context.Context, router Router) context.Context {
return context.WithValue(ctx, (*routerContextKey)(nil), router)
}
func RouterFromContext(ctx context.Context) Router {
metadata := ctx.Value((*routerContextKey)(nil))
if metadata == nil {
return nil
}
return metadata.(Router)
}
2022-07-02 06:07:50 +00:00
type Rule interface {
2022-07-05 05:23:47 +00:00
Service
2022-07-19 14:16:49 +00:00
Type() string
2022-07-05 05:23:47 +00:00
UpdateGeosite() error
2022-07-02 14:55:10 +00:00
Match(metadata *InboundContext) bool
2022-07-02 06:07:50 +00:00
Outbound() string
String() string
2022-06-30 13:27:56 +00:00
}
2022-07-24 06:05:06 +00:00
type DNSRule interface {
Rule
DisableCache() bool
2023-06-07 12:28:21 +00:00
RewriteTTL() *uint32
2022-07-24 06:05:06 +00:00
}
2022-11-06 02:36:19 +00:00
type InterfaceUpdateListener interface {
InterfaceUpdated() error
}