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 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
// Copyright 2015-2023 Benjamin Fry <benjaminfry@me.com>
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! Caching related functionality for the Resolver.
use std::{
borrow::Cow,
error::Error,
pin::Pin,
sync::{
atomic::{AtomicU8, Ordering},
Arc,
},
time::Instant,
};
use futures_util::future::Future;
use once_cell::sync::Lazy;
use crate::{
dns_lru::{self, DnsLru, TtlConfig},
error::{ResolveError, ResolveErrorKind},
lookup::Lookup,
proto::{
error::ProtoError,
op::{Query, ResponseCode},
rr::{
domain::usage::{
ResolverUsage, DEFAULT, INVALID, IN_ADDR_ARPA_127, IP6_ARPA_1, LOCAL,
LOCALHOST as LOCALHOST_usage, ONION,
},
rdata::{A, AAAA, CNAME, PTR, SOA},
resource::RecordRef,
DNSClass, Name, RData, Record, RecordType,
},
xfer::{DnsHandle, DnsRequestOptions, DnsResponse, FirstAnswer},
},
};
const MAX_QUERY_DEPTH: u8 = 8; // arbitrarily chosen number...
static LOCALHOST: Lazy<RData> =
Lazy::new(|| RData::PTR(PTR(Name::from_ascii("localhost.").unwrap())));
static LOCALHOST_V4: Lazy<RData> = Lazy::new(|| RData::A(A::new(127, 0, 0, 1)));
static LOCALHOST_V6: Lazy<RData> = Lazy::new(|| RData::AAAA(AAAA::new(0, 0, 0, 0, 0, 0, 0, 1)));
struct DepthTracker {
query_depth: Arc<AtomicU8>,
}
impl DepthTracker {
fn track(query_depth: Arc<AtomicU8>) -> Self {
query_depth.fetch_add(1, Ordering::Release);
Self { query_depth }
}
}
impl Drop for DepthTracker {
fn drop(&mut self) {
self.query_depth.fetch_sub(1, Ordering::Release);
}
}
// TODO: need to consider this storage type as it compares to Authority in server...
// should it just be an variation on Authority?
#[derive(Clone, Debug)]
#[doc(hidden)]
pub struct CachingClient<C, E>
where
C: DnsHandle<Error = E>,
E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + 'static,
{
lru: DnsLru,
client: C,
query_depth: Arc<AtomicU8>,
preserve_intermediates: bool,
}
impl<C, E> CachingClient<C, E>
where
C: DnsHandle<Error = E> + Send + 'static,
E: Into<ResolveError> + From<ProtoError> + Error + Clone + Send + Unpin + 'static,
{
#[doc(hidden)]
pub fn new(max_size: usize, client: C, preserve_intermediates: bool) -> Self {
Self::with_cache(
DnsLru::new(max_size, TtlConfig::default()),
client,
preserve_intermediates,
)
}
pub(crate) fn with_cache(lru: DnsLru, client: C, preserve_intermediates: bool) -> Self {
let query_depth = Arc::new(AtomicU8::new(0));
Self {
lru,
client,
query_depth,
preserve_intermediates,
}
}
/// Perform a lookup against this caching client, looking first in the cache for a result
pub fn lookup(
&mut self,
query: Query,
options: DnsRequestOptions,
) -> Pin<Box<dyn Future<Output = Result<Lookup, ResolveError>> + Send>> {
Box::pin(Self::inner_lookup(query, options, self.clone(), vec![]))
}
async fn inner_lookup(
query: Query,
options: DnsRequestOptions,
mut client: Self,
preserved_records: Vec<(Record, u32)>,
) -> Result<Lookup, ResolveError> {
// see https://tools.ietf.org/html/rfc6761
//
// ```text
// Name resolution APIs and libraries SHOULD recognize localhost
// names as special and SHOULD always return the IP loopback address
// for address queries and negative responses for all other query
// types. Name resolution APIs SHOULD NOT send queries for
// localhost names to their configured caching DNS server(s).
// ```
// special use rules only apply to the IN Class
if query.query_class() == DNSClass::IN {
let usage = match query.name() {
n if LOCALHOST_usage.zone_of(n) => &*LOCALHOST_usage,
n if IN_ADDR_ARPA_127.zone_of(n) => &*LOCALHOST_usage,
n if IP6_ARPA_1.zone_of(n) => &*LOCALHOST_usage,
n if INVALID.zone_of(n) => &*INVALID,
n if LOCAL.zone_of(n) => &*LOCAL,
n if ONION.zone_of(n) => &*ONION,
_ => &*DEFAULT,
};
match usage.resolver() {
ResolverUsage::Loopback => match query.query_type() {
// TODO: look in hosts for these ips/names first...
RecordType::A => return Ok(Lookup::from_rdata(query, LOCALHOST_V4.clone())),
RecordType::AAAA => return Ok(Lookup::from_rdata(query, LOCALHOST_V6.clone())),
RecordType::PTR => return Ok(Lookup::from_rdata(query, LOCALHOST.clone())),
_ => {
return Err(ResolveError::nx_error(
query,
None,
None,
ResponseCode::NoError,
false,
))
} // Are there any other types we can use?
},
// when mdns is enabled we will follow a standard query path
#[cfg(feature = "mdns")]
ResolverUsage::LinkLocal => (),
// TODO: this requires additional config, as Kubernetes and other systems misuse the .local. zone.
// when mdns is not enabled we will return errors on LinkLocal ("*.local.") names
#[cfg(not(feature = "mdns"))]
ResolverUsage::LinkLocal => (),
ResolverUsage::NxDomain => {
return Err(ResolveError::nx_error(
query,
None,
None,
ResponseCode::NXDomain,
false,
))
}
ResolverUsage::Normal => (),
}
}
let _tracker = DepthTracker::track(client.query_depth.clone());
let is_dnssec = client.client.is_verifying_dnssec();
// first transition any polling that is needed (mutable refs...)
if let Some(cached_lookup) = client.lookup_from_cache(&query) {
return cached_lookup;
};
let response_message = client
.client
.lookup(query.clone(), options)
.first_answer()
.await
.map_err(E::into);
// TODO: technically this might be duplicating work, as name_server already performs this evaluation.
// we may want to create a new type, if evaluated... but this is most generic to support any impl in LookupState...
let response_message = if let Ok(response) = response_message {
ResolveError::from_response(response, false)
} else {
response_message
};
// TODO: take all records and cache them?
// if it's DNSSEC they must be signed, otherwise?
let records: Result<Records, ResolveError> = match response_message {
// this is the only cacheable form
Err(ResolveError {
kind:
ResolveErrorKind::NoRecordsFound {
query,
soa,
negative_ttl,
response_code,
trusted,
},
..
}) => {
Err(Self::handle_nxdomain(
is_dnssec,
false, /*tbd*/
*query,
soa.map(|v| *v),
negative_ttl,
response_code,
trusted,
))
}
Err(e) => return Err(e),
Ok(response_message) => {
// allow the handle_noerror function to deal with any error codes
let records = Self::handle_noerror(
&mut client,
options,
is_dnssec,
&query,
response_message,
preserved_records,
)?;
Ok(records)
}
};
// after the request, evaluate if we have additional queries to perform
match records {
Ok(Records::CnameChain {
next: future,
min_ttl: ttl,
}) => match future.await {
Ok(lookup) => client.cname(lookup, query, ttl),
Err(e) => client.cache(query, Err(e)),
},
Ok(Records::Exists(rdata)) => client.cache(query, Ok(rdata)),
Err(e) => client.cache(query, Err(e)),
}
}
/// Check if this query is already cached
fn lookup_from_cache(&self, query: &Query) -> Option<Result<Lookup, ResolveError>> {
self.lru.get(query, Instant::now())
}
/// See https://tools.ietf.org/html/rfc2308
///
/// For now we will regard NXDomain to strictly mean the query failed
/// and a record for the name, regardless of CNAME presence, what have you
/// ultimately does not exist.
///
/// This also handles empty responses in the same way. When performing DNSSEC enabled queries, we should
/// never enter here, and should never cache unless verified requests.
///
/// TODO: should this should be expanded to do a forward lookup? Today, this will fail even if there are
/// forwarding options.
///
/// # Arguments
///
/// * `message` - message to extract SOA, etc, from for caching failed requests
/// * `valid_nsec` - species that in DNSSEC mode, this request is safe to cache
/// * `negative_ttl` - this should be the SOA minimum for negative ttl
fn handle_nxdomain(
is_dnssec: bool,
valid_nsec: bool,
query: Query,
soa: Option<Record<SOA>>,
negative_ttl: Option<u32>,
response_code: ResponseCode,
trusted: bool,
) -> ResolveError {
if valid_nsec || !is_dnssec {
// only trust if there were validated NSEC records
ResolveErrorKind::NoRecordsFound {
query: Box::new(query),
soa: soa.map(Box::new),
negative_ttl,
response_code,
trusted: true,
}
.into()
} else {
// not cacheable, no ttl...
ResolveErrorKind::NoRecordsFound {
query: Box::new(query),
soa: soa.map(Box::new),
negative_ttl: None,
response_code,
trusted,
}
.into()
}
}
/// Handle the case where there is no error returned
fn handle_noerror(
client: &mut Self,
options: DnsRequestOptions,
is_dnssec: bool,
query: &Query,
response: DnsResponse,
mut preserved_records: Vec<(Record, u32)>,
) -> Result<Records, ResolveError> {
// initial ttl is what CNAMES for min usage
const INITIAL_TTL: u32 = dns_lru::MAX_TTL;
// need to capture these before the subsequent and destructive record processing
let soa = response.soa().as_ref().map(RecordRef::to_owned);
let negative_ttl = response.negative_ttl();
let response_code = response.response_code();
// seek out CNAMES, this is only performed if the query is not a CNAME, ANY, or SRV
// FIXME: for SRV this evaluation is inadequate. CNAME is a single chain to a single record
// for SRV, there could be many different targets. The search_name needs to be enhanced to
// be a list of names found for SRV records.
let (search_name, cname_ttl, was_cname, preserved_records) = {
// this will only search for CNAMEs if the request was not meant to be for one of the triggers for recursion
let (search_name, cname_ttl, was_cname) =
if query.query_type().is_any() || query.query_type().is_cname() {
(Cow::Borrowed(query.name()), INITIAL_TTL, false)
} else {
// Folds any cnames from the answers section, into the final cname in the answers section
// this works by folding the last CNAME found into the final folded result.
// it assumes that the CNAMEs are in chained order in the DnsResponse Message...
// For SRV, the name added for the search becomes the target name.
//
// TODO: should this include the additionals?
response.answers().iter().fold(
(Cow::Borrowed(query.name()), INITIAL_TTL, false),
|(search_name, cname_ttl, was_cname), r| {
match r.data() {
Some(RData::CNAME(CNAME(ref cname))) => {
// take the minimum TTL of the cname_ttl and the next record in the chain
let ttl = cname_ttl.min(r.ttl());
debug_assert_eq!(r.record_type(), RecordType::CNAME);
if search_name.as_ref() == r.name() {
return (Cow::Owned(cname.clone()), ttl, true);
}
}
Some(RData::SRV(ref srv)) => {
// take the minimum TTL of the cname_ttl and the next record in the chain
let ttl = cname_ttl.min(r.ttl());
debug_assert_eq!(r.record_type(), RecordType::SRV);
// the search name becomes the srv.target
return (Cow::Owned(srv.target().clone()), ttl, true);
}
_ => (),
}
(search_name, cname_ttl, was_cname)
},
)
};
// take all answers. // TODO: following CNAMES?
let mut response = response.into_message();
let answers = response.take_answers();
let additionals = response.take_additionals();
let name_servers = response.take_name_servers();
// set of names that still require resolution
// TODO: this needs to be enhanced for SRV
let mut found_name = false;
// After following all the CNAMES to the last one, try and lookup the final name
let records = answers
.into_iter()
// Chained records will generally exist in the additionals section
.chain(additionals)
.chain(name_servers)
.filter_map(|r| {
// because this resolved potentially recursively, we want the min TTL from the chain
let ttl = cname_ttl.min(r.ttl());
// TODO: disable name validation with ResolverOpts? glibc feature...
// restrict to the RData type requested
if query.query_class() == r.dns_class() {
// standard evaluation, it's an any type or it's the requested type and the search_name matches
#[allow(clippy::suspicious_operation_groupings)]
if (query.query_type().is_any() || query.query_type() == r.record_type())
&& (search_name.as_ref() == r.name() || query.name() == r.name())
{
found_name = true;
return Some((r, ttl));
}
// CNAME evaluation, the record is from the CNAME lookup chain.
if client.preserve_intermediates && r.record_type() == RecordType::CNAME {
return Some((r, ttl));
}
// srv evaluation, it's an srv lookup and the srv_search_name/target matches this name
// and it's an IP
if query.query_type().is_srv()
&& r.record_type().is_ip_addr()
&& search_name.as_ref() == r.name()
{
found_name = true;
Some((r, ttl))
} else if query.query_type().is_ns() && r.record_type().is_ip_addr() {
Some((r, ttl))
} else {
None
}
} else {
None
}
})
.collect::<Vec<_>>();
// adding the newly collected records to the preserved records
preserved_records.extend(records);
if !preserved_records.is_empty() && found_name {
return Ok(Records::Exists(preserved_records));
}
(
search_name.into_owned(),
cname_ttl,
was_cname,
preserved_records,
)
};
// TODO: for SRV records we *could* do an implicit lookup, but, this requires knowing the type of IP desired
// for now, we'll make the API require the user to perform a follow up to the lookups.
// It was a CNAME, but not included in the request...
if was_cname && client.query_depth.load(Ordering::Acquire) < MAX_QUERY_DEPTH {
let next_query = Query::query(search_name, query.query_type());
Ok(Records::CnameChain {
next: Box::pin(Self::inner_lookup(
next_query,
options,
client.clone(),
preserved_records,
)),
min_ttl: cname_ttl,
})
} else {
// TODO: review See https://tools.ietf.org/html/rfc2308 for NoData section
// Note on DNSSEC, in secure_client_handle, if verify_nsec fails then the request fails.
// this will mean that no unverified negative caches will make it to this point and be stored
Err(Self::handle_nxdomain(
is_dnssec,
true,
query.clone(),
soa,
negative_ttl,
response_code,
false,
))
}
}
#[allow(clippy::unnecessary_wraps)]
fn cname(&self, lookup: Lookup, query: Query, cname_ttl: u32) -> Result<Lookup, ResolveError> {
// this duplicates the cache entry under the original query
Ok(self.lru.duplicate(query, lookup, cname_ttl, Instant::now()))
}
fn cache(
&self,
query: Query,
records: Result<Vec<(Record, u32)>, ResolveError>,
) -> Result<Lookup, ResolveError> {
// this will put this object into an inconsistent state, but no one should call poll again...
match records {
Ok(rdata) => Ok(self.lru.insert(query, rdata, Instant::now())),
Err(err) => Err(self.lru.negative(query, err, Instant::now())),
}
}
/// Flushes/Removes all entries from the cache
pub fn clear_cache(&self) {
self.lru.clear();
}
}
enum Records {
/// The records exists, a vec of rdata with ttl
Exists(Vec<(Record, u32)>),
/// Future lookup for recursive cname records
CnameChain {
next: Pin<Box<dyn Future<Output = Result<Lookup, ResolveError>> + Send>>,
min_ttl: u32,
},
}
// see also the lookup_tests.rs in integration-tests crate
#[cfg(test)]
mod tests {
use std::net::*;
use std::str::FromStr;
use std::time::*;
use futures_executor::block_on;
use proto::op::{Message, Query};
use proto::rr::rdata::{NS, SRV};
use proto::rr::{Name, Record};
use super::*;
use crate::lookup_ip::tests::*;
#[test]
fn test_empty_cache() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
let client = mock(vec![empty()]);
let client = CachingClient::with_cache(cache, client, false);
if let ResolveErrorKind::NoRecordsFound {
query,
negative_ttl,
..
} = block_on(CachingClient::inner_lookup(
Query::new(),
DnsRequestOptions::default(),
client,
vec![],
))
.unwrap_err()
.kind()
{
assert_eq!(**query, Query::new());
assert_eq!(*negative_ttl, None);
} else {
panic!("wrong error received")
}
}
#[test]
fn test_from_cache() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
let query = Query::new();
cache.insert(
query.clone(),
vec![(
Record::from_rdata(
query.name().clone(),
u32::max_value(),
RData::A(A::new(127, 0, 0, 1)),
),
u32::max_value(),
)],
Instant::now(),
);
let client = mock(vec![empty()]);
let client = CachingClient::with_cache(cache, client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::new(),
DnsRequestOptions::default(),
client,
vec![],
))
.unwrap();
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![RData::A(A::new(127, 0, 0, 1))]
);
}
#[test]
fn test_no_cache_insert() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
// first should come from client...
let client = mock(vec![v4_message()]);
let client = CachingClient::with_cache(cache.clone(), client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::new(),
DnsRequestOptions::default(),
client,
vec![],
))
.unwrap();
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![RData::A(A::new(127, 0, 0, 1))]
);
// next should come from cache...
let client = mock(vec![empty()]);
let client = CachingClient::with_cache(cache, client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::new(),
DnsRequestOptions::default(),
client,
vec![],
))
.unwrap();
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![RData::A(A::new(127, 0, 0, 1))]
);
}
#[allow(clippy::unnecessary_wraps)]
pub(crate) fn cname_message() -> Result<DnsResponse, ResolveError> {
let mut message = Message::new();
message.add_query(Query::query(
Name::from_str("www.example.com.").unwrap(),
RecordType::A,
));
message.insert_answers(vec![Record::from_rdata(
Name::from_str("www.example.com.").unwrap(),
86400,
RData::CNAME(CNAME(Name::from_str("actual.example.com.").unwrap())),
)]);
Ok(DnsResponse::from_message(message).unwrap())
}
#[allow(clippy::unnecessary_wraps)]
pub(crate) fn srv_message() -> Result<DnsResponse, ResolveError> {
let mut message = Message::new();
message.add_query(Query::query(
Name::from_str("_443._tcp.www.example.com.").unwrap(),
RecordType::SRV,
));
message.insert_answers(vec![Record::from_rdata(
Name::from_str("_443._tcp.www.example.com.").unwrap(),
86400,
RData::SRV(SRV::new(
1,
2,
443,
Name::from_str("www.example.com.").unwrap(),
)),
)]);
Ok(DnsResponse::from_message(message).unwrap())
}
#[allow(clippy::unnecessary_wraps)]
pub(crate) fn ns_message() -> Result<DnsResponse, ResolveError> {
let mut message = Message::new();
message.add_query(Query::query(
Name::from_str("www.example.com.").unwrap(),
RecordType::NS,
));
message.insert_answers(vec![Record::from_rdata(
Name::from_str("www.example.com.").unwrap(),
86400,
RData::NS(NS(Name::from_str("www.example.com.").unwrap())),
)]);
Ok(DnsResponse::from_message(message).unwrap())
}
fn no_recursion_on_query_test(query_type: RecordType) {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
// the cname should succeed, we shouldn't query again after that, which would cause an error...
let client = mock(vec![error(), cname_message()]);
let client = CachingClient::with_cache(cache, client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::query(Name::from_str("www.example.com.").unwrap(), query_type),
DnsRequestOptions::default(),
client,
vec![],
))
.expect("lookup failed");
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![RData::CNAME(CNAME(
Name::from_str("actual.example.com.").unwrap()
))]
);
}
#[test]
fn test_no_recursion_on_cname_query() {
no_recursion_on_query_test(RecordType::CNAME);
}
#[test]
fn test_no_recursion_on_all_query() {
no_recursion_on_query_test(RecordType::ANY);
}
#[test]
fn test_non_recursive_srv_query() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
// the cname should succeed, we shouldn't query again after that, which would cause an error...
let client = mock(vec![error(), srv_message()]);
let client = CachingClient::with_cache(cache, client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::query(
Name::from_str("_443._tcp.www.example.com.").unwrap(),
RecordType::SRV,
),
DnsRequestOptions::default(),
client,
vec![],
))
.expect("lookup failed");
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![RData::SRV(SRV::new(
1,
2,
443,
Name::from_str("www.example.com.").unwrap(),
))]
);
}
#[test]
fn test_single_srv_query_response() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
let mut message = srv_message().unwrap().into_message();
message.add_answer(Record::from_rdata(
Name::from_str("www.example.com.").unwrap(),
86400,
RData::CNAME(CNAME(Name::from_str("actual.example.com.").unwrap())),
));
message.insert_additionals(vec![
Record::from_rdata(
Name::from_str("actual.example.com.").unwrap(),
86400,
RData::A(A::new(127, 0, 0, 1)),
),
Record::from_rdata(
Name::from_str("actual.example.com.").unwrap(),
86400,
RData::AAAA(AAAA::new(0, 0, 0, 0, 0, 0, 0, 1)),
),
]);
let client = mock(vec![
error(),
Ok(DnsResponse::from_message(message).unwrap()),
]);
let client = CachingClient::with_cache(cache, client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::query(
Name::from_str("_443._tcp.www.example.com.").unwrap(),
RecordType::SRV,
),
DnsRequestOptions::default(),
client,
vec![],
))
.expect("lookup failed");
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![
RData::SRV(SRV::new(
1,
2,
443,
Name::from_str("www.example.com.").unwrap(),
)),
RData::A(A::new(127, 0, 0, 1)),
RData::AAAA(AAAA::new(0, 0, 0, 0, 0, 0, 0, 1)),
]
);
}
// TODO: if we ever enable recursive lookups for SRV, here are the tests...
// #[test]
// fn test_recursive_srv_query() {
// let cache = Arc::new(Mutex::new(DnsLru::new(1)));
// let mut message = Message::new();
// message.add_answer(Record::from_rdata(
// Name::from_str("www.example.com.").unwrap(),
// 86400,
// RecordType::CNAME,
// RData::CNAME(Name::from_str("actual.example.com.").unwrap()),
// ));
// message.insert_additionals(vec![
// Record::from_rdata(
// Name::from_str("actual.example.com.").unwrap(),
// 86400,
// RecordType::A,
// RData::A(Ipv4Addr::new(127, 0, 0, 1)),
// ),
// ]);
// let mut client = mock(vec![error(), Ok(DnsResponse::from_message(message).unwrap()), srv_message()]);
// let ips = QueryState::lookup(
// Query::query(
// Name::from_str("_443._tcp.www.example.com.").unwrap(),
// RecordType::SRV,
// ),
// Default::default(),
// &mut client,
// cache.clone(),
// ).wait()
// .expect("lookup failed");
// assert_eq!(
// ips.iter().cloned().collect::<Vec<_>>(),
// vec![
// RData::SRV(SRV::new(
// 1,
// 2,
// 443,
// Name::from_str("www.example.com.").unwrap(),
// )),
// RData::A(Ipv4Addr::new(127, 0, 0, 1)),
// //RData::AAAA(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)),
// ]
// );
// }
#[test]
fn test_single_ns_query_response() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
let mut message = ns_message().unwrap().into_message();
message.add_answer(Record::from_rdata(
Name::from_str("www.example.com.").unwrap(),
86400,
RData::CNAME(CNAME(Name::from_str("actual.example.com.").unwrap())),
));
message.insert_additionals(vec![
Record::from_rdata(
Name::from_str("actual.example.com.").unwrap(),
86400,
RData::A(A::new(127, 0, 0, 1)),
),
Record::from_rdata(
Name::from_str("actual.example.com.").unwrap(),
86400,
RData::AAAA(AAAA::new(0, 0, 0, 0, 0, 0, 0, 1)),
),
]);
let client = mock(vec![
error(),
Ok(DnsResponse::from_message(message).unwrap()),
]);
let client = CachingClient::with_cache(cache, client, false);
let ips = block_on(CachingClient::inner_lookup(
Query::query(Name::from_str("www.example.com.").unwrap(), RecordType::NS),
DnsRequestOptions::default(),
client,
vec![],
))
.expect("lookup failed");
assert_eq!(
ips.iter().cloned().collect::<Vec<_>>(),
vec![
RData::NS(NS(Name::from_str("www.example.com.").unwrap())),
RData::A(A::new(127, 0, 0, 1)),
RData::AAAA(AAAA::new(0, 0, 0, 0, 0, 0, 0, 1)),
]
);
}
fn cname_ttl_test(first: u32, second: u32) {
let lru = DnsLru::new(1, dns_lru::TtlConfig::default());
// expecting no queries to be performed
let mut client = CachingClient::with_cache(lru, mock(vec![error()]), false);
let mut message = Message::new();
message.insert_answers(vec![Record::from_rdata(
Name::from_str("ttl.example.com.").unwrap(),
first,
RData::CNAME(CNAME(Name::from_str("actual.example.com.").unwrap())),
)]);
message.insert_additionals(vec![Record::from_rdata(
Name::from_str("actual.example.com.").unwrap(),
second,
RData::A(A::new(127, 0, 0, 1)),
)]);
let records = CachingClient::handle_noerror(
&mut client,
DnsRequestOptions::default(),
false,
&Query::query(Name::from_str("ttl.example.com.").unwrap(), RecordType::A),
DnsResponse::from_message(message).unwrap(),
vec![],
);
if let Ok(records) = records {
if let Records::Exists(records) = records {
for (record, ttl) in records.iter() {
if record.record_type() == RecordType::CNAME {
continue;
}
assert_eq!(ttl, &1);
}
} else {
panic!("records don't exist");
}
} else {
panic!("error getting records");
}
}
#[test]
fn test_cname_ttl() {
cname_ttl_test(1, 2);
cname_ttl_test(2, 1);
}
#[test]
fn test_early_return_localhost() {
let cache = DnsLru::new(0, dns_lru::TtlConfig::default());
let client = mock(vec![empty()]);
let mut client = CachingClient::with_cache(cache, client, false);
{
let query = Query::query(Name::from_ascii("localhost.").unwrap(), RecordType::A);
let lookup = block_on(client.lookup(query.clone(), DnsRequestOptions::default()))
.expect("should have returned localhost");
assert_eq!(lookup.query(), &query);
assert_eq!(
lookup.iter().cloned().collect::<Vec<_>>(),
vec![LOCALHOST_V4.clone()]
);
}
{
let query = Query::query(Name::from_ascii("localhost.").unwrap(), RecordType::AAAA);
let lookup = block_on(client.lookup(query.clone(), DnsRequestOptions::default()))
.expect("should have returned localhost");
assert_eq!(lookup.query(), &query);
assert_eq!(
lookup.iter().cloned().collect::<Vec<_>>(),
vec![LOCALHOST_V6.clone()]
);
}
{
let query = Query::query(Name::from(Ipv4Addr::new(127, 0, 0, 1)), RecordType::PTR);
let lookup = block_on(client.lookup(query.clone(), DnsRequestOptions::default()))
.expect("should have returned localhost");
assert_eq!(lookup.query(), &query);
assert_eq!(
lookup.iter().cloned().collect::<Vec<_>>(),
vec![LOCALHOST.clone()]
);
}
{
let query = Query::query(
Name::from(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)),
RecordType::PTR,
);
let lookup = block_on(client.lookup(query.clone(), DnsRequestOptions::default()))
.expect("should have returned localhost");
assert_eq!(lookup.query(), &query);
assert_eq!(
lookup.iter().cloned().collect::<Vec<_>>(),
vec![LOCALHOST.clone()]
);
}
assert!(block_on(client.lookup(
Query::query(Name::from_ascii("localhost.").unwrap(), RecordType::MX),
DnsRequestOptions::default()
))
.is_err());
assert!(block_on(client.lookup(
Query::query(Name::from(Ipv4Addr::new(127, 0, 0, 1)), RecordType::MX),
DnsRequestOptions::default()
))
.is_err());
assert!(block_on(client.lookup(
Query::query(
Name::from(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)),
RecordType::MX
),
DnsRequestOptions::default()
))
.is_err());
}
#[test]
fn test_early_return_invalid() {
let cache = DnsLru::new(0, dns_lru::TtlConfig::default());
let client = mock(vec![empty()]);
let mut client = CachingClient::with_cache(cache, client, false);
assert!(block_on(client.lookup(
Query::query(
Name::from_ascii("horrible.invalid.").unwrap(),
RecordType::A,
),
DnsRequestOptions::default()
))
.is_err());
}
#[test]
fn test_no_error_on_dot_local_no_mdns() {
let cache = DnsLru::new(1, dns_lru::TtlConfig::default());
let mut message = srv_message().unwrap().into_message();
message.add_query(Query::query(
Name::from_ascii("www.example.local.").unwrap(),
RecordType::A,
));
message.add_answer(Record::from_rdata(
Name::from_str("www.example.local.").unwrap(),
86400,
RData::A(A::new(127, 0, 0, 1)),
));
let client = mock(vec![
error(),
Ok(DnsResponse::from_message(message).unwrap()),
]);
let mut client = CachingClient::with_cache(cache, client, false);
assert!(block_on(client.lookup(
Query::query(
Name::from_ascii("www.example.local.").unwrap(),
RecordType::A,
),
DnsRequestOptions::default()
))
.is_ok());
}
}