Allow Diplonat to automatically detect it's private IP
This commit is contained in:
parent
4d4d453afa
commit
3b9e75634a
10 changed files with 391 additions and 427 deletions
721
Cargo.lock
generated
721
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -10,13 +10,14 @@ edition = "2018"
|
||||||
anyhow = "1.0.28"
|
anyhow = "1.0.28"
|
||||||
envy = "0.4"
|
envy = "0.4"
|
||||||
futures = "0.3.5"
|
futures = "0.3.5"
|
||||||
igd = { version = "0.10.0", features = ["aio"] }
|
get_if_addrs = "0.5"
|
||||||
|
igd = { version = "0.12.0", features = ["aio"] }
|
||||||
iptables = "0.2.2"
|
iptables = "0.2.2"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
reqwest = { version = "0.10", features = ["json"] }
|
reqwest = { version = "0.11", features = ["json"] }
|
||||||
serde = { version = "1.0.107", features = ["derive"] }
|
serde = { version = "1.0.107", features = ["derive"] }
|
||||||
serde-lexpr = "0.1.1"
|
serde-lexpr = "0.1.1"
|
||||||
serde_json = "1.0.53"
|
serde_json = "1.0.53"
|
||||||
tokio = "0.2"
|
tokio = { version = "1", features = ["sync", "rt-multi-thread", "net", "macros"] }
|
||||||
|
|
|
@ -62,7 +62,9 @@ impl ConfigOpts {
|
||||||
// Currently only used in tests
|
// Currently only used in tests
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
pub fn from_iter<Iter: Clone>(iter: Iter) -> Result<RuntimeConfig>
|
pub fn from_iter<Iter: Clone>(iter: Iter) -> Result<RuntimeConfig>
|
||||||
where Iter: IntoIterator<Item = (String, String)> {
|
where
|
||||||
|
Iter: IntoIterator<Item = (String, String)>,
|
||||||
|
{
|
||||||
let base: ConfigOptsBase = envy::prefixed("DIPLONAT_").from_iter(iter.clone())?;
|
let base: ConfigOptsBase = envy::prefixed("DIPLONAT_").from_iter(iter.clone())?;
|
||||||
let consul: ConfigOptsConsul = envy::prefixed("DIPLONAT_CONSUL_").from_iter(iter.clone())?;
|
let consul: ConfigOptsConsul = envy::prefixed("DIPLONAT_CONSUL_").from_iter(iter.clone())?;
|
||||||
let acme: ConfigOptsAcme = envy::prefixed("DIPLONAT_ACME_").from_iter(iter.clone())?;
|
let acme: ConfigOptsAcme = envy::prefixed("DIPLONAT_ACME_").from_iter(iter.clone())?;
|
||||||
|
|
|
@ -27,7 +27,7 @@ pub struct RuntimeConfigFirewall {
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct RuntimeConfigIgd {
|
pub struct RuntimeConfigIgd {
|
||||||
pub private_ip: String,
|
pub private_ip: Option<String>,
|
||||||
pub expiration_time: Duration,
|
pub expiration_time: Duration,
|
||||||
pub refresh_time: Duration,
|
pub refresh_time: Duration,
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ impl RuntimeConfig {
|
||||||
impl RuntimeConfigAcme {
|
impl RuntimeConfigAcme {
|
||||||
pub fn new(opts: ConfigOptsAcme) -> Result<Option<Self>> {
|
pub fn new(opts: ConfigOptsAcme) -> Result<Option<Self>> {
|
||||||
if !opts.enable {
|
if !opts.enable {
|
||||||
return Ok(None)
|
return Ok(None);
|
||||||
}
|
}
|
||||||
|
|
||||||
let email = opts.email.expect(
|
let email = opts.email.expect(
|
||||||
|
@ -91,9 +91,7 @@ impl RuntimeConfigFirewall {
|
||||||
|
|
||||||
impl RuntimeConfigIgd {
|
impl RuntimeConfigIgd {
|
||||||
pub(super) fn new(opts: ConfigOptsBase) -> Result<Self> {
|
pub(super) fn new(opts: ConfigOptsBase) -> Result<Self> {
|
||||||
let private_ip = opts
|
let private_ip = opts.private_ip;
|
||||||
.private_ip
|
|
||||||
.expect("'DIPLONAT_PRIVATE_IP' environment variable is required");
|
|
||||||
let expiration_time = Duration::from_secs(
|
let expiration_time = Duration::from_secs(
|
||||||
opts
|
opts
|
||||||
.expiration_time
|
.expiration_time
|
||||||
|
@ -108,7 +106,7 @@ impl RuntimeConfigIgd {
|
||||||
(currently: {}s)",
|
(currently: {}s)",
|
||||||
expiration_time.as_secs(),
|
expiration_time.as_secs(),
|
||||||
refresh_time.as_secs()
|
refresh_time.as_secs()
|
||||||
))
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
|
|
|
@ -25,10 +25,12 @@ impl Consul {
|
||||||
client: reqwest::Client::new(),
|
client: reqwest::Client::new(),
|
||||||
url: url.to_string(),
|
url: url.to_string(),
|
||||||
idx: None,
|
idx: None,
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn watch_node_reset(&mut self) -> () { self.idx = None; }
|
pub fn watch_node_reset(&mut self) -> () {
|
||||||
|
self.idx = None;
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn watch_node(&mut self, host: &str) -> Result<CatalogNode> {
|
pub async fn watch_node(&mut self, host: &str) -> Result<CatalogNode> {
|
||||||
let url = match self.idx {
|
let url = match self.idx {
|
||||||
|
@ -43,6 +45,6 @@ impl Consul {
|
||||||
};
|
};
|
||||||
|
|
||||||
let resp: CatalogNode = http.json().await?;
|
let resp: CatalogNode = http.json().await?;
|
||||||
return Ok(resp)
|
return Ok(resp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ use anyhow::Result;
|
||||||
use log::*;
|
use log::*;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_lexpr::{error, from_str};
|
use serde_lexpr::{error, from_str};
|
||||||
use tokio::{sync::watch, time::delay_for};
|
use tokio::{sync::watch, time::sleep};
|
||||||
|
|
||||||
use crate::{consul, messages};
|
use crate::{consul, messages};
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ fn retry_to_time(retries: u32, max_time: Duration) -> Duration {
|
||||||
return Duration::from_secs(cmp::min(
|
return Duration::from_secs(cmp::min(
|
||||||
max_time.as_secs(),
|
max_time.as_secs(),
|
||||||
1.2f64.powf(retries as f64) as u64,
|
1.2f64.powf(retries as f64) as u64,
|
||||||
))
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn to_parameters(catalog: &consul::CatalogNode) -> Vec<DiplonatConsul> {
|
fn to_parameters(catalog: &consul::CatalogNode) -> Vec<DiplonatConsul> {
|
||||||
|
@ -51,7 +51,7 @@ fn to_parameters(catalog: &consul::CatalogNode) -> Vec<DiplonatConsul> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return r
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
fn to_open_ports(params: &Vec<DiplonatConsul>) -> messages::PublicExposedPorts {
|
fn to_open_ports(params: &Vec<DiplonatConsul>) -> messages::PublicExposedPorts {
|
||||||
|
@ -70,7 +70,7 @@ fn to_open_ports(params: &Vec<DiplonatConsul>) -> messages::PublicExposedPorts {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return op
|
return op;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ConsulActor {
|
impl ConsulActor {
|
||||||
|
@ -86,7 +86,7 @@ impl ConsulActor {
|
||||||
tx_open_ports: tx,
|
tx_open_ports: tx,
|
||||||
node: node.to_string(),
|
node: node.to_string(),
|
||||||
retries: 0,
|
retries: 0,
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn listen(&mut self) -> Result<()> {
|
pub async fn listen(&mut self) -> Result<()> {
|
||||||
|
@ -102,15 +102,15 @@ impl ConsulActor {
|
||||||
will_retry_in.as_secs(),
|
will_retry_in.as_secs(),
|
||||||
e
|
e
|
||||||
);
|
);
|
||||||
delay_for(will_retry_in).await;
|
sleep(will_retry_in).await;
|
||||||
continue
|
continue;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
self.retries = 0;
|
self.retries = 0;
|
||||||
let msg = to_open_ports(&to_parameters(&catalog));
|
let msg = to_open_ports(&to_parameters(&catalog));
|
||||||
debug!("Extracted configuration: {:#?}", msg);
|
debug!("Extracted configuration: {:#?}", msg);
|
||||||
|
|
||||||
self.tx_open_ports.broadcast(msg)?;
|
self.tx_open_ports.send(msg)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ impl Diplonat {
|
||||||
let fw = FirewallActor::new(rt_cfg.firewall.refresh_time, &ca.rx_open_ports).await?;
|
let fw = FirewallActor::new(rt_cfg.firewall.refresh_time, &ca.rx_open_ports).await?;
|
||||||
|
|
||||||
let ia = IgdActor::new(
|
let ia = IgdActor::new(
|
||||||
&rt_cfg.igd.private_ip,
|
rt_cfg.igd.private_ip.as_ref().map(String::as_str),
|
||||||
rt_cfg.igd.refresh_time,
|
rt_cfg.igd.refresh_time,
|
||||||
rt_cfg.igd.expiration_time,
|
rt_cfg.igd.expiration_time,
|
||||||
&ca.rx_open_ports,
|
&ca.rx_open_ports,
|
||||||
|
@ -34,7 +34,7 @@ impl Diplonat {
|
||||||
firewall: fw,
|
firewall: fw,
|
||||||
};
|
};
|
||||||
|
|
||||||
return Ok(ctx)
|
return Ok(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn listen(&mut self) -> Result<()> {
|
pub async fn listen(&mut self) -> Result<()> {
|
||||||
|
@ -44,6 +44,6 @@ impl Diplonat {
|
||||||
self.firewall.listen()
|
self.firewall.listen()
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
return Ok(())
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ impl FirewallActor {
|
||||||
|
|
||||||
fw::setup(&ctx.ipt)?;
|
fw::setup(&ctx.ipt)?;
|
||||||
|
|
||||||
return Ok(ctx)
|
return Ok(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn listen(&mut self) -> Result<()> {
|
pub async fn listen(&mut self) -> Result<()> {
|
||||||
|
@ -40,7 +40,7 @@ impl FirewallActor {
|
||||||
loop {
|
loop {
|
||||||
// 1. Wait for an event
|
// 1. Wait for an event
|
||||||
let new_ports = select! {
|
let new_ports = select! {
|
||||||
Some(ports) = self.rx_ports.recv() => Some(ports),
|
_ = self.rx_ports.changed() => Some(self.rx_ports.borrow().clone()),
|
||||||
_ = interval.tick() => None,
|
_ = interval.tick() => None,
|
||||||
else => return Ok(()) // Sender dropped, terminate loop.
|
else => return Ok(()) // Sender dropped, terminate loop.
|
||||||
};
|
};
|
||||||
|
@ -81,6 +81,6 @@ impl FirewallActor {
|
||||||
|
|
||||||
fw::open_ports(&self.ipt, ports_to_open)?;
|
fw::open_ports(&self.ipt, ports_to_open)?;
|
||||||
|
|
||||||
return Ok(())
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ pub struct IgdActor {
|
||||||
|
|
||||||
impl IgdActor {
|
impl IgdActor {
|
||||||
pub async fn new(
|
pub async fn new(
|
||||||
priv_ip: &str,
|
priv_ip: Option<&str>,
|
||||||
refresh: Duration,
|
refresh: Duration,
|
||||||
expire: Duration,
|
expire: Duration,
|
||||||
rxp: &watch::Receiver<messages::PublicExposedPorts>,
|
rxp: &watch::Receiver<messages::PublicExposedPorts>,
|
||||||
|
@ -32,16 +32,44 @@ impl IgdActor {
|
||||||
.context("Failed to find IGD gateway")?;
|
.context("Failed to find IGD gateway")?;
|
||||||
info!("IGD gateway: {}", gw);
|
info!("IGD gateway: {}", gw);
|
||||||
|
|
||||||
|
let private_ip = if let Some(ip) = priv_ip {
|
||||||
|
info!("Using private IP from config: {}", ip);
|
||||||
|
ip.to_string()
|
||||||
|
} else {
|
||||||
|
info!("Trying to automatically detect private IP");
|
||||||
|
let gwa = gw.addr.ip().octets();
|
||||||
|
let cmplen = match gwa {
|
||||||
|
[192, 168, _, _] => 3,
|
||||||
|
[10, _, _, _] => 2,
|
||||||
|
_ => panic!(
|
||||||
|
"Gateway IP does not appear to be in a local network ({})",
|
||||||
|
gw.addr.ip()
|
||||||
|
),
|
||||||
|
};
|
||||||
|
let public_ip = get_if_addrs::get_if_addrs()?
|
||||||
|
.into_iter()
|
||||||
|
.map(|i| i.addr.ip())
|
||||||
|
.filter(|a| match a {
|
||||||
|
std::net::IpAddr::V4(a4) => (a4.octets()[..cmplen] == gwa[..cmplen]),
|
||||||
|
_ => false,
|
||||||
|
})
|
||||||
|
.next()
|
||||||
|
.expect("No interface has an IP on same subnet as gateway")
|
||||||
|
.to_string();
|
||||||
|
info!("Found private IP: {}", public_ip);
|
||||||
|
public_ip
|
||||||
|
};
|
||||||
|
|
||||||
let ctx = Self {
|
let ctx = Self {
|
||||||
gateway: gw,
|
gateway: gw,
|
||||||
rx_ports: rxp.clone(),
|
rx_ports: rxp.clone(),
|
||||||
private_ip: priv_ip.to_string(),
|
private_ip,
|
||||||
refresh: refresh,
|
refresh: refresh,
|
||||||
expire: expire,
|
expire: expire,
|
||||||
last_ports: messages::PublicExposedPorts::new(),
|
last_ports: messages::PublicExposedPorts::new(),
|
||||||
};
|
};
|
||||||
|
|
||||||
return Ok(ctx)
|
return Ok(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn listen(&mut self) -> Result<()> {
|
pub async fn listen(&mut self) -> Result<()> {
|
||||||
|
@ -49,7 +77,7 @@ impl IgdActor {
|
||||||
loop {
|
loop {
|
||||||
// 1. Wait for an event
|
// 1. Wait for an event
|
||||||
let new_ports = select! {
|
let new_ports = select! {
|
||||||
Some(ports) = self.rx_ports.recv() => Some(ports),
|
_ = self.rx_ports.changed() => Some(self.rx_ports.borrow().clone()),
|
||||||
_ = interval.tick() => None,
|
_ = interval.tick() => None,
|
||||||
else => return Ok(()) // Sender dropped, terminate loop.
|
else => return Ok(()) // Sender dropped, terminate loop.
|
||||||
};
|
};
|
||||||
|
@ -93,6 +121,6 @@ impl IgdActor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(())
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@ impl PublicExposedPorts {
|
||||||
return Self {
|
return Self {
|
||||||
tcp_ports: HashSet::new(),
|
tcp_ports: HashSet::new(),
|
||||||
udp_ports: HashSet::new(),
|
udp_ports: HashSet::new(),
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue