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
/*
* Copyright (C) 2015 Benjamin Fry <benjaminfry@me.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//! resource record implementation
use std::cmp::Ordering;
use crate::error::*;
use crate::rr::dns_class::DNSClass;
use crate::rr::rdata::NULL;
#[allow(deprecated)]
use crate::rr::IntoRecordSet;
use crate::rr::Name;
use crate::rr::RData;
use crate::rr::RecordSet;
use crate::rr::RecordType;
use crate::serialize::binary::*;
/// Resource records are storage value in DNS, into which all key/value pair data is stored.
///
/// [RFC 1035](https://tools.ietf.org/html/rfc1035), DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION, November 1987
///
/// ```text
/// 4.1.3. Resource record format
///
/// The answer, authority, and additional sections all share the same
/// format: a variable number of resource records, where the number of
/// records is specified in the corresponding count field in the header.
/// Each resource record has the following format:
/// 1 1 1 1 1 1
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
/// | |
/// / /
/// / NAME /
/// | |
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
/// | TYPE |
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
/// | CLASS |
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
/// | TTL |
/// | |
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
/// | RDLENGTH |
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--|
/// / RDATA /
/// / /
/// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
///
/// ```
#[derive(Eq, Ord, Debug, Clone)]
pub struct Record {
name_labels: Name,
rr_type: RecordType,
dns_class: DNSClass,
ttl: u32,
rdata: RData,
}
impl Default for Record {
fn default() -> Self {
Record {
// TODO: these really should all be Optionals, I was lazy.
name_labels: Name::new(),
rr_type: RecordType::A,
dns_class: DNSClass::IN,
ttl: 0,
rdata: RData::NULL(NULL::new()),
}
}
}
impl Record {
/// Creates a default record, use the setters to build a more useful object.
///
/// There are no optional elements in this object, defaults are an empty name, type A, class IN,
/// ttl of 0 and the 0.0.0.0 ip address.
pub fn new() -> Record {
Default::default()
}
/// Create a record with the specified initial values.
///
/// # Arguments
///
/// * `name` - name of the resource records
/// * `rr_type` - the record type
/// * `ttl` - time-to-live is the amount of time this record should be cached before refreshing
pub fn with(name: Name, rr_type: RecordType, ttl: u32) -> Record {
Record {
name_labels: name,
rr_type,
dns_class: DNSClass::IN,
ttl,
rdata: RData::NULL(NULL::new()),
}
}
/// Create a record with the specified initial values.
///
/// # Arguments
///
/// * `name` - name of the resource records
/// * `ttl` - time-to-live is the amount of time this record should be cached before refreshing
/// * `rdata` - record data to associate with the Record
pub fn from_rdata(name: Name, ttl: u32, rdata: RData) -> Record {
Record {
name_labels: name,
rr_type: rdata.to_record_type(),
dns_class: DNSClass::IN,
ttl,
rdata,
}
}
/// ```text
/// NAME a domain name to which this resource record pertains.
/// ```
pub fn set_name(&mut self, name: Name) -> &mut Self {
self.name_labels = name;
self
}
/// ```text
/// TYPE two octets containing one of the RR type codes. This
/// field specifies the meaning of the data in the RDATA
/// field.
/// ```
// #[deprecated(note = "use `Record::set_record_type`")]
pub fn set_rr_type(&mut self, rr_type: RecordType) -> &mut Self {
self.rr_type = rr_type;
self
}
/// ```text
/// TYPE two octets containing one of the RR type codes. This
/// field specifies the meaning of the data in the RDATA
/// field.
/// ```
pub fn set_record_type(&mut self, rr_type: RecordType) -> &mut Self {
self.rr_type = rr_type;
self
}
/// ```text
/// CLASS two octets which specify the class of the data in the
/// RDATA field.
/// ```
pub fn set_dns_class(&mut self, dns_class: DNSClass) -> &mut Self {
self.dns_class = dns_class;
self
}
/// ```text
/// TTL a 32 bit unsigned integer that specifies the time
/// interval (in seconds) that the resource record may be
/// cached before it should be discarded. Zero values are
/// interpreted to mean that the RR can only be used for the
/// transaction in progress, and should not be cached.
/// ```
pub fn set_ttl(&mut self, ttl: u32) -> &mut Self {
self.ttl = ttl;
self
}
/// ```text
/// RDATA a variable length string of octets that describes the
/// resource. The format of this information varies
/// according to the TYPE and CLASS of the resource record.
/// For example, the if the TYPE is A and the CLASS is IN,
/// the RDATA field is a 4 octet ARPA Internet address.
/// ```
pub fn set_rdata(&mut self, rdata: RData) -> &mut Self {
self.rdata = rdata;
self
}
/// Returns the name of the record
pub fn name(&self) -> &Name {
&self.name_labels
}
/// Returns the type of the RData in the record
// #[deprecated(note = "use `Record::record_type`")]
pub fn rr_type(&self) -> RecordType {
self.rr_type
}
/// Returns the type of the RecordData in the record
pub fn record_type(&self) -> RecordType {
self.rr_type
}
/// Returns the DNSClass of the Record, generally IN fro internet
pub fn dns_class(&self) -> DNSClass {
self.dns_class
}
/// Returns the time-to-live of the record, for caching purposes
pub fn ttl(&self) -> u32 {
self.ttl
}
/// Returns the Record Data, i.e. the record information
pub fn rdata(&self) -> &RData {
&self.rdata
}
/// Returns a mutable reference to the Record Data
pub fn rdata_mut(&mut self) -> &mut RData {
&mut self.rdata
}
/// Returns the RData consuming the Record
pub fn unwrap_rdata(self) -> RData {
self.rdata
}
}
#[allow(deprecated)]
impl IntoRecordSet for Record {
fn into_record_set(self) -> RecordSet {
RecordSet::from(self)
}
}
impl BinEncodable for Record {
fn emit(&self, encoder: &mut BinEncoder) -> ProtoResult<()> {
self.name_labels.emit(encoder)?;
self.rr_type.emit(encoder)?;
self.dns_class.emit(encoder)?;
encoder.emit_u32(self.ttl)?;
// place the RData length
let place = encoder.place::<u16>()?;
// write the RData
self.rdata.emit(encoder)?;
// get the length written
let len = encoder.len_since_place(&place);
assert!(len <= u16::max_value() as usize);
// replace the location with the length
place.replace(encoder, len as u16)?;
Ok(())
}
}
impl<'r> BinDecodable<'r> for Record {
/// parse a resource record line example:
/// WARNING: the record_bytes is 100% consumed and destroyed in this parsing process
fn read(decoder: &mut BinDecoder<'r>) -> ProtoResult<Record> {
// NAME an owner name, i.e., the name of the node to which this
// resource record pertains.
let name_labels: Name = Name::read(decoder)?;
// TYPE two octets containing one of the RR TYPE codes.
let record_type: RecordType = RecordType::read(decoder)?;
// CLASS two octets containing one of the RR CLASS codes.
let class: DNSClass = if record_type == RecordType::OPT {
// verify that the OPT record is Root
if !name_labels.is_root() {
return Err(ProtoErrorKind::EdnsNameNotRoot(name_labels).into());
}
// DNS Class is overloaded for OPT records in EDNS - RFC 6891
DNSClass::for_opt(
decoder.read_u16()?.unverified(/*restricted to a min of 512 in for_opt*/),
)
} else {
DNSClass::read(decoder)?
};
// TTL a 32 bit signed integer that specifies the time interval
// that the resource record may be cached before the source
// of the information should again be consulted. Zero
// values are interpreted to mean that the RR can only be
// used for the transaction in progress, and should not be
// cached. For example, SOA records are always distributed
// with a zero TTL to prohibit caching. Zero values can
// also be used for extremely volatile data.
// note: u32 seems more accurate given that it can only be positive
let ttl: u32 = decoder.read_u32()?.unverified(/*any u32 is valid*/);
// RDLENGTH an unsigned 16 bit integer that specifies the length in
// octets of the RDATA field.
let rd_length: u16 = decoder
.read_u16()?
.verify_unwrap(|u| (*u as usize) <= decoder.len())
.map_err(|_| {
ProtoError::from("rdata length too large for remaining bytes, need: {} remain: {}")
})?;
// this is to handle updates, RFC 2136, which uses 0 to indicate certain aspects of
// pre-requisites
let rdata: RData = if rd_length == 0 {
RData::NULL(NULL::new())
} else {
// RDATA a variable length string of octets that describes the
// resource. The format of this information varies
// according to the TYPE and CLASS of the resource record.
// Adding restrict to the rdata length because it's used for many calculations later
// and must be validated before hand
RData::read(decoder, record_type, Restrict::new(rd_length))?
};
Ok(Record {
name_labels,
rr_type: record_type,
dns_class: class,
ttl,
rdata,
})
}
}
impl PartialEq for Record {
/// Equality or records, as defined by
/// [RFC 2136](https://tools.ietf.org/html/rfc2136), DNS Update, April 1997
///
/// ```text
/// 1.1.1. Two RRs are considered equal if their NAME, CLASS, TYPE,
/// RDLENGTH and RDATA fields are equal. Note that the time-to-live
/// (TTL) field is explicitly excluded from the comparison.
///
/// 1.1.2. The rules for comparison of character strings in names are
/// specified in [RFC1035 2.3.3]. i.e. case insensitive
/// ```
fn eq(&self, other: &Self) -> bool {
// self == other && // the same pointer
self.name_labels == other.name_labels
&& self.rr_type == other.rr_type
&& self.dns_class == other.dns_class
&& self.rdata == other.rdata
}
}
/// returns the value of the compare if the items are greater or lesser, but continues on equal
macro_rules! compare_or_equal {
($x:ident, $y:ident, $z:ident) => {
match $x.$z.partial_cmp(&$y.$z) {
o @ Some(Ordering::Less) | o @ Some(Ordering::Greater) => return o,
None => return None,
Some(Ordering::Equal) => (),
}
};
}
impl PartialOrd<Record> for Record {
/// Canonical ordering as defined by
/// [RFC 4034](https://tools.ietf.org/html/rfc4034#section-6), DNSSEC Resource Records, March 2005
///
/// ```text
/// 6.2. Canonical RR Form
///
/// For the purposes of DNS security, the canonical form of an RR is the
/// wire format of the RR where:
///
/// 1. every domain name in the RR is fully expanded (no DNS name
/// compression) and fully qualified;
///
/// 2. all uppercase US-ASCII letters in the owner name of the RR are
/// replaced by the corresponding lowercase US-ASCII letters;
///
/// 3. if the type of the RR is NS, MD, MF, CNAME, SOA, MB, MG, MR, PTR,
/// HINFO, MINFO, MX, HINFO, RP, AFSDB, RT, SIG, PX, NXT, NAPTR, KX,
/// SRV, DNAME, A6, RRSIG, or NSEC, all uppercase US-ASCII letters in
/// the DNS names contained within the RDATA are replaced by the
/// corresponding lowercase US-ASCII letters;
///
/// 4. if the owner name of the RR is a wildcard name, the owner name is
/// in its original unexpanded form, including the "*" label (no
/// wildcard substitution); and
///
/// 5. the RR's TTL is set to its original value as it appears in the
/// originating authoritative zone or the Original TTL field of the
/// covering RRSIG RR.
/// ```
fn partial_cmp(&self, other: &Record) -> Option<Ordering> {
// TODO: given that the ordering of Resource Records is dependent on it's binary form and this
// method will be used during insertion sort or similar, we should probably do this
// conversion once somehow and store it separately. Or should the internal storage of all
// resource records be maintained in binary?
compare_or_equal!(self, other, name_labels);
compare_or_equal!(self, other, rr_type);
compare_or_equal!(self, other, dns_class);
compare_or_equal!(self, other, ttl);
compare_or_equal!(self, other, rdata);
// got here, means they are equal
Some(Ordering::Equal)
}
}
#[cfg(test)]
mod tests {
#![allow(clippy::dbg_macro, clippy::print_stdout)]
use std::cmp::Ordering;
use std::net::Ipv4Addr;
use std::str::FromStr;
use super::*;
use crate::rr::dns_class::DNSClass;
use crate::rr::record_data::RData;
use crate::rr::record_type::RecordType;
use crate::rr::Name;
#[allow(clippy::useless_attribute)]
#[allow(unused)]
use crate::serialize::binary::*;
#[test]
fn test_emit_and_read() {
let mut record = Record::new();
record
.set_name(Name::from_str("www.example.com").unwrap())
.set_rr_type(RecordType::A)
.set_dns_class(DNSClass::IN)
.set_ttl(5)
.set_rdata(RData::A(Ipv4Addr::new(192, 168, 0, 1)));
let mut vec_bytes: Vec<u8> = Vec::with_capacity(512);
{
let mut encoder = BinEncoder::new(&mut vec_bytes);
record.emit(&mut encoder).unwrap();
}
let mut decoder = BinDecoder::new(&vec_bytes);
let got = Record::read(&mut decoder).unwrap();
assert_eq!(got, record);
}
#[test]
fn test_order() {
let mut record = Record::new();
record
.set_name(Name::from_str("www.example.com").unwrap())
.set_rr_type(RecordType::A)
.set_dns_class(DNSClass::IN)
.set_ttl(5)
.set_rdata(RData::A(Ipv4Addr::new(192, 168, 0, 1)));
let mut greater_name = record.clone();
greater_name.set_name(Name::from_str("zzz.example.com").unwrap());
let mut greater_type = record.clone();
greater_type.set_rr_type(RecordType::AAAA);
let mut greater_class = record.clone();
greater_class.set_dns_class(DNSClass::NONE);
let mut greater_rdata = record.clone();
greater_rdata.set_rdata(RData::A(Ipv4Addr::new(192, 168, 0, 255)));
let compares = vec![
(&record, &greater_name),
(&record, &greater_type),
(&record, &greater_class),
(&record, &greater_rdata),
];
assert_eq!(record.clone(), record.clone());
for (r, g) in compares {
println!("r, g: {:?}, {:?}", r, g);
assert_eq!(r.cmp(g), Ordering::Less);
}
}
}