| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | package dnsserver
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-19 11:26:00 +01:00
										 |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2017-03-13 20:24:37 +00:00
										 |  |  | 	"crypto/tls"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/middleware"
 | 
					
						
							| 
									
										
										
										
											2016-09-19 11:26:00 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/mholt/caddy"
 | 
					
						
							|  |  |  | )
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Config configuration for a single server.
 | 
					
						
							|  |  |  | type Config struct {
 | 
					
						
							|  |  |  | 	// The zone of the site.
 | 
					
						
							|  |  |  | 	Zone string
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// The hostname to bind listener to, defaults to the wildcard address
 | 
					
						
							|  |  |  | 	ListenHost string
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// The port to listen on.
 | 
					
						
							|  |  |  | 	Port string
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-11 20:42:28 +01:00
										 |  |  | 	// Root points to a base directory we we find user defined "things".
 | 
					
						
							|  |  |  | 	// First consumer is the file middleware to looks for zone files in this place.
 | 
					
						
							|  |  |  | 	Root string
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-13 20:24:37 +00:00
										 |  |  | 	// The transport we implement, normally just "dns" over TCP/UDP, but could be
 | 
					
						
							|  |  |  | 	// DNS-over-TLS or DNS-over-gRPC.
 | 
					
						
							|  |  |  | 	Transport string
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// TLSConfig when listening for encrypted connections (gRPC, DNS-over-TLS).
 | 
					
						
							|  |  |  | 	TLSConfig *tls.Config
 | 
					
						
							| 
									
										
										
										
											2017-01-31 17:21:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	// Middleware stack.
 | 
					
						
							| 
									
										
										
										
											2016-09-19 11:26:00 +01:00
										 |  |  | 	Middleware []middleware.Middleware
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Compiled middleware stack.
 | 
					
						
							| 
									
										
										
										
											2016-09-19 11:26:00 +01:00
										 |  |  | 	middlewareChain middleware.Handler
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetConfig gets the Config that corresponds to c.
 | 
					
						
							|  |  |  | // If none exist nil is returned.
 | 
					
						
							|  |  |  | func GetConfig(c *caddy.Controller) *Config {
 | 
					
						
							|  |  |  | 	ctx := c.Context().(*dnsContext)
 | 
					
						
							|  |  |  | 	if cfg, ok := ctx.keysToConfigs[c.Key]; ok {
 | 
					
						
							|  |  |  | 		return cfg
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	// we should only get here during tests because directive
 | 
					
						
							|  |  |  | 	// actions typically skip the server blocks where we make
 | 
					
						
							|  |  |  | 	// the configs.
 | 
					
						
							| 
									
										
										
										
											2016-09-19 11:26:00 +01:00
										 |  |  | 	ctx.saveConfig(c.Key, &Config{})
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	return GetConfig(c)
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | // GetMiddleware returns the middleware handler that has been added to the config under name.
 | 
					
						
							|  |  |  | // This is useful to inspect if a certain middleware is active in this server.
 | 
					
						
							|  |  |  | // Note that this is order dependent and the order is defined in directives.go, i.e. if your middleware
 | 
					
						
							|  |  |  | // comes before the middleware you are checking; it will not be there (yet).
 | 
					
						
							|  |  |  | func GetMiddleware(c *caddy.Controller, name string) middleware.Handler {
 | 
					
						
							|  |  |  | 	conf := GetConfig(c)
 | 
					
						
							|  |  |  | 	for _, h := range conf.Middleware {
 | 
					
						
							|  |  |  | 		x := h(nil)
 | 
					
						
							|  |  |  | 		if name == x.Name() {
 | 
					
						
							|  |  |  | 			return x
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 |