mod dns; mod embedded_certificate; mod socks5; mod socks5_udp; mod stdio; mod tcp; mod tls; mod tunnel; mod udp; #[cfg(unix)] mod unix_socket; use anyhow::anyhow; use base64::Engine; use clap::Parser; use futures_util::{stream, TryStreamExt}; use hickory_resolver::config::{NameServerConfig, ResolverConfig, ResolverOpts}; use hyper::header::HOST; use hyper::http::{HeaderName, HeaderValue}; use log::{debug, warn}; use once_cell::sync::Lazy; use parking_lot::Mutex; use serde::{Deserialize, Serialize}; use std::collections::{BTreeMap, HashMap}; use std::fmt::{Debug, Formatter}; use std::io::ErrorKind; use std::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6}; use std::path::PathBuf; use std::str::FromStr; use std::sync::Arc; use std::time::Duration; use std::{fmt, io}; use tokio::io::{AsyncRead, AsyncWrite}; use tokio::net::TcpStream; use tokio_rustls::rustls::server::DnsName; use tokio_rustls::rustls::{Certificate, PrivateKey, ServerName}; use tokio_rustls::TlsConnector; use tracing::{error, info}; use crate::dns::DnsResolver; use crate::tunnel::{to_host_port, RemoteAddr, TransportAddr}; use crate::udp::MyUdpSocket; use tracing_subscriber::filter::Directive; use tracing_subscriber::EnvFilter; use url::{Host, Url}; /// Use the websockets protocol to tunnel {TCP,UDP} traffic /// wsTunnelClient <---> wsTunnelServer <---> RemoteHost /// Use secure connection (wss://) to bypass proxies #[derive(clap::Parser, Debug)] #[command(author, version, about, verbatim_doc_comment, long_about = None)] struct Wstunnel { #[command(subcommand)] commands: Commands, /// Disable color output in logs #[arg(long, global = true, verbatim_doc_comment, env = "NO_COLOR")] no_color: Option, /// *WARNING* The flag does nothing, you need to set the env variable *WARNING* /// Control the number of threads that will be used. /// By default it is equal the number of cpus #[arg( long, global = true, value_name = "INT", verbatim_doc_comment, env = "TOKIO_WORKER_THREADS" )] nb_worker_threads: Option, /// Control the log verbosity. i.e: TRACE, DEBUG, INFO, WARN, ERROR, OFF /// for more details: https://docs.rs/env_logger/0.10.1/env_logger/#enabling-logging #[arg( long, global = true, value_name = "LOG_LEVEL", verbatim_doc_comment, env = "RUST_LOG", default_value = "INFO" )] log_lvl: Directive, } #[derive(clap::Subcommand, Debug)] enum Commands { Client(Box), Server(Box), } #[derive(clap::Args, Debug)] struct Client { /// Listen on local and forwards traffic from remote. Can be specified multiple times /// examples: /// 'tcp://1212:google.com:443' => listen locally on tcp on port 1212 and forward to google.com on port 443 /// 'tcp://2:n.lan:4?proxy_protocol' => listen locally on tcp on port 2 and forward to n.lan on port 4 /// Send a proxy protocol header v2 when establishing connection to n.lan /// /// 'udp://1212:1.1.1.1:53' => listen locally on udp on port 1212 and forward to cloudflare dns 1.1.1.1 on port 53 /// 'udp://1212:1.1.1.1:53?timeout_sec=10' timeout_sec on udp force close the tunnel after 10sec. Set it to 0 to disable the timeout [default: 30] /// /// 'socks5://[::1]:1212' => listen locally with socks5 on port 1212 and forward dynamically requested tunnel /// /// 'tproxy+tcp://[::1]:1212' => listen locally on tcp on port 1212 as a *transparent proxy* and forward dynamically requested tunnel /// 'tproxy+udp://[::1]:1212?timeout_sec=10' listen locally on udp on port 1212 as a *transparent proxy* and forward dynamically requested tunnel /// linux only and requires sudo/CAP_NET_ADMIN /// /// 'stdio://google.com:443' => listen for data from stdio, mainly for `ssh -o ProxyCommand="wstunnel client -L stdio://%h:%p ws://localhost:8080" my-server` /// /// 'unix:///tmp/wstunnel.sock:g.com:443' => listen for data from unix socket of path /tmp/wstunnel.sock and forward to g.com:443 #[arg(short='L', long, value_name = "{tcp,udp,socks5,stdio,unix}://[BIND:]PORT:HOST:PORT", value_parser = parse_tunnel_arg, verbatim_doc_comment)] local_to_remote: Vec, /// Listen on remote and forwards traffic from local. Can be specified multiple times. Only tcp is supported /// examples: /// 'tcp://1212:google.com:443' => listen on server for incoming tcp cnx on port 1212 and forward to google.com on port 443 from local machine /// 'udp://1212:1.1.1.1:53' => listen on server for incoming udp on port 1212 and forward to cloudflare dns 1.1.1.1 on port 53 from local machine /// 'socks5://[::1]:1212' => listen on server for incoming socks5 request on port 1212 and forward dynamically request from local machine /// 'unix://wstunnel.sock:g.com:443' => listen on server for incoming data from unix socket of path wstunnel.sock and forward to g.com:443 from local machine #[arg(short='R', long, value_name = "{tcp,udp,socks5,unix}://[BIND:]PORT:HOST:PORT", value_parser = parse_tunnel_arg, verbatim_doc_comment)] remote_to_local: Vec, /// (linux only) Mark network packet with SO_MARK sockoption with the specified value. /// You need to use {root, sudo, capabilities} to run wstunnel when using this option #[arg(long, value_name = "INT", verbatim_doc_comment)] socket_so_mark: Option, /// Client will maintain a pool of open connection to the server, in order to speed up the connection process. /// This option set the maximum number of connection that will be kept open. /// This is useful if you plan to create/destroy a lot of tunnel (i.e: with socks5 to navigate with a browser) /// It will avoid the latency of doing tcp + tls handshake with the server #[arg(short = 'c', long, value_name = "INT", default_value = "0", verbatim_doc_comment)] connection_min_idle: u32, /// Domain name that will be use as SNI during TLS handshake /// Warning: If you are behind a CDN (i.e: Cloudflare) you must set this domain also in the http HOST header. /// or it will be flagged as fishy and your request rejected #[arg(long, value_name = "DOMAIN_NAME", value_parser = parse_sni_override, verbatim_doc_comment)] tls_sni_override: Option, /// Enable TLS certificate verification. /// Disabled by default. The client will happily connect to any server with self signed certificate. #[arg(long, verbatim_doc_comment)] tls_verify_certificate: bool, /// If set, will use this http proxy to connect to the server #[arg( short = 'p', long, value_name = "USER:PASS@HOST:PORT", verbatim_doc_comment, env = "HTTP_PROXY" )] http_proxy: Option, /// If set, will use this login to connect to the http proxy. Override the one from --http-proxy #[arg(long, value_name = "LOGIN", verbatim_doc_comment, env = "WSTUNNEL_HTTP_PROXY_LOGIN")] http_proxy_login: Option, /// If set, will use this password to connect to the http proxy. Override the one from --http-proxy #[arg( long, value_name = "PASSWORD", verbatim_doc_comment, env = "WSTUNNEL_HTTP_PROXY_PASSWORD" )] http_proxy_password: Option, /// Use a specific prefix that will show up in the http path during the upgrade request. /// Useful if you need to route requests server side but don't have vhosts #[arg( short = 'P', long, default_value = "v1", verbatim_doc_comment, env = "WSTUNNEL_HTTP_UPGRADE_PATH_PREFIX" )] http_upgrade_path_prefix: String, /// Pass authorization header with basic auth credentials during the upgrade request. /// If you need more customization, you can use the http_headers option. #[arg(long, value_name = "USER[:PASS]", value_parser = parse_http_credentials, verbatim_doc_comment)] http_upgrade_credentials: Option, /// Frequency at which the client will send websocket ping to the server. #[arg(long, value_name = "seconds", default_value = "30", value_parser = parse_duration_sec, verbatim_doc_comment)] websocket_ping_frequency_sec: Option, /// Enable the masking of websocket frames. Default is false /// Enable this option only if you use unsecure (non TLS) websocket server and you see some issues. Otherwise, it is just overhead. #[arg(long, default_value = "false", verbatim_doc_comment)] websocket_mask_frame: bool, /// Send custom headers in the upgrade request /// Can be specified multiple time #[arg(short='H', long, value_name = "HEADER_NAME: HEADER_VALUE", value_parser = parse_http_headers, verbatim_doc_comment)] http_headers: Vec<(HeaderName, HeaderValue)>, /// Address of the wstunnel server /// Example: With TLS wss://wstunnel.example.com or without ws://wstunnel.example.com #[arg(value_name = "ws[s]|http[s]://wstunnel.server.com[:port]", value_parser = parse_server_url, verbatim_doc_comment)] remote_addr: Url, } #[derive(clap::Args, Debug)] struct Server { /// Address of the wstunnel server to bind to /// Example: With TLS wss://0.0.0.0:8080 or without ws://[::]:8080 #[arg(value_name = "ws[s]://0.0.0.0[:port]", value_parser = parse_server_url, verbatim_doc_comment)] remote_addr: Url, /// (linux only) Mark network packet with SO_MARK sockoption with the specified value. /// You need to use {root, sudo, capabilities} to run wstunnel when using this option #[arg(long, value_name = "INT", verbatim_doc_comment)] socket_so_mark: Option, /// Frequency at which the server will send websocket ping to client. #[arg(long, value_name = "seconds", value_parser = parse_duration_sec, verbatim_doc_comment)] websocket_ping_frequency_sec: Option, /// Enable the masking of websocket frames. Default is false /// Enable this option only if you use unsecure (non TLS) websocket server and you see some issues. Otherwise, it is just overhead. #[arg(long, default_value = "false", verbatim_doc_comment)] websocket_mask_frame: bool, /// Server will only accept connection from the specified tunnel information. /// Can be specified multiple time /// Example: --restrict-to "google.com:443" --restrict-to "localhost:22" #[arg(long, value_name = "DEST:PORT", verbatim_doc_comment)] restrict_to: Option>, /// Dns resolver to use to lookup ips of domain name /// This option is not going to work if you use transparent proxy /// Can be specified multiple time /// Example: /// dns://1.1.1.1 for using udp /// dns+https://1.1.1.1 for using dns over HTTPS /// dns+tls://8.8.8.8 for using dns over TLS /// To use libc resolver, use /// system://0.0.0.0 #[arg(long, verbatim_doc_comment)] dns_resolver: Option>, /// Server will only accept connection from if this specific path prefix is used during websocket upgrade. /// Useful if you specify in the client a custom path prefix and you want the server to only allow this one. /// The path prefix act as a secret to authenticate clients /// Disabled by default. Accept all path prefix. Can be specified multiple time #[arg( short = 'r', long, verbatim_doc_comment, env = "WSTUNNEL_RESTRICT_HTTP_UPGRADE_PATH_PREFIX" )] restrict_http_upgrade_path_prefix: Option>, /// [Optional] Use custom certificate (pem) instead of the default embedded self signed certificate. /// The certificate will be automatically reloaded if it changes #[arg(long, value_name = "FILE_PATH", verbatim_doc_comment)] tls_certificate: Option, /// [Optional] Use a custom tls key (pem, ec, rsa) that the server will use instead of the default embedded one /// The private key will be automatically reloaded if it changes #[arg(long, value_name = "FILE_PATH", verbatim_doc_comment)] tls_private_key: Option, } #[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)] enum LocalProtocol { Tcp { proxy_protocol: bool }, Udp { timeout: Option }, Stdio, Socks5 { timeout: Option }, TProxyTcp, TProxyUdp { timeout: Option }, ReverseTcp, ReverseUdp { timeout: Option }, ReverseSocks5, ReverseUnix { path: PathBuf }, Unix { path: PathBuf }, } #[derive(Clone, Debug)] pub struct LocalToRemote { local_protocol: LocalProtocol, local: SocketAddr, remote: (Host, u16), } fn parse_duration_sec(arg: &str) -> Result { use std::io::Error; let Ok(secs) = arg.parse::() else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot duration of seconds from {}", arg), )); }; Ok(Duration::from_secs(secs)) } fn parse_local_bind(arg: &str) -> Result<(SocketAddr, &str), io::Error> { use std::io::Error; let (bind, remaining) = if arg.starts_with('[') { // ipv6 bind let Some((ipv6_str, remaining)) = arg.split_once(']') else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse IPv6 bind from {}", arg), )); }; let Ok(ipv6_addr) = Ipv6Addr::from_str(&ipv6_str[1..]) else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse IPv6 bind from {}", ipv6_str), )); }; (IpAddr::V6(ipv6_addr), remaining) } else { // Maybe ipv4 addr let (ipv4_str, remaining) = arg.split_once(':').unwrap_or((arg, "")); match Ipv4Addr::from_str(ipv4_str) { Ok(ip4_addr) => (IpAddr::V4(ip4_addr), remaining), // Must be the port, so we default to ipv4 bind Err(_) => (IpAddr::V4(Ipv4Addr::from_str("127.0.0.1").unwrap()), arg), } }; let remaining = remaining.trim_start_matches(':'); let (port_str, remaining) = remaining.split_once([':', '?']).unwrap_or((remaining, "")); let Ok(bind_port): Result = port_str.parse() else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse bind port from {}", port_str), )); }; Ok((SocketAddr::new(bind, bind_port), remaining)) } #[allow(clippy::type_complexity)] fn parse_tunnel_dest(remaining: &str) -> Result<(Host, u16, BTreeMap), io::Error> { use std::io::Error; let Ok(remote) = Url::parse(&format!("fake://{}", remaining)) else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse remote from {}", remaining), )); }; let Some(remote_host) = remote.host() else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse remote host from {}", remaining), )); }; let Some(remote_port) = remote.port() else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse remote port from {}", remaining), )); }; let options: BTreeMap = remote.query_pairs().into_owned().collect(); Ok((remote_host.to_owned(), remote_port, options)) } fn parse_tunnel_arg(arg: &str) -> Result { use std::io::Error; match &arg[..6] { "tcp://" => { let (local_bind, remaining) = parse_local_bind(&arg[6..])?; let (dest_host, dest_port, options) = parse_tunnel_dest(remaining)?; let proxy_protocol = options.contains_key("proxy_protocol"); Ok(LocalToRemote { local_protocol: LocalProtocol::Tcp { proxy_protocol }, local: local_bind, remote: (dest_host, dest_port), }) } "udp://" => { let (local_bind, remaining) = parse_local_bind(&arg[6..])?; let (dest_host, dest_port, options) = parse_tunnel_dest(remaining)?; let timeout = options .get("timeout_sec") .and_then(|x| x.parse::().ok()) .map(|d| if d == 0 { None } else { Some(Duration::from_secs(d)) }) .unwrap_or(Some(Duration::from_secs(30))); Ok(LocalToRemote { local_protocol: LocalProtocol::Udp { timeout }, local: local_bind, remote: (dest_host, dest_port), }) } "unix:/" => { let Some((path, remote)) = arg[7..].split_once(':') else { return Err(Error::new( ErrorKind::InvalidInput, format!("cannot parse unix socket path from {}", arg), )); }; let (dest_host, dest_port, _options) = parse_tunnel_dest(remote)?; Ok(LocalToRemote { local_protocol: LocalProtocol::Unix { path: PathBuf::from(path), }, local: SocketAddr::V6(SocketAddrV6::new(Ipv6Addr::UNSPECIFIED, 0, 0, 0)), remote: (dest_host, dest_port), }) } _ => match &arg[..8] { "socks5:/" => { let (local_bind, remaining) = parse_local_bind(&arg[9..])?; let x = format!("0.0.0.0:0?{}", remaining); let (dest_host, dest_port, options) = parse_tunnel_dest(&x)?; let timeout = options .get("timeout_sec") .and_then(|x| x.parse::().ok()) .map(|d| if d == 0 { None } else { Some(Duration::from_secs(d)) }) .unwrap_or(Some(Duration::from_secs(30))); Ok(LocalToRemote { local_protocol: LocalProtocol::Socks5 { timeout }, local: local_bind, remote: (dest_host, dest_port), }) } "stdio://" => { let (dest_host, dest_port, _options) = parse_tunnel_dest(&arg[8..])?; Ok(LocalToRemote { local_protocol: LocalProtocol::Stdio, local: SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::from(0), 0)), remote: (dest_host, dest_port), }) } "tproxy+t" => { let (local_bind, remaining) = parse_local_bind(&arg["tproxy+tcp://".len()..])?; let x = format!("0.0.0.0:0?{}", remaining); let (dest_host, dest_port, _options) = parse_tunnel_dest(&x)?; Ok(LocalToRemote { local_protocol: LocalProtocol::TProxyTcp, local: local_bind, remote: (dest_host, dest_port), }) } "tproxy+u" => { let (local_bind, remaining) = parse_local_bind(&arg["tproxy+udp://".len()..])?; let x = format!("0.0.0.0:0?{}", remaining); let (dest_host, dest_port, options) = parse_tunnel_dest(&x)?; let timeout = options .get("timeout_sec") .and_then(|x| x.parse::().ok()) .map(|d| if d == 0 { None } else { Some(Duration::from_secs(d)) }) .unwrap_or(Some(Duration::from_secs(30))); Ok(LocalToRemote { local_protocol: LocalProtocol::TProxyUdp { timeout }, local: local_bind, remote: (dest_host, dest_port), }) } _ => Err(Error::new( ErrorKind::InvalidInput, format!("Invalid local protocol for tunnel {}", arg), )), }, } } fn parse_sni_override(arg: &str) -> Result { match DnsName::try_from(arg.to_string()) { Ok(val) => Ok(val), Err(err) => Err(io::Error::new( ErrorKind::InvalidInput, format!("Invalid sni override: {}", err), )), } } fn parse_http_headers(arg: &str) -> Result<(HeaderName, HeaderValue), io::Error> { let Some((key, value)) = arg.split_once(':') else { return Err(io::Error::new( ErrorKind::InvalidInput, format!("cannot parse http header from {}", arg), )); }; let value = match HeaderValue::from_str(value.trim()) { Ok(value) => value, Err(err) => { return Err(io::Error::new( ErrorKind::InvalidInput, format!("cannot parse http header value from {} due to {:?}", value, err), )) } }; Ok((HeaderName::from_str(key).unwrap(), value)) } fn parse_http_credentials(arg: &str) -> Result { let encoded = base64::engine::general_purpose::STANDARD.encode(arg.trim().as_bytes()); let Ok(header) = HeaderValue::from_str(&format!("Basic {}", encoded)) else { return Err(io::Error::new( ErrorKind::InvalidInput, format!("cannot parse http credentials {}", arg), )); }; Ok(header) } fn parse_server_url(arg: &str) -> Result { let Ok(url) = Url::parse(arg) else { return Err(io::Error::new( ErrorKind::InvalidInput, format!("cannot parse server url {}", arg), )); }; if url.scheme() != "ws" && url.scheme() != "wss" { return Err(io::Error::new( ErrorKind::InvalidInput, format!("invalid scheme {}", url.scheme()), )); } if url.host().is_none() { return Err(io::Error::new(ErrorKind::InvalidInput, format!("invalid server host {}", arg))); } Ok(url) } #[derive(Clone)] pub struct TlsClientConfig { pub tls_sni_override: Option, pub tls_verify_certificate: bool, pub tls_connector: TlsConnector, } #[derive(Debug)] pub struct TlsServerConfig { pub tls_certificate: Mutex>, pub tls_key: Mutex, pub tls_certificate_path: Option, pub tls_key_path: Option, } pub struct WsServerConfig { pub socket_so_mark: Option, pub bind: SocketAddr, pub restrict_to: Option>, pub restrict_http_upgrade_path_prefix: Option>, pub websocket_ping_frequency: Option, pub timeout_connect: Duration, pub websocket_mask_frame: bool, pub tls: Option, pub dns_resolver: DnsResolver, } impl Debug for WsServerConfig { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { f.debug_struct("WsServerConfig") .field("socket_so_mark", &self.socket_so_mark) .field("bind", &self.bind) .field("restrict_to", &self.restrict_to) .field("restrict_http_upgrade_path_prefix", &self.restrict_http_upgrade_path_prefix) .field("websocket_ping_frequency", &self.websocket_ping_frequency) .field("timeout_connect", &self.timeout_connect) .field("websocket_mask_frame", &self.websocket_mask_frame) .field("tls", &self.tls.is_some()) .finish() } } #[derive(Clone)] pub struct WsClientConfig { pub remote_addr: TransportAddr, pub socket_so_mark: Option, pub http_upgrade_path_prefix: String, pub http_upgrade_credentials: Option, pub http_headers: HashMap, pub http_header_host: HeaderValue, pub timeout_connect: Duration, pub websocket_ping_frequency: Duration, pub websocket_mask_frame: bool, pub http_proxy: Option, cnx_pool: Option>, pub dns_resolver: DnsResolver, } impl WsClientConfig { pub fn websocket_scheme(&self) -> &'static str { match self.remote_addr.tls().is_some() { false => "ws", true => "wss", } } pub fn cnx_pool(&self) -> &bb8::Pool { self.cnx_pool.as_ref().unwrap() } pub fn websocket_host_url(&self) -> String { format!("{}:{}", self.remote_addr.host(), self.remote_addr.port()) } pub fn tls_server_name(&self) -> ServerName { static INVALID_DNS_NAME: Lazy = Lazy::new(|| DnsName::try_from_ascii(b"dns-name-invalid.com").unwrap()); match self.remote_addr.tls().and_then(|tls| tls.tls_sni_override.as_ref()) { None => match &self.remote_addr.host() { Host::Domain(domain) => { ServerName::DnsName(DnsName::try_from(domain.clone()).unwrap_or_else(|_| INVALID_DNS_NAME.clone())) } Host::Ipv4(ip) => ServerName::IpAddress(IpAddr::V4(*ip)), Host::Ipv6(ip) => ServerName::IpAddress(IpAddr::V6(*ip)), }, Some(sni_override) => ServerName::DnsName(sni_override.clone()), } } } #[tokio::main] async fn main() { let args = Wstunnel::parse(); // Setup logging match &args.commands { // Disable logging if there is a stdio tunnel Commands::Client(args) if args .local_to_remote .iter() .filter(|x| x.local_protocol == LocalProtocol::Stdio) .count() > 0 => {} _ => { tracing_subscriber::fmt() .with_ansi(args.no_color.is_none()) .with_env_filter( EnvFilter::builder() .with_default_directive(args.log_lvl) .from_env_lossy(), ) .init(); } } match args.commands { Commands::Client(args) => { let tls = match args.remote_addr.scheme() { "ws" => None, "wss" => Some(TlsClientConfig { tls_connector: tls::tls_connector(args.tls_verify_certificate, Some(vec![b"http/1.1".to_vec()])) .expect("Cannot create tls connector"), tls_sni_override: args.tls_sni_override, tls_verify_certificate: args.tls_verify_certificate, }), _ => panic!("invalid scheme in server url {}", args.remote_addr.scheme()), }; // Extract host header from http_headers let host_header = if let Some((_, host_val)) = args.http_headers.iter().find(|(h, _)| *h == HOST) { host_val.clone() } else { let host = match args.remote_addr.port_or_known_default() { None | Some(80) | Some(443) => args.remote_addr.host().unwrap().to_string(), Some(port) => format!("{}:{}", args.remote_addr.host().unwrap(), port), }; HeaderValue::from_str(&host).unwrap() }; let mut client_config = WsClientConfig { remote_addr: TransportAddr::from_str( args.remote_addr.scheme(), args.remote_addr.host().unwrap().to_owned(), args.remote_addr.port_or_known_default().unwrap(), tls, ) .unwrap(), socket_so_mark: args.socket_so_mark, http_upgrade_path_prefix: args.http_upgrade_path_prefix, http_upgrade_credentials: args.http_upgrade_credentials, http_headers: args.http_headers.into_iter().filter(|(k, _)| k != HOST).collect(), http_header_host: host_header, timeout_connect: Duration::from_secs(10), websocket_ping_frequency: args.websocket_ping_frequency_sec.unwrap_or(Duration::from_secs(30)), websocket_mask_frame: args.websocket_mask_frame, http_proxy: if let Some(proxy) = args.http_proxy { let mut proxy = if proxy.starts_with("http://") { Url::parse(&proxy).expect("Invalid http proxy url") } else { Url::parse(&format!("http://{}", proxy)).expect("Invalid http proxy url") }; if let Some(login) = args.http_proxy_login { proxy.set_username(login.as_str()).expect("Cannot set http proxy login"); } if let Some(password) = args.http_proxy_password { proxy .set_password(Some(password.as_str())) .expect("Cannot set http proxy password"); } Some(proxy) } else { None }, cnx_pool: None, dns_resolver: if let Ok(resolver) = hickory_resolver::AsyncResolver::tokio_from_system_conf() { DnsResolver::TrustDns(resolver) } else { debug!("Fall-backing to system dns resolver"); DnsResolver::System }, }; let pool = bb8::Pool::builder() .max_size(1000) .min_idle(Some(args.connection_min_idle)) .max_lifetime(Some(Duration::from_secs(30))) .retry_connection(true) .build(client_config.clone()) .await .unwrap(); client_config.cnx_pool = Some(pool); let client_config = Arc::new(client_config); // Start tunnels for tunnel in args.remote_to_local.into_iter() { let client_config = client_config.clone(); match &tunnel.local_protocol { LocalProtocol::Tcp { proxy_protocol: _ } => { tokio::spawn(async move { let remote = tunnel.remote.clone(); let cfg = client_config.clone(); let connect_to_dest = |_| async { tcp::connect( &remote.0, remote.1, cfg.socket_so_mark, cfg.timeout_connect, &cfg.dns_resolver, ) .await }; let (host, port) = to_host_port(tunnel.local); let remote = RemoteAddr { protocol: LocalProtocol::ReverseTcp, host, port, }; if let Err(err) = tunnel::client::run_reverse_tunnel(client_config, remote, connect_to_dest).await { error!("{:?}", err); } }); } LocalProtocol::Udp { timeout } => { let timeout = *timeout; tokio::spawn(async move { let cfg = client_config.clone(); let (host, port) = to_host_port(tunnel.local); let remote = RemoteAddr { protocol: LocalProtocol::ReverseUdp { timeout }, host, port, }; let connect_to_dest = |_| async { udp::connect(&tunnel.remote.0, tunnel.remote.1, cfg.timeout_connect, &cfg.dns_resolver) .await }; if let Err(err) = tunnel::client::run_reverse_tunnel(client_config, remote, connect_to_dest).await { error!("{:?}", err); } }); } LocalProtocol::Socks5 { .. } => { trait T: AsyncWrite + AsyncRead + Unpin + Send {} impl T for TcpStream {} impl T for MyUdpSocket {} tokio::spawn(async move { let cfg = client_config.clone(); let (host, port) = to_host_port(tunnel.local); let remote = RemoteAddr { protocol: LocalProtocol::ReverseSocks5, host, port, }; let connect_to_dest = |remote: Option| { let so_mark = cfg.socket_so_mark; let timeout = cfg.timeout_connect; let dns_resolver = &cfg.dns_resolver; async move { let Some(remote) = remote else { return Err(anyhow!("Missing remote destination for reverse socks5")); }; match remote.protocol { LocalProtocol::Tcp { proxy_protocol: _ } => { tcp::connect(&remote.host, remote.port, so_mark, timeout, dns_resolver) .await .map(|s| Box::new(s) as Box) } LocalProtocol::Udp { .. } => { udp::connect(&remote.host, remote.port, timeout, dns_resolver) .await .map(|s| Box::new(s) as Box) } _ => Err(anyhow!("Invalid protocol for reverse socks5 {:?}", remote.protocol)), } } }; if let Err(err) = tunnel::client::run_reverse_tunnel(client_config, remote, connect_to_dest).await { error!("{:?}", err); } }); } #[cfg(unix)] LocalProtocol::Unix { path } => { let path = path.clone(); tokio::spawn(async move { let remote = tunnel.remote.clone(); let cfg = client_config.clone(); let connect_to_dest = |_| async { tcp::connect( &remote.0, remote.1, cfg.socket_so_mark, cfg.timeout_connect, &cfg.dns_resolver, ) .await }; let (host, port) = to_host_port(tunnel.local); let remote = RemoteAddr { protocol: LocalProtocol::ReverseUnix { path: path.clone() }, host, port, }; if let Err(err) = tunnel::client::run_reverse_tunnel(client_config, remote, connect_to_dest).await { error!("{:?}", err); } }); } #[cfg(not(unix))] LocalProtocol::Unix { path } => { panic!("Unix socket is not available for non Unix platform") } LocalProtocol::Stdio | LocalProtocol::TProxyTcp | LocalProtocol::TProxyUdp { .. } | LocalProtocol::ReverseTcp | LocalProtocol::ReverseUdp { .. } | LocalProtocol::ReverseSocks5 | LocalProtocol::ReverseUnix { .. } => { panic!("Invalid protocol for reverse tunnel"); } } } for tunnel in args.local_to_remote.into_iter() { let client_config = client_config.clone(); match &tunnel.local_protocol { LocalProtocol::Tcp { proxy_protocol } => { let proxy_protocol = *proxy_protocol; let remote = tunnel.remote.clone(); let server = tcp::run_server(tunnel.local, false) .await .unwrap_or_else(|err| panic!("Cannot start TCP server on {}: {}", tunnel.local, err)) .map_err(anyhow::Error::new) .map_ok(move |stream| { let remote = RemoteAddr { protocol: LocalProtocol::Tcp { proxy_protocol }, host: remote.0.clone(), port: remote.1, }; (stream.into_split(), remote) }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel(client_config, server).await { error!("{:?}", err); } }); } #[cfg(target_os = "linux")] LocalProtocol::TProxyTcp => { let server = tcp::run_server(tunnel.local, true) .await .unwrap_or_else(|err| panic!("Cannot start TProxy TCP server on {}: {}", tunnel.local, err)) .map_err(anyhow::Error::new) .map_ok(move |stream| { // In TProxy mode local destination is the final ip:port destination let (host, port) = to_host_port(stream.local_addr().unwrap()); let remote = RemoteAddr { protocol: LocalProtocol::Tcp { proxy_protocol: false }, host, port, }; (stream.into_split(), remote) }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel(client_config, server).await { error!("{:?}", err); } }); } #[cfg(unix)] LocalProtocol::Unix { path } => { let remote = tunnel.remote.clone(); let server = unix_socket::run_server(path) .await .unwrap_or_else(|err| { panic!("Cannot start Unix domain server on {}: {}", tunnel.local, err) }) .map_err(anyhow::Error::new) .map_ok(move |stream| { let remote = RemoteAddr { protocol: LocalProtocol::Tcp { proxy_protocol: false }, host: remote.0.clone(), port: remote.1, }; (stream.into_split(), remote) }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel(client_config, server).await { error!("{:?}", err); } }); } #[cfg(not(unix))] LocalProtocol::Unix { .. } => { panic!("Unix socket is not available for non Unix platform") } #[cfg(target_os = "linux")] LocalProtocol::TProxyUdp { timeout } => { let timeout = *timeout; let server = udp::run_server(tunnel.local, timeout, udp::configure_tproxy, udp::mk_send_socket_tproxy) .await .unwrap_or_else(|err| { panic!("Cannot start TProxy UDP server on {}: {}", tunnel.local, err) }) .map_err(anyhow::Error::new) .map_ok(move |stream| { // In TProxy mode local destination is the final ip:port destination let (host, port) = to_host_port(stream.local_addr().unwrap()); let remote = RemoteAddr { protocol: LocalProtocol::Udp { timeout }, host, port, }; (tokio::io::split(stream), remote) }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel(client_config, server).await { error!("{:?}", err); } }); } #[cfg(not(target_os = "linux"))] LocalProtocol::TProxyTcp | LocalProtocol::TProxyUdp { .. } => { panic!("Transparent proxy is not available for non Linux platform") } LocalProtocol::Udp { timeout } => { let (host, port) = tunnel.remote.clone(); let timeout = *timeout; let server = udp::run_server(tunnel.local, timeout, |_| Ok(()), |s| Ok(s.clone())) .await .unwrap_or_else(|err| panic!("Cannot start UDP server on {}: {}", tunnel.local, err)) .map_err(anyhow::Error::new) .map_ok(move |stream| { let remote = RemoteAddr { protocol: LocalProtocol::Udp { timeout }, host: host.clone(), port, }; (tokio::io::split(stream), remote) }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel(client_config, server).await { error!("{:?}", err); } }); } LocalProtocol::Socks5 { timeout } => { let server = socks5::run_server(tunnel.local, *timeout) .await .unwrap_or_else(|err| panic!("Cannot start Socks5 server on {}: {}", tunnel.local, err)) .map_ok(|(stream, (host, port))| { let remote = RemoteAddr { protocol: stream.local_protocol(), host, port, }; (tokio::io::split(stream), remote) }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel(client_config, server).await { error!("{:?}", err); } }); } LocalProtocol::Stdio => { let server = stdio::server::run_server().await.unwrap_or_else(|err| { panic!("Cannot start STDIO server: {}", err); }); tokio::spawn(async move { if let Err(err) = tunnel::client::run_tunnel( client_config, stream::once(async move { let remote = RemoteAddr { protocol: LocalProtocol::Tcp { proxy_protocol: false }, host: tunnel.remote.0, port: tunnel.remote.1, }; Ok((server, remote)) }), ) .await { error!("{:?}", err); } }); } LocalProtocol::ReverseTcp => {} LocalProtocol::ReverseUdp { .. } => {} LocalProtocol::ReverseSocks5 => {} LocalProtocol::ReverseUnix { .. } => {} } } } Commands::Server(args) => { let tls_config = if args.remote_addr.scheme() == "wss" { let tls_certificate = if let Some(cert_path) = &args.tls_certificate { tls::load_certificates_from_pem(cert_path).expect("Cannot load tls certificate") } else { embedded_certificate::TLS_CERTIFICATE.clone() }; let tls_key = if let Some(key_path) = &args.tls_private_key { tls::load_private_key_from_file(key_path).expect("Cannot load tls private key") } else { embedded_certificate::TLS_PRIVATE_KEY.clone() }; Some(TlsServerConfig { tls_certificate: Mutex::new(tls_certificate), tls_key: Mutex::new(tls_key), tls_certificate_path: args.tls_certificate, tls_key_path: args.tls_private_key, }) } else { None }; let dns_resolver = match args.dns_resolver { None => { if let Ok(resolver) = hickory_resolver::AsyncResolver::tokio_from_system_conf() { DnsResolver::TrustDns(resolver) } else { warn!("Fall-backing to system dns resolver. You should consider specifying a dns resolver. To avoid performance issue"); DnsResolver::System } } Some(resolvers) => { if resolvers.iter().any(|r| r.scheme() == "system") { DnsResolver::System } else { let mut cfg = ResolverConfig::new(); for resolver in resolvers { let (protocol, port) = match resolver.scheme() { "dns" => (hickory_resolver::config::Protocol::Udp, resolver.port().unwrap_or(53)), "dns+https" => { (hickory_resolver::config::Protocol::Https, resolver.port().unwrap_or(443)) } "dns+tls" => (hickory_resolver::config::Protocol::Tls, resolver.port().unwrap_or(853)), _ => panic!("invalid protocol for dns resolver"), }; let sock = match resolver.host().unwrap() { Host::Domain(host) => match Host::parse(host) { Ok(Host::Ipv4(ip)) => SocketAddr::V4(SocketAddrV4::new(ip, port)), Ok(Host::Ipv6(ip)) => SocketAddr::V6(SocketAddrV6::new(ip, port, 0, 0)), Ok(Host::Domain(_)) | Err(_) => { panic!("Dns resolver must be an ip address, got {}", host) } }, Host::Ipv4(ip) => SocketAddr::V4(SocketAddrV4::new(ip, port)), Host::Ipv6(ip) => SocketAddr::V6(SocketAddrV6::new(ip, port, 0, 0)), }; cfg.add_name_server(NameServerConfig::new(sock, protocol)) } let opts = ResolverOpts::default(); DnsResolver::TrustDns(hickory_resolver::AsyncResolver::tokio(cfg, opts)) } } }; let server_config = WsServerConfig { socket_so_mark: args.socket_so_mark, bind: args.remote_addr.socket_addrs(|| Some(8080)).unwrap()[0], restrict_to: args.restrict_to, restrict_http_upgrade_path_prefix: args.restrict_http_upgrade_path_prefix, websocket_ping_frequency: args.websocket_ping_frequency_sec, timeout_connect: Duration::from_secs(10), websocket_mask_frame: args.websocket_mask_frame, tls: tls_config, dns_resolver, }; info!( "Starting wstunnel server v{} with config {:?}", env!("CARGO_PKG_VERSION"), server_config ); tunnel::server::run_server(Arc::new(server_config)) .await .unwrap_or_else(|err| { panic!("Cannot start wstunnel server: {:?}", err); }); } } tokio::signal::ctrl_c().await.unwrap(); }