Documentation ¶
Overview ¶
Package dnsserver implements all the interfaces from Caddy, so that DNServer can be a servertype plugin.
Index ¶
- Constants
- Variables
- func AddPrefix(b []byte) (m []byte)
- func SplitProtocolHostPort(address string) (protocol string, ip string, port string, err error)
- type Config
- type DoHWriter
- func (d *DoHWriter) Close() error
- func (d *DoHWriter) Hijack()
- func (d *DoHWriter) LocalAddr() net.Addr
- func (d *DoHWriter) RemoteAddr() net.Addr
- func (d *DoHWriter) Request() *http.Request
- func (d *DoHWriter) TsigStatus() error
- func (d *DoHWriter) TsigTimersOnly(_ bool)
- func (d *DoHWriter) Write(b []byte) (int, error)
- func (d *DoHWriter) WriteMsg(m *dns.Msg) error
- type DoQWriter
- func (w *DoQWriter) Close() error
- func (w *DoQWriter) Hijack()
- func (w *DoQWriter) LocalAddr() net.Addr
- func (w *DoQWriter) RemoteAddr() net.Addr
- func (w *DoQWriter) TsigStatus() error
- func (w *DoQWriter) TsigTimersOnly(b bool)
- func (w *DoQWriter) Write(b []byte) (int, error)
- func (w *DoQWriter) WriteMsg(m *dns.Msg) error
- type FilterFunc
- type HTTPRequestKey
- type Key
- type LoopKey
- type MetadataCollector
- type Server
- func (s *Server) Address() string
- func (s *Server) Listen() (net.Listener, error)
- func (s *Server) ListenPacket() (net.PacketConn, error)
- func (s *Server) OnStartupComplete()
- func (s *Server) Serve(l net.Listener) error
- func (s *Server) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg)
- func (s *Server) ServePacket(p net.PacketConn) error
- func (s *Server) Stop() (err error)
- func (s *Server) Tracer() ot.Tracer
- func (s *Server) WrapListener(ln net.Listener) net.Listener
- type ServerHTTPS
- func (s *ServerHTTPS) Listen() (net.Listener, error)
- func (s *ServerHTTPS) ListenPacket() (net.PacketConn, error)
- func (s *ServerHTTPS) OnStartupComplete()
- func (s *ServerHTTPS) Serve(l net.Listener) error
- func (s *ServerHTTPS) ServeHTTP(w http.ResponseWriter, r *http.Request)
- func (s *ServerHTTPS) ServePacket(p net.PacketConn) error
- func (s *ServerHTTPS) Shutdown() error
- func (s *ServerHTTPS) Stop() error
- type ServerQUIC
- func (s *ServerQUIC) Listen() (net.Listener, error)
- func (s *ServerQUIC) ListenPacket() (net.PacketConn, error)
- func (s *ServerQUIC) OnStartupComplete()
- func (s *ServerQUIC) Serve(l net.Listener) error
- func (s *ServerQUIC) ServePacket(p net.PacketConn) error
- func (s *ServerQUIC) ServeQUIC() error
- func (s *ServerQUIC) Stop() error
- type ServerTLS
- type ServergRPC
- func (s *ServergRPC) Listen() (net.Listener, error)
- func (s *ServergRPC) ListenPacket() (net.PacketConn, error)
- func (s *ServergRPC) OnStartupComplete()
- func (s *ServergRPC) Query(ctx context.Context, in *pb.DnsPacket) (*pb.DnsPacket, error)
- func (s *ServergRPC) Serve(l net.Listener) error
- func (s *ServergRPC) ServePacket(p net.PacketConn) error
- func (s *ServergRPC) Shutdown() error
- func (s *ServergRPC) Stop() (err error)
- type ViewKey
- type Viewer
Constants ¶
const ( // DoQCodeNoError is used when the connection or stream needs to be // closed, but there is no error to signal. DoQCodeNoError quic.ApplicationErrorCode = 0 // DoQCodeInternalError signals that the DoQ implementation encountered // an internal error and is incapable of pursuing the transaction or the // connection. DoQCodeInternalError quic.ApplicationErrorCode = 1 // DoQCodeProtocolError signals that the DoQ implementation encountered // a protocol error and is forcibly aborting the connection. DoQCodeProtocolError quic.ApplicationErrorCode = 2 )
const DefaultPort = transport.Port
DefaultPort is the default port.
Variables ¶
var ( // Port is the port we listen on by default. Port = DefaultPort // GracefulTimeout is the maximum duration of a graceful shutdown. GracefulTimeout time.Duration )
These "soft defaults" are configurable by command line flags, etc.
var Directives = []string{
"metadata",
"geoip",
"cancel",
"tls",
"timeouts",
"reload",
"nsid",
"bufsize",
"root",
"bind",
"debug",
"trace",
"ready",
"health",
"pprof",
"prometheus",
"errors",
"log",
"dnstap",
"local",
"dns64",
"acl",
"any",
"chaos",
"loadbalance",
"tsig",
"cache",
"rewrite",
"header",
"dnssec",
"autopath",
"minimal",
"template",
"transfer",
"hosts",
"route53",
"azure",
"clouddns",
"k8s_external",
"kubernetes",
"file",
"auto",
"secondary",
"etcd",
"loop",
"forward",
"grpc",
"erratic",
"whoami",
"on",
"sign",
"view",
}
Directives are registered in the order they should be executed.
Ordering is VERY important. Every plugin will feel the effects of all other plugin below (after) them during a request, but they must not care what plugin above them are doing.
var EnableChaos = map[string]struct{}{
"chaos": {},
"forward": {},
"proxy": {},
}
EnableChaos is a map with plugin names for which we should open CH class queries as we block these by default.
var Quiet bool
Quiet mode will not show any informative output on initialization.
Functions ¶
Types ¶
type Config ¶
type Config struct { // The zone of the site. Zone string // one or several hostnames to bind the server to. // defaults to a single empty string that denote the wildcard address ListenHosts []string // The port to listen on. Port string // Root points to a base directory we find user defined "things". // First consumer is the file plugin to looks for zone files in this place. Root string // Debug controls the panic/recover mechanism that is enabled by default. Debug bool // Stacktrace controls including stacktrace as part of log from recover mechanism, it is disabled by default. Stacktrace bool // The transport we implement, normally just "dns" over TCP/UDP, but could be // DNS-over-TLS or DNS-over-gRPC. Transport string // 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 // 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 // TLSConfig when listening for encrypted connections (gRPC, DNS-over-TLS). TLSConfig *tls.Config // Timeouts for TCP, TLS and HTTPS servers. ReadTimeout time.Duration WriteTimeout time.Duration IdleTimeout time.Duration // TSIG secrets, [name]key. TsigSecret map[string]string // Plugin stack. Plugin []plugin.Plugin // contains filtered or unexported fields }
Config configuration for a single server.
func GetConfig ¶
func GetConfig(c *caddy.Controller) *Config
GetConfig gets the Config that corresponds to c. If none exist nil is returned.
func (*Config) Handler ¶
Handler returns the plugin handler that has been added to the config under its name. This is useful to inspect if a certain plugin is active in this server. Note that this is order dependent and the order is defined in directives.go, i.e. if your plugin comes before the plugin you are checking; it will not be there (yet).
func (*Config) Handlers ¶
Handlers returns a slice of plugins that have been registered. This can be used to inspect and interact with registered plugins but cannot be used to remove or add plugins. Note that this is order dependent and the order is defined in directives.go, i.e. if your plugin comes before the plugin you are checking; it will not be there (yet).
type DoHWriter ¶
type DoHWriter struct { // Msg is a response to be written to the client. Msg *dns.Msg // contains filtered or unexported fields }
DoHWriter is a dns.ResponseWriter that adds more specific LocalAddr and RemoteAddr methods.
func (*DoHWriter) RemoteAddr ¶
RemoteAddr returns the remote address.
func (*DoHWriter) TsigStatus ¶
TsigStatus no-op implementation.
func (*DoHWriter) TsigTimersOnly ¶
TsigTimersOnly no-op implementation.
type DoQWriter ¶
func (*DoQWriter) Close ¶
Close sends the STREAM FIN signal. The server MUST send the response(s) on the same stream and MUST indicate, after the last response, through the STREAM FIN mechanism that no further data will be sent on that stream. See https://www.rfc-editor.org/rfc/rfc9250#section-4.2-7
func (*DoQWriter) RemoteAddr ¶
func (*DoQWriter) TsigStatus ¶
These methods implement the dns.ResponseWriter interface from Go DNS.
func (*DoQWriter) TsigTimersOnly ¶
type FilterFunc ¶
FilterFunc is a function that filters requests from the Config
type HTTPRequestKey ¶
type HTTPRequestKey struct{}
HTTPRequestKey is the context key for the current processed HTTP request (if current processed request was done over DOH)
type MetadataCollector ¶
MetadataCollector is a plugin that can retrieve metadata functions from all metadata providing plugins
type Server ¶
type Server struct { Addr string // Address we listen on // contains filtered or unexported fields }
Server represents an instance of a server, which serves DNS requests at a particular address (host and port). A server is capable of serving numerous zones on the same address and the listener may be stopped for graceful termination (POSIX only).
func NewServer ¶
NewServer returns a new DNServer server and compiles all plugins in to it. By default CH class queries are blocked unless queries from enableChaos are loaded.
func (*Server) ListenPacket ¶
func (s *Server) ListenPacket() (net.PacketConn, error)
ListenPacket implements caddy.UDPServer interface.
func (*Server) OnStartupComplete ¶
func (s *Server) OnStartupComplete()
OnStartupComplete lists the sites served by this server and any relevant information, assuming Quiet is false.
func (*Server) Serve ¶
Serve starts the server with an existing listener. It blocks until the server stops. This implements caddy.TCPServer interface.
func (*Server) ServeDNS ¶
ServeDNS is the entry point for every request to the address that is bound to. It acts as a multiplexer for the requests zonename as defined in the request so that the correct zone (configuration and plugin stack) will handle the request.
func (*Server) ServePacket ¶
func (s *Server) ServePacket(p net.PacketConn) error
ServePacket starts the server with an existing packetconn. It blocks until the server stops. This implements caddy.UDPServer interface.
func (*Server) Stop ¶
Stop stops the server. It blocks until the server is totally stopped. On POSIX systems, it will wait for connections to close (up to a max timeout of a few seconds); on Windows it will close the listener immediately. This implements Caddy.Stopper interface.
type ServerHTTPS ¶
type ServerHTTPS struct { *Server // contains filtered or unexported fields }
ServerHTTPS represents an instance of a DNS-over-HTTPS server.
func NewServerHTTPS ¶
func NewServerHTTPS(addr string, group []*Config) (*ServerHTTPS, error)
NewServerHTTPS returns a new DNServer HTTPS server and compiles all plugins in to it.
func (*ServerHTTPS) Listen ¶
func (s *ServerHTTPS) Listen() (net.Listener, error)
Listen implements caddy.TCPServer interface.
func (*ServerHTTPS) ListenPacket ¶
func (s *ServerHTTPS) ListenPacket() (net.PacketConn, error)
ListenPacket implements caddy.UDPServer interface.
func (*ServerHTTPS) OnStartupComplete ¶
func (s *ServerHTTPS) OnStartupComplete()
OnStartupComplete lists the sites served by this server and any relevant information, assuming Quiet is false.
func (*ServerHTTPS) Serve ¶
func (s *ServerHTTPS) Serve(l net.Listener) error
Serve implements caddy.TCPServer interface.
func (*ServerHTTPS) ServeHTTP ¶
func (s *ServerHTTPS) ServeHTTP(w http.ResponseWriter, r *http.Request)
ServeHTTP is the handler that gets the HTTP request and converts to the dns format, calls the plugin chain, converts it back and write it to the client.
func (*ServerHTTPS) ServePacket ¶
func (s *ServerHTTPS) ServePacket(p net.PacketConn) error
ServePacket implements caddy.UDPServer interface.
func (*ServerHTTPS) Shutdown ¶
func (s *ServerHTTPS) Shutdown() error
Shutdown stops the server (non gracefully).
func (*ServerHTTPS) Stop ¶
func (s *ServerHTTPS) Stop() error
Stop stops the server. It blocks until the server is totally stopped.
type ServerQUIC ¶
type ServerQUIC struct { *Server // contains filtered or unexported fields }
ServerQUIC represents an instance of a DNS-over-QUIC server.
func NewServerQUIC ¶
func NewServerQUIC(addr string, group []*Config) (*ServerQUIC, error)
NewServerQUIC returns a new DNServer QUIC server and compiles all plugin in to it.
func (*ServerQUIC) Listen ¶
func (s *ServerQUIC) Listen() (net.Listener, error)
Listen implements caddy.TCPServer interface.
func (*ServerQUIC) ListenPacket ¶
func (s *ServerQUIC) ListenPacket() (net.PacketConn, error)
ListenPacket implements caddy.UDPServer interface.
func (*ServerQUIC) OnStartupComplete ¶
func (s *ServerQUIC) OnStartupComplete()
OnStartupComplete lists the sites served by this server and any relevant information, assuming Quiet is false.
func (*ServerQUIC) Serve ¶
func (s *ServerQUIC) Serve(l net.Listener) error
Serve implements caddy.TCPServer interface.
func (*ServerQUIC) ServePacket ¶
func (s *ServerQUIC) ServePacket(p net.PacketConn) error
ServePacket implements caddy.UDPServer interface.
func (*ServerQUIC) ServeQUIC ¶
func (s *ServerQUIC) ServeQUIC() error
ServeQUIC listens for incoming QUIC packets.
func (*ServerQUIC) Stop ¶
func (s *ServerQUIC) Stop() error
Stop stops the server non-gracefully. It blocks until the server is totally stopped.
type ServerTLS ¶
type ServerTLS struct { *Server // contains filtered or unexported fields }
ServerTLS represents an instance of a TLS-over-DNS-server.
func NewServerTLS ¶
NewServerTLS returns a new DNServer TLS server and compiles all plugin in to it.
func (*ServerTLS) ListenPacket ¶
func (s *ServerTLS) ListenPacket() (net.PacketConn, error)
ListenPacket implements caddy.UDPServer interface.
func (*ServerTLS) OnStartupComplete ¶
func (s *ServerTLS) OnStartupComplete()
OnStartupComplete lists the sites served by this server and any relevant information, assuming Quiet is false.
func (*ServerTLS) ServePacket ¶
func (s *ServerTLS) ServePacket(p net.PacketConn) error
ServePacket implements caddy.UDPServer interface.
type ServergRPC ¶
type ServergRPC struct { *Server *pb.UnimplementedDnsServiceServer // contains filtered or unexported fields }
ServergRPC represents an instance of a DNS-over-gRPC server.
func NewServergRPC ¶
func NewServergRPC(addr string, group []*Config) (*ServergRPC, error)
NewServergRPC returns a new DNServer GRPC server and compiles all plugin in to it.
func (*ServergRPC) Listen ¶
func (s *ServergRPC) Listen() (net.Listener, error)
Listen implements caddy.TCPServer interface.
func (*ServergRPC) ListenPacket ¶
func (s *ServergRPC) ListenPacket() (net.PacketConn, error)
ListenPacket implements caddy.UDPServer interface.
func (*ServergRPC) OnStartupComplete ¶
func (s *ServergRPC) OnStartupComplete()
OnStartupComplete lists the sites served by this server and any relevant information, assuming Quiet is false.
func (*ServergRPC) Query ¶
Query is the main entry-point into the gRPC server. From here we call ServeDNS like any normal server. We use a custom responseWriter to pick up the bytes we need to write back to the client as a protobuf.
func (*ServergRPC) Serve ¶
func (s *ServergRPC) Serve(l net.Listener) error
Serve implements caddy.TCPServer interface.
func (*ServergRPC) ServePacket ¶
func (s *ServergRPC) ServePacket(p net.PacketConn) error
ServePacket implements caddy.UDPServer interface.
func (*ServergRPC) Shutdown ¶
func (s *ServergRPC) Shutdown() error
Shutdown stops the server (non gracefully).
func (*ServergRPC) Stop ¶
func (s *ServergRPC) Stop() (err error)
Stop stops the server. It blocks until the server is totally stopped.
type Viewer ¶
type Viewer interface { // Filter returns true if the server should use the server block in which the implementing plugin resides, and the // name of the view for metrics logging. Filter(ctx context.Context, req *request.Request) bool // ViewName returns the name of the view ViewName() string }
Viewer - If Viewer is implemented by a plugin in a server block, its Filter() is added to the server block's filter functions when starting the server. When a running server serves a DNS request, it will route the request to the first Config (server block) that passes all its filter functions.