| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | package file
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	"fmt"
 | 
					
						
							|  |  |  | 	"log"
 | 
					
						
							|  |  |  | 	"os"
 | 
					
						
							| 
									
										
										
										
											2016-04-15 20:00:17 +01:00
										 |  |  | 	"path"
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	"strings"
 | 
					
						
							| 
									
										
										
										
											2016-04-13 20:14:03 +01:00
										 |  |  | 	"sync"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	"github.com/miekg/coredns/middleware"
 | 
					
						
							| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | 	"github.com/miekg/coredns/middleware/file/tree"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	"github.com/fsnotify/fsnotify"
 | 
					
						
							| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Zone struct {
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	origin string
 | 
					
						
							|  |  |  | 	file   string
 | 
					
						
							| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | 	*tree.Tree
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	Apex Apex
 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	TransferTo   []string
 | 
					
						
							| 
									
										
										
										
											2016-04-13 20:14:03 +01:00
										 |  |  | 	StartupOnce  sync.Once
 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | 	TransferFrom []string
 | 
					
						
							|  |  |  | 	Expired      *bool
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	NoReload bool
 | 
					
						
							|  |  |  | 	reloadMu sync.RWMutex
 | 
					
						
							|  |  |  | 	// TODO: shutdown watcher channel
 | 
					
						
							| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | type Apex struct {
 | 
					
						
							|  |  |  | 	SOA    *dns.SOA
 | 
					
						
							|  |  |  | 	NS     []dns.RR
 | 
					
						
							|  |  |  | 	SIGSOA []dns.RR
 | 
					
						
							|  |  |  | 	SIGNS  []dns.RR
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 16:56:16 +01:00
										 |  |  | // NewZone returns a new zone.
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | func NewZone(name, file string) *Zone {
 | 
					
						
							| 
									
										
										
										
											2016-04-15 20:14:04 +01:00
										 |  |  | 	z := &Zone{origin: dns.Fqdn(name), file: path.Clean(file), Tree: &tree.Tree{}, Expired: new(bool)}
 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | 	*z.Expired = false
 | 
					
						
							|  |  |  | 	return z
 | 
					
						
							| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-05 10:53:23 +01:00
										 |  |  | // Copy copies a zone *without* copying the zone's content. It is not a deep copy.
 | 
					
						
							|  |  |  | func (z *Zone) Copy() *Zone {
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	z1 := NewZone(z.origin, z.file)
 | 
					
						
							| 
									
										
										
										
											2016-04-05 10:53:23 +01:00
										 |  |  | 	z1.TransferTo = z.TransferTo
 | 
					
						
							|  |  |  | 	z1.TransferFrom = z.TransferFrom
 | 
					
						
							|  |  |  | 	z1.Expired = z.Expired
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	z1.Apex = z.Apex
 | 
					
						
							| 
									
										
										
										
											2016-04-05 10:53:23 +01:00
										 |  |  | 	return z1
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 16:56:16 +01:00
										 |  |  | // Insert inserts r into z.
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | func (z *Zone) Insert(r dns.RR) error {
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	r.Header().Name = strings.ToLower(r.Header().Name)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	switch h := r.Header().Rrtype; h {
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	case dns.TypeNS:
 | 
					
						
							|  |  |  | 		r.(*dns.NS).Ns = strings.ToLower(r.(*dns.NS).Ns)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if r.Header().Name == z.origin {
 | 
					
						
							|  |  |  | 			z.Apex.NS = append(z.Apex.NS, r)
 | 
					
						
							|  |  |  | 			return nil
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	case dns.TypeSOA:
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 		r.(*dns.SOA).Ns = strings.ToLower(r.(*dns.SOA).Ns)
 | 
					
						
							|  |  |  | 		r.(*dns.SOA).Mbox = strings.ToLower(r.(*dns.SOA).Mbox)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		z.Apex.SOA = r.(*dns.SOA)
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 		return nil
 | 
					
						
							|  |  |  | 	case dns.TypeNSEC3, dns.TypeNSEC3PARAM:
 | 
					
						
							|  |  |  | 		return fmt.Errorf("NSEC3 zone is not supported, dropping")
 | 
					
						
							|  |  |  | 	case dns.TypeRRSIG:
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 		x := r.(*dns.RRSIG)
 | 
					
						
							|  |  |  | 		switch x.TypeCovered {
 | 
					
						
							|  |  |  | 		case dns.TypeSOA:
 | 
					
						
							|  |  |  | 			z.Apex.SIGSOA = append(z.Apex.SIGSOA, x)
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 			return nil
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 		case dns.TypeNS:
 | 
					
						
							|  |  |  | 			if r.Header().Name == z.origin {
 | 
					
						
							|  |  |  | 				z.Apex.SIGNS = append(z.Apex.SIGNS, x)
 | 
					
						
							|  |  |  | 				return nil
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	case dns.TypeCNAME:
 | 
					
						
							|  |  |  | 		r.(*dns.CNAME).Target = strings.ToLower(r.(*dns.CNAME).Target)
 | 
					
						
							|  |  |  | 	case dns.TypeMX:
 | 
					
						
							|  |  |  | 		r.(*dns.MX).Mx = strings.ToLower(r.(*dns.MX).Mx)
 | 
					
						
							|  |  |  | 	case dns.TypeSRV:
 | 
					
						
							|  |  |  | 		r.(*dns.SRV).Target = strings.ToLower(r.(*dns.SRV).Target)
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	z.Tree.Insert(r)
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2016-03-27 07:37:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 16:56:16 +01:00
										 |  |  | // Delete deletes r from z.
 | 
					
						
							|  |  |  | func (z *Zone) Delete(r dns.RR) { z.Tree.Delete(r) }
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | // TransferAllowed checks if incoming request for transferring the zone is allowed according to the ACLs.
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | func (z *Zone) TransferAllowed(state middleware.State) bool {
 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | 	for _, t := range z.TransferTo {
 | 
					
						
							|  |  |  | 		if t == "*" {
 | 
					
						
							|  |  |  | 			return true
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-04-05 07:37:05 +01:00
										 |  |  | 	// TODO(miek): future matching against IP/CIDR notations
 | 
					
						
							| 
									
										
										
										
											2016-04-03 09:02:34 +01:00
										 |  |  | 	return false
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // All returns all records from the zone, the first record will be the SOA record,
 | 
					
						
							|  |  |  | // otionally followed by all RRSIG(SOA)s.
 | 
					
						
							|  |  |  | func (z *Zone) All() []dns.RR {
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	z.reloadMu.RLock()
 | 
					
						
							|  |  |  | 	defer z.reloadMu.RUnlock()
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	records := []dns.RR{}
 | 
					
						
							|  |  |  | 	allNodes := z.Tree.All()
 | 
					
						
							|  |  |  | 	for _, a := range allNodes {
 | 
					
						
							|  |  |  | 		records = append(records, a.All()...)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	if len(z.Apex.SIGNS) > 0 {
 | 
					
						
							|  |  |  | 		records = append(z.Apex.SIGNS, records...)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	records = append(z.Apex.NS, records...)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if len(z.Apex.SIGSOA) > 0 {
 | 
					
						
							|  |  |  | 		records = append(z.Apex.SIGSOA, records...)
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 	return append([]dns.RR{z.Apex.SOA}, records...)
 | 
					
						
							| 
									
										
										
										
											2016-03-28 12:08:05 +01:00
										 |  |  | }
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (z *Zone) Reload(shutdown chan bool) error {
 | 
					
						
							|  |  |  | 	if z.NoReload {
 | 
					
						
							|  |  |  | 		return nil
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	watcher, err := fsnotify.NewWatcher()
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-04-15 20:00:17 +01:00
										 |  |  | 	err = watcher.Add(path.Dir(z.file))
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	go func() {
 | 
					
						
							|  |  |  | 		// TODO(miek): needs to be killed on reload.
 | 
					
						
							|  |  |  | 		for {
 | 
					
						
							|  |  |  | 			select {
 | 
					
						
							|  |  |  | 			case event := <-watcher.Events:
 | 
					
						
							| 
									
										
										
										
											2016-04-15 20:14:04 +01:00
										 |  |  | 				if path.Clean(event.Name) == z.file {
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 					reader, err := os.Open(z.file)
 | 
					
						
							|  |  |  | 					if err != nil {
 | 
					
						
							|  |  |  | 						log.Printf("[ERROR] Failed to open `%s' for `%s': %v", z.file, z.origin, err)
 | 
					
						
							|  |  |  | 						continue
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							|  |  |  | 					z.reloadMu.Lock()
 | 
					
						
							|  |  |  | 					zone, err := Parse(reader, z.origin, z.file)
 | 
					
						
							|  |  |  | 					if err != nil {
 | 
					
						
							|  |  |  | 						log.Printf("[ERROR] Failed to parse `%s': %v", z.origin, err)
 | 
					
						
							|  |  |  | 						z.reloadMu.Unlock()
 | 
					
						
							|  |  |  | 						continue
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							|  |  |  | 					// copy elements we need
 | 
					
						
							| 
									
										
										
										
											2016-04-16 16:16:52 +01:00
										 |  |  | 					z.Apex = zone.Apex
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 					z.Tree = zone.Tree
 | 
					
						
							|  |  |  | 					z.reloadMu.Unlock()
 | 
					
						
							| 
									
										
										
										
											2016-04-15 20:00:17 +01:00
										 |  |  | 					log.Printf("[INFO] Successfully reloaded zone `%s'", z.origin)
 | 
					
						
							| 
									
										
										
										
											2016-04-15 20:29:32 +01:00
										 |  |  | 					z.Notify()
 | 
					
						
							| 
									
										
										
										
											2016-04-15 14:26:27 +01:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 			case <-shutdown:
 | 
					
						
							|  |  |  | 				watcher.Close()
 | 
					
						
							|  |  |  | 				return
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}()
 | 
					
						
							|  |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 |