2019-12-05 15:52:37 +01:00
|
|
|
use std::future::Future;
|
|
|
|
use std::io;
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::task::{Context, Poll};
|
|
|
|
|
|
|
|
use actix_codec::{AsyncRead, AsyncWrite};
|
|
|
|
use actix_service::{Service, ServiceFactory};
|
|
|
|
use actix_utils::counter::{Counter, CounterGuard};
|
2020-03-11 20:30:32 +01:00
|
|
|
use futures_util::future::{ok, Ready};
|
2019-12-05 15:52:37 +01:00
|
|
|
use tokio_rustls::{Accept, TlsAcceptor};
|
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
pub use rustls::{ServerConfig, Session};
|
2019-12-05 15:52:37 +01:00
|
|
|
pub use tokio_rustls::server::TlsStream;
|
2019-12-05 18:09:34 +01:00
|
|
|
pub use webpki_roots::TLS_SERVER_ROOTS;
|
2019-12-05 15:52:37 +01:00
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
use super::MAX_CONN_COUNTER;
|
2019-12-05 15:52:37 +01:00
|
|
|
|
2020-09-08 19:00:07 +02:00
|
|
|
/// Accept TLS connections via `rustls` package.
|
2019-12-05 15:52:37 +01:00
|
|
|
///
|
2020-09-08 19:00:07 +02:00
|
|
|
/// `rustls` feature enables this `Acceptor` type.
|
2019-12-05 15:52:37 +01:00
|
|
|
pub struct Acceptor<T> {
|
|
|
|
config: Arc<ServerConfig>,
|
|
|
|
io: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
impl<T> Acceptor<T>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
{
|
2020-09-08 19:00:07 +02:00
|
|
|
/// Create Rustls based `Acceptor` service factory.
|
|
|
|
#[inline]
|
2019-12-05 15:52:37 +01:00
|
|
|
pub fn new(config: ServerConfig) -> Self {
|
|
|
|
Acceptor {
|
|
|
|
config: Arc::new(config),
|
|
|
|
io: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Clone for Acceptor<T> {
|
2020-09-08 19:00:07 +02:00
|
|
|
#[inline]
|
2019-12-05 15:52:37 +01:00
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self {
|
|
|
|
config: self.config.clone(),
|
|
|
|
io: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
impl<T> ServiceFactory<T> for Acceptor<T>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
|
|
|
{
|
2019-12-05 15:52:37 +01:00
|
|
|
type Response = TlsStream<T>;
|
|
|
|
type Error = io::Error;
|
|
|
|
type Service = AcceptorService<T>;
|
|
|
|
|
|
|
|
type Config = ();
|
|
|
|
type InitError = ();
|
|
|
|
type Future = Ready<Result<Self::Service, Self::InitError>>;
|
|
|
|
|
|
|
|
fn new_service(&self, _: ()) -> Self::Future {
|
|
|
|
MAX_CONN_COUNTER.with(|conns| {
|
|
|
|
ok(AcceptorService {
|
|
|
|
acceptor: self.config.clone().into(),
|
|
|
|
conns: conns.clone(),
|
|
|
|
io: PhantomData,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-08 19:00:07 +02:00
|
|
|
/// Rustls based `Acceptor` service
|
2019-12-05 15:52:37 +01:00
|
|
|
pub struct AcceptorService<T> {
|
|
|
|
acceptor: TlsAcceptor,
|
|
|
|
io: PhantomData<T>,
|
|
|
|
conns: Counter,
|
|
|
|
}
|
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
impl<T> Service<T> for AcceptorService<T>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
|
|
|
{
|
2019-12-05 15:52:37 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
fn call(&mut self, req: T) -> Self::Future {
|
2019-12-05 15:52:37 +01:00
|
|
|
AcceptorServiceFut {
|
|
|
|
_guard: self.conns.get(),
|
|
|
|
fut: self.acceptor.accept(req),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct AcceptorServiceFut<T>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
|
|
|
{
|
|
|
|
fut: Accept<T>,
|
|
|
|
_guard: CounterGuard,
|
|
|
|
}
|
|
|
|
|
2020-12-29 01:38:41 +01:00
|
|
|
impl<T> Future for AcceptorServiceFut<T>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite + Unpin,
|
|
|
|
{
|
2019-12-05 15:52:37 +01:00
|
|
|
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-03-11 20:30:32 +01:00
|
|
|
let res = futures_util::ready!(Pin::new(&mut this.fut).poll(cx));
|
2019-12-05 15:52:37 +01:00
|
|
|
match res {
|
|
|
|
Ok(io) => Poll::Ready(Ok(io)),
|
|
|
|
Err(e) => Poll::Ready(Err(e)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|