2025-01-09 19:23:02 +00:00
|
|
|
use crate::servers::protocol::tls::determine_upstream_name;
|
2023-10-04 22:23:34 +00:00
|
|
|
use crate::servers::Proxy;
|
2025-01-09 19:23:02 +00:00
|
|
|
use log::{debug, error, info, trace, warn};
|
2023-10-04 22:23:34 +00:00
|
|
|
use std::error::Error;
|
2021-10-26 13:36:12 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
use tokio::net::{TcpListener, TcpStream};
|
|
|
|
|
2023-10-04 22:23:34 +00:00
|
|
|
pub(crate) async fn proxy(config: Arc<Proxy>) -> Result<(), Box<dyn 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);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-04 22:23:34 +00:00
|
|
|
async fn accept(inbound: TcpStream, proxy: Arc<Proxy>) -> Result<(), Box<dyn 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(),
|
2025-01-09 19:23:02 +00:00
|
|
|
true => determine_upstream_name(&inbound, &proxy).await?,
|
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-10-04 22:23:34 +00:00
|
|
|
proxy.upstream.get(&proxy.default_action).unwrap()
|
2021-10-26 13:36:12 +00:00
|
|
|
}
|
|
|
|
};
|
2023-06-02 15:35:29 +00:00
|
|
|
|
2023-10-04 22:23:34 +00:00
|
|
|
upstream.process(inbound).await
|
2021-10-26 13:36:12 +00:00
|
|
|
}
|