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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
|
/*
* 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.
*/
#include "dnsparser.hh"
#include "dnswriter.hh"
#include <boost/algorithm/string.hpp>
#include <boost/format.hpp>
#include "namespaces.hh"
class UnknownRecordContent : public DNSRecordContent
{
public:
UnknownRecordContent(const DNSRecord& dr, PacketReader& pr)
: d_dr(dr)
{
pr.copyRecord(d_record, dr.d_clen);
}
UnknownRecordContent(const string& zone)
{
// parse the input
vector<string> parts;
stringtok(parts, zone);
if(parts.size()!=3 && !(parts.size()==2 && equals(parts[1],"0")) )
throw MOADNSException("Unknown record was stored incorrectly, need 3 fields, got "+std::to_string(parts.size())+": "+zone );
const string& relevant=(parts.size() > 2) ? parts[2] : "";
unsigned int total=pdns_stou(parts[1]);
if(relevant.size()!=2*total)
throw MOADNSException((boost::format("invalid unknown record length for label %s: size not equal to length field (%d != %d)") % d_dr.d_name.toString() % relevant.size() % (2*total)).str());
string out;
out.reserve(total+1);
for(unsigned int n=0; n < total; ++n) {
int c;
sscanf(relevant.c_str()+2*n, "%02x", &c);
out.append(1, (char)c);
}
d_record.insert(d_record.end(), out.begin(), out.end());
}
string getZoneRepresentation(bool noDot) const override
{
ostringstream str;
str<<"\\# "<<(unsigned int)d_record.size()<<" ";
char hex[4];
for(size_t n=0; n<d_record.size(); ++n) {
snprintf(hex,sizeof(hex)-1, "%02x", d_record.at(n));
str << hex;
}
return str.str();
}
void toPacket(DNSPacketWriter& pw) override
{
pw.xfrBlob(string(d_record.begin(),d_record.end()));
}
uint16_t getType() const override
{
return d_dr.d_type;
}
private:
DNSRecord d_dr;
vector<uint8_t> d_record;
};
shared_ptr<DNSRecordContent> DNSRecordContent::unserialize(const DNSName& qname, uint16_t qtype, const string& serialized)
{
dnsheader dnsheader;
memset(&dnsheader, 0, sizeof(dnsheader));
dnsheader.qdcount=htons(1);
dnsheader.ancount=htons(1);
vector<uint8_t> packet; // build pseudo packet
/* will look like: dnsheader, 5 bytes, encoded qname, dns record header, serialized data */
string encoded=qname.toDNSString();
packet.resize(sizeof(dnsheader) + 5 + encoded.size() + sizeof(struct dnsrecordheader) + serialized.size());
uint16_t pos=0;
memcpy(&packet[0], &dnsheader, sizeof(dnsheader)); pos+=sizeof(dnsheader);
char tmp[6]="\x0" "\x0\x1" "\x0\x1"; // root question for ns_t_a
memcpy(&packet[pos], &tmp, 5); pos+=5;
memcpy(&packet[pos], encoded.c_str(), encoded.size()); pos+=(uint16_t)encoded.size();
struct dnsrecordheader drh;
drh.d_type=htons(qtype);
drh.d_class=htons(1);
drh.d_ttl=0;
drh.d_clen=htons(serialized.size());
memcpy(&packet[pos], &drh, sizeof(drh)); pos+=sizeof(drh);
memcpy(&packet[pos], serialized.c_str(), serialized.size()); pos+=(uint16_t)serialized.size();
MOADNSParser mdp(false, (char*)&*packet.begin(), (unsigned int)packet.size());
shared_ptr<DNSRecordContent> ret= mdp.d_answers.begin()->first.d_content;
return ret;
}
DNSRecordContent* DNSRecordContent::mastermake(const DNSRecord &dr,
PacketReader& pr)
{
uint16_t searchclass = (dr.d_type == QType::OPT) ? 1 : dr.d_class; // class is invalid for OPT
typemap_t::const_iterator i=getTypemap().find(make_pair(searchclass, dr.d_type));
if(i==getTypemap().end() || !i->second) {
return new UnknownRecordContent(dr, pr);
}
return i->second(dr, pr);
}
DNSRecordContent* DNSRecordContent::mastermake(uint16_t qtype, uint16_t qclass,
const string& content)
{
zmakermap_t::const_iterator i=getZmakermap().find(make_pair(qclass, qtype));
if(i==getZmakermap().end()) {
return new UnknownRecordContent(content);
}
return i->second(content);
}
std::unique_ptr<DNSRecordContent> DNSRecordContent::makeunique(uint16_t qtype, uint16_t qclass,
const string& content)
{
zmakermap_t::const_iterator i=getZmakermap().find(make_pair(qclass, qtype));
if(i==getZmakermap().end()) {
return std::unique_ptr<DNSRecordContent>(new UnknownRecordContent(content));
}
return std::unique_ptr<DNSRecordContent>(i->second(content));
}
DNSRecordContent* DNSRecordContent::mastermake(const DNSRecord &dr, PacketReader& pr, uint16_t oc) {
// For opcode UPDATE and where the DNSRecord is an answer record, we don't care about content, because this is
// not used within the prerequisite section of RFC2136, so - we can simply use unknownrecordcontent.
// For section 3.2.3, we do need content so we need to get it properly. But only for the correct Qclasses.
if (oc == Opcode::Update && dr.d_place == DNSResourceRecord::ANSWER && dr.d_class != 1)
return new UnknownRecordContent(dr, pr);
uint16_t searchclass = (dr.d_type == QType::OPT) ? 1 : dr.d_class; // class is invalid for OPT
typemap_t::const_iterator i=getTypemap().find(make_pair(searchclass, dr.d_type));
if(i==getTypemap().end() || !i->second) {
return new UnknownRecordContent(dr, pr);
}
return i->second(dr, pr);
}
DNSRecordContent::typemap_t& DNSRecordContent::getTypemap()
{
static DNSRecordContent::typemap_t typemap;
return typemap;
}
DNSRecordContent::n2typemap_t& DNSRecordContent::getN2Typemap()
{
static DNSRecordContent::n2typemap_t n2typemap;
return n2typemap;
}
DNSRecordContent::t2namemap_t& DNSRecordContent::getT2Namemap()
{
static DNSRecordContent::t2namemap_t t2namemap;
return t2namemap;
}
DNSRecordContent::zmakermap_t& DNSRecordContent::getZmakermap()
{
static DNSRecordContent::zmakermap_t zmakermap;
return zmakermap;
}
DNSRecord::DNSRecord(const DNSResourceRecord& rr)
{
d_name = rr.qname;
d_type = rr.qtype.getCode();
d_ttl = rr.ttl;
d_class = rr.qclass;
d_place = rr.d_place;
d_clen = 0;
d_content = std::shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(d_type, rr.qclass, rr.content));
}
void MOADNSParser::init(bool query, const char *packet, unsigned int len)
{
if(len < sizeof(dnsheader))
throw MOADNSException("Packet shorter than minimal header");
memcpy(&d_header, packet, sizeof(dnsheader));
if(d_header.opcode != Opcode::Query && d_header.opcode != Opcode::Notify && d_header.opcode != Opcode::Update)
throw MOADNSException("Can't parse non-query packet with opcode="+ std::to_string(d_header.opcode));
d_header.qdcount=ntohs(d_header.qdcount);
d_header.ancount=ntohs(d_header.ancount);
d_header.nscount=ntohs(d_header.nscount);
d_header.arcount=ntohs(d_header.arcount);
if (query && (d_header.qdcount > 1))
throw MOADNSException("Query with QD > 1 ("+std::to_string(d_header.qdcount)+")");
uint16_t contentlen=len-sizeof(dnsheader);
d_content.resize(contentlen);
copy(packet+sizeof(dnsheader), packet+len, d_content.begin());
unsigned int n=0;
PacketReader pr(d_content);
bool validPacket=false;
try {
d_qtype = d_qclass = 0; // sometimes replies come in with no question, don't present garbage then
for(n=0;n < d_header.qdcount; ++n) {
d_qname=pr.getName();
d_qtype=pr.get16BitInt();
d_qclass=pr.get16BitInt();
}
struct dnsrecordheader ah;
vector<unsigned char> record;
validPacket=true;
d_answers.reserve((unsigned int)(d_header.ancount + d_header.nscount + d_header.arcount));
for(n=0;n < (unsigned int)(d_header.ancount + d_header.nscount + d_header.arcount); ++n) {
DNSRecord dr;
if(n < d_header.ancount)
dr.d_place=DNSResourceRecord::ANSWER;
else if(n < d_header.ancount + d_header.nscount)
dr.d_place=DNSResourceRecord::AUTHORITY;
else
dr.d_place=DNSResourceRecord::ADDITIONAL;
unsigned int recordStartPos=pr.d_pos;
DNSName name=pr.getName();
pr.getDnsrecordheader(ah);
dr.d_ttl=ah.d_ttl;
dr.d_type=ah.d_type;
dr.d_class=ah.d_class;
dr.d_name=name;
dr.d_clen=ah.d_clen;
if (query && (dr.d_place == DNSResourceRecord::ANSWER || dr.d_place == DNSResourceRecord::AUTHORITY || (dr.d_type != QType::OPT && dr.d_type != QType::TSIG && dr.d_type != QType::SIG && dr.d_type != QType::TKEY) || ((dr.d_type == QType::TSIG || dr.d_type == QType::SIG || dr.d_type == QType::TKEY) && dr.d_class != QClass::ANY))) {
// cerr<<"discarding RR, query is "<<query<<", place is "<<dr.d_place<<", type is "<<dr.d_type<<", class is "<<dr.d_class<<endl;
dr.d_content=std::shared_ptr<DNSRecordContent>(new UnknownRecordContent(dr, pr));
}
else {
// cerr<<"parsing RR, query is "<<query<<", place is "<<dr.d_place<<", type is "<<dr.d_type<<", class is "<<dr.d_class<<endl;
dr.d_content=std::shared_ptr<DNSRecordContent>(DNSRecordContent::mastermake(dr, pr, d_header.opcode));
}
d_answers.push_back(make_pair(dr, pr.d_pos));
if(dr.d_type == QType::TSIG && dr.d_class == QClass::ANY) {
if(dr.d_place != DNSResourceRecord::ADDITIONAL || n != (unsigned int)(d_header.ancount + d_header.nscount + d_header.arcount) - 1) {
throw MOADNSException("Packet ("+d_qname.toString()+"|#"+std::to_string(d_qtype)+") has a TSIG record in an invalid position.");
}
d_tsigPos = recordStartPos + sizeof(struct dnsheader);
}
}
#if 0
if(pr.d_pos!=contentlen) {
throw MOADNSException("Packet ("+d_qname+"|#"+std::to_string(d_qtype)+") has trailing garbage ("+ std::to_string(pr.d_pos) + " < " +
std::to_string(contentlen) + ")");
}
#endif
}
catch(std::out_of_range &re) {
if(validPacket && d_header.tc) { // don't sweat it over truncated packets, but do adjust an, ns and arcount
if(n < d_header.ancount) {
d_header.ancount=n; d_header.nscount = d_header.arcount = 0;
}
else if(n < d_header.ancount + d_header.nscount) {
d_header.nscount = n - d_header.ancount; d_header.arcount=0;
}
else {
d_header.arcount = n - d_header.ancount - d_header.nscount;
}
}
else {
throw MOADNSException("Error parsing packet of "+std::to_string(len)+" bytes (rd="+
std::to_string(d_header.rd)+
"), out of bounds: "+string(re.what()));
}
}
}
void PacketReader::getDnsrecordheader(struct dnsrecordheader &ah)
{
unsigned int n;
unsigned char *p=reinterpret_cast<unsigned char*>(&ah);
for(n=0; n < sizeof(dnsrecordheader); ++n)
p[n]=d_content.at(d_pos++);
ah.d_type=ntohs(ah.d_type);
ah.d_class=ntohs(ah.d_class);
ah.d_clen=ntohs(ah.d_clen);
ah.d_ttl=ntohl(ah.d_ttl);
d_startrecordpos=d_pos; // needed for getBlob later on
d_recordlen=ah.d_clen;
}
void PacketReader::copyRecord(vector<unsigned char>& dest, uint16_t len)
{
dest.resize(len);
if(!len)
return;
for(uint16_t n=0;n<len;++n) {
dest.at(n)=d_content.at(d_pos++);
}
}
void PacketReader::copyRecord(unsigned char* dest, uint16_t len)
{
if(d_pos + len > d_content.size())
throw std::out_of_range("Attempt to copy outside of packet");
memcpy(dest, &d_content.at(d_pos), len);
d_pos+=len;
}
void PacketReader::xfr48BitInt(uint64_t& ret)
{
ret=0;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
}
uint32_t PacketReader::get32BitInt()
{
uint32_t ret=0;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
ret<<=8;
ret+=d_content.at(d_pos++);
return ret;
}
uint16_t PacketReader::get16BitInt()
{
return get16BitInt(d_content, d_pos);
}
uint16_t PacketReader::get16BitInt(const vector<unsigned char>&content, uint16_t& pos)
{
uint16_t ret=0;
ret+=content.at(pos++);
ret<<=8;
ret+=content.at(pos++);
return ret;
}
uint8_t PacketReader::get8BitInt()
{
return d_content.at(d_pos++);
}
DNSName PacketReader::getName()
{
unsigned int consumed;
try {
DNSName dn((const char*) d_content.data() - 12, d_content.size() + 12, d_pos + sizeof(dnsheader), true /* uncompress */, 0 /* qtype */, 0 /* qclass */, &consumed, sizeof(dnsheader));
// the -12 fakery is because we don't have the header in 'd_content', but we do need to get
// the internal offsets to work
d_pos+=consumed;
return dn;
}
catch(std::range_error& re)
{
throw std::out_of_range(string("dnsname issue: ")+re.what());
}
catch(...)
{
throw std::out_of_range("dnsname issue");
}
throw PDNSException("PacketReader::getName(): name is empty");
}
static string txtEscape(const string &name)
{
string ret;
char ebuf[5];
for(string::const_iterator i=name.begin();i!=name.end();++i) {
if((unsigned char) *i > 127 || (unsigned char) *i < 32) {
snprintf(ebuf, sizeof(ebuf), "\\%03u", (unsigned char)*i);
ret += ebuf;
}
else if(*i=='"' || *i=='\\'){
ret += '\\';
ret += *i;
}
else
ret += *i;
}
return ret;
}
// exceptions thrown here do not result in logging in the main pdns auth server - just so you know!
string PacketReader::getText(bool multi, bool lenField)
{
string ret;
ret.reserve(40);
while(d_pos < d_startrecordpos + d_recordlen ) {
if(!ret.empty()) {
ret.append(1,' ');
}
uint16_t labellen;
if(lenField)
labellen=d_content.at(d_pos++);
else
labellen=d_recordlen - (d_pos - d_startrecordpos);
ret.append(1,'"');
if(labellen) { // no need to do anything for an empty string
string val(&d_content.at(d_pos), &d_content.at(d_pos+labellen-1)+1);
ret.append(txtEscape(val)); // the end is one beyond the packet
}
ret.append(1,'"');
d_pos+=labellen;
if(!multi)
break;
}
return ret;
}
string PacketReader::getUnquotedText(bool lenField)
{
int16_t stop_at;
if(lenField)
stop_at = (uint8_t)d_content.at(d_pos) + d_pos + 1;
else
stop_at = d_recordlen;
if(stop_at == d_pos)
return "";
d_pos++;
string ret(&d_content.at(d_pos), &d_content.at(stop_at));
d_pos = stop_at;
return ret;
}
void PacketReader::xfrBlob(string& blob)
try
{
if(d_recordlen && !(d_pos == (d_startrecordpos + d_recordlen)))
blob.assign(&d_content.at(d_pos), &d_content.at(d_startrecordpos + d_recordlen - 1 ) + 1);
else
blob.clear();
d_pos = d_startrecordpos + d_recordlen;
}
catch(...)
{
throw std::out_of_range("xfrBlob out of range");
}
void PacketReader::xfrBlobNoSpaces(string& blob, int length) {
xfrBlob(blob, length);
}
void PacketReader::xfrBlob(string& blob, int length)
{
if(length) {
blob.assign(&d_content.at(d_pos), &d_content.at(d_pos + length - 1 ) + 1 );
d_pos += length;
}
else
blob.clear();
}
void PacketReader::xfrHexBlob(string& blob, bool keepReading)
{
xfrBlob(blob);
}
//FIXME400 remove this method completely
string simpleCompress(const string& elabel, const string& root)
{
string label=elabel;
// FIXME400: this relies on the semi-canonical escaped output from getName
if(strchr(label.c_str(), '\\')) {
boost::replace_all(label, "\\.", ".");
boost::replace_all(label, "\\032", " ");
boost::replace_all(label, "\\\\", "\\");
}
typedef vector<pair<unsigned int, unsigned int> > parts_t;
parts_t parts;
vstringtok(parts, label, ".");
string ret;
ret.reserve(label.size()+4);
for(parts_t::const_iterator i=parts.begin(); i!=parts.end(); ++i) {
if(!root.empty() && !strncasecmp(root.c_str(), label.c_str() + i->first, 1 + label.length() - i->first)) { // also match trailing 0, hence '1 +'
const unsigned char rootptr[2]={0xc0,0x11};
ret.append((const char *) rootptr, 2);
return ret;
}
ret.append(1, (char)(i->second - i->first));
ret.append(label.c_str() + i->first, i->second - i->first);
}
ret.append(1, (char)0);
return ret;
}
/** Simple DNSPacketMangler. Ritual is: get a pointer into the packet and moveOffset() to beyond your needs
* If you survive that, feel free to read from the pointer */
class DNSPacketMangler
{
public:
explicit DNSPacketMangler(std::string& packet)
: d_packet((char*) packet.c_str()), d_length(packet.length()), d_notyouroffset(12), d_offset(d_notyouroffset)
{}
DNSPacketMangler(char* packet, size_t length)
: d_packet(packet), d_length(length), d_notyouroffset(12), d_offset(d_notyouroffset)
{}
void skipLabel()
{
uint8_t len;
while((len=get8BitInt())) {
if(len >= 0xc0) { // extended label
get8BitInt();
return;
}
skipBytes(len);
}
}
void skipBytes(uint16_t bytes)
{
moveOffset(bytes);
}
uint32_t get32BitInt()
{
const char* p = d_packet + d_offset;
moveOffset(4);
uint32_t ret;
memcpy(&ret, (void*)p, sizeof(ret));
return ntohl(ret);
}
uint16_t get16BitInt()
{
const char* p = d_packet + d_offset;
moveOffset(2);
uint16_t ret;
memcpy(&ret, (void*)p, sizeof(ret));
return ntohs(ret);
}
uint8_t get8BitInt()
{
const char* p = d_packet + d_offset;
moveOffset(1);
return *p;
}
void skipRData()
{
int toskip = get16BitInt();
moveOffset(toskip);
}
void decreaseAndSkip32BitInt(uint32_t decrease)
{
const char *p = d_packet + d_offset;
moveOffset(4);
uint32_t tmp;
memcpy(&tmp, (void*) p, sizeof(tmp));
tmp = ntohl(tmp);
tmp-=decrease;
tmp = htonl(tmp);
memcpy(d_packet + d_offset-4, (const char*)&tmp, sizeof(tmp));
}
uint32_t getOffset() const
{
return d_offset;
}
private:
void moveOffset(uint16_t by)
{
d_notyouroffset += by;
if(d_notyouroffset > d_length)
throw std::out_of_range("dns packet out of range: "+std::to_string(d_notyouroffset) +" > "
+ std::to_string(d_length) );
}
char* d_packet;
size_t d_length;
uint32_t d_notyouroffset; // only 'moveOffset' can touch this
const uint32_t& d_offset; // look.. but don't touch
};
// method of operation: silently fail if it doesn't work - we're only trying to be nice, don't fall over on it
void ageDNSPacket(char* packet, size_t length, uint32_t seconds)
{
if(length < sizeof(dnsheader))
return;
try
{
dnsheader dh;
memcpy((void*)&dh, (const dnsheader*)packet, sizeof(dh));
uint64_t numrecords = ntohs(dh.ancount) + ntohs(dh.nscount) + ntohs(dh.arcount);
DNSPacketMangler dpm(packet, length);
uint64_t n;
for(n=0; n < ntohs(dh.qdcount) ; ++n) {
dpm.skipLabel();
/* type and class */
dpm.skipBytes(4);
}
// cerr<<"Skipped "<<n<<" questions, now parsing "<<numrecords<<" records"<<endl;
for(n=0; n < numrecords; ++n) {
dpm.skipLabel();
uint16_t dnstype = dpm.get16BitInt();
/* class */
dpm.skipBytes(2);
if(dnstype == QType::OPT) // not aging that one with a stick
break;
dpm.decreaseAndSkip32BitInt(seconds);
dpm.skipRData();
}
}
catch(...)
{
return;
}
}
void ageDNSPacket(std::string& packet, uint32_t seconds)
{
ageDNSPacket((char*)packet.c_str(), packet.length(), seconds);
}
uint32_t getDNSPacketMinTTL(const char* packet, size_t length)
{
uint32_t result = std::numeric_limits<uint32_t>::max();
if(length < sizeof(dnsheader)) {
return result;
}
try
{
const dnsheader* dh = (const dnsheader*) packet;
DNSPacketMangler dpm(const_cast<char*>(packet), length);
const uint16_t qdcount = ntohs(dh->qdcount);
for(size_t n = 0; n < qdcount; ++n) {
dpm.skipLabel();
/* type and class */
dpm.skipBytes(4);
}
const size_t numrecords = ntohs(dh->ancount) + ntohs(dh->nscount) + ntohs(dh->arcount);
for(size_t n = 0; n < numrecords; ++n) {
dpm.skipLabel();
const uint16_t dnstype = dpm.get16BitInt();
/* class */
dpm.skipBytes(2);
if(dnstype == QType::OPT)
break;
const uint32_t ttl = dpm.get32BitInt();
if (result > ttl)
result = ttl;
dpm.skipRData();
}
}
catch(...)
{
}
return result;
}
uint32_t getDNSPacketLength(const char* packet, size_t length)
{
uint32_t result = length;
if(length < sizeof(dnsheader)) {
return result;
}
try
{
const dnsheader* dh = (const dnsheader*) packet;
DNSPacketMangler dpm(const_cast<char*>(packet), length);
const uint16_t qdcount = ntohs(dh->qdcount);
for(size_t n = 0; n < qdcount; ++n) {
dpm.skipLabel();
/* type and class */
dpm.skipBytes(4);
}
const size_t numrecords = ntohs(dh->ancount) + ntohs(dh->nscount) + ntohs(dh->arcount);
for(size_t n = 0; n < numrecords; ++n) {
dpm.skipLabel();
/* type (2), class (2) and ttl (4) */
dpm.skipBytes(8);
dpm.skipRData();
}
result = dpm.getOffset();
}
catch(...)
{
}
return result;
}
uint16_t getRecordsOfTypeCount(const char* packet, size_t length, uint8_t section, uint16_t type)
{
uint16_t result = 0;
if(length < sizeof(dnsheader)) {
return result;
}
try
{
const dnsheader* dh = (const dnsheader*) packet;
DNSPacketMangler dpm(const_cast<char*>(packet), length);
const uint16_t qdcount = ntohs(dh->qdcount);
for(size_t n = 0; n < qdcount; ++n) {
dpm.skipLabel();
if (section == 0) {
uint16_t dnstype = dpm.get16BitInt();
if (dnstype == type) {
result++;
}
/* class */
dpm.skipBytes(2);
} else {
/* type and class */
dpm.skipBytes(4);
}
}
const uint16_t ancount = ntohs(dh->ancount);
for(size_t n = 0; n < ancount; ++n) {
dpm.skipLabel();
if (section == 1) {
uint16_t dnstype = dpm.get16BitInt();
if (dnstype == type) {
result++;
}
/* class */
dpm.skipBytes(2);
} else {
/* type and class */
dpm.skipBytes(4);
}
/* ttl */
dpm.skipBytes(4);
dpm.skipRData();
}
const uint16_t nscount = ntohs(dh->nscount);
for(size_t n = 0; n < nscount; ++n) {
dpm.skipLabel();
if (section == 2) {
uint16_t dnstype = dpm.get16BitInt();
if (dnstype == type) {
result++;
}
/* class */
dpm.skipBytes(2);
} else {
/* type and class */
dpm.skipBytes(4);
}
/* ttl */
dpm.skipBytes(4);
dpm.skipRData();
}
const uint16_t arcount = ntohs(dh->arcount);
for(size_t n = 0; n < arcount; ++n) {
dpm.skipLabel();
if (section == 3) {
uint16_t dnstype = dpm.get16BitInt();
if (dnstype == type) {
result++;
}
/* class */
dpm.skipBytes(2);
} else {
/* type and class */
dpm.skipBytes(4);
}
/* ttl */
dpm.skipBytes(4);
dpm.skipRData();
}
}
catch(...)
{
}
return result;
}
|