Sam Therapy
b1fa25a9a0
All checks were successful
continuous-integration/drone/push Build is passing
BREAKING CHANGE: DNS-over-HTTPS requests are now dealt with differently Using +https or -H now implies adding /dns-query (like dig) Using the implied https:// prefix follows the old behaviour (nothing added or implied) Reviewed-on: #147 Reviewed-by: grumbulon <grumbulon@grumbulon.xyz>
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package resolvers
|
|
|
|
import (
|
|
"net"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"git.froth.zone/sam/awl/pkg/util"
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
const (
|
|
tcp = "tcp"
|
|
udp = "udp"
|
|
)
|
|
|
|
// Resolver is the main resolver interface.
|
|
type Resolver interface {
|
|
LookUp(*dns.Msg) (util.Response, error)
|
|
}
|
|
|
|
// LoadResolver loads the respective resolver for performing a DNS query.
|
|
func LoadResolver(opts *util.Options) (Resolver, error) {
|
|
switch {
|
|
case opts.HTTPS:
|
|
opts.Logger.Info("loading DNS-over-HTTPS resolver")
|
|
|
|
if !strings.HasPrefix(opts.Request.Server, "https://") {
|
|
opts.Request.Server = "https://" + opts.Request.Server
|
|
}
|
|
|
|
opts.Request.Server += opts.HTTPSOptions.Endpoint
|
|
|
|
return &HTTPSResolver{
|
|
opts: opts,
|
|
}, nil
|
|
case opts.QUIC:
|
|
opts.Logger.Info("loading DNS-over-QUIC resolver")
|
|
|
|
if !strings.HasSuffix(opts.Request.Server, ":"+strconv.Itoa(opts.Request.Port)) {
|
|
opts.Request.Server = net.JoinHostPort(opts.Request.Server, strconv.Itoa(opts.Request.Port))
|
|
}
|
|
|
|
return &QUICResolver{
|
|
opts: opts,
|
|
}, nil
|
|
case opts.DNSCrypt:
|
|
opts.Logger.Info("loading DNSCrypt resolver")
|
|
|
|
if !strings.HasPrefix(opts.Request.Server, "sdns://") {
|
|
opts.Request.Server = "sdns://" + opts.Request.Server
|
|
}
|
|
|
|
return &DNSCryptResolver{
|
|
opts: opts,
|
|
}, nil
|
|
default:
|
|
opts.Logger.Info("loading standard/DNS-over-TLS resolver")
|
|
|
|
if !strings.HasSuffix(opts.Request.Server, ":"+strconv.Itoa(opts.Request.Port)) {
|
|
opts.Request.Server = net.JoinHostPort(opts.Request.Server, strconv.Itoa(opts.Request.Port))
|
|
}
|
|
|
|
return &StandardResolver{
|
|
opts: opts,
|
|
}, nil
|
|
}
|
|
}
|