mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
189 lines
5.8 KiB
Go
189 lines
5.8 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"errors"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/jedisct1/dlog"
|
|
"github.com/miekg/dns"
|
|
"golang.org/x/crypto/ed25519"
|
|
)
|
|
|
|
type CertInfo struct {
|
|
ServerPk [32]byte
|
|
SharedKey [32]byte
|
|
MagicQuery [ClientMagicLen]byte
|
|
CryptoConstruction CryptoConstruction
|
|
ForwardSecurity bool
|
|
}
|
|
|
|
func FetchCurrentDNSCryptCert(
|
|
proxy *Proxy,
|
|
serverName *string,
|
|
proto string,
|
|
pk ed25519.PublicKey,
|
|
serverAddress string,
|
|
providerName string,
|
|
isNew bool,
|
|
relay *DNSCryptRelay,
|
|
knownBugs ServerBugs,
|
|
) (CertInfo, int, bool, error) {
|
|
if len(pk) != ed25519.PublicKeySize {
|
|
return CertInfo{}, 0, false, errors.New("Invalid public key length")
|
|
}
|
|
if !strings.HasSuffix(providerName, ".") {
|
|
providerName = providerName + "."
|
|
}
|
|
if serverName == nil {
|
|
serverName = &providerName
|
|
}
|
|
query := dns.Msg{}
|
|
query.SetQuestion(providerName, dns.TypeTXT)
|
|
if !strings.HasPrefix(providerName, "2.dnscrypt-cert.") {
|
|
if relay != nil && !proxy.anonDirectCertFallback {
|
|
dlog.Warnf(
|
|
"[%v] uses a non-standard provider name, enable direct cert fallback to use with a relay ('%v' doesn't start with '2.dnscrypt-cert.')",
|
|
*serverName,
|
|
providerName,
|
|
)
|
|
} else {
|
|
dlog.Warnf("[%v] uses a non-standard provider name ('%v' doesn't start with '2.dnscrypt-cert.')", *serverName, providerName)
|
|
relay = nil
|
|
}
|
|
}
|
|
tryFragmentsSupport := true
|
|
if knownBugs.fragmentsBlocked {
|
|
tryFragmentsSupport = false
|
|
}
|
|
in, rtt, fragmentsBlocked, err := DNSExchange(
|
|
proxy,
|
|
proto,
|
|
&query,
|
|
serverAddress,
|
|
relay,
|
|
serverName,
|
|
tryFragmentsSupport,
|
|
)
|
|
if err != nil {
|
|
dlog.Noticef("[%s] TIMEOUT", *serverName)
|
|
return CertInfo{}, 0, fragmentsBlocked, err
|
|
}
|
|
now := uint32(time.Now().Unix())
|
|
certInfo := CertInfo{CryptoConstruction: UndefinedConstruction}
|
|
highestSerial := uint32(0)
|
|
var certCountStr string
|
|
for _, answerRr := range in.Answer {
|
|
var txt string
|
|
if t, ok := answerRr.(*dns.TXT); !ok {
|
|
dlog.Noticef("[%v] Extra record of type [%v] found in certificate", *serverName, answerRr.Header().Rrtype)
|
|
continue
|
|
} else {
|
|
txt = strings.Join(t.Txt, "")
|
|
}
|
|
binCert := PackTXTRR(txt)
|
|
if len(binCert) < 124 {
|
|
dlog.Warnf("[%v] Certificate too short", *serverName)
|
|
continue
|
|
}
|
|
if !bytes.Equal(binCert[:4], CertMagic[:4]) {
|
|
dlog.Warnf("[%v] Invalid cert magic", *serverName)
|
|
continue
|
|
}
|
|
cryptoConstruction := CryptoConstruction(0)
|
|
switch esVersion := binary.BigEndian.Uint16(binCert[4:6]); esVersion {
|
|
case 0x0001:
|
|
cryptoConstruction = XSalsa20Poly1305
|
|
case 0x0002:
|
|
cryptoConstruction = XChacha20Poly1305
|
|
default:
|
|
dlog.Noticef("[%v] Unsupported crypto construction", *serverName)
|
|
continue
|
|
}
|
|
signature := binCert[8:72]
|
|
signed := binCert[72:]
|
|
if !ed25519.Verify(pk, signed, signature) {
|
|
dlog.Warnf("[%v] Incorrect signature for provider name: [%v]", *serverName, providerName)
|
|
continue
|
|
}
|
|
serial := binary.BigEndian.Uint32(binCert[112:116])
|
|
tsBegin := binary.BigEndian.Uint32(binCert[116:120])
|
|
tsEnd := binary.BigEndian.Uint32(binCert[120:124])
|
|
if tsBegin >= tsEnd {
|
|
dlog.Warnf("[%v] certificate ends before it starts (%v >= %v)", *serverName, tsBegin, tsEnd)
|
|
continue
|
|
}
|
|
ttl := tsEnd - tsBegin
|
|
if ttl > 86400*7 {
|
|
dlog.Infof(
|
|
"[%v] the key validity period for this server is excessively long (%d days), significantly reducing reliability and forward security.",
|
|
*serverName,
|
|
ttl/86400,
|
|
)
|
|
daysLeft := (tsEnd - now) / 86400
|
|
if daysLeft < 1 {
|
|
dlog.Criticalf(
|
|
"[%v] certificate will expire today -- Switch to a different resolver as soon as possible",
|
|
*serverName,
|
|
)
|
|
} else if daysLeft <= 7 {
|
|
dlog.Warnf("[%v] certificate is about to expire -- if you don't manage this server, tell the server operator about it", *serverName)
|
|
} else if daysLeft <= 30 {
|
|
dlog.Infof("[%v] certificate will expire in %d days", *serverName, daysLeft)
|
|
} else {
|
|
dlog.Debugf("[%v] certificate still valid for %d days", *serverName, daysLeft)
|
|
}
|
|
certInfo.ForwardSecurity = false
|
|
} else {
|
|
certInfo.ForwardSecurity = true
|
|
}
|
|
if !proxy.certIgnoreTimestamp {
|
|
if now > tsEnd || now < tsBegin {
|
|
dlog.Debugf(
|
|
"[%v] Certificate not valid at the current date (now: %v is not in [%v..%v])",
|
|
*serverName,
|
|
now,
|
|
tsBegin,
|
|
tsEnd,
|
|
)
|
|
continue
|
|
}
|
|
}
|
|
if serial < highestSerial {
|
|
dlog.Debugf("[%v] Superseded by a previous certificate", *serverName)
|
|
continue
|
|
}
|
|
if serial == highestSerial {
|
|
if cryptoConstruction < certInfo.CryptoConstruction {
|
|
dlog.Debugf("[%v] Keeping the previous, preferred crypto construction", *serverName)
|
|
continue
|
|
} else {
|
|
dlog.Debugf("[%v] Upgrading the construction from %v to %v", *serverName, certInfo.CryptoConstruction, cryptoConstruction)
|
|
}
|
|
}
|
|
if cryptoConstruction != XChacha20Poly1305 && cryptoConstruction != XSalsa20Poly1305 {
|
|
dlog.Noticef("[%v] Cryptographic construction %v not supported", *serverName, cryptoConstruction)
|
|
continue
|
|
}
|
|
var serverPk [32]byte
|
|
copy(serverPk[:], binCert[72:104])
|
|
sharedKey := ComputeSharedKey(cryptoConstruction, &proxy.proxySecretKey, &serverPk, &providerName)
|
|
certInfo.SharedKey = sharedKey
|
|
highestSerial = serial
|
|
certInfo.CryptoConstruction = cryptoConstruction
|
|
copy(certInfo.ServerPk[:], serverPk[:])
|
|
copy(certInfo.MagicQuery[:], binCert[104:112])
|
|
if isNew {
|
|
dlog.Noticef("[%s] OK (DNSCrypt) - rtt: %dms%s", *serverName, rtt.Nanoseconds()/1000000, certCountStr)
|
|
} else {
|
|
dlog.Infof("[%s] OK (DNSCrypt) - rtt: %dms%s", *serverName, rtt.Nanoseconds()/1000000, certCountStr)
|
|
}
|
|
certCountStr = " - additional certificate"
|
|
}
|
|
if certInfo.CryptoConstruction == UndefinedConstruction {
|
|
return certInfo, 0, fragmentsBlocked, errors.New("No useable certificate found")
|
|
}
|
|
return certInfo, int(rtt.Nanoseconds() / 1000000), fragmentsBlocked, nil
|
|
}
|