use std::marker::PhantomData; use std::pin::Pin; use std::task::{Context, Poll}; use std::{fmt, io, net, rc}; use actix_codec::{AsyncRead, AsyncWrite, Framed}; use actix_server_config::{ Io as ServerIo, IoStream, Protocol, ServerConfig as SrvConfig, }; use actix_service::{IntoServiceFactory, Service, ServiceFactory}; use bytes::{BufMut, Bytes, BytesMut}; use futures::{ready, Future}; use h2::server::{self, Handshake}; use pin_project::{pin_project, project}; use crate::body::MessageBody; use crate::builder::HttpServiceBuilder; use crate::cloneable::CloneableService; use crate::config::{KeepAlive, ServiceConfig}; use crate::error::{DispatchError, Error}; use crate::helpers::DataFactory; use crate::request::Request; use crate::response::Response; use crate::{h1, h2::Dispatcher}; /// `ServiceFactory` HTTP1.1/HTTP2 transport implementation pub struct HttpService> { srv: S, cfg: ServiceConfig, expect: X, upgrade: Option, on_connect: Option Box>>, _t: PhantomData<(T, P, B)>, } impl HttpService where S: ServiceFactory, S::Error: Into + 'static, S::InitError: fmt::Debug, S::Response: Into> + 'static, ::Future: 'static, B: MessageBody + 'static, { /// Create builder for `HttpService` instance. pub fn build() -> HttpServiceBuilder { HttpServiceBuilder::new() } } impl HttpService where S: ServiceFactory, S::Error: Into + 'static, S::InitError: fmt::Debug, S::Response: Into> + 'static, ::Future: 'static, B: MessageBody + 'static, { /// Create new `HttpService` instance. pub fn new>(service: F) -> Self { let cfg = ServiceConfig::new(KeepAlive::Timeout(5), 5000, 0); HttpService { cfg, srv: service.into_factory(), expect: h1::ExpectHandler, upgrade: None, on_connect: None, _t: PhantomData, } } /// Create new `HttpService` instance with config. pub(crate) fn with_config>( cfg: ServiceConfig, service: F, ) -> Self { HttpService { cfg, srv: service.into_factory(), expect: h1::ExpectHandler, upgrade: None, on_connect: None, _t: PhantomData, } } } impl HttpService where S: ServiceFactory, S::Error: Into + 'static, S::InitError: fmt::Debug, S::Response: Into> + 'static, ::Future: 'static, B: MessageBody, { /// Provide service for `EXPECT: 100-Continue` support. /// /// Service get called with request that contains `EXPECT` header. /// Service must return request in case of success, in that case /// request will be forwarded to main service. pub fn expect(self, expect: X1) -> HttpService where X1: ServiceFactory, X1::Error: Into, X1::InitError: fmt::Debug, ::Future: 'static, { HttpService { expect, cfg: self.cfg, srv: self.srv, upgrade: self.upgrade, on_connect: self.on_connect, _t: PhantomData, } } /// Provide service for custom `Connection: UPGRADE` support. /// /// If service is provided then normal requests handling get halted /// and this service get called with original request and framed object. pub fn upgrade(self, upgrade: Option) -> HttpService where U1: ServiceFactory< Config = SrvConfig, Request = (Request, Framed), Response = (), >, U1::Error: fmt::Display, U1::InitError: fmt::Debug, ::Future: 'static, { HttpService { upgrade, cfg: self.cfg, srv: self.srv, expect: self.expect, on_connect: self.on_connect, _t: PhantomData, } } /// Set on connect callback. pub(crate) fn on_connect( mut self, f: Option Box>>, ) -> Self { self.on_connect = f; self } } impl ServiceFactory for HttpService where T: IoStream, S: ServiceFactory, S::Error: Into + 'static, S::InitError: fmt::Debug, S::Response: Into> + 'static, ::Future: 'static, B: MessageBody + 'static, X: ServiceFactory, X::Error: Into, X::InitError: fmt::Debug, ::Future: 'static, U: ServiceFactory< Config = SrvConfig, Request = (Request, Framed), Response = (), >, U::Error: fmt::Display, U::InitError: fmt::Debug, ::Future: 'static, { type Config = SrvConfig; type Request = ServerIo; type Response = (); type Error = DispatchError; type InitError = (); type Service = HttpServiceHandler; type Future = HttpServiceResponse; fn new_service(&self, cfg: &SrvConfig) -> Self::Future { HttpServiceResponse { fut: self.srv.new_service(cfg), fut_ex: Some(self.expect.new_service(cfg)), fut_upg: self.upgrade.as_ref().map(|f| f.new_service(cfg)), expect: None, upgrade: None, on_connect: self.on_connect.clone(), cfg: Some(self.cfg.clone()), _t: PhantomData, } } } #[doc(hidden)] #[pin_project] pub struct HttpServiceResponse< T, P, S: ServiceFactory, B, X: ServiceFactory, U: ServiceFactory, > { #[pin] fut: S::Future, #[pin] fut_ex: Option, #[pin] fut_upg: Option, expect: Option, upgrade: Option, on_connect: Option Box>>, cfg: Option, _t: PhantomData<(T, P, B)>, } impl Future for HttpServiceResponse where T: IoStream, S: ServiceFactory, S::Error: Into + 'static, S::InitError: fmt::Debug, S::Response: Into> + 'static, ::Future: 'static, B: MessageBody + 'static, X: ServiceFactory, X::Error: Into, X::InitError: fmt::Debug, ::Future: 'static, U: ServiceFactory), Response = ()>, U::Error: fmt::Display, U::InitError: fmt::Debug, ::Future: 'static, { type Output = Result, ()>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll { let mut this = self.as_mut().project(); 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)))?; this = self.as_mut().project(); *this.expect = Some(expect); this.fut_ex.set(None); } 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)))?; this = self.as_mut().project(); *this.upgrade = Some(upgrade); this.fut_ex.set(None); } let result = ready!(this .fut .poll(cx) .map_err(|e| log::error!("Init http service error: {:?}", e))); Poll::Ready(result.map(|service| { let this = self.as_mut().project(); HttpServiceHandler::new( this.cfg.take().unwrap(), service, this.expect.take().unwrap(), this.upgrade.take(), this.on_connect.clone(), ) })) } } /// `Service` implementation for http transport pub struct HttpServiceHandler { srv: CloneableService, expect: CloneableService, upgrade: Option>, cfg: ServiceConfig, on_connect: Option Box>>, _t: PhantomData<(T, P, B, X)>, } impl HttpServiceHandler where S: Service, S::Error: Into + 'static, S::Future: 'static, S::Response: Into> + 'static, B: MessageBody + 'static, X: Service, X::Error: Into, U: Service), Response = ()>, U::Error: fmt::Display, { fn new( cfg: ServiceConfig, srv: S, expect: X, upgrade: Option, on_connect: Option Box>>, ) -> HttpServiceHandler { HttpServiceHandler { cfg, on_connect, srv: CloneableService::new(srv), expect: CloneableService::new(expect), upgrade: upgrade.map(CloneableService::new), _t: PhantomData, } } } impl Service for HttpServiceHandler where T: IoStream, S: Service, S::Error: Into + 'static, S::Future: 'static, S::Response: Into> + 'static, B: MessageBody + 'static, X: Service, X::Error: Into, U: Service), Response = ()>, U::Error: fmt::Display, { type Request = ServerIo; type Response = (); type Error = DispatchError; type Future = HttpServiceHandlerResponse; fn poll_ready(&mut self, cx: &mut Context) -> Poll> { let ready = self .expect .poll_ready(cx) .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) .map_err(|e| { let e = e.into(); log::error!("Http service readiness error: {:?}", e); DispatchError::Service(e) })? .is_ready() && ready; if ready { Poll::Ready(Ok(())) } else { Poll::Pending } } fn call(&mut self, req: Self::Request) -> Self::Future { let (io, _, proto) = req.into_parts(); let on_connect = if let Some(ref on_connect) = self.on_connect { Some(on_connect(&io)) } else { None }; match proto { Protocol::Http2 => { let peer_addr = io.peer_addr(); let io = Io { inner: io, unread: None, }; HttpServiceHandlerResponse { state: State::Handshake(Some(( server::handshake(io), self.cfg.clone(), self.srv.clone(), peer_addr, on_connect, ))), } } Protocol::Http10 | Protocol::Http11 => HttpServiceHandlerResponse { state: State::H1(h1::Dispatcher::new( io, self.cfg.clone(), self.srv.clone(), self.expect.clone(), self.upgrade.clone(), on_connect, )), }, _ => HttpServiceHandlerResponse { state: State::Unknown(Some(( io, BytesMut::with_capacity(14), self.cfg.clone(), self.srv.clone(), self.expect.clone(), self.upgrade.clone(), on_connect, ))), }, } } } #[pin_project] enum State where S: Service, S::Future: 'static, S::Error: Into, T: IoStream, B: MessageBody, X: Service, X::Error: Into, U: Service), Response = ()>, U::Error: fmt::Display, { H1(#[pin] h1::Dispatcher), H2(#[pin] Dispatcher, S, B>), Unknown( Option<( T, BytesMut, ServiceConfig, CloneableService, CloneableService, Option>, Option>, )>, ), Handshake( Option<( Handshake, Bytes>, ServiceConfig, CloneableService, Option, Option>, )>, ), } #[pin_project] pub struct HttpServiceHandlerResponse where T: IoStream, S: Service, S::Error: Into + 'static, S::Future: 'static, S::Response: Into> + 'static, B: MessageBody + 'static, X: Service, X::Error: Into, U: Service), Response = ()>, U::Error: fmt::Display, { #[pin] state: State, } const HTTP2_PREFACE: [u8; 14] = *b"PRI * HTTP/2.0"; impl Future for HttpServiceHandlerResponse where T: IoStream, S: Service, S::Error: Into + 'static, S::Future: 'static, S::Response: Into> + 'static, B: MessageBody, X: Service, X::Error: Into, U: Service), Response = ()>, U::Error: fmt::Display, { type Output = Result<(), DispatchError>; fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll { self.project().state.poll(cx) } } impl State where T: IoStream, S: Service, S::Error: Into + 'static, S::Response: Into> + 'static, B: MessageBody + 'static, X: Service, X::Error: Into, U: Service), Response = ()>, U::Error: fmt::Display, { #[project] fn poll( mut self: Pin<&mut Self>, cx: &mut Context, ) -> Poll> { #[project] match self.as_mut().project() { State::H1(disp) => disp.poll(cx), State::H2(disp) => disp.poll(cx), State::Unknown(ref mut data) => { if let Some(ref mut item) = data { loop { // Safety - we only write to the returned slice. let b = unsafe { item.1.bytes_mut() }; let n = ready!(Pin::new(&mut item.0).poll_read(cx, b))?; if n == 0 { return Poll::Ready(Ok(())); } // Safety - we know that 'n' bytes have // been initialized via the contract of // 'poll_read' unsafe { item.1.advance_mut(n) }; if item.1.len() >= HTTP2_PREFACE.len() { break; } } } else { panic!() } let (io, buf, cfg, srv, expect, upgrade, on_connect) = data.take().unwrap(); if buf[..14] == HTTP2_PREFACE[..] { let peer_addr = io.peer_addr(); let io = Io { inner: io, unread: Some(buf), }; self.set(State::Handshake(Some(( server::handshake(io), cfg, srv, peer_addr, on_connect, )))); } else { self.set(State::H1(h1::Dispatcher::with_timeout( io, h1::Codec::new(cfg.clone()), cfg, buf, None, srv, expect, upgrade, on_connect, ))) } self.poll(cx) } State::Handshake(ref mut data) => { let conn = if let Some(ref mut item) = data { match Pin::new(&mut item.0).poll(cx) { Poll::Ready(Ok(conn)) => conn, Poll::Ready(Err(err)) => { trace!("H2 handshake error: {}", err); return Poll::Ready(Err(err.into())); } Poll::Pending => return Poll::Pending, } } else { panic!() }; let (_, cfg, srv, peer_addr, on_connect) = data.take().unwrap(); self.set(State::H2(Dispatcher::new( srv, conn, on_connect, cfg, None, peer_addr, ))); self.poll(cx) } } } } /// Wrapper for `AsyncRead + AsyncWrite` types #[pin_project::pin_project] struct Io { unread: Option, #[pin] inner: T, } impl io::Read for Io { fn read(&mut self, buf: &mut [u8]) -> io::Result { if let Some(mut bytes) = self.unread.take() { let size = std::cmp::min(buf.len(), bytes.len()); buf[..size].copy_from_slice(&bytes[..size]); if bytes.len() > size { bytes.split_to(size); self.unread = Some(bytes); } Ok(size) } else { self.inner.read(buf) } } } impl io::Write for Io { fn write(&mut self, buf: &[u8]) -> io::Result { self.inner.write(buf) } fn flush(&mut self) -> io::Result<()> { self.inner.flush() } } impl AsyncRead for Io { // unsafe fn initializer(&self) -> io::Initializer { // self.get_mut().inner.initializer() // } unsafe fn prepare_uninitialized_buffer(&self, buf: &mut [u8]) -> bool { self.inner.prepare_uninitialized_buffer(buf) } fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll> { let this = self.project(); if let Some(mut bytes) = this.unread.take() { let size = std::cmp::min(buf.len(), bytes.len()); buf[..size].copy_from_slice(&bytes[..size]); if bytes.len() > size { bytes.split_to(size); *this.unread = Some(bytes); } Poll::Ready(Ok(size)) } else { this.inner.poll_read(cx, buf) } } // fn poll_read_vectored( // self: Pin<&mut Self>, // cx: &mut Context<'_>, // bufs: &mut [io::IoSliceMut<'_>], // ) -> Poll> { // self.get_mut().inner.poll_read_vectored(cx, bufs) // } } impl actix_codec::AsyncWrite for Io { fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll> { self.project().inner.poll_write(cx, buf) } fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { self.project().inner.poll_flush(cx) } fn poll_shutdown( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll> { self.project().inner.poll_shutdown(cx) } } impl actix_server_config::IoStream for Io { #[inline] fn peer_addr(&self) -> Option { self.inner.peer_addr() } #[inline] fn set_nodelay(&mut self, nodelay: bool) -> io::Result<()> { self.inner.set_nodelay(nodelay) } #[inline] fn set_linger(&mut self, dur: Option) -> io::Result<()> { self.inner.set_linger(dur) } #[inline] fn set_keepalive(&mut self, dur: Option) -> io::Result<()> { self.inner.set_keepalive(dur) } }