| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2018-08-14 17:55:55 +02:00
										 |  |  | // 50% faster than just opening a new connection for every client. It works with UDP and TCP and uses
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | // inband healthchecking.
 | 
					
						
							|  |  |  | package forward
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2018-04-06 15:41:48 +03:00
										 |  |  | 	"io"
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	"strconv"
 | 
					
						
							| 
									
										
										
										
											2018-04-11 09:50:06 +03:00
										 |  |  | 	"sync/atomic"
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | // limitTimeout is a utility function to auto-tune timeout values
 | 
					
						
							|  |  |  | // average observed time is moved towards the last observed delay moderated by a weight
 | 
					
						
							|  |  |  | // next timeout to use will be the double of the computed average, limited by min and max frame.
 | 
					
						
							|  |  |  | func limitTimeout(currentAvg *int64, minValue time.Duration, maxValue time.Duration) time.Duration {
 | 
					
						
							|  |  |  | 	rt := time.Duration(atomic.LoadInt64(currentAvg))
 | 
					
						
							|  |  |  | 	if rt < minValue {
 | 
					
						
							|  |  |  | 		return minValue
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if rt < maxValue/2 {
 | 
					
						
							|  |  |  | 		return 2 * rt
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return maxValue
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func averageTimeout(currentAvg *int64, observedDuration time.Duration, weight int64) {
 | 
					
						
							|  |  |  | 	dt := time.Duration(atomic.LoadInt64(currentAvg))
 | 
					
						
							|  |  |  | 	atomic.AddInt64(currentAvg, int64(observedDuration-dt)/weight)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | func (t *Transport) dialTimeout() time.Duration {
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | 	return limitTimeout(&t.avgDialTime, minDialTimeout, maxDialTimeout)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | func (t *Transport) updateDialTimeout(newDialTime time.Duration) {
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | 	averageTimeout(&t.avgDialTime, newDialTime, cumulativeAvgWeight)
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-04-16 19:51:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | // Dial dials the address configured in transport, potentially reusing a connection or creating a new one.
 | 
					
						
							| 
									
										
										
										
											2018-09-19 07:29:37 +01:00
										 |  |  | func (t *Transport) Dial(proto string) (*dns.Conn, bool, error) {
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | 	// If tls has been configured; use it.
 | 
					
						
							|  |  |  | 	if t.tlsConfig != nil {
 | 
					
						
							|  |  |  | 		proto = "tcp-tls"
 | 
					
						
							| 
									
										
										
										
											2018-04-16 19:51:49 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	t.dial <- proto
 | 
					
						
							|  |  |  | 	c := <-t.ret
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if c != nil {
 | 
					
						
							|  |  |  | 		return c, true, nil
 | 
					
						
							| 
									
										
										
										
											2018-04-11 09:50:06 +03:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	reqTime := time.Now()
 | 
					
						
							|  |  |  | 	timeout := t.dialTimeout()
 | 
					
						
							|  |  |  | 	if proto == "tcp-tls" {
 | 
					
						
							|  |  |  | 		conn, err := dns.DialTimeoutWithTLS("tcp", t.addr, t.tlsConfig, timeout)
 | 
					
						
							|  |  |  | 		t.updateDialTimeout(time.Since(reqTime))
 | 
					
						
							|  |  |  | 		return conn, false, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	conn, err := dns.DialTimeout(proto, t.addr, timeout)
 | 
					
						
							|  |  |  | 	t.updateDialTimeout(time.Since(reqTime))
 | 
					
						
							|  |  |  | 	return conn, false, err
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-04 08:47:26 +03:00
										 |  |  | // Connect selects an upstream, sends the request and waits for a response.
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | func (p *Proxy) Connect(ctx context.Context, state request.Request, opts options) (*dns.Msg, error) {
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	start := time.Now()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 	proto := ""
 | 
					
						
							|  |  |  | 	switch {
 | 
					
						
							|  |  |  | 	case opts.forceTCP: // TCP flag has precedence over UDP flag
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		proto = "tcp"
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 	case opts.preferUDP:
 | 
					
						
							|  |  |  | 		proto = "udp"
 | 
					
						
							|  |  |  | 	default:
 | 
					
						
							|  |  |  | 		proto = state.Proto()
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 	conn, cached, err := p.transport.Dial(proto)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return nil, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-04-26 09:34:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	// Set buffer size correctly for this client.
 | 
					
						
							|  |  |  | 	conn.UDPSize = uint16(state.Size())
 | 
					
						
							|  |  |  | 	if conn.UDPSize < 512 {
 | 
					
						
							|  |  |  | 		conn.UDPSize = 512
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 12:40:19 +02:00
										 |  |  | 	conn.SetWriteDeadline(time.Now().Add(maxTimeout))
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	if err := conn.WriteMsg(state.Req); err != nil {
 | 
					
						
							|  |  |  | 		conn.Close() // not giving it back
 | 
					
						
							| 
									
										
										
										
											2018-04-06 15:41:48 +03:00
										 |  |  | 		if err == io.EOF && cached {
 | 
					
						
							| 
									
										
										
										
											2018-05-09 14:41:14 +03:00
										 |  |  | 			return nil, ErrCachedClosed
 | 
					
						
							| 
									
										
										
										
											2018-04-06 15:41:48 +03:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 		return nil, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-01 17:40:52 +03:00
										 |  |  | 	var ret *dns.Msg
 | 
					
						
							| 
									
										
										
										
											2018-11-20 08:48:56 +01:00
										 |  |  | 	conn.SetReadDeadline(time.Now().Add(readTimeout))
 | 
					
						
							| 
									
										
										
										
											2019-03-01 17:40:52 +03:00
										 |  |  | 	for {
 | 
					
						
							|  |  |  | 		ret, err = conn.ReadMsg()
 | 
					
						
							|  |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			conn.Close() // not giving it back
 | 
					
						
							|  |  |  | 			if err == io.EOF && cached {
 | 
					
						
							|  |  |  | 				return nil, ErrCachedClosed
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			return ret, err
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		// drop out-of-order responses
 | 
					
						
							|  |  |  | 		if state.Req.Id == ret.Id {
 | 
					
						
							|  |  |  | 			break
 | 
					
						
							| 
									
										
										
										
											2018-04-06 15:41:48 +03:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:14:55 +01:00
										 |  |  | 	p.transport.Yield(conn)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 	rc, ok := dns.RcodeToString[ret.Rcode]
 | 
					
						
							|  |  |  | 	if !ok {
 | 
					
						
							|  |  |  | 		rc = strconv.Itoa(ret.Rcode)
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-07 10:14:21 +03:00
										 |  |  | 	RequestCount.WithLabelValues(p.addr).Add(1)
 | 
					
						
							|  |  |  | 	RcodeCount.WithLabelValues(rc, p.addr).Add(1)
 | 
					
						
							|  |  |  | 	RequestDuration.WithLabelValues(p.addr).Observe(time.Since(start).Seconds())
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 22:00:47 +00:00
										 |  |  | 	return ret, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-04-11 09:50:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-15 02:37:22 -04:00
										 |  |  | const cumulativeAvgWeight = 4
 |