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
|
/*
* 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 <cstring>
#include <string>
#include <vector>
#include <set>
#include <deque>
#include <strings.h>
#include <stdexcept>
#include <sstream>
#include <iterator>
#include <unordered_set>
#include <boost/version.hpp>
#if BOOST_VERSION >= 105300
#include <boost/container/string.hpp>
#endif
#include "ascii.hh"
uint32_t burtleCI(const unsigned char* k, uint32_t length, uint32_t init);
// #include "dns.hh"
// #include "logger.hh"
//#include <ext/vstring.h>
/* Quest in life:
accept escaped ascii presentations of DNS names and store them "natively"
accept a DNS packet with an offset, and extract a DNS name from it
build up DNSNames with prepend and append of 'raw' unescaped labels
Be able to turn them into ASCII and "DNS name in a packet" again on request
Provide some common operators for comparison, detection of being part of another domain
NOTE: For now, everything MUST be . terminated, otherwise it is an error
*/
class DNSName
{
public:
DNSName() {} //!< Constructs an *empty* DNSName, NOT the root!
// Work around assertion in some boost versions that do not like self-assignment of boost::container::string
DNSName& operator=(const DNSName& rhs)
{
if (this != &rhs) {
d_storage = rhs.d_storage;
}
return *this;
}
DNSName& operator=(DNSName&& rhs)
{
if (this != &rhs) {
d_storage = std::move(rhs.d_storage);
}
return *this;
}
DNSName(const DNSName& a) = default;
DNSName(DNSName&& a) = default;
explicit DNSName(const char* p): DNSName(p, std::strlen(p)) {} //!< Constructs from a human formatted, escaped presentation
explicit DNSName(const char* p, size_t len); //!< Constructs from a human formatted, escaped presentation
explicit DNSName(const std::string& str) : DNSName(str.c_str(), str.length()) {}; //!< Constructs from a human formatted, escaped presentation
DNSName(const char* p, int len, int offset, bool uncompress, uint16_t* qtype=nullptr, uint16_t* qclass=nullptr, unsigned int* consumed=nullptr, uint16_t minOffset=0); //!< Construct from a DNS Packet, taking the first question if offset=12. If supplied, consumed is set to the number of bytes consumed from the packet, which will not be equal to the wire length of the resulting name in case of compression.
bool isPartOf(const DNSName& rhs) const; //!< Are we part of the rhs name? Note that name.isPartOf(name).
inline bool operator==(const DNSName& rhs) const; //!< DNS-native comparison (case insensitive) - empty compares to empty
bool operator!=(const DNSName& other) const { return !(*this == other); }
std::string toString(const std::string& separator=".", const bool trailing=true) const; //!< Our human-friendly, escaped, representation
void toString(std::string& output, const std::string& separator=".", const bool trailing=true) const;
std::string toLogString() const; //!< like plain toString, but returns (empty) on empty names
std::string toStringNoDot() const { return toString(".", false); }
std::string toStringRootDot() const { if(isRoot()) return "."; else return toString(".", false); }
std::string toDNSString() const; //!< Our representation in DNS native format
std::string toDNSStringLC() const; //!< Our representation in DNS native format, lower cased
void appendRawLabel(const std::string& str); //!< Append this unescaped label
void appendRawLabel(const char* start, unsigned int length); //!< Append this unescaped label
void prependRawLabel(const std::string& str); //!< Prepend this unescaped label
std::vector<std::string> getRawLabels() const; //!< Individual raw unescaped labels
std::string getRawLabel(unsigned int pos) const; //!< Get the specified raw unescaped label
DNSName getLastLabel() const; //!< Get the DNSName of the last label
bool chopOff(); //!< Turn www.powerdns.com. into powerdns.com., returns false for .
DNSName makeRelative(const DNSName& zone) const;
DNSName makeLowerCase() const
{
DNSName ret(*this);
ret.makeUsLowerCase();
return ret;
}
void makeUsLowerCase()
{
for(auto & c : d_storage) {
c=dns_tolower(c);
}
}
void makeUsRelative(const DNSName& zone);
DNSName getCommonLabels(const DNSName& other) const; //!< Return the list of common labels from the top, for example 'c.d' for 'a.b.c.d' and 'x.y.c.d'
DNSName labelReverse() const;
bool isWildcard() const;
bool isHostname() const;
unsigned int countLabels() const;
size_t wirelength() const; //!< Number of total bytes in the name
bool empty() const { return d_storage.empty(); }
bool isRoot() const { return d_storage.size()==1 && d_storage[0]==0; }
void clear() { d_storage.clear(); }
void trimToLabels(unsigned int);
size_t hash(size_t init=0) const
{
return burtleCI((const unsigned char*)d_storage.c_str(), d_storage.size(), init);
}
DNSName& operator+=(const DNSName& rhs)
{
if(d_storage.size() + rhs.d_storage.size() > 256) // one extra byte for the second root label
throw std::range_error("name too long");
if(rhs.empty())
return *this;
if(d_storage.empty())
d_storage+=rhs.d_storage;
else
d_storage.replace(d_storage.length()-1, rhs.d_storage.length(), rhs.d_storage);
return *this;
}
bool operator<(const DNSName& rhs) const // this delivers _some_ kind of ordering, but not one useful in a DNS context. Really fast though.
{
return std::lexicographical_compare(d_storage.rbegin(), d_storage.rend(),
rhs.d_storage.rbegin(), rhs.d_storage.rend(),
[](const unsigned char& a, const unsigned char& b) {
return dns_tolower(a) < dns_tolower(b);
}); // note that this is case insensitive, including on the label lengths
}
inline bool canonCompare(const DNSName& rhs) const;
bool slowCanonCompare(const DNSName& rhs) const;
#if BOOST_VERSION >= 105300
typedef boost::container::string string_t;
#else
typedef std::string string_t;
#endif
const string_t& getStorage() const {
return d_storage;
}
bool has8bitBytes() const; /* returns true if at least one byte of the labels forming the name is not included in [A-Za-z0-9_*./@ \\:-] */
private:
string_t d_storage;
void packetParser(const char* p, int len, int offset, bool uncompress, uint16_t* qtype, uint16_t* qclass, unsigned int* consumed, int depth, uint16_t minOffset);
static void appendEscapedLabel(std::string& appendTo, const char* orig, size_t len);
static std::string unescapeLabel(const std::string& orig);
};
size_t hash_value(DNSName const& d);
inline bool DNSName::canonCompare(const DNSName& rhs) const
{
// 01234567890abcd
// us: 1a3www4ds9a2nl
// rhs: 3www6online3com
// to compare, we start at the back, is nl < com? no -> done
//
// 0,2,6,a
// 0,4,a
uint8_t ourpos[64], rhspos[64];
uint8_t ourcount=0, rhscount=0;
//cout<<"Asked to compare "<<toString()<<" to "<<rhs.toString()<<endl;
for(const unsigned char* p = (const unsigned char*)d_storage.c_str(); p < (const unsigned char*)d_storage.c_str() + d_storage.size() && *p && ourcount < sizeof(ourpos); p+=*p+1)
ourpos[ourcount++]=(p-(const unsigned char*)d_storage.c_str());
for(const unsigned char* p = (const unsigned char*)rhs.d_storage.c_str(); p < (const unsigned char*)rhs.d_storage.c_str() + rhs.d_storage.size() && *p && rhscount < sizeof(rhspos); p+=*p+1)
rhspos[rhscount++]=(p-(const unsigned char*)rhs.d_storage.c_str());
if(ourcount == sizeof(ourpos) || rhscount==sizeof(rhspos)) {
return slowCanonCompare(rhs);
}
for(;;) {
if(ourcount == 0 && rhscount != 0)
return true;
if(rhscount == 0)
return false;
ourcount--;
rhscount--;
bool res=std::lexicographical_compare(
d_storage.c_str() + ourpos[ourcount] + 1,
d_storage.c_str() + ourpos[ourcount] + 1 + *(d_storage.c_str() + ourpos[ourcount]),
rhs.d_storage.c_str() + rhspos[rhscount] + 1,
rhs.d_storage.c_str() + rhspos[rhscount] + 1 + *(rhs.d_storage.c_str() + rhspos[rhscount]),
[](const unsigned char& a, const unsigned char& b) {
return dns_tolower(a) < dns_tolower(b);
});
// cout<<"Forward: "<<res<<endl;
if(res)
return true;
res=std::lexicographical_compare( rhs.d_storage.c_str() + rhspos[rhscount] + 1,
rhs.d_storage.c_str() + rhspos[rhscount] + 1 + *(rhs.d_storage.c_str() + rhspos[rhscount]),
d_storage.c_str() + ourpos[ourcount] + 1,
d_storage.c_str() + ourpos[ourcount] + 1 + *(d_storage.c_str() + ourpos[ourcount]),
[](const unsigned char& a, const unsigned char& b) {
return dns_tolower(a) < dns_tolower(b);
});
// cout<<"Reverse: "<<res<<endl;
if(res)
return false;
}
return false;
}
struct CanonDNSNameCompare
{
bool operator()(const DNSName&a, const DNSName& b) const
{
return a.canonCompare(b);
}
};
inline DNSName operator+(const DNSName& lhs, const DNSName& rhs)
{
DNSName ret=lhs;
ret += rhs;
return ret;
}
template<typename T>
struct SuffixMatchTree
{
SuffixMatchTree(const std::string& name="", bool endNode_=false) : d_name(name), endNode(endNode_)
{}
SuffixMatchTree(const SuffixMatchTree& rhs): d_name(rhs.d_name), children(rhs.children), endNode(rhs.endNode)
{
if (endNode) {
d_value = rhs.d_value;
}
}
SuffixMatchTree & operator=(const SuffixMatchTree &rhs)
{
d_name = rhs.d_name;
children = rhs.children;
endNode = rhs.endNode;
if (endNode) {
d_value = rhs.d_value;
}
return *this;
}
std::string d_name;
mutable std::set<SuffixMatchTree> children;
mutable bool endNode;
mutable T d_value;
bool operator<(const SuffixMatchTree& rhs) const
{
return strcasecmp(d_name.c_str(), rhs.d_name.c_str()) < 0;
}
typedef SuffixMatchTree value_type;
template<typename V>
void visit(const V& v) const {
for(const auto& c : children) {
c.visit(v);
}
if (endNode) {
v(*this);
}
}
void add(const DNSName& name, T&& t)
{
auto labels = name.getRawLabels();
add(labels, std::move(t));
}
void add(std::vector<std::string>& labels, T&& value) const
{
if (labels.empty()) { // this allows insertion of the root
endNode = true;
d_value = std::move(value);
}
else if(labels.size()==1) {
auto res = children.emplace(*labels.begin(), true);
if (!res.second) {
// we might already have had the node as an
// intermediary one, but it's now an end node
if (!res.first->endNode) {
res.first->endNode = true;
}
}
res.first->d_value = std::move(value);
}
else {
auto res = children.emplace(*labels.rbegin(), false);
labels.pop_back();
res.first->add(labels, std::move(value));
}
}
void remove(const DNSName &name, bool subtree=false) const
{
auto labels = name.getRawLabels();
remove(labels, subtree);
}
/* Removes the node at `labels`, also make sure that no empty
* children will be left behind in memory
*/
void remove(std::vector<std::string>& labels, bool subtree = false) const
{
if (labels.empty()) { // this allows removal of the root
endNode = false;
if (subtree) {
children.clear();
}
return;
}
SuffixMatchTree smt(*labels.rbegin());
auto child = children.find(smt);
if (child == children.end()) {
// No subnode found, we're done
return;
}
// We have found a child
labels.pop_back();
if (labels.empty()) {
// The child is no longer an endnode
child->endNode = false;
if (subtree) {
child->children.clear();
}
// If the child has no further children, just remove it from the set.
if (child->children.empty()) {
children.erase(child);
}
return;
}
// We are not at the end, let the child figure out what to do
child->remove(labels);
}
T* lookup(const DNSName& name) const
{
if (children.empty()) { // speed up empty set
if (endNode) {
return &d_value;
}
return nullptr;
}
auto labels = name.getRawLabels();
return lookup(labels);
}
T* lookup(std::vector<std::string>& labels) const
{
if (labels.empty()) { // optimization
if (endNode) {
return &d_value;
}
return nullptr;
}
SuffixMatchTree smn(*labels.rbegin());
auto child = children.find(smn);
if (child == children.end()) {
if(endNode) {
return &d_value;
}
return nullptr;
}
labels.pop_back();
auto result = child->lookup(labels);
if (result) {
return result;
}
return endNode ? &d_value : nullptr;
}
// Returns all end-nodes, fully qualified (not as separate labels)
std::vector<DNSName> getNodes() const {
std::vector<DNSName> ret;
if (endNode) {
ret.push_back(DNSName(d_name));
}
for (const auto& child : children) {
auto nodes = child.getNodes();
ret.reserve(ret.size() + nodes.size());
for (const auto &node: nodes) {
ret.push_back(node + DNSName(d_name));
}
}
return ret;
}
};
/* Quest in life: serve as a rapid block list. If you add a DNSName to a root SuffixMatchNode,
anything part of that domain will return 'true' in check */
struct SuffixMatchNode
{
public:
SuffixMatchNode()
{}
SuffixMatchTree<bool> d_tree;
void add(const DNSName& dnsname)
{
d_tree.add(dnsname, true);
d_nodes.insert(dnsname);
}
void add(const std::string& name)
{
add(DNSName(name));
}
void add(std::vector<std::string> labels)
{
d_tree.add(labels, true);
DNSName tmp;
while (!labels.empty()) {
tmp.appendRawLabel(labels.back());
labels.pop_back(); // This is safe because we have a copy of labels
}
d_nodes.insert(tmp);
}
void remove(const DNSName& name)
{
d_tree.remove(name);
d_nodes.erase(name);
}
void remove(std::vector<std::string> labels)
{
d_tree.remove(labels);
DNSName tmp;
while (!labels.empty()) {
tmp.appendRawLabel(labels.back());
labels.pop_back(); // This is safe because we have a copy of labels
}
d_nodes.erase(tmp);
}
bool check(const DNSName& dnsname) const
{
return d_tree.lookup(dnsname) != nullptr;
}
std::string toString() const
{
std::string ret;
bool first = true;
for (const auto& n : d_nodes) {
if (!first) {
ret += ", ";
}
first = false;
ret += n.toString();
}
return ret;
}
private:
mutable std::set<DNSName> d_nodes; // Only used for string generation
};
std::ostream & operator<<(std::ostream &os, const DNSName& d);
namespace std {
template <>
struct hash<DNSName> {
size_t operator () (const DNSName& dn) const { return dn.hash(0); }
};
}
DNSName::string_t segmentDNSNameRaw(const char* input, size_t inputlen); // from ragel
bool DNSName::operator==(const DNSName& rhs) const
{
if(rhs.empty() != empty() || rhs.d_storage.size() != d_storage.size())
return false;
auto us = d_storage.cbegin();
auto p = rhs.d_storage.cbegin();
for(; us != d_storage.cend() && p != rhs.d_storage.cend(); ++us, ++p) {
if(dns_tolower(*p) != dns_tolower(*us))
return false;
}
return true;
}
extern const DNSName g_rootdnsname, g_wildcarddnsname;
struct DNSNameSet: public std::unordered_set<DNSName> {
std::string toString() const {
std::ostringstream oss;
std::copy(begin(), end(), std::ostream_iterator<DNSName>(oss, "\n"));
return oss.str();
}
};
|