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.
267 lines
5.5 KiB
Go
267 lines
5.5 KiB
Go
// Copyright 2009 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.
|
|
|
|
// Simple file i/o and string manipulation, to avoid
|
|
// depending on strconv and bufio and strings.
|
|
|
|
package adns
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/mjl-/adns/internal/bytealg"
|
|
)
|
|
|
|
type file struct {
|
|
file *os.File
|
|
data []byte
|
|
atEOF bool
|
|
}
|
|
|
|
func (f *file) close() { f.file.Close() }
|
|
|
|
func (f *file) getLineFromData() (s string, ok bool) {
|
|
data := f.data
|
|
i := 0
|
|
for i = 0; i < len(data); i++ {
|
|
if data[i] == '\n' {
|
|
s = string(data[0:i])
|
|
ok = true
|
|
// move data
|
|
i++
|
|
n := len(data) - i
|
|
copy(data[0:], data[i:])
|
|
f.data = data[0:n]
|
|
return
|
|
}
|
|
}
|
|
if f.atEOF && len(f.data) > 0 {
|
|
// EOF, return all we have
|
|
s = string(data)
|
|
f.data = f.data[0:0]
|
|
ok = true
|
|
}
|
|
return
|
|
}
|
|
|
|
func (f *file) readLine() (s string, ok bool) {
|
|
if s, ok = f.getLineFromData(); ok {
|
|
return
|
|
}
|
|
if len(f.data) < cap(f.data) {
|
|
ln := len(f.data)
|
|
n, err := io.ReadFull(f.file, f.data[ln:cap(f.data)])
|
|
if n >= 0 {
|
|
f.data = f.data[0 : ln+n]
|
|
}
|
|
if err == io.EOF || err == io.ErrUnexpectedEOF {
|
|
f.atEOF = true
|
|
}
|
|
}
|
|
s, ok = f.getLineFromData()
|
|
return
|
|
}
|
|
|
|
func (f *file) stat() (mtime time.Time, size int64, err error) {
|
|
st, err := f.file.Stat()
|
|
if err != nil {
|
|
return time.Time{}, 0, err
|
|
}
|
|
return st.ModTime(), st.Size(), nil
|
|
}
|
|
|
|
func open(name string) (*file, error) {
|
|
fd, err := os.Open(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &file{fd, make([]byte, 0, 64*1024), false}, nil
|
|
}
|
|
|
|
func stat(name string) (mtime time.Time, size int64, err error) {
|
|
st, err := os.Stat(name)
|
|
if err != nil {
|
|
return time.Time{}, 0, err
|
|
}
|
|
return st.ModTime(), st.Size(), nil
|
|
}
|
|
|
|
// Count occurrences in s of any bytes in t.
|
|
func countAnyByte(s string, t string) int {
|
|
n := 0
|
|
for i := 0; i < len(s); i++ {
|
|
if bytealg.IndexByteString(t, s[i]) >= 0 {
|
|
n++
|
|
}
|
|
}
|
|
return n
|
|
}
|
|
|
|
// Split s at any bytes in t.
|
|
func splitAtBytes(s string, t string) []string {
|
|
a := make([]string, 1+countAnyByte(s, t))
|
|
n := 0
|
|
last := 0
|
|
for i := 0; i < len(s); i++ {
|
|
if bytealg.IndexByteString(t, s[i]) >= 0 {
|
|
if last < i {
|
|
a[n] = s[last:i]
|
|
n++
|
|
}
|
|
last = i + 1
|
|
}
|
|
}
|
|
if last < len(s) {
|
|
a[n] = s[last:]
|
|
n++
|
|
}
|
|
return a[0:n]
|
|
}
|
|
|
|
func getFields(s string) []string { return splitAtBytes(s, " \r\t\n") }
|
|
|
|
// Bigger than we need, not too big to worry about overflow
|
|
const big = 0xFFFFFF
|
|
|
|
// Decimal to integer.
|
|
// Returns number, characters consumed, success.
|
|
func dtoi(s string) (n int, i int, ok bool) {
|
|
n = 0
|
|
for i = 0; i < len(s) && '0' <= s[i] && s[i] <= '9'; i++ {
|
|
n = n*10 + int(s[i]-'0')
|
|
if n >= big {
|
|
return big, i, false
|
|
}
|
|
}
|
|
if i == 0 {
|
|
return 0, 0, false
|
|
}
|
|
return n, i, true
|
|
}
|
|
|
|
// Number of occurrences of b in s.
|
|
func count(s string, b byte) int {
|
|
n := 0
|
|
for i := 0; i < len(s); i++ {
|
|
if s[i] == b {
|
|
n++
|
|
}
|
|
}
|
|
return n
|
|
}
|
|
|
|
// Index of rightmost occurrence of b in s.
|
|
func last(s string, b byte) int {
|
|
i := len(s)
|
|
for i--; i >= 0; i-- {
|
|
if s[i] == b {
|
|
break
|
|
}
|
|
}
|
|
return i
|
|
}
|
|
|
|
// hasUpperCase tells whether the given string contains at least one upper-case.
|
|
func hasUpperCase(s string) bool {
|
|
for i := range s {
|
|
if 'A' <= s[i] && s[i] <= 'Z' {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// lowerASCIIBytes makes x ASCII lowercase in-place.
|
|
func lowerASCIIBytes(x []byte) {
|
|
for i, b := range x {
|
|
if 'A' <= b && b <= 'Z' {
|
|
x[i] += 'a' - 'A'
|
|
}
|
|
}
|
|
}
|
|
|
|
// lowerASCII returns the ASCII lowercase version of b.
|
|
func lowerASCII(b byte) byte {
|
|
if 'A' <= b && b <= 'Z' {
|
|
return b + ('a' - 'A')
|
|
}
|
|
return b
|
|
}
|
|
|
|
// trimSpace returns x without any leading or trailing ASCII whitespace.
|
|
func trimSpace(x string) string {
|
|
for len(x) > 0 && isSpace(x[0]) {
|
|
x = x[1:]
|
|
}
|
|
for len(x) > 0 && isSpace(x[len(x)-1]) {
|
|
x = x[:len(x)-1]
|
|
}
|
|
return x
|
|
}
|
|
|
|
// isSpace reports whether b is an ASCII space character.
|
|
func isSpace(b byte) bool {
|
|
return b == ' ' || b == '\t' || b == '\n' || b == '\r'
|
|
}
|
|
|
|
// removeComment returns line, removing any '#' byte and any following
|
|
// bytes.
|
|
func removeComment(line string) string {
|
|
if i := bytealg.IndexByteString(line, '#'); i != -1 {
|
|
return line[:i]
|
|
}
|
|
return line
|
|
}
|
|
|
|
// foreachField runs fn on each non-empty run of non-space bytes in x.
|
|
// It returns the first non-nil error returned by fn.
|
|
func foreachField(x string, fn func(field string) error) error {
|
|
x = trimSpace(x)
|
|
for len(x) > 0 {
|
|
sp := bytealg.IndexByteString(x, ' ')
|
|
if sp == -1 {
|
|
return fn(x)
|
|
}
|
|
if field := trimSpace(x[:sp]); len(field) > 0 {
|
|
if err := fn(field); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
x = trimSpace(x[sp+1:])
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// stringsHasSuffix is strings.HasSuffix. It reports whether s ends in
|
|
// suffix.
|
|
func stringsHasSuffix(s, suffix string) bool {
|
|
return len(s) >= len(suffix) && s[len(s)-len(suffix):] == suffix
|
|
}
|
|
|
|
// stringsHasSuffixFold reports whether s ends in suffix,
|
|
// ASCII-case-insensitively.
|
|
func stringsHasSuffixFold(s, suffix string) bool {
|
|
return len(s) >= len(suffix) && stringsEqualFold(s[len(s)-len(suffix):], suffix)
|
|
}
|
|
|
|
// stringsHasPrefix is strings.HasPrefix. It reports whether s begins with prefix.
|
|
func stringsHasPrefix(s, prefix string) bool {
|
|
return len(s) >= len(prefix) && s[:len(prefix)] == prefix
|
|
}
|
|
|
|
// stringsEqualFold is strings.EqualFold, ASCII only. It reports whether s and t
|
|
// are equal, ASCII-case-insensitively.
|
|
func stringsEqualFold(s, t string) bool {
|
|
if len(s) != len(t) {
|
|
return false
|
|
}
|
|
for i := 0; i < len(s); i++ {
|
|
if lowerASCII(s[i]) != lowerASCII(t[i]) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|