2021-02-07 19:56:39 +01:00
|
|
|
use std::{
|
|
|
|
fmt, io, net,
|
|
|
|
pin::Pin,
|
|
|
|
task::{Context, Poll},
|
|
|
|
};
|
2019-03-28 02:53:19 +01:00
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
use actix_codec::{AsyncRead, AsyncWrite, Framed, ReadBuf};
|
2021-02-07 19:56:39 +01:00
|
|
|
use actix_http::{
|
|
|
|
body::Body,
|
|
|
|
client::{Connect as ClientConnect, ConnectError, Connection, SendRequestError},
|
|
|
|
h1::ClientCodec,
|
|
|
|
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-07 19:56:39 +01:00
|
|
|
use futures_core::future::LocalBoxFuture;
|
2019-03-26 05:58:01 +01:00
|
|
|
|
2019-03-26 19:41:38 +01:00
|
|
|
use crate::response::ClientResponse;
|
|
|
|
|
2021-02-17 18:10:46 +01:00
|
|
|
pub(crate) struct ConnectorWrapper<T> {
|
|
|
|
connector: T,
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2021-02-17 18:10:46 +01:00
|
|
|
impl<T> ConnectorWrapper<T> {
|
|
|
|
pub(crate) fn new(connector: T) -> Self {
|
|
|
|
Self { connector }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type ConnectService = Box<
|
|
|
|
dyn Service<
|
|
|
|
ConnectRequest,
|
|
|
|
Response = ConnectResponse,
|
|
|
|
Error = SendRequestError,
|
|
|
|
Future = LocalBoxFuture<'static, Result<ConnectResponse, SendRequestError>>,
|
|
|
|
>,
|
|
|
|
>;
|
|
|
|
|
|
|
|
pub enum ConnectRequest {
|
|
|
|
Client(RequestHeadType, Body, Option<net::SocketAddr>),
|
|
|
|
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"
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Service<ConnectRequest> for ConnectorWrapper<T>
|
2019-03-26 05:58:01 +01:00
|
|
|
where
|
2021-01-04 00:47:04 +01:00
|
|
|
T: Service<ClientConnect, Error = ConnectError>,
|
2019-03-26 05:58:01 +01:00
|
|
|
T::Response: Connection,
|
2019-03-28 02:53:19 +01:00
|
|
|
<T::Response as Connection>::Io: 'static,
|
2019-03-26 05:58:01 +01:00
|
|
|
T::Future: 'static,
|
|
|
|
{
|
2021-02-17 18:10:46 +01:00
|
|
|
type Response = ConnectResponse;
|
|
|
|
type Error = SendRequestError;
|
|
|
|
type Future = LocalBoxFuture<'static, Result<Self::Response, Self::Error>>;
|
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
|
|
|
|
2019-12-13 06:24:57 +01:00
|
|
|
Box::pin(async move {
|
2019-11-19 04:55:17 +01:00
|
|
|
let connection = fut.await?;
|
|
|
|
|
2021-02-17 18:10:46 +01:00
|
|
|
match req {
|
|
|
|
ConnectRequest::Client(head, body, ..) => {
|
|
|
|
// send request
|
|
|
|
let (head, payload) = connection.send_request(head, body).await?;
|
|
|
|
|
|
|
|
Ok(ConnectResponse::Client(ClientResponse::new(head, payload)))
|
|
|
|
}
|
|
|
|
ConnectRequest::Tunnel(head, ..) => {
|
|
|
|
// send request
|
|
|
|
let (head, framed) =
|
|
|
|
connection.open_tunnel(RequestHeadType::from(head)).await?;
|
|
|
|
|
|
|
|
let framed = framed.into_map_io(|io| BoxedSocket(Box::new(Socket(io))));
|
|
|
|
Ok(ConnectResponse::Tunnel(head, framed))
|
|
|
|
}
|
|
|
|
}
|
2019-12-13 06:24:57 +01:00
|
|
|
})
|
2019-09-10 06:29:32 +02:00
|
|
|
}
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
trait AsyncSocket {
|
2019-11-19 04:55:17 +01:00
|
|
|
fn as_read(&self) -> &(dyn AsyncRead + Unpin);
|
|
|
|
fn as_read_mut(&mut self) -> &mut (dyn AsyncRead + Unpin);
|
|
|
|
fn as_write(&mut self) -> &mut (dyn AsyncWrite + Unpin);
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
struct Socket<T: AsyncRead + AsyncWrite + Unpin>(T);
|
2019-03-28 02:53:19 +01:00
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
impl<T: AsyncRead + AsyncWrite + Unpin> AsyncSocket for Socket<T> {
|
|
|
|
fn as_read(&self) -> &(dyn AsyncRead + Unpin) {
|
2019-03-28 02:53:19 +01:00
|
|
|
&self.0
|
|
|
|
}
|
2019-11-19 04:55:17 +01:00
|
|
|
fn as_read_mut(&mut self) -> &mut (dyn AsyncRead + Unpin) {
|
2019-03-28 02:53:19 +01:00
|
|
|
&mut self.0
|
|
|
|
}
|
2019-11-19 04:55:17 +01:00
|
|
|
fn as_write(&mut self) -> &mut (dyn AsyncWrite + Unpin) {
|
2019-03-28 02:53:19 +01:00
|
|
|
&mut self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct BoxedSocket(Box<dyn AsyncSocket>);
|
|
|
|
|
2019-04-12 01:01:54 +02:00
|
|
|
impl fmt::Debug for BoxedSocket {
|
2019-12-08 07:31:16 +01:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2019-04-12 01:01:54 +02:00
|
|
|
write!(f, "BoxedSocket")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 02:53:19 +01:00
|
|
|
impl AsyncRead for BoxedSocket {
|
2019-11-19 04:55:17 +01:00
|
|
|
fn poll_read(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context<'_>,
|
2021-01-04 00:47:04 +01:00
|
|
|
buf: &mut ReadBuf<'_>,
|
|
|
|
) -> Poll<io::Result<()>> {
|
2019-11-19 04:55:17 +01:00
|
|
|
Pin::new(self.get_mut().0.as_read_mut()).poll_read(cx, buf)
|
|
|
|
}
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
impl AsyncWrite for BoxedSocket {
|
|
|
|
fn poll_write(
|
|
|
|
self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context<'_>,
|
|
|
|
buf: &[u8],
|
|
|
|
) -> Poll<io::Result<usize>> {
|
|
|
|
Pin::new(self.get_mut().0.as_write()).poll_write(cx, buf)
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 04:55:17 +01:00
|
|
|
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
|
|
|
Pin::new(self.get_mut().0.as_write()).poll_flush(cx)
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
|
|
|
|
2021-02-12 00:03:17 +01:00
|
|
|
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
2019-11-19 04:55:17 +01:00
|
|
|
Pin::new(self.get_mut().0.as_write()).poll_shutdown(cx)
|
2019-03-28 02:53:19 +01:00
|
|
|
}
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|