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 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
|
/*
* 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.
*/
#pragma once
#include <algorithm>
#include <cstddef>
class DNSPacket;
#include "utility.hh"
#include <string>
#include <utility>
#include <vector>
#include <map>
#include <sys/types.h>
#include "pdnsexception.hh"
#include <set>
#include <iostream>
#include <sys/socket.h>
#include <dirent.h>
#include "misc.hh"
#include "qtype.hh"
#include "dns.hh"
#include "namespaces.hh"
#include "comment.hh"
#include "dnsname.hh"
#include "dnsrecords.hh"
#include "iputils.hh"
#include "sha.hh"
#include "auth-catalogzone.hh"
class DNSBackend;
struct SOAData;
struct DomainInfo
{
DomainInfo() = default;
ZoneName zone;
ZoneName catalog;
time_t last_check{};
string options;
string account;
vector<ComboAddress> primaries;
DNSBackend* backend{};
domainid_t id{};
uint32_t notified_serial{};
bool receivedNotify{};
uint32_t serial{};
bool operator<(const DomainInfo& rhs) const
{
return zone < rhs.zone;
}
// Do not reorder (lmdbbackend)!!! One exception 'All' is always last.
enum DomainKind : uint8_t
{
Primary,
Secondary,
Native,
Producer,
Consumer,
All
} kind{DomainInfo::Native};
[[nodiscard]] const char* getKindString() const
{
return DomainInfo::getKindString(kind);
}
static const char* getKindString(enum DomainKind kind)
{
std::array<const char*, 6> kinds{"Master", "Slave", "Native", "Producer", "Consumer", "All"};
return kinds.at(kind);
}
static DomainKind stringToKind(const string& kind)
{
if (pdns_iequals(kind, "SECONDARY") || pdns_iequals(kind, "SLAVE")) {
return DomainInfo::Secondary;
}
if (pdns_iequals(kind, "PRIMARY") || pdns_iequals(kind, "MASTER")) {
return DomainInfo::Primary;
}
if (pdns_iequals(kind, "PRODUCER")) {
return DomainInfo::Producer;
}
if (pdns_iequals(kind, "CONSUMER")) {
return DomainInfo::Consumer;
}
// No "ALL" here please. Yes, I really mean it...
return DomainInfo::Native;
}
[[nodiscard]] bool isPrimaryType() const { return (kind == DomainInfo::Primary || kind == DomainInfo::Producer); }
[[nodiscard]] bool isSecondaryType() const { return (kind == DomainInfo::Secondary || kind == DomainInfo::Consumer); }
[[nodiscard]] bool isCatalogType() const { return (kind == DomainInfo::Producer || kind == DomainInfo::Consumer); }
[[nodiscard]] bool isPrimary(const ComboAddress& ipAddress) const
{
return std::any_of(primaries.begin(), primaries.end(), [ipAddress](auto primary) { return ComboAddress::addressOnlyEqual()(ipAddress, primary); });
}
};
struct TSIGKey
{
DNSName name;
DNSName algorithm;
std::string key;
};
struct AutoPrimary
{
AutoPrimary(string new_ip, string new_nameserver, string new_account) :
ip(std::move(new_ip)), nameserver(std::move(new_nameserver)), account(std::move(new_account)) {};
std::string ip;
std::string nameserver;
std::string account;
};
class DNSPacket;
//! This virtual base class defines the interface for backends for PowerDNS.
/** To create a backend, inherit from this class and implement functions for all virtual methods.
Methods should not throw an exception if they are sure they did not find the requested data. However,
if an error occurred which prevented them temporarily from performing a lockup, they should throw a DBException,
which will cause the nameserver to send out a ServFail or take other evasive action. Probably only locking
issues should lead to DBExceptions.
More serious errors, which may indicate that the database connection is hosed, or a configuration error occurred, should
lead to the throwing of an PDNSException. This exception will fall straight through the UeberBackend and the PacketHandler
and be caught by the Distributor, which will delete your DNSBackend instance and spawn a new one.
*/
class DNSBackend
{
public:
enum Capabilities : unsigned int
{
CAP_DNSSEC = 1 << 0, // Backend supports DNSSEC
CAP_COMMENTS = 1 << 1, // Backend supports comments
CAP_DIRECT = 1 << 2, // Backend supports direct commands
CAP_LIST = 1 << 3, // Backend supports record enumeration
CAP_CREATE = 1 << 4, // Backend supports domain creation
CAP_VIEWS = 1 << 5, // Backend supports views
};
virtual unsigned int getCapabilities() = 0;
//! lookup() initiates a lookup. A lookup without results should not throw!
virtual void lookup(const QType& qtype, const DNSName& qdomain, domainid_t zoneId, DNSPacket* pkt_p = nullptr) = 0;
virtual void APILookup(const QType& qtype, const DNSName& qdomain, domainid_t zoneId, bool include_disabled = false);
virtual bool get(DNSResourceRecord&) = 0; //!< retrieves one DNSResource record, returns false if no more were available
virtual bool get(DNSZoneRecord& zoneRecord);
//! Initiates a list of the specified domain
/** Once initiated, DNSResourceRecord objects can be retrieved using get(). Should return false
if the backend does not consider itself responsible for the id passed.
\param domain_id ID of which a list is requested
*/
virtual bool list(const ZoneName& target, domainid_t domain_id, bool include_disabled = false) = 0;
virtual ~DNSBackend() = default;
//! fills the soadata struct with the SOA details. Returns false if there is no SOA.
virtual bool getSOA(const ZoneName& domain, domainid_t zoneId, SOAData& soaData);
virtual bool replaceRRSet(domainid_t /* domain_id */, const DNSName& /* qname */, const QType& /* qt */, const vector<DNSResourceRecord>& /* rrset */)
{
return false;
}
virtual bool listSubZone(const ZoneName& /* zone */, domainid_t /* domain_id */)
{
return false;
}
// the DNSSEC related (getDomainMetadata has broader uses too)
static bool isDnssecDomainMetadata(const string& name)
{
return (name == "PRESIGNED" || name == "NSEC3PARAM" || name == "NSEC3NARROW");
}
virtual bool getAllDomainMetadata(const ZoneName& /* name */, std::map<std::string, std::vector<std::string>>& /* meta */) { return false; };
virtual bool getDomainMetadata(const ZoneName& /* name */, const std::string& /* kind */, std::vector<std::string>& /* meta */) { return false; }
virtual bool getDomainMetadataOne(const ZoneName& name, const std::string& kind, std::string& value)
{
std::vector<std::string> meta;
if (getDomainMetadata(name, kind, meta)) {
if (!meta.empty()) {
value = *meta.begin();
return true;
}
}
return false;
}
virtual bool setDomainMetadata(const ZoneName& /* name */, const std::string& /* kind */, const std::vector<std::string>& /* meta */) { return false; }
virtual bool setDomainMetadataOne(const ZoneName& name, const std::string& kind, const std::string& value)
{
const std::vector<std::string> meta(1, value);
return setDomainMetadata(name, kind, meta);
}
virtual void getAllDomains(vector<DomainInfo>* domains, bool getSerial, bool include_disabled);
/** Determines if we are authoritative for a zone, and at what level */
virtual bool getAuth(const ZoneName& target, SOAData* /* sd */);
struct KeyData
{
std::string content;
unsigned int id{0};
unsigned int flags{0};
bool active{false};
bool published{false};
};
virtual bool getDomainKeys(const ZoneName& /* name */, std::vector<KeyData>& /* keys */) { return false; }
virtual bool removeDomainKey(const ZoneName& /* name */, unsigned int /* id */) { return false; }
virtual bool addDomainKey(const ZoneName& /* name */, const KeyData& /* key */, int64_t& /* id */) { return false; }
virtual bool activateDomainKey(const ZoneName& /* name */, unsigned int /* id */) { return false; }
virtual bool deactivateDomainKey(const ZoneName& /* name */, unsigned int /* id */) { return false; }
virtual bool publishDomainKey(const ZoneName& /* name */, unsigned int /* id */) { return false; }
virtual bool unpublishDomainKey(const ZoneName& /* name */, unsigned int /* id */) { return false; }
virtual bool setTSIGKey(const DNSName& /* name */, const DNSName& /* algorithm */, const string& /* content */) { return false; }
virtual bool getTSIGKey(const DNSName& /* name */, DNSName& /* algorithm */, string& /* content */) { return false; }
virtual bool getTSIGKeys(std::vector<struct TSIGKey>& /* keys */) { return false; }
virtual bool deleteTSIGKey(const DNSName& /* name */) { return false; }
virtual bool getBeforeAndAfterNamesAbsolute(domainid_t /* id */, const DNSName& qname, DNSName& /* unhashed */, DNSName& /* before */, DNSName& /* after */)
{
throw PDNSException("DNSSEC operation invoked on non-DNSSEC capable backend, qname: '" + qname.toLogString() + "'");
}
virtual bool getBeforeAndAfterNames(domainid_t /* id */, const ZoneName& zonename, const DNSName& qname, DNSName& before, DNSName& after);
virtual bool updateDNSSECOrderNameAndAuth(domainid_t /* domain_id */, const DNSName& /* qname */, const DNSName& /* ordername */, bool /* auth */, const uint16_t /* qtype */, bool /* isNsec3 */)
{
return false;
}
virtual bool updateEmptyNonTerminals(domainid_t /* domain_id */, set<DNSName>& /* insert */, set<DNSName>& /* erase */, bool /* remove */)
{
return false;
}
bool doesDNSSEC()
{
return (getCapabilities() & CAP_DNSSEC) != 0;
}
// end DNSSEC
// comments support
virtual bool listComments(domainid_t /* domain_id */)
{
return false; // unsupported by this backend
}
virtual bool getComment(Comment& /* comment */)
{
return false;
}
virtual bool feedComment(const Comment& /* comment */)
{
return false;
}
virtual bool replaceComments(const domainid_t /* domain_id */, const DNSName& /* qname */, const QType& /* qt */, const vector<Comment>& /* comments */)
{
return false;
}
//! starts the transaction for updating domain qname, destroying all
//! existing data for that domain if id is != UnknownDomainID. In this case,
//! the id MUST match the DomainInfo information for qname, or very bad things
//! will happen.
//! FIXME: replace this with a bool to make this a less error-prone interface.
virtual bool startTransaction(const ZoneName& /* qname */, domainid_t /* id */ = UnknownDomainID)
{
return false;
}
//! commits the transaction started by startTransaction
virtual bool commitTransaction()
{
return false;
}
//! aborts the transaction started by startTransaction, should leave state unaltered
virtual bool abortTransaction()
{
return false;
}
virtual bool inTransaction()
{
return false;
}
virtual void reload()
{
}
virtual void rediscover(string* /* status */ = nullptr)
{
}
//! feeds a record to a zone, needs a call to startTransaction first
virtual bool feedRecord(const DNSResourceRecord& /* rr */, const DNSName& /* ordername */, bool /* ordernameIsNSEC3 */ = false)
{
return false; // no problem!
}
virtual bool feedEnts(domainid_t /* domain_id */, map<DNSName, bool>& /* nonterm */)
{
return false;
}
virtual bool feedEnts3(domainid_t /* domain_id */, const DNSName& /* domain */, map<DNSName, bool>& /* nonterm */, const NSEC3PARAMRecordContent& /* ns3prc */, bool /* narrow */)
{
return false;
}
//! if this returns true, DomainInfo di contains information about the domain
virtual bool getDomainInfo(const ZoneName& /* domain */, DomainInfo& /* di */, bool /* getSerial */ = true)
{
return false;
}
//! secondary capable backends should return a list of secondaries that should be rechecked for staleness
virtual void getUnfreshSecondaryInfos(vector<DomainInfo>* /* domains */)
{
}
//! get a list of IP addresses that should also be notified for a domain
virtual void alsoNotifies(const ZoneName& domain, set<string>* ips)
{
std::vector<std::string> meta;
getDomainMetadata(domain, "ALSO-NOTIFY", meta);
ips->insert(meta.begin(), meta.end());
}
//! get list of domains that have been changed since their last notification to secondaries
virtual void getUpdatedPrimaries(vector<DomainInfo>& /* domains */, std::unordered_set<DNSName>& /* catalogs */, CatalogHashMap& /* catalogHashes */)
{
}
//! get list of all members in a catalog
[[nodiscard]] virtual bool getCatalogMembers(const ZoneName& /* catalog */, vector<CatalogInfo>& /* members */, CatalogInfo::CatalogType /* type */)
{
return false;
}
//! Called by PowerDNS to inform a backend that a domain need to be checked for freshness
virtual void setStale(domainid_t /* domain_id */)
{
}
//! Called by PowerDNS to inform a backend that a domain has been checked for freshness
virtual void setFresh(domainid_t /* domain_id */)
{
}
//! Called by PowerDNS to inform a backend that the changes in the domain have been reported to secondaries
virtual void setNotified(domainid_t /* id */, uint32_t /* serial */)
{
}
//! Called when the Primary list of a domain should be changed
virtual bool setPrimaries(const ZoneName& /* domain */, const vector<ComboAddress>& /* primaries */)
{
return false;
}
//! Called when the Kind of a domain should be changed (primary -> native and similar)
virtual bool setKind(const ZoneName& /* domain */, const DomainInfo::DomainKind /* kind */)
{
return false;
}
//! Called when the options of a domain should be changed
virtual bool setOptions(const ZoneName& /* domain */, const string& /* options */)
{
return false;
}
//! Called when the catalog of a domain should be changed
virtual bool setCatalog(const ZoneName& /* domain */, const ZoneName& /* catalog */)
{
return false;
}
//! Called when the Account of a domain should be changed
virtual bool setAccount(const ZoneName& /* domain */, const string& /* account */)
{
return false;
}
//! Can be called to seed the getArg() function with a prefix
void setArgPrefix(const string& prefix);
//! Add an entry for a super primary
virtual bool autoPrimaryAdd(const struct AutoPrimary& /* primary */)
{
return false;
}
//! Remove an entry for a super primary
virtual bool autoPrimaryRemove(const struct AutoPrimary& /* primary */)
{
return false;
}
//! List all AutoPrimaries, returns false if feature not supported.
virtual bool autoPrimariesList(std::vector<AutoPrimary>& /* primaries */)
{
return false;
}
//! determine if ip is a autoprimary or a domain
virtual bool autoPrimaryBackend(const string& /* ip */, const ZoneName& /* domain */, const vector<DNSResourceRecord>& /* nsset */, string* /* nameserver */, string* /* account */, DNSBackend** /* db */)
{
return false;
}
//! called by PowerDNS to create a new domain
virtual bool createDomain(const ZoneName& /* domain */, const DomainInfo::DomainKind /* kind */, const vector<ComboAddress>& /* primaries */, const string& /* account */)
{
return false;
}
//! called by PowerDNS to create a secondary record for a autoPrimary
virtual bool createSecondaryDomain(const string& /* ip */, const ZoneName& /* domain */, const string& /* nameserver */, const string& /* account */)
{
return false;
}
//! called to delete a domain, incl. all metadata, zone contents, etc.
virtual bool deleteDomain(const ZoneName& /* domain */)
{
return false;
}
virtual string directBackendCmd(const string& /* query */)
{
return "directBackendCmd not supported for this backend\n";
}
//! Search for records, returns true if search was done successfully.
virtual bool searchRecords(const string& /* pattern */, size_t /* maxResults */, vector<DNSResourceRecord>& /* result */)
{
return false;
}
//! Search for comments, returns true if search was done successfully.
virtual bool searchComments(const string& /* pattern */, size_t /* maxResults */, vector<Comment>& /* result */)
{
return false;
}
virtual void viewList(vector<string>& /* result */)
{
}
virtual void viewListZones(const string& /* view */, vector<ZoneName>& /* result */)
{
}
virtual bool viewAddZone(const string& /* view */, const ZoneName& /* zone */)
{
return false;
}
virtual bool viewDelZone(const string& /* view */, const ZoneName& /* zone */)
{
return false;
}
virtual bool networkSet(const Netmask& /* net */, std::string& /* tag */)
{
return false;
}
virtual bool networkList(vector<pair<Netmask, string>>& /* networks */)
{
return false;
}
//! Returns whether backend operations have caused files to be created.
virtual bool hasCreatedLocalFiles() const
{
return false;
}
const string& getPrefix() { return d_prefix; };
protected:
bool mustDo(const string& key);
const string& getArg(const string& key);
int getArgAsNum(const string& key);
private:
string d_prefix;
};
class BackendFactory
{
public:
BackendFactory(string name) :
d_name(std::move(name)) {}
virtual ~BackendFactory() = default;
virtual DNSBackend* make(const string& suffix) = 0;
virtual DNSBackend* makeMetadataOnly(const string& suffix)
{
return this->make(suffix);
}
virtual void declareArguments(const string& /* suffix */ = "") {}
[[nodiscard]] const string& getName() const;
protected:
void declare(const string& suffix, const string& param, const string& explanation, const string& value);
private:
string d_name;
};
class BackendMakerClass
{
public:
void report(std::unique_ptr<BackendFactory>&& backendFactory);
void launch(const string& instr);
vector<std::unique_ptr<DNSBackend>> all(bool metadataOnly = false);
static void load(const string& module);
[[nodiscard]] size_t numLauncheable() const;
vector<string> getModules();
void clear();
private:
static void load_all();
using d_repository_t = map<string, std::unique_ptr<BackendFactory>>;
d_repository_t d_repository;
vector<pair<string, string>> d_instances;
};
extern BackendMakerClass& BackendMakers();
//! Exception that can be thrown by a DNSBackend to indicate a failure
class DBException : public PDNSException
{
public:
DBException(const string& reason_) :
PDNSException(reason_) {}
};
struct SOAData
{
SOAData() :
domain_id(UnknownDomainID) {};
#if defined(PDNS_AUTH)
const DNSName& qname() const { return zonename.operator const DNSName&(); }
ZoneName zonename;
#else
DNSName qname;
#endif
DNSName nameserver;
DNSName rname;
uint32_t ttl{};
uint32_t serial{};
uint32_t refresh{};
uint32_t retry{};
uint32_t expire{};
uint32_t minimum{};
DNSBackend* db{};
domainid_t domain_id{};
[[nodiscard]] uint32_t getNegativeTTL() const { return min(ttl, minimum); }
};
/** helper function for both DNSPacket and addSOARecord() - converts a line into a struct, for easier parsing */
void fillSOAData(const string& content, SOAData& soaData);
// same but more karmic
void fillSOAData(const DNSZoneRecord& inZoneRecord, SOAData& soaData);
// the reverse
std::shared_ptr<DNSRecordContent> makeSOAContent(const SOAData& soaData);
|