| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | package file | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-04-05 15:54:06 +01:00
										 |  |  | 	"log" | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/middleware" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/request" | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns" | 
					
						
							|  |  |  | 	"golang.org/x/net/context" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // Xfr serves up an AXFR. | 
					
						
							|  |  |  | type Xfr struct { | 
					
						
							|  |  |  | 	*Zone | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // ServeDNS implements the middleware.Handler interface. | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | func (x Xfr) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) { | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	state := request.Request{W: w, Req: r} | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	if !x.TransferAllowed(state) { | 
					
						
							|  |  |  | 		return dns.RcodeServerFailure, nil | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-04-09 16:39:50 +01:00
										 |  |  | 	if state.QType() != dns.TypeAXFR && state.QType() != dns.TypeIXFR { | 
					
						
							| 
									
										
										
										
											2016-12-20 18:58:05 +00:00
										 |  |  | 		return 0, middleware.Error(x.Name(), fmt.Errorf("xfr called with non transfer type: %d", state.QType())) | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	records := x.All() | 
					
						
							|  |  |  | 	if len(records) == 0 { | 
					
						
							|  |  |  | 		return dns.RcodeServerFailure, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ch := make(chan *dns.Envelope) | 
					
						
							|  |  |  | 	defer close(ch) | 
					
						
							|  |  |  | 	tr := new(dns.Transfer) | 
					
						
							|  |  |  | 	go tr.Out(w, r, ch) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	j, l := 0, 0 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | 	records = append(records, records[0]) // add closing SOA to the end | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	log.Printf("[INFO] Outgoing transfer of %d records of zone %s to %s started", len(records), x.origin, state.IP()) | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	for i, r := range records { | 
					
						
							|  |  |  | 		l += dns.Len(r) | 
					
						
							|  |  |  | 		if l > transferLength { | 
					
						
							|  |  |  | 			ch <- &dns.Envelope{RR: records[j:i]} | 
					
						
							|  |  |  | 			l = 0 | 
					
						
							|  |  |  | 			j = i | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if j < len(records) { | 
					
						
							|  |  |  | 		ch <- &dns.Envelope{RR: records[j:]} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	w.Hijack() | 
					
						
							|  |  |  | 	// w.Close() // Client closes connection | 
					
						
							|  |  |  | 	return dns.RcodeSuccess, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-20 18:58:05 +00:00
										 |  |  | // Name implements the middleware.Hander interface. | 
					
						
							|  |  |  | func (x Xfr) Name() string { return "xfr" } // Or should we return "file" here? | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-05 15:54:06 +01:00
										 |  |  | const transferLength = 1000 // Start a new envelop after message reaches this size in bytes. Intentionally small to test multi envelope parsing. |