fix(dnssec): fix DNSSEC by adding TCP fallback to DoUDP

This commit is contained in:
2026-07-12 00:30:05 +01:00
parent e847b94474
commit c330fa6289
7 changed files with 84 additions and 30 deletions
+8 -2
View File
@@ -5,6 +5,12 @@ import (
"github.com/miekg/dns"
)
type Exchanger interface {
Query(msg *dns.Msg) (sent, resp *dns.Msg, err error)
Close()
}
type ExchangeFactory func(server string) (Exchanger, error)
type ValidationStats struct {
Queries int
BytesSent int
@@ -28,8 +34,8 @@ func NewValidator(send SendFunc) *Validator {
return &Validator{walker: newTrustWalker(send)}
}
func NewAuthoritativeValidator() *Validator {
return &Validator{walker: newIterativeWalker()}
func NewAuthoritativeValidator(f ExchangeFactory) *Validator {
return &Validator{walker: newIterativeWalker(f)}
}
func (v *Validator) ValidateResponse(msg *dns.Msg, qname string, qtype uint16) error {
+13 -8
View File
@@ -4,7 +4,6 @@ import (
"fmt"
"net"
"strings"
"time"
"github.com/afonsofrancof/sdns-proxy/common/logger"
"github.com/miekg/dns"
@@ -12,15 +11,15 @@ import (
// iterativeWalker validates top-down.
type iterativeWalker struct {
client *dns.Client
st ValidationStats
ipCache map[string]string
newClient ExchangeFactory
st ValidationStats
ipCache map[string]string
}
func newIterativeWalker() *iterativeWalker {
func newIterativeWalker(f ExchangeFactory) *iterativeWalker {
return &iterativeWalker{
client: &dns.Client{Timeout: 5 * time.Second},
ipCache: make(map[string]string),
newClient: f,
ipCache: make(map[string]string),
}
}
@@ -38,7 +37,13 @@ func (w *iterativeWalker) exchange(server, name string, qtype uint16) (*dns.Msg,
}
w.st.Queries++
resp, _, err := w.client.Exchange(m, server)
cl, err := w.newClient(server)
if err != nil {
return nil, err
}
defer cl.Close()
_, resp, err := cl.Query(m)
if err == nil && resp != nil {
if b, perr := resp.Pack(); perr == nil {
w.st.BytesReceived += len(b)