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
// Copyright 2015-2017 Benjamin Fry <benjaminfry@me.com> // // Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or // http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or // http://opensource.org/licenses/MIT>, at your option. This file may not be // copied, modified, or distributed except according to those terms. //! Configuration for a resolver use std::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr}; use std::ops::{Deref, DerefMut}; use std::time::Duration; use trust_dns_proto::rr::Name; /// Configuration for the upstream nameservers to use for resolution #[derive(Clone, Debug, PartialEq, Eq)] pub struct ResolverConfig { // base search domain domain: Option<Name>, // search domains search: Vec<Name>, // nameservers to use for resolution. name_servers: NameServerConfigGroup, } impl ResolverConfig { /// Creates a new empty configuration pub fn new() -> Self { ResolverConfig { // TODO: this should get the hostname and use the basename as the default domain: None, search: vec![], name_servers: NameServerConfigGroup::new(), } } /// Creates a default configuration, using `8.8.8.8`, `8.8.4.4` and `2001:4860:4860::8888`, `2001:4860:4860::8844` (thank you, Google). /// /// Please see Google's [privacy statement](https://developers.google.com/speed/public-dns/privacy) for important information about what they track, many ISP's track similar information in DNS. To use the the system configuration see: `Resolver::from_system_conf` and `ResolverFuture::from_system_conf` /// /// NameServerConfigGroups can be combined to use a set of different providers, see `NameServerConfigGroup` and `ResolverConfig::from_parts` pub fn google() -> Self { ResolverConfig { // TODO: this should get the hostname and use the basename as the default domain: None, search: vec![], name_servers: NameServerConfigGroup::google(), } } /// Creates a default configuration, using `1.1.1.1`, `1.0.0.1` and `2606:4700:4700::1111`, `2606:4700:4700::1001` (thank you, Cloudflare). /// /// Please see: https://www.cloudflare.com/dns/ /// /// NameServerConfigGroups can be combined to use a set of different providers, see `NameServerConfigGroup` and `ResolverConfig::from_parts` pub fn cloudflare() -> Self { ResolverConfig { // TODO: this should get the hostname and use the basename as the default domain: None, search: vec![], name_servers: NameServerConfigGroup::cloudflare(), } } /// Creates a configuration, using `1.1.1.1`, `1.0.0.1` and `2606:4700:4700::1111`, `2606:4700:4700::1001` (thank you, Cloudflare). This limits the registered connections to just TLS lookups /// /// Please see: https://www.cloudflare.com/dns/ /// /// NameServerConfigGroups can be combined to use a set of different providers, see `NameServerConfigGroup` and `ResolverConfig::from_parts` #[cfg(feature = "dns-over-tls")] pub fn cloudflare_tls() -> Self { ResolverConfig { // TODO: this should get the hostname and use the basename as the default domain: None, search: vec![], name_servers: NameServerConfigGroup::cloudflare_tls(), } } /// Creates a configuration, using `9.9.9.9` and `2620:fe::fe`, the "secure" variants of the quad9 settings (thank you, Quad9). /// /// Please see: https://www.quad9.net/faq/ /// /// NameServerConfigGroups can be combined to use a set of different providers, see `NameServerConfigGroup` and `ResolverConfig::from_parts` pub fn quad9() -> Self { ResolverConfig { // TODO: this should get the hostname and use the basename as the default domain: None, search: vec![], name_servers: NameServerConfigGroup::quad9(), } } /// Creates a configuration, using `9.9.9.9` and `2620:fe::fe`, the "secure" variants of the quad9 settings. This limits the registered connections to just TLS lookups /// /// Please see: https://www.quad9.net/faq/ /// /// NameServerConfigGroups can be combined to use a set of different providers, see `NameServerConfigGroup` and `ResolverConfig::from_parts` #[cfg(feature = "dns-over-tls")] pub fn quad9_tls() -> Self { ResolverConfig { // TODO: this should get the hostname and use the basename as the default domain: None, search: vec![], name_servers: NameServerConfigGroup::quad9_tls(), } } /// Create a ResolverConfig with all parts specified /// /// # Arguments /// /// * `domain` - domain of the entity querying results. If the `Name` being looked up is not an FQDN, then this is the first part appended to attempt a lookup. `ndots` in the `ResolverOption` does take precedence over this. /// * `search` - additional search domains that are attempted if the `Name` is not found in `domain`, defaults to `vec![]` /// * `name_servers` - set of name servers to use for lookups, defaults are Google: `8.8.8.8`, `8.8.4.4` and `2001:4860:4860::8888`, `2001:4860:4860::8844` pub fn from_parts<G: Into<NameServerConfigGroup>>( domain: Option<Name>, search: Vec<Name>, name_servers: G, ) -> Self { ResolverConfig { domain, search, name_servers: name_servers.into(), } } /// Returns the local domain /// /// By default any names will be appended to all non-fully-qualified-domain names, and searched for after any ndots rules pub fn domain(&self) -> Option<&Name> { self.domain.as_ref() } /// Set the domain of the entity querying results. pub fn set_domain(&mut self, domain: Name) { self.domain = Some(domain.clone()); self.search = vec![domain]; } /// Returns the search domains /// /// These will be queried after any local domain and then in the order of the set of search domains pub fn search(&self) -> &[Name] { &self.search } /// Add a search domain pub fn add_search(&mut self, search: Name) { self.search.push(search) } // TODO: consider allowing options per NameServer... like different timeouts? /// Add the configuration for a name server pub fn add_name_server(&mut self, name_server: NameServerConfig) { self.name_servers.push(name_server); } /// Returns a reference to the name servers pub fn name_servers(&self) -> &[NameServerConfig] { &self.name_servers } } impl Default for ResolverConfig { /// Creates a default configuration, using `8.8.8.8`, `8.8.4.4` and `2001:4860:4860::8888`, `2001:4860:4860::8844` (thank you, Google). /// /// Please see Google's [privacy statement](https://developers.google.com/speed/public-dns/privacy) for important information about what they track, many ISP's track similar information in DNS. To use the the system configuration see: `Resolver::from_system_conf` and `ResolverFuture::from_system_conf` fn default() -> Self { ResolverConfig::google() } } /// The protocol on which a NameServer should be communicated with #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub enum Protocol { /// UDP is the traditional DNS port, this is generally the correct choice Udp, /// TCP can be used for large queries, but not all NameServers support it Tcp, /// Tls for DNS over TLS #[cfg(feature = "dns-over-tls")] Tls, /// mDNS protocol for performing multicast lookups #[cfg(feature = "mdns")] Mdns, } impl Protocol { /// Returns true if this is a datagram oriented protocol, e.g. UDP pub fn is_datagram(&self) -> bool { match *self { Protocol::Udp => true, Protocol::Tcp => false, #[cfg(feature = "dns-over-tls")] Protocol::Tls => false, #[cfg(feature = "mdns")] Protocol::Mdns => true, } } /// Returns true if this is a stream oriented protocol, e.g. TCP pub fn is_stream(&self) -> bool { !self.is_datagram() } } /// Configuration for the NameServer #[derive(Clone, Debug, Eq, PartialEq)] pub struct NameServerConfig { /// The address which the DNS NameServer is registered at. pub socket_addr: SocketAddr, /// The protocol to use when communicating with the NameServer. pub protocol: Protocol, /// SPKI name, only relavent for TLS connections pub tls_dns_name: Option<String>, } /// A set of name_servers to associate with a ResolverConfiguration #[derive(Clone, Debug, Eq, PartialEq)] pub struct NameServerConfigGroup(Vec<NameServerConfig>); impl NameServerConfigGroup { /// Creates a new NameServerConfigGroup with a default size of 2 pub fn new() -> Self { // this might be a nice oportunity for SmallVec // most name_server configs will be 2. Self::with_capacity(2) } /// Creates a new NameServiceConfigGroup with the specified capacity pub fn with_capacity(capacity: usize) -> Self { NameServerConfigGroup(Vec::with_capacity(capacity)) } fn from_ips_clear(ips: &[IpAddr], port: u16) -> Self { let mut name_servers = Self::with_capacity(ips.len()); for ip in ips { let udp = NameServerConfig { socket_addr: SocketAddr::new(ip.clone(), port), protocol: Protocol::Udp, tls_dns_name: None, }; let tcp = NameServerConfig { socket_addr: SocketAddr::new(ip.clone(), port), protocol: Protocol::Tcp, tls_dns_name: None, }; name_servers.push(udp); name_servers.push(tcp); } name_servers } #[cfg(feature = "dns-over-tls")] fn from_ips_tls(ips: &[IpAddr], port: u16, tls_dns_name: String) -> Self { let mut name_servers = Self::with_capacity(ips.len()); for ip in ips { let config = NameServerConfig { socket_addr: SocketAddr::new(ip.clone(), port), protocol: Protocol::Tls, tls_dns_name: Some(tls_dns_name.clone()), }; name_servers.push(config); } name_servers } /// Creates a default configuration, using `8.8.8.8`, `8.8.4.4` and `2001:4860:4860::8888`, `2001:4860:4860::8844` (thank you, Google). /// /// Please see Google's [privacy statement](https://developers.google.com/speed/public-dns/privacy) for important information about what they track, many ISP's track similar information in DNS. To use the the system configuration see: `Resolver::from_system_conf` and `ResolverFuture::from_system_conf` pub fn google() -> Self { Self::from_ips_clear( &[ IpAddr::V4(Ipv4Addr::new(8, 8, 8, 8)), IpAddr::V4(Ipv4Addr::new(8, 8, 4, 4)), IpAddr::V6(Ipv6Addr::new(0x2001, 0x4860, 0x4860, 0, 0, 0, 0, 0x8888)), IpAddr::V6(Ipv6Addr::new(0x2001, 0x4860, 0x4860, 0, 0, 0, 0, 0x8844)), ], 53, ) } /// Creates a default configuration, using `1.1.1.1`, `1.0.0.1` and `2606:4700:4700::1111`, `2606:4700:4700::1001` (thank you, Cloudflare). /// /// Please see: https://www.cloudflare.com/dns/ pub fn cloudflare() -> Self { Self::from_ips_clear( &[ IpAddr::V4(Ipv4Addr::new(1, 1, 1, 1)), IpAddr::V4(Ipv4Addr::new(1, 0, 0, 1)), IpAddr::V6(Ipv6Addr::new(0x2606, 0x4700, 0x4700, 0, 0, 0, 0, 0x1111)), IpAddr::V6(Ipv6Addr::new(0x2606, 0x4700, 0x4700, 0, 0, 0, 0, 0x1001)), ], 53, ) } /// Creates a configuration, using `1.1.1.1`, `1.0.0.1` and `2606:4700:4700::1111`, `2606:4700:4700::1001` (thank you, Cloudflare). This limits the registered connections to just TLS lookups /// /// Please see: https://www.cloudflare.com/dns/ #[cfg(feature = "dns-over-tls")] pub fn cloudflare_tls() -> Self { Self::from_ips_tls( &[ IpAddr::V4(Ipv4Addr::new(1, 1, 1, 1)), IpAddr::V4(Ipv4Addr::new(1, 0, 0, 1)), IpAddr::V6(Ipv6Addr::new(0x2606, 0x4700, 0x4700, 0, 0, 0, 0, 0x1111)), IpAddr::V6(Ipv6Addr::new(0x2606, 0x4700, 0x4700, 0, 0, 0, 0, 0x1001)), ], 853, "cloudflare-dns.com".to_string(), ) } /// Creates a configuration, using `9.9.9.9` and `2620:fe::fe`, the "secure" variants of the quad9 settings (thank you, Quad9). /// /// Please see: https://www.quad9.net/faq/ pub fn quad9() -> Self { Self::from_ips_clear( &[ IpAddr::V4(Ipv4Addr::new(9, 9, 9, 9)), IpAddr::V6(Ipv6Addr::new(0x2620, 0x00fe, 0, 0, 0, 0, 0, 0x00fe)), ], 53, ) } /// Creates a configuration, using `9.9.9.9` and `2620:fe::fe`, the "secure" variants of the quad9 settings. This limits the registered connections to just TLS lookups /// /// Please see: https://www.quad9.net/faq/ #[cfg(feature = "dns-over-tls")] pub fn quad9_tls() -> Self { Self::from_ips_tls( &[ IpAddr::V4(Ipv4Addr::new(9, 9, 9, 9)), IpAddr::V6(Ipv6Addr::new(0x2620, 0x00fe, 0, 0, 0, 0, 0, 0x00fe)), ], 853, "dns.quad9.net".to_string(), ) } /// Merges this set of NameServerConfigs with the other /// /// ``` /// use std::net::{SocketAddr, Ipv4Addr}; /// use trust_dns_resolver::config::NameServerConfigGroup; /// /// let mut group = NameServerConfigGroup::google(); /// group.merge(NameServerConfigGroup::cloudflare()); /// group.merge(NameServerConfigGroup::quad9()); /// /// assert!(group.iter().any(|c| c.socket_addr == SocketAddr::new(Ipv4Addr::new(8, 8, 8, 8).into(), 53))); /// assert!(group.iter().any(|c| c.socket_addr == SocketAddr::new(Ipv4Addr::new(1, 1, 1, 1).into(), 53))); /// assert!(group.iter().any(|c| c.socket_addr == SocketAddr::new(Ipv4Addr::new(9, 9, 9, 9).into(), 53))); /// ``` pub fn merge(&mut self, mut other: Self) { self.append(&mut other) } } impl Deref for NameServerConfigGroup { type Target = Vec<NameServerConfig>; fn deref(&self) -> &Self::Target { &self.0 } } impl DerefMut for NameServerConfigGroup { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 } } impl From<Vec<NameServerConfig>> for NameServerConfigGroup { fn from(configs: Vec<NameServerConfig>) -> Self { NameServerConfigGroup(configs) } } /// The lookup ip strategy #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum LookupIpStrategy { /// Only query for A (Ipv4) records Ipv4Only, /// Only query for AAAA (Ipv6) records Ipv6Only, /// Query for A and AAAA in parallel Ipv4AndIpv6, /// Query for Ipv6 if that fails, query for Ipv4 Ipv6thenIpv4, /// Query for Ipv4 if that fails, query for Ipv6 (default) Ipv4thenIpv6, } impl Default for LookupIpStrategy { /// Returns Ipv4AndIpv6 as the default. fn default() -> Self { LookupIpStrategy::Ipv4thenIpv6 } } /// Configuration for the Resolver #[derive(Debug, Clone, Copy, Eq, PartialEq)] #[allow(dead_code)] // TODO: remove after all params are supported pub struct ResolverOpts { /// Sets the number of dots that must appear (unless it's a final dot representing the root) /// that must appear before a query is assumted to include the TLD. The default is one, which /// means that `www` would never be assumed to be a TLD, and would always be appended to either /// the search pub ndots: usize, /// Specify the timeout for a request. Defaults to 5 seconds pub timeout: Duration, /// Number of attempts before giving up. Defaults to 2 pub attempts: usize, /// Rotate through the resource records in the response (if there is more than one for a given name) pub(crate) rotate: bool, /// Validate the names in the response, not implemented don't really see the point unless you need to support /// badly configured DNS pub(crate) check_names: bool, /// Enable edns, for larger records pub(crate) edns0: bool, /// Use DNSSec to validate the request pub validate: bool, /// The ip_strategy for the Resolver to use when lookup Ipv4 or Ipv6 addresses pub ip_strategy: LookupIpStrategy, /// Cache size is in number of records (some records can be large) pub cache_size: usize, /// Check /ect/hosts file before dns requery (only works for unix like OS) pub use_hosts_file: bool, } impl Default for ResolverOpts { /// Default values for the Reolver configuration. /// /// This follows the resolv.conf defaults as defined in the [Linux man pages](http://man7.org/linux/man-pages/man5/resolv.conf.5.html) fn default() -> Self { ResolverOpts { ndots: 1, timeout: Duration::from_secs(5), attempts: 2, rotate: false, check_names: true, edns0: false, validate: false, ip_strategy: LookupIpStrategy::default(), cache_size: 32, use_hosts_file: true, } } }