Files
nym/common/socks5/proxy-helpers/src/proxy_runner/outbound.rs
T
2023-01-13 13:16:47 +00:00

96 lines
3.7 KiB
Rust

// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use super::SHUTDOWN_TIMEOUT;
use crate::connection_controller::{ConnectionMessage, ConnectionReceiver};
use futures::FutureExt;
use futures::StreamExt;
use log::*;
use socks5_requests::ConnectionId;
use std::{sync::Arc, time::Duration};
use task::TaskClient;
use tokio::io::AsyncWriteExt;
use tokio::select;
use tokio::{net::tcp::OwnedWriteHalf, sync::Notify, time::sleep, time::Instant};
const MIX_TTL: Duration = Duration::from_secs(5 * 60);
async fn deal_with_message(
connection_message: ConnectionMessage,
writer: &mut OwnedWriteHalf,
local_destination_address: &str,
remote_source_address: &str,
connection_id: ConnectionId,
) -> bool {
debug!(
target: &*format!("({connection_id}) socks5 outbound"),
"[{} bytes]\t{} → remote → mixnet → local → {} Remote closed: {}",
connection_message.payload.len(),
remote_source_address,
local_destination_address,
connection_message.socket_closed
);
if let Err(err) = writer.write_all(&connection_message.payload).await {
// the other half is probably going to blow up too (if not, this task also needs to notify the other one!!)
error!(target: &*format!("({connection_id}) socks5 outbound"), "failed to write response back to the socket - {err}");
return true;
}
if connection_message.socket_closed {
debug!(target: &*format!("({connection_id}) socks5 outbound"),
"Remote socket got closed - closing the local socket too");
return true;
}
false
}
pub(super) async fn run_outbound(
mut writer: OwnedWriteHalf,
local_destination_address: String, // addresses are provided for better logging
remote_source_address: String,
mut mix_receiver: ConnectionReceiver,
connection_id: ConnectionId,
shutdown_notify: Arc<Notify>,
mut shutdown_listener: TaskClient,
) -> (OwnedWriteHalf, ConnectionReceiver) {
let shutdown_future = shutdown_notify.notified().then(|_| sleep(SHUTDOWN_TIMEOUT));
tokio::pin!(shutdown_future);
let mut mix_timeout = Box::pin(sleep(MIX_TTL));
loop {
select! {
connection_message = &mut mix_receiver.next() => {
if let Some(connection_message) = connection_message {
if deal_with_message(connection_message, &mut writer, &local_destination_address, &remote_source_address, connection_id).await {
break;
}
mix_timeout.as_mut().reset(Instant::now() + MIX_TTL);
} else {
warn!("mix receiver is none so we already got removed somewhere. This isn't really a warning, but shouldn't happen to begin with, so please say if you see this message");
break;
}
}
_ = &mut mix_timeout => {
warn!("didn't get anything from the client on {} mixnet in {:?}. Shutting down the proxy.", connection_id, MIX_TTL);
// If they were online it's kinda their fault they didn't send any heartbeat messages.
break;
}
_ = &mut shutdown_future => {
debug!("closing outbound proxy after inbound was closed {:?} ago", SHUTDOWN_TIMEOUT);
break;
}
_ = shutdown_listener.recv() => {
log::trace!("ProxyRunner outbound: Received shutdown");
break;
}
}
}
trace!("{} - outbound closed", connection_id);
shutdown_notify.notify_one();
shutdown_listener.mark_as_success();
(writer, mix_receiver)
}