]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/dnsparser.hh
Standardize license text in all PDNS files
[thirdparty/pdns.git] / pdns / dnsparser.hh
CommitLineData
4192ca66 1/*
12471842
PL
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 */
ff6a1e7b
BH
22#ifndef DNSPARSER_HH
23#define DNSPARSER_HH
24
25#include <map>
26#include <sstream>
27#include <stdexcept>
ff6a1e7b
BH
28#include <iostream>
29#include <vector>
30#include <errno.h>
5a57d2ea 31// #include <netinet/in.h>
5716fab3 32#include "misc.hh"
dd7da6cd 33
9a450843
BH
34#include <boost/tuple/tuple.hpp>
35#include <boost/tuple/tuple_comparison.hpp>
5a57d2ea 36#include "dns.hh"
ea634573 37#include "dnswriter.hh"
d926c0da
KM
38#include "dnsname.hh"
39#include "pdnsexception.hh"
bff744a8
BH
40
41/** DNS records have three representations:
42 1) in the packet
43 2) parsed in a class, ready for use
44 3) in the zone
45
46 We should implement bidirectional transitions between 1&2 and 2&3.
47 Currently we have: 1 -> 2
48 2 -> 3
49
50 We can add: 2 -> 1 easily by reversing the packetwriter
51 And we might be able to reverse 2 -> 3 as well
52*/
53
10f4eea8 54#include "namespaces.hh"
61b26744 55#include "namespaces.hh"
7b1469bb
BH
56
57class MOADNSException : public runtime_error
58{
59public:
60 MOADNSException(const string& str) : runtime_error(str)
61 {}
62};
ff6a1e7b 63
ff6a1e7b
BH
64
65class MOADNSParser;
66
67class PacketReader
68{
69public:
092f210a 70 PacketReader(const vector<uint8_t>& content)
eef10ff2
PD
71 : d_pos(0), d_startrecordpos(0), d_content(content)
72 {
a683e8bd
RG
73 if(content.size() > std::numeric_limits<uint16_t>::max())
74 throw std::out_of_range("packet too large");
75
76 d_recordlen = (uint16_t) content.size();
745bf26e 77 not_used = 0;
eef10ff2 78 }
ff6a1e7b 79
092f210a
BH
80 uint32_t get32BitInt();
81 uint16_t get16BitInt();
bff744a8 82 uint8_t get8BitInt();
341930bb
BH
83
84 void xfr48BitInt(uint64_t& val);
bff744a8
BH
85
86 void xfr32BitInt(uint32_t& val)
87 {
88 val=get32BitInt();
89 }
90
cbf0e7f3
BH
91 void xfrIP(uint32_t& val)
92 {
93 xfr32BitInt(val);
79a9e9ad 94 val=htonl(val);
cbf0e7f3
BH
95 }
96
b9b28916
AT
97 void xfrIP6(std::string &val) {
98 xfrBlob(val, 16);
99 }
100
8bf26468
BH
101 void xfrTime(uint32_t& val)
102 {
103 xfr32BitInt(val);
104 }
105
106
bff744a8
BH
107 void xfr16BitInt(uint16_t& val)
108 {
109 val=get16BitInt();
110 }
111
8bf26468
BH
112 void xfrType(uint16_t& val)
113 {
114 xfr16BitInt(val);
115 }
116
117
8c1c9170
BH
118 void xfr8BitInt(uint8_t& val)
119 {
120 val=get8BitInt();
121 }
122
123
f21fc0aa 124 void xfrName(DNSName &name, bool compress=false, bool noDot=false)
bff744a8 125 {
143da54c 126 name=getName();
bff744a8
BH
127 }
128
84e1142d 129 void xfrText(string &text, bool multi=false, bool lenField=true)
bff744a8 130 {
84e1142d 131 text=getText(multi, lenField);
bff744a8
BH
132 }
133
948a927f
PL
134 void xfrUnquotedText(string &text, bool lenField){
135 text=getUnquotedText(lenField);
136 }
137
8c1c9170 138 void xfrBlob(string& blob);
2fe9d6f7 139 void xfrBlobNoSpaces(string& blob, int len);
06ffdc52 140 void xfrBlob(string& blob, int length);
e4090157 141 void xfrHexBlob(string& blob, bool keepReading=false);
8c1c9170 142
092f210a 143 static uint16_t get16BitInt(const vector<unsigned char>&content, uint16_t& pos);
bff744a8 144
ff6a1e7b 145 void getDnsrecordheader(struct dnsrecordheader &ah);
092f210a
BH
146 void copyRecord(vector<unsigned char>& dest, uint16_t len);
147 void copyRecord(unsigned char* dest, uint16_t len);
2ce12d79 148
8171ab83 149 DNSName getName();
84e1142d 150 string getText(bool multi, bool lenField);
948a927f 151 string getUnquotedText(bool lenField);
ff6a1e7b 152
092f210a 153 uint16_t d_pos;
bff744a8 154
d476d7fb
AT
155 bool eof() { return true; };
156
ff6a1e7b 157private:
8c1c9170 158 uint16_t d_startrecordpos; // needed for getBlob later on
abc1d928 159 uint16_t d_recordlen; // ditto
da7311a7 160 uint16_t not_used; // Alighns the whole class on 8-byte boundries
092f210a 161 const vector<uint8_t>& d_content;
ff6a1e7b
BH
162};
163
ea634573 164struct DNSRecord;
7fc69fd0 165
ff6a1e7b
BH
166class DNSRecordContent
167{
168public:
7fc69fd0 169 static DNSRecordContent* mastermake(const DNSRecord &dr, PacketReader& pr);
7945d472 170 static DNSRecordContent* mastermake(const DNSRecord &dr, PacketReader& pr, uint16_t opcode);
6c0670c3 171 static DNSRecordContent* mastermake(uint16_t qtype, uint16_t qclass, const string& zone);
a957f3ee 172 static std::unique_ptr<DNSRecordContent> makeunique(uint16_t qtype, uint16_t qclass, const string& content);
bff744a8 173
f21fc0aa 174 virtual std::string getZoneRepresentation(bool noDot=false) const = 0;
ff6a1e7b 175 virtual ~DNSRecordContent() {}
6c0670c3 176 virtual void toPacket(DNSPacketWriter& pw)=0;
675fa24c 177 virtual string serialize(const DNSName& qname, bool canonic=false, bool lowerCase=false) // it would rock if this were const, but it is too hard
ea634573
BH
178 {
179 vector<uint8_t> packet;
8171ab83 180 DNSName empty;
7127879f 181 DNSPacketWriter pw(packet, empty, 1);
9c92ad4b
BH
182 if(canonic)
183 pw.setCanonic(true);
184
7f5bf0ba
BH
185 if(lowerCase)
186 pw.setLowercase(true);
187
5a1f298f 188 pw.startRecord(qname, this->getType());
ea634573
BH
189 this->toPacket(pw);
190 pw.commit();
191
192 string record;
193 pw.getRecords(record);
194 return record;
195 }
196
561434a6 197 static shared_ptr<DNSRecordContent> unserialize(const DNSName& qname, uint16_t qtype, const string& serialized);
ff6a1e7b 198
2770fad0
BH
199 void doRecordCheck(const struct DNSRecord&){}
200
7fc69fd0 201 typedef DNSRecordContent* makerfunc_t(const struct DNSRecord& dr, PacketReader& pr);
6c0670c3
BH
202 typedef DNSRecordContent* zmakerfunc_t(const string& str);
203
204 static void regist(uint16_t cl, uint16_t ty, makerfunc_t* f, zmakerfunc_t* z, const char* name)
7fc69fd0 205 {
8a63d3ce 206 if(f)
49a06471 207 getTypemap()[make_pair(cl,ty)]=f;
8a63d3ce 208 if(z)
49a06471 209 getZmakermap()[make_pair(cl,ty)]=z;
8a63d3ce 210
108c321e
BH
211 getT2Namemap().insert(make_pair(make_pair(cl,ty), name));
212 getN2Typemap().insert(make_pair(name, make_pair(cl,ty)));
7fc69fd0
BH
213 }
214
ee1ada80
BH
215 static void unregist(uint16_t cl, uint16_t ty)
216 {
217 pair<uint16_t, uint16_t> key=make_pair(cl, ty);
218 getTypemap().erase(key);
219 getZmakermap().erase(key);
220 }
221
7fc69fd0
BH
222 static uint16_t TypeToNumber(const string& name)
223 {
e1469cfc 224 n2typemap_t::const_iterator iter = getN2Typemap().find(toUpper(name));
108c321e 225 if(iter != getN2Typemap().end())
274e6aae
BH
226 return iter->second.second;
227
f6209eaf 228 if(boost::starts_with(name, "TYPE") || boost::starts_with(name, "type"))
a683e8bd 229 return (uint16_t) pdns_stou(name.substr(4));
274e6aae 230
7fc69fd0 231 throw runtime_error("Unknown DNS type '"+name+"'");
7fc69fd0
BH
232 }
233
57e5f5f7 234 static const string NumberToType(uint16_t num, uint16_t classnum=1)
7fc69fd0 235 {
108c321e
BH
236 t2namemap_t::const_iterator iter = getT2Namemap().find(make_pair(classnum, num));
237 if(iter == getT2Namemap().end())
335da0ba
AT
238 return "TYPE" + std::to_string(num);
239 // throw runtime_error("Unknown DNS type with numerical id "+std::to_string(num));
274e6aae 240 return iter->second;
7fc69fd0
BH
241 }
242
5a1f298f 243 virtual uint16_t getType() const = 0;
7fc69fd0 244
ea634573 245protected:
092f210a 246 typedef std::map<std::pair<uint16_t, uint16_t>, makerfunc_t* > typemap_t;
6c0670c3 247 typedef std::map<std::pair<uint16_t, uint16_t>, zmakerfunc_t* > zmakermap_t;
108c321e
BH
248 typedef std::map<std::pair<uint16_t, uint16_t>, string > t2namemap_t;
249 typedef std::map<string, std::pair<uint16_t, uint16_t> > n2typemap_t;
49a06471 250 static typemap_t& getTypemap();
108c321e
BH
251 static t2namemap_t& getT2Namemap();
252 static n2typemap_t& getN2Typemap();
49a06471 253 static zmakermap_t& getZmakermap();
ff6a1e7b
BH
254};
255
256struct DNSRecord
257{
748fc8db
AT
258 DNSRecord() {
259 d_type = 0;
260 d_class = QClass::IN;
261 d_ttl = 0;
262 d_clen = 0;
263 d_place = DNSResourceRecord::ANSWER;
264 }
fbe23591 265 explicit DNSRecord(const DNSResourceRecord& rr);
f809c028 266 DNSName d_name;
249fb4c2 267 std::shared_ptr<DNSRecordContent> d_content;
092f210a
BH
268 uint16_t d_type;
269 uint16_t d_class;
270 uint32_t d_ttl;
271 uint16_t d_clen;
e693ff5a 272 DNSResourceRecord::Place d_place;
9a450843
BH
273
274 bool operator<(const DNSRecord& rhs) const
275 {
2dcd140a 276 if(tie(d_name, d_type, d_class, d_ttl) < tie(rhs.d_name, rhs.d_type, rhs.d_class, rhs.d_ttl))
2caf4671 277 return true;
278
2dcd140a 279 if(tie(d_name, d_type, d_class, d_ttl) != tie(rhs.d_name, rhs.d_type, rhs.d_class, rhs.d_ttl))
2caf4671 280 return false;
281
9a450843
BH
282 string lzrp, rzrp;
283 if(d_content)
5716fab3 284 lzrp=toLower(d_content->getZoneRepresentation());
9a450843 285 if(rhs.d_content)
5716fab3 286 rzrp=toLower(rhs.d_content->getZoneRepresentation());
9a450843 287
2caf4671 288 return lzrp < rzrp;
9a450843
BH
289 }
290
23721d33 291 // this orders in canonical order and keeps the SOA record on top
292 static bool prettyCompare(const DNSRecord& a, const DNSRecord& b)
293 {
294 auto aType = (a.d_type == QType::SOA) ? 0 : a.d_type;
295 auto bType = (b.d_type == QType::SOA) ? 0 : b.d_type;
296
297 if(a.d_name.canonCompare(b.d_name))
298 return true;
299 if(b.d_name.canonCompare(a.d_name))
300 return false;
301
302 if(tie(aType, a.d_class, a.d_ttl) < tie(bType, b.d_class, b.d_ttl))
303 return true;
304
305 if(tie(aType, a.d_class, a.d_ttl) != tie(bType, b.d_class, b.d_ttl))
306 return false;
307
308 string lzrp, rzrp;
309 if(a.d_content)
310 lzrp=toLower(a.d_content->getZoneRepresentation());
311 if(b.d_content)
312 rzrp=toLower(b.d_content->getZoneRepresentation());
313
314 return lzrp < rzrp;
315 }
316
317
9a450843
BH
318 bool operator==(const DNSRecord& rhs) const
319 {
320 string lzrp, rzrp;
321 if(d_content)
5716fab3 322 lzrp=toLower(d_content->getZoneRepresentation());
9a450843 323 if(rhs.d_content)
5716fab3
BH
324 rzrp=toLower(rhs.d_content->getZoneRepresentation());
325
f809c028 326 string llabel=toLower(d_name.toString());
327 string rlabel=toLower(rhs.d_name.toString());
9a450843
BH
328
329 return
5716fab3
BH
330 tie(llabel, d_type, d_class, lzrp) ==
331 tie(rlabel, rhs.d_type, rhs.d_class, rzrp);
9a450843 332 }
ff6a1e7b
BH
333};
334
6c0670c3 335//! This class can be used to parse incoming packets, and is copyable
57e5f5f7 336class MOADNSParser : public boost::noncopyable
ff6a1e7b
BH
337{
338public:
6c0670c3 339 //! Parse from a string
57e5f5f7 340 MOADNSParser(const string& buffer) : d_tsigPos(0)
ff6a1e7b 341 {
705f31ae 342 init(buffer.c_str(), (unsigned int)buffer.size());
ff6a1e7b
BH
343 }
344
6c0670c3 345 //! Parse from a pointer and length
57e5f5f7 346 MOADNSParser(const char *packet, unsigned int len) : d_tsigPos(0)
ff6a1e7b
BH
347 {
348 init(packet, len);
349 }
6c0670c3 350
561434a6 351 DNSName d_qname;
092f210a 352 uint16_t d_qclass, d_qtype;
e2ab3f63 353 //uint8_t d_rcode;
46443f87 354 dnsheader d_header;
ff6a1e7b
BH
355
356 typedef vector<pair<DNSRecord, uint16_t > > answers_t;
6c0670c3
BH
357
358 //! All answers contained in this packet
ff6a1e7b
BH
359 answers_t d_answers;
360
361 shared_ptr<PacketReader> getPacketReader(uint16_t offset)
362 {
363 shared_ptr<PacketReader> pr(new PacketReader(d_content));
364 pr->d_pos=offset;
365 return pr;
366 }
6c0670c3 367
57e5f5f7
BH
368 uint16_t getTSIGPos()
369 {
370 return d_tsigPos;
371 }
ff6a1e7b
BH
372private:
373 void getDnsrecordheader(struct dnsrecordheader &ah);
374 void init(const char *packet, unsigned int len);
375 vector<uint8_t> d_content;
57e5f5f7 376 uint16_t d_tsigPos;
ff6a1e7b
BH
377};
378
7127879f 379string simpleCompress(const string& label, const string& root="");
886e2cf2 380void ageDNSPacket(char* packet, size_t length, uint32_t seconds);
2c73e580 381void ageDNSPacket(std::string& packet, uint32_t seconds);
0766890a 382uint32_t getDNSPacketMinTTL(const char* packet, size_t length);
55baa1f2
RG
383uint32_t getDNSPacketLength(const char* packet, size_t length);
384uint16_t getRecordsOfTypeCount(const char* packet, size_t length, uint8_t section, uint16_t type);
a1d0d0e6 385
386template<typename T>
387std::shared_ptr<T> getRR(const DNSRecord& dr)
388{
389 return std::dynamic_pointer_cast<T>(dr.d_content);
390}
391
ff6a1e7b 392#endif