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
|
/*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dns.hh"
#include "misc.hh"
#include <stdexcept>
#include <iostream>
#include <boost/algorithm/string.hpp>
#include <boost/assign/list_of.hpp>
#include "dnsparser.hh"
std::vector<std::string> RCode::rcodes_s = boost::assign::list_of
("No Error")
("Form Error")
("Server Failure")
("Non-Existent domain")
("Not Implemented")
("Query Refused")
("Name Exists when it should not")
("RR Set Exists when it should not")
("RR Set that should exist does not")
("Server Not Authoritative for zone / Not Authorized")
("Name not contained in zone")
("Err#11")
("Err#12")
("Err#13")
("Err#14")
("Err#15")
("Bad OPT Version / TSIG Signature Failure")
("Key not recognized")
("Signature out of time window")
("Bad TKEY Mode")
("Duplicate key name")
("Algorithm not supported")
("Bad Truncation")
;
std::string RCode::to_s(unsigned short rcode) {
if (rcode > RCode::rcodes_s.size()-1 )
return std::string("Err#")+std::to_string(rcode);
return RCode::rcodes_s[rcode];
}
class BoundsCheckingPointer
{
public:
explicit BoundsCheckingPointer(const char* a, size_t length)
: d_ptr(a), d_length(length)
{}
explicit BoundsCheckingPointer(const std::string& str)
: d_ptr(str.c_str()), d_length(str.size())
{}
char operator[](size_t offset) const
{
if(offset < d_length)
return d_ptr[offset];
throw runtime_error("out of bounds: "+std::to_string(offset)+" >= " + std::to_string(d_length));
}
private:
const char* d_ptr;
const size_t d_length;
};
// goal is to hash based purely on the question name, and turn error into 'default'
uint32_t hashQuestion(const char* packet, uint16_t len, uint32_t init)
{
if(len < 12)
return init;
uint32_t ret=init;
const unsigned char* end = (const unsigned char*)packet+len;
const unsigned char* pos = (const unsigned char*)packet+12;
unsigned char labellen;
while((labellen=*pos++) && pos < end) {
if(pos + labellen + 1 > end) // include length field in hash
return 0;
ret=burtleCI(pos, labellen+1, ret);
pos += labellen;
}
return ret;
}
string& attodot(string &str)
{
if(str.find_first_of("@")==string::npos)
return str;
for (unsigned int i = 0; i < str.length(); i++)
{
if (str[i] == '@') {
str[i] = '.';
break;
} else if (str[i] == '.') {
str.insert(i++, "\\");
}
}
return str;
}
vector<DNSResourceRecord> convertRRS(const vector<DNSRecord>& in)
{
vector<DNSResourceRecord> out;
for(const auto& d : in) {
DNSResourceRecord rr;
rr.qname = d.d_name;
rr.qtype = QType(d.d_type);
rr.ttl = d.d_ttl;
rr.content = d.d_content->getZoneRepresentation();
rr.auth = false;
rr.qclass = d.d_class;
out.push_back(rr);
}
return out;
}
|