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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif
#include "net/dns/record_rdata.h"
#include <algorithm>
#include <numeric>
#include <string_view>
#include <utility>
#include "base/containers/span.h"
#include "base/containers/span_reader.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/rand_util.h"
#include "base/strings/string_view_util.h"
#include "net/base/ip_address.h"
#include "net/dns/dns_response.h"
#include "net/dns/public/dns_protocol.h"
namespace net {
static const size_t kSrvRecordMinimumSize = 6;
// Minimal HTTPS rdata is 2 octets priority + 1 octet empty name.
static constexpr size_t kHttpsRdataMinimumSize = 3;
bool RecordRdata::HasValidSize(base::span<const uint8_t> data, uint16_t type) {
switch (type) {
case dns_protocol::kTypeSRV:
return data.size() >= kSrvRecordMinimumSize;
case dns_protocol::kTypeA:
return data.size() == IPAddress::kIPv4AddressSize;
case dns_protocol::kTypeAAAA:
return data.size() == IPAddress::kIPv6AddressSize;
case dns_protocol::kTypeHttps:
return data.size() >= kHttpsRdataMinimumSize;
case dns_protocol::kTypeCNAME:
case dns_protocol::kTypePTR:
case dns_protocol::kTypeTXT:
case dns_protocol::kTypeNSEC:
case dns_protocol::kTypeOPT:
case dns_protocol::kTypeSOA:
return true;
default:
VLOG(1) << "Unrecognized RDATA type.";
return true;
}
}
SrvRecordRdata::SrvRecordRdata() = default;
SrvRecordRdata::~SrvRecordRdata() = default;
std::unique_ptr<SrvRecordRdata> SrvRecordRdata::CreateInstance() {
return base::WrapUnique(new SrvRecordRdata());
}
// static
std::unique_ptr<SrvRecordRdata> SrvRecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
if (!HasValidSize(data, kType))
return nullptr;
auto rdata = SrvRecordRdata::CreateInstance();
auto reader = base::SpanReader(data);
// 2 bytes for priority, 2 bytes for weight, 2 bytes for port.
reader.ReadU16BigEndian(rdata->priority_);
reader.ReadU16BigEndian(rdata->weight_);
reader.ReadU16BigEndian(rdata->port_);
if (!parser.ReadName(data.subspan(kSrvRecordMinimumSize).data(),
&rdata->target_)) {
return nullptr;
}
return rdata;
}
uint16_t SrvRecordRdata::Type() const {
return SrvRecordRdata::kType;
}
bool SrvRecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type()) return false;
const SrvRecordRdata* srv_other = static_cast<const SrvRecordRdata*>(other);
return weight_ == srv_other->weight_ && port_ == srv_other->port_ &&
priority_ == srv_other->priority_ && target_ == srv_other->target_;
}
ARecordRdata::ARecordRdata() = default;
ARecordRdata::~ARecordRdata() = default;
std::unique_ptr<ARecordRdata> ARecordRdata::CreateInstance() {
return base::WrapUnique(new ARecordRdata());
}
// static
std::unique_ptr<ARecordRdata> ARecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
if (!HasValidSize(data, kType))
return nullptr;
auto rdata = ARecordRdata::CreateInstance();
rdata->address_ = IPAddress(data);
return rdata;
}
uint16_t ARecordRdata::Type() const {
return ARecordRdata::kType;
}
bool ARecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type()) return false;
const ARecordRdata* a_other = static_cast<const ARecordRdata*>(other);
return address_ == a_other->address_;
}
AAAARecordRdata::AAAARecordRdata() = default;
AAAARecordRdata::~AAAARecordRdata() = default;
std::unique_ptr<AAAARecordRdata> AAAARecordRdata::CreateInstance() {
return base::WrapUnique(new AAAARecordRdata());
}
// static
std::unique_ptr<AAAARecordRdata> AAAARecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
if (!HasValidSize(data, kType))
return nullptr;
auto rdata = AAAARecordRdata::CreateInstance();
rdata->address_ = IPAddress(base::as_byte_span(data));
return rdata;
}
uint16_t AAAARecordRdata::Type() const {
return AAAARecordRdata::kType;
}
bool AAAARecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type()) {
return false;
}
const AAAARecordRdata* a_other = static_cast<const AAAARecordRdata*>(other);
return address_ == a_other->address_;
}
CnameRecordRdata::CnameRecordRdata() = default;
CnameRecordRdata::~CnameRecordRdata() = default;
std::unique_ptr<CnameRecordRdata> CnameRecordRdata::CreateInstance() {
return base::WrapUnique(new CnameRecordRdata());
}
// static
std::unique_ptr<CnameRecordRdata> CnameRecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
auto rdata = CnameRecordRdata::CreateInstance();
if (!parser.ReadName(data.data(), &rdata->cname_)) {
return nullptr;
}
return rdata;
}
uint16_t CnameRecordRdata::Type() const {
return CnameRecordRdata::kType;
}
bool CnameRecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type()) return false;
const CnameRecordRdata* cname_other =
static_cast<const CnameRecordRdata*>(other);
return cname_ == cname_other->cname_;
}
PtrRecordRdata::PtrRecordRdata() = default;
PtrRecordRdata::~PtrRecordRdata() = default;
std::unique_ptr<PtrRecordRdata> PtrRecordRdata::CreateInstance() {
return base::WrapUnique(new PtrRecordRdata());
}
// static
std::unique_ptr<PtrRecordRdata> PtrRecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
auto rdata = PtrRecordRdata::CreateInstance();
if (!parser.ReadName(data.data(), &rdata->ptrdomain_)) {
return nullptr;
}
return rdata;
}
uint16_t PtrRecordRdata::Type() const {
return PtrRecordRdata::kType;
}
bool PtrRecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type()) return false;
const PtrRecordRdata* ptr_other = static_cast<const PtrRecordRdata*>(other);
return ptrdomain_ == ptr_other->ptrdomain_;
}
TxtRecordRdata::TxtRecordRdata() = default;
TxtRecordRdata::~TxtRecordRdata() = default;
std::unique_ptr<TxtRecordRdata> TxtRecordRdata::CreateInstance() {
return base::WrapUnique(new TxtRecordRdata());
}
// static
std::unique_ptr<TxtRecordRdata> TxtRecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
auto rdata = TxtRecordRdata::CreateInstance();
if (data.empty()) {
// Per RFC1035-3.3.14, a TXT record must contain at least one string entry.
return nullptr;
}
for (size_t i = 0; i < data.size();) {
uint8_t length = data[i];
if (i + length >= data.size()) {
return nullptr;
}
rdata->texts_.emplace_back(
base::as_string_view(base::as_chars(data.subspan(i + 1, length))));
// Move to the next string.
i += length + 1;
}
return rdata;
}
uint16_t TxtRecordRdata::Type() const {
return TxtRecordRdata::kType;
}
bool TxtRecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type()) return false;
const TxtRecordRdata* txt_other = static_cast<const TxtRecordRdata*>(other);
return texts_ == txt_other->texts_;
}
NsecRecordRdata::NsecRecordRdata() = default;
NsecRecordRdata::~NsecRecordRdata() = default;
std::unique_ptr<NsecRecordRdata> NsecRecordRdata::CreateInstance() {
return base::WrapUnique(new NsecRecordRdata());
}
// static
std::unique_ptr<NsecRecordRdata> NsecRecordRdata::Create(
base::span<const uint8_t> data,
const DnsRecordParser& parser) {
auto rdata = NsecRecordRdata::CreateInstance();
// Read the "next domain". This part for the NSEC record format is
// ignored for mDNS, since it has no semantic meaning.
unsigned next_domain_length = parser.ReadName(data.data(), nullptr);
// If we did not succeed in getting the next domain or the data length
// is too short for reading the bitmap header, return.
if (next_domain_length == 0 || data.size() < next_domain_length + 2) {
return nullptr;
}
struct BitmapHeader {
uint8_t block_number; // The block number should be zero.
uint8_t length; // Bitmap length in bytes. Between 1 and 32.
};
const BitmapHeader* header =
reinterpret_cast<const BitmapHeader*>(data.data() + next_domain_length);
// The block number must be zero in mDns-specific NSEC records. The bitmap
// length must be between 1 and 32.
if (header->block_number != 0 || header->length == 0 || header->length > 32)
return nullptr;
base::span<const uint8_t> bitmap_data = data.subspan(next_domain_length + 2);
// Since we may only have one block, the data length must be exactly equal
// to the domain length plus bitmap size.
if (bitmap_data.size() != header->length) {
return nullptr;
}
rdata->bitmap_.assign(bitmap_data.begin(), bitmap_data.end());
return rdata;
}
uint16_t NsecRecordRdata::Type() const {
return NsecRecordRdata::kType;
}
bool NsecRecordRdata::IsEqual(const RecordRdata* other) const {
if (other->Type() != Type())
return false;
const NsecRecordRdata* nsec_other =
static_cast<const NsecRecordRdata*>(other);
return bitmap_ == nsec_other->bitmap_;
}
bool NsecRecordRdata::GetBit(unsigned i) const {
unsigned byte_num = i / 8;
if (bitmap_.size() < byte_num + 1)
return false;
unsigned bit_num = 7 - i % 8;
return (bitmap_[byte_num] & (1 << bit_num)) != 0;
}
} // namespace net
|