]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dnsparser.hh
Merge pull request #6737 from chbruyand/dnsdist-consistent-hashing
[thirdparty/pdns.git] / pdns / dnsparser.hh
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 #ifndef DNSPARSER_HH
23 #define DNSPARSER_HH
24
25 #include <map>
26 #include <sstream>
27 #include <stdexcept>
28 #include <iostream>
29 #include <vector>
30 #include <errno.h>
31 // #include <netinet/in.h>
32 #include "misc.hh"
33
34 #include <boost/tuple/tuple.hpp>
35 #include <boost/tuple/tuple_comparison.hpp>
36 #include "dns.hh"
37 #include "dnswriter.hh"
38 #include "dnsname.hh"
39 #include "pdnsexception.hh"
40 #include "iputils.hh"
41
42 /** DNS records have three representations:
43 1) in the packet
44 2) parsed in a class, ready for use
45 3) in the zone
46
47 We should implement bidirectional transitions between 1&2 and 2&3.
48 Currently we have: 1 -> 2
49 2 -> 3
50
51 We can add: 2 -> 1 easily by reversing the packetwriter
52 And we might be able to reverse 2 -> 3 as well
53 */
54
55 #include "namespaces.hh"
56 #include "namespaces.hh"
57
58 class MOADNSException : public runtime_error
59 {
60 public:
61 MOADNSException(const string& str) : runtime_error(str)
62 {}
63 };
64
65
66 class MOADNSParser;
67
68 class PacketReader
69 {
70 public:
71 PacketReader(const std::string& content, uint16_t initialPos=sizeof(dnsheader))
72 : d_pos(initialPos), d_startrecordpos(initialPos), d_content(content)
73 {
74 if(content.size() > std::numeric_limits<uint16_t>::max())
75 throw std::out_of_range("packet too large");
76
77 d_recordlen = (uint16_t) content.size();
78 not_used = 0;
79 }
80
81 uint32_t get32BitInt();
82 uint16_t get16BitInt();
83 uint8_t get8BitInt();
84
85 void xfr48BitInt(uint64_t& val);
86
87 void xfr32BitInt(uint32_t& val)
88 {
89 val=get32BitInt();
90 }
91
92 void xfrIP(uint32_t& val)
93 {
94 xfr32BitInt(val);
95 val=htonl(val);
96 }
97
98 void xfrIP6(std::string &val) {
99 xfrBlob(val, 16);
100 }
101
102 void xfrCAWithoutPort(uint8_t version, ComboAddress &val) {
103 string blob;
104 if (version == 4) xfrBlob(blob, 4);
105 else if (version == 6) xfrBlob(blob, 16);
106 else throw runtime_error("invalid IP protocol");
107 val = makeComboAddressFromRaw(version, blob);
108 }
109
110 void xfrCAPort(ComboAddress &val) {
111 uint16_t port;
112 xfr16BitInt(port);
113 val.sin4.sin_port = port;
114 }
115
116 void xfrTime(uint32_t& val)
117 {
118 xfr32BitInt(val);
119 }
120
121
122 void xfr16BitInt(uint16_t& val)
123 {
124 val=get16BitInt();
125 }
126
127 void xfrType(uint16_t& val)
128 {
129 xfr16BitInt(val);
130 }
131
132
133 void xfr8BitInt(uint8_t& val)
134 {
135 val=get8BitInt();
136 }
137
138
139 void xfrName(DNSName &name, bool compress=false, bool noDot=false)
140 {
141 name=getName();
142 }
143
144 void xfrText(string &text, bool multi=false, bool lenField=true)
145 {
146 text=getText(multi, lenField);
147 }
148
149 void xfrUnquotedText(string &text, bool lenField){
150 text=getUnquotedText(lenField);
151 }
152
153 void xfrBlob(string& blob);
154 void xfrBlobNoSpaces(string& blob, int len);
155 void xfrBlob(string& blob, int length);
156 void xfrHexBlob(string& blob, bool keepReading=false);
157
158 void getDnsrecordheader(struct dnsrecordheader &ah);
159 void copyRecord(vector<unsigned char>& dest, uint16_t len);
160 void copyRecord(unsigned char* dest, uint16_t len);
161
162 DNSName getName();
163 string getText(bool multi, bool lenField);
164 string getUnquotedText(bool lenField);
165
166
167 bool eof() { return true; };
168 const string getRemaining() const {
169 return "";
170 };
171
172 uint16_t getPosition() const
173 {
174 return d_pos;
175 }
176
177 void skip(uint16_t n)
178 {
179 d_pos += n;
180 }
181
182 private:
183 uint16_t d_pos;
184 uint16_t d_startrecordpos; // needed for getBlob later on
185 uint16_t d_recordlen; // ditto
186 uint16_t not_used; // Aligns the whole class on 8-byte boundries
187 const std::string& d_content;
188 };
189
190 struct DNSRecord;
191
192 class DNSRecordContent
193 {
194 public:
195 static std::shared_ptr<DNSRecordContent> mastermake(const DNSRecord &dr, PacketReader& pr);
196 static std::shared_ptr<DNSRecordContent> mastermake(const DNSRecord &dr, PacketReader& pr, uint16_t opcode);
197 static std::shared_ptr<DNSRecordContent> mastermake(uint16_t qtype, uint16_t qclass, const string& zone);
198 static std::unique_ptr<DNSRecordContent> makeunique(uint16_t qtype, uint16_t qclass, const string& content);
199
200 virtual std::string getZoneRepresentation(bool noDot=false) const = 0;
201 virtual ~DNSRecordContent() {}
202 virtual void toPacket(DNSPacketWriter& pw)=0;
203 virtual string serialize(const DNSName& qname, bool canonic=false, bool lowerCase=false) // it would rock if this were const, but it is too hard
204 {
205 vector<uint8_t> packet;
206 DNSPacketWriter pw(packet, g_rootdnsname, 1);
207 if(canonic)
208 pw.setCanonic(true);
209
210 if(lowerCase)
211 pw.setLowercase(true);
212
213 pw.startRecord(qname, this->getType());
214 this->toPacket(pw);
215
216 string record;
217 pw.getRecordPayload(record); // needs to be called before commit()
218 return record;
219 }
220
221 virtual bool operator==(const DNSRecordContent& rhs) const
222 {
223 return typeid(*this)==typeid(rhs) && this->getZoneRepresentation() == rhs.getZoneRepresentation();
224 }
225
226 static shared_ptr<DNSRecordContent> unserialize(const DNSName& qname, uint16_t qtype, const string& serialized);
227
228 void doRecordCheck(const struct DNSRecord&){}
229
230 typedef DNSRecordContent* makerfunc_t(const struct DNSRecord& dr, PacketReader& pr);
231 typedef DNSRecordContent* zmakerfunc_t(const string& str);
232
233 static void regist(uint16_t cl, uint16_t ty, makerfunc_t* f, zmakerfunc_t* z, const char* name)
234 {
235 if(f)
236 getTypemap()[make_pair(cl,ty)]=f;
237 if(z)
238 getZmakermap()[make_pair(cl,ty)]=z;
239
240 getT2Namemap().insert(make_pair(make_pair(cl,ty), name));
241 getN2Typemap().insert(make_pair(name, make_pair(cl,ty)));
242 }
243
244 static void unregist(uint16_t cl, uint16_t ty)
245 {
246 pair<uint16_t, uint16_t> key=make_pair(cl, ty);
247 getTypemap().erase(key);
248 getZmakermap().erase(key);
249 }
250
251 static uint16_t TypeToNumber(const string& name)
252 {
253 n2typemap_t::const_iterator iter = getN2Typemap().find(toUpper(name));
254 if(iter != getN2Typemap().end())
255 return iter->second.second;
256
257 if(boost::starts_with(name, "TYPE") || boost::starts_with(name, "type"))
258 return (uint16_t) pdns_stou(name.substr(4));
259
260 throw runtime_error("Unknown DNS type '"+name+"'");
261 }
262
263 static const string NumberToType(uint16_t num, uint16_t classnum=1)
264 {
265 t2namemap_t::const_iterator iter = getT2Namemap().find(make_pair(classnum, num));
266 if(iter == getT2Namemap().end())
267 return "TYPE" + std::to_string(num);
268 // throw runtime_error("Unknown DNS type with numerical id "+std::to_string(num));
269 return iter->second;
270 }
271
272 virtual uint16_t getType() const = 0;
273
274 protected:
275 typedef std::map<std::pair<uint16_t, uint16_t>, makerfunc_t* > typemap_t;
276 typedef std::map<std::pair<uint16_t, uint16_t>, zmakerfunc_t* > zmakermap_t;
277 typedef std::map<std::pair<uint16_t, uint16_t>, string > t2namemap_t;
278 typedef std::map<string, std::pair<uint16_t, uint16_t> > n2typemap_t;
279 static typemap_t& getTypemap();
280 static t2namemap_t& getT2Namemap();
281 static n2typemap_t& getN2Typemap();
282 static zmakermap_t& getZmakermap();
283 };
284
285 struct DNSRecord
286 {
287 DNSRecord() : d_type(0), d_class(QClass::IN), d_ttl(0), d_clen(0), d_place(DNSResourceRecord::ANSWER)
288 {}
289 explicit DNSRecord(const DNSResourceRecord& rr);
290 DNSName d_name;
291 std::shared_ptr<DNSRecordContent> d_content;
292 uint16_t d_type;
293 uint16_t d_class;
294 uint32_t d_ttl;
295 uint16_t d_clen;
296 DNSResourceRecord::Place d_place;
297
298 bool operator<(const DNSRecord& rhs) const
299 {
300 if(tie(d_name, d_type, d_class, d_ttl) < tie(rhs.d_name, rhs.d_type, rhs.d_class, rhs.d_ttl))
301 return true;
302
303 if(tie(d_name, d_type, d_class, d_ttl) != tie(rhs.d_name, rhs.d_type, rhs.d_class, rhs.d_ttl))
304 return false;
305
306 string lzrp, rzrp;
307 if(d_content)
308 lzrp=toLower(d_content->getZoneRepresentation());
309 if(rhs.d_content)
310 rzrp=toLower(rhs.d_content->getZoneRepresentation());
311
312 return lzrp < rzrp;
313 }
314
315 // this orders in canonical order and keeps the SOA record on top
316 static bool prettyCompare(const DNSRecord& a, const DNSRecord& b)
317 {
318 auto aType = (a.d_type == QType::SOA) ? 0 : a.d_type;
319 auto bType = (b.d_type == QType::SOA) ? 0 : b.d_type;
320
321 if(a.d_name.canonCompare(b.d_name))
322 return true;
323 if(b.d_name.canonCompare(a.d_name))
324 return false;
325
326 if(tie(aType, a.d_class, a.d_ttl) < tie(bType, b.d_class, b.d_ttl))
327 return true;
328
329 if(tie(aType, a.d_class, a.d_ttl) != tie(bType, b.d_class, b.d_ttl))
330 return false;
331
332 string lzrp, rzrp;
333 if(a.d_content)
334 lzrp=toLower(a.d_content->getZoneRepresentation());
335 if(b.d_content)
336 rzrp=toLower(b.d_content->getZoneRepresentation());
337
338 return lzrp < rzrp;
339 }
340
341
342 bool operator==(const DNSRecord& rhs) const
343 {
344 if(d_type != rhs.d_type || d_class != rhs.d_class || d_name != rhs.d_name)
345 return false;
346
347 return *d_content == *rhs.d_content;
348 }
349 };
350
351 struct DNSZoneRecord
352 {
353 int domain_id{-1};
354 uint8_t scopeMask{0};
355 int signttl{0};
356 DNSName wildcardname;
357 bool auth{true};
358 DNSRecord dr;
359 };
360
361
362 //! This class can be used to parse incoming packets, and is copyable
363 class MOADNSParser : public boost::noncopyable
364 {
365 public:
366 //! Parse from a string
367 MOADNSParser(bool query, const string& buffer): d_tsigPos(0)
368 {
369 init(query, buffer);
370 }
371
372 //! Parse from a pointer and length
373 MOADNSParser(bool query, const char *packet, unsigned int len) : d_tsigPos(0)
374 {
375 init(query, std::string(packet, len));
376 }
377
378 DNSName d_qname;
379 uint16_t d_qclass, d_qtype;
380 //uint8_t d_rcode;
381 dnsheader d_header;
382
383 typedef vector<pair<DNSRecord, uint16_t > > answers_t;
384
385 //! All answers contained in this packet (everything *but* the question section)
386 answers_t d_answers;
387
388 uint16_t getTSIGPos() const
389 {
390 return d_tsigPos;
391 }
392 private:
393 void init(bool query, const std::string& packet);
394 uint16_t d_tsigPos;
395 };
396
397 string simpleCompress(const string& label, const string& root="");
398 void ageDNSPacket(char* packet, size_t length, uint32_t seconds);
399 void ageDNSPacket(std::string& packet, uint32_t seconds);
400 void editDNSPacketTTL(char* packet, size_t length, std::function<uint32_t(uint8_t, uint16_t, uint16_t, uint32_t)> visitor);
401 uint32_t getDNSPacketMinTTL(const char* packet, size_t length, bool* seenAuthSOA=nullptr);
402 uint32_t getDNSPacketLength(const char* packet, size_t length);
403 uint16_t getRecordsOfTypeCount(const char* packet, size_t length, uint8_t section, uint16_t type);
404
405 template<typename T>
406 std::shared_ptr<T> getRR(const DNSRecord& dr)
407 {
408 return std::dynamic_pointer_cast<T>(dr.d_content);
409 }
410
411 #endif