| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | package forward
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 	"runtime"
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 	"testing"
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 	"time"
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/dnstest"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/test"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-24 18:18:26 +01:00
										 |  |  | 	"github.com/mholt/caddy"
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestProxyClose(t *testing.T) {
 | 
					
						
							|  |  |  | 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | 
					
						
							|  |  |  | 		ret := new(dns.Msg)
 | 
					
						
							|  |  |  | 		ret.SetReply(r)
 | 
					
						
							|  |  |  | 		w.WriteMsg(ret)
 | 
					
						
							|  |  |  | 	})
 | 
					
						
							|  |  |  | 	defer s.Close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req := new(dns.Msg)
 | 
					
						
							|  |  |  | 	req.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 	state := request.Request{W: &test.ResponseWriter{}, Req: req}
 | 
					
						
							|  |  |  | 	ctx := context.TODO()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-24 17:09:15 +01:00
										 |  |  | 	for i := 0; i < 100; i++ {
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		p := NewProxy(s.Addr, nil /* no TLS */)
 | 
					
						
							|  |  |  | 		p.start(hcDuration)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 		doneCnt := 0
 | 
					
						
							|  |  |  | 		doneCh := make(chan bool)
 | 
					
						
							|  |  |  | 		timeCh := time.After(10 * time.Second)
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		go func() {
 | 
					
						
							|  |  |  | 			p.connect(ctx, state, false, false)
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 			doneCh <- true
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		}()
 | 
					
						
							|  |  |  | 		go func() {
 | 
					
						
							|  |  |  | 			p.connect(ctx, state, true, false)
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 			doneCh <- true
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		}()
 | 
					
						
							|  |  |  | 		go func() {
 | 
					
						
							|  |  |  | 			p.close()
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 			doneCh <- true
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		}()
 | 
					
						
							|  |  |  | 		go func() {
 | 
					
						
							|  |  |  | 			p.connect(ctx, state, false, false)
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 			doneCh <- true
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		}()
 | 
					
						
							|  |  |  | 		go func() {
 | 
					
						
							|  |  |  | 			p.connect(ctx, state, true, false)
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 			doneCh <- true
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		}()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 21:15:49 +03:00
										 |  |  | 		for doneCnt < 5 {
 | 
					
						
							|  |  |  | 			select {
 | 
					
						
							|  |  |  | 			case <-doneCh:
 | 
					
						
							|  |  |  | 				doneCnt++
 | 
					
						
							|  |  |  | 			case <-timeCh:
 | 
					
						
							|  |  |  | 				t.Error("TestProxyClose is running too long, dumping goroutines:")
 | 
					
						
							|  |  |  | 				buf := make([]byte, 100000)
 | 
					
						
							|  |  |  | 				stackSize := runtime.Stack(buf, true)
 | 
					
						
							|  |  |  | 				t.Fatal(string(buf[:stackSize]))
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2018-04-20 17:47:46 +03:00
										 |  |  | 		if p.inProgress != 0 {
 | 
					
						
							|  |  |  | 			t.Errorf("unexpected query in progress")
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		if p.state != stopped {
 | 
					
						
							|  |  |  | 			t.Errorf("unexpected proxy state, expected %d, got %d", stopped, p.state)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2018-04-24 18:18:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestProxy(t *testing.T) {
 | 
					
						
							|  |  |  | 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | 
					
						
							|  |  |  | 		ret := new(dns.Msg)
 | 
					
						
							|  |  |  | 		ret.SetReply(r)
 | 
					
						
							|  |  |  | 		ret.Answer = append(ret.Answer, test.A("example.org. IN A 127.0.0.1"))
 | 
					
						
							|  |  |  | 		w.WriteMsg(ret)
 | 
					
						
							|  |  |  | 	})
 | 
					
						
							|  |  |  | 	defer s.Close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c := caddy.NewTestController("dns", "forward . "+s.Addr)
 | 
					
						
							|  |  |  | 	f, err := parseForward(c)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Errorf("Failed to create forwarder: %s", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	f.OnStartup()
 | 
					
						
							|  |  |  | 	defer f.OnShutdown()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if _, err := f.ServeDNS(context.TODO(), rec, m); err != nil {
 | 
					
						
							|  |  |  | 		t.Fatal("Expected to receive reply, but didn't")
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if x := rec.Msg.Answer[0].Header().Name; x != "example.org." {
 | 
					
						
							|  |  |  | 		t.Errorf("Expected %s, got %s", "example.org.", x)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestProxyTLSFail(t *testing.T) {
 | 
					
						
							|  |  |  | 	// This is an udp/tcp test server, so we shouldn't reach it with TLS.
 | 
					
						
							|  |  |  | 	s := dnstest.NewServer(func(w dns.ResponseWriter, r *dns.Msg) {
 | 
					
						
							|  |  |  | 		ret := new(dns.Msg)
 | 
					
						
							|  |  |  | 		ret.SetReply(r)
 | 
					
						
							|  |  |  | 		ret.Answer = append(ret.Answer, test.A("example.org. IN A 127.0.0.1"))
 | 
					
						
							|  |  |  | 		w.WriteMsg(ret)
 | 
					
						
							|  |  |  | 	})
 | 
					
						
							|  |  |  | 	defer s.Close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c := caddy.NewTestController("dns", "forward . tls://"+s.Addr)
 | 
					
						
							|  |  |  | 	f, err := parseForward(c)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		t.Errorf("Failed to create forwarder: %s", err)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	f.OnStartup()
 | 
					
						
							|  |  |  | 	defer f.OnShutdown()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m.SetQuestion("example.org.", dns.TypeA)
 | 
					
						
							|  |  |  | 	rec := dnstest.NewRecorder(&test.ResponseWriter{})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if _, err := f.ServeDNS(context.TODO(), rec, m); err == nil {
 | 
					
						
							|  |  |  | 		t.Fatal("Expected *not* to receive reply, but got one")
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 |