mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 04:22:23 +08:00
301 lines
8.5 KiB
Go
301 lines
8.5 KiB
Go
package option
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/netip"
|
|
"time"
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
"github.com/sagernet/sing-box/experimental/deprecated"
|
|
dns "github.com/sagernet/sing-dns"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
"github.com/sagernet/sing/common/json"
|
|
"github.com/sagernet/sing/common/json/badjson"
|
|
"github.com/sagernet/sing/common/json/badoption"
|
|
)
|
|
|
|
type _RuleAction struct {
|
|
Action string `json:"action,omitempty"`
|
|
RouteOptions RouteActionOptions `json:"-"`
|
|
RouteOptionsOptions RouteOptionsActionOptions `json:"-"`
|
|
DirectOptions DirectActionOptions `json:"-"`
|
|
RejectOptions RejectActionOptions `json:"-"`
|
|
SniffOptions RouteActionSniff `json:"-"`
|
|
ResolveOptions RouteActionResolve `json:"-"`
|
|
}
|
|
|
|
type RuleAction _RuleAction
|
|
|
|
func (r RuleAction) MarshalJSON() ([]byte, error) {
|
|
if r.Action == "" {
|
|
return json.Marshal(struct{}{})
|
|
}
|
|
var v any
|
|
switch r.Action {
|
|
case C.RuleActionTypeRoute:
|
|
r.Action = ""
|
|
v = r.RouteOptions
|
|
case C.RuleActionTypeRouteOptions:
|
|
v = r.RouteOptionsOptions
|
|
case C.RuleActionTypeDirect:
|
|
v = r.DirectOptions
|
|
case C.RuleActionTypeReject:
|
|
v = r.RejectOptions
|
|
case C.RuleActionTypeHijackDNS:
|
|
v = nil
|
|
case C.RuleActionTypeSniff:
|
|
v = r.SniffOptions
|
|
case C.RuleActionTypeResolve:
|
|
v = r.ResolveOptions
|
|
default:
|
|
return nil, E.New("unknown rule action: " + r.Action)
|
|
}
|
|
if v == nil {
|
|
return badjson.MarshallObjects((_RuleAction)(r))
|
|
}
|
|
return badjson.MarshallObjects((_RuleAction)(r), v)
|
|
}
|
|
|
|
func (r *RuleAction) UnmarshalJSON(data []byte) error {
|
|
err := json.Unmarshal(data, (*_RuleAction)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var v any
|
|
switch r.Action {
|
|
case "", C.RuleActionTypeRoute:
|
|
r.Action = C.RuleActionTypeRoute
|
|
v = &r.RouteOptions
|
|
case C.RuleActionTypeRouteOptions:
|
|
v = &r.RouteOptionsOptions
|
|
case C.RuleActionTypeDirect:
|
|
v = &r.DirectOptions
|
|
case C.RuleActionTypeReject:
|
|
v = &r.RejectOptions
|
|
case C.RuleActionTypeHijackDNS:
|
|
v = nil
|
|
case C.RuleActionTypeSniff:
|
|
v = &r.SniffOptions
|
|
case C.RuleActionTypeResolve:
|
|
v = &r.ResolveOptions
|
|
default:
|
|
return E.New("unknown rule action: " + r.Action)
|
|
}
|
|
if v == nil {
|
|
// check unknown fields
|
|
return json.UnmarshalDisallowUnknownFields(data, &_RuleAction{})
|
|
}
|
|
return badjson.UnmarshallExcluded(data, (*_RuleAction)(r), v)
|
|
}
|
|
|
|
type _DNSRuleAction struct {
|
|
Action string `json:"action,omitempty"`
|
|
RouteOptions DNSRouteActionOptions `json:"-"`
|
|
RouteOptionsOptions DNSRouteOptionsActionOptions `json:"-"`
|
|
RejectOptions RejectActionOptions `json:"-"`
|
|
}
|
|
|
|
type DNSRuleAction _DNSRuleAction
|
|
|
|
func (r DNSRuleAction) MarshalJSON() ([]byte, error) {
|
|
if r.Action == "" {
|
|
return json.Marshal(struct{}{})
|
|
}
|
|
var v any
|
|
switch r.Action {
|
|
case C.RuleActionTypeRoute:
|
|
r.Action = ""
|
|
v = r.RouteOptions
|
|
case C.RuleActionTypeRouteOptions:
|
|
v = r.RouteOptionsOptions
|
|
case C.RuleActionTypeReject:
|
|
v = r.RejectOptions
|
|
default:
|
|
return nil, E.New("unknown DNS rule action: " + r.Action)
|
|
}
|
|
return badjson.MarshallObjects((_DNSRuleAction)(r), v)
|
|
}
|
|
|
|
func (r *DNSRuleAction) UnmarshalJSONContext(ctx context.Context, data []byte) error {
|
|
err := json.Unmarshal(data, (*_DNSRuleAction)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var v any
|
|
switch r.Action {
|
|
case "", C.RuleActionTypeRoute:
|
|
r.Action = C.RuleActionTypeRoute
|
|
v = &r.RouteOptions
|
|
case C.RuleActionTypeRouteOptions:
|
|
v = &r.RouteOptionsOptions
|
|
case C.RuleActionTypeReject:
|
|
v = &r.RejectOptions
|
|
default:
|
|
return E.New("unknown DNS rule action: " + r.Action)
|
|
}
|
|
return badjson.UnmarshallExcludedContext(ctx, data, (*_DNSRuleAction)(r), v)
|
|
}
|
|
|
|
type _RouteActionOptions struct {
|
|
Outbound string `json:"outbound,omitempty"`
|
|
}
|
|
|
|
type RouteActionOptions _RouteActionOptions
|
|
|
|
func (r *RouteActionOptions) UnmarshalJSON(data []byte) error {
|
|
err := json.Unmarshal(data, (*_RouteActionOptions)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type _RouteOptionsActionOptions struct {
|
|
UDPDisableDomainUnmapping bool `json:"udp_disable_domain_unmapping,omitempty"`
|
|
UDPConnect bool `json:"udp_connect,omitempty"`
|
|
}
|
|
|
|
type RouteOptionsActionOptions _RouteOptionsActionOptions
|
|
|
|
func (r *RouteOptionsActionOptions) UnmarshalJSON(data []byte) error {
|
|
err := json.Unmarshal(data, (*_RouteOptionsActionOptions)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if *r == (RouteOptionsActionOptions{}) {
|
|
return E.New("empty route option action")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type _DNSRouteActionOptions struct {
|
|
Server string `json:"server,omitempty"`
|
|
// Deprecated: Use DNSRouteOptionsActionOptions instead.
|
|
DisableCache bool `json:"disable_cache,omitempty"`
|
|
// Deprecated: Use DNSRouteOptionsActionOptions instead.
|
|
RewriteTTL *uint32 `json:"rewrite_ttl,omitempty"`
|
|
// Deprecated: Use DNSRouteOptionsActionOptions instead.
|
|
ClientSubnet *badoption.Prefixable `json:"client_subnet,omitempty"`
|
|
}
|
|
|
|
type DNSRouteActionOptions _DNSRouteActionOptions
|
|
|
|
func (r *DNSRouteActionOptions) UnmarshalJSONContext(ctx context.Context, data []byte) error {
|
|
err := json.Unmarshal(data, (*_DNSRouteActionOptions)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if r.DisableCache || r.RewriteTTL != nil || r.ClientSubnet != nil {
|
|
deprecated.Report(ctx, deprecated.OptionLegacyDNSRouteOptions)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type _DNSRouteOptionsActionOptions struct {
|
|
DisableCache bool `json:"disable_cache,omitempty"`
|
|
RewriteTTL *uint32 `json:"rewrite_ttl,omitempty"`
|
|
ClientSubnet *badoption.Prefixable `json:"client_subnet,omitempty"`
|
|
}
|
|
|
|
type DNSRouteOptionsActionOptions _DNSRouteOptionsActionOptions
|
|
|
|
func (r *DNSRouteOptionsActionOptions) UnmarshalJSON(data []byte) error {
|
|
err := json.Unmarshal(data, (*_DNSRouteOptionsActionOptions)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if *r == (DNSRouteOptionsActionOptions{}) {
|
|
return E.New("empty DNS route option action")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type _DirectActionOptions DialerOptions
|
|
|
|
type DirectActionOptions _DirectActionOptions
|
|
|
|
func (d DirectActionOptions) Descriptions() []string {
|
|
var descriptions []string
|
|
if d.BindInterface != "" {
|
|
descriptions = append(descriptions, "bind_interface="+d.BindInterface)
|
|
}
|
|
if d.Inet4BindAddress != nil {
|
|
descriptions = append(descriptions, "inet4_bind_address="+d.Inet4BindAddress.Build(netip.IPv4Unspecified()).String())
|
|
}
|
|
if d.Inet6BindAddress != nil {
|
|
descriptions = append(descriptions, "inet6_bind_address="+d.Inet6BindAddress.Build(netip.IPv6Unspecified()).String())
|
|
}
|
|
if d.RoutingMark != 0 {
|
|
descriptions = append(descriptions, "routing_mark="+fmt.Sprintf("0x%x", d.RoutingMark))
|
|
}
|
|
if d.ReuseAddr {
|
|
descriptions = append(descriptions, "reuse_addr")
|
|
}
|
|
if d.ConnectTimeout != 0 {
|
|
descriptions = append(descriptions, "connect_timeout="+time.Duration(d.ConnectTimeout).String())
|
|
}
|
|
if d.TCPFastOpen {
|
|
descriptions = append(descriptions, "tcp_fast_open")
|
|
}
|
|
if d.TCPMultiPath {
|
|
descriptions = append(descriptions, "tcp_multi_path")
|
|
}
|
|
if d.UDPFragment != nil {
|
|
descriptions = append(descriptions, "udp_fragment="+fmt.Sprint(*d.UDPFragment))
|
|
}
|
|
if d.DomainStrategy != DomainStrategy(dns.DomainStrategyAsIS) {
|
|
descriptions = append(descriptions, "domain_strategy="+d.DomainStrategy.String())
|
|
}
|
|
if d.FallbackDelay != 0 {
|
|
descriptions = append(descriptions, "fallback_delay="+time.Duration(d.FallbackDelay).String())
|
|
}
|
|
return descriptions
|
|
}
|
|
|
|
func (d *DirectActionOptions) UnmarshalJSON(data []byte) error {
|
|
err := json.Unmarshal(data, (*_DirectActionOptions)(d))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if d.Detour != "" {
|
|
return E.New("detour is not available in the current context")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type _RejectActionOptions struct {
|
|
Method string `json:"method,omitempty"`
|
|
NoDrop bool `json:"no_drop,omitempty"`
|
|
}
|
|
|
|
type RejectActionOptions _RejectActionOptions
|
|
|
|
func (r *RejectActionOptions) UnmarshalJSON(bytes []byte) error {
|
|
err := json.Unmarshal(bytes, (*_RejectActionOptions)(r))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch r.Method {
|
|
case "", C.RuleActionRejectMethodDefault:
|
|
r.Method = C.RuleActionRejectMethodDefault
|
|
case C.RuleActionRejectMethodDrop:
|
|
default:
|
|
return E.New("unknown reject method: " + r.Method)
|
|
}
|
|
if r.Method == C.RuleActionRejectMethodDrop && r.NoDrop {
|
|
return E.New("no_drop is not available in current context")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RouteActionSniff struct {
|
|
Sniffer badoption.Listable[string] `json:"sniffer,omitempty"`
|
|
Timeout badoption.Duration `json:"timeout,omitempty"`
|
|
}
|
|
|
|
type RouteActionResolve struct {
|
|
Strategy DomainStrategy `json:"strategy,omitempty"`
|
|
Server string `json:"server,omitempty"`
|
|
}
|