1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/*
* This file is part of PowerDNS or dnsdist.
* Copyright -- PowerDNS.COM B.V. and its contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* In addition, for the avoidance of any doubt, permission is granted to
* link this program with OpenSSL and to (re)distribute the binaries
* produced as the result of such linking.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "filterpo.hh"
#include <iostream>
#include "namespaces.hh"
#include "dnsrecords.hh"
DNSFilterEngine::DNSFilterEngine()
{
}
bool findNamedPolicy(const map<DNSName, DNSFilterEngine::Policy>& polmap, const DNSName& qname, DNSFilterEngine::Policy& pol)
{
DNSName s(qname);
/* for www.powerdns.com, we need to check:
www.powerdns.com.
*.powerdns.com.
*.com.
*.
*/
map<DNSName, DNSFilterEngine::Policy>::const_iterator iter;
iter = polmap.find(s);
if(iter != polmap.end()) {
pol=iter->second;
return true;
}
while(s.chopOff()){
iter = polmap.find(DNSName("*")+s);
if(iter != polmap.end()) {
pol=iter->second;
return true;
}
}
return false;
}
DNSFilterEngine::Policy DNSFilterEngine::getProcessingPolicy(const DNSName& qname, const std::unordered_map<std::string,bool>& discardedPolicies) const
{
// cout<<"Got question for nameserver name "<<qname<<endl;
Policy pol;
for(const auto& z : d_zones) {
if(z.name && discardedPolicies.find(*z.name) != discardedPolicies.end()) {
continue;
}
if(findNamedPolicy(z.propolName, qname, pol)) {
// cerr<<"Had a hit on the nameserver ("<<qname<<") used to process the query"<<endl;
return pol;
}
}
return pol;
}
DNSFilterEngine::Policy DNSFilterEngine::getProcessingPolicy(const ComboAddress& address, const std::unordered_map<std::string,bool>& discardedPolicies) const
{
// cout<<"Got question for nameserver IP "<<address.toString()<<endl;
for(const auto& z : d_zones) {
if(z.name && discardedPolicies.find(*z.name) != discardedPolicies.end()) {
continue;
}
if(auto fnd=z.propolNSAddr.lookup(address)) {
// cerr<<"Had a hit on the nameserver ("<<address.toString()<<") used to process the query"<<endl;
return fnd->second;;
}
}
return Policy();
}
DNSFilterEngine::Policy DNSFilterEngine::getQueryPolicy(const DNSName& qname, const ComboAddress& ca, const std::unordered_map<std::string,bool>& discardedPolicies) const
{
// cout<<"Got question for "<<qname<<" from "<<ca.toString()<<endl;
Policy pol;
for(const auto& z : d_zones) {
if(z.name && discardedPolicies.find(*z.name) != discardedPolicies.end()) {
continue;
}
if(findNamedPolicy(z.qpolName, qname, pol)) {
// cerr<<"Had a hit on the name of the query"<<endl;
return pol;
}
if(auto fnd=z.qpolAddr.lookup(ca)) {
// cerr<<"Had a hit on the IP address ("<<ca.toString()<<") of the client"<<endl;
return fnd->second;
}
}
return pol;
}
DNSFilterEngine::Policy DNSFilterEngine::getPostPolicy(const vector<DNSRecord>& records, const std::unordered_map<std::string,bool>& discardedPolicies) const
{
ComboAddress ca;
for(const auto& r : records) {
if(r.d_place != DNSResourceRecord::ANSWER)
continue;
if(r.d_type == QType::A) {
if (auto rec = getRR<ARecordContent>(r)) {
ca = rec->getCA();
}
}
else if(r.d_type == QType::AAAA) {
if (auto rec = getRR<AAAARecordContent>(r)) {
ca = rec->getCA();
}
}
else
continue;
for(const auto& z : d_zones) {
if(z.name && discardedPolicies.find(*z.name) != discardedPolicies.end()) {
continue;
}
if(auto fnd=z.postpolAddr.lookup(ca))
return fnd->second;
}
}
return Policy();
}
void DNSFilterEngine::assureZones(size_t zone)
{
if(d_zones.size() <= zone)
d_zones.resize(zone+1);
}
void DNSFilterEngine::clear(size_t zone)
{
assureZones(zone);
auto& z = d_zones[zone];
z.qpolAddr.clear();
z.postpolAddr.clear();
z.propolName.clear();
z.qpolName.clear();
}
void DNSFilterEngine::addClientTrigger(const Netmask& nm, Policy pol, size_t zone)
{
assureZones(zone);
pol.d_name = d_zones[zone].name;
d_zones[zone].qpolAddr.insert(nm).second=pol;
}
void DNSFilterEngine::addResponseTrigger(const Netmask& nm, Policy pol, size_t zone)
{
assureZones(zone);
pol.d_name = d_zones[zone].name;
d_zones[zone].postpolAddr.insert(nm).second=pol;
}
void DNSFilterEngine::addQNameTrigger(const DNSName& n, Policy pol, size_t zone)
{
assureZones(zone);
pol.d_name = d_zones[zone].name;
d_zones[zone].qpolName[n]=pol;
}
void DNSFilterEngine::addNSTrigger(const DNSName& n, Policy pol, size_t zone)
{
assureZones(zone);
pol.d_name = d_zones[zone].name;
d_zones[zone].propolName[n]=pol;
}
void DNSFilterEngine::addNSIPTrigger(const Netmask& nm, Policy pol, size_t zone)
{
assureZones(zone);
pol.d_name = d_zones[zone].name;
d_zones[zone].propolNSAddr.insert(nm).second = pol;
}
bool DNSFilterEngine::rmClientTrigger(const Netmask& nm, Policy pol, size_t zone)
{
assureZones(zone);
auto& qpols = d_zones[zone].qpolAddr;
qpols.erase(nm);
return true;
}
bool DNSFilterEngine::rmResponseTrigger(const Netmask& nm, Policy pol, size_t zone)
{
assureZones(zone);
auto& postpols = d_zones[zone].postpolAddr;
postpols.erase(nm);
return true;
}
bool DNSFilterEngine::rmQNameTrigger(const DNSName& n, Policy pol, size_t zone)
{
assureZones(zone);
d_zones[zone].qpolName.erase(n); // XXX verify we had identical policy?
return true;
}
bool DNSFilterEngine::rmNSTrigger(const DNSName& n, Policy pol, size_t zone)
{
assureZones(zone);
d_zones[zone].propolName.erase(n); // XXX verify policy matched? =pol;
return true;
}
bool DNSFilterEngine::rmNSIPTrigger(const Netmask& nm, Policy pol, size_t zone)
{
assureZones(zone);
auto& pols = d_zones[zone].propolNSAddr;
pols.erase(nm);
return true;
}
|