Compare commits

..

No commits in common. "5f0de72b88196a13fb619fe926dad10b26f69dfe" and "7f399af713e49b4ca39afb1d9a3728d6b93040e7" have entirely different histories.

5 changed files with 18 additions and 57 deletions

View File

@ -173,10 +173,6 @@ fn load_config(path: &str) -> Result<ParsedConfig, ConfigError> {
name: name.to_string(), name: name.to_string(),
addr: format!("{}:{}", upstream_host, upsteam_port), addr: format!("{}:{}", upstream_host, upsteam_port),
protocol: upstream_url.scheme().to_string(), protocol: upstream_url.scheme().to_string(),
addresses: Addr(Mutex::new(UpstreamAddress::new(format!(
"{}:{}",
upstream_host, upsteam_port
)))),
..Default::default() ..Default::default()
}), }),
); );

View File

@ -7,10 +7,10 @@ use crate::servers::Server;
use log::{debug, error}; use log::{debug, error};
use std::env; use std::env;
use std::path::Path;
fn main() { fn main() {
let config_path = find_config(); let config_path =
env::var("FOURTH_CONFIG").unwrap_or_else(|_| "/etc/fourth/config.yaml".to_string());
let config = match Config::new(&config_path) { let config = match Config::new(&config_path) {
Ok(config) => config, Ok(config) => config,
@ -27,18 +27,3 @@ fn main() {
let _ = server.run(); let _ = server.run();
error!("Server ended with errors"); error!("Server ended with errors");
} }
fn find_config() -> String {
let config_path =
env::var("FOURTH_CONFIG").unwrap_or_else(|_| "/etc/fourth/config.yaml".to_string());
if Path::new(&config_path).exists() {
return config_path;
}
if Path::new("config.yaml").exists() {
return String::from("config.yaml");
}
String::from("")
}

View File

@ -13,6 +13,7 @@ use protocol::tcp;
#[derive(Debug)] #[derive(Debug)]
pub(crate) struct Server { pub(crate) struct Server {
pub proxies: Vec<Arc<Proxy>>, pub proxies: Vec<Arc<Proxy>>,
pub config: ParsedConfig,
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
@ -30,6 +31,7 @@ impl Server {
pub fn new(config: ParsedConfig) -> Self { pub fn new(config: ParsedConfig) -> Self {
let mut new_server = Server { let mut new_server = Server {
proxies: Vec::new(), proxies: Vec::new(),
config: config.clone(),
}; };
for (name, proxy) in config.servers.iter() { for (name, proxy) in config.servers.iter() {

View File

@ -72,17 +72,21 @@ async fn accept(inbound: TcpStream, proxy: Arc<Proxy>) -> Result<(), Box<dyn std
"No upstream named {:?} on server {:?}", "No upstream named {:?} on server {:?}",
proxy.default_action, proxy.name proxy.default_action, proxy.name
); );
return process(inbound, proxy.upstream.get(&proxy.default_action).unwrap()).await; return process(
inbound,
proxy.upstream.get(&proxy.default_action).unwrap().clone(),
)
.await;
// ToDo: Remove unwrap and check default option // ToDo: Remove unwrap and check default option
} }
}; };
return process(inbound, &upstream).await; return process(inbound, upstream.clone()).await;
} }
async fn process( async fn process(
mut inbound: TcpStream, mut inbound: TcpStream,
upstream: &Upstream, upstream: Upstream,
) -> Result<(), Box<dyn std::error::Error>> { ) -> Result<(), Box<dyn std::error::Error>> {
match upstream { match upstream {
Upstream::Ban => { Upstream::Ban => {

View File

@ -19,13 +19,6 @@ impl Display for UpstreamAddress {
} }
impl UpstreamAddress { impl UpstreamAddress {
pub fn new(address: String) -> Self {
UpstreamAddress {
address,
..Default::default()
}
}
pub fn is_valid(&self) -> bool { pub fn is_valid(&self) -> bool {
if let Some(resolved) = self.resolved_time { if let Some(resolved) = self.resolved_time {
if let Some(ttl) = self.ttl { if let Some(ttl) = self.ttl {
@ -51,24 +44,20 @@ impl UpstreamAddress {
pub async fn resolve(&mut self, mode: ResolutionMode) -> Result<Vec<SocketAddr>> { pub async fn resolve(&mut self, mode: ResolutionMode) -> Result<Vec<SocketAddr>> {
if self.is_resolved() && self.is_valid() { if self.is_resolved() && self.is_valid() {
debug!( debug!(
"Already got address {:?}, still valid for {:.3}s", "Already got address {:?}, still valid for {}",
&self.resolved_addresses, &self.resolved_addresses,
self.time_remaining().as_seconds_f64() self.time_remaining()
); );
return Ok(self.resolved_addresses.clone()); return Ok(self.resolved_addresses.clone());
} }
debug!( debug!("Resolving addresses for {}", &self.address);
"Resolving addresses for {} with mode {:?}",
&self.address, &mode
);
let lookup_result = tokio::net::lookup_host(&self.address).await; let lookup_result = tokio::net::lookup_host(&self.address).await;
let resolved_addresses: Vec<SocketAddr> = match lookup_result { let resolved_addresses = match lookup_result {
Ok(resolved_addresses) => resolved_addresses.into_iter().collect(), Ok(resolved_addresses) => resolved_addresses,
Err(e) => { Err(e) => {
debug!("Failed looking up {}: {}", &self.address, &e);
// Protect against DNS flooding. Cache the result for 1 second. // Protect against DNS flooding. Cache the result for 1 second.
self.resolved_time = Some(Instant::now()); self.resolved_time = Some(Instant::now());
self.ttl = Some(Duration::seconds(3)); self.ttl = Some(Duration::seconds(3));
@ -76,8 +65,6 @@ impl UpstreamAddress {
} }
}; };
debug!("Resolved addresses: {:?}", &resolved_addresses);
let addresses: Vec<SocketAddr> = match mode { let addresses: Vec<SocketAddr> = match mode {
ResolutionMode::Ipv4 => resolved_addresses ResolutionMode::Ipv4 => resolved_addresses
.into_iter() .into_iter()
@ -89,13 +76,10 @@ impl UpstreamAddress {
.filter(|a| a.is_ipv6()) .filter(|a| a.is_ipv6())
.collect(), .collect(),
_ => resolved_addresses, _ => resolved_addresses.collect(),
}; };
debug!( debug!("Got addresses for {}: {:?}", &self.address, &addresses);
"Got {} addresses for {}: {:?}",
&mode, &self.address, &addresses
);
debug!( debug!(
"Resolved at {}", "Resolved at {}",
OffsetDateTime::now_utc() OffsetDateTime::now_utc()
@ -129,13 +113,3 @@ impl From<&str> for ResolutionMode {
} }
} }
} }
impl Display for ResolutionMode {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
ResolutionMode::Ipv4 => write!(f, "IPv4Only"),
ResolutionMode::Ipv6 => write!(f, "IPv6Only"),
ResolutionMode::Ipv4AndIpv6 => write!(f, "IPv4 and IPv6"),
}
}
}