| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | // Package forward implements a forwarding proxy. It caches an upstream net.Conn for some time, so if the same
 | 
					
						
							|  |  |  | // client returns the upstream's Conn will be precached. Depending on how you benchmark this looks to be
 | 
					
						
							|  |  |  | // 50% faster than just openening a new connection for every client. It works with UDP and TCP and uses
 | 
					
						
							|  |  |  | // inband healthchecking.
 | 
					
						
							|  |  |  | package forward
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-04-20 11:01:06 +01:00
										 |  |  | 	"context"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Forward forward the request in state as-is. Unlike Lookup that adds EDNS0 suffix to the message.
 | 
					
						
							|  |  |  | // Forward may be called with a nil f, an error is returned in that case.
 | 
					
						
							|  |  |  | func (f *Forward) Forward(state request.Request) (*dns.Msg, error) {
 | 
					
						
							|  |  |  | 	if f == nil {
 | 
					
						
							| 
									
										
										
										
											2018-05-09 14:41:14 +03:00
										 |  |  | 		return nil, ErrNoForward
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fails := 0
 | 
					
						
							| 
									
										
										
										
											2018-04-01 14:23:40 +01:00
										 |  |  | 	var upstreamErr error
 | 
					
						
							| 
									
										
										
										
											2018-05-04 08:47:26 +03:00
										 |  |  | 	for _, proxy := range f.List() {
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		if proxy.Down(f.maxfails) {
 | 
					
						
							|  |  |  | 			fails++
 | 
					
						
							|  |  |  | 			if fails < len(f.proxies) {
 | 
					
						
							|  |  |  | 				continue
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			// All upstream proxies are dead, assume healtcheck is complete broken and randomly
 | 
					
						
							|  |  |  | 			// select an upstream to connect to.
 | 
					
						
							| 
									
										
										
										
											2018-05-04 08:47:26 +03:00
										 |  |  | 			proxy = f.List()[0]
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 		ret, err := proxy.Connect(context.Background(), state, f.opts)
 | 
					
						
							| 
									
										
										
										
											2018-03-31 15:31:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 21:18:41 +01:00
										 |  |  | 		ret, err = truncated(state, ret, err)
 | 
					
						
							| 
									
										
										
										
											2018-04-01 14:23:40 +01:00
										 |  |  | 		upstreamErr = err
 | 
					
						
							| 
									
										
										
										
											2018-03-31 15:31:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			if fails < len(f.proxies) {
 | 
					
						
							|  |  |  | 				continue
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			break
 | 
					
						
							| 
									
										
										
										
											2018-03-31 15:31:03 +01:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-31 15:31:03 +01:00
										 |  |  | 		// Check if the reply is correct; if not return FormErr.
 | 
					
						
							|  |  |  | 		if !state.Match(ret) {
 | 
					
						
							|  |  |  | 			return state.ErrorMessage(dns.RcodeFormatError), nil
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-31 15:31:03 +01:00
										 |  |  | 		return ret, err
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-04-01 14:23:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if upstreamErr != nil {
 | 
					
						
							|  |  |  | 		return nil, upstreamErr
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 14:41:14 +03:00
										 |  |  | 	return nil, ErrNoHealthy
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Lookup will use name and type to forge a new message and will send that upstream. It will
 | 
					
						
							|  |  |  | // set any EDNS0 options correctly so that downstream will be able to process the reply.
 | 
					
						
							|  |  |  | // Lookup may be called with a nil f, an error is returned in that case.
 | 
					
						
							|  |  |  | func (f *Forward) Lookup(state request.Request, name string, typ uint16) (*dns.Msg, error) {
 | 
					
						
							|  |  |  | 	if f == nil {
 | 
					
						
							| 
									
										
										
										
											2018-05-09 14:41:14 +03:00
										 |  |  | 		return nil, ErrNoForward
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req := new(dns.Msg)
 | 
					
						
							|  |  |  | 	req.SetQuestion(name, typ)
 | 
					
						
							|  |  |  | 	state.SizeAndDo(req)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	state2 := request.Request{W: state.W, Req: req}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return f.Forward(state2)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewLookup returns a Forward that can be used for plugin that need an upstream to resolve external names.
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | // Note that the caller must run Close on the forward to stop the health checking goroutines.
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | func NewLookup(addr []string) *Forward {
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | 	f := New()
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	for i := range addr {
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | 		p := NewProxy(addr[i], nil)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		f.SetProxy(p)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return f
 | 
					
						
							|  |  |  | }
 |