mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
46 lines
1 KiB
Go
46 lines
1 KiB
Go
package main
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
type PluginBlockUnqualified struct{}
|
|
|
|
func (plugin *PluginBlockUnqualified) Name() string {
|
|
return "block_unqualified"
|
|
}
|
|
|
|
func (plugin *PluginBlockUnqualified) Description() string {
|
|
return "Block unqualified DNS names"
|
|
}
|
|
|
|
func (plugin *PluginBlockUnqualified) Init(proxy *Proxy) error {
|
|
return nil
|
|
}
|
|
|
|
func (plugin *PluginBlockUnqualified) Drop() error {
|
|
return nil
|
|
}
|
|
|
|
func (plugin *PluginBlockUnqualified) Reload() error {
|
|
return nil
|
|
}
|
|
|
|
func (plugin *PluginBlockUnqualified) Eval(pluginsState *PluginsState, msg *dns.Msg) error {
|
|
question := msg.Question[0]
|
|
if question.Qclass != dns.ClassINET || (question.Qtype != dns.TypeA && question.Qtype != dns.TypeAAAA) {
|
|
return nil
|
|
}
|
|
if strings.IndexByte(pluginsState.qName, '.') >= 0 {
|
|
return nil
|
|
}
|
|
synth := EmptyResponseFromMessage(msg)
|
|
synth.Rcode = dns.RcodeNameError
|
|
pluginsState.synthResponse = synth
|
|
pluginsState.action = PluginsActionSynth
|
|
pluginsState.returnCode = PluginsReturnCodeSynth
|
|
|
|
return nil
|
|
}
|