2021-10-31 11:21:32 +00:00
|
|
|
use crate::config::Upstream;
|
2021-10-26 13:36:12 +00:00
|
|
|
use crate::servers::protocol::tls::get_sni;
|
2023-10-04 18:50:40 +00:00
|
|
|
use crate::servers::{copy, Proxy};
|
2021-10-26 13:36:12 +00:00
|
|
|
use futures::future::try_join;
|
2023-06-02 15:35:29 +00:00
|
|
|
use log::{debug, error, info, warn};
|
2021-10-26 13:36:12 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
use tokio::io;
|
2023-10-04 18:50:40 +00:00
|
|
|
use tokio::io::AsyncWriteExt;
|
2021-10-26 13:36:12 +00:00
|
|
|
use tokio::net::{TcpListener, TcpStream};
|
|
|
|
|
2023-08-16 07:32:05 +00:00
|
|
|
pub(crate) async fn proxy(config: Arc<Proxy>) -> Result<(), Box<dyn std::error::Error>> {
|
2021-10-26 13:36:12 +00:00
|
|
|
let listener = TcpListener::bind(config.listen).await?;
|
|
|
|
let config = config.clone();
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let thread_proxy = config.clone();
|
|
|
|
match listener.accept().await {
|
|
|
|
Err(err) => {
|
|
|
|
error!("Failed to accept connection: {}", err);
|
|
|
|
return Err(Box::new(err));
|
|
|
|
}
|
|
|
|
Ok((stream, _)) => {
|
|
|
|
tokio::spawn(async move {
|
|
|
|
match accept(stream, thread_proxy).await {
|
|
|
|
Ok(_) => {}
|
|
|
|
Err(err) => {
|
|
|
|
error!("Relay thread returned an error: {}", err);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn accept(inbound: TcpStream, proxy: Arc<Proxy>) -> Result<(), Box<dyn std::error::Error>> {
|
2023-06-02 15:35:29 +00:00
|
|
|
info!("New connection from {:?}", inbound.peer_addr()?);
|
2021-10-26 13:36:12 +00:00
|
|
|
|
|
|
|
let upstream_name = match proxy.tls {
|
2023-08-16 07:31:20 +00:00
|
|
|
false => proxy.default_action.clone(),
|
2021-10-26 13:36:12 +00:00
|
|
|
true => {
|
|
|
|
let mut hello_buf = [0u8; 1024];
|
|
|
|
inbound.peek(&mut hello_buf).await?;
|
|
|
|
let snis = get_sni(&hello_buf);
|
|
|
|
if snis.is_empty() {
|
2023-08-16 07:31:20 +00:00
|
|
|
proxy.default_action.clone()
|
2021-10-26 13:36:12 +00:00
|
|
|
} else {
|
|
|
|
match proxy.sni.clone() {
|
|
|
|
Some(sni_map) => {
|
2023-08-16 07:31:20 +00:00
|
|
|
let mut upstream = proxy.default_action.clone();
|
2021-10-26 13:36:12 +00:00
|
|
|
for sni in snis {
|
|
|
|
let m = sni_map.get(&sni);
|
|
|
|
if m.is_some() {
|
|
|
|
upstream = m.unwrap().clone();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
upstream
|
|
|
|
}
|
2023-08-16 07:31:20 +00:00
|
|
|
None => proxy.default_action.clone(),
|
2021-10-26 13:36:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
debug!("Upstream: {}", upstream_name);
|
|
|
|
|
|
|
|
let upstream = match proxy.upstream.get(&upstream_name) {
|
|
|
|
Some(upstream) => upstream,
|
|
|
|
None => {
|
|
|
|
warn!(
|
|
|
|
"No upstream named {:?} on server {:?}",
|
2023-08-16 07:31:20 +00:00
|
|
|
proxy.default_action, proxy.name
|
2021-10-26 13:36:12 +00:00
|
|
|
);
|
2023-08-25 20:52:46 +00:00
|
|
|
return process(inbound, proxy.upstream.get(&proxy.default_action).unwrap()).await;
|
2021-11-01 05:45:47 +00:00
|
|
|
// ToDo: Remove unwrap and check default option
|
2021-10-26 13:36:12 +00:00
|
|
|
}
|
|
|
|
};
|
2023-06-02 15:35:29 +00:00
|
|
|
|
2023-10-04 20:33:11 +00:00
|
|
|
process(inbound, upstream).await
|
2021-10-26 13:36:12 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 05:45:47 +00:00
|
|
|
async fn process(
|
|
|
|
mut inbound: TcpStream,
|
2023-08-25 20:52:46 +00:00
|
|
|
upstream: &Upstream,
|
2021-11-01 05:45:47 +00:00
|
|
|
) -> Result<(), Box<dyn std::error::Error>> {
|
2021-10-31 11:21:32 +00:00
|
|
|
match upstream {
|
|
|
|
Upstream::Ban => {
|
2023-10-04 20:33:11 +00:00
|
|
|
inbound.shutdown().await?;
|
2021-10-31 11:21:32 +00:00
|
|
|
}
|
|
|
|
Upstream::Echo => {
|
|
|
|
let (mut ri, mut wi) = io::split(inbound);
|
|
|
|
let inbound_to_inbound = copy(&mut ri, &mut wi);
|
|
|
|
let bytes_tx = inbound_to_inbound.await;
|
|
|
|
debug!("Bytes read: {:?}", bytes_tx);
|
|
|
|
}
|
2023-10-04 20:10:28 +00:00
|
|
|
Upstream::Proxy(config) => {
|
|
|
|
let outbound = match config.protocol.as_ref() {
|
2023-06-02 15:35:29 +00:00
|
|
|
"tcp4" | "tcp6" | "tcp" => {
|
2023-10-04 20:10:28 +00:00
|
|
|
TcpStream::connect(config.resolve_addresses().await?.as_slice()).await?
|
2023-06-02 15:35:29 +00:00
|
|
|
}
|
|
|
|
_ => {
|
2023-10-04 20:10:28 +00:00
|
|
|
error!("Reached unknown protocol: {:?}", config.protocol);
|
2023-06-02 15:35:29 +00:00
|
|
|
return Err("Reached unknown protocol".into());
|
|
|
|
}
|
|
|
|
};
|
2021-10-26 13:36:12 +00:00
|
|
|
|
2023-06-02 15:35:29 +00:00
|
|
|
debug!("Connected to {:?}", outbound.peer_addr().unwrap());
|
2021-10-26 13:36:12 +00:00
|
|
|
|
2023-06-02 15:35:29 +00:00
|
|
|
let (mut ri, mut wi) = io::split(inbound);
|
|
|
|
let (mut ro, mut wo) = io::split(outbound);
|
2021-10-26 13:36:12 +00:00
|
|
|
|
2023-06-02 15:35:29 +00:00
|
|
|
let inbound_to_outbound = copy(&mut ri, &mut wo);
|
|
|
|
let outbound_to_inbound = copy(&mut ro, &mut wi);
|
2021-10-26 13:36:12 +00:00
|
|
|
|
2023-06-02 15:35:29 +00:00
|
|
|
let (bytes_tx, bytes_rx) = try_join(inbound_to_outbound, outbound_to_inbound).await?;
|
|
|
|
|
|
|
|
debug!("Bytes read: {:?} write: {:?}", bytes_tx, bytes_rx);
|
|
|
|
}
|
2021-11-01 07:25:12 +00:00
|
|
|
};
|
|
|
|
Ok(())
|
2021-10-26 13:36:12 +00:00
|
|
|
}
|