mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-03-31 09:45:38 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4cbe7c8c98 | ||
|
|
7839d2c7b1 | ||
|
|
c4b2236cf9 | ||
|
|
1b90731f20 | ||
|
|
20624acf20 | ||
|
|
01385b6d29 | ||
|
|
5afdee6315 | ||
|
|
874a3613e4 | ||
|
|
dc14a70e9d | ||
|
|
58e4018ab2 |
@@ -4,6 +4,13 @@ This Changelog records major changes between versions.
|
|||||||
|
|
||||||
Not all changes are recorded. Please check git log for details.
|
Not all changes are recorded. Please check git log for details.
|
||||||
|
|
||||||
|
## Version 1.3.4
|
||||||
|
|
||||||
|
- doh-client now silently fails in case of network error to prevent caching of SERVFAIL
|
||||||
|
- EDNS0 is now inserted to the beginning of OPT section, to ensure DNSSEC signatures are at the end
|
||||||
|
- Improve building system
|
||||||
|
- Update documents
|
||||||
|
|
||||||
## Version 1.3.3
|
## Version 1.3.3
|
||||||
|
|
||||||
- Take User-Agent out of common library, that would be better for packaging
|
- Take User-Agent out of common library, that would be better for packaging
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -45,8 +45,8 @@ deps:
|
|||||||
$(GOGET_UPDATE) github.com/m13253/dns-over-https/json-dns
|
$(GOGET_UPDATE) github.com/m13253/dns-over-https/json-dns
|
||||||
$(GOGET) ./doh-client ./doh-server
|
$(GOGET) ./doh-client ./doh-server
|
||||||
|
|
||||||
doh-client/doh-client: deps doh-client/client.go doh-client/config.go doh-client/google.go doh-client/ietf.go doh-client/main.go json-dns/error.go json-dns/globalip.go json-dns/marshal.go json-dns/response.go json-dns/unmarshal.go
|
doh-client/doh-client: deps doh-client/client.go doh-client/config.go doh-client/google.go doh-client/ietf.go doh-client/main.go doh-client/version.go json-dns/error.go json-dns/globalip.go json-dns/marshal.go json-dns/response.go json-dns/unmarshal.go
|
||||||
cd doh-client && $(GOBUILD)
|
cd doh-client && $(GOBUILD)
|
||||||
|
|
||||||
doh-server/doh-server: deps doh-server/config.go doh-server/google.go doh-server/ietf.go doh-server/main.go doh-server/server.go json-dns/error.go json-dns/globalip.go json-dns/marshal.go json-dns/response.go json-dns/unmarshal.go
|
doh-server/doh-server: deps doh-server/config.go doh-server/google.go doh-server/ietf.go doh-server/main.go doh-server/server.go doh-server/version.go json-dns/error.go json-dns/globalip.go json-dns/marshal.go json-dns/response.go json-dns/unmarshal.go
|
||||||
cd doh-server && $(GOBUILD)
|
cd doh-server && $(GOBUILD)
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ The following is a typical DNS-over-HTTPS architecture:
|
|||||||
Although DNS-over-HTTPS can work alone, a HTTP service muxer would be useful as
|
Although DNS-over-HTTPS can work alone, a HTTP service muxer would be useful as
|
||||||
you can host DNS-over-HTTPS along with other HTTPS services.
|
you can host DNS-over-HTTPS along with other HTTPS services.
|
||||||
|
|
||||||
|
HTTP/2 with at least TLS v1.3 is recommended. OCSP stapling must be enabled,
|
||||||
|
otherwise DNS recursion may happen.
|
||||||
|
|
||||||
## DNSSEC
|
## DNSSEC
|
||||||
|
|
||||||
DNS-over-HTTPS is compatible with DNSSEC, and requests DNSSEC signatures by
|
DNS-over-HTTPS is compatible with DNSSEC, and requests DNSSEC signatures by
|
||||||
@@ -90,8 +93,10 @@ EDNS0-Client-Subnet is affecting your privacy, you can set `no_ecs = true` in
|
|||||||
`/etc/dns-over-https/doh-client.conf`, with the cost of slower video streaming
|
`/etc/dns-over-https/doh-client.conf`, with the cost of slower video streaming
|
||||||
or software downloading speed.
|
or software downloading speed.
|
||||||
|
|
||||||
If your server is backed by `unbound` or `bind`, you probably want to enable
|
To ultilize ECS, `X-Forwarded-For` or `X-Real-IP` should be enabled on your
|
||||||
the EDNS0-Client-Subnet feature in their configuration files as well.
|
HTTP service muxer. If your server is backed by `unbound` or `bind`, you
|
||||||
|
probably want to configure it to enable the EDNS0-Client-Subnet feature as
|
||||||
|
well.
|
||||||
|
|
||||||
## Protocol compatibility
|
## Protocol compatibility
|
||||||
|
|
||||||
|
|||||||
@@ -65,19 +65,19 @@ func NewClient(conf *config) (c *Client, err error) {
|
|||||||
conf: conf,
|
conf: conf,
|
||||||
}
|
}
|
||||||
|
|
||||||
udpH := dns.HandlerFunc(c.udpHandlerFunc)
|
udpHandler := dns.HandlerFunc(c.udpHandlerFunc)
|
||||||
tcpH := dns.HandlerFunc(c.tcpHandlerFunc)
|
tcpHandler := dns.HandlerFunc(c.tcpHandlerFunc)
|
||||||
for _, addr := range conf.Listen {
|
for _, addr := range conf.Listen {
|
||||||
c.udpServers = append(c.udpServers, &dns.Server{
|
c.udpServers = append(c.udpServers, &dns.Server{
|
||||||
Addr: addr,
|
Addr: addr,
|
||||||
Net: "udp",
|
Net: "udp",
|
||||||
Handler: udpH,
|
Handler: udpHandler,
|
||||||
UDPSize: 4096,
|
UDPSize: dns.DefaultMsgSize,
|
||||||
})
|
})
|
||||||
c.tcpServers = append(c.tcpServers, &dns.Server{
|
c.tcpServers = append(c.tcpServers, &dns.Server{
|
||||||
Addr: addr,
|
Addr: addr,
|
||||||
Net: "tcp",
|
Net: "tcp",
|
||||||
Handler: tcpH,
|
Handler: tcpHandler,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
c.bootstrapResolver = net.DefaultResolver
|
c.bootstrapResolver = net.DefaultResolver
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ bootstrap = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# Timeout for upstream request
|
# Timeout for upstream request
|
||||||
timeout = 10
|
timeout = 30
|
||||||
|
|
||||||
# Disable HTTP Cookies
|
# Disable HTTP Cookies
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -73,9 +73,9 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
opt = new(dns.OPT)
|
opt = new(dns.OPT)
|
||||||
opt.Hdr.Name = "."
|
opt.Hdr.Name = "."
|
||||||
opt.Hdr.Rrtype = dns.TypeOPT
|
opt.Hdr.Rrtype = dns.TypeOPT
|
||||||
opt.SetUDPSize(4096)
|
opt.SetUDPSize(dns.DefaultMsgSize)
|
||||||
opt.SetDo(false)
|
opt.SetDo(false)
|
||||||
r.Extra = append(r.Extra, opt)
|
r.Extra = append([]dns.RR{opt}, r.Extra...)
|
||||||
} else {
|
} else {
|
||||||
udpSize = opt.UDPSize()
|
udpSize = opt.UDPSize()
|
||||||
}
|
}
|
||||||
@@ -134,9 +134,8 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
if len(requestURL) < 2048 {
|
if len(requestURL) < 2048 {
|
||||||
req, err = http.NewRequest("GET", requestURL, nil)
|
req, err = http.NewRequest("GET", requestURL, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
// Do not respond, silently fail to prevent caching of SERVFAIL
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
reply.Rcode = dns.RcodeServerFailure
|
|
||||||
w.WriteMsg(reply)
|
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
@@ -144,9 +143,8 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
} else {
|
} else {
|
||||||
req, err = http.NewRequest("POST", upstream, bytes.NewReader(requestBinary))
|
req, err = http.NewRequest("POST", upstream, bytes.NewReader(requestBinary))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
// Do not respond, silently fail to prevent caching of SERVFAIL
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
reply.Rcode = dns.RcodeServerFailure
|
|
||||||
w.WriteMsg(reply)
|
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,5 +23,7 @@
|
|||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
const VERSION = "1.3.3"
|
const (
|
||||||
const USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
VERSION = "1.3.4"
|
||||||
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
|
)
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ func (s *Server) parseRequestGoogle(w http.ResponseWriter, r *http.Request) *DNS
|
|||||||
opt := new(dns.OPT)
|
opt := new(dns.OPT)
|
||||||
opt.Hdr.Name = "."
|
opt.Hdr.Name = "."
|
||||||
opt.Hdr.Rrtype = dns.TypeOPT
|
opt.Hdr.Rrtype = dns.TypeOPT
|
||||||
opt.SetUDPSize(4096)
|
opt.SetUDPSize(dns.DefaultMsgSize)
|
||||||
opt.SetDo(true)
|
opt.SetDo(true)
|
||||||
if ednsClientAddress != nil {
|
if ednsClientAddress != nil {
|
||||||
edns0Subnet := new(dns.EDNS0_SUBNET)
|
edns0Subnet := new(dns.EDNS0_SUBNET)
|
||||||
|
|||||||
@@ -93,9 +93,9 @@ func (s *Server) parseRequestIETF(w http.ResponseWriter, r *http.Request) *DNSRe
|
|||||||
opt = new(dns.OPT)
|
opt = new(dns.OPT)
|
||||||
opt.Hdr.Name = "."
|
opt.Hdr.Name = "."
|
||||||
opt.Hdr.Rrtype = dns.TypeOPT
|
opt.Hdr.Rrtype = dns.TypeOPT
|
||||||
opt.SetUDPSize(4096)
|
opt.SetUDPSize(dns.DefaultMsgSize)
|
||||||
opt.SetDo(false)
|
opt.SetDo(false)
|
||||||
msg.Extra = append(msg.Extra, opt)
|
msg.Extra = append([]dns.RR{opt}, msg.Extra...)
|
||||||
}
|
}
|
||||||
var edns0Subnet *dns.EDNS0_SUBNET
|
var edns0Subnet *dns.EDNS0_SUBNET
|
||||||
for _, option := range opt.Option {
|
for _, option := range opt.Option {
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ func NewServer(conf *config) (s *Server) {
|
|||||||
conf: conf,
|
conf: conf,
|
||||||
udpClient: &dns.Client{
|
udpClient: &dns.Client{
|
||||||
Net: "udp",
|
Net: "udp",
|
||||||
|
UDPSize: dns.DefaultMsgSize,
|
||||||
Timeout: time.Duration(conf.Timeout) * time.Second,
|
Timeout: time.Duration(conf.Timeout) * time.Second,
|
||||||
},
|
},
|
||||||
tcpClient: &dns.Client{
|
tcpClient: &dns.Client{
|
||||||
|
|||||||
@@ -23,5 +23,7 @@
|
|||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
const VERSION = "1.3.3"
|
const (
|
||||||
const USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
VERSION = "1.3.4"
|
||||||
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user