| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | package forward
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"sync/atomic"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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.
 | 
					
						
							|  |  |  | func (p *Proxy) Check() error {
 | 
					
						
							|  |  |  | 	err := p.send()
 | 
					
						
							| 
									
										
										
										
											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-02-15 10:21:57 +01:00
										 |  |  | func (p *Proxy) send() error {
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	hcping := new(dns.Msg)
 | 
					
						
							|  |  |  | 	hcping.SetQuestion(".", dns.TypeNS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-15 10:21:57 +01:00
										 |  |  | 	m, _, err := p.client.Exchange(hcping, p.addr)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	// If we got a header, we're alright, basically only care about I/O errors 'n stuff
 | 
					
						
							|  |  |  | 	if err != nil && m != nil {
 | 
					
						
							|  |  |  | 		// Silly check, something sane came back
 | 
					
						
							|  |  |  | 		if m.Response || m.Opcode == dns.OpcodeQuery {
 | 
					
						
							|  |  |  | 			err = nil
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err
 | 
					
						
							|  |  |  | }
 |