sing-box/option/rule_dns.go

164 lines
6.4 KiB
Go
Raw Normal View History

2023-06-07 20:28:21 +08:00
package option
import (
2024-11-07 12:02:36 +08:00
"context"
2023-06-07 20:28:21 +08:00
"reflect"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing/common"
E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/json"
2024-11-02 00:39:02 +08:00
"github.com/sagernet/sing/common/json/badjson"
2024-11-07 21:44:04 +08:00
"github.com/sagernet/sing/common/json/badoption"
2023-06-07 20:28:21 +08:00
)
type _DNSRule struct {
Type string `json:"type,omitempty"`
DefaultOptions DefaultDNSRule `json:"-"`
LogicalOptions LogicalDNSRule `json:"-"`
}
type DNSRule _DNSRule
func (r DNSRule) MarshalJSON() ([]byte, error) {
var v any
switch r.Type {
case C.RuleTypeDefault:
r.Type = ""
v = r.DefaultOptions
case C.RuleTypeLogical:
v = r.LogicalOptions
default:
return nil, E.New("unknown rule type: " + r.Type)
}
2024-11-02 00:39:02 +08:00
return badjson.MarshallObjects((_DNSRule)(r), v)
2023-06-07 20:28:21 +08:00
}
2024-11-07 12:02:36 +08:00
func (r *DNSRule) UnmarshalJSONContext(ctx context.Context, bytes []byte) error {
2023-06-07 20:28:21 +08:00
err := json.Unmarshal(bytes, (*_DNSRule)(r))
if err != nil {
return err
}
var v any
switch r.Type {
case "", C.RuleTypeDefault:
r.Type = C.RuleTypeDefault
v = &r.DefaultOptions
case C.RuleTypeLogical:
v = &r.LogicalOptions
default:
return E.New("unknown rule type: " + r.Type)
}
2024-11-07 12:02:36 +08:00
err = badjson.UnmarshallExcludedContext(ctx, bytes, (*_DNSRule)(r), v)
2023-06-07 20:28:21 +08:00
if err != nil {
return err
2023-06-07 20:28:21 +08:00
}
return nil
}
2023-11-28 23:47:32 +08:00
func (r DNSRule) IsValid() bool {
switch r.Type {
case C.RuleTypeDefault:
return r.DefaultOptions.IsValid()
case C.RuleTypeLogical:
return r.LogicalOptions.IsValid()
default:
panic("unknown DNS rule type: " + r.Type)
}
}
2024-10-21 23:38:34 +08:00
type RawDefaultDNSRule struct {
2024-11-13 19:05:28 +08:00
Inbound badoption.Listable[string] `json:"inbound,omitempty"`
IPVersion int `json:"ip_version,omitempty"`
QueryType badoption.Listable[DNSQueryType] `json:"query_type,omitempty"`
Network badoption.Listable[string] `json:"network,omitempty"`
AuthUser badoption.Listable[string] `json:"auth_user,omitempty"`
Protocol badoption.Listable[string] `json:"protocol,omitempty"`
Domain badoption.Listable[string] `json:"domain,omitempty"`
DomainSuffix badoption.Listable[string] `json:"domain_suffix,omitempty"`
DomainKeyword badoption.Listable[string] `json:"domain_keyword,omitempty"`
DomainRegex badoption.Listable[string] `json:"domain_regex,omitempty"`
Geosite badoption.Listable[string] `json:"geosite,omitempty"`
SourceGeoIP badoption.Listable[string] `json:"source_geoip,omitempty"`
GeoIP badoption.Listable[string] `json:"geoip,omitempty"`
IPCIDR badoption.Listable[string] `json:"ip_cidr,omitempty"`
IPIsPrivate bool `json:"ip_is_private,omitempty"`
SourceIPCIDR badoption.Listable[string] `json:"source_ip_cidr,omitempty"`
SourceIPIsPrivate bool `json:"source_ip_is_private,omitempty"`
SourcePort badoption.Listable[uint16] `json:"source_port,omitempty"`
SourcePortRange badoption.Listable[string] `json:"source_port_range,omitempty"`
Port badoption.Listable[uint16] `json:"port,omitempty"`
PortRange badoption.Listable[string] `json:"port_range,omitempty"`
ProcessName badoption.Listable[string] `json:"process_name,omitempty"`
ProcessPath badoption.Listable[string] `json:"process_path,omitempty"`
ProcessPathRegex badoption.Listable[string] `json:"process_path_regex,omitempty"`
PackageName badoption.Listable[string] `json:"package_name,omitempty"`
User badoption.Listable[string] `json:"user,omitempty"`
UserID badoption.Listable[int32] `json:"user_id,omitempty"`
Outbound badoption.Listable[string] `json:"outbound,omitempty"`
ClashMode string `json:"clash_mode,omitempty"`
NetworkType badoption.Listable[InterfaceType] `json:"network_type,omitempty"`
NetworkIsExpensive bool `json:"network_is_expensive,omitempty"`
NetworkIsConstrained bool `json:"network_is_constrained,omitempty"`
WIFISSID badoption.Listable[string] `json:"wifi_ssid,omitempty"`
WIFIBSSID badoption.Listable[string] `json:"wifi_bssid,omitempty"`
RuleSet badoption.Listable[string] `json:"rule_set,omitempty"`
RuleSetIPCIDRMatchSource bool `json:"rule_set_ip_cidr_match_source,omitempty"`
RuleSetIPCIDRAcceptEmpty bool `json:"rule_set_ip_cidr_accept_empty,omitempty"`
Invert bool `json:"invert,omitempty"`
2024-06-24 09:41:00 +08:00
// Deprecated: renamed to rule_set_ip_cidr_match_source
Deprecated_RulesetIPCIDRMatchSource bool `json:"rule_set_ipcidr_match_source,omitempty"`
}
2024-10-21 23:38:34 +08:00
type DefaultDNSRule struct {
RawDefaultDNSRule
DNSRuleAction
}
2024-11-06 17:30:40 +08:00
func (r DefaultDNSRule) MarshalJSON() ([]byte, error) {
2024-11-02 00:39:02 +08:00
return badjson.MarshallObjects(r.RawDefaultDNSRule, r.DNSRuleAction)
2024-10-21 23:38:34 +08:00
}
2024-11-07 12:02:36 +08:00
func (r *DefaultDNSRule) UnmarshalJSONContext(ctx context.Context, data []byte) error {
2024-10-21 23:38:34 +08:00
err := json.Unmarshal(data, &r.RawDefaultDNSRule)
if err != nil {
return err
}
2024-11-07 12:02:36 +08:00
return badjson.UnmarshallExcludedContext(ctx, data, &r.RawDefaultDNSRule, &r.DNSRuleAction)
2024-10-21 23:38:34 +08:00
}
2024-11-06 17:30:40 +08:00
func (r DefaultDNSRule) IsValid() bool {
2023-06-07 20:28:21 +08:00
var defaultValue DefaultDNSRule
defaultValue.Invert = r.Invert
2024-10-21 23:38:34 +08:00
defaultValue.DNSRuleAction = r.DNSRuleAction
2023-06-07 20:28:21 +08:00
return !reflect.DeepEqual(r, defaultValue)
}
2024-11-06 17:30:40 +08:00
type RawLogicalDNSRule struct {
2024-10-21 23:38:34 +08:00
Mode string `json:"mode"`
Rules []DNSRule `json:"rules,omitempty"`
Invert bool `json:"invert,omitempty"`
}
2023-06-07 20:28:21 +08:00
type LogicalDNSRule struct {
2024-11-06 17:30:40 +08:00
RawLogicalDNSRule
2024-10-21 23:38:34 +08:00
DNSRuleAction
}
func (r *LogicalDNSRule) MarshalJSON() ([]byte, error) {
2024-11-06 17:30:40 +08:00
return badjson.MarshallObjects(r.RawLogicalDNSRule, r.DNSRuleAction)
2024-10-21 23:38:34 +08:00
}
2024-11-07 12:02:36 +08:00
func (r *LogicalDNSRule) UnmarshalJSONContext(ctx context.Context, data []byte) error {
2024-11-06 17:30:40 +08:00
err := json.Unmarshal(data, &r.RawLogicalDNSRule)
2024-10-21 23:38:34 +08:00
if err != nil {
return err
}
2024-11-07 12:02:36 +08:00
return badjson.UnmarshallExcludedContext(ctx, data, &r.RawLogicalDNSRule, &r.DNSRuleAction)
2023-06-07 20:28:21 +08:00
}
2024-10-21 23:38:34 +08:00
func (r *LogicalDNSRule) IsValid() bool {
2023-11-28 23:47:32 +08:00
return len(r.Rules) > 0 && common.All(r.Rules, DNSRule.IsValid)
2023-06-07 20:28:21 +08:00
}