| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | // Package erratic implements a plugin that returns erratic answers (delayed, dropped).
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | package erratic
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"sync/atomic"
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	"time"
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/request"
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-20 11:01:06 +01:00
										 |  |  | 	"context"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | // Erratic is a plugin that returns erratic repsonses to each client.
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | type Erratic struct {
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	drop uint64
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	delay    uint64
 | 
					
						
							|  |  |  | 	duration time.Duration
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 	truncate uint64
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	q uint64 // counter of queries
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | // ServeDNS implements the plugin.Handler interface.
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | func (e *Erratic) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
 | 
					
						
							|  |  |  | 	state := request.Request{W: w, Req: r}
 | 
					
						
							|  |  |  | 	drop := false
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	delay := false
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 	trunc := false
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	queryNr := atomic.LoadUint64(&e.q)
 | 
					
						
							|  |  |  | 	atomic.AddUint64(&e.q, 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 	if e.drop > 0 && queryNr%e.drop == 0 {
 | 
					
						
							|  |  |  | 		drop = true
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 	if e.delay > 0 && queryNr%e.delay == 0 {
 | 
					
						
							|  |  |  | 		delay = true
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if e.truncate > 0 && queryNr&e.truncate == 0 {
 | 
					
						
							|  |  |  | 		trunc = true
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m.SetReply(r)
 | 
					
						
							|  |  |  | 	m.Compress = true
 | 
					
						
							|  |  |  | 	m.Authoritative = true
 | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 	if trunc {
 | 
					
						
							|  |  |  | 		m.Truncated = true
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// small dance to copy rrA or rrAAAA into a non-pointer var that allows us to overwrite the ownername
 | 
					
						
							| 
									
										
										
										
											2017-03-13 20:24:37 +00:00
										 |  |  | 	// in a non-racy way.
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	switch state.QType() {
 | 
					
						
							|  |  |  | 	case dns.TypeA:
 | 
					
						
							|  |  |  | 		rr := *(rrA.(*dns.A))
 | 
					
						
							|  |  |  | 		rr.Header().Name = state.QName()
 | 
					
						
							|  |  |  | 		m.Answer = append(m.Answer, &rr)
 | 
					
						
							|  |  |  | 	case dns.TypeAAAA:
 | 
					
						
							|  |  |  | 		rr := *(rrAAAA.(*dns.AAAA))
 | 
					
						
							|  |  |  | 		rr.Header().Name = state.QName()
 | 
					
						
							|  |  |  | 		m.Answer = append(m.Answer, &rr)
 | 
					
						
							|  |  |  | 	default:
 | 
					
						
							|  |  |  | 		if !drop {
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 			if delay {
 | 
					
						
							|  |  |  | 				time.Sleep(e.duration)
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 			// coredns will return error.
 | 
					
						
							|  |  |  | 			return dns.RcodeServerFailure, nil
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if drop {
 | 
					
						
							|  |  |  | 		return 0, nil
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-13 16:26:17 +01:00
										 |  |  | 	if delay {
 | 
					
						
							|  |  |  | 		time.Sleep(e.duration)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	state.SizeAndDo(m)
 | 
					
						
							|  |  |  | 	w.WriteMsg(m)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Name implements the Handler interface.
 | 
					
						
							|  |  |  | func (e *Erratic) Name() string { return "erratic" }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var (
 | 
					
						
							|  |  |  | 	rrA, _    = dns.NewRR(". IN 0 A 192.0.2.53")
 | 
					
						
							|  |  |  | 	rrAAAA, _ = dns.NewRR(". IN 0 AAAA 2001:DB8::53")
 | 
					
						
							|  |  |  | )
 |