1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 17:23:00 +01:00
actix-net/actix-tls/src/accept/rustls.rs

118 lines
2.6 KiB
Rust
Raw Normal View History

use std::{
future::Future,
io,
pin::Pin,
sync::Arc,
task::{Context, Poll},
};
use actix_codec::{AsyncRead, AsyncWrite};
use actix_service::{Service, ServiceFactory};
use actix_utils::counter::{Counter, CounterGuard};
use futures_core::future::LocalBoxFuture;
use tokio_rustls::{Accept, TlsAcceptor};
pub use rustls::{ServerConfig, Session};
pub use tokio_rustls::server::TlsStream;
use super::MAX_CONN_COUNTER;
2020-09-08 19:00:07 +02:00
/// Accept TLS connections via `rustls` package.
///
2020-09-08 19:00:07 +02:00
/// `rustls` feature enables this `Acceptor` type.
2020-12-29 12:36:17 +01:00
pub struct Acceptor {
config: Arc<ServerConfig>,
}
2020-12-29 12:36:17 +01:00
impl Acceptor {
2020-09-08 19:00:07 +02:00
/// Create Rustls based `Acceptor` service factory.
#[inline]
pub fn new(config: ServerConfig) -> Self {
Acceptor {
config: Arc::new(config),
}
}
}
2020-12-29 12:36:17 +01:00
impl Clone for Acceptor {
2020-09-08 19:00:07 +02:00
#[inline]
fn clone(&self) -> Self {
Self {
config: self.config.clone(),
}
}
}
2020-12-29 12:36:17 +01:00
impl<T> ServiceFactory<T> for Acceptor
where
T: AsyncRead + AsyncWrite + Unpin,
{
type Response = TlsStream<T>;
type Error = io::Error;
type Config = ();
2020-12-29 12:36:17 +01:00
type Service = AcceptorService;
type InitError = ();
type Future = LocalBoxFuture<'static, Result<Self::Service, Self::InitError>>;
fn new_service(&self, _: ()) -> Self::Future {
let res = MAX_CONN_COUNTER.with(|conns| {
Ok(AcceptorService {
acceptor: self.config.clone().into(),
conns: conns.clone(),
})
});
Box::pin(async { res })
}
}
2020-09-08 19:00:07 +02:00
/// Rustls based `Acceptor` service
2020-12-29 12:36:17 +01:00
pub struct AcceptorService {
acceptor: TlsAcceptor,
conns: Counter,
}
2020-12-29 12:36:17 +01:00
impl<T> Service<T> for AcceptorService
where
T: AsyncRead + AsyncWrite + Unpin,
{
type Response = TlsStream<T>;
type Error = io::Error;
type Future = AcceptorServiceFut<T>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
if self.conns.available(cx) {
Poll::Ready(Ok(()))
} else {
Poll::Pending
}
}
fn call(&mut self, req: T) -> Self::Future {
AcceptorServiceFut {
_guard: self.conns.get(),
fut: self.acceptor.accept(req),
}
}
}
pub struct AcceptorServiceFut<T>
where
T: AsyncRead + AsyncWrite + Unpin,
{
fut: Accept<T>,
_guard: CounterGuard,
}
impl<T> Future for AcceptorServiceFut<T>
where
T: AsyncRead + AsyncWrite + Unpin,
{
type Output = Result<TlsStream<T>, io::Error>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.get_mut();
2020-12-29 12:36:17 +01:00
Pin::new(&mut this.fut).poll(cx)
}
}