mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 18:38:52 -07:00
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package upstream
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/coredns/coredns/plugin"
|
|
"github.com/miekg/dns"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
const (
|
|
defaultTimeout = 5 * time.Second
|
|
)
|
|
|
|
// Upstream is a simplified interface for proxy destination
|
|
type Upstream interface {
|
|
Exchange(ctx context.Context, query *dns.Msg) (*dns.Msg, error)
|
|
Close() error
|
|
}
|
|
|
|
// UpstreamPlugin is a simplified DNS proxy using a generic upstream interface
|
|
type UpstreamPlugin struct {
|
|
Upstreams []Upstream
|
|
Next plugin.Handler
|
|
}
|
|
|
|
// Initialize the upstream plugin
|
|
func New() *UpstreamPlugin {
|
|
p := &UpstreamPlugin{
|
|
Upstreams: []Upstream{},
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
// ServeDNS implements interface for CoreDNS plugin
|
|
func (p *UpstreamPlugin) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
|
var reply *dns.Msg
|
|
var backendErr error
|
|
|
|
for i := range p.Upstreams {
|
|
upstream := p.Upstreams[i]
|
|
reply, backendErr = upstream.Exchange(ctx, r)
|
|
if backendErr == nil {
|
|
w.WriteMsg(reply)
|
|
return 0, nil
|
|
}
|
|
}
|
|
|
|
return dns.RcodeServerFailure, errors.Wrap(backendErr, "failed to contact any of the upstreams")
|
|
}
|
|
|
|
// Name implements interface for CoreDNS plugin
|
|
func (p *UpstreamPlugin) Name() string {
|
|
return "upstream"
|
|
}
|