| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | package proxy
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-04 21:13:28 +01:00
										 |  |  | // functions OTHER middleware might want to use to do lookup in the same
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | // style as the proxy.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"sync/atomic"
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/coredns/middleware"
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | // New create a new proxy with the hosts in host and a Random policy.
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | func New(hosts []string) Proxy {
 | 
					
						
							|  |  |  | 	p := Proxy{Next: nil, Client: Clients()}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	upstream := &staticUpstream{
 | 
					
						
							| 
									
										
										
										
											2016-04-30 15:54:41 +01:00
										 |  |  | 		from:        "",
 | 
					
						
							|  |  |  | 		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,
 | 
					
						
							|  |  |  | 		MaxFails:    1,
 | 
					
						
							| 
									
										
										
										
											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,
 | 
					
						
							|  |  |  | 			Unhealthy:   false,
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 			CheckDown: func(upstream *staticUpstream) UpstreamHostDownFunc {
 | 
					
						
							|  |  |  | 				return func(uh *UpstreamHost) bool {
 | 
					
						
							|  |  |  | 					if uh.Unhealthy {
 | 
					
						
							|  |  |  | 						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
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	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-04-09 16:17:53 +01:00
										 |  |  | // Lookup is not suitable for forwarding request. Ssee for that.
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | func (p Proxy) Lookup(state middleware.State, name string, tpe uint16) (*dns.Msg, error) {
 | 
					
						
							|  |  |  | 	req := new(dns.Msg)
 | 
					
						
							|  |  |  | 	req.SetQuestion(name, tpe)
 | 
					
						
							| 
									
										
										
										
											2016-04-09 16:17:53 +01:00
										 |  |  | 	state.SizeAndDo(req)
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | 	return p.lookup(state, req)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | func (p Proxy) Forward(state middleware.State) (*dns.Msg, error) {
 | 
					
						
							|  |  |  | 	return p.lookup(state, state.Req)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-21 21:21:29 +00:00
										 |  |  | func (p Proxy) lookup(state middleware.State, r *dns.Msg) (*dns.Msg, error) {
 | 
					
						
							|  |  |  | 	var (
 | 
					
						
							|  |  |  | 		reply *dns.Msg
 | 
					
						
							|  |  |  | 		err   error
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							|  |  |  | 	for _, upstream := range p.Upstreams {
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 		// allowed bla bla bla TODO(miek): fix full proxy spec from caddy?
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			atomic.AddInt64(&host.Conns, 1)
 | 
					
						
							|  |  |  | 			if state.Proto() == "tcp" {
 | 
					
						
							|  |  |  | 				reply, err = middleware.Exchange(p.Client.TCP, r, host.Name)
 | 
					
						
							|  |  |  | 			} else {
 | 
					
						
							|  |  |  | 				reply, err = middleware.Exchange(p.Client.UDP, r, host.Name)
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			atomic.AddInt64(&host.Conns, -1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if err == nil {
 | 
					
						
							|  |  |  | 				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
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return nil, errUnreachable
 | 
					
						
							|  |  |  | }
 |