2016-08-19 17:14:17 -07:00
|
|
|
package dnsserver
|
|
|
|
|
|
2016-09-19 11:26:00 +01:00
|
|
|
import (
|
2022-09-08 14:56:27 -04:00
|
|
|
"context"
|
2017-03-13 20:24:37 +00:00
|
|
|
"crypto/tls"
|
2018-02-23 11:54:42 -05:00
|
|
|
"fmt"
|
2020-12-15 14:26:07 +01:00
|
|
|
"net/http"
|
2022-12-28 11:14:16 +00:00
|
|
|
"time"
|
2017-03-13 20:24:37 +00:00
|
|
|
|
2020-09-24 18:14:41 +02:00
|
|
|
"github.com/coredns/caddy"
|
2017-09-14 09:36:06 +01:00
|
|
|
"github.com/coredns/coredns/plugin"
|
2022-09-08 14:56:27 -04:00
|
|
|
"github.com/coredns/coredns/request"
|
2016-09-19 11:26:00 +01:00
|
|
|
)
|
2016-08-19 17:14:17 -07:00
|
|
|
|
|
|
|
|
// Config configuration for a single server.
|
|
|
|
|
type Config struct {
|
|
|
|
|
// The zone of the site.
|
|
|
|
|
Zone string
|
|
|
|
|
|
2018-02-14 14:19:32 -05:00
|
|
|
// one or several hostnames to bind the server to.
|
|
|
|
|
// defaults to a single empty string that denote the wildcard address
|
|
|
|
|
ListenHosts []string
|
2016-08-19 17:14:17 -07:00
|
|
|
|
|
|
|
|
// The port to listen on.
|
|
|
|
|
Port string
|
|
|
|
|
|
2019-02-20 19:12:21 +07:00
|
|
|
// Root points to a base directory we find user defined "things".
|
2017-09-14 09:36:06 +01:00
|
|
|
// First consumer is the file plugin to looks for zone files in this place.
|
2016-10-11 20:42:28 +01:00
|
|
|
Root string
|
|
|
|
|
|
2017-06-13 15:47:17 -07:00
|
|
|
// Debug controls the panic/recover mechanism that is enabled by default.
|
|
|
|
|
Debug bool
|
|
|
|
|
|
2022-05-24 14:36:36 +02:00
|
|
|
// Stacktrace controls including stacktrace as part of log from recover mechanism, it is disabled by default.
|
|
|
|
|
Stacktrace bool
|
|
|
|
|
|
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
|
|
|
|
|
|
2020-12-15 14:26:07 +01:00
|
|
|
// If this function is not nil it will be used to inspect and validate
|
|
|
|
|
// HTTP requests. Although this isn't referenced in-tree, external plugins
|
|
|
|
|
// may depend on it.
|
|
|
|
|
HTTPRequestValidateFunc func(*http.Request) bool
|
|
|
|
|
|
2022-09-08 14:56:27 -04:00
|
|
|
// FilterFuncs is used to further filter access
|
|
|
|
|
// to this handler. E.g. to limit access to a reverse zone
|
|
|
|
|
// on a non-octet boundary, i.e. /17
|
|
|
|
|
FilterFuncs []FilterFunc
|
|
|
|
|
|
|
|
|
|
// ViewName is the name of the Viewer PLugin defined in the Config
|
|
|
|
|
ViewName string
|
|
|
|
|
|
2017-03-13 20:24:37 +00:00
|
|
|
// TLSConfig when listening for encrypted connections (gRPC, DNS-over-TLS).
|
|
|
|
|
TLSConfig *tls.Config
|
2017-01-31 17:21:55 -05:00
|
|
|
|
2022-12-28 11:14:16 +00:00
|
|
|
// Timeouts for TCP, TLS and HTTPS servers.
|
|
|
|
|
ReadTimeout time.Duration
|
|
|
|
|
WriteTimeout time.Duration
|
|
|
|
|
IdleTimeout time.Duration
|
|
|
|
|
|
2022-06-27 15:48:34 -04:00
|
|
|
// TSIG secrets, [name]key.
|
|
|
|
|
TsigSecret map[string]string
|
|
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// Plugin stack.
|
|
|
|
|
Plugin []plugin.Plugin
|
2016-08-19 17:14:17 -07:00
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// Compiled plugin stack.
|
|
|
|
|
pluginChain plugin.Handler
|
2017-08-10 21:31:36 +01:00
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// Plugin interested in announcing that they exist, so other plugin can call methods
|
2017-08-10 21:31:36 +01:00
|
|
|
// on them should register themselves here. The name should be the name as return by the
|
|
|
|
|
// Handler's Name method.
|
2017-09-14 09:36:06 +01:00
|
|
|
registry map[string]plugin.Handler
|
2021-07-09 11:12:06 -04:00
|
|
|
|
|
|
|
|
// firstConfigInBlock is used to reference the first config in a server block, for the
|
|
|
|
|
// purpose of sharing single instance of each plugin among all zones in a server block.
|
|
|
|
|
firstConfigInBlock *Config
|
2022-09-08 14:56:27 -04:00
|
|
|
|
|
|
|
|
// metaCollector references the first MetadataCollector plugin, if one exists
|
|
|
|
|
metaCollector MetadataCollector
|
2016-08-19 17:14:17 -07:00
|
|
|
}
|
|
|
|
|
|
2022-09-08 14:56:27 -04:00
|
|
|
// FilterFunc is a function that filters requests from the Config
|
|
|
|
|
type FilterFunc func(context.Context, *request.Request) bool
|
|
|
|
|
|
2020-09-01 15:10:45 +08:00
|
|
|
// keyForConfig builds a key for identifying the configs during setup time
|
2018-02-23 11:54:42 -05:00
|
|
|
func keyForConfig(blocIndex int, blocKeyIndex int) string {
|
|
|
|
|
return fmt.Sprintf("%d:%d", blocIndex, blocKeyIndex)
|
|
|
|
|
}
|
|
|
|
|
|
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)
|
2018-02-23 11:54:42 -05:00
|
|
|
key := keyForConfig(c.ServerBlockIndex, c.ServerBlockKeyIndex)
|
|
|
|
|
if cfg, ok := ctx.keysToConfigs[key]; ok {
|
2016-08-19 17:14:17 -07:00
|
|
|
return cfg
|
|
|
|
|
}
|
|
|
|
|
// we should only get here during tests because directive
|
|
|
|
|
// actions typically skip the server blocks where we make
|
|
|
|
|
// the configs.
|
2018-02-23 11:54:42 -05:00
|
|
|
ctx.saveConfig(key, &Config{ListenHosts: []string{""}})
|
2016-08-19 17:14:17 -07:00
|
|
|
return GetConfig(c)
|
|
|
|
|
}
|