| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | package forward
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 	"crypto/tls"
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	"sync/atomic"
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 	"time"
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/transport"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | // HealthChecker checks the upstream health.
 | 
					
						
							|  |  |  | type HealthChecker interface {
 | 
					
						
							|  |  |  | 	Check(*Proxy) error
 | 
					
						
							|  |  |  | 	SetTLSConfig(*tls.Config)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // dnsHc is a health checker for a DNS endpoint (DNS, and DoT).
 | 
					
						
							|  |  |  | type dnsHc struct{ c *dns.Client }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | // NewHealthChecker returns a new HealthChecker based on transport.
 | 
					
						
							|  |  |  | func NewHealthChecker(trans string) HealthChecker {
 | 
					
						
							|  |  |  | 	switch trans {
 | 
					
						
							|  |  |  | 	case transport.DNS, transport.TLS:
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 		c := new(dns.Client)
 | 
					
						
							|  |  |  | 		c.Net = "udp"
 | 
					
						
							|  |  |  | 		c.ReadTimeout = 1 * time.Second
 | 
					
						
							|  |  |  | 		c.WriteTimeout = 1 * time.Second
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return &dnsHc{c: c}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 22:50:30 +03:00
										 |  |  | 	log.Warningf("No healthchecker for transport %q", trans)
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (h *dnsHc) SetTLSConfig(cfg *tls.Config) {
 | 
					
						
							|  |  |  | 	h.c.Net = "tcp-tls"
 | 
					
						
							|  |  |  | 	h.c.TLSConfig = cfg
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | // For HC we send to . IN NS +norec message to the upstream. Dial timeouts and empty
 | 
					
						
							|  |  |  | // replies are considered fails, basically anything else constitutes a healthy upstream.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | // Check is used as the up.Func in the up.Probe.
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | func (h *dnsHc) Check(p *Proxy) error {
 | 
					
						
							|  |  |  | 	err := h.send(p.addr)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	if err != nil {
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | 		HealthcheckFailureCount.WithLabelValues(p.addr).Add(1)
 | 
					
						
							|  |  |  | 		atomic.AddUint32(&p.fails, 1)
 | 
					
						
							|  |  |  | 		return err
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | 	atomic.StoreUint32(&p.fails, 0)
 | 
					
						
							|  |  |  | 	return nil
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | func (h *dnsHc) send(addr string) error {
 | 
					
						
							|  |  |  | 	ping := new(dns.Msg)
 | 
					
						
							|  |  |  | 	ping.SetQuestion(".", dns.TypeNS)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 	m, _, err := h.c.Exchange(ping, addr)
 | 
					
						
							|  |  |  | 	// If we got a header, we're alright, basically only care about I/O errors 'n stuff.
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	if err != nil && m != nil {
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 		// Silly check, something sane came back.
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		if m.Response || m.Opcode == dns.OpcodeQuery {
 | 
					
						
							|  |  |  | 			err = nil
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err
 | 
					
						
							|  |  |  | }
 |