From 7c0f9c6378dc15a4852f0edae6564d5422627740 Mon Sep 17 00:00:00 2001 From: Omer Tuchfeld Date: Fri, 21 Jun 2024 11:03:42 +0200 Subject: [PATCH] install: Make stateroot configurable This commit makes it so that the `bootc install` stateroot will be configurable (it defaults to `default`). For now this is a hidden CLI option until we decide whether we want to commit to this API. In the future we also want to make the stateroot of `bootc switch` be configurable (https://github.com/containers/bootc/pull/617) so that users can install an image to a new stateroot while they already have an existing stateroot Also removed the constant `STATEROOT_DEFAULT`, we're now simply taking it from the `ostree_ext` crate --- lib/src/install.rs | 20 +++++++++++++++----- tests-integration/src/install.rs | 29 ++++++++++++++++++++--------- 2 files changed, 35 insertions(+), 14 deletions(-) diff --git a/lib/src/install.rs b/lib/src/install.rs index 607623f62..2550db22b 100644 --- a/lib/src/install.rs +++ b/lib/src/install.rs @@ -51,8 +51,6 @@ use crate::store::Storage; use crate::task::Task; use crate::utils::sigpolicy_from_opts; -/// The default "stateroot" or "osname"; see https://github.com/ostreedev/ostree/issues/2794 -const STATEROOT_DEFAULT: &str = "default"; /// The toplevel boot directory const BOOT: &str = "boot"; /// Directory for transient runtime state @@ -171,6 +169,10 @@ pub(crate) struct InstallConfigOpts { #[clap(long, hide = true)] #[serde(default)] pub(crate) skip_bound_images: bool, + + /// The stateroot name to use. Defaults to `default`. + #[clap(long, hide = true)] + pub(crate) stateroot: Option, } #[derive(Debug, Clone, clap::Parser, Serialize, Deserialize, PartialEq, Eq)] @@ -567,8 +569,12 @@ async fn initialize_ostree_root(state: &State, root_setup: &RootSetup) -> Result // Another implementation: https://github.com/coreos/coreos-assembler/blob/3cd3307904593b3a131b81567b13a4d0b6fe7c90/src/create_disk.sh#L295 crate::lsm::ensure_dir_labeled(rootfs_dir, "", Some("/".into()), 0o755.into(), sepolicy)?; - // TODO: make configurable? - let stateroot = STATEROOT_DEFAULT; + let stateroot = state + .config_opts + .stateroot + .as_deref() + .unwrap_or(ostree_ext::container::deploy::STATEROOT_DEFAULT); + Task::new_and_run( "Initializing ostree layout", "ostree", @@ -638,7 +644,11 @@ async fn install_container( ) -> Result<(ostree::Deployment, InstallAleph)> { let sepolicy = state.load_policy()?; let sepolicy = sepolicy.as_ref(); - let stateroot = STATEROOT_DEFAULT; + let stateroot = state + .config_opts + .stateroot + .as_deref() + .unwrap_or(ostree_ext::container::deploy::STATEROOT_DEFAULT); let container_rootfs = &Dir::open_ambient_dir("/", cap_std::ambient_authority())?; diff --git a/tests-integration/src/install.rs b/tests-integration/src/install.rs index 1f40dde85..bf228e61e 100644 --- a/tests-integration/src/install.rs +++ b/tests-integration/src/install.rs @@ -25,16 +25,18 @@ pub(crate) const BASE_ARGS: &[&str] = &[ // Clear out and delete any ostree roots fn reset_root(sh: &Shell) -> Result<()> { - // TODO fix https://github.com/containers/bootc/pull/137 - if !Path::new("/ostree/deploy/default").exists() { - return Ok(()); + for stateroot in &["default", "foo"] { + // TODO fix https://github.com/containers/bootc/pull/137 + if !Path::new(&format!("/ostree/deploy/{stateroot}")).exists() { + return Ok(()); + } + cmd!( + sh, + "sudo /bin/sh -c 'chattr -i /ostree/deploy/{stateroot}/deploy/*'" + ) + .run()?; + cmd!(sh, "sudo rm /ostree/deploy/{stateroot} -rf").run()?; } - cmd!( - sh, - "sudo /bin/sh -c 'chattr -i /ostree/deploy/default/deploy/*'" - ) - .run()?; - cmd!(sh, "sudo rm /ostree/deploy/default -rf").run()?; Ok(()) } @@ -136,6 +138,15 @@ pub(crate) fn run_alongside(image: &str, mut testargs: libtest_mimic::Arguments) crate::selinux::verify_selinux_recurse(root, &mut path, false)?; Ok(()) }), + Trial::test("Install to non-default stateroot", move || { + let sh = &xshell::Shell::new()?; + reset_root(sh)?; + let non_default_stateroot = "foo"; + cmd!(sh, "sudo {BASE_ARGS...} {target_args...} {image} bootc install to-existing-root --stateroot {non_default_stateroot} --acknowledge-destructive {generic_inst_args...}").run()?; + generic_post_install_verification()?; + assert!(Utf8Path::new("/ostree/deploy/foo").try_exists()?); + Ok(()) + }), Trial::test("without an install config", move || { let sh = &xshell::Shell::new()?; reset_root(sh)?;