mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
292 lines
8.3 KiB
Go
292 lines
8.3 KiB
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/jedisct1/dlog"
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
type PluginsAction int
|
|
|
|
const (
|
|
PluginsActionNone = 0
|
|
PluginsActionForward = 1
|
|
PluginsActionDrop = 2
|
|
PluginsActionReject = 3
|
|
PluginsActionSynth = 4
|
|
)
|
|
|
|
type PluginsGlobals struct {
|
|
sync.RWMutex
|
|
queryPlugins *[]Plugin
|
|
responsePlugins *[]Plugin
|
|
loggingPlugins *[]Plugin
|
|
refusedCodeInResponses bool
|
|
respondWithIP net.IP
|
|
}
|
|
|
|
type PluginsReturnCode int
|
|
|
|
const (
|
|
PluginsReturnCodePass = iota
|
|
PluginsReturnCodeForward
|
|
PluginsReturnCodeDrop
|
|
PluginsReturnCodeReject
|
|
PluginsReturnCodeSynth
|
|
PluginsReturnCodeParseError
|
|
PluginsReturnCodeNXDomain
|
|
PluginsReturnCodeResponseError
|
|
PluginsReturnCodeServerError
|
|
PluginsReturnCodeCloak
|
|
)
|
|
|
|
var PluginsReturnCodeToString = map[PluginsReturnCode]string{
|
|
PluginsReturnCodePass: "PASS",
|
|
PluginsReturnCodeForward: "FORWARD",
|
|
PluginsReturnCodeDrop: "DROP",
|
|
PluginsReturnCodeReject: "REJECT",
|
|
PluginsReturnCodeSynth: "SYNTH",
|
|
PluginsReturnCodeParseError: "PARSE_ERROR",
|
|
PluginsReturnCodeNXDomain: "NXDOMAIN",
|
|
PluginsReturnCodeResponseError: "RESPONSE_ERROR",
|
|
PluginsReturnCodeServerError: "SERVER_ERROR",
|
|
PluginsReturnCodeCloak: "CLOAK",
|
|
}
|
|
|
|
type PluginsState struct {
|
|
sessionData map[string]interface{}
|
|
action PluginsAction
|
|
originalMaxPayloadSize int
|
|
maxPayloadSize int
|
|
clientProto string
|
|
clientAddr *net.Addr
|
|
synthResponse *dns.Msg
|
|
dnssec bool
|
|
cacheSize int
|
|
cacheNegMinTTL uint32
|
|
cacheNegMaxTTL uint32
|
|
cacheMinTTL uint32
|
|
cacheMaxTTL uint32
|
|
questionMsg *dns.Msg
|
|
requestStart time.Time
|
|
requestEnd time.Time
|
|
cacheHit bool
|
|
returnCode PluginsReturnCode
|
|
serverName string
|
|
}
|
|
|
|
func InitPluginsGlobals(pluginsGlobals *PluginsGlobals, proxy *Proxy) error {
|
|
queryPlugins := &[]Plugin{}
|
|
if len(proxy.whitelistNameFile) != 0 {
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginWhitelistName)))
|
|
}
|
|
if len(proxy.blockNameFile) != 0 {
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginBlockName)))
|
|
}
|
|
if proxy.pluginBlockIPv6 {
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginBlockIPv6)))
|
|
}
|
|
if len(proxy.cloakFile) != 0 {
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginCloak)))
|
|
}
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginGetSetPayloadSize)))
|
|
if proxy.cache {
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginCache)))
|
|
}
|
|
if len(proxy.forwardFile) != 0 {
|
|
*queryPlugins = append(*queryPlugins, Plugin(new(PluginForward)))
|
|
}
|
|
|
|
responsePlugins := &[]Plugin{}
|
|
if len(proxy.nxLogFile) != 0 {
|
|
*responsePlugins = append(*responsePlugins, Plugin(new(PluginNxLog)))
|
|
}
|
|
if len(proxy.blockIPFile) != 0 {
|
|
*responsePlugins = append(*responsePlugins, Plugin(new(PluginBlockIP)))
|
|
}
|
|
if proxy.cache {
|
|
*responsePlugins = append(*responsePlugins, Plugin(new(PluginCacheResponse)))
|
|
}
|
|
|
|
loggingPlugins := &[]Plugin{}
|
|
if len(proxy.queryLogFile) != 0 {
|
|
*loggingPlugins = append(*loggingPlugins, Plugin(new(PluginQueryLog)))
|
|
}
|
|
|
|
for _, plugin := range *queryPlugins {
|
|
if err := plugin.Init(proxy); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for _, plugin := range *responsePlugins {
|
|
if err := plugin.Init(proxy); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for _, plugin := range *loggingPlugins {
|
|
if err := plugin.Init(proxy); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
(*pluginsGlobals).queryPlugins = queryPlugins
|
|
(*pluginsGlobals).responsePlugins = responsePlugins
|
|
(*pluginsGlobals).loggingPlugins = loggingPlugins
|
|
|
|
// blockedQueryResponse can be 'refused', 'hinfo' or an IP address
|
|
(*pluginsGlobals).respondWithIP = net.ParseIP(proxy.blockedQueryResponse)
|
|
if (*pluginsGlobals).respondWithIP == nil {
|
|
switch proxy.blockedQueryResponse {
|
|
case "refused":
|
|
(*pluginsGlobals).refusedCodeInResponses = true
|
|
case "hinfo":
|
|
(*pluginsGlobals).refusedCodeInResponses = false
|
|
default:
|
|
dlog.Noticef("Invalid blocked_query_response option [%s], defaulting to `hinfo`", proxy.blockedQueryResponse)
|
|
(*pluginsGlobals).refusedCodeInResponses = false
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type Plugin interface {
|
|
Name() string
|
|
Description() string
|
|
Init(proxy *Proxy) error
|
|
Drop() error
|
|
Reload() error
|
|
Eval(pluginsState *PluginsState, msg *dns.Msg) error
|
|
}
|
|
|
|
func NewPluginsState(proxy *Proxy, clientProto string, clientAddr *net.Addr, start time.Time) PluginsState {
|
|
return PluginsState{
|
|
action: PluginsActionForward,
|
|
maxPayloadSize: MaxDNSUDPPacketSize - ResponseOverhead,
|
|
clientProto: clientProto,
|
|
clientAddr: clientAddr,
|
|
cacheSize: proxy.cacheSize,
|
|
cacheNegMinTTL: proxy.cacheNegMinTTL,
|
|
cacheNegMaxTTL: proxy.cacheNegMaxTTL,
|
|
cacheMinTTL: proxy.cacheMinTTL,
|
|
cacheMaxTTL: proxy.cacheMaxTTL,
|
|
questionMsg: nil,
|
|
requestStart: start,
|
|
}
|
|
}
|
|
|
|
func (pluginsState *PluginsState) ApplyQueryPlugins(pluginsGlobals *PluginsGlobals, packet []byte, serverName string) ([]byte, error) {
|
|
if len(*pluginsGlobals.queryPlugins) == 0 && len(*pluginsGlobals.loggingPlugins) == 0 {
|
|
return packet, nil
|
|
}
|
|
pluginsState.serverName = serverName
|
|
pluginsState.action = PluginsActionForward
|
|
msg := dns.Msg{}
|
|
if err := msg.Unpack(packet); err != nil {
|
|
return packet, err
|
|
}
|
|
if len(msg.Question) > 1 {
|
|
return packet, errors.New("Unexpected number of questions")
|
|
}
|
|
pluginsState.questionMsg = &msg
|
|
pluginsGlobals.RLock()
|
|
for _, plugin := range *pluginsGlobals.queryPlugins {
|
|
if ret := plugin.Eval(pluginsState, &msg); ret != nil {
|
|
pluginsGlobals.RUnlock()
|
|
pluginsState.action = PluginsActionDrop
|
|
return packet, ret
|
|
}
|
|
if pluginsState.action == PluginsActionReject {
|
|
synth, err := RefusedResponseFromMessage(&msg, pluginsGlobals.refusedCodeInResponses, pluginsGlobals.respondWithIP, pluginsState.cacheMinTTL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
pluginsState.synthResponse = synth
|
|
}
|
|
if pluginsState.action != PluginsActionForward {
|
|
break
|
|
}
|
|
}
|
|
pluginsGlobals.RUnlock()
|
|
packet2, err := msg.PackBuffer(packet)
|
|
if err != nil {
|
|
return packet, err
|
|
}
|
|
return packet2, nil
|
|
}
|
|
|
|
func (pluginsState *PluginsState) ApplyResponsePlugins(pluginsGlobals *PluginsGlobals, packet []byte, ttl *uint32) ([]byte, error) {
|
|
if len(*pluginsGlobals.responsePlugins) == 0 && len(*pluginsGlobals.loggingPlugins) == 0 {
|
|
return packet, nil
|
|
}
|
|
pluginsState.action = PluginsActionForward
|
|
msg := dns.Msg{}
|
|
if err := msg.Unpack(packet); err != nil {
|
|
if len(packet) >= MinDNSPacketSize && HasTCFlag(packet) {
|
|
err = nil
|
|
}
|
|
return packet, err
|
|
}
|
|
switch Rcode(packet) {
|
|
case dns.RcodeSuccess:
|
|
pluginsState.returnCode = PluginsReturnCodePass
|
|
case dns.RcodeNameError:
|
|
pluginsState.returnCode = PluginsReturnCodeNXDomain
|
|
case dns.RcodeServerFailure:
|
|
pluginsState.returnCode = PluginsReturnCodeServerError
|
|
default:
|
|
pluginsState.returnCode = PluginsReturnCodeResponseError
|
|
}
|
|
pluginsGlobals.RLock()
|
|
for _, plugin := range *pluginsGlobals.responsePlugins {
|
|
if ret := plugin.Eval(pluginsState, &msg); ret != nil {
|
|
pluginsGlobals.RUnlock()
|
|
pluginsState.action = PluginsActionDrop
|
|
return packet, ret
|
|
}
|
|
if pluginsState.action == PluginsActionReject {
|
|
synth, err := RefusedResponseFromMessage(&msg, pluginsGlobals.refusedCodeInResponses, pluginsGlobals.respondWithIP, pluginsState.cacheMinTTL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
dlog.Infof("Blocking [%s]", synth.Question[0].Name)
|
|
pluginsState.synthResponse = synth
|
|
}
|
|
if pluginsState.action != PluginsActionForward {
|
|
break
|
|
}
|
|
}
|
|
pluginsGlobals.RUnlock()
|
|
if ttl != nil {
|
|
setMaxTTL(&msg, *ttl)
|
|
}
|
|
packet2, err := msg.PackBuffer(packet)
|
|
if err != nil {
|
|
return packet, err
|
|
}
|
|
return packet2, nil
|
|
}
|
|
|
|
func (pluginsState *PluginsState) ApplyLoggingPlugins(pluginsGlobals *PluginsGlobals) error {
|
|
if len(*pluginsGlobals.loggingPlugins) == 0 {
|
|
return nil
|
|
}
|
|
pluginsState.requestEnd = time.Now()
|
|
questionMsg := pluginsState.questionMsg
|
|
if questionMsg == nil || len(questionMsg.Question) > 1 {
|
|
return errors.New("Unexpected number of questions")
|
|
}
|
|
pluginsGlobals.RLock()
|
|
for _, plugin := range *pluginsGlobals.loggingPlugins {
|
|
if ret := plugin.Eval(pluginsState, questionMsg); ret != nil {
|
|
pluginsGlobals.RUnlock()
|
|
return ret
|
|
}
|
|
}
|
|
pluginsGlobals.RUnlock()
|
|
return nil
|
|
}
|