use std::os::fd::OwnedFd;
use std::sync::atomic::AtomicBool;
use pagers_core::{ops, output};
use crate::Error;
use crate::cli::LockInner;
pub(crate) enum ForkOutcome {
Parent,
Child(Option<OwnedFd>),
}
pub(crate) fn go_daemon(wait: bool) -> Result<ForkOutcome, Error> {
let pipe = if wait {
Some(nix::unistd::pipe()?)
} else {
None
};
match unsafe { nix::unistd::fork() }? {
nix::unistd::ForkResult::Parent { child: _ } => {
if let Some((read_fd, _)) = pipe {
wait_for_child(read_fd)?;
}
Ok(ForkOutcome::Parent)
}
nix::unistd::ForkResult::Child => {
nix::unistd::setsid()?;
if let Some((_, write_fd)) = pipe {
Ok(ForkOutcome::Child(Some(write_fd)))
} else {
redirect_stdio();
Ok(ForkOutcome::Child(None))
}
}
}
}
fn wait_for_child(read_fd: OwnedFd) -> Result<(), Error> {
use std::io::Read;
let mut file = std::fs::File::from(read_fd);
let mut buf = [0u8; 1];
match file.read(&mut buf) {
Ok(1) if buf[0] == 0 => Ok(()),
Ok(1) => Err(Error::DaemonExit(buf[0])),
_ => Err(Error::DaemonShutdown),
}
}
fn redirect_stdio() {
use std::os::fd::FromRawFd;
if let Ok(devnull) = std::fs::OpenOptions::new()
.read(true)
.write(true)
.open("/dev/null")
{
for raw in [0, 1, 2] {
let mut fd = unsafe { OwnedFd::from_raw_fd(raw) };
let _ = nix::unistd::dup2(&devnull, &mut fd);
std::mem::forget(fd);
}
}
}
pub(crate) fn hold(
stats: &ops::Stats,
inner: &LockInner,
term: &AtomicBool,
notify_fd: Option<OwnedFd>,
) {
if let Some(p) = &inner.pidfile
&& let Err(e) = fs_err::write(p, format!("{}\n", std::process::id()))
{
::tracing::warn!("pidfile: {e}");
}
let page_size = *pagers_core::pagesize::PAGE_SIZE;
let total = stats.total_pages.load(std::sync::atomic::Ordering::Relaxed);
::tracing::info!(
"LOCKED {} pages ({})",
total,
output::pretty_size(total * page_size)
);
if let Some(fd) = notify_fd {
use std::io::Write;
let mut file = std::fs::File::from(fd);
let _ = file.write_all(&[0u8]);
}
while !term.load(std::sync::atomic::Ordering::Relaxed) {
std::thread::sleep(std::time::Duration::from_millis(100));
}
if let Some(p) = &inner.pidfile {
let _ = fs_err::remove_file(p);
}
}