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/h2/service.rs

391 lines
11 KiB
Rust
Raw Normal View History

2019-02-02 04:18:44 +00:00
use std::fmt::Debug;
use std::future::Future;
2019-02-02 04:18:44 +00:00
use std::marker::PhantomData;
use std::pin::Pin;
use std::task::{Context, Poll};
2019-06-28 08:34:26 +00:00
use std::{io, net, rc};
2019-02-02 04:18:44 +00:00
use actix_codec::{AsyncRead, AsyncWrite, Framed};
2019-12-02 11:33:11 +00:00
use actix_rt::net::TcpStream;
use actix_service::{
2019-12-08 13:25:24 +00:00
fn_factory, fn_service, pipeline_factory, IntoServiceFactory, Service,
2019-12-02 11:33:11 +00:00
ServiceFactory,
};
2019-02-02 04:18:44 +00:00
use bytes::Bytes;
use futures::future::{ok, Ready};
use futures::{ready, Stream};
2019-02-02 04:18:44 +00:00
use h2::server::{self, Connection, Handshake};
2019-02-06 19:44:15 +00:00
use h2::RecvStream;
2019-02-02 04:18:44 +00:00
use log::error;
use crate::body::MessageBody;
use crate::cloneable::CloneableService;
2019-02-02 04:18:44 +00:00
use crate::config::{KeepAlive, ServiceConfig};
2019-02-06 19:44:15 +00:00
use crate::error::{DispatchError, Error, ParseError, ResponseError};
2019-06-28 08:34:26 +00:00
use crate::helpers::DataFactory;
2019-02-07 21:41:50 +00:00
use crate::payload::Payload;
2019-02-02 04:18:44 +00:00
use crate::request::Request;
use crate::response::Response;
2019-12-02 11:33:11 +00:00
use crate::Protocol;
2019-02-02 04:18:44 +00:00
2019-02-06 19:44:15 +00:00
use super::dispatcher::Dispatcher;
2019-02-02 04:18:44 +00:00
/// `ServiceFactory` implementation for HTTP2 transport
2019-12-02 11:33:11 +00:00
pub struct H2Service<T, S, B> {
2019-02-02 04:18:44 +00:00
srv: S,
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
_t: PhantomData<(T, B)>,
2019-02-02 04:18:44 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> H2Service<T, S, B>
2019-02-02 04:18:44 +00:00
where
2019-12-02 11:33:11 +00:00
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
/// Create new `HttpService` instance with config.
2019-12-02 11:33:11 +00:00
pub(crate) fn with_config<F: IntoServiceFactory<S>>(
cfg: ServiceConfig,
service: F,
) -> Self {
H2Service {
cfg,
2019-06-28 08:34:26 +00:00
on_connect: None,
srv: service.into_factory(),
_t: PhantomData,
}
}
2019-06-28 08:34:26 +00:00
/// Set on connect callback.
pub(crate) fn on_connect(
mut self,
2019-07-17 09:48:37 +00:00
f: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-06-28 08:34:26 +00:00
) -> Self {
self.on_connect = f;
self
}
2019-02-02 04:18:44 +00:00
}
2019-12-02 11:33:11 +00:00
impl<S, B> H2Service<TcpStream, S, B>
where
S: ServiceFactory<Config = (), Request = Request>,
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
B: MessageBody + 'static,
{
/// Create simple tcp based service
pub fn tcp(
self,
) -> impl ServiceFactory<
Config = (),
Request = TcpStream,
Response = (),
Error = DispatchError,
InitError = S::InitError,
> {
2019-12-08 13:25:24 +00:00
pipeline_factory(fn_factory(|| {
2019-12-02 11:33:11 +00:00
async {
2019-12-08 13:25:24 +00:00
Ok::<_, S::InitError>(fn_service(|io: TcpStream| {
2019-12-02 11:33:11 +00:00
let peer_addr = io.peer_addr().ok();
ok::<_, DispatchError>((io, peer_addr))
}))
}
}))
.and_then(self)
}
}
#[cfg(feature = "openssl")]
mod openssl {
2019-12-08 13:25:24 +00:00
use actix_service::{fn_factory, fn_service};
2019-12-05 17:35:43 +00:00
use actix_tls::openssl::{Acceptor, SslAcceptor, SslStream};
2019-12-02 11:33:11 +00:00
use actix_tls::{openssl::HandshakeError, SslError};
use super::*;
impl<S, B> H2Service<SslStream<TcpStream>, S, B>
where
S: ServiceFactory<Config = (), Request = Request>,
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
B: MessageBody + 'static,
{
/// Create ssl based service
pub fn openssl(
self,
acceptor: SslAcceptor,
) -> impl ServiceFactory<
Config = (),
Request = TcpStream,
Response = (),
Error = SslError<HandshakeError<TcpStream>, DispatchError>,
InitError = S::InitError,
> {
pipeline_factory(
Acceptor::new(acceptor)
.map_err(SslError::Ssl)
.map_init_err(|_| panic!()),
)
2019-12-08 13:25:24 +00:00
.and_then(fn_factory(|| {
ok::<_, S::InitError>(fn_service(|io: SslStream<TcpStream>| {
2019-12-02 11:33:11 +00:00
let peer_addr = io.get_ref().peer_addr().ok();
ok((io, peer_addr))
}))
}))
.and_then(self.map_err(SslError::Service))
}
}
}
2019-12-05 17:35:43 +00:00
#[cfg(feature = "rustls")]
mod rustls {
use super::*;
use actix_tls::rustls::{Acceptor, ServerConfig, Session, TlsStream};
use actix_tls::SslError;
use std::{fmt, io};
impl<S, B> H2Service<TlsStream<TcpStream>, S, B>
where
S: ServiceFactory<Config = (), Request = Request>,
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
B: MessageBody + 'static,
{
/// Create openssl based service
pub fn rustls(
self,
mut config: ServerConfig,
) -> impl ServiceFactory<
Config = (),
Request = TcpStream,
Response = (),
Error = SslError<io::Error, DispatchError>,
InitError = S::InitError,
> {
let protos = vec!["h2".to_string().into()];
config.set_protocols(&protos);
pipeline_factory(
Acceptor::new(config)
.map_err(SslError::Ssl)
.map_init_err(|_| panic!()),
)
2019-12-08 13:25:24 +00:00
.and_then(fn_factory(|| {
ok::<_, S::InitError>(fn_service(|io: TlsStream<TcpStream>| {
2019-12-05 17:35:43 +00:00
let peer_addr = io.get_ref().0.peer_addr().ok();
ok((io, peer_addr))
}))
}))
.and_then(self.map_err(SslError::Service))
}
}
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> ServiceFactory for H2Service<T, S, B>
2019-02-02 04:18:44 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
2019-12-02 11:33:11 +00:00
type Config = ();
type Request = (T, Option<net::SocketAddr>);
2019-02-06 19:44:15 +00:00
type Response = ();
2019-03-07 06:56:34 +00:00
type Error = DispatchError;
2019-02-02 04:18:44 +00:00
type InitError = S::InitError;
2019-12-02 11:33:11 +00:00
type Service = H2ServiceHandler<T, S::Service, B>;
type Future = H2ServiceResponse<T, S, B>;
2019-02-02 04:18:44 +00:00
2019-12-02 15:37:13 +00:00
fn new_service(&self, _: ()) -> Self::Future {
2019-02-02 04:18:44 +00:00
H2ServiceResponse {
2019-12-02 15:37:13 +00:00
fut: self.srv.new_service(()),
2019-02-02 04:18:44 +00:00
cfg: Some(self.cfg.clone()),
2019-06-28 08:34:26 +00:00
on_connect: self.on_connect.clone(),
2019-02-02 04:18:44 +00:00
_t: PhantomData,
}
}
}
#[doc(hidden)]
2019-11-19 12:54:19 +00:00
#[pin_project::pin_project]
2019-12-02 11:33:11 +00:00
pub struct H2ServiceResponse<T, S: ServiceFactory, B> {
2019-11-19 12:54:19 +00:00
#[pin]
fut: S::Future,
2019-02-02 04:18:44 +00:00
cfg: Option<ServiceConfig>,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
_t: PhantomData<(T, B)>,
2019-02-02 04:18:44 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> Future for H2ServiceResponse<T, S, B>
2019-02-02 04:18:44 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
S: ServiceFactory<Config = (), Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Response: Into<Response<B>> + 'static,
<S::Service as Service>::Future: 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
2019-12-02 11:33:11 +00:00
type Output = Result<H2ServiceHandler<T, S::Service, B>, S::InitError>;
2019-02-02 04:18:44 +00:00
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 this = self.as_mut().project();
2019-11-19 12:54:19 +00:00
Poll::Ready(ready!(this.fut.poll(cx)).map(|service| {
let this = self.as_mut().project();
H2ServiceHandler::new(
this.cfg.take().unwrap(),
this.on_connect.clone(),
service,
)
}))
2019-02-02 04:18:44 +00:00
}
}
/// `Service` implementation for http/2 transport
2019-12-02 11:33:11 +00:00
pub struct H2ServiceHandler<T, S, B> {
srv: CloneableService<S>,
2019-02-02 04:18:44 +00:00
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-12-02 11:33:11 +00:00
_t: PhantomData<(T, B)>,
2019-02-02 04:18:44 +00:00
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> H2ServiceHandler<T, S, B>
2019-02-02 04:18:44 +00:00
where
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
2019-06-28 08:34:26 +00:00
fn new(
cfg: ServiceConfig,
2019-07-17 09:48:37 +00:00
on_connect: Option<rc::Rc<dyn Fn(&T) -> Box<dyn DataFactory>>>,
2019-06-28 08:34:26 +00:00
srv: S,
2019-12-02 11:33:11 +00:00
) -> H2ServiceHandler<T, S, B> {
2019-02-02 04:18:44 +00:00
H2ServiceHandler {
cfg,
2019-06-28 08:34:26 +00:00
on_connect,
srv: CloneableService::new(srv),
2019-02-02 04:18:44 +00:00
_t: PhantomData,
}
}
}
2019-12-02 11:33:11 +00:00
impl<T, S, B> Service for H2ServiceHandler<T, S, B>
2019-02-02 04:18:44 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
2019-12-02 11:33:11 +00:00
type Request = (T, Option<net::SocketAddr>);
2019-02-06 19:44:15 +00:00
type Response = ();
2019-03-07 06:56:34 +00:00
type Error = DispatchError;
2019-02-02 04:18:44 +00:00
type Future = H2ServiceHandlerResponse<T, S, B>;
2019-12-07 18:46:51 +00:00
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.srv.poll_ready(cx).map_err(|e| {
2019-04-05 23:46:44 +00:00
let e = e.into();
2019-02-06 19:44:15 +00:00
error!("Service readiness error: {:?}", e);
2019-04-05 23:46:44 +00:00
DispatchError::Service(e)
2019-02-06 19:44:15 +00:00
})
2019-02-02 04:18:44 +00:00
}
2019-12-02 11:33:11 +00:00
fn call(&mut self, (io, addr): Self::Request) -> Self::Future {
2019-06-28 08:34:26 +00:00
let on_connect = if let Some(ref on_connect) = self.on_connect {
Some(on_connect(&io))
} else {
None
};
2019-02-02 04:18:44 +00:00
H2ServiceHandlerResponse {
2019-02-06 19:44:15 +00:00
state: State::Handshake(
Some(self.srv.clone()),
Some(self.cfg.clone()),
2019-12-02 11:33:11 +00:00
addr,
2019-06-28 08:34:26 +00:00
on_connect,
server::handshake(io),
2019-02-06 19:44:15 +00:00
),
2019-02-02 04:18:44 +00:00
}
}
}
2019-12-02 11:33:11 +00:00
enum State<T, S: Service<Request = Request>, B: MessageBody>
2019-04-04 17:59:34 +00:00
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-04-04 17:59:34 +00:00
S::Future: 'static,
{
2019-02-06 19:44:15 +00:00
Incoming(Dispatcher<T, S, B>),
Handshake(
Option<CloneableService<S>>,
Option<ServiceConfig>,
Option<net::SocketAddr>,
2019-06-28 08:34:26 +00:00
Option<Box<dyn DataFactory>>,
Handshake<T, Bytes>,
),
2019-02-02 04:18:44 +00:00
}
pub struct H2ServiceHandlerResponse<T, S, B>
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-02-06 19:44:15 +00:00
B: MessageBody + 'static,
2019-02-02 04:18:44 +00:00
{
2019-02-06 19:44:15 +00:00
state: State<T, S, B>,
2019-02-02 04:18:44 +00:00
}
impl<T, S, B> Future for H2ServiceHandlerResponse<T, S, B>
where
2019-12-02 11:33:11 +00:00
T: AsyncRead + AsyncWrite + Unpin,
2019-04-04 17:59:34 +00:00
S: Service<Request = Request>,
2019-11-19 12:54:19 +00:00
S::Error: Into<Error> + 'static,
S::Future: 'static,
S::Response: Into<Response<B>> + 'static,
2019-02-02 04:18:44 +00:00
B: MessageBody,
{
type Output = Result<(), DispatchError>;
2019-02-02 04:18:44 +00:00
2019-12-07 18:46:51 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
2019-02-06 19:44:15 +00:00
match self.state {
State::Incoming(ref mut disp) => Pin::new(disp).poll(cx),
State::Handshake(
ref mut srv,
ref mut config,
ref peer_addr,
2019-06-28 08:34:26 +00:00
ref mut on_connect,
ref mut handshake,
) => match Pin::new(handshake).poll(cx) {
Poll::Ready(Ok(conn)) => {
self.state = State::Incoming(Dispatcher::new(
srv.take().unwrap(),
conn,
2019-06-28 08:34:26 +00:00
on_connect.take(),
config.take().unwrap(),
None,
*peer_addr,
));
self.poll(cx)
2019-02-06 19:44:15 +00:00
}
Poll::Ready(Err(err)) => {
trace!("H2 handshake error: {}", err);
Poll::Ready(Err(err.into()))
}
Poll::Pending => Poll::Pending,
},
2019-02-06 19:44:15 +00:00
}
2019-02-02 04:18:44 +00:00
}
}