mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	* Configurable zone reload interval in file plugin * passing reload config from auto plugin to file plugin. removed noReload property from Zone struct. fixed tests based on short file reload hack
		
			
				
	
	
		
			181 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			181 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package auto
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 	"path"
 | |
| 	"regexp"
 | |
| 	"strconv"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/coredns/coredns/core/dnsserver"
 | |
| 	"github.com/coredns/coredns/plugin"
 | |
| 	"github.com/coredns/coredns/plugin/metrics"
 | |
| 	clog "github.com/coredns/coredns/plugin/pkg/log"
 | |
| 	"github.com/coredns/coredns/plugin/pkg/parse"
 | |
| 	"github.com/coredns/coredns/plugin/pkg/upstream"
 | |
| 
 | |
| 	"github.com/mholt/caddy"
 | |
| )
 | |
| 
 | |
| var log = clog.NewWithPlugin("auto")
 | |
| 
 | |
| func init() {
 | |
| 	caddy.RegisterPlugin("auto", caddy.Plugin{
 | |
| 		ServerType: "dns",
 | |
| 		Action:     setup,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func setup(c *caddy.Controller) error {
 | |
| 	a, err := autoParse(c)
 | |
| 	if err != nil {
 | |
| 		return plugin.Error("auto", err)
 | |
| 	}
 | |
| 
 | |
| 	c.OnStartup(func() error {
 | |
| 		m := dnsserver.GetConfig(c).Handler("prometheus")
 | |
| 		if m == nil {
 | |
| 			return nil
 | |
| 		}
 | |
| 		(&a).metrics = m.(*metrics.Metrics)
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	walkChan := make(chan bool)
 | |
| 
 | |
| 	c.OnStartup(func() error {
 | |
| 		err := a.Walk()
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 
 | |
| 		go func() {
 | |
| 			ticker := time.NewTicker(a.loader.duration)
 | |
| 			for {
 | |
| 				select {
 | |
| 				case <-walkChan:
 | |
| 					return
 | |
| 				case <-ticker.C:
 | |
| 					a.Walk()
 | |
| 				}
 | |
| 			}
 | |
| 		}()
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	c.OnShutdown(func() error {
 | |
| 		close(walkChan)
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
 | |
| 		a.Next = next
 | |
| 		return a
 | |
| 	})
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func autoParse(c *caddy.Controller) (Auto, error) {
 | |
| 	var a = Auto{
 | |
| 		loader: loader{template: "${1}", re: regexp.MustCompile(`db\.(.*)`), duration: 60 * time.Second},
 | |
| 		Zones:  &Zones{},
 | |
| 	}
 | |
| 
 | |
| 	config := dnsserver.GetConfig(c)
 | |
| 
 | |
| 	for c.Next() {
 | |
| 		// auto [ZONES...]
 | |
| 		a.Zones.origins = make([]string, len(c.ServerBlockKeys))
 | |
| 		copy(a.Zones.origins, c.ServerBlockKeys)
 | |
| 
 | |
| 		args := c.RemainingArgs()
 | |
| 		if len(args) > 0 {
 | |
| 			a.Zones.origins = args
 | |
| 		}
 | |
| 		for i := range a.Zones.origins {
 | |
| 			a.Zones.origins[i] = plugin.Host(a.Zones.origins[i]).Normalize()
 | |
| 		}
 | |
| 
 | |
| 		for c.NextBlock() {
 | |
| 			switch c.Val() {
 | |
| 			case "directory": // directory DIR [REGEXP [TEMPLATE] [DURATION]]
 | |
| 				if !c.NextArg() {
 | |
| 					return a, c.ArgErr()
 | |
| 				}
 | |
| 				a.loader.directory = c.Val()
 | |
| 				if !path.IsAbs(a.loader.directory) && config.Root != "" {
 | |
| 					a.loader.directory = path.Join(config.Root, a.loader.directory)
 | |
| 				}
 | |
| 				_, err := os.Stat(a.loader.directory)
 | |
| 				if err != nil {
 | |
| 					if os.IsNotExist(err) {
 | |
| 						log.Warningf("Directory does not exist: %s", a.loader.directory)
 | |
| 					} else {
 | |
| 						return a, c.Errf("Unable to access root path '%s': %v", a.loader.directory, err)
 | |
| 					}
 | |
| 				}
 | |
| 
 | |
| 				// regexp
 | |
| 				if c.NextArg() {
 | |
| 					a.loader.re, err = regexp.Compile(c.Val())
 | |
| 					if err != nil {
 | |
| 						return a, err
 | |
| 					}
 | |
| 					if a.loader.re.NumSubexp() == 0 {
 | |
| 						return a, c.Errf("Need at least one sub expression")
 | |
| 					}
 | |
| 				}
 | |
| 
 | |
| 				// template
 | |
| 				if c.NextArg() {
 | |
| 					a.loader.template = rewriteToExpand(c.Val())
 | |
| 				}
 | |
| 
 | |
| 				// duration
 | |
| 				if c.NextArg() {
 | |
| 					i, err := strconv.Atoi(c.Val())
 | |
| 					if err != nil {
 | |
| 						return a, err
 | |
| 					}
 | |
| 					if i < 1 {
 | |
| 						i = 1
 | |
| 					}
 | |
| 					a.loader.duration = time.Duration(i) * time.Second
 | |
| 				}
 | |
| 
 | |
| 			case "reload":
 | |
| 				d, err := time.ParseDuration(c.RemainingArgs()[0])
 | |
| 				if err != nil {
 | |
| 					return a, plugin.Error("file", err)
 | |
| 				}
 | |
| 				a.loader.ReloadInterval = d
 | |
| 
 | |
| 			case "no_reload":
 | |
| 				a.loader.ReloadInterval = 0
 | |
| 
 | |
| 			case "upstream":
 | |
| 				args := c.RemainingArgs()
 | |
| 				if len(args) == 0 {
 | |
| 					return a, c.ArgErr()
 | |
| 				}
 | |
| 				var err error
 | |
| 				a.loader.upstream, err = upstream.New(args)
 | |
| 				if err != nil {
 | |
| 					return a, err
 | |
| 				}
 | |
| 
 | |
| 			default:
 | |
| 				t, _, e := parse.Transfer(c, false)
 | |
| 				if e != nil {
 | |
| 					return a, e
 | |
| 				}
 | |
| 				if t != nil {
 | |
| 					a.loader.transferTo = append(a.loader.transferTo, t...)
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	return a, nil
 | |
| }
 |