mirror of https://github.com/fafhrd91/actix-web
feat(awc): replace trust dns by hickory dns
This commit is contained in:
parent
8115c818c1
commit
a2abebb256
|
@ -5,6 +5,7 @@
|
||||||
- Update `brotli` dependency to `7`.
|
- Update `brotli` dependency to `7`.
|
||||||
- Prevent panics on connection pool drop when Tokio runtime is shutdown early.
|
- Prevent panics on connection pool drop when Tokio runtime is shutdown early.
|
||||||
- Minimum supported Rust version (MSRV) is now 1.75.
|
- Minimum supported Rust version (MSRV) is now 1.75.
|
||||||
|
- Replace `trust-dns-resolver` with `hickory-resolver` for DNS resolution in awc when using `trust-dns` feature.
|
||||||
|
|
||||||
## 3.5.1
|
## 3.5.1
|
||||||
|
|
||||||
|
|
|
@ -83,8 +83,10 @@ compress-zstd = ["actix-http/compress-zstd", "__compress"]
|
||||||
# Cookie parsing and cookie jar
|
# Cookie parsing and cookie jar
|
||||||
cookies = ["dep:cookie"]
|
cookies = ["dep:cookie"]
|
||||||
|
|
||||||
# Use `trust-dns-resolver` crate as DNS resolver
|
# Use `trust-dns-resolver` crate as DNS resolver, deprecated in favor of `hickory-dns` which is a drop-in replacement
|
||||||
trust-dns = ["trust-dns-resolver"]
|
trust-dns = ["hickory-dns"]
|
||||||
|
# Use `hickory-dns-resolver` crate as DNS resolver
|
||||||
|
hickory-dns = ["hickory-resolver"]
|
||||||
|
|
||||||
# Internal (PRIVATE!) features used to aid testing and checking feature status.
|
# Internal (PRIVATE!) features used to aid testing and checking feature status.
|
||||||
# Don't rely on these whatsoever. They may disappear at anytime.
|
# Don't rely on these whatsoever. They may disappear at anytime.
|
||||||
|
@ -130,7 +132,7 @@ tls-rustls-0_21 = { package = "rustls", version = "0.21", optional = true, featu
|
||||||
tls-rustls-0_22 = { package = "rustls", version = "0.22", optional = true }
|
tls-rustls-0_22 = { package = "rustls", version = "0.22", optional = true }
|
||||||
tls-rustls-0_23 = { package = "rustls", version = "0.23", optional = true, default-features = false }
|
tls-rustls-0_23 = { package = "rustls", version = "0.23", optional = true, default-features = false }
|
||||||
|
|
||||||
trust-dns-resolver = { version = "0.23", optional = true }
|
hickory-resolver = { version = "0.24.2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-http = { version = "3.7", features = ["openssl"] }
|
actix-http = { version = "3.7", features = ["openssl"] }
|
||||||
|
|
|
@ -1032,7 +1032,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "trust-dns"))]
|
#[cfg(not(feature = "hickory-dns"))]
|
||||||
mod resolver {
|
mod resolver {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
|
@ -1041,12 +1041,12 @@ mod resolver {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "trust-dns")]
|
#[cfg(feature = "hickory-dns")]
|
||||||
mod resolver {
|
mod resolver {
|
||||||
use std::{cell::RefCell, net::SocketAddr};
|
use std::{cell::RefCell, net::SocketAddr};
|
||||||
|
|
||||||
use actix_tls::connect::Resolve;
|
use actix_tls::connect::Resolve;
|
||||||
use trust_dns_resolver::{
|
use hickory_resolver::{
|
||||||
config::{ResolverConfig, ResolverOpts},
|
config::{ResolverConfig, ResolverOpts},
|
||||||
system_conf::read_system_conf,
|
system_conf::read_system_conf,
|
||||||
TokioAsyncResolver,
|
TokioAsyncResolver,
|
||||||
|
@ -1056,9 +1056,9 @@ mod resolver {
|
||||||
|
|
||||||
pub(super) fn resolver() -> Resolver {
|
pub(super) fn resolver() -> Resolver {
|
||||||
// new type for impl Resolve trait for TokioAsyncResolver.
|
// new type for impl Resolve trait for TokioAsyncResolver.
|
||||||
struct TrustDnsResolver(TokioAsyncResolver);
|
struct HickoryDnsResolver(TokioAsyncResolver);
|
||||||
|
|
||||||
impl Resolve for TrustDnsResolver {
|
impl Resolve for HickoryDnsResolver {
|
||||||
fn lookup<'a>(
|
fn lookup<'a>(
|
||||||
&'a self,
|
&'a self,
|
||||||
host: &'a str,
|
host: &'a str,
|
||||||
|
@ -1080,11 +1080,11 @@ mod resolver {
|
||||||
|
|
||||||
// resolver struct is cached in thread local so new clients can reuse the existing instance
|
// resolver struct is cached in thread local so new clients can reuse the existing instance
|
||||||
thread_local! {
|
thread_local! {
|
||||||
static TRUST_DNS_RESOLVER: RefCell<Option<Resolver>> = const { RefCell::new(None) };
|
static HICKORY_DNS_RESOLVER: RefCell<Option<Resolver>> = const { RefCell::new(None) };
|
||||||
}
|
}
|
||||||
|
|
||||||
// get from thread local or construct a new trust-dns resolver.
|
// get from thread local or construct a new hickory dns resolver.
|
||||||
TRUST_DNS_RESOLVER.with(|local| {
|
HICKORY_DNS_RESOLVER.with(|local| {
|
||||||
let resolver = local.borrow().as_ref().map(Clone::clone);
|
let resolver = local.borrow().as_ref().map(Clone::clone);
|
||||||
|
|
||||||
match resolver {
|
match resolver {
|
||||||
|
@ -1094,15 +1094,15 @@ mod resolver {
|
||||||
let (cfg, opts) = match read_system_conf() {
|
let (cfg, opts) = match read_system_conf() {
|
||||||
Ok((cfg, opts)) => (cfg, opts),
|
Ok((cfg, opts)) => (cfg, opts),
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::error!("Trust-DNS can not load system config: {err}");
|
log::error!("Hickory-DNS can not load system config: {err}");
|
||||||
(ResolverConfig::default(), ResolverOpts::default())
|
(ResolverConfig::default(), ResolverOpts::default())
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let resolver = TokioAsyncResolver::tokio(cfg, opts);
|
let resolver = TokioAsyncResolver::tokio(cfg, opts);
|
||||||
|
|
||||||
// box trust dns resolver and put it in thread local.
|
// box hickory dns resolver and put it in thread local.
|
||||||
let resolver = Resolver::custom(TrustDnsResolver(resolver));
|
let resolver = Resolver::custom(HickoryDnsResolver(resolver));
|
||||||
*local.borrow_mut() = Some(resolver.clone());
|
*local.borrow_mut() = Some(resolver.clone());
|
||||||
|
|
||||||
resolver
|
resolver
|
||||||
|
|
Loading…
Reference in New Issue