ipblc/src/ipblc.rs

257 lines
8.6 KiB
Rust
Raw Normal View History

2022-12-30 20:18:15 +01:00
use crate::config::{Context, GIT_VERSION};
2023-01-08 21:16:06 +01:00
use crate::fw::{fwblock, fwinit};
2023-01-15 16:05:34 +01:00
use crate::ip::{filter, IpData, IpEvent};
2023-04-09 01:42:17 +02:00
use crate::monitoring::apiserver;
2023-01-15 23:26:18 +01:00
use crate::utils::{gethostname, read_lines, sleep_ms};
2023-03-05 23:05:50 +01:00
use crate::webservice::send_to_ipbl_api;
use crate::websocket::{send_to_ipbl_websocket, websocketinit};
use chrono::prelude::*;
2022-12-30 20:18:15 +01:00
use chrono::prelude::{DateTime, Local};
2022-07-01 15:51:41 +02:00
use chrono::Duration;
2022-12-30 20:18:15 +01:00
use nix::sys::inotify::InotifyEvent;
use std::collections::HashMap;
use std::sync::Arc;
use tokio::sync::mpsc::{channel, Receiver, Sender};
2023-01-10 18:00:40 +01:00
use tokio::sync::RwLock;
2023-01-08 21:16:06 +01:00
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
const BL_CHAN_SIZE: usize = 32;
2023-04-09 01:42:17 +02:00
const WS_CHAN_SIZE: usize = 64;
2022-12-30 20:18:15 +01:00
pub async fn run() {
2023-01-15 23:26:18 +01:00
let fqdn = gethostname(true);
2023-01-15 22:07:56 +01:00
let globalctx = Context::new().await;
let ctxarc = Arc::new(RwLock::new(globalctx));
let mut ret: Vec<String> = Vec::new();
2023-03-05 23:05:50 +01:00
let mut fwlen: usize = 0;
2023-01-08 21:16:06 +01:00
let pkgversion = format!("{}@{}", env!("CARGO_PKG_VERSION"), GIT_VERSION);
let mut last_cfg_reload: DateTime<Local> = Local::now().trunc_subsecs(0);
println!("Launching {}, version {}", PKG_NAME, pkgversion);
2023-03-05 23:05:50 +01:00
fwinit();
2023-01-08 21:16:06 +01:00
2023-04-09 01:42:17 +02:00
let ctxapi = Arc::clone(&ctxarc);
apiserver(&ctxapi).await.unwrap();
2023-03-05 23:05:50 +01:00
// initialize sockets
2023-04-09 01:42:17 +02:00
let (ipeventtx, mut ipeventrx): (Sender<IpEvent>, Receiver<IpEvent>) = channel(WS_CHAN_SIZE);
let ctxws = Arc::clone(&ctxarc);
2023-04-09 15:05:09 +02:00
let mut wssocketrr = websocketinit(&ctxws, &ipeventtx).await;
2023-03-12 14:27:05 +01:00
let mut blrx = watchfiles(&ctxarc).await;
2023-01-08 21:16:06 +01:00
let ctxclone = Arc::clone(&ctxarc);
tokio::spawn(async move {
2023-01-15 16:05:34 +01:00
compare_files_changes(&ctxclone, &mut blrx, &ipeventtx).await;
});
2023-03-12 14:27:05 +01:00
let bootstrap_event = ctxarc.read().await.cfg.bootstrap_event().clone();
2023-04-09 15:05:09 +02:00
send_to_ipbl_websocket(&mut wssocketrr, &bootstrap_event, &mut ret).await;
loop {
2023-01-15 22:07:56 +01:00
ret = Vec::new();
2023-01-08 21:16:06 +01:00
let ctxclone = Arc::clone(&ctxarc);
2023-01-08 14:09:13 +01:00
tokio::select! {
2023-04-09 15:05:09 +02:00
ipevent = ipeventrx.recv() => {
let received_ip = ipevent.unwrap();
2023-01-08 21:16:06 +01:00
2023-01-10 18:00:40 +01:00
let mut ctx = ctxclone.write().await;
2023-01-15 16:40:27 +01:00
if received_ip.msgtype == "bootstrap".to_string() {
2023-01-15 16:05:34 +01:00
for ip_to_send in ctx.get_blocklist_toblock().await {
2023-01-15 16:53:58 +01:00
let ipe = IpEvent{
2023-01-15 16:05:34 +01:00
msgtype: String::from("init"),
2023-04-09 01:42:17 +02:00
mode: String::from("ws"),
2023-01-15 23:26:18 +01:00
hostname: fqdn.clone(),
2023-01-15 16:05:34 +01:00
ipdata: ip_to_send,
};
2023-04-09 15:05:09 +02:00
send_to_ipbl_websocket(&mut wssocketrr, &ipe, &mut ret).await;
2023-01-08 14:09:13 +01:00
}
2023-01-15 16:53:58 +01:00
continue
2023-01-08 14:09:13 +01:00
}
2023-01-08 14:09:13 +01:00
// refresh context blocklist
2023-01-15 23:54:15 +01:00
let filtered_ipevent = ctx.update_blocklist(&received_ip).await;
2023-03-05 23:05:50 +01:00
// send ip list to api and ws sockets
2023-01-15 23:54:15 +01:00
if let Some(ipevent) = filtered_ipevent {
2023-01-15 16:53:58 +01:00
if received_ip.msgtype != "init" {
2023-03-05 23:05:50 +01:00
println!("sending {} to api and ws", ipevent.ipdata.ip);
2023-01-15 16:53:58 +01:00
let event = IpEvent{
msgtype: String::from("add"),
2023-04-09 15:05:09 +02:00
mode: String::from("ws"),
2023-01-15 23:26:18 +01:00
hostname: fqdn.clone(),
2023-01-15 23:54:15 +01:00
ipdata: ipevent.ipdata,
2023-01-15 16:53:58 +01:00
};
2023-04-09 01:42:17 +02:00
send_to_ipbl_api(&ctx.client, &ctx.hostname, &ctx.flags.server, &event, &mut ret).await;
2023-04-09 15:05:09 +02:00
send_to_ipbl_websocket(&mut wssocketrr, &event, &mut ret).await;
2023-01-15 16:53:58 +01:00
}
2022-07-01 15:51:41 +02:00
}
2023-01-08 14:09:13 +01:00
}
2023-04-09 01:42:17 +02:00
_val = sleep_ms(200) => {}
2023-01-08 14:09:13 +01:00
};
2023-01-08 21:16:06 +01:00
let toblock;
{
2023-01-10 18:00:40 +01:00
let mut ctx = ctxarc.write().await;
2023-01-08 21:16:06 +01:00
ctx.gc_blocklist().await;
toblock = ctx.get_blocklist_toblock().await;
2023-03-12 14:27:05 +01:00
// apply firewall blocking
match fwblock(&toblock, &mut ret, &mut fwlen) {
Ok(_) => {}
Err(err) => {
println!("Err: {err}, unable to push firewall rules, use super user")
}
};
2023-01-08 21:16:06 +01:00
}
// log lines
if ret.len() > 0 {
println!("{ret}", ret = ret.join(", "));
}
2023-03-12 14:27:05 +01:00
let now_cfg_reload = Local::now().trunc_subsecs(0);
if (now_cfg_reload - last_cfg_reload) > Duration::seconds(5) {
// reload configuration from the server
let mut ctx = ctxclone.write().await;
match ctx.load().await {
Ok(_) => {
last_cfg_reload = Local::now().trunc_subsecs(0);
2023-01-08 21:16:06 +01:00
}
2023-03-12 14:27:05 +01:00
Err(err) => {
println!("error loading config: {err}");
}
}
};
}
}
2023-01-10 18:00:40 +01:00
async fn watchfiles(ctxarc: &Arc<RwLock<Context>>) -> Receiver<FileEvent> {
let (bltx, blrx): (Sender<FileEvent>, Receiver<FileEvent>) = channel(BL_CHAN_SIZE);
2023-01-08 21:16:06 +01:00
let ctxclone = Arc::clone(ctxarc);
tokio::spawn(async move {
loop {
2023-01-08 21:16:06 +01:00
let events;
let instance;
{
2023-01-10 18:00:40 +01:00
let ctx = ctxclone.read().await;
2023-01-08 21:16:06 +01:00
instance = ctx.instance.clone();
}
2023-01-08 21:16:06 +01:00
events = instance.read_events().unwrap();
2022-09-21 21:03:01 +02:00
for inevent in events {
let date: DateTime<Local> = Local::now().trunc_subsecs(0);
2022-09-21 21:03:01 +02:00
bltx.send(FileEvent { inevent, date }).await.unwrap();
}
}
});
blrx
}
2022-09-23 13:17:20 +02:00
async fn get_last_file_size(w: &mut HashMap<String, u64>, path: &str) -> (u64, bool) {
let currentlen = match std::fs::metadata(&path.to_string()) {
Ok(u) => u.len().clone(),
2022-09-23 13:17:20 +02:00
Err(_) => 0u64,
};
2022-09-21 21:03:01 +02:00
let lastlen = match w.insert(path.to_string(), currentlen) {
Some(u) => u,
2022-09-23 13:17:20 +02:00
None => 0u64,
};
2022-09-23 13:17:20 +02:00
(lastlen, lastlen != currentlen)
}
async fn compare_files_changes(
2023-01-10 18:00:40 +01:00
ctxarc: &Arc<RwLock<Context>>,
2022-09-21 21:03:01 +02:00
inrx: &mut Receiver<FileEvent>,
2023-01-15 16:05:34 +01:00
ipeventtx: &Sender<IpEvent>,
) {
2022-09-21 21:03:01 +02:00
let mut tnets;
loop {
2022-09-21 21:03:01 +02:00
let modfiles = inrx.recv().await.unwrap();
let mut iplist: Vec<IpData> = vec![];
2023-01-08 21:16:06 +01:00
let sask;
let sas;
{
2023-01-10 18:00:40 +01:00
let ctx = ctxarc.read().await;
2023-01-08 21:16:06 +01:00
sas = ctx.clone().sas;
sask = sas.keys();
tnets = ctx.cfg.build_trustnets();
}
2022-09-21 21:03:01 +02:00
match modfiles.inevent.name {
Some(name) => {
2022-09-21 21:03:01 +02:00
let filename = name.to_str().unwrap();
2023-01-08 21:16:06 +01:00
for sak in sask {
let sa = sas.get(sak).unwrap();
2022-09-21 21:03:01 +02:00
if modfiles.inevent.wd == sa.wd {
let handle: String;
if sa.filename.as_str() == "" {
2022-09-21 21:03:01 +02:00
handle = format!("{}/{}", &sa.fullpath, filename);
} else if filename.starts_with(sa.filename.as_str()) {
handle = sa.fullpath.to_owned();
} else {
continue;
}
2023-01-08 21:16:06 +01:00
let (filesize, sizechanged);
{
2023-01-10 18:00:40 +01:00
let mut ctx = ctxarc.write().await;
2023-01-08 21:16:06 +01:00
let sa = ctx.sas.get_mut(sak).unwrap();
(filesize, sizechanged) =
get_last_file_size(&mut sa.watchedfiles, &handle).await;
}
2022-09-23 13:17:20 +02:00
if !sizechanged {
continue;
}
2022-09-21 21:03:01 +02:00
match read_lines(&handle, filesize) {
Some(lines) => {
filter(
lines,
2022-09-21 21:03:01 +02:00
&mut iplist,
&tnets,
&sa.regex,
2022-07-01 15:51:41 +02:00
&sa.set.src,
2022-09-21 21:03:01 +02:00
&modfiles.date,
);
}
None => {}
};
break;
}
}
2022-09-21 21:03:01 +02:00
for ip in iplist {
2023-01-15 16:05:34 +01:00
let ipevent = IpEvent {
2023-01-15 16:40:27 +01:00
msgtype: String::from("add"),
2023-01-15 23:26:18 +01:00
hostname: gethostname(true),
2023-01-15 23:12:07 +01:00
mode: String::from("file"),
2023-01-15 16:05:34 +01:00
ipdata: ip,
};
ipeventtx.send(ipevent).await.unwrap();
}
}
None => {}
}
}
}
2022-12-30 20:18:15 +01:00
pub struct FileEvent {
pub inevent: InotifyEvent,
pub date: DateTime<Local>,
}
impl std::fmt::Debug for FileEvent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{ie:?}", ie = self.inevent)
}
}