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
|
/*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dnswriter.hh"
#include "misc.hh"
#include "dnsparser.hh"
#include <limits.h>
DNSPacketWriter::DNSPacketWriter(vector<uint8_t>& content, const DNSName& qname, uint16_t qtype, uint16_t qclass, uint8_t opcode)
: d_pos(0), d_content(content), d_qname(qname), d_canonic(false), d_lowerCase(false)
{
d_content.clear();
dnsheader dnsheader;
memset(&dnsheader, 0, sizeof(dnsheader));
dnsheader.id=0;
dnsheader.qdcount=htons(1);
dnsheader.opcode=opcode;
const uint8_t* ptr=(const uint8_t*)&dnsheader;
uint32_t len=d_content.size();
d_content.resize(len + sizeof(dnsheader));
uint8_t* dptr=(&*d_content.begin()) + len;
memcpy(dptr, ptr, sizeof(dnsheader));
d_stuff=0;
xfrName(qname, false);
len=d_content.size();
d_content.resize(len + d_record.size() + 4);
ptr=&*d_record.begin();
dptr=(&*d_content.begin()) + len;
memcpy(dptr, ptr, d_record.size());
len+=d_record.size();
d_record.clear();
qtype=htons(qtype);
qclass=htons(qclass);
vector<uint8_t>::iterator i=d_content.begin()+len; // this works around a gcc 3.4 bug
memcpy(&*i, &qtype, 2);
i+=2;
memcpy(&*i, &qclass, 2);
d_stuff=0xffff;
d_labelmap.reserve(16);
d_truncatemarker=d_content.size();
d_sor = 0;
d_rollbackmarker = 0;
d_recordttl = 0;
d_recordqtype = 0;
d_recordqclass = QClass::IN;
d_recordplace = DNSResourceRecord::ANSWER;
}
dnsheader* DNSPacketWriter::getHeader()
{
return reinterpret_cast<dnsheader*>(&*d_content.begin());
}
void DNSPacketWriter::startRecord(const DNSName& name, uint16_t qtype, uint32_t ttl, uint16_t qclass, DNSResourceRecord::Place place, bool compress)
{
if(!d_record.empty())
commit();
d_recordqname=name;
d_recordqtype=qtype;
d_recordqclass=qclass;
d_recordttl=ttl;
d_recordplace=place;
d_stuff = 0;
d_rollbackmarker=d_content.size();
if(compress && d_recordqname.countLabels() && d_qname==d_recordqname) { // don't do the whole label compression thing if we *know* we can get away with "see question" - except when compressing the root
static unsigned char marker[2]={0xc0, 0x0c};
d_content.insert(d_content.end(), (const char *) &marker[0], (const char *) &marker[2]);
}
else {
xfrName(d_recordqname, compress);
d_content.insert(d_content.end(), d_record.begin(), d_record.end());
d_record.clear();
}
d_stuff = sizeof(dnsrecordheader); // this is needed to get compressed label offsets right, the dnsrecordheader will be interspersed
d_sor=d_content.size() + d_stuff; // start of real record
}
void DNSPacketWriter::addOpt(uint16_t udpsize, int extRCode, int Z, const vector<pair<uint16_t,string> >& options)
{
uint32_t ttl=0;
EDNS0Record stuff;
stuff.extRCode=extRCode;
stuff.version=0;
stuff.Z=htons(Z);
static_assert(sizeof(EDNS0Record) == sizeof(ttl), "sizeof(EDNS0Record) must match sizeof(ttl)");
memcpy(&ttl, &stuff, sizeof(stuff));
ttl=ntohl(ttl); // will be reversed later on
startRecord(DNSName("."), QType::OPT, ttl, udpsize, DNSResourceRecord::ADDITIONAL, false);
for(optvect_t::const_iterator iter = options.begin(); iter != options.end(); ++iter) {
xfr16BitInt(iter->first);
xfr16BitInt(iter->second.length());
xfrBlob(iter->second);
}
}
void DNSPacketWriter::xfr48BitInt(uint64_t val)
{
unsigned char bytes[6];
uint16_t theLeft = htons((val >> 32)&0xffffU);
uint32_t theRight = htonl(val & 0xffffffffU);
memcpy(bytes, (void*)&theLeft, sizeof(theLeft));
memcpy(bytes+2, (void*)&theRight, sizeof(theRight));
d_record.insert(d_record.end(), bytes, bytes + sizeof(bytes));
}
void DNSPacketWriter::xfr32BitInt(uint32_t val)
{
int rval=htonl(val);
uint8_t* ptr=reinterpret_cast<uint8_t*>(&rval);
d_record.insert(d_record.end(), ptr, ptr+4);
}
void DNSPacketWriter::xfr16BitInt(uint16_t val)
{
uint16_t rval=htons(val);
uint8_t* ptr=reinterpret_cast<uint8_t*>(&rval);
d_record.insert(d_record.end(), ptr, ptr+2);
}
void DNSPacketWriter::xfr8BitInt(uint8_t val)
{
d_record.push_back(val);
}
/* input:
if lenField is true
"" -> 0
"blah" -> 4blah
"blah" "blah" -> output 4blah4blah
"verylongstringlongerthan256....characters" \xffverylongstring\x23characters (autosplit)
"blah\"blah" -> 9blah"blah
"blah\97" -> 5blahb
if lenField is false
"blah" -> blah
"blah\"blah" -> blah"blah
*/
void DNSPacketWriter::xfrText(const string& text, bool, bool lenField)
{
if(text.empty()) {
d_record.push_back(0);
return;
}
vector<string> segments = segmentDNSText(text);
for(const string& str : segments) {
if(lenField)
d_record.push_back(str.length());
d_record.insert(d_record.end(), str.c_str(), str.c_str() + str.length());
}
}
void DNSPacketWriter::xfrUnquotedText(const string& text, bool lenField)
{
if(text.empty()) {
d_record.push_back(0);
return;
}
if(lenField)
d_record.push_back(text.length());
d_record.insert(d_record.end(), text.c_str(), text.c_str() + text.length());
}
/* FIXME400: check that this beats a map */
DNSPacketWriter::lmap_t::iterator find(DNSPacketWriter::lmap_t& nmap, const DNSName& name)
{
DNSPacketWriter::lmap_t::iterator ret;
for(ret=nmap.begin(); ret != nmap.end(); ++ret)
if(ret->first == name)
break;
return ret;
}
// //! tokenize a label into parts, the parts describe a begin offset and an end offset
// bool labeltokUnescape(labelparts_t& parts, const string& label)
// {
// string::size_type epos = label.size(), lpos(0), pos;
// bool unescapedSomething = false;
// const char* ptr=label.c_str();
// parts.clear();
// for(pos = 0 ; pos < epos; ++pos) {
// if(ptr[pos]=='\\') {
// pos++;
// unescapedSomething = true;
// continue;
// }
// if(ptr[pos]=='.') {
// parts.push_back(make_pair(lpos, pos));
// lpos=pos+1;
// }
// }
// if(lpos < pos)
// parts.push_back(make_pair(lpos, pos));
// return unescapedSomething;
// }
// this is the absolute hottest function in the pdns recursor
void DNSPacketWriter::xfrName(const DNSName& name, bool compress, bool)
{
//cerr<<"xfrName: name=["<<name.toString()<<"] compress="<<compress<<endl;
// string label = d_lowerCase ? toLower(Label) : Label;
// FIXME400: we ignore d_lowerCase for now
// cerr<<"xfrName writing ["<<name.toString()<<"]"<<endl;
std::vector<std::string> parts = name.getRawLabels();
// labelparts_t parts;
// cerr<<"labelcount: "<<parts.size()<<endl;
if(d_canonic)
compress=false;
if(!parts.size()) { // otherwise we encode '..'
d_record.push_back(0);
return;
}
// d_stuff is amount of stuff that is yet to be written out - the dnsrecordheader for example
unsigned int pos=d_content.size() + d_record.size() + d_stuff;
// bool deDot = labellen && (label[labellen-1]=='.'); // make sure we don't store trailing dots in the labelmap
unsigned int startRecordSize=d_record.size();
unsigned int startPos;
DNSName towrite = name;
/* FIXME400: if we are not compressing, there is no reason to work per-label */
for(auto &label: parts) {
if(d_lowerCase) label=toLower(label);
//cerr<<"xfrName labelpart ["<<label<<"], left to write ["<<towrite.toString()<<"]"<<endl;
auto li=d_labelmap.end();
// see if we've written out this domain before
//cerr<<"compress="<<compress<<", searching? for compression pointer to '"<<towrite.toString()<<"', "<<d_labelmap.size()<<" cmp-records"<<endl;
if(compress && (li=find(d_labelmap, towrite))!=d_labelmap.end()) {
//cerr<<"doing compression, my label=["<<label<<"] found match ["<<li->first.toString()<<"]"<<endl;
//cerr<<"\tFound a compression pointer to '"<<towrite.toString()<<"': "<<li->second<<endl;
if (d_record.size() - startRecordSize + label.size() > 253) // chopped does not include a length octet for the first label and the root label
throw MOADNSException("DNSPacketWriter::xfrName() found overly large (compressed) name");
uint16_t offset=li->second;
offset|=0xc000;
d_record.push_back((char)(offset >> 8));
d_record.push_back((char)(offset & 0xff));
goto out; // skip trailing 0 in case of compression
}
if(li==d_labelmap.end() && pos< 16384) {
// cerr<<"\tStoring a compression pointer to '"<<chopped<<"': "<<pos<<endl;
d_labelmap.push_back(make_pair(towrite, pos)); // if untrue, we need to count - also, don't store offsets > 16384, won't work
//cerr<<"stored ["<<towrite.toString()<<"] at pos "<<pos<<endl;
}
startPos=pos;
char labelsize=label.size();
//cerr<<"labelsize = "<<int(labelsize)<<" for label ["<<label<<"]"<<endl;
d_record.push_back(labelsize);
unsigned int len=d_record.size();
d_record.resize(len + labelsize);
memcpy(((&*d_record.begin()) + len), label.c_str(), labelsize); // FIXME400 do not want memcpy
pos+=labelsize+1;
if(pos - startPos == 1)
throw MOADNSException("DNSPacketWriter::xfrName() found empty label in the middle of name");
if(pos - startPos > 64)
throw MOADNSException("DNSPacketWriter::xfrName() found overly large label in name");
towrite.chopOff(); /* FIXME400: iterating the label vector while keeping this chopoff in sync is a hack */
}
d_record.push_back(0); // insert root label
if (d_record.size() - startRecordSize > 255)
throw MOADNSException("DNSPacketWriter::xfrName() found overly large name");
out:;
}
void DNSPacketWriter::xfrBlob(const string& blob, int )
{
const uint8_t* ptr=reinterpret_cast<const uint8_t*>(blob.c_str());
d_record.insert(d_record.end(), ptr, ptr+blob.size());
}
void DNSPacketWriter::xfrBlobNoSpaces(const string& blob, int )
{
xfrBlob(blob);
}
void DNSPacketWriter::xfrHexBlob(const string& blob, bool keepReading)
{
xfrBlob(blob);
}
void DNSPacketWriter::getRecords(string& records)
{
records.assign(d_content.begin() + d_sor, d_content.end());
}
uint32_t DNSPacketWriter::size()
{
return d_content.size() + d_stuff + d_record.size();
}
void DNSPacketWriter::rollback()
{
d_content.resize(d_rollbackmarker);
d_record.clear();
d_stuff=0;
}
void DNSPacketWriter::truncate()
{
d_content.resize(d_truncatemarker);
d_record.clear();
d_stuff=0;
dnsheader* dh=reinterpret_cast<dnsheader*>( &*d_content.begin());
dh->ancount = dh->nscount = dh->arcount = 0;
}
void DNSPacketWriter::commit()
{
if(d_stuff==0xffff && (d_content.size()!=d_sor || !d_record.empty()))
throw MOADNSException("DNSPacketWriter::commit() called without startRecord ever having been called, but a record was added");
// build dnsrecordheader
struct dnsrecordheader drh;
drh.d_type=htons(d_recordqtype);
drh.d_class=htons(d_recordqclass);
drh.d_ttl=htonl(d_recordttl);
drh.d_clen=htons(d_record.size());
// and write out the header
const uint8_t* ptr=(const uint8_t*)&drh;
d_content.insert(d_content.end(), ptr, ptr+sizeof(drh));
d_stuff=0;
// write out pending d_record
d_content.insert(d_content.end(), d_record.begin(), d_record.end());
dnsheader* dh=reinterpret_cast<dnsheader*>( &*d_content.begin());
switch(d_recordplace) {
case DNSResourceRecord::QUESTION:
dh->qdcount = htons(ntohs(dh->qdcount) + 1);
break;
case DNSResourceRecord::ANSWER:
dh->ancount = htons(ntohs(dh->ancount) + 1);
break;
case DNSResourceRecord::AUTHORITY:
dh->nscount = htons(ntohs(dh->nscount) + 1);
break;
case DNSResourceRecord::ADDITIONAL:
dh->arcount = htons(ntohs(dh->arcount) + 1);
break;
}
d_record.clear(); // clear d_record, ready for next record
}
|