2019-06-28 04:29:08 +00:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-07-03 13:59:47 +00:00
|
|
|
"crypto/tls"
|
2022-11-12 03:14:51 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
2022-07-21 06:03:49 +00:00
|
|
|
"fmt"
|
2022-11-12 03:14:51 +00:00
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2022-07-21 06:03:49 +00:00
|
|
|
tlsC "github.com/Dreamacro/clash/component/tls"
|
2022-11-12 03:14:51 +00:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
"github.com/Dreamacro/clash/log"
|
2022-11-25 02:33:37 +00:00
|
|
|
"github.com/metacubex/quic-go"
|
|
|
|
"github.com/metacubex/quic-go/http3"
|
2019-06-28 04:29:08 +00:00
|
|
|
D "github.com/miekg/dns"
|
2022-11-12 03:14:51 +00:00
|
|
|
"golang.org/x/net/http2"
|
2019-06-28 04:29:08 +00:00
|
|
|
)
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// Values to configure HTTP and HTTP/2 transport.
|
2019-06-28 04:29:08 +00:00
|
|
|
const (
|
2022-11-12 03:14:51 +00:00
|
|
|
// transportDefaultReadIdleTimeout is the default timeout for pinging
|
|
|
|
// idle connections in HTTP/2 transport.
|
|
|
|
transportDefaultReadIdleTimeout = 30 * time.Second
|
|
|
|
|
|
|
|
// transportDefaultIdleConnTimeout is the default timeout for idle
|
|
|
|
// connections in HTTP transport.
|
|
|
|
transportDefaultIdleConnTimeout = 5 * time.Minute
|
|
|
|
|
|
|
|
// dohMaxConnsPerHost controls the maximum number of connections for
|
|
|
|
// each host.
|
|
|
|
dohMaxConnsPerHost = 1
|
|
|
|
dialTimeout = 10 * time.Second
|
|
|
|
|
|
|
|
// dohMaxIdleConns controls the maximum number of connections being idle
|
|
|
|
// at the same time.
|
|
|
|
dohMaxIdleConns = 1
|
|
|
|
maxElapsedTime = time.Second * 30
|
2019-06-28 04:29:08 +00:00
|
|
|
)
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
var DefaultHTTPVersions = []C.HTTPVersion{C.HTTPVersion11, C.HTTPVersion2}
|
|
|
|
|
|
|
|
// dnsOverHTTPS is a struct that implements the Upstream interface for the
|
|
|
|
// DNS-over-HTTPS protocol.
|
|
|
|
type dnsOverHTTPS struct {
|
|
|
|
// The Client's Transport typically has internal state (cached TCP
|
|
|
|
// connections), so Clients should be reused instead of created as
|
|
|
|
// needed. Clients are safe for concurrent use by multiple goroutines.
|
|
|
|
client *http.Client
|
|
|
|
clientMu sync.Mutex
|
|
|
|
|
|
|
|
// quicConfig is the QUIC configuration that is used if HTTP/3 is enabled
|
|
|
|
// for this upstream.
|
|
|
|
quicConfig *quic.Config
|
|
|
|
quicConfigGuard sync.Mutex
|
|
|
|
url *url.URL
|
|
|
|
r *Resolver
|
|
|
|
httpVersions []C.HTTPVersion
|
|
|
|
proxyAdapter string
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// type check
|
|
|
|
var _ dnsClient = (*dnsOverHTTPS)(nil)
|
|
|
|
|
|
|
|
// newDoH returns the DNS-over-HTTPS Upstream.
|
|
|
|
func newDoHClient(urlString string, r *Resolver, preferH3 bool, params map[string]string, proxyAdapter string) dnsClient {
|
|
|
|
u, _ := url.Parse(urlString)
|
|
|
|
httpVersions := DefaultHTTPVersions
|
|
|
|
if preferH3 {
|
|
|
|
httpVersions = append(httpVersions, C.HTTPVersion3)
|
|
|
|
}
|
|
|
|
|
|
|
|
if params["h3"] == "true" {
|
|
|
|
httpVersions = []C.HTTPVersion{C.HTTPVersion3}
|
|
|
|
}
|
|
|
|
|
|
|
|
doh := &dnsOverHTTPS{
|
2022-11-14 12:17:12 +00:00
|
|
|
url: u,
|
|
|
|
r: r,
|
|
|
|
proxyAdapter: proxyAdapter,
|
2022-11-12 03:14:51 +00:00
|
|
|
quicConfig: &quic.Config{
|
|
|
|
KeepAlivePeriod: QUICKeepAlivePeriod,
|
|
|
|
TokenStore: newQUICTokenStore(),
|
|
|
|
},
|
|
|
|
httpVersions: httpVersions,
|
|
|
|
}
|
|
|
|
|
|
|
|
runtime.SetFinalizer(doh, (*dnsOverHTTPS).Close)
|
|
|
|
|
|
|
|
return doh
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// Address implements the Upstream interface for *dnsOverHTTPS.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) Address() string { return doh.url.String() }
|
|
|
|
func (doh *dnsOverHTTPS) ExchangeContext(ctx context.Context, m *D.Msg) (msg *D.Msg, err error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
// Quote from https://www.rfc-editor.org/rfc/rfc8484.html:
|
|
|
|
// In order to maximize HTTP cache friendliness, DoH clients using media
|
|
|
|
// formats that include the ID field from the DNS message header, such
|
|
|
|
// as "application/dns-message", SHOULD use a DNS ID of 0 in every DNS
|
|
|
|
// request.
|
|
|
|
id := m.Id
|
|
|
|
m.Id = 0
|
|
|
|
defer func() {
|
|
|
|
// Restore the original ID to not break compatibility with proxies.
|
|
|
|
m.Id = id
|
|
|
|
if msg != nil {
|
|
|
|
msg.Id = id
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Check if there was already an active client before sending the request.
|
|
|
|
// We'll only attempt to re-connect if there was one.
|
2022-11-19 02:31:50 +00:00
|
|
|
client, isCached, err := doh.getClient(ctx)
|
2019-06-28 04:29:08 +00:00
|
|
|
if err != nil {
|
2022-11-12 03:14:51 +00:00
|
|
|
return nil, fmt.Errorf("failed to init http client: %w", err)
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// Make the first attempt to send the DNS query.
|
2022-11-14 12:17:12 +00:00
|
|
|
msg, err = doh.exchangeHTTPS(ctx, client, m)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
|
|
|
// Make up to 2 attempts to re-create the HTTP client and send the request
|
|
|
|
// again. There are several cases (mostly, with QUIC) where this workaround
|
|
|
|
// is necessary to make HTTP client usable. We need to make 2 attempts in
|
|
|
|
// the case when the connection was closed (due to inactivity for example)
|
|
|
|
// AND the server refuses to open a 0-RTT connection.
|
2022-11-14 12:17:12 +00:00
|
|
|
for i := 0; isCached && doh.shouldRetry(err) && i < 2; i++ {
|
2022-11-19 02:31:50 +00:00
|
|
|
client, err = doh.resetClient(ctx, err)
|
2022-11-12 03:14:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to reset http client: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
msg, err = doh.exchangeHTTPS(ctx, client, m)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 15:16:20 +00:00
|
|
|
if err != nil && !errors.Is(err, context.Canceled) && !errors.Is(err, context.DeadlineExceeded) {
|
2022-11-12 03:14:51 +00:00
|
|
|
// If the request failed anyway, make sure we don't use this client.
|
2022-11-19 02:31:50 +00:00
|
|
|
_, resErr := doh.resetClient(ctx, err)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-19 15:06:27 +00:00
|
|
|
return nil, fmt.Errorf("%w (resErr:%v)", err, resErr)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return msg, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exchange implements the Upstream interface for *dnsOverHTTPS.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) Exchange(m *D.Msg) (*D.Msg, error) {
|
|
|
|
return doh.ExchangeContext(context.Background(), m)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close implements the Upstream interface for *dnsOverHTTPS.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) Close() (err error) {
|
|
|
|
doh.clientMu.Lock()
|
|
|
|
defer doh.clientMu.Unlock()
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
runtime.SetFinalizer(doh, nil)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
if doh.client == nil {
|
2022-11-12 03:14:51 +00:00
|
|
|
return nil
|
2021-10-11 13:05:38 +00:00
|
|
|
}
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
return doh.closeClient(doh.client)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// closeClient cleans up resources used by client if necessary. Note, that at
|
|
|
|
// this point it should only be done for HTTP/3 as it may leak due to keep-alive
|
|
|
|
// connections.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) closeClient(client *http.Client) (err error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
if isHTTP3(client) {
|
|
|
|
return client.Transport.(io.Closer).Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// exchangeHTTPS logs the request and its result and calls exchangeHTTPSClient.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) exchangeHTTPS(ctx context.Context, client *http.Client, req *D.Msg) (resp *D.Msg, err error) {
|
|
|
|
resp, err = doh.exchangeHTTPSClient(ctx, client, req)
|
2022-11-12 03:14:51 +00:00
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// exchangeHTTPSClient sends the DNS query to a DoH resolver using the specified
|
|
|
|
// http.Client instance.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) exchangeHTTPSClient(
|
2022-11-12 03:14:51 +00:00
|
|
|
ctx context.Context,
|
|
|
|
client *http.Client,
|
2022-11-12 04:31:44 +00:00
|
|
|
req *D.Msg,
|
|
|
|
) (resp *D.Msg, err error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
buf, err := req.Pack()
|
2019-06-28 04:29:08 +00:00
|
|
|
if err != nil {
|
2022-11-12 03:14:51 +00:00
|
|
|
return nil, fmt.Errorf("packing message: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// It appears, that GET requests are more memory-efficient with Golang
|
|
|
|
// implementation of HTTP/2.
|
|
|
|
method := http.MethodGet
|
|
|
|
if isHTTP3(client) {
|
|
|
|
// If we're using HTTP/3, use http3.MethodGet0RTT to force using 0-RTT.
|
|
|
|
method = http3.MethodGet0RTT
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 02:31:50 +00:00
|
|
|
url := doh.url
|
|
|
|
url.RawQuery = fmt.Sprintf("dns=%s", base64.RawURLEncoding.EncodeToString(buf))
|
|
|
|
httpReq, err := http.NewRequestWithContext(ctx, method, url.String(), nil)
|
2019-06-28 04:29:08 +00:00
|
|
|
if err != nil {
|
2022-11-19 02:31:50 +00:00
|
|
|
return nil, fmt.Errorf("creating http request to %s: %w", url, err)
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
httpReq.Header.Set("Accept", "application/dns-message")
|
|
|
|
httpReq.Header.Set("User-Agent", "")
|
|
|
|
httpResp, err := client.Do(httpReq)
|
|
|
|
if err != nil {
|
2022-11-19 02:31:50 +00:00
|
|
|
return nil, fmt.Errorf("requesting %s: %w", url, err)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
defer httpResp.Body.Close()
|
|
|
|
|
|
|
|
body, err := io.ReadAll(httpResp.Body)
|
|
|
|
if err != nil {
|
2022-11-19 02:31:50 +00:00
|
|
|
return nil, fmt.Errorf("reading %s: %w", url, err)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if httpResp.StatusCode != http.StatusOK {
|
|
|
|
return nil,
|
|
|
|
fmt.Errorf(
|
|
|
|
"expected status %d, got %d from %s",
|
|
|
|
http.StatusOK,
|
|
|
|
httpResp.StatusCode,
|
2022-11-19 02:31:50 +00:00
|
|
|
url,
|
2022-11-12 03:14:51 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-11-12 04:31:44 +00:00
|
|
|
resp = &D.Msg{}
|
2022-11-12 03:14:51 +00:00
|
|
|
err = resp.Unpack(body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"unpacking response from %s: body is %s: %w",
|
2022-11-19 02:31:50 +00:00
|
|
|
url,
|
2022-11-12 03:14:51 +00:00
|
|
|
body,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.Id != req.Id {
|
2022-11-12 04:31:44 +00:00
|
|
|
err = D.ErrId
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// shouldRetry checks what error we have received and returns true if we should
|
|
|
|
// re-create the HTTP client and retry the request.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) shouldRetry(err error) (ok bool) {
|
2022-11-12 03:14:51 +00:00
|
|
|
if err == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
var netErr net.Error
|
|
|
|
if errors.As(err, &netErr) && netErr.Timeout() {
|
|
|
|
// If this is a timeout error, trying to forcibly re-create the HTTP
|
|
|
|
// client instance. This is an attempt to fix an issue with DoH client
|
|
|
|
// stalling after a network change.
|
|
|
|
//
|
|
|
|
// See https://github.com/AdguardTeam/AdGuardHome/issues/3217.
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if isQUICRetryError(err) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// resetClient triggers re-creation of the *http.Client that is used by this
|
|
|
|
// upstream. This method accepts the error that caused resetting client as
|
|
|
|
// depending on the error we may also reset the QUIC config.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) resetClient(ctx context.Context, resetErr error) (client *http.Client, err error) {
|
2022-11-14 12:17:12 +00:00
|
|
|
doh.clientMu.Lock()
|
|
|
|
defer doh.clientMu.Unlock()
|
2022-11-12 03:14:51 +00:00
|
|
|
|
|
|
|
if errors.Is(resetErr, quic.Err0RTTRejected) {
|
|
|
|
// Reset the TokenStore only if 0-RTT was rejected.
|
2022-11-14 12:17:12 +00:00
|
|
|
doh.resetQUICConfig()
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
oldClient := doh.client
|
2022-11-12 03:14:51 +00:00
|
|
|
if oldClient != nil {
|
2022-11-14 12:17:12 +00:00
|
|
|
closeErr := doh.closeClient(oldClient)
|
2022-11-12 03:14:51 +00:00
|
|
|
if closeErr != nil {
|
|
|
|
log.Warnln("warning: failed to close the old http client: %v", closeErr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugln("re-creating the http client due to %v", resetErr)
|
2022-11-19 02:31:50 +00:00
|
|
|
doh.client, err = doh.createClient(ctx)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
return doh.client, err
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getQUICConfig returns the QUIC config in a thread-safe manner. Note, that
|
|
|
|
// this method returns a pointer, it is forbidden to change its properties.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) getQUICConfig() (c *quic.Config) {
|
|
|
|
doh.quicConfigGuard.Lock()
|
|
|
|
defer doh.quicConfigGuard.Unlock()
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
return doh.quicConfig
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// resetQUICConfig Re-create the token store to make sure we're not trying to
|
|
|
|
// use invalid for 0-RTT.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) resetQUICConfig() {
|
|
|
|
doh.quicConfigGuard.Lock()
|
|
|
|
defer doh.quicConfigGuard.Unlock()
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
doh.quicConfig = doh.quicConfig.Clone()
|
|
|
|
doh.quicConfig.TokenStore = newQUICTokenStore()
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getClient gets or lazily initializes an HTTP client (and transport) that will
|
|
|
|
// be used for this DoH resolver.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) getClient(ctx context.Context) (c *http.Client, isCached bool, err error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
doh.clientMu.Lock()
|
|
|
|
defer doh.clientMu.Unlock()
|
|
|
|
if doh.client != nil {
|
|
|
|
return doh.client, true, nil
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Timeout can be exceeded while waiting for the lock. This happens quite
|
|
|
|
// often on mobile devices.
|
|
|
|
elapsed := time.Since(startTime)
|
|
|
|
if elapsed > maxElapsedTime {
|
|
|
|
return nil, false, fmt.Errorf("timeout exceeded: %s", elapsed)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugln("creating a new http client")
|
2022-11-19 02:31:50 +00:00
|
|
|
doh.client, err = doh.createClient(ctx)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
return doh.client, false, err
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// createClient creates a new *http.Client instance. The HTTP protocol version
|
|
|
|
// will depend on whether HTTP3 is allowed and provided by this upstream. Note,
|
|
|
|
// that we'll attempt to establish a QUIC connection when creating the client in
|
|
|
|
// order to check whether HTTP3 is supported.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) createClient(ctx context.Context) (*http.Client, error) {
|
|
|
|
transport, err := doh.createTransport(ctx)
|
2022-11-12 03:14:51 +00:00
|
|
|
if err != nil {
|
2022-11-19 15:07:05 +00:00
|
|
|
return nil, fmt.Errorf("[%s] initializing http transport: %w", doh.url.String(), err)
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
client := &http.Client{
|
|
|
|
Transport: transport,
|
|
|
|
Timeout: DefaultTimeout,
|
|
|
|
Jar: nil,
|
|
|
|
}
|
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
doh.client = client
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
return doh.client, nil
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// createTransport initializes an HTTP transport that will be used specifically
|
|
|
|
// for this DoH resolver. This HTTP transport ensures that the HTTP requests
|
|
|
|
// will be sent exactly to the IP address got from the bootstrap resolver. Note,
|
|
|
|
// that this function will first attempt to establish a QUIC connection (if
|
|
|
|
// HTTP3 is enabled in the upstream options). If this attempt is successful,
|
|
|
|
// it returns an HTTP3 transport, otherwise it returns the H1/H2 transport.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) createTransport(ctx context.Context) (t http.RoundTripper, err error) {
|
2023-01-13 01:55:01 +00:00
|
|
|
tlsConfig := tlsC.GetGlobalFingerprintTLSConfig(
|
2022-11-12 03:14:51 +00:00
|
|
|
&tls.Config{
|
|
|
|
InsecureSkipVerify: false,
|
|
|
|
MinVersion: tls.VersionTLS12,
|
|
|
|
SessionTicketsDisabled: false,
|
|
|
|
})
|
|
|
|
var nextProtos []string
|
2022-11-14 12:17:12 +00:00
|
|
|
for _, v := range doh.httpVersions {
|
2022-11-12 03:14:51 +00:00
|
|
|
nextProtos = append(nextProtos, string(v))
|
|
|
|
}
|
|
|
|
tlsConfig.NextProtos = nextProtos
|
2022-11-14 12:17:12 +00:00
|
|
|
dialContext := getDialHandler(doh.r, doh.proxyAdapter)
|
2022-11-12 03:14:51 +00:00
|
|
|
// First, we attempt to create an HTTP3 transport. If the probe QUIC
|
|
|
|
// connection is established successfully, we'll be using HTTP3 for this
|
|
|
|
// upstream.
|
2022-11-19 02:31:50 +00:00
|
|
|
transportH3, err := doh.createTransportH3(ctx, tlsConfig, dialContext)
|
2022-11-12 03:14:51 +00:00
|
|
|
if err == nil {
|
2022-11-19 15:07:05 +00:00
|
|
|
log.Debugln("[%s] using HTTP/3 for this upstream: QUIC was faster", doh.url.String())
|
2022-11-12 03:14:51 +00:00
|
|
|
return transportH3, nil
|
|
|
|
}
|
|
|
|
|
2022-11-19 15:07:05 +00:00
|
|
|
log.Debugln("[%s] using HTTP/2 for this upstream: %v", doh.url.String(), err)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
2022-11-14 12:17:12 +00:00
|
|
|
if !doh.supportsHTTP() {
|
2022-11-12 03:14:51 +00:00
|
|
|
return nil, errors.New("HTTP1/1 and HTTP2 are not supported by this upstream")
|
|
|
|
}
|
|
|
|
|
|
|
|
transport := &http.Transport{
|
|
|
|
TLSClientConfig: tlsConfig,
|
|
|
|
DisableCompression: true,
|
|
|
|
DialContext: dialContext,
|
|
|
|
IdleConnTimeout: transportDefaultIdleConnTimeout,
|
|
|
|
MaxConnsPerHost: dohMaxConnsPerHost,
|
|
|
|
MaxIdleConns: dohMaxIdleConns,
|
|
|
|
// Since we have a custom DialContext, we need to use this field to
|
|
|
|
// make golang http.Client attempt to use HTTP/2. Otherwise, it would
|
|
|
|
// only be used when negotiated on the TLS level.
|
|
|
|
ForceAttemptHTTP2: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicitly configure transport to use HTTP/2.
|
|
|
|
//
|
|
|
|
// See https://github.com/AdguardTeam/dnsproxy/issues/11.
|
|
|
|
var transportH2 *http2.Transport
|
|
|
|
transportH2, err = http2.ConfigureTransports(transport)
|
2019-06-28 04:29:08 +00:00
|
|
|
if err != nil {
|
2022-07-06 13:25:25 +00:00
|
|
|
return nil, err
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
2022-07-03 13:59:47 +00:00
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// Enable HTTP/2 pings on idle connections.
|
|
|
|
transportH2.ReadIdleTimeout = transportDefaultReadIdleTimeout
|
|
|
|
|
|
|
|
return transport, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// http3Transport is a wrapper over *http3.RoundTripper that tries to optimize
|
|
|
|
// its behavior. The main thing that it does is trying to force use a single
|
|
|
|
// connection to a host instead of creating a new one all the time. It also
|
|
|
|
// helps mitigate race issues with quic-go.
|
|
|
|
type http3Transport struct {
|
|
|
|
baseTransport *http3.RoundTripper
|
|
|
|
|
|
|
|
closed bool
|
|
|
|
mu sync.RWMutex
|
|
|
|
}
|
2019-06-28 04:29:08 +00:00
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
// type check
|
|
|
|
var _ http.RoundTripper = (*http3Transport)(nil)
|
|
|
|
|
|
|
|
// RoundTrip implements the http.RoundTripper interface for *http3Transport.
|
|
|
|
func (h *http3Transport) RoundTrip(req *http.Request) (resp *http.Response, err error) {
|
|
|
|
h.mu.RLock()
|
|
|
|
defer h.mu.RUnlock()
|
|
|
|
|
|
|
|
if h.closed {
|
|
|
|
return nil, net.ErrClosed
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to use cached connection to the target host if it's available.
|
|
|
|
resp, err = h.baseTransport.RoundTripOpt(req, http3.RoundTripOpt{OnlyCachedConn: true})
|
|
|
|
|
|
|
|
if errors.Is(err, http3.ErrNoCachedConn) {
|
|
|
|
// If there are no cached connection, trigger creating a new one.
|
|
|
|
resp, err = h.baseTransport.RoundTrip(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// type check
|
|
|
|
var _ io.Closer = (*http3Transport)(nil)
|
|
|
|
|
|
|
|
// Close implements the io.Closer interface for *http3Transport.
|
|
|
|
func (h *http3Transport) Close() (err error) {
|
|
|
|
h.mu.Lock()
|
|
|
|
defer h.mu.Unlock()
|
|
|
|
|
|
|
|
h.closed = true
|
|
|
|
|
|
|
|
return h.baseTransport.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// createTransportH3 tries to create an HTTP/3 transport for this upstream.
|
|
|
|
// We should be able to fall back to H1/H2 in case if HTTP/3 is unavailable or
|
|
|
|
// if it is too slow. In order to do that, this method will run two probes
|
|
|
|
// in parallel (one for TLS, the other one for QUIC) and if QUIC is faster it
|
|
|
|
// will create the *http3.RoundTripper instance.
|
|
|
|
func (doh *dnsOverHTTPS) createTransportH3(
|
2022-11-19 02:31:50 +00:00
|
|
|
ctx context.Context,
|
2022-11-12 03:14:51 +00:00
|
|
|
tlsConfig *tls.Config,
|
|
|
|
dialContext dialHandler,
|
|
|
|
) (roundTripper http.RoundTripper, err error) {
|
|
|
|
if !doh.supportsH3() {
|
|
|
|
return nil, errors.New("HTTP3 support is not enabled")
|
|
|
|
}
|
|
|
|
|
2022-11-19 02:31:50 +00:00
|
|
|
addr, err := doh.probeH3(ctx, tlsConfig, dialContext)
|
2019-06-28 04:29:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-11-12 03:14:51 +00:00
|
|
|
|
|
|
|
rt := &http3.RoundTripper{
|
|
|
|
Dial: func(
|
|
|
|
ctx context.Context,
|
|
|
|
|
|
|
|
// Ignore the address and always connect to the one that we got
|
|
|
|
// from the bootstrapper.
|
|
|
|
_ string,
|
|
|
|
tlsCfg *tls.Config,
|
|
|
|
cfg *quic.Config,
|
|
|
|
) (c quic.EarlyConnection, err error) {
|
|
|
|
return doh.dialQuic(ctx, addr, tlsCfg, cfg)
|
|
|
|
},
|
|
|
|
DisableCompression: true,
|
|
|
|
TLSClientConfig: tlsConfig,
|
|
|
|
QuicConfig: doh.getQUICConfig(),
|
|
|
|
}
|
|
|
|
|
|
|
|
return &http3Transport{baseTransport: rt}, nil
|
2019-06-28 04:29:08 +00:00
|
|
|
}
|
2020-02-15 13:42:46 +00:00
|
|
|
|
2022-11-12 03:14:51 +00:00
|
|
|
func (doh *dnsOverHTTPS) dialQuic(ctx context.Context, addr string, tlsCfg *tls.Config, cfg *quic.Config) (quic.EarlyConnection, error) {
|
|
|
|
ip, port, err := net.SplitHostPort(addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
portInt, err := strconv.Atoi(port)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
udpAddr := net.UDPAddr{
|
|
|
|
IP: net.ParseIP(ip),
|
|
|
|
Port: portInt,
|
|
|
|
}
|
2022-12-13 04:38:46 +00:00
|
|
|
conn, err := listenPacket(ctx, doh.proxyAdapter, "udp", addr, doh.r)
|
|
|
|
if err != nil {
|
2022-12-13 03:23:34 +00:00
|
|
|
return nil, err
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
return quic.DialEarlyContext(ctx, conn, &udpAddr, doh.url.Host, tlsCfg, cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// probeH3 runs a test to check whether QUIC is faster than TLS for this
|
|
|
|
// upstream. If the test is successful it will return the address that we
|
|
|
|
// should use to establish the QUIC connections.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) probeH3(
|
2022-11-19 02:31:50 +00:00
|
|
|
ctx context.Context,
|
2022-11-12 03:14:51 +00:00
|
|
|
tlsConfig *tls.Config,
|
|
|
|
dialContext dialHandler,
|
|
|
|
) (addr string, err error) {
|
|
|
|
// We're using bootstrapped address instead of what's passed to the function
|
|
|
|
// it does not create an actual connection, but it helps us determine
|
|
|
|
// what IP is actually reachable (when there are v4/v6 addresses).
|
2022-11-19 02:31:50 +00:00
|
|
|
rawConn, err := dialContext(ctx, "udp", doh.url.Host)
|
2022-11-12 03:14:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to dial: %w", err)
|
|
|
|
}
|
2022-12-13 04:38:46 +00:00
|
|
|
addr = rawConn.RemoteAddr().String()
|
2022-11-12 03:14:51 +00:00
|
|
|
// It's never actually used.
|
|
|
|
_ = rawConn.Close()
|
|
|
|
|
|
|
|
// Avoid spending time on probing if this upstream only supports HTTP/3.
|
2022-11-14 12:17:12 +00:00
|
|
|
if doh.supportsH3() && !doh.supportsHTTP() {
|
2022-11-12 03:14:51 +00:00
|
|
|
return addr, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use a new *tls.Config with empty session cache for probe connections.
|
|
|
|
// Surprisingly, this is really important since otherwise it invalidates
|
|
|
|
// the existing cache.
|
|
|
|
// TODO(ameshkov): figure out why the sessions cache invalidates here.
|
|
|
|
probeTLSCfg := tlsConfig.Clone()
|
|
|
|
probeTLSCfg.ClientSessionCache = nil
|
|
|
|
|
|
|
|
// Do not expose probe connections to the callbacks that are passed to
|
|
|
|
// the bootstrap options to avoid side-effects.
|
|
|
|
// TODO(ameshkov): consider exposing, somehow mark that this is a probe.
|
|
|
|
probeTLSCfg.VerifyPeerCertificate = nil
|
|
|
|
probeTLSCfg.VerifyConnection = nil
|
|
|
|
|
|
|
|
// Run probeQUIC and probeTLS in parallel and see which one is faster.
|
|
|
|
chQuic := make(chan error, 1)
|
|
|
|
chTLS := make(chan error, 1)
|
2022-11-19 02:31:50 +00:00
|
|
|
go doh.probeQUIC(ctx, addr, probeTLSCfg, chQuic)
|
|
|
|
go doh.probeTLS(ctx, dialContext, probeTLSCfg, chTLS)
|
2022-11-12 03:14:51 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
case quicErr := <-chQuic:
|
|
|
|
if quicErr != nil {
|
|
|
|
// QUIC failed, return error since HTTP3 was not preferred.
|
|
|
|
return "", quicErr
|
2022-07-06 12:53:34 +00:00
|
|
|
}
|
2022-11-12 03:14:51 +00:00
|
|
|
|
|
|
|
// Return immediately, QUIC was faster.
|
|
|
|
return addr, quicErr
|
|
|
|
case tlsErr := <-chTLS:
|
|
|
|
if tlsErr != nil {
|
|
|
|
// Return immediately, TLS failed.
|
|
|
|
log.Debugln("probing TLS: %v", tlsErr)
|
|
|
|
return addr, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", errors.New("TLS was faster than QUIC, prefer it")
|
2022-07-06 12:53:34 +00:00
|
|
|
}
|
2022-11-12 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// probeQUIC attempts to establish a QUIC connection to the specified address.
|
|
|
|
// We run probeQUIC and probeTLS in parallel and see which one is faster.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) probeQUIC(ctx context.Context, addr string, tlsConfig *tls.Config, ch chan error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
startTime := time.Now()
|
2022-11-14 12:17:12 +00:00
|
|
|
conn, err := doh.dialQuic(ctx, addr, tlsConfig, doh.getQUICConfig())
|
2022-11-12 03:14:51 +00:00
|
|
|
if err != nil {
|
2022-11-14 12:17:12 +00:00
|
|
|
ch <- fmt.Errorf("opening QUIC connection to %s: %w", doh.Address(), err)
|
2022-11-12 03:14:51 +00:00
|
|
|
return
|
2022-07-06 12:53:34 +00:00
|
|
|
}
|
2022-11-12 03:14:51 +00:00
|
|
|
|
|
|
|
// Ignore the error since there's no way we can use it for anything useful.
|
|
|
|
_ = conn.CloseWithError(QUICCodeNoError, "")
|
|
|
|
|
|
|
|
ch <- nil
|
|
|
|
|
|
|
|
elapsed := time.Now().Sub(startTime)
|
|
|
|
log.Debugln("elapsed on establishing a QUIC connection: %s", elapsed)
|
|
|
|
}
|
|
|
|
|
|
|
|
// probeTLS attempts to establish a TLS connection to the specified address. We
|
|
|
|
// run probeQUIC and probeTLS in parallel and see which one is faster.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) probeTLS(ctx context.Context, dialContext dialHandler, tlsConfig *tls.Config, ch chan error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
|
2022-11-19 02:31:50 +00:00
|
|
|
conn, err := doh.tlsDial(ctx, dialContext, "tcp", tlsConfig)
|
2022-11-12 03:14:51 +00:00
|
|
|
if err != nil {
|
|
|
|
ch <- fmt.Errorf("opening TLS connection: %w", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore the error since there's no way we can use it for anything useful.
|
|
|
|
_ = conn.Close()
|
|
|
|
|
|
|
|
ch <- nil
|
|
|
|
|
|
|
|
elapsed := time.Now().Sub(startTime)
|
|
|
|
log.Debugln("elapsed on establishing a TLS connection: %s", elapsed)
|
|
|
|
}
|
|
|
|
|
|
|
|
// supportsH3 returns true if HTTP/3 is supported by this upstream.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) supportsH3() (ok bool) {
|
|
|
|
for _, v := range doh.supportedHTTPVersions() {
|
2022-11-12 03:14:51 +00:00
|
|
|
if v == C.HTTPVersion3 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// supportsHTTP returns true if HTTP/1.1 or HTTP2 is supported by this upstream.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) supportsHTTP() (ok bool) {
|
|
|
|
for _, v := range doh.supportedHTTPVersions() {
|
2022-11-12 03:14:51 +00:00
|
|
|
if v == C.HTTPVersion11 || v == C.HTTPVersion2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// supportedHTTPVersions returns the list of supported HTTP versions.
|
2022-11-14 12:17:12 +00:00
|
|
|
func (doh *dnsOverHTTPS) supportedHTTPVersions() (v []C.HTTPVersion) {
|
|
|
|
v = doh.httpVersions
|
2022-11-12 03:14:51 +00:00
|
|
|
if v == nil {
|
|
|
|
v = DefaultHTTPVersions
|
|
|
|
}
|
|
|
|
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
// isHTTP3 checks if the *http.Client is an HTTP/3 client.
|
|
|
|
func isHTTP3(client *http.Client) (ok bool) {
|
|
|
|
_, ok = client.Transport.(*http3Transport)
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// tlsDial is basically the same as tls.DialWithDialer, but we will call our own
|
|
|
|
// dialContext function to get connection.
|
2022-11-19 02:31:50 +00:00
|
|
|
func (doh *dnsOverHTTPS) tlsDial(ctx context.Context, dialContext dialHandler, network string, config *tls.Config) (*tls.Conn, error) {
|
2022-11-12 03:14:51 +00:00
|
|
|
// We're using bootstrapped address instead of what's passed
|
|
|
|
// to the function.
|
2022-11-19 02:31:50 +00:00
|
|
|
rawConn, err := dialContext(ctx, network, doh.url.Host)
|
2022-11-12 03:14:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// We want the timeout to cover the whole process: TCP connection and
|
|
|
|
// TLS handshake dialTimeout will be used as connection deadLine.
|
|
|
|
conn := tls.Client(rawConn, config)
|
|
|
|
|
|
|
|
err = conn.SetDeadline(time.Now().Add(dialTimeout))
|
|
|
|
if err != nil {
|
|
|
|
// Must not happen in normal circumstances.
|
|
|
|
panic(fmt.Errorf("cannot set deadline: %w", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = conn.Handshake()
|
|
|
|
if err != nil {
|
|
|
|
defer conn.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return conn, nil
|
2020-02-15 13:42:46 +00:00
|
|
|
}
|