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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
/*
PowerDNS Versatile Database Driven Nameserver
Copyright (C) 2003 - 2016 PowerDNS.COM BV
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation
Additionally, the license of this program contains a special
exception which allows to distribute the program in binary form when
it is linked against OpenSSL.
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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "syncres.hh"
#include "arguments.hh"
#include "zoneparser-tng.hh"
#include "logger.hh"
#include "dnsrecords.hh"
#include "rec-lua-conf.hh"
#include <thread>
#include "ixfr.hh"
#include "rpzloader.hh"
#include "root-addresses.hh"
extern int g_argc;
extern char** g_argv;
void primeHints(void)
{
// prime root cache
vector<DNSRecord> nsset;
if(!t_RC)
t_RC = new MemRecursorCache();
if(::arg()["hint-file"].empty()) {
DNSRecord arr, aaaarr, nsrr;
nsrr.d_name=DNSName(".");
arr.d_type=QType::A;
aaaarr.d_type=QType::AAAA;
nsrr.d_type=QType::NS;
arr.d_ttl=aaaarr.d_ttl=nsrr.d_ttl=time(0)+3600000;
for(char c='a';c<='m';++c) {
static char templ[40];
strncpy(templ,"a.root-servers.net.", sizeof(templ) - 1);
templ[sizeof(templ)-1] = '\0';
*templ=c;
aaaarr.d_name=arr.d_name=DNSName(templ);
nsrr.d_content=std::make_shared<NSRecordContent>(DNSName(templ));
arr.d_content=std::make_shared<ARecordContent>(ComboAddress(rootIps4[c-'a']));
vector<DNSRecord> aset;
aset.push_back(arr);
t_RC->replace(time(0), DNSName(templ), QType(QType::A), aset, vector<std::shared_ptr<RRSIGRecordContent>>(), true); // auth, nuke it all
if (rootIps6[c-'a'] != NULL) {
aaaarr.d_content=std::make_shared<AAAARecordContent>(ComboAddress(rootIps6[c-'a']));
vector<DNSRecord> aaaaset;
aaaaset.push_back(aaaarr);
t_RC->replace(time(0), DNSName(templ), QType(QType::AAAA), aaaaset, vector<std::shared_ptr<RRSIGRecordContent>>(), true);
}
nsset.push_back(nsrr);
}
}
else {
ZoneParserTNG zpt(::arg()["hint-file"]);
DNSResourceRecord rr;
while(zpt.get(rr)) {
rr.ttl+=time(0);
if(rr.qtype.getCode()==QType::A) {
vector<DNSRecord> aset;
aset.push_back(DNSRecord(rr));
t_RC->replace(time(0), rr.qname, QType(QType::A), aset, vector<std::shared_ptr<RRSIGRecordContent>>(), true); // auth, etc see above
} else if(rr.qtype.getCode()==QType::AAAA) {
vector<DNSRecord> aaaaset;
aaaaset.push_back(DNSRecord(rr));
t_RC->replace(time(0), rr.qname, QType(QType::AAAA), aaaaset, vector<std::shared_ptr<RRSIGRecordContent>>(), true);
} else if(rr.qtype.getCode()==QType::NS) {
rr.content=toLower(rr.content);
nsset.push_back(DNSRecord(rr));
}
}
}
t_RC->replace(time(0), DNSName("."), QType(QType::NS), nsset, vector<std::shared_ptr<RRSIGRecordContent>>(), false); // and stuff in the cache (auth)
}
static void makeNameToIPZone(SyncRes::domainmap_t* newMap, const DNSName& hostname, const string& ip)
{
SyncRes::AuthDomain ad;
ad.d_rdForward=false;
DNSRecord dr;
dr.d_name=hostname;
dr.d_place=DNSResourceRecord::ANSWER;
dr.d_ttl=86400;
dr.d_type=QType::SOA;
dr.d_class = 1;
dr.d_content = std::shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(QType::SOA, 1, "localhost. root 1 604800 86400 2419200 604800"));
ad.d_records.insert(dr);
dr.d_type=QType::NS;
dr.d_content=std::make_shared<NSRecordContent>("localhost.");
ad.d_records.insert(dr);
dr.d_type=QType::A;
dr.d_content= std::shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(QType::A, 1, ip));
ad.d_records.insert(dr);
if(newMap->count(dr.d_name)) {
L<<Logger::Warning<<"Hosts file will not overwrite zone '"<<dr.d_name<<"' already loaded"<<endl;
}
else {
L<<Logger::Warning<<"Inserting forward zone '"<<dr.d_name<<"' based on hosts file"<<endl;
(*newMap)[dr.d_name]=ad;
}
}
//! parts[0] must be an IP address, the rest must be host names
static void makeIPToNamesZone(SyncRes::domainmap_t* newMap, const vector<string>& parts)
{
string address=parts[0];
vector<string> ipparts;
stringtok(ipparts, address,".");
SyncRes::AuthDomain ad;
ad.d_rdForward=false;
DNSRecord dr;
for(int n=ipparts.size()-1; n>=0 ; --n) {
dr.d_name.appendRawLabel(ipparts[n]);
}
dr.d_name.appendRawLabel("in-addr");
dr.d_name.appendRawLabel("arpa");
dr.d_class = 1;
dr.d_place=DNSResourceRecord::ANSWER;
dr.d_ttl=86400;
dr.d_type=QType::SOA;
dr.d_content=std::shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(QType::SOA, 1, "localhost. root 1 604800 86400 2419200 604800"));
ad.d_records.insert(dr);
dr.d_type=QType::NS;
dr.d_content=std::make_shared<NSRecordContent>(DNSName("localhost."));
ad.d_records.insert(dr);
dr.d_type=QType::PTR;
if(ipparts.size()==4) // otherwise this is a partial zone
for(unsigned int n=1; n < parts.size(); ++n) {
dr.d_content=std::shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(QType::PTR, 1, DNSName(parts[n]).toString())); // XXX FIXME DNSNAME PAIN CAN THIS BE RIGHT?
ad.d_records.insert(dr);
}
if(newMap->count(dr.d_name)) {
L<<Logger::Warning<<"Will not overwrite zone '"<<dr.d_name<<"' already loaded"<<endl;
}
else {
if(ipparts.size()==4)
L<<Logger::Warning<<"Inserting reverse zone '"<<dr.d_name<<"' based on hosts file"<<endl;
(*newMap)[dr.d_name]=ad;
}
}
/* mission in life: parse three cases
1) 1.2.3.4
2) 1.2.3.4:5300
3) 2001::1
4) [2002::1]:53
*/
ComboAddress parseIPAndPort(const std::string& input, uint16_t port)
{
if(input.find(':') == string::npos || input.empty()) // common case
return ComboAddress(input, port);
pair<string,string> both;
try { // case 2
both=splitField(input,':');
uint16_t newport=static_cast<uint16_t>(pdns_stou(both.second));
return ComboAddress(both.first, newport);
}
catch(...){}
if(input[0]=='[') { // case 4
both=splitField(input.substr(1),']');
return ComboAddress(both.first, both.second.empty() ? port : static_cast<uint16_t>(pdns_stou(both.second.substr(1))));
}
return ComboAddress(input, port); // case 3
}
void convertServersForAD(const std::string& input, SyncRes::AuthDomain& ad, const char* sepa, bool verbose=true)
{
vector<string> servers;
stringtok(servers, input, sepa);
ad.d_servers.clear();
for(vector<string>::const_iterator iter = servers.begin(); iter != servers.end(); ++iter) {
if(verbose && iter != servers.begin())
L<<", ";
ComboAddress addr=parseIPAndPort(*iter, 53);
if(verbose)
L<<addr.toStringWithPort();
ad.d_servers.push_back(addr);
}
if(verbose)
L<<endl;
}
void* pleaseWipeNegCache()
{
t_sstorage->negcache.clear();
return 0;
}
void* pleaseUseNewSDomainsMap(SyncRes::domainmap_t* newmap)
{
t_sstorage->domainmap = newmap;
return 0;
}
string reloadAuthAndForwards()
{
SyncRes::domainmap_t* original=t_sstorage->domainmap;
try {
L<<Logger::Warning<<"Reloading zones, purging data from cache"<<endl;
for(SyncRes::domainmap_t::const_iterator i = t_sstorage->domainmap->begin(); i != t_sstorage->domainmap->end(); ++i) {
for(SyncRes::AuthDomain::records_t::const_iterator j = i->second.d_records.begin(); j != i->second.d_records.end(); ++j)
broadcastAccFunction<uint64_t>(boost::bind(pleaseWipeCache, j->d_name, false));
}
string configname=::arg()["config-dir"]+"/recursor.conf";
cleanSlashes(configname);
if(!::arg().preParseFile(configname.c_str(), "forward-zones"))
throw runtime_error("Unable to re-parse configuration file '"+configname+"'");
::arg().preParseFile(configname.c_str(), "forward-zones-file");
::arg().preParseFile(configname.c_str(), "forward-zones-recurse");
::arg().preParseFile(configname.c_str(), "auth-zones");
::arg().preParseFile(configname.c_str(), "export-etc-hosts", "off");
::arg().preParseFile(configname.c_str(), "serve-rfc1918");
::arg().preParseFile(configname.c_str(), "include-dir");
::arg().preParse(g_argc, g_argv, "include-dir");
// then process includes
std::vector<std::string> extraConfigs;
::arg().gatherIncludes(extraConfigs);
for(const std::string& fn : extraConfigs) {
if(!::arg().preParseFile(fn.c_str(), "forward-zones", ::arg()["forward-zones"]))
throw runtime_error("Unable to re-parse configuration file include '"+fn+"'");
::arg().preParseFile(fn.c_str(), "forward-zones-file", ::arg()["forward-zones-file"]);
::arg().preParseFile(fn.c_str(), "forward-zones-recurse", ::arg()["forward-zones-recurse"]);
::arg().preParseFile(fn.c_str(), "auth-zones",::arg()["auth-zones"]);
::arg().preParseFile(fn.c_str(), "export-etc-hosts",::arg()["export-etc-hosts"]);
::arg().preParseFile(fn.c_str(), "serve-rfc1918",::arg()["serve-rfc1918"]);
}
::arg().preParse(g_argc, g_argv, "forward-zones");
::arg().preParse(g_argc, g_argv, "forward-zones-file");
::arg().preParse(g_argc, g_argv, "forward-zones-recurse");
::arg().preParse(g_argc, g_argv, "auth-zones");
::arg().preParse(g_argc, g_argv, "export-etc-hosts");
::arg().preParse(g_argc, g_argv, "serve-rfc1918");
SyncRes::domainmap_t* newDomainMap = parseAuthAndForwards();
// purge again - new zones need to blank out the cache
for(SyncRes::domainmap_t::const_iterator i = newDomainMap->begin(); i != newDomainMap->end(); ++i) {
broadcastAccFunction<uint64_t>(boost::bind(pleaseWipeCache, i->first, true));
broadcastAccFunction<uint64_t>(boost::bind(pleaseWipePacketCache, i->first, true));
broadcastAccFunction<uint64_t>(boost::bind(pleaseWipeAndCountNegCache, i->first, true));
}
broadcastFunction(boost::bind(pleaseUseNewSDomainsMap, newDomainMap));
delete original;
return "ok\n";
}
catch(std::exception& e) {
L<<Logger::Error<<"Encountered error reloading zones, keeping original data: "<<e.what()<<endl;
}
catch(PDNSException& ae) {
L<<Logger::Error<<"Encountered error reloading zones, keeping original data: "<<ae.reason<<endl;
}
catch(...) {
L<<Logger::Error<<"Encountered unknown error reloading zones, keeping original data"<<endl;
}
return "reloading failed, see log\n";
}
void RPZIXFRTracker(const ComboAddress& master, const DNSName& zone, boost::optional<DNSFilterEngine::Policy> defpol, size_t polZone, const TSIGTriplet& tt, shared_ptr<SOARecordContent> oursr, size_t maxReceivedBytes, const ComboAddress& localAddress)
{
int refresh = oursr->d_st.refresh;
for(;;) {
DNSRecord dr;
dr.d_content=oursr;
sleep(refresh);
L<<Logger::Info<<"Getting IXFR deltas for "<<zone<<" from "<<master.toStringWithPort()<<", our serial: "<<getRR<SOARecordContent>(dr)->d_st.serial<<endl;
vector<pair<vector<DNSRecord>, vector<DNSRecord> > > deltas;
ComboAddress local(localAddress);
if (local == ComboAddress())
local = getQueryLocalAddress(master.sin4.sin_family, 0);
try {
deltas = getIXFRDeltas(master, zone, dr, tt, &local, maxReceivedBytes);
} catch(std::runtime_error& e ){
L<<Logger::Warning<<e.what()<<endl;
continue;
}
if(deltas.empty())
continue;
L<<Logger::Info<<"Processing "<<deltas.size()<<" delta"<<addS(deltas)<<" for RPZ "<<zone<<endl;
auto luaconfsCopy = g_luaconfs.getCopy();
int totremove=0, totadd=0;
for(const auto& delta : deltas) {
const auto& remove = delta.first;
const auto& add = delta.second;
if(remove.empty()) {
L<<Logger::Warning<<"IXFR update is a whole new zone"<<endl;
luaconfsCopy.dfe.clear(polZone);
}
for(const auto& rr : remove) { // should always contain the SOA
if(rr.d_type == QType::NS)
continue;
totremove++;
if(rr.d_type == QType::SOA) {
auto oldsr = getRR<SOARecordContent>(rr);
if(oldsr && oldsr->d_st.serial == oursr->d_st.serial) {
// cout<<"Got good removal of SOA serial "<<oldsr->d_st.serial<<endl;
}
else
L<<Logger::Error<<"GOT WRONG SOA SERIAL REMOVAL, SHOULD TRIGGER WHOLE RELOAD"<<endl;
}
else {
L<<Logger::Info<<"Had removal of "<<rr.d_name<<endl;
RPZRecordToPolicy(rr, luaconfsCopy.dfe, false, defpol, polZone);
}
}
for(const auto& rr : add) { // should always contain the new SOA
if(rr.d_type == QType::NS)
continue;
totadd++;
if(rr.d_type == QType::SOA) {
auto newsr = getRR<SOARecordContent>(rr);
// L<<Logger::Info<<"New SOA serial for "<<zone<<": "<<newsr->d_st.serial<<endl;
if (newsr) {
oursr = newsr;
}
}
else {
L<<Logger::Info<<"Had addition of "<<rr.d_name<<endl;
RPZRecordToPolicy(rr, luaconfsCopy.dfe, true, defpol, polZone);
}
}
}
L<<Logger::Info<<"Had "<<totremove<<" RPZ removal"<<addS(totremove)<<", "<<totadd<<" addition"<<addS(totadd)<<" for "<<zone<<" New serial: "<<oursr->d_st.serial<<endl;
g_luaconfs.setState(luaconfsCopy);
}
}
SyncRes::domainmap_t* parseAuthAndForwards()
{
TXTRecordContent::report();
OPTRecordContent::report();
SyncRes::domainmap_t* newMap = new SyncRes::domainmap_t();
typedef vector<string> parts_t;
parts_t parts;
const char *option_names[3]={"auth-zones", "forward-zones", "forward-zones-recurse"};
for(int n=0; n < 3 ; ++n ) {
parts.clear();
stringtok(parts, ::arg()[option_names[n]], " ,\t\n\r");
for(parts_t::const_iterator iter = parts.begin(); iter != parts.end(); ++iter) {
SyncRes::AuthDomain ad;
if ((*iter).find('=') == string::npos)
throw PDNSException("Error parsing '" + *iter + "', missing =");
pair<string,string> headers=splitField(*iter, '=');
trim(headers.first);
trim(headers.second);
// headers.first=toCanonic("", headers.first);
if(n==0) {
ad.d_rdForward = false;
L<<Logger::Error<<"Parsing authoritative data for zone '"<<headers.first<<"' from file '"<<headers.second<<"'"<<endl;
ZoneParserTNG zpt(headers.second, DNSName(headers.first));
DNSResourceRecord rr;
DNSRecord dr;
while(zpt.get(rr)) {
try {
dr=DNSRecord(rr);
dr.d_place=DNSResourceRecord::ANSWER;
}
catch(std::exception &e) {
delete newMap;
throw PDNSException("Error parsing record '"+rr.qname.toString()+"' of type "+rr.qtype.getName()+" in zone '"+headers.first+"' from file '"+headers.second+"': "+e.what());
}
catch(...) {
delete newMap;
throw PDNSException("Error parsing record '"+rr.qname.toString()+"' of type "+rr.qtype.getName()+" in zone '"+headers.first+"' from file '"+headers.second+"'");
}
ad.d_records.insert(dr);
}
}
else {
L<<Logger::Error<<"Redirecting queries for zone '"<<headers.first<<"' ";
if(n == 2) {
L<<"with recursion ";
ad.d_rdForward = true;
}
else ad.d_rdForward = false;
L<<"to: ";
convertServersForAD(headers.second, ad, ";");
if(n == 2) {
ad.d_rdForward = true;
}
}
(*newMap)[DNSName(headers.first)]=ad;
}
}
if(!::arg()["forward-zones-file"].empty()) {
L<<Logger::Warning<<"Reading zone forwarding information from '"<<::arg()["forward-zones-file"]<<"'"<<endl;
SyncRes::AuthDomain ad;
FILE *rfp=fopen(::arg()["forward-zones-file"].c_str(), "r");
if(!rfp) {
delete newMap;
throw PDNSException("Error opening forward-zones-file '"+::arg()["forward-zones-file"]+"': "+stringerror());
}
shared_ptr<FILE> fp=shared_ptr<FILE>(rfp, fclose);
string line;
int linenum=0;
uint64_t before = newMap->size();
while(linenum++, stringfgets(fp.get(), line)) {
trim(line);
if (line[0] == '#') // Comment line, skip to the next line
continue;
string domain, instructions;
tie(domain, instructions)=splitField(line, '=');
instructions = splitField(instructions, '#').first; // Remove EOL comments
trim(domain);
trim(instructions);
if(domain.empty() && instructions.empty()) { // empty line
continue;
}
if(boost::starts_with(domain,"+")) {
domain=domain.c_str()+1;
ad.d_rdForward = true;
}
else
ad.d_rdForward = false;
if(domain.empty()) {
delete newMap;
throw PDNSException("Error parsing line "+std::to_string(linenum)+" of " +::arg()["forward-zones-file"]);
}
try {
convertServersForAD(instructions, ad, ",; ", false);
}
catch(...) {
delete newMap;
throw PDNSException("Conversion error parsing line "+std::to_string(linenum)+" of " +::arg()["forward-zones-file"]);
}
(*newMap)[DNSName(domain)]=ad;
}
L<<Logger::Warning<<"Done parsing " << newMap->size() - before<<" forwarding instructions from file '"<<::arg()["forward-zones-file"]<<"'"<<endl;
}
if(::arg().mustDo("export-etc-hosts")) {
string line;
string fname=::arg()["etc-hosts-file"];
ifstream ifs(fname.c_str());
if(!ifs) {
L<<Logger::Warning<<"Could not open /etc/hosts for reading"<<endl;
}
else {
string searchSuffix = ::arg()["export-etc-hosts-search-suffix"];
string::size_type pos;
while(getline(ifs,line)) {
pos=line.find('#');
if(pos!=string::npos)
line.resize(pos);
trim(line);
if(line.empty())
continue;
parts.clear();
stringtok(parts, line, "\t\r\n ");
if(parts[0].find(':')!=string::npos)
continue;
for(unsigned int n=1; n < parts.size(); ++n) {
if(searchSuffix.empty() || parts[n].find('.') != string::npos)
makeNameToIPZone(newMap, DNSName(parts[n]), parts[0]);
else {
DNSName canonic=toCanonic(DNSName(searchSuffix), parts[n]); /// XXXX DNSName pain
if(canonic != DNSName(parts[n])) { // XXX further DNSName pain
makeNameToIPZone(newMap, canonic, parts[0]);
}
}
}
makeIPToNamesZone(newMap, parts);
}
}
}
if(::arg().mustDo("serve-rfc1918")) {
L<<Logger::Warning<<"Inserting rfc 1918 private space zones"<<endl;
parts.clear();
parts.push_back("127");
makeIPToNamesZone(newMap, parts);
parts[0]="10";
makeIPToNamesZone(newMap, parts);
parts[0]="192.168";
makeIPToNamesZone(newMap, parts);
for(int n=16; n < 32; n++) {
parts[0]="172."+std::to_string(n);
makeIPToNamesZone(newMap,parts);
}
}
return newMap;
}
|