| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | package proxy
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | // functions other middleware might want to use to do lookup in the same style as the proxy.
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2017-02-11 16:56:04 +00:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 	"sync/atomic"
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | // NewLookup create a new proxy with the hosts in host and a Random policy.
 | 
					
						
							|  |  |  | func NewLookup(hosts []string) Proxy {
 | 
					
						
							| 
									
										
										
										
											2017-03-14 21:32:21 +00:00
										 |  |  | 	return NewLookupWithOption(hosts, Options{})
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewLookupWithForcedProto process creates a simple round robin forward with potentially forced proto for upstream.
 | 
					
						
							|  |  |  | func NewLookupWithOption(hosts []string, opts Options) Proxy {
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 	p := Proxy{Next: nil}
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-26 10:58:14 +01:00
										 |  |  | 	// TODO(miek): this needs to be unified with upstream.go's NewStaticUpstreams, caddy uses NewHost
 | 
					
						
							|  |  |  | 	// we should copy/make something similar.
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 	upstream := &staticUpstream{
 | 
					
						
							| 
									
										
										
										
											2017-02-07 18:01:16 +00:00
										 |  |  | 		from:        ".",
 | 
					
						
							| 
									
										
										
										
											2016-04-30 15:54:41 +01:00
										 |  |  | 		Hosts:       make([]*UpstreamHost, len(hosts)),
 | 
					
						
							|  |  |  | 		Policy:      &Random{},
 | 
					
						
							| 
									
										
										
										
											2016-08-14 12:57:49 -06:00
										 |  |  | 		Spray:       nil,
 | 
					
						
							| 
									
										
										
										
											2016-04-30 15:54:41 +01:00
										 |  |  | 		FailTimeout: 10 * time.Second,
 | 
					
						
							| 
									
										
										
										
											2017-02-06 19:32:48 +00:00
										 |  |  | 		MaxFails:    3, // TODO(miek): disable error checking for simple lookups?
 | 
					
						
							| 
									
										
										
										
											2017-03-14 21:32:21 +00:00
										 |  |  | 		ex:          newDNSExWithOption(opts),
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i, host := range hosts {
 | 
					
						
							|  |  |  | 		uh := &UpstreamHost{
 | 
					
						
							| 
									
										
										
										
											2016-04-30 15:54:41 +01:00
										 |  |  | 			Name:        host,
 | 
					
						
							|  |  |  | 			Conns:       0,
 | 
					
						
							|  |  |  | 			Fails:       0,
 | 
					
						
							|  |  |  | 			FailTimeout: upstream.FailTimeout,
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 20:37:43 +01:00
										 |  |  | 			Unhealthy: false,
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 			CheckDown: func(upstream *staticUpstream) UpstreamHostDownFunc {
 | 
					
						
							|  |  |  | 				return func(uh *UpstreamHost) bool {
 | 
					
						
							| 
									
										
										
										
											2017-04-24 20:37:43 +01:00
										 |  |  | 					if uh.Unhealthy {
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 						return true
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							| 
									
										
										
										
											2016-08-14 12:57:49 -06:00
										 |  |  | 					fails := atomic.LoadInt32(&uh.Fails)
 | 
					
						
							|  |  |  | 					if fails >= upstream.MaxFails && upstream.MaxFails != 0 {
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 						return true
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							|  |  |  | 					return false
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							|  |  |  | 			}(upstream),
 | 
					
						
							|  |  |  | 			WithoutPathPrefix: upstream.WithoutPathPrefix,
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		upstream.Hosts[i] = uh
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-02-06 19:32:48 +00:00
										 |  |  | 	p.Upstreams = &[]Upstream{upstream}
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:22:23 +00:00
										 |  |  | 	return p
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | // Lookup will use name and type to forge a new message and will send that upstream. It will
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | // set any EDNS0 options correctly so that downstream will be able to process the reply.
 | 
					
						
							| 
									
										
										
										
											2016-10-30 15:54:16 +00:00
										 |  |  | func (p Proxy) Lookup(state request.Request, name string, typ uint16) (*dns.Msg, error) {
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 	req := new(dns.Msg)
 | 
					
						
							| 
									
										
										
										
											2016-10-30 15:54:16 +00:00
										 |  |  | 	req.SetQuestion(name, typ)
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 	state.SizeAndDo(req)
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 	state2 := request.Request{W: state.W, Req: req}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return p.lookup(state2)
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | // Forward forward the request in state as-is. Unlike Lookup that adds EDNS0 suffix to the message.
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | func (p Proxy) Forward(state request.Request) (*dns.Msg, error) {
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 	return p.lookup(state)
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | func (p Proxy) lookup(state request.Request) (*dns.Msg, error) {
 | 
					
						
							| 
									
										
										
										
											2017-02-07 18:01:16 +00:00
										 |  |  | 	upstream := p.match(state)
 | 
					
						
							|  |  |  | 	if upstream == nil {
 | 
					
						
							|  |  |  | 		return nil, errInvalidDomain
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for {
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 		start := time.Now()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Since Select() should give us "up" hosts, keep retrying
 | 
					
						
							|  |  |  | 		// hosts until timeout (or until we get a nil host).
 | 
					
						
							|  |  |  | 		for time.Now().Sub(start) < tryDuration {
 | 
					
						
							|  |  |  | 			host := upstream.Select()
 | 
					
						
							|  |  |  | 			if host == nil {
 | 
					
						
							|  |  |  | 				return nil, errUnreachable
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | 			// duplicated from proxy.go, but with a twist, we don't write the
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 			// reply back to the client, we return it and there is no monitoring.
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +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(context.TODO(), host.Name, state)
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 			atomic.AddInt64(&host.Conns, -1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | 			if backendErr == nil {
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 				return reply, nil
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			timeout := host.FailTimeout
 | 
					
						
							|  |  |  | 			if timeout == 0 {
 | 
					
						
							|  |  |  | 				timeout = 10 * time.Second
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			atomic.AddInt32(&host.Fails, 1)
 | 
					
						
							|  |  |  | 			go func(host *UpstreamHost, timeout time.Duration) {
 | 
					
						
							|  |  |  | 				time.Sleep(timeout)
 | 
					
						
							|  |  |  | 				atomic.AddInt32(&host.Fails, -1)
 | 
					
						
							|  |  |  | 			}(host, timeout)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return nil, errUnreachable
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |