net/dns/resolver: update (*forwarder).forwardWithDestChan to always return an error unless it sends a response to responseChan

We currently have two executions paths where (*forwarder).forwardWithDestChan
returns nil, rather than an error, without sending a DNS response to responseChan.

These paths are accompanied by a comment that reads:
// Returning an error will cause an internal retry, there is
// nothing we can do if parsing failed. Just drop the packet.
But it is not (or no longer longer) accurate: returning an error from forwardWithDestChan
does not currently cause a retry.

Moreover, although these paths are currently unreachable due to implementation details,
if (*forwarder).forwardWithDestChan were to return nil without sending a response to
responseChan, it would cause a deadlock at one call site and a panic at another.

Therefore, we update (*forwarder).forwardWithDestChan to return errors in those two paths
and remove comments that were no longer accurate and misleading.

Updates #cleanup
Updates #13571

Signed-off-by: Nick Hill <mykola.khyl@gmail.com>
pull/13793/head
Nick Hill 2 months ago committed by Nick Khyl
parent e7545f2eac
commit c2144c44a3

@ -920,10 +920,7 @@ func (f *forwarder) forwardWithDestChan(ctx context.Context, query packet, respo
metricDNSFwdDropBonjour.Add(1) metricDNSFwdDropBonjour.Add(1)
res, err := nxDomainResponse(query) res, err := nxDomainResponse(query)
if err != nil { if err != nil {
f.logf("error parsing bonjour query: %v", err) return err
// Returning an error will cause an internal retry, there is
// nothing we can do if parsing failed. Just drop the packet.
return nil
} }
select { select {
case <-ctx.Done(): case <-ctx.Done():
@ -955,10 +952,7 @@ func (f *forwarder) forwardWithDestChan(ctx context.Context, query packet, respo
res, err := servfailResponse(query) res, err := servfailResponse(query)
if err != nil { if err != nil {
f.logf("building servfail response: %v", err) return err
// Returning an error will cause an internal retry, there is
// nothing we can do if parsing failed. Just drop the packet.
return nil
} }
select { select {
case <-ctx.Done(): case <-ctx.Done():

@ -7,7 +7,6 @@ import (
"bytes" "bytes"
"context" "context"
"encoding/binary" "encoding/binary"
"errors"
"flag" "flag"
"fmt" "fmt"
"io" "io"
@ -657,14 +656,20 @@ func TestForwarderTCPFallbackError(t *testing.T) {
} }
}) })
_, err := runTestQuery(t, port, request, nil) resp, err := runTestQuery(t, port, request, nil)
if !sawRequest.Load() { if !sawRequest.Load() {
t.Error("did not see DNS request") t.Error("did not see DNS request")
} }
if err == nil { if err != nil {
t.Error("wanted error, got nil") t.Fatalf("wanted nil, got %v", err)
} else if !errors.Is(err, errServerFailure) { }
t.Errorf("wanted errServerFailure, got: %v", err) var parser dns.Parser
respHeader, err := parser.Start(resp)
if err != nil {
t.Fatalf("parser.Start() failed: %v", err)
}
if got, want := respHeader.RCode, dns.RCodeServerFailure; got != want {
t.Errorf("wanted %v, got %v", want, got)
} }
} }

@ -1503,8 +1503,8 @@ func TestServfail(t *testing.T) {
r.SetConfig(cfg) r.SetConfig(cfg)
pkt, err := syncRespond(r, dnspacket("test.site.", dns.TypeA, noEdns)) pkt, err := syncRespond(r, dnspacket("test.site.", dns.TypeA, noEdns))
if !errors.Is(err, errServerFailure) { if err != nil {
t.Errorf("err = %v, want %v", err, errServerFailure) t.Fatalf("err = %v, want nil", err)
} }
wantPkt := []byte{ wantPkt := []byte{

Loading…
Cancel
Save