2016-03-18 20:57:35 +00:00
|
|
|
// Package proxy is middleware that proxies requests.
|
|
|
|
|
package proxy
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"errors"
|
|
|
|
|
"sync/atomic"
|
|
|
|
|
"time"
|
|
|
|
|
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/middleware"
|
2017-08-09 09:21:33 -07:00
|
|
|
"github.com/coredns/coredns/middleware/pkg/healthcheck"
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/request"
|
2016-04-30 15:54:41 +01:00
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
"github.com/miekg/dns"
|
2017-01-29 12:06:26 -08:00
|
|
|
ot "github.com/opentracing/opentracing-go"
|
2016-04-30 15:54:41 +01:00
|
|
|
"golang.org/x/net/context"
|
2016-03-18 20:57:35 +00:00
|
|
|
)
|
|
|
|
|
|
2017-01-15 08:12:58 +00:00
|
|
|
var (
|
|
|
|
|
errUnreachable = errors.New("unreachable backend")
|
|
|
|
|
errInvalidProtocol = errors.New("invalid protocol")
|
2017-02-07 18:01:16 +00:00
|
|
|
errInvalidDomain = errors.New("invalid path for proxy")
|
2017-01-15 08:12:58 +00:00
|
|
|
)
|
2016-03-18 20:57:35 +00:00
|
|
|
|
2017-01-15 08:12:58 +00:00
|
|
|
// Proxy represents a middleware instance that can proxy requests to another (DNS) server.
|
2016-03-18 20:57:35 +00:00
|
|
|
type Proxy struct {
|
2017-02-06 19:32:48 +00:00
|
|
|
Next middleware.Handler
|
|
|
|
|
|
|
|
|
|
// Upstreams is a pointer to a slice, so we can update the upstream (used for Google)
|
|
|
|
|
// midway.
|
|
|
|
|
|
|
|
|
|
Upstreams *[]Upstream
|
2017-03-01 10:41:54 -05:00
|
|
|
|
|
|
|
|
// Trace is the Trace middleware, if it is installed
|
|
|
|
|
// This is used by the grpc exchanger to trace through the grpc calls
|
|
|
|
|
Trace middleware.Handler
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Upstream manages a pool of proxy upstream hosts. Select should return a
|
|
|
|
|
// suitable upstream host, or nil if no such hosts are available.
|
|
|
|
|
type Upstream interface {
|
|
|
|
|
// The domain name this upstream host should be routed on.
|
|
|
|
|
From() string
|
|
|
|
|
// Selects an upstream host to be routed to.
|
2017-08-09 09:21:33 -07:00
|
|
|
Select() *healthcheck.UpstreamHost
|
2016-03-18 20:57:35 +00:00
|
|
|
// Checks if subpdomain is not an ignored.
|
2017-02-07 18:01:16 +00:00
|
|
|
IsAllowedDomain(string) bool
|
2017-02-06 19:32:48 +00:00
|
|
|
// Exchanger returns the exchanger to be used for this upstream.
|
|
|
|
|
Exchanger() Exchanger
|
2017-04-26 10:58:14 +01:00
|
|
|
// Stops the upstream from proxying requests to shutdown goroutines cleanly.
|
|
|
|
|
Stop() error
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// tryDuration is how long to try upstream hosts; failures result in
|
|
|
|
|
// immediate retries until this duration ends or we get a nil host.
|
|
|
|
|
var tryDuration = 60 * time.Second
|
|
|
|
|
|
|
|
|
|
// ServeDNS satisfies the middleware.Handler interface.
|
2016-03-19 07:18:57 +00:00
|
|
|
func (p Proxy) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
2017-01-23 15:40:47 -05:00
|
|
|
var span, child ot.Span
|
|
|
|
|
span = ot.SpanFromContext(ctx)
|
2017-01-15 08:12:58 +00:00
|
|
|
state := request.Request{W: w, Req: r}
|
2017-02-07 18:01:16 +00:00
|
|
|
|
|
|
|
|
upstream := p.match(state)
|
|
|
|
|
if upstream == nil {
|
|
|
|
|
return middleware.NextOrFailure(p.Name(), p.Next, ctx, w, r)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for {
|
2016-03-18 20:57:35 +00:00
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
|
|
// Since Select() should give us "up" hosts, keep retrying
|
|
|
|
|
// hosts until timeout (or until we get a nil host).
|
2017-08-06 05:54:24 -07:00
|
|
|
for time.Since(start) < tryDuration {
|
2016-03-18 20:57:35 +00:00
|
|
|
host := upstream.Select()
|
|
|
|
|
if host == nil {
|
2016-10-28 12:54:49 +01:00
|
|
|
|
2017-02-07 21:28:47 +00:00
|
|
|
RequestDuration.WithLabelValues(state.Proto(), upstream.Exchanger().Protocol(), upstream.From()).Observe(float64(time.Since(start) / time.Millisecond))
|
2016-10-28 12:54:49 +01:00
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
return dns.RcodeServerFailure, errUnreachable
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:40:47 -05:00
|
|
|
if span != nil {
|
|
|
|
|
child = span.Tracer().StartSpan("exchange", ot.ChildOf(span.Context()))
|
|
|
|
|
ctx = ot.ContextWithSpan(ctx, child)
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
atomic.AddInt64(&host.Conns, 1)
|
2016-10-08 14:46:22 +01:00
|
|
|
|
2017-02-11 16:56:04 +00:00
|
|
|
reply, backendErr := upstream.Exchanger().Exchange(ctx, host.Name, state)
|
2016-10-08 14:46:22 +01:00
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
atomic.AddInt64(&host.Conns, -1)
|
2016-10-08 14:46:22 +01:00
|
|
|
|
2017-01-23 15:40:47 -05:00
|
|
|
if child != nil {
|
|
|
|
|
child.Finish()
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
if backendErr == nil {
|
2016-10-08 14:46:22 +01:00
|
|
|
w.WriteMsg(reply)
|
2016-10-28 12:54:49 +01:00
|
|
|
|
2017-02-07 21:28:47 +00:00
|
|
|
RequestDuration.WithLabelValues(state.Proto(), upstream.Exchanger().Protocol(), upstream.From()).Observe(float64(time.Since(start) / time.Millisecond))
|
2016-10-28 12:54:49 +01:00
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
return 0, nil
|
|
|
|
|
}
|
|
|
|
|
timeout := host.FailTimeout
|
|
|
|
|
if timeout == 0 {
|
|
|
|
|
timeout = 10 * time.Second
|
|
|
|
|
}
|
|
|
|
|
atomic.AddInt32(&host.Fails, 1)
|
2017-08-09 09:21:33 -07:00
|
|
|
go func(host *healthcheck.UpstreamHost, timeout time.Duration) {
|
2016-03-18 20:57:35 +00:00
|
|
|
time.Sleep(timeout)
|
|
|
|
|
atomic.AddInt32(&host.Fails, -1)
|
|
|
|
|
}(host, timeout)
|
|
|
|
|
}
|
2016-10-28 12:54:49 +01:00
|
|
|
|
2017-02-07 21:28:47 +00:00
|
|
|
RequestDuration.WithLabelValues(state.Proto(), upstream.Exchanger().Protocol(), upstream.From()).Observe(float64(time.Since(start) / time.Millisecond))
|
2016-10-28 12:54:49 +01:00
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
return dns.RcodeServerFailure, errUnreachable
|
|
|
|
|
}
|
2017-02-07 18:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p Proxy) match(state request.Request) (u Upstream) {
|
2017-03-02 19:35:44 +00:00
|
|
|
if p.Upstreams == nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-07 18:01:16 +00:00
|
|
|
longestMatch := 0
|
|
|
|
|
for _, upstream := range *p.Upstreams {
|
|
|
|
|
from := upstream.From()
|
|
|
|
|
|
|
|
|
|
if !middleware.Name(from).Matches(state.Name()) || !upstream.IsAllowedDomain(state.Name()) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if lf := len(from); lf > longestMatch {
|
|
|
|
|
longestMatch = lf
|
|
|
|
|
u = upstream
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return u
|
|
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
2016-10-27 11:48:37 +00:00
|
|
|
// Name implements the Handler interface.
|
2016-10-26 10:01:52 +01:00
|
|
|
func (p Proxy) Name() string { return "proxy" }
|
|
|
|
|
|
2016-10-08 14:46:22 +01:00
|
|
|
// defaultTimeout is the default networking timeout for DNS requests.
|
2016-03-18 20:57:35 +00:00
|
|
|
const defaultTimeout = 5 * time.Second
|