1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-06 07:36:17 +02:00
youki/src/container/container.rs
2021-09-27 15:46:57 -07:00

232 lines
5.9 KiB
Rust

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 oci_spec::runtime::Spec;
use procfs::process::Process;
use crate::syscall::syscall::create_syscall;
use crate::container::{ContainerStatus, State};
/// Structure representing the container data
#[derive(Debug, Clone)]
pub struct Container {
// State of the container
pub state: State,
// indicated the directory for the root path in the container
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, bundle.to_path_buf());
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) => {
// Note that Process::new does not spawn a new process
// but instead creates a new Process structure, and fill
// it with information about the process with given pid
if let Ok(proc) = Process::new(pid.as_raw()) {
use procfs::process::ProcState;
match proc.stat.state().unwrap() {
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<Spec> {
let spec = Spec::load(self.root.join("config.json"))?;
Ok(spec)
}
}
#[cfg(test)]
mod tests {
use std::env;
use super::*;
use anyhow::Result;
#[test]
fn test_set_id() -> Result<()> {
let dir = env::temp_dir();
let mut container =
Container::new("container_id", ContainerStatus::Created, None, &dir, &dir)?;
container.set_pid(1);
assert_eq!(container.pid(), Some(Pid::from_raw(1)));
Ok(())
}
#[test]
fn test_basic_getter() -> Result<()> {
let container = Container::new(
"container_id",
ContainerStatus::Created,
None,
&PathBuf::from("."),
&PathBuf::from("."),
)?;
assert_eq!(container.bundle(), &PathBuf::from("."));
assert_eq!(container.root, fs::canonicalize(PathBuf::from("."))?);
Ok(())
}
}