1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-06 15:46:17 +02:00
youki/src/container/container_pause.rs
Takashi IIGUNI 97848f1ce6
Updated cgroups oci-spec-rs to 0.5.1 or later (#303)
* Updated cgroup oci-spec-rs to 0.5.1

Signed-off-by: Takashi IIGUNI <iiguni.tks@gmail.com>
2021-09-26 18:08:56 -07:00

59 lines
1.7 KiB
Rust

use crate::utils;
use super::{Container, ContainerStatus};
use anyhow::{bail, Context, Result};
use cgroups::common::FreezerState;
impl Container {
/// Suspends all processes within the container
///
/// # Example
///
/// ```no_run
/// use youki::container::builder::ContainerBuilder;
/// use youki::syscall::syscall::create_syscall;;
///
/// # fn main() -> anyhow::Result<()> {
/// let mut container = ContainerBuilder::new("74f1a4cb3801".to_owned(), create_syscall().as_ref())
/// .as_init("/var/run/docker/bundle")
/// .build()?;
///
/// container.pause()?;
/// # Ok(())
/// # }
/// ```
pub fn pause(&mut self) -> Result<()> {
self.refresh_status()
.context("failed to refresh container status")?;
if !self.can_pause() {
bail!(
"{} could not be paused because it was {:?}",
self.id(),
self.status()
);
}
let spec = self.spec()?;
let cgroups_path = utils::get_cgroup_path(
spec.linux()
.as_ref()
.context("no linux in spec")?
.cgroups_path(),
self.id(),
);
let use_systemd = self
.systemd()
.context("container state does not contain cgroup manager")?;
let cmanager = cgroups::common::create_cgroup_manager(cgroups_path, use_systemd)?;
cmanager.freeze(FreezerState::Frozen)?;
log::debug!("saving paused status");
self.set_status(ContainerStatus::Paused).save()?;
log::debug!("container {} paused", self.id());
Ok(())
}
}