rest-server/daemon: use sd_notify_barrier for service reloading
until now, we manually polled the systemd service state during a reload so that the sd_notify messages get processed in the correct order (RELOAD(old) -> MAINPID(old) -> READY(new)) with systemd >= 246 there is now 'sd_notify_barrier' which blocks until systemd processed all prior messages with that change, the daemon does not need to know the service name anymore Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
6680878b5c
commit
0a6df20986
|
@ -89,7 +89,7 @@ Build-Depends: debhelper (>= 12),
|
||||||
librust-zstd-0.6+default-dev,
|
librust-zstd-0.6+default-dev,
|
||||||
libacl1-dev,
|
libacl1-dev,
|
||||||
libfuse3-dev,
|
libfuse3-dev,
|
||||||
libsystemd-dev,
|
libsystemd-dev (>= 246-~~),
|
||||||
uuid-dev,
|
uuid-dev,
|
||||||
libsgutils2-dev,
|
libsgutils2-dev,
|
||||||
bash-completion,
|
bash-completion,
|
||||||
|
|
|
@ -213,7 +213,6 @@ async fn run() -> Result<(), Error> {
|
||||||
Ok(())
|
Ok(())
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
"example_server",
|
|
||||||
).await?;
|
).await?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -186,6 +186,9 @@ impl Reloader {
|
||||||
if let Err(e) = systemd_notify(SystemdNotify::MainPid(child)) {
|
if let Err(e) = systemd_notify(SystemdNotify::MainPid(child)) {
|
||||||
log::error!("failed to notify systemd about the new main pid: {}", e);
|
log::error!("failed to notify systemd about the new main pid: {}", e);
|
||||||
}
|
}
|
||||||
|
if let Err(e) = systemd_notify_barrier() {
|
||||||
|
log::error!("failed to wait on systemd-processing: {}", e);
|
||||||
|
}
|
||||||
|
|
||||||
// notify child that it is now the new main process:
|
// notify child that it is now the new main process:
|
||||||
if let Err(e) = pold.write_all(&[1u8]) {
|
if let Err(e) = pold.write_all(&[1u8]) {
|
||||||
|
@ -248,7 +251,6 @@ impl Reloadable for tokio::net::TcpListener {
|
||||||
pub async fn create_daemon<F, S>(
|
pub async fn create_daemon<F, S>(
|
||||||
address: std::net::SocketAddr,
|
address: std::net::SocketAddr,
|
||||||
create_service: F,
|
create_service: F,
|
||||||
service_name: &str,
|
|
||||||
) -> Result<(), Error>
|
) -> Result<(), Error>
|
||||||
where
|
where
|
||||||
F: FnOnce(tokio::net::TcpListener) -> Result<S, Error>,
|
F: FnOnce(tokio::net::TcpListener) -> Result<S, Error>,
|
||||||
|
@ -289,7 +291,10 @@ where
|
||||||
if let Err(e) = systemd_notify(SystemdNotify::Reloading) {
|
if let Err(e) = systemd_notify(SystemdNotify::Reloading) {
|
||||||
log::error!("failed to notify systemd about the state change: {}", e);
|
log::error!("failed to notify systemd about the state change: {}", e);
|
||||||
}
|
}
|
||||||
wait_service_is_state(service_name, "reloading").await?;
|
if let Err(e) = systemd_notify_barrier() {
|
||||||
|
log::error!("failed to wait on systemd-processing: {}", e);
|
||||||
|
}
|
||||||
|
|
||||||
if let Err(e) = reloader.take().unwrap().fork_restart() {
|
if let Err(e) = reloader.take().unwrap().fork_restart() {
|
||||||
log::error!("error during reload: {}", e);
|
log::error!("error during reload: {}", e);
|
||||||
let _ = systemd_notify(SystemdNotify::Status("error during reload".to_string()));
|
let _ = systemd_notify(SystemdNotify::Status("error during reload".to_string()));
|
||||||
|
@ -302,51 +307,14 @@ where
|
||||||
future.await;
|
future.await;
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: this is a hack, replace with sd_notify_barrier when available
|
|
||||||
if crate::is_reload_request() {
|
|
||||||
wait_service_is_not_state(service_name, "reloading").await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
log::info!("daemon shut down.");
|
log::info!("daemon shut down.");
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
// hack, do not use if unsure!
|
|
||||||
async fn get_service_state(service: &str) -> Result<String, Error> {
|
|
||||||
let text = match tokio::process::Command::new("systemctl")
|
|
||||||
.args(&["is-active", service])
|
|
||||||
.output()
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
Ok(output) => match String::from_utf8(output.stdout) {
|
|
||||||
Ok(text) => text,
|
|
||||||
Err(err) => bail!("output of 'systemctl is-active' not valid UTF-8 - {}", err),
|
|
||||||
},
|
|
||||||
Err(err) => bail!("executing 'systemctl is-active' failed - {}", err),
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(text.trim().trim_start().to_string())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn wait_service_is_state(service: &str, state: &str) -> Result<(), Error> {
|
|
||||||
tokio::time::sleep(std::time::Duration::new(1, 0)).await;
|
|
||||||
while get_service_state(service).await? != state {
|
|
||||||
tokio::time::sleep(std::time::Duration::new(5, 0)).await;
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn wait_service_is_not_state(service: &str, state: &str) -> Result<(), Error> {
|
|
||||||
tokio::time::sleep(std::time::Duration::new(1, 0)).await;
|
|
||||||
while get_service_state(service).await? == state {
|
|
||||||
tokio::time::sleep(std::time::Duration::new(5, 0)).await;
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[link(name = "systemd")]
|
#[link(name = "systemd")]
|
||||||
extern "C" {
|
extern "C" {
|
||||||
fn sd_notify(unset_environment: c_int, state: *const c_char) -> c_int;
|
fn sd_notify(unset_environment: c_int, state: *const c_char) -> c_int;
|
||||||
|
fn sd_notify_barrier(unset_environment: c_int, timeout: u64) -> c_int;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Systemd sercice startup states (see: ``man sd_notify``)
|
/// Systemd sercice startup states (see: ``man sd_notify``)
|
||||||
|
@ -358,6 +326,19 @@ pub enum SystemdNotify {
|
||||||
MainPid(nix::unistd::Pid),
|
MainPid(nix::unistd::Pid),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Waits until all previously sent messages with sd_notify are processed
|
||||||
|
pub fn systemd_notify_barrier() -> Result<(), Error> {
|
||||||
|
let rc = unsafe { sd_notify_barrier(0, u64::MAX) }; // infinite timeout
|
||||||
|
if rc < 0 {
|
||||||
|
bail!(
|
||||||
|
"systemd_notify_barrier failed: {}",
|
||||||
|
std::io::Error::from_raw_os_error(-rc),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
/// Tells systemd the startup state of the service (see: ``man sd_notify``)
|
/// Tells systemd the startup state of the service (see: ``man sd_notify``)
|
||||||
pub fn systemd_notify(state: SystemdNotify) -> Result<(), Error> {
|
pub fn systemd_notify(state: SystemdNotify) -> Result<(), Error> {
|
||||||
|
|
||||||
|
|
|
@ -124,7 +124,6 @@ async fn run() -> Result<(), Error> {
|
||||||
.await
|
.await
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
"proxmox-backup.service",
|
|
||||||
);
|
);
|
||||||
|
|
||||||
proxmox_rest_server::write_pid(pbs_buildcfg::PROXMOX_BACKUP_API_PID_FN)?;
|
proxmox_rest_server::write_pid(pbs_buildcfg::PROXMOX_BACKUP_API_PID_FN)?;
|
||||||
|
|
|
@ -275,7 +275,6 @@ async fn run() -> Result<(), Error> {
|
||||||
.await
|
.await
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
"proxmox-backup-proxy.service",
|
|
||||||
);
|
);
|
||||||
|
|
||||||
proxmox_rest_server::write_pid(pbs_buildcfg::PROXMOX_BACKUP_PROXY_PID_FN)?;
|
proxmox_rest_server::write_pid(pbs_buildcfg::PROXMOX_BACKUP_PROXY_PID_FN)?;
|
||||||
|
|
Loading…
Reference in New Issue