mirror of
https://github.com/mjl-/mox.git
synced 2024-12-28 17:33:47 +03:00
daa908e9f4
the vendored dns resolver code is a copy of the go stdlib dns resolver, with awareness of the "authentic data" (i.e. dnssec secure) added, as well as support for enhanced dns errors, and looking up tlsa records (for dane). ideally it would be upstreamed, but the chances seem slim. dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their dnssec status is added to the Received message headers for incoming email. but the main reason to add dnssec was for implementing dane. with dane, the verification of tls certificates can be done through certificates/public keys published in dns (in the tlsa records). this only makes sense (is trustworthy) if those dns records can be verified to be authentic. mox now applies dane to delivering messages over smtp. mox already implemented mta-sts for webpki/pkix-verification of certificates against the (large) pool of CA's, and still enforces those policies when present. but it now also checks for dane records, and will verify those if present. if dane and mta-sts are both absent, the regular opportunistic tls with starttls is still done. and the fallback to plaintext is also still done. mox also makes it easy to setup dane for incoming deliveries, so other servers can deliver with dane tls certificate verification. the quickstart now generates private keys that are used when requesting certificates with acme. the private keys are pre-generated because they must be static and known during setup, because their public keys must be published in tlsa records in dns. autocert would generate private keys on its own, so had to be forked to add the option to provide the private key when requesting a new certificate. hopefully upstream will accept the change and we can drop the fork. with this change, using the quickstart to setup a new mox instance, the checks at internet.nl result in a 100% score, provided the domain is dnssec-signed and the network doesn't have any issues.
105 lines
3.1 KiB
Go
105 lines
3.1 KiB
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build unix || wasip1
|
|
|
|
package adns
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"sync"
|
|
|
|
"github.com/mjl-/adns/internal/bytealg"
|
|
)
|
|
|
|
var onceReadProtocols sync.Once
|
|
|
|
// readProtocols loads contents of /etc/protocols into protocols map
|
|
// for quick access.
|
|
func readProtocols() {
|
|
file, err := open("/etc/protocols")
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer file.close()
|
|
|
|
for line, ok := file.readLine(); ok; line, ok = file.readLine() {
|
|
// tcp 6 TCP # transmission control protocol
|
|
if i := bytealg.IndexByteString(line, '#'); i >= 0 {
|
|
line = line[0:i]
|
|
}
|
|
f := getFields(line)
|
|
if len(f) < 2 {
|
|
continue
|
|
}
|
|
if proto, _, ok := dtoi(f[1]); ok {
|
|
if _, ok := protocols[f[0]]; !ok {
|
|
protocols[f[0]] = proto
|
|
}
|
|
for _, alias := range f[2:] {
|
|
if _, ok := protocols[alias]; !ok {
|
|
protocols[alias] = proto
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// lookupProtocol looks up IP protocol name in /etc/protocols and
|
|
// returns correspondent protocol number.
|
|
func lookupProtocol(_ context.Context, name string) (int, error) {
|
|
onceReadProtocols.Do(readProtocols)
|
|
return lookupProtocolMap(name)
|
|
}
|
|
|
|
func (r *Resolver) lookupHost(ctx context.Context, host string) (addrs []string, result Result, err error) {
|
|
order, conf := systemConf().hostLookupOrder(r, host)
|
|
return r.goLookupHostOrder(ctx, host, order, conf)
|
|
}
|
|
|
|
func (r *Resolver) lookupIP(ctx context.Context, network, host string) (addrs []net.IPAddr, result Result, err error) {
|
|
if r.preferGo() {
|
|
return r.goLookupIP(ctx, network, host)
|
|
}
|
|
order, conf := systemConf().hostLookupOrder(r, host)
|
|
ips, _, result, err := r.goLookupIPCNAMEOrder(ctx, network, host, order, conf)
|
|
return ips, result, err
|
|
}
|
|
|
|
func (r *Resolver) lookupPort(ctx context.Context, network, service string) (int, error) {
|
|
// Port lookup is not a DNS operation.
|
|
// Prefer the cgo resolver if possible.
|
|
return goLookupPort(network, service)
|
|
}
|
|
|
|
func (r *Resolver) lookupCNAME(ctx context.Context, name string) (string, Result, error) {
|
|
order, conf := systemConf().hostLookupOrder(r, name)
|
|
return r.goLookupCNAME(ctx, name, order, conf)
|
|
}
|
|
|
|
func (r *Resolver) lookupSRV(ctx context.Context, service, proto, name string) (string, []*net.SRV, Result, error) {
|
|
return r.goLookupSRV(ctx, service, proto, name)
|
|
}
|
|
|
|
func (r *Resolver) lookupMX(ctx context.Context, name string) ([]*net.MX, Result, error) {
|
|
return r.goLookupMX(ctx, name)
|
|
}
|
|
|
|
func (r *Resolver) lookupNS(ctx context.Context, name string) ([]*net.NS, Result, error) {
|
|
return r.goLookupNS(ctx, name)
|
|
}
|
|
|
|
func (r *Resolver) lookupTXT(ctx context.Context, name string) ([]string, Result, error) {
|
|
return r.goLookupTXT(ctx, name)
|
|
}
|
|
|
|
func (r *Resolver) lookupAddr(ctx context.Context, addr string) ([]string, Result, error) {
|
|
order, conf := systemConf().addrLookupOrder(r, addr)
|
|
return r.goLookupPTR(ctx, addr, order, conf)
|
|
}
|
|
|
|
func (r *Resolver) lookupTLSA(ctx context.Context, port int, protocol, host string) ([]TLSA, Result, error) {
|
|
return r.goLookupTLSA(ctx, port, protocol, host)
|
|
}
|