2021-02-07 19:56:39 +01:00
|
|
|
use std::{
|
2021-02-28 19:17:08 +01:00
|
|
|
future::Future,
|
2021-03-16 17:31:14 +01:00
|
|
|
net,
|
2021-02-07 19:56:39 +01:00
|
|
|
pin::Pin,
|
2021-03-18 18:53:22 +01:00
|
|
|
rc::Rc,
|
2021-02-07 19:56:39 +01:00
|
|
|
task::{Context, Poll},
|
|
|
|
};
|
2019-03-28 02:53:19 +01:00
|
|
|
|
2021-03-16 17:31:14 +01:00
|
|
|
use actix_codec::Framed;
|
2021-02-07 19:56:39 +01:00
|
|
|
use actix_http::{
|
2021-11-16 23:10:30 +01:00
|
|
|
body::AnyBody, h1::ClientCodec, Payload, RequestHead, RequestHeadType, ResponseHead,
|
2019-04-20 03:03:44 +02:00
|
|
|
};
|
2019-03-26 05:58:01 +01:00
|
|
|
use actix_service::Service;
|
2021-02-28 19:17:08 +01:00
|
|
|
use futures_core::{future::LocalBoxFuture, ready};
|
2019-03-26 05:58:01 +01:00
|
|
|
|
2021-10-26 01:37:40 +02:00
|
|
|
use crate::client::{
|
|
|
|
Connect as ClientConnect, ConnectError, Connection, ConnectionIo, SendRequestError,
|
|
|
|
};
|
2019-03-26 19:41:38 +01:00
|
|
|
use crate::response::ClientResponse;
|
|
|
|
|
2021-03-18 18:53:22 +01:00
|
|
|
pub type BoxConnectorService = Rc<
|
2021-02-17 18:10:46 +01:00
|
|
|
dyn Service<
|
|
|
|
ConnectRequest,
|
|
|
|
Response = ConnectResponse,
|
|
|
|
Error = SendRequestError,
|
|
|
|
Future = LocalBoxFuture<'static, Result<ConnectResponse, SendRequestError>>,
|
|
|
|
>,
|
|
|
|
>;
|
|
|
|
|
2021-03-18 18:53:22 +01:00
|
|
|
pub type BoxedSocket = Box<dyn ConnectionIo>;
|
|
|
|
|
2021-02-17 18:10:46 +01:00
|
|
|
pub enum ConnectRequest {
|
2021-11-16 23:10:30 +01:00
|
|
|
Client(RequestHeadType, AnyBody, Option<net::SocketAddr>),
|
2021-02-17 18:10:46 +01:00
|
|
|
Tunnel(RequestHead, Option<net::SocketAddr>),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum ConnectResponse {
|
|
|
|
Client(ClientResponse),
|
|
|
|
Tunnel(ResponseHead, Framed<BoxedSocket, ClientCodec>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ConnectResponse {
|
|
|
|
pub fn into_client_response(self) -> ClientResponse {
|
|
|
|
match self {
|
|
|
|
ConnectResponse::Client(res) => res,
|
|
|
|
_ => panic!(
|
|
|
|
"ClientResponse only reachable with ConnectResponse::ClientResponse variant"
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_tunnel_response(self) -> (ResponseHead, Framed<BoxedSocket, ClientCodec>) {
|
|
|
|
match self {
|
|
|
|
ConnectResponse::Tunnel(head, framed) => (head, framed),
|
|
|
|
_ => panic!(
|
|
|
|
"TunnelResponse only reachable with ConnectResponse::TunnelResponse variant"
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 18:53:22 +01:00
|
|
|
pub struct DefaultConnector<S> {
|
2021-02-28 19:17:08 +01:00
|
|
|
connector: S,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S> DefaultConnector<S> {
|
|
|
|
pub(crate) fn new(connector: S) -> Self {
|
|
|
|
Self { connector }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 18:53:22 +01:00
|
|
|
impl<S, Io> Service<ConnectRequest> for DefaultConnector<S>
|
2019-03-26 05:58:01 +01:00
|
|
|
where
|
2021-03-18 18:53:22 +01:00
|
|
|
S: Service<ClientConnect, Error = ConnectError, Response = Connection<Io>>,
|
|
|
|
Io: ConnectionIo,
|
2019-03-26 05:58:01 +01:00
|
|
|
{
|
2021-02-17 18:10:46 +01:00
|
|
|
type Response = ConnectResponse;
|
|
|
|
type Error = SendRequestError;
|
2021-03-18 18:53:22 +01:00
|
|
|
type Future = ConnectRequestFuture<S::Future, Io>;
|
2019-11-19 04:55:17 +01:00
|
|
|
|
2021-02-17 18:10:46 +01:00
|
|
|
actix_service::forward_ready!(connector);
|
2019-11-19 04:55:17 +01:00
|
|
|
|
2021-02-17 18:10:46 +01:00
|
|
|
fn call(&self, req: ConnectRequest) -> Self::Future {
|
2019-11-19 04:55:17 +01:00
|
|
|
// connect to the host
|
2021-02-17 18:10:46 +01:00
|
|
|
let fut = match req {
|
|
|
|
ConnectRequest::Client(ref head, .., addr) => self.connector.call(ClientConnect {
|
|
|
|
uri: head.as_ref().uri.clone(),
|
|
|
|
addr,
|
|
|
|
}),
|
|
|
|
ConnectRequest::Tunnel(ref head, addr) => self.connector.call(ClientConnect {
|
|
|
|
uri: head.uri.clone(),
|
|
|
|
addr,
|
|
|
|
}),
|
|
|
|
};
|
2019-11-19 04:55:17 +01:00
|
|
|
|
2021-02-28 19:17:08 +01:00
|
|
|
ConnectRequestFuture::Connection {
|
|
|
|
fut,
|
|
|
|
req: Some(req),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-17 18:10:46 +01:00
|
|
|
|
2021-02-28 19:17:08 +01:00
|
|
|
pin_project_lite::pin_project! {
|
|
|
|
#[project = ConnectRequestProj]
|
2021-03-18 18:53:22 +01:00
|
|
|
pub enum ConnectRequestFuture<Fut, Io>
|
|
|
|
where
|
|
|
|
Io: ConnectionIo
|
|
|
|
{
|
2021-02-28 19:17:08 +01:00
|
|
|
Connection {
|
|
|
|
#[pin]
|
|
|
|
fut: Fut,
|
|
|
|
req: Option<ConnectRequest>
|
|
|
|
},
|
|
|
|
Client {
|
|
|
|
fut: LocalBoxFuture<'static, Result<(ResponseHead, Payload), SendRequestError>>
|
|
|
|
},
|
|
|
|
Tunnel {
|
|
|
|
fut: LocalBoxFuture<
|
|
|
|
'static,
|
2021-03-18 18:53:22 +01:00
|
|
|
Result<(ResponseHead, Framed<Connection<Io>, ClientCodec>), SendRequestError>,
|
2021-02-28 19:17:08 +01:00
|
|
|
>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-17 18:10:46 +01:00
|
|
|
|
2021-03-18 18:53:22 +01:00
|
|
|
impl<Fut, Io> Future for ConnectRequestFuture<Fut, Io>
|
2021-02-28 19:17:08 +01:00
|
|
|
where
|
2021-03-18 18:53:22 +01:00
|
|
|
Fut: Future<Output = Result<Connection<Io>, ConnectError>>,
|
2021-03-16 17:31:14 +01:00
|
|
|
Io: ConnectionIo,
|
2021-02-28 19:17:08 +01:00
|
|
|
{
|
|
|
|
type Output = Result<ConnectResponse, SendRequestError>;
|
|
|
|
|
|
|
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
match self.as_mut().project() {
|
|
|
|
ConnectRequestProj::Connection { fut, req } => {
|
|
|
|
let connection = ready!(fut.poll(cx))?;
|
|
|
|
let req = req.take().unwrap();
|
|
|
|
match req {
|
|
|
|
ConnectRequest::Client(head, body, ..) => {
|
|
|
|
// send request
|
|
|
|
let fut = ConnectRequestFuture::Client {
|
|
|
|
fut: connection.send_request(head, body),
|
|
|
|
};
|
2021-03-16 17:31:14 +01:00
|
|
|
self.set(fut);
|
2021-02-28 19:17:08 +01:00
|
|
|
}
|
|
|
|
ConnectRequest::Tunnel(head, ..) => {
|
|
|
|
// send request
|
|
|
|
let fut = ConnectRequestFuture::Tunnel {
|
|
|
|
fut: connection.open_tunnel(RequestHeadType::from(head)),
|
|
|
|
};
|
2021-03-16 17:31:14 +01:00
|
|
|
self.set(fut);
|
2021-02-28 19:17:08 +01:00
|
|
|
}
|
2021-02-17 18:10:46 +01:00
|
|
|
}
|
2021-02-28 19:17:08 +01:00
|
|
|
self.poll(cx)
|
2021-02-17 18:10:46 +01:00
|
|
|
}
|
2021-02-28 19:17:08 +01:00
|
|
|
ConnectRequestProj::Client { fut } => {
|
|
|
|
let (head, payload) = ready!(fut.as_mut().poll(cx))?;
|
|
|
|
Poll::Ready(Ok(ConnectResponse::Client(ClientResponse::new(
|
|
|
|
head, payload,
|
|
|
|
))))
|
|
|
|
}
|
|
|
|
ConnectRequestProj::Tunnel { fut } => {
|
|
|
|
let (head, framed) = ready!(fut.as_mut().poll(cx))?;
|
2021-03-16 17:31:14 +01:00
|
|
|
let framed = framed.into_map_io(|io| Box::new(io) as _);
|
2021-02-28 19:17:08 +01:00
|
|
|
Poll::Ready(Ok(ConnectResponse::Tunnel(head, framed)))
|
|
|
|
}
|
|
|
|
}
|
2019-09-10 06:29:32 +02:00
|
|
|
}
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|