1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/actix-http/src/h1/service.rs

483 lines
14 KiB
Rust
Raw Normal View History

use std::future::Future;
2018-10-05 03:02:10 +00:00
use std::marker::PhantomData;
use std::pin::Pin;
2019-06-28 08:34:26 +00:00
use std::rc::Rc;
use std::task::{Context, Poll};
2019-12-02 11:33:11 +00:00
use std::{fmt, net};
2018-10-05 03:02:10 +00:00
2019-12-02 11:33:11 +00:00
use actix_codec::{AsyncRead, AsyncWrite, Framed};
use actix_rt::net::TcpStream;
use actix_service::{pipeline_factory, IntoServiceFactory, Service, ServiceFactory};
2019-12-13 05:24:57 +00:00
use futures_core::ready;
use futures_util::future::ready;
2018-10-05 03:02:10 +00:00
2018-12-06 22:32:52 +00:00
use crate::body::MessageBody;
use crate::cloneable::CloneableService;
2019-12-02 11:33:11 +00:00
use crate::config::ServiceConfig;
use crate::error::{DispatchError, Error};
2018-12-06 22:32:52 +00:00
use crate::request::Request;
use crate::response::Response;
use crate::{ConnectCallback, Extensions};
2018-10-05 03:02:10 +00:00
use super::codec::Codec;
2018-10-05 03:02:10 +00:00
use super::dispatcher::Dispatcher;
use super::{ExpectHandler, UpgradeHandler};
2018-10-05 03:02:10 +00:00
/// `ServiceFactory` implementation for HTTP1 transport
pub struct H1Service<T, S, B, X = ExpectHandler, U = UpgradeHandler> {
2018-10-05 03:02:10 +00:00
srv: S,
cfg: ServiceConfig,
2019-04-05 23:46:44 +00:00
expect: X,
2019-04-08 21:51:16 +00:00
upgrade: Option<U>,
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
_t: PhantomData<B>,
2018-10-05 03:02:10 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> H1Service<T, S, B>
2018-10-05 03:02:10 +00:00
where
S: ServiceFactory<Request, Config = ()>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>>,
2018-11-18 04:21:28 +00:00
B: MessageBody,
2018-10-05 03:02:10 +00:00
{
/// Create new `HttpService` instance with config.
pub(crate) fn with_config<F: IntoServiceFactory<S, Request>>(
cfg: ServiceConfig,
service: F,
) -> Self {
H1Service {
cfg,
srv: service.into_factory(),
2019-04-05 23:46:44 +00:00
expect: ExpectHandler,
2019-04-08 21:51:16 +00:00
upgrade: None,
on_connect_ext: None,
2018-10-05 03:02:10 +00:00
_t: PhantomData,
}
}
}
2019-12-02 11:33:11 +00:00
impl<S, B, X, U> H1Service<TcpStream, S, B, X, U>
2019-04-05 23:46:44 +00:00
where
S: ServiceFactory<Request, Config = ()>,
2019-12-02 11:33:11 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
X: ServiceFactory<Request, Config = (), Response = Request>,
2019-12-02 11:33:11 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<(Request, Framed<TcpStream, Codec>), Config = (), Response = ()>,
U::Error: fmt::Display + Into<Error>,
2019-12-02 11:33:11 +00:00
U::InitError: fmt::Debug,
{
/// Create simple tcp stream service
pub fn tcp(
self,
) -> impl ServiceFactory<
TcpStream,
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
Error = DispatchError,
InitError = (),
> {
pipeline_factory(|io: TcpStream| {
let peer_addr = io.peer_addr().ok();
ready(Ok((io, peer_addr)))
2019-12-02 11:33:11 +00:00
})
.and_then(self)
}
}
#[cfg(feature = "openssl")]
mod openssl {
use super::*;
use actix_service::ServiceFactoryExt;
use actix_tls::accept::openssl::{Acceptor, SslAcceptor, SslError, SslStream};
use actix_tls::accept::TlsError;
2019-12-02 11:33:11 +00:00
impl<S, B, X, U> H1Service<SslStream<TcpStream>, S, B, X, U>
where
S: ServiceFactory<Request, Config = ()>,
2019-12-02 11:33:11 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
X: ServiceFactory<Request, Config = (), Response = Request>,
2019-12-02 11:33:11 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<
(Request, Framed<SslStream<TcpStream>, Codec>),
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
>,
U::Error: fmt::Display + Into<Error>,
2019-12-02 11:33:11 +00:00
U::InitError: fmt::Debug,
{
/// Create openssl based service
pub fn openssl(
self,
acceptor: SslAcceptor,
) -> impl ServiceFactory<
TcpStream,
2019-12-02 11:33:11 +00:00
Config = (),
Response = (),
Error = TlsError<SslError, DispatchError>,
2019-12-02 11:33:11 +00:00
InitError = (),
> {
pipeline_factory(
Acceptor::new(acceptor)
2020-09-09 08:20:54 +00:00
.map_err(TlsError::Tls)
2019-12-02 11:33:11 +00:00
.map_init_err(|_| panic!()),
)
.and_then(|io: SslStream<TcpStream>| {
let peer_addr = io.get_ref().peer_addr().ok();
ready(Ok((io, peer_addr)))
2019-12-02 11:33:11 +00:00
})
2020-09-09 08:20:54 +00:00
.and_then(self.map_err(TlsError::Service))
2019-12-02 11:33:11 +00:00
}
}
}
2019-12-05 17:35:43 +00:00
#[cfg(feature = "rustls")]
mod rustls {
use super::*;
use actix_service::ServiceFactoryExt;
use actix_tls::accept::rustls::{Acceptor, ServerConfig, TlsStream};
use actix_tls::accept::TlsError;
2019-12-05 17:35:43 +00:00
use std::{fmt, io};
impl<S, B, X, U> H1Service<TlsStream<TcpStream>, S, B, X, U>
where
S: ServiceFactory<Request, Config = ()>,
2019-12-05 17:35:43 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
X: ServiceFactory<Request, Config = (), Response = Request>,
2019-12-05 17:35:43 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<
(Request, Framed<TlsStream<TcpStream>, Codec>),
2019-12-05 17:35:43 +00:00
Config = (),
Response = (),
>,
2019-12-20 07:50:07 +00:00
U::Error: fmt::Display + Into<Error>,
2019-12-05 17:35:43 +00:00
U::InitError: fmt::Debug,
{
/// Create rustls based service
pub fn rustls(
self,
config: ServerConfig,
) -> impl ServiceFactory<
TcpStream,
2019-12-05 17:35:43 +00:00
Config = (),
Response = (),
2020-09-09 08:20:54 +00:00
Error = TlsError<io::Error, DispatchError>,
2019-12-05 17:35:43 +00:00
InitError = (),
> {
pipeline_factory(
Acceptor::new(config)
2020-09-09 08:20:54 +00:00
.map_err(TlsError::Tls)
2019-12-05 17:35:43 +00:00
.map_init_err(|_| panic!()),
)
.and_then(|io: TlsStream<TcpStream>| {
let peer_addr = io.get_ref().0.peer_addr().ok();
ready(Ok((io, peer_addr)))
2019-12-05 17:35:43 +00:00
})
2020-09-09 08:20:54 +00:00
.and_then(self.map_err(TlsError::Service))
2019-12-05 17:35:43 +00:00
}
}
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> H1Service<T, S, B, X, U>
where
S: ServiceFactory<Request, Config = ()>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::Response: Into<Response<B>>,
S::InitError: fmt::Debug,
B: MessageBody,
{
2019-12-02 11:33:11 +00:00
pub fn expect<X1>(self, expect: X1) -> H1Service<T, S, B, X1, U>
2019-04-05 23:46:44 +00:00
where
X1: ServiceFactory<Request, Response = Request>,
2019-04-08 21:51:16 +00:00
X1::Error: Into<Error>,
X1::InitError: fmt::Debug,
2019-04-05 23:46:44 +00:00
{
H1Service {
expect,
cfg: self.cfg,
srv: self.srv,
2019-04-08 21:51:16 +00:00
upgrade: self.upgrade,
on_connect_ext: self.on_connect_ext,
2019-04-08 21:51:16 +00:00
_t: PhantomData,
}
}
2019-12-02 11:33:11 +00:00
pub fn upgrade<U1>(self, upgrade: Option<U1>) -> H1Service<T, S, B, X, U1>
2019-04-08 21:51:16 +00:00
where
U1: ServiceFactory<(Request, Framed<T, Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U1::Error: fmt::Display,
U1::InitError: fmt::Debug,
{
H1Service {
upgrade,
cfg: self.cfg,
srv: self.srv,
expect: self.expect,
on_connect_ext: self.on_connect_ext,
2019-04-05 23:46:44 +00:00
_t: PhantomData,
}
}
2019-06-28 08:34:26 +00:00
/// Set on connect callback.
pub(crate) fn on_connect_ext(mut self, f: Option<Rc<ConnectCallback<T>>>) -> Self {
self.on_connect_ext = f;
self
}
2019-04-05 23:46:44 +00:00
}
impl<T, S, B, X, U> ServiceFactory<(T, Option<net::SocketAddr>)>
for H1Service<T, S, B, X, U>
2018-10-05 03:02:10 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
S: ServiceFactory<Request, Config = ()>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::Response: Into<Response<B>>,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2018-11-18 04:21:28 +00:00
B: MessageBody,
X: ServiceFactory<Request, Config = (), Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<(Request, Framed<T, Codec>), Config = (), Response = ()>,
U::Error: fmt::Display + Into<Error>,
2019-04-08 21:51:16 +00:00
U::InitError: fmt::Debug,
2018-10-05 03:02:10 +00:00
{
2019-03-07 06:56:34 +00:00
type Response = ();
type Error = DispatchError;
type Config = ();
2019-12-02 11:33:11 +00:00
type Service = H1ServiceHandler<T, S::Service, B, X::Service, U::Service>;
type InitError = ();
2019-12-02 11:33:11 +00:00
type Future = H1ServiceResponse<T, S, B, X, U>;
2018-10-05 03:02:10 +00:00
2019-12-02 15:37:13 +00:00
fn new_service(&self, _: ()) -> Self::Future {
2018-10-05 03:02:10 +00:00
H1ServiceResponse {
2019-12-02 15:37:13 +00:00
fut: self.srv.new_service(()),
fut_ex: Some(self.expect.new_service(())),
fut_upg: self.upgrade.as_ref().map(|f| f.new_service(())),
2019-04-05 23:46:44 +00:00
expect: None,
2019-04-08 21:51:16 +00:00
upgrade: None,
on_connect_ext: self.on_connect_ext.clone(),
2018-10-05 03:02:10 +00:00
cfg: Some(self.cfg.clone()),
_t: PhantomData,
}
}
}
2018-10-15 22:56:47 +00:00
#[doc(hidden)]
2019-11-19 12:54:19 +00:00
#[pin_project::pin_project]
2019-12-02 11:33:11 +00:00
pub struct H1ServiceResponse<T, S, B, X, U>
2019-04-05 23:46:44 +00:00
where
S: ServiceFactory<Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::InitError: fmt::Debug,
X: ServiceFactory<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<(Request, Framed<T, Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
U::InitError: fmt::Debug,
2019-04-05 23:46:44 +00:00
{
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-05 23:46:44 +00:00
fut: S::Future,
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-05 23:46:44 +00:00
fut_ex: Option<X::Future>,
2019-11-19 12:54:19 +00:00
#[pin]
2019-04-08 21:51:16 +00:00
fut_upg: Option<U::Future>,
2019-04-05 23:46:44 +00:00
expect: Option<X::Service>,
2019-04-08 21:51:16 +00:00
upgrade: Option<U::Service>,
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
2018-10-05 03:02:10 +00:00
cfg: Option<ServiceConfig>,
2019-12-02 11:33:11 +00:00
_t: PhantomData<(T, B)>,
2018-10-05 03:02:10 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> Future for H1ServiceResponse<T, S, B, X, U>
2018-10-05 03:02:10 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
S: ServiceFactory<Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::Response: Into<Response<B>>,
2019-04-05 23:46:44 +00:00
S::InitError: fmt::Debug,
2018-11-18 04:21:28 +00:00
B: MessageBody,
X: ServiceFactory<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
X::InitError: fmt::Debug,
U: ServiceFactory<(Request, Framed<T, Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
U::InitError: fmt::Debug,
2018-10-05 03:02:10 +00:00
{
2019-12-02 11:33:11 +00:00
type Output = Result<H1ServiceHandler<T, S::Service, B, X::Service, U::Service>, ()>;
2019-12-07 18:46:51 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
2019-11-19 12:54:19 +00:00
let mut this = self.as_mut().project();
2019-11-19 12:54:19 +00:00
if let Some(fut) = this.fut_ex.as_pin_mut() {
let expect = ready!(fut
.poll(cx)
.map_err(|e| log::error!("Init http service error: {:?}", e)))?;
2019-11-19 12:54:19 +00:00
this = self.as_mut().project();
*this.expect = Some(expect);
this.fut_ex.set(None);
2019-04-05 23:46:44 +00:00
}
2019-11-19 12:54:19 +00:00
if let Some(fut) = this.fut_upg.as_pin_mut() {
let upgrade = ready!(fut
.poll(cx)
.map_err(|e| log::error!("Init http service error: {:?}", e)))?;
2019-11-19 12:54:19 +00:00
this = self.as_mut().project();
*this.upgrade = Some(upgrade);
this.fut_ex.set(None);
2019-04-08 21:51:16 +00:00
}
2019-11-19 12:54:19 +00:00
let result = ready!(this
.fut
.poll(cx)
2019-04-05 23:46:44 +00:00
.map_err(|e| log::error!("Init http service error: {:?}", e)));
Poll::Ready(result.map(|service| {
2019-11-19 12:54:19 +00:00
let this = self.as_mut().project();
H1ServiceHandler::new(
this.cfg.take().unwrap(),
service,
this.expect.take().unwrap(),
this.upgrade.take(),
this.on_connect_ext.clone(),
)
}))
2018-10-05 03:02:10 +00:00
}
}
/// `Service` implementation for HTTP/1 transport
pub struct H1ServiceHandler<T, S, B, X, U>
where
S: Service<Request>,
X: Service<Request>,
U: Service<(Request, Framed<T, Codec>)>,
{
srv: CloneableService<S>,
2019-04-05 23:46:44 +00:00
expect: CloneableService<X>,
2019-04-08 21:51:16 +00:00
upgrade: Option<CloneableService<U>>,
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
2018-10-05 03:02:10 +00:00
cfg: ServiceConfig,
_t: PhantomData<B>,
2018-10-05 03:02:10 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B, X, U> H1ServiceHandler<T, S, B, X, U>
2018-10-05 03:02:10 +00:00
where
S: Service<Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::Response: Into<Response<B>>,
2018-11-18 04:21:28 +00:00
B: MessageBody,
X: Service<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(Request, Framed<T, Codec>), Response = ()>,
2019-04-08 21:51:16 +00:00
U::Error: fmt::Display,
2018-10-05 03:02:10 +00:00
{
2019-04-08 21:51:16 +00:00
fn new(
cfg: ServiceConfig,
srv: S,
expect: X,
upgrade: Option<U>,
on_connect_ext: Option<Rc<ConnectCallback<T>>>,
2019-12-02 11:33:11 +00:00
) -> H1ServiceHandler<T, S, B, X, U> {
2018-10-05 03:02:10 +00:00
H1ServiceHandler {
srv: CloneableService::new(srv),
2019-04-05 23:46:44 +00:00
expect: CloneableService::new(expect),
upgrade: upgrade.map(CloneableService::new),
2018-10-05 03:02:10 +00:00
cfg,
on_connect_ext,
2018-10-05 03:02:10 +00:00
_t: PhantomData,
}
}
}
impl<T, S, B, X, U> Service<(T, Option<net::SocketAddr>)>
for H1ServiceHandler<T, S, B, X, U>
2018-10-05 03:02:10 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
S: Service<Request>,
2019-04-05 23:46:44 +00:00
S::Error: Into<Error>,
S::Response: Into<Response<B>>,
2018-11-18 04:21:28 +00:00
B: MessageBody,
X: Service<Request, Response = Request>,
2019-04-05 23:46:44 +00:00
X::Error: Into<Error>,
U: Service<(Request, Framed<T, Codec>), Response = ()>,
U::Error: fmt::Display + Into<Error>,
2018-10-05 03:02:10 +00:00
{
2019-03-07 06:56:34 +00:00
type Response = ();
type Error = DispatchError;
2019-04-08 21:51:16 +00:00
type Future = Dispatcher<T, S, B, X, U>;
2018-10-05 03:02:10 +00:00
2019-12-07 18:46:51 +00:00
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
2019-04-05 23:46:44 +00:00
let ready = self
.expect
.poll_ready(cx)
2019-04-05 23:46:44 +00:00
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready();
let ready = self
.srv
.poll_ready(cx)
2019-04-05 23:46:44 +00:00
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready()
&& ready;
2019-12-18 03:30:14 +00:00
let ready = if let Some(ref mut upg) = self.upgrade {
upg.poll_ready(cx)
.map_err(|e| {
let e = e.into();
log::error!("Http service readiness error: {:?}", e);
DispatchError::Service(e)
})?
.is_ready()
&& ready
} else {
ready
};
2019-04-05 23:46:44 +00:00
if ready {
Poll::Ready(Ok(()))
2019-04-05 23:46:44 +00:00
} else {
Poll::Pending
2019-04-05 23:46:44 +00:00
}
2018-10-05 03:02:10 +00:00
}
fn call(&mut self, (io, addr): (T, Option<net::SocketAddr>)) -> Self::Future {
let mut connect_extensions = Extensions::new();
if let Some(ref handler) = self.on_connect_ext {
// run on_connect_ext callback, populating connect extensions
handler(&io, &mut connect_extensions);
}
2019-06-28 08:34:26 +00:00
2019-04-05 23:46:44 +00:00
Dispatcher::new(
2019-06-28 08:34:26 +00:00
io,
2019-04-05 23:46:44 +00:00
self.cfg.clone(),
self.srv.clone(),
self.expect.clone(),
2019-04-08 21:51:16 +00:00
self.upgrade.clone(),
connect_extensions,
2019-12-02 11:33:11 +00:00
addr,
2019-04-05 23:46:44 +00:00
)
2018-10-05 03:02:10 +00:00
}
}