mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Unofficially support DoH/ODoH over HTTP
This commit is contained in:
parent
87571d4a7f
commit
8bea679e7b
1 changed files with 34 additions and 25 deletions
|
@ -854,10 +854,17 @@ func _fetchODoHTargetInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, i
|
||||||
if msg.Rcode != dns.RcodeNameError {
|
if msg.Rcode != dns.RcodeNameError {
|
||||||
dlog.Criticalf("[%s] may be a lying resolver", name)
|
dlog.Criticalf("[%s] may be a lying resolver", name)
|
||||||
}
|
}
|
||||||
|
protocol := "http"
|
||||||
protocol := tls.NegotiatedProtocol
|
tlsVersion := uint16(0)
|
||||||
|
tlsCipherSuite := uint16(0)
|
||||||
|
if tls != nil {
|
||||||
|
protocol = tls.NegotiatedProtocol
|
||||||
if len(protocol) == 0 {
|
if len(protocol) == 0 {
|
||||||
protocol = "http/1.x"
|
protocol = "http/1.x"
|
||||||
|
} else {
|
||||||
|
tlsVersion = tls.Version
|
||||||
|
tlsCipherSuite = tls.CipherSuite
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if strings.HasPrefix(protocol, "http/1.") {
|
if strings.HasPrefix(protocol, "http/1.") {
|
||||||
dlog.Warnf("[%s] does not support HTTP/2", name)
|
dlog.Warnf("[%s] does not support HTTP/2", name)
|
||||||
|
@ -865,13 +872,14 @@ func _fetchODoHTargetInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, i
|
||||||
dlog.Infof(
|
dlog.Infof(
|
||||||
"[%s] TLS version: %x - Protocol: %v - Cipher suite: %v",
|
"[%s] TLS version: %x - Protocol: %v - Cipher suite: %v",
|
||||||
name,
|
name,
|
||||||
tls.Version,
|
tlsVersion,
|
||||||
protocol,
|
protocol,
|
||||||
tls.CipherSuite,
|
tlsCipherSuite,
|
||||||
)
|
)
|
||||||
showCerts := proxy.showCerts
|
showCerts := proxy.showCerts
|
||||||
found := false
|
found := false
|
||||||
var wantedHash [32]byte
|
var wantedHash [32]byte
|
||||||
|
if tls != nil {
|
||||||
for _, cert := range tls.PeerCertificates {
|
for _, cert := range tls.PeerCertificates {
|
||||||
h := sha256.Sum256(cert.RawTBSCertificate)
|
h := sha256.Sum256(cert.RawTBSCertificate)
|
||||||
if showCerts {
|
if showCerts {
|
||||||
|
@ -896,6 +904,7 @@ func _fetchODoHTargetInfo(proxy *Proxy, name string, stamp stamps.ServerStamp, i
|
||||||
dlog.Criticalf("[%s] Certificate hash [%x] not found", name, wantedHash)
|
dlog.Criticalf("[%s] Certificate hash [%x] not found", name, wantedHash)
|
||||||
return ServerInfo{}, fmt.Errorf("Certificate hash not found")
|
return ServerInfo{}, fmt.Errorf("Certificate hash not found")
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if len(serverResponse) < MinDNSPacketSize || len(serverResponse) > MaxDNSPacketSize ||
|
if len(serverResponse) < MinDNSPacketSize || len(serverResponse) > MaxDNSPacketSize ||
|
||||||
serverResponse[0] != 0xca || serverResponse[1] != 0xfe || serverResponse[4] != 0x00 || serverResponse[5] != 0x01 {
|
serverResponse[0] != 0xca || serverResponse[1] != 0xfe || serverResponse[4] != 0x00 || serverResponse[5] != 0x01 {
|
||||||
dlog.Info("Webserver returned an unexpected response")
|
dlog.Info("Webserver returned an unexpected response")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue