2020-07-10 07:12:21 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-04-01 04:54:38 +00:00
|
|
|
package resolver
|
2020-07-10 07:12:21 +00:00
|
|
|
|
|
|
|
import (
|
2021-04-02 02:31:55 +00:00
|
|
|
"fmt"
|
2021-02-16 18:20:24 +00:00
|
|
|
"testing"
|
|
|
|
|
2020-07-10 07:12:21 +00:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
"inet.af/netaddr"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This file exists to isolate the test infrastructure
|
|
|
|
// that depends on github.com/miekg/dns
|
|
|
|
// from the rest, which only depends on dnsmessage.
|
|
|
|
|
|
|
|
// resolveToIP returns a handler function which responds
|
2020-08-27 04:07:15 +00:00
|
|
|
// to queries of type A it receives with an A record containing ipv4,
|
|
|
|
// to queries of type AAAA with an AAAA record containing ipv6,
|
|
|
|
// to queries of type NS with an NS record containg name.
|
|
|
|
func resolveToIP(ipv4, ipv6 netaddr.IP, ns string) dns.HandlerFunc {
|
2020-07-10 07:12:21 +00:00
|
|
|
return func(w dns.ResponseWriter, req *dns.Msg) {
|
|
|
|
m := new(dns.Msg)
|
|
|
|
m.SetReply(req)
|
|
|
|
|
|
|
|
if len(req.Question) != 1 {
|
|
|
|
panic("not a single-question request")
|
|
|
|
}
|
|
|
|
question := req.Question[0]
|
|
|
|
|
|
|
|
var ans dns.RR
|
2020-08-27 04:07:15 +00:00
|
|
|
switch question.Qtype {
|
|
|
|
case dns.TypeA:
|
2020-07-10 07:12:21 +00:00
|
|
|
ans = &dns.A{
|
|
|
|
Hdr: dns.RR_Header{
|
|
|
|
Name: question.Name,
|
|
|
|
Rrtype: dns.TypeA,
|
|
|
|
Class: dns.ClassINET,
|
|
|
|
},
|
|
|
|
A: ipv4.IPAddr().IP,
|
|
|
|
}
|
2020-08-27 04:07:15 +00:00
|
|
|
case dns.TypeAAAA:
|
2020-07-10 07:12:21 +00:00
|
|
|
ans = &dns.AAAA{
|
|
|
|
Hdr: dns.RR_Header{
|
|
|
|
Name: question.Name,
|
|
|
|
Rrtype: dns.TypeAAAA,
|
|
|
|
Class: dns.ClassINET,
|
|
|
|
},
|
|
|
|
AAAA: ipv6.IPAddr().IP,
|
|
|
|
}
|
2020-08-27 04:07:15 +00:00
|
|
|
case dns.TypeNS:
|
|
|
|
ans = &dns.NS{
|
|
|
|
Hdr: dns.RR_Header{
|
|
|
|
Name: question.Name,
|
|
|
|
Rrtype: dns.TypeNS,
|
|
|
|
Class: dns.ClassINET,
|
|
|
|
},
|
|
|
|
Ns: ns,
|
|
|
|
}
|
2020-07-10 07:12:21 +00:00
|
|
|
}
|
|
|
|
|
2020-08-27 04:07:15 +00:00
|
|
|
m.Answer = append(m.Answer, ans)
|
2020-07-10 07:12:21 +00:00
|
|
|
w.WriteMsg(m)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-07 21:16:07 +00:00
|
|
|
// resolveToTXT returns a handler function which responds to queries of type TXT
|
|
|
|
// it receives with the strings in txts.
|
|
|
|
func resolveToTXT(txts []string) dns.HandlerFunc {
|
|
|
|
return func(w dns.ResponseWriter, req *dns.Msg) {
|
|
|
|
m := new(dns.Msg)
|
|
|
|
m.SetReply(req)
|
|
|
|
|
|
|
|
if len(req.Question) != 1 {
|
|
|
|
panic("not a single-question request")
|
|
|
|
}
|
|
|
|
question := req.Question[0]
|
|
|
|
|
|
|
|
if question.Qtype != dns.TypeTXT {
|
|
|
|
w.WriteMsg(m)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ans := &dns.TXT{
|
|
|
|
Hdr: dns.RR_Header{
|
|
|
|
Name: question.Name,
|
|
|
|
Rrtype: dns.TypeTXT,
|
|
|
|
Class: dns.ClassINET,
|
|
|
|
},
|
|
|
|
Txt: txts,
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Answer = append(m.Answer, ans)
|
|
|
|
if err := w.WriteMsg(m); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-02 02:31:55 +00:00
|
|
|
var resolveToNXDOMAIN = dns.HandlerFunc(func(w dns.ResponseWriter, req *dns.Msg) {
|
2020-07-10 07:12:21 +00:00
|
|
|
m := new(dns.Msg)
|
|
|
|
m.SetRcode(req, dns.RcodeNameError)
|
|
|
|
w.WriteMsg(m)
|
2021-04-02 02:31:55 +00:00
|
|
|
})
|
2020-07-10 07:12:21 +00:00
|
|
|
|
2021-04-02 02:31:55 +00:00
|
|
|
func serveDNS(tb testing.TB, addr string, records ...interface{}) *dns.Server {
|
|
|
|
if len(records)%2 != 0 {
|
|
|
|
panic("must have an even number of record values")
|
|
|
|
}
|
|
|
|
mux := dns.NewServeMux()
|
|
|
|
for i := 0; i < len(records); i += 2 {
|
|
|
|
name := records[i].(string)
|
|
|
|
handler := records[i+1].(dns.Handler)
|
|
|
|
mux.Handle(name, handler)
|
|
|
|
}
|
2020-07-10 07:12:21 +00:00
|
|
|
waitch := make(chan struct{})
|
2021-04-02 02:31:55 +00:00
|
|
|
server := &dns.Server{
|
|
|
|
Addr: addr,
|
|
|
|
Net: "udp",
|
|
|
|
Handler: mux,
|
|
|
|
NotifyStartedFunc: func() { close(waitch) },
|
|
|
|
ReusePort: true,
|
|
|
|
}
|
2020-07-10 07:12:21 +00:00
|
|
|
|
|
|
|
go func() {
|
2021-02-16 18:20:24 +00:00
|
|
|
err := server.ListenAndServe()
|
|
|
|
if err != nil {
|
2021-04-02 02:31:55 +00:00
|
|
|
panic(fmt.Sprintf("ListenAndServe(%q): %v", addr, err))
|
2021-02-16 18:20:24 +00:00
|
|
|
}
|
2020-07-10 07:12:21 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
<-waitch
|
2021-04-02 02:31:55 +00:00
|
|
|
return server
|
2020-07-10 07:12:21 +00:00
|
|
|
}
|