mirror of
https://github.com/coredns/coredns.git
synced 2026-07-21 23:20:13 -04:00
plugin/forward: Fix incorrect retry of local DNS message serialization failures (#8313)
This PR fixes the forward plugin incorrectly retrying deterministic local DNS message serialization failures as if they were upstream transport errors. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
@@ -206,6 +206,10 @@ func (f *Forward) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
|
||||
upstreamErr = err
|
||||
|
||||
if err != nil {
|
||||
if errors.Is(err, proxyPkg.ErrInvalidRequest) {
|
||||
return dns.RcodeFormatError, err
|
||||
}
|
||||
|
||||
// Kick off health check to see if *our* upstream is broken.
|
||||
if f.maxfails != 0 {
|
||||
proxy.Healthcheck()
|
||||
|
||||
@@ -304,3 +304,46 @@ func TestForwardFailoverStopsAfterAllUpstreams(t *testing.T) {
|
||||
t.Errorf("Expected second upstream to be queried once, got %d", got)
|
||||
}
|
||||
}
|
||||
|
||||
func TestForwardDoesNotRetryLocalPackError(t *testing.T) {
|
||||
req := new(dns.Msg)
|
||||
req.SetQuestion("example.org.", dns.TypeA)
|
||||
req.Answer = []dns.RR{&dns.TXT{
|
||||
Hdr: dns.RR_Header{
|
||||
Name: "example.org.",
|
||||
Rrtype: dns.TypeTXT,
|
||||
Class: dns.ClassINET,
|
||||
},
|
||||
// A TXT character-string is limited to 255 wire bytes. This is a
|
||||
// deterministic local serialization error and is unrelated to HIP or
|
||||
// compression-pointer handling in miekg/dns.
|
||||
Txt: []string{strings.Repeat("x", 256)},
|
||||
}}
|
||||
|
||||
f := New()
|
||||
f.maxfails = 0
|
||||
f.maxConnectAttempts = 2
|
||||
f.opts.ForceTCP = true
|
||||
f.proxies = []*proxy.Proxy{
|
||||
proxy.NewProxy("forward", "127.0.0.1:1", transport.DNS),
|
||||
}
|
||||
|
||||
tracer := mocktracer.New()
|
||||
span := tracer.StartSpan("test")
|
||||
ctx := opentracing.ContextWithSpan(context.Background(), span)
|
||||
|
||||
rcode, err := f.ServeDNS(ctx, &mockResponseWriter{}, req)
|
||||
if rcode != dns.RcodeFormatError {
|
||||
t.Fatalf("expected FORMERR, got %s", dns.RcodeToString[rcode])
|
||||
}
|
||||
if err == nil || !strings.Contains(err.Error(), "string exceeded 255 bytes in txt") {
|
||||
t.Fatalf("expected local TXT packing error, got %v", err)
|
||||
}
|
||||
|
||||
// ServeDNS starts one child span for each forwarding attempt. A local
|
||||
// packing failure must stop after the first attempt even though the normal
|
||||
// connect-attempt limit permits two attempts.
|
||||
if got := len(tracer.FinishedSpans()); got != 1 {
|
||||
t.Fatalf("expected one forwarding attempt, got %d", got)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user