mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 03:47:37 +03:00
option: Fix marshal legacy DNS options
This commit is contained in:
parent
06f25876b3
commit
a24679fb56
8 changed files with 79 additions and 37 deletions
|
@ -91,7 +91,7 @@ func NewHTTPS(ctx context.Context, logger log.ContextLogger, tag string, options
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
serverAddr := options.ServerOptions.Build()
|
serverAddr := options.DNSServerAddressOptions.Build()
|
||||||
if serverAddr.Port == 0 {
|
if serverAddr.Port == 0 {
|
||||||
serverAddr.Port = 443
|
serverAddr.Port = 443
|
||||||
}
|
}
|
||||||
|
|
|
@ -88,7 +88,7 @@ func NewHTTP3(ctx context.Context, logger log.ContextLogger, tag string, options
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
serverAddr := options.ServerOptions.Build()
|
serverAddr := options.DNSServerAddressOptions.Build()
|
||||||
if serverAddr.Port == 0 {
|
if serverAddr.Port == 0 {
|
||||||
serverAddr.Port = 443
|
serverAddr.Port = 443
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ func NewQUIC(ctx context.Context, logger log.ContextLogger, tag string, options
|
||||||
if len(tlsConfig.NextProtos()) == 0 {
|
if len(tlsConfig.NextProtos()) == 0 {
|
||||||
tlsConfig.SetNextProtos([]string{"doq"})
|
tlsConfig.SetNextProtos([]string{"doq"})
|
||||||
}
|
}
|
||||||
serverAddr := options.ServerOptions.Build()
|
serverAddr := options.DNSServerAddressOptions.Build()
|
||||||
if serverAddr.Port == 0 {
|
if serverAddr.Port == 0 {
|
||||||
serverAddr.Port = 853
|
serverAddr.Port = 853
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,7 @@ func NewTCP(ctx context.Context, logger log.ContextLogger, tag string, options o
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
serverAddr := options.ServerOptions.Build()
|
serverAddr := options.DNSServerAddressOptions.Build()
|
||||||
if serverAddr.Port == 0 {
|
if serverAddr.Port == 0 {
|
||||||
serverAddr.Port = 53
|
serverAddr.Port = 53
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,7 @@ func NewTLS(ctx context.Context, logger log.ContextLogger, tag string, options o
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
serverAddr := options.ServerOptions.Build()
|
serverAddr := options.DNSServerAddressOptions.Build()
|
||||||
if serverAddr.Port == 0 {
|
if serverAddr.Port == 0 {
|
||||||
serverAddr.Port = 853
|
serverAddr.Port = 853
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ func NewUDP(ctx context.Context, logger log.ContextLogger, tag string, options o
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
serverAddr := options.ServerOptions.Build()
|
serverAddr := options.DNSServerAddressOptions.Build()
|
||||||
if serverAddr.Port == 0 {
|
if serverAddr.Port == 0 {
|
||||||
serverAddr.Port = 53
|
serverAddr.Port = 53
|
||||||
}
|
}
|
||||||
|
|
100
option/dns.go
100
option/dns.go
|
@ -19,10 +19,10 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type RawDNSOptions struct {
|
type RawDNSOptions struct {
|
||||||
Servers []NewDNSServerOptions `json:"servers,omitempty"`
|
Servers []DNSServerOptions `json:"servers,omitempty"`
|
||||||
Rules []DNSRule `json:"rules,omitempty"`
|
Rules []DNSRule `json:"rules,omitempty"`
|
||||||
Final string `json:"final,omitempty"`
|
Final string `json:"final,omitempty"`
|
||||||
ReverseMapping bool `json:"reverse_mapping,omitempty"`
|
ReverseMapping bool `json:"reverse_mapping,omitempty"`
|
||||||
DNSClientOptions
|
DNSClientOptions
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,32 +35,47 @@ type DNSOptions struct {
|
||||||
LegacyDNSOptions
|
LegacyDNSOptions
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type contextKeyDontUpgrade struct{}
|
||||||
|
|
||||||
|
func ContextWithDontUpgrade(ctx context.Context) context.Context {
|
||||||
|
return context.WithValue(ctx, (*contextKeyDontUpgrade)(nil), true)
|
||||||
|
}
|
||||||
|
|
||||||
|
func dontUpgradeFromContext(ctx context.Context) bool {
|
||||||
|
return ctx.Value((*contextKeyDontUpgrade)(nil)) == true
|
||||||
|
}
|
||||||
|
|
||||||
func (o *DNSOptions) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
func (o *DNSOptions) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
||||||
err := json.UnmarshalContext(ctx, content, &o.LegacyDNSOptions)
|
err := json.UnmarshalContext(ctx, content, &o.LegacyDNSOptions)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if o.FakeIP != nil && o.FakeIP.Enabled {
|
dontUpgrade := dontUpgradeFromContext(ctx)
|
||||||
deprecated.Report(ctx, deprecated.OptionLegacyDNSFakeIPOptions)
|
|
||||||
ctx = context.WithValue(ctx, (*LegacyDNSFakeIPOptions)(nil), o.FakeIP)
|
|
||||||
}
|
|
||||||
legacyOptions := o.LegacyDNSOptions
|
legacyOptions := o.LegacyDNSOptions
|
||||||
o.LegacyDNSOptions = LegacyDNSOptions{}
|
if !dontUpgrade {
|
||||||
|
if o.FakeIP != nil && o.FakeIP.Enabled {
|
||||||
|
deprecated.Report(ctx, deprecated.OptionLegacyDNSFakeIPOptions)
|
||||||
|
ctx = context.WithValue(ctx, (*LegacyDNSFakeIPOptions)(nil), o.FakeIP)
|
||||||
|
}
|
||||||
|
o.LegacyDNSOptions = LegacyDNSOptions{}
|
||||||
|
}
|
||||||
err = badjson.UnmarshallExcludedContext(ctx, content, legacyOptions, &o.RawDNSOptions)
|
err = badjson.UnmarshallExcludedContext(ctx, content, legacyOptions, &o.RawDNSOptions)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
rcodeMap := make(map[string]int)
|
if !dontUpgrade {
|
||||||
o.Servers = common.Filter(o.Servers, func(it NewDNSServerOptions) bool {
|
rcodeMap := make(map[string]int)
|
||||||
if it.Type == C.DNSTypeLegacyRcode {
|
o.Servers = common.Filter(o.Servers, func(it DNSServerOptions) bool {
|
||||||
rcodeMap[it.Tag] = it.Options.(int)
|
if it.Type == C.DNSTypeLegacyRcode {
|
||||||
return false
|
rcodeMap[it.Tag] = it.Options.(int)
|
||||||
}
|
return false
|
||||||
return true
|
}
|
||||||
})
|
return true
|
||||||
if len(rcodeMap) > 0 {
|
})
|
||||||
for i := 0; i < len(o.Rules); i++ {
|
if len(rcodeMap) > 0 {
|
||||||
rewriteRcode(rcodeMap, &o.Rules[i])
|
for i := 0; i < len(o.Rules); i++ {
|
||||||
|
rewriteRcode(rcodeMap, &o.Rules[i])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
@ -107,20 +122,24 @@ type DNSTransportOptionsRegistry interface {
|
||||||
CreateOptions(transportType string) (any, bool)
|
CreateOptions(transportType string) (any, bool)
|
||||||
}
|
}
|
||||||
|
|
||||||
type _NewDNSServerOptions struct {
|
type _DNSServerOptions struct {
|
||||||
Type string `json:"type,omitempty"`
|
Type string `json:"type,omitempty"`
|
||||||
Tag string `json:"tag,omitempty"`
|
Tag string `json:"tag,omitempty"`
|
||||||
Options any `json:"-"`
|
Options any `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type NewDNSServerOptions _NewDNSServerOptions
|
type DNSServerOptions _DNSServerOptions
|
||||||
|
|
||||||
func (o *NewDNSServerOptions) MarshalJSONContext(ctx context.Context) ([]byte, error) {
|
func (o *DNSServerOptions) MarshalJSONContext(ctx context.Context) ([]byte, error) {
|
||||||
return badjson.MarshallObjectsContext(ctx, (*_NewDNSServerOptions)(o), o.Options)
|
switch o.Type {
|
||||||
|
case C.DNSTypeLegacy:
|
||||||
|
o.Type = ""
|
||||||
|
}
|
||||||
|
return badjson.MarshallObjectsContext(ctx, (*_DNSServerOptions)(o), o.Options)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *NewDNSServerOptions) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
func (o *DNSServerOptions) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
||||||
err := json.UnmarshalContext(ctx, content, (*_NewDNSServerOptions)(o))
|
err := json.UnmarshalContext(ctx, content, (*_DNSServerOptions)(o))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -141,12 +160,12 @@ func (o *NewDNSServerOptions) UnmarshalJSONContext(ctx context.Context, content
|
||||||
return E.New("unknown transport type: ", o.Type)
|
return E.New("unknown transport type: ", o.Type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = badjson.UnmarshallExcludedContext(ctx, content, (*_NewDNSServerOptions)(o), options)
|
err = badjson.UnmarshallExcludedContext(ctx, content, (*_DNSServerOptions)(o), options)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
o.Options = options
|
o.Options = options
|
||||||
if o.Type == C.DNSTypeLegacy {
|
if o.Type == C.DNSTypeLegacy && !dontUpgradeFromContext(ctx) {
|
||||||
err = o.Upgrade(ctx)
|
err = o.Upgrade(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -155,7 +174,7 @@ func (o *NewDNSServerOptions) UnmarshalJSONContext(ctx context.Context, content
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *NewDNSServerOptions) Upgrade(ctx context.Context) error {
|
func (o *DNSServerOptions) Upgrade(ctx context.Context) error {
|
||||||
if o.Type != C.DNSTypeLegacy {
|
if o.Type != C.DNSTypeLegacy {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -305,6 +324,27 @@ func (o *NewDNSServerOptions) Upgrade(ctx context.Context) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type DNSServerAddressOptions struct {
|
||||||
|
Server string `json:"server"`
|
||||||
|
ServerPort uint16 `json:"server_port,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o DNSServerAddressOptions) Build() M.Socksaddr {
|
||||||
|
return M.ParseSocksaddrHostPort(o.Server, o.ServerPort)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o DNSServerAddressOptions) ServerIsDomain() bool {
|
||||||
|
return M.IsDomainName(o.Server)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *DNSServerAddressOptions) TakeServerOptions() ServerOptions {
|
||||||
|
return ServerOptions(*o)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *DNSServerAddressOptions) ReplaceServerOptions(options ServerOptions) {
|
||||||
|
*o = DNSServerAddressOptions(options)
|
||||||
|
}
|
||||||
|
|
||||||
type LegacyDNSServerOptions struct {
|
type LegacyDNSServerOptions struct {
|
||||||
Address string `json:"address"`
|
Address string `json:"address"`
|
||||||
AddressResolver string `json:"address_resolver,omitempty"`
|
AddressResolver string `json:"address_resolver,omitempty"`
|
||||||
|
@ -329,7 +369,7 @@ type LocalDNSServerOptions struct {
|
||||||
|
|
||||||
type RemoteDNSServerOptions struct {
|
type RemoteDNSServerOptions struct {
|
||||||
LocalDNSServerOptions
|
LocalDNSServerOptions
|
||||||
ServerOptions
|
DNSServerAddressOptions
|
||||||
LegacyAddressResolver string `json:"-"`
|
LegacyAddressResolver string `json:"-"`
|
||||||
LegacyAddressStrategy DomainStrategy `json:"-"`
|
LegacyAddressStrategy DomainStrategy `json:"-"`
|
||||||
LegacyAddressFallbackDelay badoption.Duration `json:"-"`
|
LegacyAddressFallbackDelay badoption.Duration `json:"-"`
|
||||||
|
|
|
@ -99,7 +99,9 @@ type _DomainResolveOptions struct {
|
||||||
type DomainResolveOptions _DomainResolveOptions
|
type DomainResolveOptions _DomainResolveOptions
|
||||||
|
|
||||||
func (o DomainResolveOptions) MarshalJSON() ([]byte, error) {
|
func (o DomainResolveOptions) MarshalJSON() ([]byte, error) {
|
||||||
if o.Strategy == DomainStrategy(C.DomainStrategyAsIS) &&
|
if o.Server == "" {
|
||||||
|
return []byte("{}"), nil
|
||||||
|
} else if o.Strategy == DomainStrategy(C.DomainStrategyAsIS) &&
|
||||||
!o.DisableCache &&
|
!o.DisableCache &&
|
||||||
o.RewriteTTL == nil &&
|
o.RewriteTTL == nil &&
|
||||||
o.ClientSubnet == nil {
|
o.ClientSubnet == nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue