| 
									
										
										
										
											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 ( | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	"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
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-17 23:59:57 +03:00
										 |  |  | // Erratic is a plugin that returns erratic responses 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 | 
					
						
							| 
									
										
										
										
											2018-10-23 17:55:40 +01:00
										 |  |  | 	large    bool // undocumented feature; return large responses for A request (>512B, to test compression). | 
					
						
							| 
									
										
										
										
											2017-04-16 07:49:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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.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) | 
					
						
							| 
									
										
										
										
											2018-10-23 17:55:40 +01:00
										 |  |  | 		if e.large { | 
					
						
							|  |  |  | 			for i := 0; i < 29; i++ { | 
					
						
							|  |  |  | 				m.Answer = append(m.Answer, &rr) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	case dns.TypeAAAA: | 
					
						
							|  |  |  | 		rr := *(rrAAAA.(*dns.AAAA)) | 
					
						
							|  |  |  | 		rr.Header().Name = state.QName() | 
					
						
							|  |  |  | 		m.Answer = append(m.Answer, &rr) | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 	case dns.TypeAXFR: | 
					
						
							|  |  |  | 		if drop { | 
					
						
							|  |  |  | 			return 0, nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if delay { | 
					
						
							|  |  |  | 			time.Sleep(e.duration) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		xfr(state, trunc) | 
					
						
							|  |  |  | 		return 0, nil | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 		if drop { | 
					
						
							|  |  |  | 			return 0, nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if delay { | 
					
						
							|  |  |  | 			time.Sleep(e.duration) | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-20 10:25:54 +01:00
										 |  |  | 		// coredns will return error. | 
					
						
							|  |  |  | 		return dns.RcodeServerFailure, nil | 
					
						
							| 
									
										
										
										
											2017-01-06 09:42:30 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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
										 |  |  | 	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") | 
					
						
							|  |  |  | ) |