use std::collections::HashMap;
use std::ffi::OsString;
use std::fs;
use std::path::{Path, PathBuf};
use anyhow::Result;
use chrono::DateTime;
use nix::unistd::Pid;
use chrono::Utc;
use procfs::process::Process;
use crate::config::YoukiConfig;
use crate::syscall::syscall::create_syscall;
use crate::container::{ContainerStatus, State};
#[derive(Debug, Clone)]
pub struct Container {
pub state: State,
pub root: PathBuf,
}
impl Default for Container {
fn default() -> Self {
Self {
state: State::default(),
root: PathBuf::from("/run/youki"),
}
}
}
impl Container {
pub fn new(
container_id: &str,
status: ContainerStatus,
pid: Option<i32>,
bundle: &Path,
container_root: &Path,
) -> Result<Self> {
let container_root = fs::canonicalize(container_root)?;
let state = State::new(container_id, status, pid, fs::canonicalize(bundle)?);
Ok(Self {
state,
root: container_root,
})
}
pub fn id(&self) -> &str {
&self.state.id
}
pub fn can_start(&self) -> bool {
self.state.status.can_start()
}
pub fn can_kill(&self) -> bool {
self.state.status.can_kill()
}
pub fn can_delete(&self) -> bool {
self.state.status.can_delete()
}
pub fn can_exec(&self) -> bool {
self.state.status == ContainerStatus::Running
}
pub fn can_pause(&self) -> bool {
self.state.status.can_pause()
}
pub fn can_resume(&self) -> bool {
self.state.status.can_resume()
}
pub fn bundle(&self) -> &PathBuf {
&self.state.bundle
}
pub fn set_annotations(&mut self, annotations: Option<HashMap<String, String>>) -> &mut Self {
self.state.annotations = annotations;
self
}
pub fn pid(&self) -> Option<Pid> {
self.state.pid.map(Pid::from_raw)
}
pub fn set_pid(&mut self, pid: i32) -> &mut Self {
self.state.pid = Some(pid);
self
}
pub fn created(&self) -> Option<DateTime<Utc>> {
self.state.created
}
pub fn creator(&self) -> Option<OsString> {
if let Some(uid) = self.state.creator {
let command = create_syscall();
let user_name = command.get_pwuid(uid);
if let Some(user_name) = user_name {
return Some((*user_name).to_owned());
}
}
None
}
pub fn set_creator(&mut self, uid: u32) -> &mut Self {
self.state.creator = Some(uid);
self
}
pub fn systemd(&self) -> Option<bool> {
self.state.use_systemd
}
pub fn set_systemd(&mut self, should_use: bool) -> &mut Self {
self.state.use_systemd = Some(should_use);
self
}
pub fn status(&self) -> ContainerStatus {
self.state.status
}
pub fn set_status(&mut self, status: ContainerStatus) -> &mut Self {
let created = match (status, self.state.created) {
(ContainerStatus::Created, None) => Some(Utc::now()),
_ => self.state.created,
};
self.state.created = created;
self.state.status = status;
self
}
pub fn refresh_status(&mut self) -> Result<()> {
let new_status = match self.pid() {
Some(pid) => {
if let Ok(proc) = Process::new(pid.as_raw()) {
use procfs::process::ProcState;
match proc.stat()?.state()? {
ProcState::Zombie | ProcState::Dead => ContainerStatus::Stopped,
_ => match self.status() {
ContainerStatus::Creating
| ContainerStatus::Created
| ContainerStatus::Paused => self.status(),
_ => ContainerStatus::Running,
},
}
} else {
ContainerStatus::Stopped
}
}
None => ContainerStatus::Stopped,
};
self.set_status(new_status);
Ok(())
}
pub fn refresh_state(&mut self) -> Result<&mut Self> {
let state = State::load(&self.root)?;
self.state = state;
Ok(self)
}
pub fn load(container_root: PathBuf) -> Result<Self> {
let state = State::load(&container_root)?;
let mut container = Self {
state,
root: container_root,
};
container.refresh_status()?;
Ok(container)
}
pub fn save(&self) -> Result<()> {
log::debug!("Save container status: {:?} in {:?}", self, self.root);
self.state.save(&self.root)
}
pub fn spec(&self) -> Result<YoukiConfig> {
let spec = YoukiConfig::load(&self.root)?;
Ok(spec)
}
}
pub struct CheckpointOptions {
pub ext_unix_sk: bool,
pub file_locks: bool,
pub image_path: PathBuf,
pub leave_running: bool,
pub shell_job: bool,
pub tcp_established: bool,
pub work_path: Option<PathBuf>,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::utils::create_temp_dir;
use anyhow::Context;
use serial_test::serial;
#[test]
fn test_get_set_pid() {
let mut container = Container::default();
assert_eq!(container.pid(), None);
container.set_pid(1);
assert_eq!(container.pid(), Some(Pid::from_raw(1)));
}
#[test]
fn test_basic_getter() -> Result<()> {
let mut container = Container::new(
"container_id",
ContainerStatus::Creating,
None,
&PathBuf::from("."),
&PathBuf::from("."),
)?;
assert_eq!(container.id(), "container_id");
assert_eq!(
container.bundle(),
&fs::canonicalize(PathBuf::from(".")).unwrap()
);
assert_eq!(container.root, fs::canonicalize(PathBuf::from("."))?);
assert_eq!(container.created(), None);
container.set_status(ContainerStatus::Created);
assert!(container.created().is_some());
Ok(())
}
#[test]
fn test_set_annotations() {
let mut container = Container::default();
assert_eq!(container.state.annotations, None);
let mut annotations = std::collections::HashMap::with_capacity(1);
annotations.insert(
"org.criu.config".to_string(),
"/etc/special-youki-criu-options".to_string(),
);
container.set_annotations(Some(annotations.clone()));
assert_eq!(container.state.annotations, Some(annotations));
}
#[test]
fn test_get_set_systemd() {
let mut container = Container::default();
assert_eq!(container.systemd(), None);
container.set_systemd(true);
assert_eq!(container.systemd(), Some(true));
container.set_systemd(false);
assert_eq!(container.systemd(), Some(false));
}
#[test]
fn test_get_set_creator() {
let mut container = Container::default();
assert_eq!(container.creator(), None);
container.set_creator(1000);
assert_eq!(container.creator(), Some(OsString::from("youki")));
}
#[test]
#[serial]
fn test_refresh_load_save_state() -> Result<()> {
let tmp_dir = create_temp_dir("test_refresh_load_save_state")?;
let mut container_1 = Container::new(
"container_id_1",
ContainerStatus::Created,
None,
&PathBuf::from("."),
tmp_dir.path(),
)?;
container_1.save()?;
let container_2 = Container::load(tmp_dir.path().to_path_buf())?;
assert_eq!(container_1.state.id, container_2.state.id);
assert_eq!(container_2.state.status, ContainerStatus::Stopped);
container_1.state.id = "container_id_1_modified".to_string();
container_1.save()?;
container_1.refresh_state()?;
assert_eq!(container_1.state.id, "container_id_1_modified".to_string());
Ok(())
}
#[test]
#[serial]
fn test_get_spec() -> Result<()> {
let tmp_dir = create_temp_dir("test_get_spec")?;
use oci_spec::runtime::Spec;
let spec = Spec::default();
let config =
YoukiConfig::from_spec(&spec, "123", false).context("convert spec to config")?;
config.save(tmp_dir.path()).context("save config")?;
let container = Container {
root: tmp_dir.path().to_path_buf(),
..Default::default()
};
container.spec().context("get config")?;
Ok(())
}
#[test]
#[serial]
fn test_get_set_refresh_status() -> Result<()> {
let mut container = Container::default();
assert_eq!(container.status(), ContainerStatus::Creating);
assert!(!container.can_start());
assert!(!container.can_kill());
assert!(!container.can_delete());
assert!(!container.can_exec());
assert!(!container.can_pause());
assert!(!container.can_resume());
container.refresh_status()?;
assert_eq!(container.status(), ContainerStatus::Stopped);
container.set_pid(-1);
container.refresh_status()?;
assert_eq!(container.status(), ContainerStatus::Stopped);
container.set_pid(1);
container.set_status(ContainerStatus::Paused);
container.refresh_status()?;
assert_eq!(container.status(), ContainerStatus::Paused);
container.set_status(ContainerStatus::Running);
container.refresh_status()?;
assert_eq!(container.status(), ContainerStatus::Running);
Ok(())
}
}