mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-03-31 18:25:38 +00:00
Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a3f4468325 | ||
|
|
fa2bcf74a9 | ||
|
|
01d60df9cd | ||
|
|
4c0cae7111 | ||
|
|
95fe3e3b4e | ||
|
|
35ddf43505 | ||
|
|
3083b668ca | ||
|
|
dd8ea973f4 | ||
|
|
0df0002e6b | ||
|
|
3affb2c227 | ||
|
|
7c7b7d969d | ||
|
|
4754aa0414 | ||
|
|
2d9c9eba50 | ||
|
|
c51be0e69c | ||
|
|
95ec839409 | ||
|
|
502fe6b048 | ||
|
|
f8b40c4bfc | ||
|
|
bb1e21778a | ||
|
|
afa0d563d0 | ||
|
|
017a18f20c | ||
|
|
0577ff6dca | ||
|
|
ef2c6bbdc8 | ||
|
|
4d742bd15e | ||
|
|
3b112b946e | ||
|
|
6d19cbb9ad | ||
|
|
b094a8d4fd | ||
|
|
c1f6fe1997 | ||
|
|
1fb3ed3513 | ||
|
|
c85ef45840 | ||
|
|
85d81d3d0b | ||
|
|
ab0eddb0ba | ||
|
|
aa3389b1d0 | ||
|
|
6eb7b29142 | ||
|
|
ea0a769389 | ||
|
|
e480251e67 | ||
|
|
027480afeb | ||
|
|
4839498ad5 | ||
|
|
a303c21036 | ||
|
|
3586688aa6 | ||
|
|
ffe5573552 | ||
|
|
f40116b1f8 | ||
|
|
58e6cdfb71 | ||
|
|
1491138f69 | ||
|
|
83df8964d8 | ||
|
|
07f39088d4 | ||
|
|
db007fbded | ||
|
|
89d809d469 |
27
Changelog.md
27
Changelog.md
@@ -4,6 +4,33 @@ 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.4.2
|
||||||
|
|
||||||
|
- Add PID file feature for systems which lacks a cgroup-based process tracker.
|
||||||
|
- Remove dns.ErrTruncated according to <https://github.com/miekg/dns/pull/815>.
|
||||||
|
|
||||||
|
## Version 1.4.1
|
||||||
|
|
||||||
|
- Add a configuration option: `debug_http_headers` (e.g. Add `CF-Ray` to diagnose Cloudflare's resolver)
|
||||||
|
- Add a configuration option: `passrthrough`
|
||||||
|
- macOS logger is rebuilt with static libswiftCore
|
||||||
|
- Fix HTTP stream leaking problem, which may cause massive half-open connections if HTTP/1 is in use
|
||||||
|
- Utilize Go's cancelable context to detect timeouts more reliably.
|
||||||
|
- Fix interoperation problems with gDNS
|
||||||
|
- CORS is enabled by default in doh-server
|
||||||
|
- Documentation updates
|
||||||
|
|
||||||
|
## Version 1.3.10
|
||||||
|
|
||||||
|
- Enable application/dns-message (draft-13) by default, since Google has finally supported it
|
||||||
|
|
||||||
|
## Version 1.3.9
|
||||||
|
|
||||||
|
- Fix client crash with `no_cookies = true`
|
||||||
|
- Add 5380 as an additional default doh-client port
|
||||||
|
- If `$GOROOT` is defined, Makefile now respects the value for the convenience of Debian/Ubuntu users
|
||||||
|
- Change the ECS prefix length from /48 to /56 for IPv6, per RFC 7871
|
||||||
|
|
||||||
## Version 1.3.8
|
## Version 1.3.8
|
||||||
|
|
||||||
- Workaround a bug causing Firefox 61-62 to reject responses with Content-Type = application/dns-message
|
- Workaround a bug causing Firefox 61-62 to reject responses with Content-Type = application/dns-message
|
||||||
|
|||||||
22
Makefile
22
Makefile
@@ -1,13 +1,21 @@
|
|||||||
.PHONY: all clean install uninstall deps
|
.PHONY: all clean install uninstall deps
|
||||||
|
|
||||||
GOBUILD=go build
|
PREFIX = /usr/local
|
||||||
GOGET=go get -d -v
|
|
||||||
GOGET_UPDATE=go get -d -u -v
|
ifeq ($(GOROOT),)
|
||||||
PREFIX=/usr/local
|
GOBUILD = go build
|
||||||
ifeq ($(shell uname),Darwin)
|
GOGET = go get -d -v
|
||||||
CONFDIR=/usr/local/etc/dns-over-https
|
GOGET_UPDATE = go get -d -u -v
|
||||||
else
|
else
|
||||||
CONFDIR=/etc/dns-over-https
|
GOBUILD = $(GOROOT)/bin/go build
|
||||||
|
GOGET = $(GOROOT)/bin/go get -d -v
|
||||||
|
GOGET_UPDATE = $(GOROOT)/bin/go get -d -u -v
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(shell uname),Darwin)
|
||||||
|
CONFDIR = /usr/local/etc/dns-over-https
|
||||||
|
else
|
||||||
|
CONFDIR = /etc/dns-over-https
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: doh-client/doh-client doh-server/doh-server
|
all: doh-client/doh-client doh-server/doh-server
|
||||||
|
|||||||
22
Readme.md
22
Readme.md
@@ -2,11 +2,17 @@ DNS-over-HTTPS
|
|||||||
==============
|
==============
|
||||||
|
|
||||||
Client and server software to query DNS over HTTPS, using [Google DNS-over-HTTPS protocol](https://developers.google.com/speed/public-dns/docs/dns-over-https)
|
Client and server software to query DNS over HTTPS, using [Google DNS-over-HTTPS protocol](https://developers.google.com/speed/public-dns/docs/dns-over-https)
|
||||||
and [draft-ietf-doh-dns-over-https](https://github.com/dohwg/draft-ietf-doh-dns-over-https).
|
and [IETF DNS-over-HTTPS (RFC 8484)](https://www.rfc-editor.org/rfc/rfc8484.txt).
|
||||||
|
|
||||||
## Easy start
|
## Guide
|
||||||
|
|
||||||
Install [Go](https://golang.org), at least version 1.9.
|
[Tutorial to setup your own DNS-over-HTTPS (DoH) server](https://www.aaflalo.me/2018/10/tutorial-setup-dns-over-https-server/). (Thanks to Antoine Aflalo)
|
||||||
|
|
||||||
|
## Installing
|
||||||
|
|
||||||
|
Install [Go](https://golang.org), at least version 1.10.
|
||||||
|
|
||||||
|
(Note for Debian/Ubuntu users: You need to set `$GOROOT` if you could not get your new version of Go selected by the Makefile.)
|
||||||
|
|
||||||
First create an empty directory, used for `$GOPATH`:
|
First create an empty directory, used for `$GOPATH`:
|
||||||
|
|
||||||
@@ -83,7 +89,7 @@ records.
|
|||||||
## EDNS0-Client-Subnet (GeoDNS)
|
## EDNS0-Client-Subnet (GeoDNS)
|
||||||
|
|
||||||
DNS-over-HTTPS supports EDNS0-Client-Subnet protocol, which submits part of the
|
DNS-over-HTTPS supports EDNS0-Client-Subnet protocol, which submits part of the
|
||||||
client's IP address (/24 for IPv4, /48 for IPv6 by default) to the upstream
|
client's IP address (/24 for IPv4, /56 for IPv6 by default) to the upstream
|
||||||
server. This is useful for GeoDNS and CDNs to work, and is exactly the same
|
server. This is useful for GeoDNS and CDNs to work, and is exactly the same
|
||||||
configuration as most public DNS servers.
|
configuration as most public DNS servers.
|
||||||
|
|
||||||
@@ -107,11 +113,9 @@ except for absolute expire time is preferred to relative TTL value. Refer to
|
|||||||
[json-dns/response.go](json-dns/response.go) for a complete description of the
|
[json-dns/response.go](json-dns/response.go) for a complete description of the
|
||||||
API.
|
API.
|
||||||
|
|
||||||
### IETF DNS-over-HTTPS Protocol (Draft)
|
### IETF DNS-over-HTTPS Protocol
|
||||||
|
|
||||||
DNS-over-HTTPS uses a protocol compatible to [draft-ietf-doh-dns-over-https](https://github.com/dohwg/draft-ietf-doh-dns-over-https).
|
DNS-over-HTTPS uses a protocol compatible to [IETF DNS-over-HTTPS (RFC 8484)](https://www.rfc-editor.org/rfc/rfc8484.txt).
|
||||||
This protocol is in draft stage. Any incompatibility may be introduced before
|
|
||||||
it is finished.
|
|
||||||
|
|
||||||
### Supported features
|
### Supported features
|
||||||
|
|
||||||
@@ -119,7 +123,7 @@ Currently supported features are:
|
|||||||
|
|
||||||
- [X] IPv4 / IPv6
|
- [X] IPv4 / IPv6
|
||||||
- [X] EDNS0 large UDP packet (4 KiB by default)
|
- [X] EDNS0 large UDP packet (4 KiB by default)
|
||||||
- [X] EDNS0-Client-Subnet (/24 for IPv4, /48 for IPv6 by default)
|
- [X] EDNS0-Client-Subnet (/24 for IPv4, /56 for IPv6 by default)
|
||||||
|
|
||||||
## The name of the project
|
## The name of the project
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ PREFIX = /usr/local
|
|||||||
all: doh-logger
|
all: doh-logger
|
||||||
|
|
||||||
doh-logger: doh-logger.swift
|
doh-logger: doh-logger.swift
|
||||||
$(SWIFTC) -o $@ -O $<
|
$(SWIFTC) -o $@ -O -static-stdlib $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f doh-logger
|
rm -f doh-logger
|
||||||
|
|||||||
@@ -25,11 +25,13 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/cookiejar"
|
"net/http/cookiejar"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
@@ -37,15 +39,19 @@ import (
|
|||||||
"github.com/m13253/dns-over-https/json-dns"
|
"github.com/m13253/dns-over-https/json-dns"
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
"golang.org/x/net/http2"
|
"golang.org/x/net/http2"
|
||||||
|
"golang.org/x/net/idna"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Client struct {
|
type Client struct {
|
||||||
conf *config
|
conf *config
|
||||||
bootstrap []string
|
bootstrap []string
|
||||||
|
passthrough []string
|
||||||
|
udpClient *dns.Client
|
||||||
|
tcpClient *dns.Client
|
||||||
udpServers []*dns.Server
|
udpServers []*dns.Server
|
||||||
tcpServers []*dns.Server
|
tcpServers []*dns.Server
|
||||||
bootstrapResolver *net.Resolver
|
bootstrapResolver *net.Resolver
|
||||||
cookieJar *cookiejar.Jar
|
cookieJar http.CookieJar
|
||||||
httpClientMux *sync.RWMutex
|
httpClientMux *sync.RWMutex
|
||||||
httpTransport *http.Transport
|
httpTransport *http.Transport
|
||||||
httpClient *http.Client
|
httpClient *http.Client
|
||||||
@@ -69,6 +75,15 @@ func NewClient(conf *config) (c *Client, err error) {
|
|||||||
|
|
||||||
udpHandler := dns.HandlerFunc(c.udpHandlerFunc)
|
udpHandler := dns.HandlerFunc(c.udpHandlerFunc)
|
||||||
tcpHandler := dns.HandlerFunc(c.tcpHandlerFunc)
|
tcpHandler := dns.HandlerFunc(c.tcpHandlerFunc)
|
||||||
|
c.udpClient = &dns.Client{
|
||||||
|
Net: "udp",
|
||||||
|
UDPSize: dns.DefaultMsgSize,
|
||||||
|
Timeout: time.Duration(conf.Timeout) * time.Second,
|
||||||
|
}
|
||||||
|
c.tcpClient = &dns.Client{
|
||||||
|
Net: "tcp",
|
||||||
|
Timeout: time.Duration(conf.Timeout) * time.Second,
|
||||||
|
}
|
||||||
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,
|
||||||
@@ -105,6 +120,15 @@ func NewClient(conf *config) (c *Client, err error) {
|
|||||||
return conn, err
|
return conn, err
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
if len(conf.Passthrough) != 0 {
|
||||||
|
c.passthrough = make([]string, len(conf.Passthrough))
|
||||||
|
for i, passthrough := range conf.Passthrough {
|
||||||
|
if punycode, err := idna.ToASCII(passthrough); err != nil {
|
||||||
|
passthrough = punycode
|
||||||
|
}
|
||||||
|
c.passthrough[i] = "." + strings.ToLower(strings.Trim(passthrough, ".")) + "."
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Most CDNs require Cookie support to prevent DDoS attack.
|
// Most CDNs require Cookie support to prevent DDoS attack.
|
||||||
// Disabling Cookie does not effectively prevent tracking,
|
// Disabling Cookie does not effectively prevent tracking,
|
||||||
@@ -114,7 +138,10 @@ func NewClient(conf *config) (c *Client, err error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
c.cookieJar = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
c.httpClientMux = new(sync.RWMutex)
|
c.httpClientMux = new(sync.RWMutex)
|
||||||
err = c.newHTTPClient()
|
err = c.newHTTPClient()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -126,7 +153,7 @@ func NewClient(conf *config) (c *Client, err error) {
|
|||||||
func (c *Client) newHTTPClient() error {
|
func (c *Client) newHTTPClient() error {
|
||||||
c.httpClientMux.Lock()
|
c.httpClientMux.Lock()
|
||||||
defer c.httpClientMux.Unlock()
|
defer c.httpClientMux.Unlock()
|
||||||
if !c.httpClientLastCreate.IsZero() && time.Now().Sub(c.httpClientLastCreate) < time.Duration(c.conf.Timeout)*time.Second {
|
if !c.httpClientLastCreate.IsZero() && time.Since(c.httpClientLastCreate) < time.Duration(c.conf.Timeout)*time.Second {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if c.httpTransport != nil {
|
if c.httpTransport != nil {
|
||||||
@@ -145,7 +172,6 @@ func (c *Client) newHTTPClient() error {
|
|||||||
MaxIdleConns: 100,
|
MaxIdleConns: 100,
|
||||||
MaxIdleConnsPerHost: 10,
|
MaxIdleConnsPerHost: 10,
|
||||||
Proxy: http.ProxyFromEnvironment,
|
Proxy: http.ProxyFromEnvironment,
|
||||||
ResponseHeaderTimeout: time.Duration(c.conf.Timeout) * time.Second,
|
|
||||||
TLSHandshakeTimeout: time.Duration(c.conf.Timeout) * time.Second,
|
TLSHandshakeTimeout: time.Duration(c.conf.Timeout) * time.Second,
|
||||||
}
|
}
|
||||||
if c.conf.NoIPv6 {
|
if c.conf.NoIPv6 {
|
||||||
@@ -191,11 +217,73 @@ func (c *Client) Start() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) handlerFunc(w dns.ResponseWriter, r *dns.Msg, isTCP bool) {
|
func (c *Client) handlerFunc(w dns.ResponseWriter, r *dns.Msg, isTCP bool) {
|
||||||
if r.Response == true {
|
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(c.conf.Timeout)*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
if r.Response {
|
||||||
log.Println("Received a response packet")
|
log.Println("Received a response packet")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(r.Question) != 1 {
|
||||||
|
log.Println("Number of questions is not 1")
|
||||||
|
reply := jsonDNS.PrepareReply(r)
|
||||||
|
reply.Rcode = dns.RcodeFormatError
|
||||||
|
w.WriteMsg(reply)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
question := &r.Question[0]
|
||||||
|
questionName := question.Name
|
||||||
|
questionClass := ""
|
||||||
|
if qclass, ok := dns.ClassToString[question.Qclass]; ok {
|
||||||
|
questionClass = qclass
|
||||||
|
} else {
|
||||||
|
questionClass = strconv.FormatUint(uint64(question.Qclass), 10)
|
||||||
|
}
|
||||||
|
questionType := ""
|
||||||
|
if qtype, ok := dns.TypeToString[question.Qtype]; ok {
|
||||||
|
questionType = qtype
|
||||||
|
} else {
|
||||||
|
questionType = strconv.FormatUint(uint64(question.Qtype), 10)
|
||||||
|
}
|
||||||
|
if c.conf.Verbose {
|
||||||
|
fmt.Printf("%s - - [%s] \"%s %s %s\"\n", w.RemoteAddr(), time.Now().Format("02/Jan/2006:15:04:05 -0700"), questionName, questionClass, questionType)
|
||||||
|
}
|
||||||
|
|
||||||
|
shouldPassthrough := false
|
||||||
|
passthroughQuestionName := questionName
|
||||||
|
if punycode, err := idna.ToASCII(passthroughQuestionName); err != nil {
|
||||||
|
passthroughQuestionName = punycode
|
||||||
|
}
|
||||||
|
passthroughQuestionName = "." + strings.ToLower(strings.Trim(passthroughQuestionName, ".")) + "."
|
||||||
|
for _, passthrough := range c.passthrough {
|
||||||
|
if strings.HasSuffix(passthroughQuestionName, passthrough) {
|
||||||
|
shouldPassthrough = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if shouldPassthrough {
|
||||||
|
numServers := len(c.bootstrap)
|
||||||
|
upstream := c.bootstrap[rand.Intn(numServers)]
|
||||||
|
log.Printf("Request \"%s %s %s\" is passed through %s.\n", questionName, questionClass, questionType, upstream)
|
||||||
|
var reply *dns.Msg
|
||||||
|
var err error
|
||||||
|
if !isTCP {
|
||||||
|
reply, _, err = c.udpClient.Exchange(r, upstream)
|
||||||
|
} else {
|
||||||
|
reply, _, err = c.tcpClient.Exchange(r, upstream)
|
||||||
|
}
|
||||||
|
if err == nil {
|
||||||
|
w.WriteMsg(reply)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Println(err)
|
||||||
|
reply = jsonDNS.PrepareReply(r)
|
||||||
|
reply.Rcode = dns.RcodeServerFailure
|
||||||
|
w.WriteMsg(reply)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
requestType := ""
|
requestType := ""
|
||||||
if len(c.conf.UpstreamIETF) == 0 {
|
if len(c.conf.UpstreamIETF) == 0 {
|
||||||
requestType = "application/dns-json"
|
requestType = "application/dns-json"
|
||||||
@@ -213,13 +301,21 @@ func (c *Client) handlerFunc(w dns.ResponseWriter, r *dns.Msg, isTCP bool) {
|
|||||||
|
|
||||||
var req *DNSRequest
|
var req *DNSRequest
|
||||||
if requestType == "application/dns-json" {
|
if requestType == "application/dns-json" {
|
||||||
req = c.generateRequestGoogle(w, r, isTCP)
|
req = c.generateRequestGoogle(ctx, w, r, isTCP)
|
||||||
} else if requestType == "application/dns-message" {
|
} else if requestType == "application/dns-message" {
|
||||||
req = c.generateRequestIETF(w, r, isTCP)
|
req = c.generateRequestIETF(ctx, w, r, isTCP)
|
||||||
} else {
|
} else {
|
||||||
panic("Unknown request Content-Type")
|
panic("Unknown request Content-Type")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if req.response != nil {
|
||||||
|
defer req.response.Body.Close()
|
||||||
|
for _, header := range c.conf.DebugHTTPHeaders {
|
||||||
|
if value := req.response.Header.Get(header); value != "" {
|
||||||
|
log.Printf("%s: %s\n", header, value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if req.err != nil {
|
if req.err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -241,9 +337,9 @@ func (c *Client) handlerFunc(w dns.ResponseWriter, r *dns.Msg, isTCP bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if contentType == "application/json" {
|
if contentType == "application/json" {
|
||||||
c.parseResponseGoogle(w, r, isTCP, req)
|
c.parseResponseGoogle(ctx, w, r, isTCP, req)
|
||||||
} else if contentType == "application/dns-message" {
|
} else if contentType == "application/dns-message" {
|
||||||
c.parseResponseIETF(w, r, isTCP, req)
|
c.parseResponseIETF(ctx, w, r, isTCP, req)
|
||||||
} else {
|
} else {
|
||||||
panic("Unknown response Content-Type")
|
panic("Unknown response Content-Type")
|
||||||
}
|
}
|
||||||
@@ -259,7 +355,7 @@ func (c *Client) tcpHandlerFunc(w dns.ResponseWriter, r *dns.Msg) {
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
ipv4Mask24 = net.IPMask{255, 255, 255, 0}
|
ipv4Mask24 = net.IPMask{255, 255, 255, 0}
|
||||||
ipv6Mask48 = net.CIDRMask(48, 128)
|
ipv6Mask56 = net.CIDRMask(56, 128)
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Client) findClientIP(w dns.ResponseWriter, r *dns.Msg) (ednsClientAddress net.IP, ednsClientNetmask uint8) {
|
func (c *Client) findClientIP(w dns.ResponseWriter, r *dns.Msg) (ednsClientAddress net.IP, ednsClientNetmask uint8) {
|
||||||
@@ -286,8 +382,8 @@ func (c *Client) findClientIP(w dns.ResponseWriter, r *dns.Msg) (ednsClientAddre
|
|||||||
ednsClientAddress = ipv4.Mask(ipv4Mask24)
|
ednsClientAddress = ipv4.Mask(ipv4Mask24)
|
||||||
ednsClientNetmask = 24
|
ednsClientNetmask = 24
|
||||||
} else {
|
} else {
|
||||||
ednsClientAddress = ip.Mask(ipv6Mask48)
|
ednsClientAddress = ip.Mask(ipv6Mask56)
|
||||||
ednsClientNetmask = 48
|
ednsClientNetmask = 56
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -30,15 +30,17 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type config struct {
|
type config struct {
|
||||||
Listen []string `toml:"listen"`
|
Listen []string `toml:"listen"`
|
||||||
UpstreamGoogle []string `toml:"upstream_google"`
|
UpstreamGoogle []string `toml:"upstream_google"`
|
||||||
UpstreamIETF []string `toml:"upstream_ietf"`
|
UpstreamIETF []string `toml:"upstream_ietf"`
|
||||||
Bootstrap []string `toml:"bootstrap"`
|
Bootstrap []string `toml:"bootstrap"`
|
||||||
Timeout uint `toml:"timeout"`
|
Passthrough []string `toml:"passthrough"`
|
||||||
NoCookies bool `toml:"no_cookies"`
|
Timeout uint `toml:"timeout"`
|
||||||
NoECS bool `toml:"no_ecs"`
|
NoCookies bool `toml:"no_cookies"`
|
||||||
NoIPv6 bool `toml:"no_ipv6"`
|
NoECS bool `toml:"no_ecs"`
|
||||||
Verbose bool `toml:"verbose"`
|
NoIPv6 bool `toml:"no_ipv6"`
|
||||||
|
Verbose bool `toml:"verbose"`
|
||||||
|
DebugHTTPHeaders []string `toml:"debug_http_headers"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadConfig(path string) (*config, error) {
|
func loadConfig(path string) (*config, error) {
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
# DNS listen port
|
# DNS listen port
|
||||||
listen = [
|
listen = [
|
||||||
"127.0.0.1:53",
|
"127.0.0.1:53",
|
||||||
|
"127.0.0.1:5380",
|
||||||
"[::1]:53",
|
"[::1]:53",
|
||||||
|
"[::1]:5380",
|
||||||
]
|
]
|
||||||
|
|
||||||
# HTTP path for upstream resolver
|
# HTTP path for upstream resolver
|
||||||
@@ -56,6 +58,24 @@ bootstrap = [
|
|||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# The domain names here are directly passed to bootstrap servers listed above,
|
||||||
|
# allowing captive portal detection and systems without RTC to work.
|
||||||
|
# Only effective if at least one bootstrap server is configured.
|
||||||
|
passthrough = [
|
||||||
|
"captive.apple.com",
|
||||||
|
"connectivitycheck.gstatic.com",
|
||||||
|
"detectportal.firefox.com",
|
||||||
|
"msftconnecttest.com",
|
||||||
|
"nmcheck.gnome.org",
|
||||||
|
|
||||||
|
"pool.ntp.org",
|
||||||
|
"time.apple.com",
|
||||||
|
"time.asia.apple.com",
|
||||||
|
"time.euro.apple.com",
|
||||||
|
"time.nist.gov",
|
||||||
|
"time.windows.com",
|
||||||
|
]
|
||||||
|
|
||||||
# Timeout for upstream request
|
# Timeout for upstream request
|
||||||
timeout = 30
|
timeout = 30
|
||||||
|
|
||||||
@@ -70,7 +90,7 @@ no_cookies = true
|
|||||||
# Disable EDNS0-Client-Subnet (ECS)
|
# Disable EDNS0-Client-Subnet (ECS)
|
||||||
#
|
#
|
||||||
# DNS-over-HTTPS supports EDNS0-Client-Subnet protocol, which submits part of
|
# DNS-over-HTTPS supports EDNS0-Client-Subnet protocol, which submits part of
|
||||||
# the client's IP address (/24 for IPv4, /48 for IPv6 by default) to the
|
# the client's IP address (/24 for IPv4, /56 for IPv6 by default) to the
|
||||||
# upstream server. This is useful for GeoDNS and CDNs to work, and is exactly
|
# upstream server. This is useful for GeoDNS and CDNs to work, and is exactly
|
||||||
# the same configuration as most public DNS servers.
|
# the same configuration as most public DNS servers.
|
||||||
no_ecs = false
|
no_ecs = false
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@@ -33,34 +34,28 @@ import (
|
|||||||
"net/url"
|
"net/url"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/m13253/dns-over-https/json-dns"
|
"github.com/m13253/dns-over-https/json-dns"
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Client) generateRequestGoogle(w dns.ResponseWriter, r *dns.Msg, isTCP bool) *DNSRequest {
|
func (c *Client) generateRequestGoogle(ctx context.Context, w dns.ResponseWriter, r *dns.Msg, isTCP bool) *DNSRequest {
|
||||||
reply := jsonDNS.PrepareReply(r)
|
question := &r.Question[0]
|
||||||
|
questionName := question.Name
|
||||||
if len(r.Question) != 1 {
|
questionClass := question.Qclass
|
||||||
log.Println("Number of questions is not 1")
|
if questionClass != dns.ClassINET {
|
||||||
reply.Rcode = dns.RcodeFormatError
|
reply := jsonDNS.PrepareReply(r)
|
||||||
|
reply.Rcode = dns.RcodeRefused
|
||||||
w.WriteMsg(reply)
|
w.WriteMsg(reply)
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: &dns.Error{},
|
err: &dns.Error{},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
question := &r.Question[0]
|
|
||||||
questionName := question.Name
|
|
||||||
questionType := ""
|
questionType := ""
|
||||||
if qtype, ok := dns.TypeToString[question.Qtype]; ok {
|
if qtype, ok := dns.TypeToString[question.Qtype]; ok {
|
||||||
questionType = qtype
|
questionType = qtype
|
||||||
} else {
|
} else {
|
||||||
questionType = strconv.Itoa(int(question.Qtype))
|
questionType = strconv.FormatUint(uint64(question.Qtype), 10)
|
||||||
}
|
|
||||||
|
|
||||||
if c.conf.Verbose {
|
|
||||||
fmt.Printf("%s - - [%s] \"%s IN %s\"\n", w.RemoteAddr(), time.Now().Format("02/Jan/2006:15:04:05 -0700"), questionName, questionType)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
numServers := len(c.conf.UpstreamGoogle)
|
numServers := len(c.conf.UpstreamGoogle)
|
||||||
@@ -84,6 +79,7 @@ func (c *Client) generateRequestGoogle(w dns.ResponseWriter, r *dns.Msg, isTCP b
|
|||||||
req, err := http.NewRequest("GET", requestURL, nil)
|
req, err := http.NewRequest("GET", requestURL, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
|
reply := jsonDNS.PrepareReply(r)
|
||||||
reply.Rcode = dns.RcodeServerFailure
|
reply.Rcode = dns.RcodeServerFailure
|
||||||
w.WriteMsg(reply)
|
w.WriteMsg(reply)
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
@@ -92,17 +88,22 @@ func (c *Client) generateRequestGoogle(w dns.ResponseWriter, r *dns.Msg, isTCP b
|
|||||||
}
|
}
|
||||||
req.Header.Set("Accept", "application/json, application/dns-message, application/dns-udpwireformat")
|
req.Header.Set("Accept", "application/json, application/dns-message, application/dns-udpwireformat")
|
||||||
req.Header.Set("User-Agent", USER_AGENT)
|
req.Header.Set("User-Agent", USER_AGENT)
|
||||||
|
req = req.WithContext(ctx)
|
||||||
c.httpClientMux.RLock()
|
c.httpClientMux.RLock()
|
||||||
resp, err := c.httpClient.Do(req)
|
resp, err := c.httpClient.Do(req)
|
||||||
c.httpClientMux.RUnlock()
|
c.httpClientMux.RUnlock()
|
||||||
|
if err == context.DeadlineExceeded {
|
||||||
|
// Do not respond, silently fail to prevent caching of SERVFAIL
|
||||||
|
log.Println(err)
|
||||||
|
return &DNSRequest{
|
||||||
|
err: err,
|
||||||
|
}
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
|
reply := jsonDNS.PrepareReply(r)
|
||||||
reply.Rcode = dns.RcodeServerFailure
|
reply.Rcode = dns.RcodeServerFailure
|
||||||
w.WriteMsg(reply)
|
w.WriteMsg(reply)
|
||||||
err1 := c.newHTTPClient()
|
|
||||||
if err1 != nil {
|
|
||||||
log.Fatalln(err1)
|
|
||||||
}
|
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
@@ -110,7 +111,7 @@ func (c *Client) generateRequestGoogle(w dns.ResponseWriter, r *dns.Msg, isTCP b
|
|||||||
|
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
response: resp,
|
response: resp,
|
||||||
reply: reply,
|
reply: jsonDNS.PrepareReply(r),
|
||||||
udpSize: udpSize,
|
udpSize: udpSize,
|
||||||
ednsClientAddress: ednsClientAddress,
|
ednsClientAddress: ednsClientAddress,
|
||||||
ednsClientNetmask: ednsClientNetmask,
|
ednsClientNetmask: ednsClientNetmask,
|
||||||
@@ -118,7 +119,7 @@ func (c *Client) generateRequestGoogle(w dns.ResponseWriter, r *dns.Msg, isTCP b
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) parseResponseGoogle(w dns.ResponseWriter, r *dns.Msg, isTCP bool, req *DNSRequest) {
|
func (c *Client) parseResponseGoogle(ctx context.Context, w dns.ResponseWriter, r *dns.Msg, isTCP bool, req *DNSRequest) {
|
||||||
if req.response.StatusCode != 200 {
|
if req.response.StatusCode != 200 {
|
||||||
log.Printf("HTTP error from upstream %s: %s\n", req.currentUpstream, req.response.Status)
|
log.Printf("HTTP error from upstream %s: %s\n", req.currentUpstream, req.response.Status)
|
||||||
req.reply.Rcode = dns.RcodeServerFailure
|
req.reply.Rcode = dns.RcodeServerFailure
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"context"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@@ -32,7 +33,6 @@ import (
|
|||||||
"math/rand"
|
"math/rand"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -40,32 +40,7 @@ import (
|
|||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP bool) *DNSRequest {
|
func (c *Client) generateRequestIETF(ctx context.Context, w dns.ResponseWriter, r *dns.Msg, isTCP bool) *DNSRequest {
|
||||||
reply := jsonDNS.PrepareReply(r)
|
|
||||||
|
|
||||||
if len(r.Question) != 1 {
|
|
||||||
log.Println("Number of questions is not 1")
|
|
||||||
reply.Rcode = dns.RcodeFormatError
|
|
||||||
w.WriteMsg(reply)
|
|
||||||
return &DNSRequest{
|
|
||||||
err: &dns.Error{},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
question := &r.Question[0]
|
|
||||||
questionName := question.Name
|
|
||||||
questionType := ""
|
|
||||||
if qtype, ok := dns.TypeToString[question.Qtype]; ok {
|
|
||||||
questionType = qtype
|
|
||||||
} else {
|
|
||||||
questionType = strconv.Itoa(int(question.Qtype))
|
|
||||||
}
|
|
||||||
|
|
||||||
if c.conf.Verbose {
|
|
||||||
fmt.Printf("%s - - [%s] \"%s IN %s\"\n", w.RemoteAddr(), time.Now().Format("02/Jan/2006:15:04:05 -0700"), questionName, questionType)
|
|
||||||
}
|
|
||||||
|
|
||||||
question.Name = questionName
|
|
||||||
opt := r.IsEdns0()
|
opt := r.IsEdns0()
|
||||||
udpSize := uint16(512)
|
udpSize := uint16(512)
|
||||||
if opt == nil {
|
if opt == nil {
|
||||||
@@ -96,7 +71,7 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
ednsClientNetmask = 24
|
ednsClientNetmask = 24
|
||||||
} else {
|
} else {
|
||||||
ednsClientFamily = 2
|
ednsClientFamily = 2
|
||||||
ednsClientNetmask = 48
|
ednsClientNetmask = 56
|
||||||
}
|
}
|
||||||
edns0Subnet = new(dns.EDNS0_SUBNET)
|
edns0Subnet = new(dns.EDNS0_SUBNET)
|
||||||
edns0Subnet.Code = dns.EDNS0SUBNET
|
edns0Subnet.Code = dns.EDNS0SUBNET
|
||||||
@@ -115,6 +90,7 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
requestBinary, err := r.Pack()
|
requestBinary, err := r.Pack()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
|
reply := jsonDNS.PrepareReply(r)
|
||||||
reply.Rcode = dns.RcodeFormatError
|
reply.Rcode = dns.RcodeFormatError
|
||||||
w.WriteMsg(reply)
|
w.WriteMsg(reply)
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
@@ -126,15 +102,16 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
|
|
||||||
numServers := len(c.conf.UpstreamIETF)
|
numServers := len(c.conf.UpstreamIETF)
|
||||||
upstream := c.conf.UpstreamIETF[rand.Intn(numServers)]
|
upstream := c.conf.UpstreamIETF[rand.Intn(numServers)]
|
||||||
requestURL := fmt.Sprintf("%s?ct=application/dns-udpwireformat&dns=%s", upstream, requestBase64)
|
requestURL := fmt.Sprintf("%s?ct=application/dns-message&dns=%s", upstream, requestBase64)
|
||||||
//requestURL := fmt.Sprintf("%s?ct=application/dns-message&dns=%s", upstream, requestBase64)
|
|
||||||
|
|
||||||
var req *http.Request
|
var req *http.Request
|
||||||
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 := jsonDNS.PrepareReply(r)
|
||||||
|
reply.Rcode = dns.RcodeServerFailure
|
||||||
|
w.WriteMsg(reply)
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
@@ -142,8 +119,10 @@ 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 := jsonDNS.PrepareReply(r)
|
||||||
|
reply.Rcode = dns.RcodeServerFailure
|
||||||
|
w.WriteMsg(reply)
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
@@ -152,17 +131,22 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
}
|
}
|
||||||
req.Header.Set("Accept", "application/dns-message, application/dns-udpwireformat, application/json")
|
req.Header.Set("Accept", "application/dns-message, application/dns-udpwireformat, application/json")
|
||||||
req.Header.Set("User-Agent", USER_AGENT)
|
req.Header.Set("User-Agent", USER_AGENT)
|
||||||
|
req = req.WithContext(ctx)
|
||||||
c.httpClientMux.RLock()
|
c.httpClientMux.RLock()
|
||||||
resp, err := c.httpClient.Do(req)
|
resp, err := c.httpClient.Do(req)
|
||||||
c.httpClientMux.RUnlock()
|
c.httpClientMux.RUnlock()
|
||||||
|
if err == context.DeadlineExceeded {
|
||||||
|
// Do not respond, silently fail to prevent caching of SERVFAIL
|
||||||
|
log.Println(err)
|
||||||
|
return &DNSRequest{
|
||||||
|
err: err,
|
||||||
|
}
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
|
reply := jsonDNS.PrepareReply(r)
|
||||||
reply.Rcode = dns.RcodeServerFailure
|
reply.Rcode = dns.RcodeServerFailure
|
||||||
w.WriteMsg(reply)
|
w.WriteMsg(reply)
|
||||||
err1 := c.newHTTPClient()
|
|
||||||
if err1 != nil {
|
|
||||||
log.Fatalln(err1)
|
|
||||||
}
|
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
err: err,
|
err: err,
|
||||||
}
|
}
|
||||||
@@ -170,7 +154,7 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
|
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
response: resp,
|
response: resp,
|
||||||
reply: reply,
|
reply: jsonDNS.PrepareReply(r),
|
||||||
udpSize: udpSize,
|
udpSize: udpSize,
|
||||||
ednsClientAddress: ednsClientAddress,
|
ednsClientAddress: ednsClientAddress,
|
||||||
ednsClientNetmask: ednsClientNetmask,
|
ednsClientNetmask: ednsClientNetmask,
|
||||||
@@ -178,7 +162,7 @@ func (c *Client) generateRequestIETF(w dns.ResponseWriter, r *dns.Msg, isTCP boo
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) parseResponseIETF(w dns.ResponseWriter, r *dns.Msg, isTCP bool, req *DNSRequest) {
|
func (c *Client) parseResponseIETF(ctx context.Context, w dns.ResponseWriter, r *dns.Msg, isTCP bool, req *DNSRequest) {
|
||||||
if req.response.StatusCode != 200 {
|
if req.response.StatusCode != 200 {
|
||||||
log.Printf("HTTP error from upstream %s: %s\n", req.currentUpstream, req.response.Status)
|
log.Printf("HTTP error from upstream %s: %s\n", req.currentUpstream, req.response.Status)
|
||||||
req.reply.Rcode = dns.RcodeServerFailure
|
req.reply.Rcode = dns.RcodeServerFailure
|
||||||
|
|||||||
@@ -25,14 +25,82 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
"os"
|
||||||
|
"runtime"
|
||||||
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func checkPIDFile(pidFile string) (bool, error) {
|
||||||
|
retry:
|
||||||
|
f, err := os.OpenFile(pidFile, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0666)
|
||||||
|
if os.IsExist(err) {
|
||||||
|
pidStr, err := ioutil.ReadFile(pidFile)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
pid, err := strconv.ParseUint(string(pidStr), 10, 0)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
_, err = os.Stat(fmt.Sprintf("/proc/%d", pid))
|
||||||
|
if os.IsNotExist(err) {
|
||||||
|
err = os.Remove(pidFile)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
goto retry
|
||||||
|
} else if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
log.Printf("Already running on PID %d, exiting.\n", pid)
|
||||||
|
return false, nil
|
||||||
|
} else if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
_, err = io.WriteString(f, strconv.FormatInt(int64(os.Getpid()), 10))
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
confPath := flag.String("conf", "doh-client.conf", "Configuration file")
|
confPath := flag.String("conf", "doh-client.conf", "Configuration file")
|
||||||
verbose := flag.Bool("verbose", false, "Enable logging")
|
verbose := flag.Bool("verbose", false, "Enable logging")
|
||||||
|
showVersion := flag.Bool("version", false, "Show software version and exit")
|
||||||
|
var pidFile *string
|
||||||
|
|
||||||
|
// I really want to push the technology forward by recommending cgroup-based
|
||||||
|
// process tracking. But I understand some cloud service providers have
|
||||||
|
// their own monitoring system. So this feature is only enabled on Linux and
|
||||||
|
// BSD series platforms which lacks functionality similar to cgroup.
|
||||||
|
switch runtime.GOOS {
|
||||||
|
case "dragonfly", "freebsd", "linux", "netbsd", "openbsd":
|
||||||
|
pidFile = flag.String("pid-file", "", "PID file for legacy supervision systems lacking support for reliable cgroup-based process tracking")
|
||||||
|
}
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
if *showVersion {
|
||||||
|
fmt.Printf("doh-server %s\nHomepage: https://github.com/m13253/dns-over-https\n", VERSION)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if pidFile != nil && *pidFile != "" {
|
||||||
|
ok, err := checkPIDFile(*pidFile)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Error checking PID file: %v\n", err)
|
||||||
|
}
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
conf, err := loadConfig(*confPath)
|
conf, err := loadConfig(*confPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln(err)
|
log.Fatalln(err)
|
||||||
|
|||||||
@@ -24,6 +24,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "1.3.8"
|
VERSION = "1.4.2"
|
||||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -30,15 +30,16 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type config struct {
|
type config struct {
|
||||||
Listen []string `toml:"listen"`
|
Listen []string `toml:"listen"`
|
||||||
Cert string `toml:"cert"`
|
Cert string `toml:"cert"`
|
||||||
Key string `toml:"key"`
|
Key string `toml:"key"`
|
||||||
Path string `toml:"path"`
|
Path string `toml:"path"`
|
||||||
Upstream []string `toml:"upstream"`
|
Upstream []string `toml:"upstream"`
|
||||||
Timeout uint `toml:"timeout"`
|
Timeout uint `toml:"timeout"`
|
||||||
Tries uint `toml:"tries"`
|
Tries uint `toml:"tries"`
|
||||||
TCPOnly bool `toml:"tcp_only"`
|
TCPOnly bool `toml:"tcp_only"`
|
||||||
Verbose bool `toml:"verbose"`
|
Verbose bool `toml:"verbose"`
|
||||||
|
DebugHTTPHeaders []string `toml:"debug_http_headers"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadConfig(path string) (*config, error) {
|
func loadConfig(path string) (*config, error) {
|
||||||
|
|||||||
@@ -6,10 +6,10 @@ listen = [
|
|||||||
|
|
||||||
# TLS certification file
|
# TLS certification file
|
||||||
# If left empty, plain-text HTTP will be used.
|
# If left empty, plain-text HTTP will be used.
|
||||||
# Please be informed that this program does not do OCSP Stapling, which is
|
# You are recommended to leave empty and to use a server load balancer (e.g.
|
||||||
# necessary for some clients to bootstrap itself.
|
# Caddy, Nginx) and set up TLS there, because this program does not do OCSP
|
||||||
# You are recommended to use a server load balancer (Caddy, Nginx) and set up
|
# Stapling, which is necessary for client bootstrapping in a network
|
||||||
# TLS there.
|
# environment with completely no traditional DNS service.
|
||||||
cert = ""
|
cert = ""
|
||||||
|
|
||||||
# TLS private key file
|
# TLS private key file
|
||||||
@@ -21,6 +21,8 @@ path = "/dns-query"
|
|||||||
# Upstream DNS resolver
|
# Upstream DNS resolver
|
||||||
# If multiple servers are specified, a random one will be chosen each time.
|
# If multiple servers are specified, a random one will be chosen each time.
|
||||||
upstream = [
|
upstream = [
|
||||||
|
"1.1.1.1:53",
|
||||||
|
"1.0.0.1:53",
|
||||||
"8.8.8.8:53",
|
"8.8.8.8:53",
|
||||||
"8.8.4.4:53",
|
"8.8.4.4:53",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
@@ -38,7 +39,7 @@ import (
|
|||||||
"golang.org/x/net/idna"
|
"golang.org/x/net/idna"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *Server) parseRequestGoogle(w http.ResponseWriter, r *http.Request) *DNSRequest {
|
func (s *Server) parseRequestGoogle(ctx context.Context, w http.ResponseWriter, r *http.Request) *DNSRequest {
|
||||||
name := r.FormValue("name")
|
name := r.FormValue("name")
|
||||||
if name == "" {
|
if name == "" {
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
@@ -71,9 +72,9 @@ func (s *Server) parseRequestGoogle(w http.ResponseWriter, r *http.Request) *DNS
|
|||||||
|
|
||||||
cdStr := r.FormValue("cd")
|
cdStr := r.FormValue("cd")
|
||||||
cd := false
|
cd := false
|
||||||
if cdStr == "1" || cdStr == "true" {
|
if cdStr == "1" || strings.EqualFold(cdStr, "true") {
|
||||||
cd = true
|
cd = true
|
||||||
} else if cdStr == "0" || cdStr == "false" || cdStr == "" {
|
} else if cdStr == "0" || strings.EqualFold(cdStr, "false") || cdStr == "" {
|
||||||
} else {
|
} else {
|
||||||
return &DNSRequest{
|
return &DNSRequest{
|
||||||
errcode: 400,
|
errcode: 400,
|
||||||
@@ -104,7 +105,7 @@ func (s *Server) parseRequestGoogle(w http.ResponseWriter, r *http.Request) *DNS
|
|||||||
ednsClientNetmask = 24
|
ednsClientNetmask = 24
|
||||||
} else {
|
} else {
|
||||||
ednsClientFamily = 2
|
ednsClientFamily = 2
|
||||||
ednsClientNetmask = 48
|
ednsClientNetmask = 56
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ednsClientAddress = net.ParseIP(ednsClientSubnet[:slash])
|
ednsClientAddress = net.ParseIP(ednsClientSubnet[:slash])
|
||||||
@@ -139,7 +140,7 @@ func (s *Server) parseRequestGoogle(w http.ResponseWriter, r *http.Request) *DNS
|
|||||||
ednsClientNetmask = 24
|
ednsClientNetmask = 24
|
||||||
} else {
|
} else {
|
||||||
ednsClientFamily = 2
|
ednsClientFamily = 2
|
||||||
ednsClientNetmask = 48
|
ednsClientNetmask = 56
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -168,7 +169,7 @@ func (s *Server) parseRequestGoogle(w http.ResponseWriter, r *http.Request) *DNS
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) generateResponseGoogle(w http.ResponseWriter, r *http.Request, req *DNSRequest) {
|
func (s *Server) generateResponseGoogle(ctx context.Context, w http.ResponseWriter, r *http.Request, req *DNSRequest) {
|
||||||
respJSON := jsonDNS.Marshal(req.response)
|
respJSON := jsonDNS.Marshal(req.response)
|
||||||
respStr, err := json.Marshal(respJSON)
|
respStr, err := json.Marshal(respJSON)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -184,9 +185,9 @@ func (s *Server) generateResponseGoogle(w http.ResponseWriter, r *http.Request,
|
|||||||
w.Header().Set("Vary", "Accept")
|
w.Header().Set("Vary", "Accept")
|
||||||
if respJSON.HaveTTL {
|
if respJSON.HaveTTL {
|
||||||
if req.isTailored {
|
if req.isTailored {
|
||||||
w.Header().Set("Cache-Control", "private, max-age="+strconv.Itoa(int(respJSON.LeastTTL)))
|
w.Header().Set("Cache-Control", "private, max-age="+strconv.FormatUint(uint64(respJSON.LeastTTL), 10))
|
||||||
} else {
|
} else {
|
||||||
w.Header().Set("Cache-Control", "public, max-age="+strconv.Itoa(int(respJSON.LeastTTL)))
|
w.Header().Set("Cache-Control", "public, max-age="+strconv.FormatUint(uint64(respJSON.LeastTTL), 10))
|
||||||
}
|
}
|
||||||
w.Header().Set("Expires", respJSON.EarliestExpires.Format(http.TimeFormat))
|
w.Header().Set("Expires", respJSON.EarliestExpires.Format(http.TimeFormat))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"context"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@@ -38,7 +39,7 @@ import (
|
|||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *Server) parseRequestIETF(w http.ResponseWriter, r *http.Request) *DNSRequest {
|
func (s *Server) parseRequestIETF(ctx context.Context, w http.ResponseWriter, r *http.Request) *DNSRequest {
|
||||||
requestBase64 := r.FormValue("dns")
|
requestBase64 := r.FormValue("dns")
|
||||||
requestBinary, err := base64.RawURLEncoding.DecodeString(requestBase64)
|
requestBinary, err := base64.RawURLEncoding.DecodeString(requestBase64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -85,13 +86,13 @@ func (s *Server) parseRequestIETF(w http.ResponseWriter, r *http.Request) *DNSRe
|
|||||||
if qclass, ok := dns.ClassToString[question.Qclass]; ok {
|
if qclass, ok := dns.ClassToString[question.Qclass]; ok {
|
||||||
questionClass = qclass
|
questionClass = qclass
|
||||||
} else {
|
} else {
|
||||||
questionClass = strconv.Itoa(int(question.Qclass))
|
questionClass = strconv.FormatUint(uint64(question.Qclass), 10)
|
||||||
}
|
}
|
||||||
questionType := ""
|
questionType := ""
|
||||||
if qtype, ok := dns.TypeToString[question.Qtype]; ok {
|
if qtype, ok := dns.TypeToString[question.Qtype]; ok {
|
||||||
questionType = qtype
|
questionType = qtype
|
||||||
} else {
|
} else {
|
||||||
questionType = strconv.Itoa(int(question.Qtype))
|
questionType = strconv.FormatUint(uint64(question.Qtype), 10)
|
||||||
}
|
}
|
||||||
fmt.Printf("%s - - [%s] \"%s %s %s\"\n", r.RemoteAddr, time.Now().Format("02/Jan/2006:15:04:05 -0700"), questionName, questionClass, questionType)
|
fmt.Printf("%s - - [%s] \"%s %s %s\"\n", r.RemoteAddr, time.Now().Format("02/Jan/2006:15:04:05 -0700"), questionName, questionClass, questionType)
|
||||||
}
|
}
|
||||||
@@ -126,7 +127,7 @@ func (s *Server) parseRequestIETF(w http.ResponseWriter, r *http.Request) *DNSRe
|
|||||||
ednsClientNetmask = 24
|
ednsClientNetmask = 24
|
||||||
} else {
|
} else {
|
||||||
ednsClientFamily = 2
|
ednsClientFamily = 2
|
||||||
ednsClientNetmask = 48
|
ednsClientNetmask = 56
|
||||||
}
|
}
|
||||||
edns0Subnet = new(dns.EDNS0_SUBNET)
|
edns0Subnet = new(dns.EDNS0_SUBNET)
|
||||||
edns0Subnet.Code = dns.EDNS0SUBNET
|
edns0Subnet.Code = dns.EDNS0SUBNET
|
||||||
@@ -145,7 +146,7 @@ func (s *Server) parseRequestIETF(w http.ResponseWriter, r *http.Request) *DNSRe
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) generateResponseIETF(w http.ResponseWriter, r *http.Request, req *DNSRequest) {
|
func (s *Server) generateResponseIETF(ctx context.Context, w http.ResponseWriter, r *http.Request, req *DNSRequest) {
|
||||||
respJSON := jsonDNS.Marshal(req.response)
|
respJSON := jsonDNS.Marshal(req.response)
|
||||||
req.response.Id = req.transactionID
|
req.response.Id = req.transactionID
|
||||||
respBytes, err := req.response.Pack()
|
respBytes, err := req.response.Pack()
|
||||||
@@ -165,9 +166,9 @@ func (s *Server) generateResponseIETF(w http.ResponseWriter, r *http.Request, re
|
|||||||
|
|
||||||
if respJSON.HaveTTL {
|
if respJSON.HaveTTL {
|
||||||
if req.isTailored {
|
if req.isTailored {
|
||||||
w.Header().Set("Cache-Control", "private, max-age="+strconv.Itoa(int(respJSON.LeastTTL)))
|
w.Header().Set("Cache-Control", "private, max-age="+strconv.FormatUint(uint64(respJSON.LeastTTL), 10))
|
||||||
} else {
|
} else {
|
||||||
w.Header().Set("Cache-Control", "public, max-age="+strconv.Itoa(int(respJSON.LeastTTL)))
|
w.Header().Set("Cache-Control", "public, max-age="+strconv.FormatUint(uint64(respJSON.LeastTTL), 10))
|
||||||
}
|
}
|
||||||
w.Header().Set("Expires", respJSON.EarliestExpires.Format(http.TimeFormat))
|
w.Header().Set("Expires", respJSON.EarliestExpires.Format(http.TimeFormat))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,14 +25,82 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
"os"
|
||||||
|
"runtime"
|
||||||
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func checkPIDFile(pidFile string) (bool, error) {
|
||||||
|
retry:
|
||||||
|
f, err := os.OpenFile(pidFile, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0666)
|
||||||
|
if os.IsExist(err) {
|
||||||
|
pidStr, err := ioutil.ReadFile(pidFile)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
pid, err := strconv.ParseUint(string(pidStr), 10, 0)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
_, err = os.Stat(fmt.Sprintf("/proc/%d", pid))
|
||||||
|
if os.IsNotExist(err) {
|
||||||
|
err = os.Remove(pidFile)
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
goto retry
|
||||||
|
} else if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
log.Printf("Already running on PID %d, exiting.\n", pid)
|
||||||
|
return false, nil
|
||||||
|
} else if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
_, err = io.WriteString(f, strconv.FormatInt(int64(os.Getpid()), 10))
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
confPath := flag.String("conf", "doh-server.conf", "Configuration file")
|
confPath := flag.String("conf", "doh-server.conf", "Configuration file")
|
||||||
verbose := flag.Bool("verbose", false, "Enable logging")
|
verbose := flag.Bool("verbose", false, "Enable logging")
|
||||||
|
showVersion := flag.Bool("version", false, "Show software version and exit")
|
||||||
|
var pidFile *string
|
||||||
|
|
||||||
|
// I really want to push the technology forward by recommending cgroup-based
|
||||||
|
// process tracking. But I understand some cloud service providers have
|
||||||
|
// their own monitoring system. So this feature is only enabled on Linux and
|
||||||
|
// BSD series platforms which lacks functionality similar to cgroup.
|
||||||
|
switch runtime.GOOS {
|
||||||
|
case "dragonfly", "freebsd", "linux", "netbsd", "openbsd":
|
||||||
|
pidFile = flag.String("pid-file", "", "PID file for legacy supervision systems lacking support for reliable cgroup-based process tracking")
|
||||||
|
}
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
if *showVersion {
|
||||||
|
fmt.Printf("doh-server %s\nHomepage: https://github.com/m13253/dns-over-https\n", VERSION)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if pidFile != nil && *pidFile != "" {
|
||||||
|
ok, err := checkPIDFile(*pidFile)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Error checking PID file: %v\n", err)
|
||||||
|
}
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
conf, err := loadConfig(*confPath)
|
conf, err := loadConfig(*confPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln(err)
|
log.Fatalln(err)
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
@@ -105,13 +106,31 @@ func (s *Server) Start() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) handlerFunc(w http.ResponseWriter, r *http.Request) {
|
func (s *Server) handlerFunc(w http.ResponseWriter, r *http.Request) {
|
||||||
|
ctx := r.Context()
|
||||||
|
|
||||||
|
w.Header().Set("Access-Control-Allow-Headers", "Content-Type")
|
||||||
|
w.Header().Set("Access-Control-Allow-Methods", "GET, HEAD, OPTIONS, POST")
|
||||||
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
||||||
|
w.Header().Set("Access-Control-Max-Age", "3600")
|
||||||
w.Header().Set("Server", USER_AGENT)
|
w.Header().Set("Server", USER_AGENT)
|
||||||
w.Header().Set("X-Powered-By", USER_AGENT)
|
w.Header().Set("X-Powered-By", USER_AGENT)
|
||||||
|
|
||||||
|
if r.Method == "OPTIONS" {
|
||||||
|
w.Header().Set("Content-Length", "0")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if r.Form == nil {
|
if r.Form == nil {
|
||||||
const maxMemory = 32 << 20 // 32 MB
|
const maxMemory = 32 << 20 // 32 MB
|
||||||
r.ParseMultipartForm(maxMemory)
|
r.ParseMultipartForm(maxMemory)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for _, header := range s.conf.DebugHTTPHeaders {
|
||||||
|
if value := r.Header.Get(header); value != "" {
|
||||||
|
log.Printf("%s: %s\n", header, value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
contentType := r.Header.Get("Content-Type")
|
contentType := r.Header.Get("Content-Type")
|
||||||
if ct := r.FormValue("ct"); ct != "" {
|
if ct := r.FormValue("ct"); ct != "" {
|
||||||
contentType = ct
|
contentType = ct
|
||||||
@@ -151,11 +170,11 @@ func (s *Server) handlerFunc(w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
var req *DNSRequest
|
var req *DNSRequest
|
||||||
if contentType == "application/dns-json" {
|
if contentType == "application/dns-json" {
|
||||||
req = s.parseRequestGoogle(w, r)
|
req = s.parseRequestGoogle(ctx, w, r)
|
||||||
} else if contentType == "application/dns-message" {
|
} else if contentType == "application/dns-message" {
|
||||||
req = s.parseRequestIETF(w, r)
|
req = s.parseRequestIETF(ctx, w, r)
|
||||||
} else if contentType == "application/dns-udpwireformat" {
|
} else if contentType == "application/dns-udpwireformat" {
|
||||||
req = s.parseRequestIETF(w, r)
|
req = s.parseRequestIETF(ctx, w, r)
|
||||||
} else {
|
} else {
|
||||||
jsonDNS.FormatError(w, fmt.Sprintf("Invalid argument value: \"ct\" = %q", contentType), 415)
|
jsonDNS.FormatError(w, fmt.Sprintf("Invalid argument value: \"ct\" = %q", contentType), 415)
|
||||||
return
|
return
|
||||||
@@ -171,16 +190,16 @@ func (s *Server) handlerFunc(w http.ResponseWriter, r *http.Request) {
|
|||||||
req = s.patchRootRD(req)
|
req = s.patchRootRD(req)
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
req, err = s.doDNSQuery(req)
|
req, err = s.doDNSQuery(ctx, req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
jsonDNS.FormatError(w, fmt.Sprintf("DNS query failure (%s)", err.Error()), 503)
|
jsonDNS.FormatError(w, fmt.Sprintf("DNS query failure (%s)", err.Error()), 503)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if responseType == "application/json" {
|
if responseType == "application/json" {
|
||||||
s.generateResponseGoogle(w, r, req)
|
s.generateResponseGoogle(ctx, w, r, req)
|
||||||
} else if responseType == "application/dns-message" {
|
} else if responseType == "application/dns-message" {
|
||||||
s.generateResponseIETF(w, r, req)
|
s.generateResponseIETF(ctx, w, r, req)
|
||||||
} else {
|
} else {
|
||||||
panic("Unknown response Content-Type")
|
panic("Unknown response Content-Type")
|
||||||
}
|
}
|
||||||
@@ -225,13 +244,14 @@ func (s *Server) patchRootRD(req *DNSRequest) *DNSRequest {
|
|||||||
return req
|
return req
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) doDNSQuery(req *DNSRequest) (resp *DNSRequest, err error) {
|
func (s *Server) doDNSQuery(ctx context.Context, req *DNSRequest) (resp *DNSRequest, err error) {
|
||||||
|
// TODO(m13253): Make ctx work. Waiting for a patch for ExchangeContext from miekg/dns.
|
||||||
numServers := len(s.conf.Upstream)
|
numServers := len(s.conf.Upstream)
|
||||||
for i := uint(0); i < s.conf.Tries; i++ {
|
for i := uint(0); i < s.conf.Tries; i++ {
|
||||||
req.currentUpstream = s.conf.Upstream[rand.Intn(numServers)]
|
req.currentUpstream = s.conf.Upstream[rand.Intn(numServers)]
|
||||||
if !s.conf.TCPOnly {
|
if !s.conf.TCPOnly {
|
||||||
req.response, _, err = s.udpClient.Exchange(req.request, req.currentUpstream)
|
req.response, _, err = s.udpClient.Exchange(req.request, req.currentUpstream)
|
||||||
if err == dns.ErrTruncated {
|
if err == nil && req.response != nil && req.response.Truncated {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
req.response, _, err = s.tcpClient.Exchange(req.request, req.currentUpstream)
|
req.response, _, err = s.tcpClient.Exchange(req.request, req.currentUpstream)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "1.3.8"
|
VERSION = "1.4.2"
|
||||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ func Marshal(msg *dns.Msg) *Response {
|
|||||||
} else if ipv4 := clientAddress.To4(); ipv4 != nil {
|
} else if ipv4 := clientAddress.To4(); ipv4 != nil {
|
||||||
clientAddress = ipv4
|
clientAddress = ipv4
|
||||||
}
|
}
|
||||||
resp.EdnsClientSubnet = clientAddress.String() + "/" + strconv.Itoa(int(edns0.SourceScope))
|
resp.EdnsClientSubnet = clientAddress.String() + "/" + strconv.FormatUint(uint64(edns0.SourceScope), 10)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ func Unmarshal(msg *dns.Msg, resp *Response, udpSize uint16, ednsClientNetmask u
|
|||||||
if ednsClientFamily == 1 {
|
if ednsClientFamily == 1 {
|
||||||
ednsClientNetmask = 24
|
ednsClientNetmask = 24
|
||||||
} else {
|
} else {
|
||||||
ednsClientNetmask = 48
|
ednsClientNetmask = 56
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
edns0Subnet := new(dns.EDNS0_SUBNET)
|
edns0Subnet := new(dns.EDNS0_SUBNET)
|
||||||
|
|||||||
Reference in New Issue
Block a user