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
|
/*
* 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.
*/
#ifndef DNSPARSER_HH
#define DNSPARSER_HH
#include <map>
#include <sstream>
#include <stdexcept>
#include <iostream>
#include <vector>
#include <errno.h>
// #include <netinet/in.h>
#include "misc.hh"
#include <boost/tuple/tuple.hpp>
#include <boost/tuple/tuple_comparison.hpp>
#include "dns.hh"
#include "dnswriter.hh"
#include "dnsname.hh"
#include "pdnsexception.hh"
/** DNS records have three representations:
1) in the packet
2) parsed in a class, ready for use
3) in the zone
We should implement bidirectional transitions between 1&2 and 2&3.
Currently we have: 1 -> 2
2 -> 3
We can add: 2 -> 1 easily by reversing the packetwriter
And we might be able to reverse 2 -> 3 as well
*/
#include "namespaces.hh"
#include "namespaces.hh"
class MOADNSException : public runtime_error
{
public:
MOADNSException(const string& str) : runtime_error(str)
{}
};
class MOADNSParser;
class PacketReader
{
public:
PacketReader(const vector<uint8_t>& content)
: d_pos(0), d_startrecordpos(0), d_content(content)
{
if(content.size() > std::numeric_limits<uint16_t>::max())
throw std::out_of_range("packet too large");
d_recordlen = (uint16_t) content.size();
not_used = 0;
}
uint32_t get32BitInt();
uint16_t get16BitInt();
uint8_t get8BitInt();
void xfr48BitInt(uint64_t& val);
void xfr32BitInt(uint32_t& val)
{
val=get32BitInt();
}
void xfrIP(uint32_t& val)
{
xfr32BitInt(val);
val=htonl(val);
}
void xfrIP6(std::string &val) {
xfrBlob(val, 16);
}
void xfrTime(uint32_t& val)
{
xfr32BitInt(val);
}
void xfr16BitInt(uint16_t& val)
{
val=get16BitInt();
}
void xfrType(uint16_t& val)
{
xfr16BitInt(val);
}
void xfr8BitInt(uint8_t& val)
{
val=get8BitInt();
}
void xfrName(DNSName &name, bool compress=false, bool noDot=false)
{
name=getName();
}
void xfrText(string &text, bool multi=false, bool lenField=true)
{
text=getText(multi, lenField);
}
void xfrUnquotedText(string &text, bool lenField){
text=getUnquotedText(lenField);
}
void xfrBlob(string& blob);
void xfrBlobNoSpaces(string& blob, int len);
void xfrBlob(string& blob, int length);
void xfrHexBlob(string& blob, bool keepReading=false);
static uint16_t get16BitInt(const vector<unsigned char>&content, uint16_t& pos);
void getDnsrecordheader(struct dnsrecordheader &ah);
void copyRecord(vector<unsigned char>& dest, uint16_t len);
void copyRecord(unsigned char* dest, uint16_t len);
DNSName getName();
string getText(bool multi, bool lenField);
string getUnquotedText(bool lenField);
uint16_t d_pos;
bool eof() { return true; };
private:
uint16_t d_startrecordpos; // needed for getBlob later on
uint16_t d_recordlen; // ditto
uint16_t not_used; // Alighns the whole class on 8-byte boundries
const vector<uint8_t>& d_content;
};
struct DNSRecord;
class DNSRecordContent
{
public:
static DNSRecordContent* mastermake(const DNSRecord &dr, PacketReader& pr);
static DNSRecordContent* mastermake(const DNSRecord &dr, PacketReader& pr, uint16_t opcode);
static DNSRecordContent* mastermake(uint16_t qtype, uint16_t qclass, const string& zone);
static std::unique_ptr<DNSRecordContent> makeunique(uint16_t qtype, uint16_t qclass, const string& content);
virtual std::string getZoneRepresentation(bool noDot=false) const = 0;
virtual ~DNSRecordContent() {}
virtual void toPacket(DNSPacketWriter& pw)=0;
virtual string serialize(const DNSName& qname, bool canonic=false, bool lowerCase=false) // it would rock if this were const, but it is too hard
{
vector<uint8_t> packet;
DNSName empty;
DNSPacketWriter pw(packet, empty, 1);
if(canonic)
pw.setCanonic(true);
if(lowerCase)
pw.setLowercase(true);
pw.startRecord(qname, this->getType());
this->toPacket(pw);
pw.commit();
string record;
pw.getRecords(record);
return record;
}
static shared_ptr<DNSRecordContent> unserialize(const DNSName& qname, uint16_t qtype, const string& serialized);
void doRecordCheck(const struct DNSRecord&){}
typedef DNSRecordContent* makerfunc_t(const struct DNSRecord& dr, PacketReader& pr);
typedef DNSRecordContent* zmakerfunc_t(const string& str);
static void regist(uint16_t cl, uint16_t ty, makerfunc_t* f, zmakerfunc_t* z, const char* name)
{
if(f)
getTypemap()[make_pair(cl,ty)]=f;
if(z)
getZmakermap()[make_pair(cl,ty)]=z;
getT2Namemap().insert(make_pair(make_pair(cl,ty), name));
getN2Typemap().insert(make_pair(name, make_pair(cl,ty)));
}
static void unregist(uint16_t cl, uint16_t ty)
{
pair<uint16_t, uint16_t> key=make_pair(cl, ty);
getTypemap().erase(key);
getZmakermap().erase(key);
}
static uint16_t TypeToNumber(const string& name)
{
n2typemap_t::const_iterator iter = getN2Typemap().find(toUpper(name));
if(iter != getN2Typemap().end())
return iter->second.second;
if(boost::starts_with(name, "TYPE") || boost::starts_with(name, "type"))
return (uint16_t) pdns_stou(name.substr(4));
throw runtime_error("Unknown DNS type '"+name+"'");
}
static const string NumberToType(uint16_t num, uint16_t classnum=1)
{
t2namemap_t::const_iterator iter = getT2Namemap().find(make_pair(classnum, num));
if(iter == getT2Namemap().end())
return "TYPE" + std::to_string(num);
// throw runtime_error("Unknown DNS type with numerical id "+std::to_string(num));
return iter->second;
}
virtual uint16_t getType() const = 0;
protected:
typedef std::map<std::pair<uint16_t, uint16_t>, makerfunc_t* > typemap_t;
typedef std::map<std::pair<uint16_t, uint16_t>, zmakerfunc_t* > zmakermap_t;
typedef std::map<std::pair<uint16_t, uint16_t>, string > t2namemap_t;
typedef std::map<string, std::pair<uint16_t, uint16_t> > n2typemap_t;
static typemap_t& getTypemap();
static t2namemap_t& getT2Namemap();
static n2typemap_t& getN2Typemap();
static zmakermap_t& getZmakermap();
};
struct DNSRecord
{
DNSRecord() {
d_type = 0;
d_class = QClass::IN;
d_ttl = 0;
d_clen = 0;
d_place = DNSResourceRecord::ANSWER;
}
explicit DNSRecord(const DNSResourceRecord& rr);
DNSName d_name;
std::shared_ptr<DNSRecordContent> d_content;
uint16_t d_type;
uint16_t d_class;
uint32_t d_ttl;
uint16_t d_clen;
DNSResourceRecord::Place d_place;
bool operator<(const DNSRecord& rhs) const
{
if(tie(d_name, d_type, d_class, d_ttl) < tie(rhs.d_name, rhs.d_type, rhs.d_class, rhs.d_ttl))
return true;
if(tie(d_name, d_type, d_class, d_ttl) != tie(rhs.d_name, rhs.d_type, rhs.d_class, rhs.d_ttl))
return false;
string lzrp, rzrp;
if(d_content)
lzrp=toLower(d_content->getZoneRepresentation());
if(rhs.d_content)
rzrp=toLower(rhs.d_content->getZoneRepresentation());
return lzrp < rzrp;
}
// this orders in canonical order and keeps the SOA record on top
static bool prettyCompare(const DNSRecord& a, const DNSRecord& b)
{
auto aType = (a.d_type == QType::SOA) ? 0 : a.d_type;
auto bType = (b.d_type == QType::SOA) ? 0 : b.d_type;
if(a.d_name.canonCompare(b.d_name))
return true;
if(b.d_name.canonCompare(a.d_name))
return false;
if(tie(aType, a.d_class, a.d_ttl) < tie(bType, b.d_class, b.d_ttl))
return true;
if(tie(aType, a.d_class, a.d_ttl) != tie(bType, b.d_class, b.d_ttl))
return false;
string lzrp, rzrp;
if(a.d_content)
lzrp=toLower(a.d_content->getZoneRepresentation());
if(b.d_content)
rzrp=toLower(b.d_content->getZoneRepresentation());
return lzrp < rzrp;
}
bool operator==(const DNSRecord& rhs) const
{
string lzrp, rzrp;
if(d_content)
lzrp=toLower(d_content->getZoneRepresentation());
if(rhs.d_content)
rzrp=toLower(rhs.d_content->getZoneRepresentation());
string llabel=toLower(d_name.toString());
string rlabel=toLower(rhs.d_name.toString());
return
tie(llabel, d_type, d_class, lzrp) ==
tie(rlabel, rhs.d_type, rhs.d_class, rzrp);
}
};
//! This class can be used to parse incoming packets, and is copyable
class MOADNSParser : public boost::noncopyable
{
public:
//! Parse from a string
MOADNSParser(bool query, const string& buffer) : d_tsigPos(0)
{
init(query, buffer.c_str(), (unsigned int)buffer.size());
}
//! Parse from a pointer and length
MOADNSParser(bool query, const char *packet, unsigned int len) : d_tsigPos(0)
{
init(query, packet, len);
}
DNSName d_qname;
uint16_t d_qclass, d_qtype;
//uint8_t d_rcode;
dnsheader d_header;
typedef vector<pair<DNSRecord, uint16_t > > answers_t;
//! All answers contained in this packet
answers_t d_answers;
shared_ptr<PacketReader> getPacketReader(uint16_t offset)
{
shared_ptr<PacketReader> pr(new PacketReader(d_content));
pr->d_pos=offset;
return pr;
}
uint16_t getTSIGPos() const
{
return d_tsigPos;
}
private:
void getDnsrecordheader(struct dnsrecordheader &ah);
void init(bool query, const char *packet, unsigned int len);
vector<uint8_t> d_content;
uint16_t d_tsigPos;
};
string simpleCompress(const string& label, const string& root="");
void ageDNSPacket(char* packet, size_t length, uint32_t seconds);
void ageDNSPacket(std::string& packet, uint32_t seconds);
uint32_t getDNSPacketMinTTL(const char* packet, size_t length);
uint32_t getDNSPacketLength(const char* packet, size_t length);
uint16_t getRecordsOfTypeCount(const char* packet, size_t length, uint8_t section, uint16_t type);
template<typename T>
std::shared_ptr<T> getRR(const DNSRecord& dr)
{
return std::dynamic_pointer_cast<T>(dr.d_content);
}
#endif
|