keyfork/keyforkd/src/server.rs

100 lines
3.6 KiB
Rust
Raw Normal View History

2023-08-25 09:27:16 +00:00
use crate::service::{DerivationError, Keyforkd};
use keyfork_derive_util::DerivablePath;
2023-08-25 09:28:47 +00:00
use keyfork_frame::asyncext::{try_decode_from, try_encode_to};
use std::{
io::Error,
path::{Path, PathBuf},
};
2023-08-25 06:32:21 +00:00
use tokio::net::{UnixListener, UnixStream};
use tower::{Service, ServiceExt};
#[cfg(feature = "tracing")]
use tracing::debug;
async fn read_path_from_socket(
socket: &mut UnixStream,
) -> Result<DerivablePath, Box<dyn std::error::Error + Send>> {
let data = try_decode_from(socket).await.unwrap();
let path: DerivablePath = bincode::deserialize(&data[..]).unwrap();
2023-08-25 06:32:21 +00:00
Ok(path)
}
async fn wait_and_run(app: &mut Keyforkd, path: DerivablePath) -> Result<Vec<u8>, DerivationError> {
app.ready().await?.call(path).await
}
#[allow(clippy::module_name_repetitions)]
pub struct UnixServer {
listener: UnixListener,
}
impl UnixServer {
pub fn bind(address: impl AsRef<Path>) -> Result<Self, Error> {
let mut path = PathBuf::new();
path.extend(address.as_ref().components());
tokio::spawn(async move {
let result = tokio::signal::ctrl_c().await;
#[cfg(feature = "tracing")]
2023-08-25 09:28:47 +00:00
debug!(
?result,
"encountered ctrl-c, performing cleanup and exiting"
);
2023-08-25 06:32:21 +00:00
let result = tokio::fs::remove_file(&path).await;
#[cfg(feature = "tracing")]
if let Err(error) = result {
debug!(%error, "unable to remove path: {}", path.display());
}
std::process::exit(0x80);
});
Ok(Self {
listener: UnixListener::bind(address)?,
})
}
pub async fn run(&mut self, app: Keyforkd) -> Result<(), Box<dyn std::error::Error>> {
loop {
let mut app = app.clone();
let (mut socket, _) = self.listener.accept().await?;
#[cfg(feature = "tracing")]
debug!("new socket connected");
tokio::spawn(async move {
let path = match read_path_from_socket(&mut socket).await {
Ok(path) => path,
Err(e) => {
#[cfg(feature = "tracing")]
debug!(%e, "Error reading DerivablePath from socket");
let content = e.to_string().bytes().collect::<Vec<_>>();
let result = try_encode_to(&content[..], &mut socket).await;
#[cfg(feature = "tracing")]
if let Err(error) = result {
debug!(%error, "Error sending error to client");
}
return;
}
};
let response = match wait_and_run(&mut app, path).await {
Ok(response) => response,
Err(e) => {
#[cfg(feature = "tracing")]
debug!(%e, "Error reading DerivablePath from socket");
let content = e.to_string().bytes().collect::<Vec<_>>();
let result = try_encode_to(&content[..], &mut socket).await;
#[cfg(feature = "tracing")]
if let Err(error) = result {
debug!(%error, "Error sending error to client");
}
return;
}
};
if let Err(e) = try_encode_to(&response[..], &mut socket).await {
#[cfg(feature = "tracing")]
debug!(%e, "Error sending response to client");
}
});
}
}
}