]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dns.cc
Merge pull request #5770 from rgacogne/remote-logger-first-packet
[thirdparty/pdns.git] / pdns / dns.cc
1 /*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25 #include "dns.hh"
26 #include "misc.hh"
27 #include <stdexcept>
28 #include <iostream>
29 #include <boost/algorithm/string.hpp>
30 #include <boost/assign/list_of.hpp>
31 #include "dnsparser.hh"
32
33 std::vector<std::string> RCode::rcodes_s = boost::assign::list_of
34 ("No Error")
35 ("Form Error")
36 ("Server Failure")
37 ("Non-Existent domain")
38 ("Not Implemented")
39 ("Query Refused")
40 ("Name Exists when it should not")
41 ("RR Set Exists when it should not")
42 ("RR Set that should exist does not")
43 ("Server Not Authoritative for zone / Not Authorized")
44 ("Name not contained in zone")
45 ("Err#11")
46 ("Err#12")
47 ("Err#13")
48 ("Err#14")
49 ("Err#15") // Last non-extended RCode
50 ("Bad OPT Version / TSIG Signature Failure")
51 ("Key not recognized")
52 ("Signature out of time window")
53 ("Bad TKEY Mode")
54 ("Duplicate key name")
55 ("Algorithm not supported")
56 ("Bad Truncation")
57 ("Bad/missing Server Cookie")
58 ;
59
60 std::string RCode::to_s(uint8_t rcode) {
61 if (rcode > 0xF)
62 return std::string("ErrOutOfRange");
63 return ERCode::to_s(rcode);
64 }
65
66 std::string ERCode::to_s(uint8_t rcode) {
67 if (rcode > RCode::rcodes_s.size()-1)
68 return std::string("Err#")+std::to_string(rcode);
69 return RCode::rcodes_s[rcode];
70 }
71
72 class BoundsCheckingPointer
73 {
74 public:
75 explicit BoundsCheckingPointer(const char* a, size_t length)
76 : d_ptr(a), d_length(length)
77 {}
78
79 explicit BoundsCheckingPointer(const std::string& str)
80 : d_ptr(str.c_str()), d_length(str.size())
81 {}
82
83
84 char operator[](size_t offset) const
85 {
86 if(offset < d_length)
87 return d_ptr[offset];
88 throw runtime_error("out of bounds: "+std::to_string(offset)+" >= " + std::to_string(d_length));
89 }
90 private:
91 const char* d_ptr;
92 const size_t d_length;
93 };
94
95
96 // goal is to hash based purely on the question name, and turn error into 'default'
97 uint32_t hashQuestion(const char* packet, uint16_t len, uint32_t init)
98 {
99 if(len < 12)
100 return init;
101
102 uint32_t ret=init;
103 const unsigned char* end = (const unsigned char*)packet+len;
104 const unsigned char* pos = (const unsigned char*)packet+12;
105
106 unsigned char labellen;
107 while((labellen=*pos++) && pos < end) {
108 if(pos + labellen + 1 > end) // include length field in hash
109 return 0;
110 ret=burtleCI(pos, labellen+1, ret);
111 pos += labellen;
112 }
113 return ret;
114 }
115
116
117 string& attodot(string &str)
118 {
119 if(str.find_first_of("@")==string::npos)
120 return str;
121
122 for (unsigned int i = 0; i < str.length(); i++)
123 {
124 if (str[i] == '@') {
125 str[i] = '.';
126 break;
127 } else if (str[i] == '.') {
128 str.insert(i++, "\\");
129 }
130 }
131 return str;
132 }