diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index bb3d4a1a..52ce7751 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -1,9 +1,13 @@ # Changes ## Unreleased - 2021-xx-xx -* `impl Default` for `connect::Resolver`. [#???] +* Implement `Default` for `connect::Resolver`. [#422] +* Derive `Debug` for `connect::Connection`. [#422] +* Remove redundant `connect::Connection::from_parts` method. [#422] +* Rename TLS acceptor service future types and hide from docs. [#422] +* Implement `Error` for `ConnectError`. [#422] -[#???]: https://github.com/actix/actix-net/pull/??? +[#422]: https://github.com/actix/actix-net/pull/422 ## 3.0.0-beta.9 - 2021-11-22 @@ -44,7 +48,7 @@ * Remove `connect::ssl::openssl::OpensslConnectService`. [#297] * Add `connect::ssl::native_tls` module for native tls support. [#295] * Rename `accept::{nativetls => native_tls}`. [#295] -* Remove `connect::TcpConnectService` type. service caller expect a `TcpStream` should use +* Remove `connect::TcpConnectService` type. Service caller expecting a `TcpStream` should use `connect::ConnectService` instead and call `Connection::into_parts`. [#299] [#295]: https://github.com/actix/actix-net/pull/295 diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 5349f330..b9b75d35 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -20,7 +20,7 @@ name = "actix_tls" path = "src/lib.rs" [features] -default = ["accept", "connect", "uri"] +default = ["accept", "connect", "uri", "rustls", "openssl", "native-tls"] # enable acceptor services accept = [] diff --git a/actix-tls/src/accept/native_tls.rs b/actix-tls/src/accept/native_tls.rs index e61300e6..c6b77a39 100644 --- a/actix-tls/src/accept/native_tls.rs +++ b/actix-tls/src/accept/native_tls.rs @@ -1,3 +1,5 @@ +//! Native-TLS based acceptor service. + use std::{ convert::Infallible, io::{self, IoSlice}, @@ -20,30 +22,30 @@ pub use tokio_native_tls::{native_tls::Error, TlsAcceptor}; use super::{TlsError, DEFAULT_TLS_HANDSHAKE_TIMEOUT, MAX_CONN_COUNTER}; -/// Wrapper type for `tokio_native_tls::TlsStream` in order to impl `ActixStream` trait. -pub struct TlsStream(tokio_native_tls::TlsStream); +/// Wraps a [`tokio_native_tls::TlsStream`] in order to impl [`ActixStream`] trait. +pub struct TlsStream(tokio_native_tls::TlsStream); -impl From> for TlsStream { - fn from(stream: tokio_native_tls::TlsStream) -> Self { +impl From> for TlsStream { + fn from(stream: tokio_native_tls::TlsStream) -> Self { Self(stream) } } -impl Deref for TlsStream { - type Target = tokio_native_tls::TlsStream; +impl Deref for TlsStream { + type Target = tokio_native_tls::TlsStream; fn deref(&self) -> &Self::Target { &self.0 } } -impl DerefMut for TlsStream { +impl DerefMut for TlsStream { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 } } -impl AsyncRead for TlsStream { +impl AsyncRead for TlsStream { fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, @@ -53,7 +55,7 @@ impl AsyncRead for TlsStream { } } -impl AsyncWrite for TlsStream { +impl AsyncWrite for TlsStream { fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, @@ -83,13 +85,13 @@ impl AsyncWrite for TlsStream { } } -impl ActixStream for TlsStream { +impl ActixStream for TlsStream { fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll> { - T::poll_read_ready((&**self).get_ref().get_ref().get_ref(), cx) + IO::poll_read_ready((&**self).get_ref().get_ref().get_ref(), cx) } fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll> { - T::poll_write_ready((&**self).get_ref().get_ref().get_ref(), cx) + IO::poll_write_ready((&**self).get_ref().get_ref().get_ref(), cx) } } @@ -130,8 +132,8 @@ impl Clone for Acceptor { } } -impl ServiceFactory for Acceptor { - type Response = TlsStream; +impl ServiceFactory for Acceptor { + type Response = TlsStream; type Error = TlsError; type Config = (); type Service = NativeTlsAcceptorService; @@ -151,14 +153,15 @@ impl ServiceFactory for Acceptor { } } +/// Native-TLS based acceptor service. pub struct NativeTlsAcceptorService { acceptor: TlsAcceptor, conns: Counter, handshake_timeout: Duration, } -impl Service for NativeTlsAcceptorService { - type Response = TlsStream; +impl Service for NativeTlsAcceptorService { + type Response = TlsStream; type Error = TlsError; type Future = LocalBoxFuture<'static, Result>; @@ -170,7 +173,7 @@ impl Service for NativeTlsAcceptorService { } } - fn call(&self, io: T) -> Self::Future { + fn call(&self, io: IO) -> Self::Future { let guard = self.conns.get(); let acceptor = self.acceptor.clone(); diff --git a/actix-tls/src/accept/openssl.rs b/actix-tls/src/accept/openssl.rs index cb1887ea..3320fcce 100644 --- a/actix-tls/src/accept/openssl.rs +++ b/actix-tls/src/accept/openssl.rs @@ -1,3 +1,5 @@ +//! OpenSSL based acceptor service. + use std::{ convert::Infallible, future::Future, @@ -16,7 +18,6 @@ use actix_rt::{ use actix_service::{Service, ServiceFactory}; use actix_utils::counter::{Counter, CounterGuard}; use futures_core::future::LocalBoxFuture; - pub use openssl::ssl::{ AlpnError, Error as SslError, HandshakeError, Ssl, SslAcceptor, SslAcceptorBuilder, }; @@ -24,30 +25,30 @@ use pin_project_lite::pin_project; use super::{TlsError, DEFAULT_TLS_HANDSHAKE_TIMEOUT, MAX_CONN_COUNTER}; -/// Wrapper type for `tokio_openssl::SslStream` in order to impl `ActixStream` trait. -pub struct TlsStream(tokio_openssl::SslStream); +/// Wraps a [`tokio_openssl::SslStream`] in order to impl [`ActixStream`] trait. +pub struct TlsStream(tokio_openssl::SslStream); -impl From> for TlsStream { - fn from(stream: tokio_openssl::SslStream) -> Self { +impl From> for TlsStream { + fn from(stream: tokio_openssl::SslStream) -> Self { Self(stream) } } -impl Deref for TlsStream { - type Target = tokio_openssl::SslStream; +impl Deref for TlsStream { + type Target = tokio_openssl::SslStream; fn deref(&self) -> &Self::Target { &self.0 } } -impl DerefMut for TlsStream { +impl DerefMut for TlsStream { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 } } -impl AsyncRead for TlsStream { +impl AsyncRead for TlsStream { fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, @@ -57,7 +58,7 @@ impl AsyncRead for TlsStream { } } -impl AsyncWrite for TlsStream { +impl AsyncWrite for TlsStream { fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, @@ -87,13 +88,13 @@ impl AsyncWrite for TlsStream { } } -impl ActixStream for TlsStream { +impl ActixStream for TlsStream { fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll> { - T::poll_read_ready((&**self).get_ref(), cx) + IO::poll_read_ready((&**self).get_ref(), cx) } fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll> { - T::poll_write_ready((&**self).get_ref(), cx) + IO::poll_write_ready((&**self).get_ref(), cx) } } @@ -134,8 +135,8 @@ impl Clone for Acceptor { } } -impl ServiceFactory for Acceptor { - type Response = TlsStream; +impl ServiceFactory for Acceptor { + type Response = TlsStream; type Error = TlsError; type Config = (); type Service = AcceptorService; @@ -155,16 +156,17 @@ impl ServiceFactory for Acceptor { } } +/// OpenSSL based acceptor service. pub struct AcceptorService { acceptor: SslAcceptor, conns: Counter, handshake_timeout: Duration, } -impl Service for AcceptorService { - type Response = TlsStream; +impl Service for AcceptorService { + type Response = TlsStream; type Error = TlsError; - type Future = AcceptorServiceResponse; + type Future = AcceptFut; fn poll_ready(&self, ctx: &mut Context<'_>) -> Poll> { if self.conns.available(ctx) { @@ -174,11 +176,11 @@ impl Service for AcceptorService { } } - fn call(&self, io: T) -> Self::Future { + fn call(&self, io: IO) -> Self::Future { let ssl_ctx = self.acceptor.context(); let ssl = Ssl::new(ssl_ctx).expect("Provided SSL acceptor was invalid."); - AcceptorServiceResponse { + AcceptFut { _guard: self.conns.get(), timeout: sleep(self.handshake_timeout), stream: Some(tokio_openssl::SslStream::new(ssl, io).unwrap()), @@ -187,16 +189,18 @@ impl Service for AcceptorService { } pin_project! { - pub struct AcceptorServiceResponse { - stream: Option>, + /// Accept future for Rustls service. + #[doc(hidden)] + pub struct AcceptFut { + stream: Option>, #[pin] timeout: Sleep, _guard: CounterGuard, } } -impl Future for AcceptorServiceResponse { - type Output = Result, TlsError>; +impl Future for AcceptFut { + type Output = Result, TlsError>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.project(); diff --git a/actix-tls/src/accept/rustls.rs b/actix-tls/src/accept/rustls.rs index b0f31365..e7c34d41 100644 --- a/actix-tls/src/accept/rustls.rs +++ b/actix-tls/src/accept/rustls.rs @@ -1,3 +1,5 @@ +//! Rustls based acceptor service. + use std::{ convert::Infallible, future::Future, @@ -18,36 +20,35 @@ use actix_service::{Service, ServiceFactory}; use actix_utils::counter::{Counter, CounterGuard}; use futures_core::future::LocalBoxFuture; use pin_project_lite::pin_project; -use tokio_rustls::{Accept, TlsAcceptor}; - pub use tokio_rustls::rustls::ServerConfig; +use tokio_rustls::{Accept, TlsAcceptor}; use super::{TlsError, DEFAULT_TLS_HANDSHAKE_TIMEOUT, MAX_CONN_COUNTER}; -/// Wrapper type for `tokio_openssl::SslStream` in order to impl `ActixStream` trait. -pub struct TlsStream(tokio_rustls::server::TlsStream); +/// Wraps a [`tokio_rustls::server::TlsStream`] in order to impl [`ActixStream`] trait. +pub struct TlsStream(tokio_rustls::server::TlsStream); -impl From> for TlsStream { - fn from(stream: tokio_rustls::server::TlsStream) -> Self { +impl From> for TlsStream { + fn from(stream: tokio_rustls::server::TlsStream) -> Self { Self(stream) } } -impl Deref for TlsStream { - type Target = tokio_rustls::server::TlsStream; +impl Deref for TlsStream { + type Target = tokio_rustls::server::TlsStream; fn deref(&self) -> &Self::Target { &self.0 } } -impl DerefMut for TlsStream { +impl DerefMut for TlsStream { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 } } -impl AsyncRead for TlsStream { +impl AsyncRead for TlsStream { fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, @@ -57,7 +58,7 @@ impl AsyncRead for TlsStream { } } -impl AsyncWrite for TlsStream { +impl AsyncWrite for TlsStream { fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, @@ -87,13 +88,13 @@ impl AsyncWrite for TlsStream { } } -impl ActixStream for TlsStream { +impl ActixStream for TlsStream { fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll> { - T::poll_read_ready((&**self).get_ref().0, cx) + IO::poll_read_ready((&**self).get_ref().0, cx) } fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll> { - T::poll_write_ready((&**self).get_ref().0, cx) + IO::poll_write_ready((&**self).get_ref().0, cx) } } @@ -134,8 +135,8 @@ impl Clone for Acceptor { } } -impl ServiceFactory for Acceptor { - type Response = TlsStream; +impl ServiceFactory for Acceptor { + type Response = TlsStream; type Error = TlsError; type Config = (); type Service = AcceptorService; @@ -155,17 +156,17 @@ impl ServiceFactory for Acceptor { } } -/// Rustls based `Acceptor` service +/// Rustls based acceptor service. pub struct AcceptorService { acceptor: TlsAcceptor, conns: Counter, handshake_timeout: Duration, } -impl Service for AcceptorService { - type Response = TlsStream; +impl Service for AcceptorService { + type Response = TlsStream; type Error = TlsError; - type Future = AcceptorServiceFut; + type Future = AcceptFut; fn poll_ready(&self, cx: &mut Context<'_>) -> Poll> { if self.conns.available(cx) { @@ -175,8 +176,8 @@ impl Service for AcceptorService { } } - fn call(&self, req: T) -> Self::Future { - AcceptorServiceFut { + fn call(&self, req: IO) -> Self::Future { + AcceptFut { fut: self.acceptor.accept(req), timeout: sleep(self.handshake_timeout), _guard: self.conns.get(), @@ -185,16 +186,18 @@ impl Service for AcceptorService { } pin_project! { - pub struct AcceptorServiceFut { - fut: Accept, + /// Accept future for Rustls service. + #[doc(hidden)] + pub struct AcceptFut { + fut: Accept, #[pin] timeout: Sleep, _guard: CounterGuard, } } -impl Future for AcceptorServiceFut { - type Output = Result, TlsError>; +impl Future for AcceptFut { + type Output = Result, TlsError>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let mut this = self.project(); diff --git a/actix-tls/src/connect/connect.rs b/actix-tls/src/connect/connect.rs index 65d9e05e..86f702da 100755 --- a/actix-tls/src/connect/connect.rs +++ b/actix-tls/src/connect/connect.rs @@ -4,6 +4,7 @@ use std::{ iter::{self, FromIterator as _}, mem, net::{IpAddr, SocketAddr}, + ops, }; /// Parse a host into parts (hostname and port). @@ -218,71 +219,68 @@ impl iter::ExactSizeIterator for ConnectAddrsIter<'_> {} impl iter::FusedIterator for ConnectAddrsIter<'_> {} -pub struct Connection { - io: U, - req: T, +/// Holds underlying I/O and original connection request. +#[derive(Debug)] +pub struct Connection { + req: R, + io: IO, } -impl Connection { - pub fn new(io: U, req: T) -> Self { +impl Connection { + /// Construct new `Connection` from + pub fn new(io: IO, req: R) -> Self { Self { io, req } } } -impl Connection { - /// Reconstruct from a parts. - pub fn from_parts(io: U, req: T) -> Self { - Self { io, req } - } - - /// Deconstruct into a parts. - pub fn into_parts(self) -> (U, T) { +impl Connection { + /// Deconstructs into parts. + pub fn into_parts(self) -> (IO, R) { (self.io, self.req) } - /// Replace inclosed object, return new Stream and old object - pub fn replace_io(self, io: Y) -> (U, Connection) { + /// Replaces underlying IO, returning old UI and new `Connection`. + pub fn replace_io(self, io: IO2) -> (IO, Connection) { (self.io, Connection { io, req: self.req }) } - /// Returns a shared reference to the underlying stream. - pub fn io_ref(&self) -> &U { + /// Returns a shared reference to the underlying IO. + pub fn io_ref(&self) -> &IO { &self.io } - /// Returns a mutable reference to the underlying stream. - pub fn io_mut(&mut self) -> &mut U { + /// Returns a mutable reference to the underlying IO. + pub fn io_mut(&mut self) -> &mut IO { &mut self.io } + + /// Returns a reference to the connection request. + pub fn request(&self) -> &R { + &self.req + } } -impl Connection { +impl Connection { /// Get hostname. pub fn host(&self) -> &str { self.req.hostname() } } -impl std::ops::Deref for Connection { - type Target = U; +impl ops::Deref for Connection { + type Target = IO; - fn deref(&self) -> &U { + fn deref(&self) -> &IO { &self.io } } -impl std::ops::DerefMut for Connection { - fn deref_mut(&mut self) -> &mut U { +impl ops::DerefMut for Connection { + fn deref_mut(&mut self) -> &mut IO { &mut self.io } } -impl fmt::Debug for Connection { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - write!(f, "Stream {{{:?}}}", self.io) - } -} - fn parse_host(host: &str) -> (&str, Option) { let mut parts_iter = host.splitn(2, ':'); diff --git a/actix-tls/src/connect/connector.rs b/actix-tls/src/connect/connector.rs index 9438404e..ab9b08be 100755 --- a/actix-tls/src/connect/connector.rs +++ b/actix-tls/src/connect/connector.rs @@ -13,8 +13,10 @@ use futures_core::{future::LocalBoxFuture, ready}; use log::{error, trace}; use tokio_util::sync::ReusableBoxFuture; -use super::connect::{Address, Connect, ConnectAddrs, Connection}; -use super::error::ConnectError; +use super::{ + connect::{Address, Connect, ConnectAddrs, Connection}, + error::ConnectError, +}; /// TCP connector service factory #[derive(Debug, Copy, Clone)] @@ -27,8 +29,8 @@ impl TcpConnectorFactory { } } -impl ServiceFactory> for TcpConnectorFactory { - type Response = Connection; +impl ServiceFactory> for TcpConnectorFactory { + type Response = Connection; type Error = ConnectError; type Config = (); type Service = TcpConnector; @@ -41,18 +43,18 @@ impl ServiceFactory> for TcpConnectorFactory { } } -/// TCP connector service +/// TCP connector service. #[derive(Debug, Copy, Clone)] pub struct TcpConnector; -impl Service> for TcpConnector { - type Response = Connection; +impl Service> for TcpConnector { + type Response = Connection; type Error = ConnectError; - type Future = TcpConnectorResponse; + type Future = TcpConnectorResponse; actix_service::always_ready!(); - fn call(&self, req: Connect) -> Self::Future { + fn call(&self, req: Connect) -> Self::Future { let port = req.port(); let Connect { req, @@ -66,9 +68,9 @@ impl Service> for TcpConnector { } /// TCP stream connector response future -pub enum TcpConnectorResponse { +pub enum TcpConnectorResponse { Response { - req: Option, + req: Option, port: u16, local_addr: Option, addrs: Option>, @@ -77,13 +79,13 @@ pub enum TcpConnectorResponse { Error(Option), } -impl TcpConnectorResponse { +impl TcpConnectorResponse { pub(crate) fn new( - req: T, + req: R, port: u16, local_addr: Option, addr: ConnectAddrs, - ) -> TcpConnectorResponse { + ) -> TcpConnectorResponse { if addr.is_none() { error!("TCP connector: unresolved connection address"); return TcpConnectorResponse::Error(Some(ConnectError::Unresolved)); @@ -123,8 +125,8 @@ impl TcpConnectorResponse { } } -impl Future for TcpConnectorResponse { - type Output = Result, ConnectError>; +impl Future for TcpConnectorResponse { + type Output = Result, ConnectError>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { match self.get_mut() { diff --git a/actix-tls/src/connect/error.rs b/actix-tls/src/connect/error.rs index 5d8cb9db..46944988 100644 --- a/actix-tls/src/connect/error.rs +++ b/actix-tls/src/connect/error.rs @@ -1,15 +1,16 @@ -use std::io; +use std::{error::Error, io}; use derive_more::Display; +/// Errors that can result from using a connector service. #[derive(Debug, Display)] pub enum ConnectError { /// Failed to resolve the hostname - #[display(fmt = "Failed resolving hostname: {}", _0)] + #[display(fmt = "Failed resolving hostname")] Resolver(Box), - /// No dns records - #[display(fmt = "No dns records found for the input")] + /// No DNS records + #[display(fmt = "No DNS records found for the input")] NoRecords, /// Invalid input @@ -23,3 +24,13 @@ pub enum ConnectError { #[display(fmt = "{}", _0)] Io(io::Error), } + +impl Error for ConnectError { + fn source(&self) -> Option<&(dyn Error + 'static)> { + match self { + Self::Resolver(err) => Some(&**err), + Self::Io(err) => Some(err), + Self::NoRecords | Self::InvalidInput | Self::Unresolved => None, + } + } +} diff --git a/actix-tls/src/connect/resolve.rs b/actix-tls/src/connect/resolve.rs index 7b01ede4..c9639bcf 100755 --- a/actix-tls/src/connect/resolve.rs +++ b/actix-tls/src/connect/resolve.rs @@ -34,8 +34,8 @@ impl ResolverFactory { } } -impl ServiceFactory> for ResolverFactory { - type Response = Connect; +impl ServiceFactory> for ResolverFactory { + type Response = Connect; type Error = ConnectError; type Config = (); type Service = Resolver; @@ -92,7 +92,7 @@ impl ServiceFactory> for ResolverFactory { /// let resolver = Resolver::new_custom(resolver); /// /// // pass custom resolver to connector builder. -/// // connector would then be usable as a service or `awc`'s connector. +/// // connector would then be usable as a service or an `awc` connector. /// let connector = actix_tls::connect::new_connector::<&str>(resolver.clone()); /// /// // resolver can be passed to connector factory where returned service factory @@ -100,7 +100,7 @@ impl ServiceFactory> for ResolverFactory { /// let factory = actix_tls::connect::new_connector_factory::<&str>(resolver); /// ``` pub trait Resolve { - /// Given DNS lookup information, returns a futures that completes with socket information. + /// Given DNS lookup information, returns a future that completes with socket information. fn lookup<'a>( &'a self, host: &'a str, @@ -132,8 +132,8 @@ impl Resolver { Self::Custom(Rc::new(resolver)) } - // look up with default resolver - fn look_up(req: &Connect) -> JoinHandle>> { + /// Resolve DNS with default resolver. + fn look_up(req: &Connect) -> JoinHandle>> { let host = req.hostname(); // TODO: Connect should always return host(name?) with port if possible; basically try to // reduce ability to create conflicting lookup info by having port in host string being @@ -153,19 +153,20 @@ impl Resolver { format!("{}:{}", host, req.port()) }; - // run blocking DNS lookup in thread pool + // run blocking DNS lookup in thread pool since DNS lookups can take upwards of seconds on + // some platforms if conditions are poor and OS-level cache is not populated spawn_blocking(move || std::net::ToSocketAddrs::to_socket_addrs(&host)) } } -impl Service> for Resolver { - type Response = Connect; +impl Service> for Resolver { + type Response = Connect; type Error = ConnectError; - type Future = ResolverFuture; + type Future = ResolverFuture; actix_service::always_ready!(); - fn call(&self, req: Connect) -> Self::Future { + fn call(&self, req: Connect) -> Self::Future { if req.addr.is_some() { ResolverFuture::Connected(Some(req)) } else if let Ok(ip) = req.hostname().parse() { @@ -203,17 +204,17 @@ impl Service> for Resolver { } } -pub enum ResolverFuture { - Connected(Option>), +pub enum ResolverFuture { + Connected(Option>), LookUp( JoinHandle>>, - Option>, + Option>, ), - LookupCustom(LocalBoxFuture<'static, Result, ConnectError>>), + LookupCustom(LocalBoxFuture<'static, Result, ConnectError>>), } -impl Future for ResolverFuture { - type Output = Result, ConnectError>; +impl Future for ResolverFuture { + type Output = Result, ConnectError>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { match self.get_mut() { diff --git a/actix-tls/src/connect/service.rs b/actix-tls/src/connect/service.rs index 9961498e..0bfa8302 100755 --- a/actix-tls/src/connect/service.rs +++ b/actix-tls/src/connect/service.rs @@ -19,7 +19,7 @@ pub struct ConnectServiceFactory { } impl ConnectServiceFactory { - /// Construct new ConnectService factory + /// Constructs new ConnectService factory. pub fn new(resolver: Resolver) -> Self { ConnectServiceFactory { tcp: TcpConnectorFactory, @@ -27,7 +27,7 @@ impl ConnectServiceFactory { } } - /// Construct new service + /// Constructs new service. pub fn service(&self) -> ConnectService { ConnectService { tcp: self.tcp.service(), @@ -45,8 +45,8 @@ impl Clone for ConnectServiceFactory { } } -impl ServiceFactory> for ConnectServiceFactory { - type Response = Connection; +impl ServiceFactory> for ConnectServiceFactory { + type Response = Connection; type Error = ConnectError; type Config = (); type Service = ConnectService; @@ -65,14 +65,14 @@ pub struct ConnectService { resolver: Resolver, } -impl Service> for ConnectService { - type Response = Connection; +impl Service> for ConnectService { + type Response = Connection; type Error = ConnectError; - type Future = ConnectServiceResponse; + type Future = ConnectServiceResponse; actix_service::always_ready!(); - fn call(&self, req: Connect) -> Self::Future { + fn call(&self, req: Connect) -> Self::Future { ConnectServiceResponse { fut: ConnectFuture::Resolve(self.resolver.call(req)), tcp: self.tcp, @@ -81,22 +81,22 @@ impl Service> for ConnectService { } // helper enum to generic over futures of resolve and connect phase. -pub(crate) enum ConnectFuture { - Resolve(>>::Future), - Connect(>>::Future), +pub(crate) enum ConnectFuture { + Resolve(>>::Future), + Connect(>>::Future), } -// helper enum to contain the future output of ConnectFuture -pub(crate) enum ConnectOutput { - Resolved(Connect), - Connected(Connection), +/// Helper enum to contain the future output of `ConnectFuture`. +pub(crate) enum ConnectOutput { + Resolved(Connect), + Connected(Connection), } -impl ConnectFuture { +impl ConnectFuture { fn poll_connect( &mut self, cx: &mut Context<'_>, - ) -> Poll, ConnectError>> { + ) -> Poll, ConnectError>> { match self { ConnectFuture::Resolve(ref mut fut) => { Pin::new(fut).poll(cx).map_ok(ConnectOutput::Resolved) @@ -108,13 +108,13 @@ impl ConnectFuture { } } -pub struct ConnectServiceResponse { - fut: ConnectFuture, +pub struct ConnectServiceResponse { + fut: ConnectFuture, tcp: TcpConnector, } -impl Future for ConnectServiceResponse { - type Output = Result, ConnectError>; +impl Future for ConnectServiceResponse { + type Output = Result, ConnectError>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { loop { diff --git a/actix-tls/src/connect/tcp.rs b/actix-tls/src/connect/tcp.rs index 57059c99..2efda791 100644 --- a/actix-tls/src/connect/tcp.rs +++ b/actix-tls/src/connect/tcp.rs @@ -4,20 +4,20 @@ use actix_service::{Service, ServiceFactory}; use super::{Address, Connect, ConnectError, ConnectServiceFactory, Connection, Resolver}; /// Create TCP connector service. -pub fn new_connector( +pub fn new_connector( resolver: Resolver, -) -> impl Service, Response = Connection, Error = ConnectError> + Clone +) -> impl Service, Response = Connection, Error = ConnectError> + Clone { ConnectServiceFactory::new(resolver).service() } /// Create TCP connector service factory. -pub fn new_connector_factory( +pub fn new_connector_factory( resolver: Resolver, ) -> impl ServiceFactory< - Connect, + Connect, Config = (), - Response = Connection, + Response = Connection, Error = ConnectError, InitError = (), > + Clone { @@ -25,17 +25,17 @@ pub fn new_connector_factory( } /// Create TCP connector service with default parameters. -pub fn default_connector( -) -> impl Service, Response = Connection, Error = ConnectError> + Clone +pub fn default_connector( +) -> impl Service, Response = Connection, Error = ConnectError> + Clone { new_connector(Resolver::Default) } /// Create TCP connector service factory with default parameters. -pub fn default_connector_factory() -> impl ServiceFactory< - Connect, +pub fn default_connector_factory() -> impl ServiceFactory< + Connect, Config = (), - Response = Connection, + Response = Connection, Error = ConnectError, InitError = (), > + Clone { diff --git a/actix-tls/src/connect/tls/native_tls.rs b/actix-tls/src/connect/tls/native_tls.rs index de08ea2a..ffb13754 100644 --- a/actix-tls/src/connect/tls/native_tls.rs +++ b/actix-tls/src/connect/tls/native_tls.rs @@ -37,11 +37,11 @@ impl Clone for NativetlsConnector { } } -impl ServiceFactory> for NativetlsConnector +impl ServiceFactory> for NativetlsConnector where - U: ActixStream + 'static, + IO: ActixStream + 'static, { - type Response = Connection>; + type Response = Connection>; type Error = io::Error; type Config = (); type Service = Self; @@ -56,20 +56,21 @@ where // NativetlsConnector is both it's ServiceFactory and Service impl type. // As the factory and service share the same type and state. -impl Service> for NativetlsConnector +impl Service> for NativetlsConnector where - T: Address, - U: ActixStream + 'static, + R: Address, + IO: ActixStream + 'static, { - type Response = Connection>; + type Response = Connection>; type Error = io::Error; type Future = LocalBoxFuture<'static, Result>; actix_service::always_ready!(); - fn call(&self, stream: Connection) -> Self::Future { + fn call(&self, stream: Connection) -> Self::Future { let (io, stream) = stream.replace_io(()); let connector = self.connector.clone(); + Box::pin(async move { trace!("SSL Handshake start for: {:?}", stream.host()); connector diff --git a/actix-tls/src/connect/tls/openssl.rs b/actix-tls/src/connect/tls/openssl.rs index b4298fed..6048e0ab 100755 --- a/actix-tls/src/connect/tls/openssl.rs +++ b/actix-tls/src/connect/tls/openssl.rs @@ -38,12 +38,12 @@ impl Clone for OpensslConnector { } } -impl ServiceFactory> for OpensslConnector +impl ServiceFactory> for OpensslConnector where - T: Address, - U: ActixStream + 'static, + R: Address, + IO: ActixStream + 'static, { - type Response = Connection>; + type Response = Connection>; type Error = io::Error; type Config = (); type Service = OpensslConnectorService; @@ -68,18 +68,18 @@ impl Clone for OpensslConnectorService { } } -impl Service> for OpensslConnectorService +impl Service> for OpensslConnectorService where - T: Address, - U: ActixStream, + R: Address, + IO: ActixStream, { - type Response = Connection>; + type Response = Connection>; type Error = io::Error; - type Future = ConnectAsyncExt; + type Future = ConnectAsyncExt; actix_service::always_ready!(); - fn call(&self, stream: Connection) -> Self::Future { + fn call(&self, stream: Connection) -> Self::Future { trace!("SSL Handshake start for: {:?}", stream.host()); let (io, stream) = stream.replace_io(()); let host = stream.host(); @@ -100,17 +100,17 @@ where } } -pub struct ConnectAsyncExt { - io: Option>, - stream: Option>, +pub struct ConnectAsyncExt { + io: Option>, + stream: Option>, } -impl Future for ConnectAsyncExt +impl Future for ConnectAsyncExt where - T: Address, - U: ActixStream, + R: Address, + IO: ActixStream, { - type Output = Result>, io::Error>; + type Output = Result>, io::Error>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let this = self.get_mut(); diff --git a/actix-tls/src/connect/tls/rustls.rs b/actix-tls/src/connect/tls/rustls.rs index 139aadbe..e621b8a0 100755 --- a/actix-tls/src/connect/tls/rustls.rs +++ b/actix-tls/src/connect/tls/rustls.rs @@ -15,7 +15,7 @@ use actix_service::{Service, ServiceFactory}; use futures_core::{future::LocalBoxFuture, ready}; use log::trace; use tokio_rustls::rustls::{client::ServerName, OwnedTrustAnchor, RootCertStore}; -use tokio_rustls::{Connect, TlsConnector}; +use tokio_rustls::{Connect as RustlsConnect, TlsConnector as RustlsTlsConnector}; use crate::connect::{Address, Connection}; @@ -59,12 +59,12 @@ impl Clone for RustlsConnector { } } -impl ServiceFactory> for RustlsConnector +impl ServiceFactory> for RustlsConnector where - T: Address, - U: ActixStream + 'static, + R: Address, + IO: ActixStream + 'static, { - type Response = Connection>; + type Response = Connection>; type Error = io::Error; type Config = (); type Service = RustlsConnectorService; @@ -89,24 +89,24 @@ impl Clone for RustlsConnectorService { } } -impl Service> for RustlsConnectorService +impl Service> for RustlsConnectorService where - T: Address, - U: ActixStream, + R: Address, + IO: ActixStream, { - type Response = Connection>; + type Response = Connection>; type Error = io::Error; - type Future = RustlsConnectorServiceFuture; + type Future = RustlsConnectorServiceFuture; actix_service::always_ready!(); - fn call(&self, connection: Connection) -> Self::Future { + fn call(&self, connection: Connection) -> Self::Future { trace!("SSL Handshake start for: {:?}", connection.host()); let (stream, connection) = connection.replace_io(()); match ServerName::try_from(connection.host()) { Ok(host) => RustlsConnectorServiceFuture::Future { - connect: TlsConnector::from(self.connector.clone()).connect(host, stream), + connect: RustlsTlsConnector::from(self.connector.clone()).connect(host, stream), connection: Some(connection), }, Err(_) => RustlsConnectorServiceFuture::InvalidDns, @@ -114,21 +114,21 @@ where } } -pub enum RustlsConnectorServiceFuture { +pub enum RustlsConnectorServiceFuture { /// See issue InvalidDns, Future { - connect: Connect, - connection: Option>, + connect: RustlsConnect, + connection: Option>, }, } -impl Future for RustlsConnectorServiceFuture +impl Future for RustlsConnectorServiceFuture where - T: Address, - U: ActixStream, + R: Address, + IO: ActixStream, { - type Output = Result>, io::Error>; + type Output = Result>, io::Error>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { match self.get_mut() {