Skip to content

Commit

Permalink
install: Stop reading kargs from container root, use ostree
Browse files Browse the repository at this point in the history
Part of containers#879

Basically we want to be able to `bootc install` outside of
a container. For the same reasons actually that we already support
parsing kargs from an ostree commit (without materializing it
as a filesystem), just expose that API via `pub(crate)` and use
it in between the "pull" and "deploy" phases.

We basically do the same thing on `bootc upgrade`.

Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Nov 7, 2024
1 parent 431df01 commit 79d9578
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
23 changes: 15 additions & 8 deletions lib/src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,6 @@ async fn install_container(
let sepolicy = sepolicy.as_ref();
let stateroot = state.stateroot();

let container_rootfs = &Dir::open_ambient_dir("/", cap_std::ambient_authority())?;

let (src_imageref, proxy_cfg) = if !state.source.in_host_mountns {
(state.source.imageref.clone(), None)
} else {
Expand Down Expand Up @@ -703,17 +701,26 @@ async fn install_container(

// Pull the container image into the target root filesystem. Since this is
// an install path, we don't need to fsync() individual layers.
{
let pulled_image = {
let spec_imgref = ImageReference::from(src_imageref.clone());
let repo = &sysroot.repo();
repo.set_disable_fsync(true);
crate::deploy::pull(repo, &spec_imgref, Some(&state.target_imgref), false).await?;
let r = crate::deploy::pull(repo, &spec_imgref, Some(&state.target_imgref), false).await?;
repo.set_disable_fsync(false);
}
r
};

// Load the kargs from the /usr/lib/bootc/kargs.d from the running root,
// which should be the same as the filesystem we'll deploy.
let kargsd = crate::kargs::get_kargs_in_root(container_rootfs, std::env::consts::ARCH)?;
// We need to read the kargs from the target merged ostree commit before
// we do the deployment.
let merged_ostree_root = sysroot
.repo()
.read_commit(pulled_image.ostree_commit.as_str(), gio::Cancellable::NONE)?
.0;
let kargsd = crate::kargs::get_kargs_from_ostree(
&sysroot.repo(),
merged_ostree_root.downcast_ref().unwrap(),
std::env::consts::ARCH,
)?;
let kargsd = kargsd.iter().map(|s| s.as_str());

let install_config_kargs = state
Expand Down
2 changes: 1 addition & 1 deletion lib/src/kargs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub(crate) fn get_kargs_in_root(d: &Dir, sys_arch: &str) -> Result<Vec<String>>
}

/// Load kargs.d files from the target ostree commit root
fn get_kargs_from_ostree(
pub(crate) fn get_kargs_from_ostree(
repo: &ostree::Repo,
fetched_tree: &ostree::RepoFile,
sys_arch: &str,
Expand Down

0 comments on commit 79d9578

Please sign in to comment.