tool: make stubs input-addressed

The stubs on the ESP are now input-addressed, where the inputs are the
system toplevel and the public key used for signature. This way, it is
guaranteed that any stub at a given path will boot the desired system,
even in the presence of one of the two edge-cases where it was not
previously guaranteed:
* The latest generation was deleted at one point, and its generation
  number was reused by a different system configuration. This is
  detected because the toplevel will change.
* The secure boot signing key was rotated, so old stubs would not boot
  at all any more. This is detected because the public key will change.

Avoiding these two cases will allow to skip reinstallation of stubs that
are already in place at the correct path.
This commit is contained in:
Alois Wohlschlager 2023-08-13 12:02:35 +02:00
parent 240914d763
commit ca070a9eec
No known key found for this signature in database
GPG Key ID: E0F59EA5E5216914
7 changed files with 95 additions and 31 deletions

View File

@ -258,7 +258,7 @@ in
# It is expected that the initrd contains the original secret. # It is expected that the initrd contains the original secret.
machine.succeed("cmp ${originalSecret} /secret-from-initramfs") machine.succeed("cmp ${originalSecret} /secret-from-initramfs")
machine.succeed("bootctl set-default nixos-generation-1-specialisation-variant.efi") machine.succeed("bootctl set-default nixos-generation-1-specialisation-variant-\*.efi")
machine.succeed("sync") machine.succeed("sync")
machine.crash() machine.crash()
machine.start() machine.start()
@ -301,7 +301,7 @@ in
machine.start() machine.start()
print(machine.succeed("ls -lah /boot/EFI/Linux")) print(machine.succeed("ls -lah /boot/EFI/Linux"))
# TODO: make it more reliable to find this filename, i.e. read it from somewhere? # TODO: make it more reliable to find this filename, i.e. read it from somewhere?
machine.succeed("bootctl set-default nixos-generation-1-specialisation-variant.efi") machine.succeed("bootctl set-default nixos-generation-1-specialisation-variant-\*.efi")
machine.succeed("sync") machine.succeed("sync")
machine.fail("efibootmgr") machine.fail("efibootmgr")
machine.crash() machine.crash()
@ -359,8 +359,8 @@ in
# TODO: this should work -- machine.succeed("efibootmgr -d /dev/vda -c -l \\EFI\\Linux\\nixos-generation-1.efi") -- efivars are not persisted # TODO: this should work -- machine.succeed("efibootmgr -d /dev/vda -c -l \\EFI\\Linux\\nixos-generation-1.efi") -- efivars are not persisted
# across reboots atm? # across reboots atm?
# cheat code no 1 # cheat code no 1
machine.succeed("cp /boot/EFI/Linux/nixos-generation-1.efi /boot/EFI/BOOT/BOOTX64.EFI") machine.succeed("cp /boot/EFI/Linux/nixos-generation-1-*.efi /boot/EFI/BOOT/BOOTX64.EFI")
machine.succeed("cp /boot/EFI/Linux/nixos-generation-1.efi /boot/EFI/systemd/systemd-bootx64.efi") machine.succeed("cp /boot/EFI/Linux/nixos-generation-1-*.efi /boot/EFI/systemd/systemd-bootx64.efi")
# Let's reboot. # Let's reboot.
machine.succeed("sync") machine.succeed("sync")

View File

@ -84,9 +84,16 @@ impl Generation {
.build_time .build_time
.map(|x| x.to_string()) .map(|x| x.to_string())
.unwrap_or_else(|| String::from("Unknown")); .unwrap_or_else(|| String::from("Unknown"));
if self.is_specialised().is_some() {
format!(
"Generation {}-specialised, Built on {}",
self.version, build_time
)
} else {
format!("Generation {}, Built on {}", self.version, build_time) format!("Generation {}, Built on {}", self.version, build_time)
} }
} }
}
impl fmt::Display for Generation { impl fmt::Display for Generation {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {

View File

@ -13,6 +13,8 @@ log = { version = "0.4.18", features = ["std"] }
clap = { version = "4.3.1", features = ["derive"] } clap = { version = "4.3.1", features = ["derive"] }
lanzaboote_tool = { path = "../shared" } lanzaboote_tool = { path = "../shared" }
indoc = "2.0.1" indoc = "2.0.1"
serde_json = "1.0.96"
sha2 = "0.10.6"
tempfile = "3.5.0" tempfile = "3.5.0"
nix = { version = "0.26.2", default-features = false, features = [ "fs" ] } nix = { version = "0.26.2", default-features = false, features = [ "fs" ] }
@ -21,8 +23,6 @@ assert_cmd = "2.0.11"
expect-test = "1.4.1" expect-test = "1.4.1"
filetime = "0.2.21" filetime = "0.2.21"
rand = "0.8.5" rand = "0.8.5"
serde_json = "1.0.96"
goblin = "0.6.1" goblin = "0.6.1"
serde = { version = "1.0.163", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
walkdir = "2.3.3" walkdir = "2.3.3"
sha2 = "0.10.6"

View File

@ -2,7 +2,7 @@ use std::collections::BTreeSet;
use std::ffi::OsStr; use std::ffi::OsStr;
use std::fs::{self, File}; use std::fs::{self, File};
use std::os::fd::AsRawFd; use std::os::fd::AsRawFd;
use std::os::unix::prelude::PermissionsExt; use std::os::unix::prelude::{OsStrExt, PermissionsExt};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::Command; use std::process::Command;
use std::string::ToString; use std::string::ToString;
@ -10,6 +10,7 @@ use std::string::ToString;
use anyhow::{anyhow, Context, Result}; use anyhow::{anyhow, Context, Result};
use base32ct::{Base32Unpadded, Encoding}; use base32ct::{Base32Unpadded, Encoding};
use nix::unistd::syncfs; use nix::unistd::syncfs;
use sha2::{Digest, Sha256};
use tempfile::TempDir; use tempfile::TempDir;
use crate::architecture::SystemdArchitectureExt; use crate::architecture::SystemdArchitectureExt;
@ -243,13 +244,27 @@ impl Installer {
&self.esp_paths.esp, &self.esp_paths.esp,
) )
.context("Failed to assemble lanzaboote image.")?; .context("Failed to assemble lanzaboote image.")?;
let stub_inputs = [
// Generation numbers can be reused if the latest generation was deleted.
// To detect this, the stub path depends on the actual toplevel used.
("toplevel", bootspec.toplevel.0.as_os_str().as_bytes()),
// If the key is rotated, the signed stubs must be re-generated.
// So we make their path depend on the public key used for signature.
("public_key", &fs::read(&self.key_pair.public_key)?),
];
let stub_input_hash = Base32Unpadded::encode_string(&Sha256::digest(
serde_json::to_string(&stub_inputs).unwrap(),
));
let stub_name = if let Some(specialisation_name) = generation.is_specialised() { let stub_name = if let Some(specialisation_name) = generation.is_specialised() {
PathBuf::from(format!( PathBuf::from(format!(
"nixos-generation-{}-specialisation-{}.efi", "nixos-generation-{}-specialisation-{}-{}.efi",
generation, specialisation_name generation, specialisation_name, stub_input_hash
)) ))
} else { } else {
PathBuf::from(format!("nixos-generation-{}.efi", generation)) PathBuf::from(format!(
"nixos-generation-{}-{}.efi",
generation, stub_input_hash
))
}; };
let stub_target = self.esp_paths.linux.join(stub_name); let stub_target = self.esp_paths.linux.join(stub_name);
self.gc_roots.extend([&stub_target]); self.gc_roots.extend([&stub_target]);

View File

@ -6,16 +6,18 @@
use std::ffi::OsStr; use std::ffi::OsStr;
use std::fs; use std::fs;
use std::io::Write; use std::io::Write;
use std::os::unix::prelude::MetadataExt; use std::os::unix::prelude::{MetadataExt, OsStrExt};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::Output; use std::process::Output;
use anyhow::{Context, Result}; use anyhow::{Context, Result};
use assert_cmd::Command; use assert_cmd::Command;
use base32ct::{Base32Unpadded, Encoding};
use rand::distributions::Alphanumeric; use rand::distributions::Alphanumeric;
use rand::{thread_rng, Rng}; use rand::{thread_rng, Rng};
use serde_json::json; use serde_json::json;
use sha2::{Digest, Sha256}; use sha2::{Digest, Sha256};
use tempfile::TempDir;
use lanzaboote_tool::architecture::Architecture; use lanzaboote_tool::architecture::Architecture;
use lzbt_systemd::architecture::SystemdArchitectureExt; use lzbt_systemd::architecture::SystemdArchitectureExt;
@ -237,3 +239,23 @@ pub fn verify_signature(path: &Path) -> Result<bool> {
pub fn count_files(path: &Path) -> Result<usize> { pub fn count_files(path: &Path) -> Result<usize> {
Ok(fs::read_dir(path)?.count()) Ok(fs::read_dir(path)?.count())
} }
pub fn image_path(esp: &TempDir, version: u64, toplevel: &Path) -> Result<PathBuf> {
let stub_inputs = [
// Generation numbers can be reused if the latest generation was deleted.
// To detect this, the stub path depends on the actual toplevel used.
("toplevel", toplevel.as_os_str().as_bytes()),
// If the key is rotated, the signed stubs must be re-generated.
// So we make their path depend on the public key used for signature.
(
"public_key",
&std::fs::read("tests/fixtures/uefi-keys/db.pem")?,
),
];
let stub_input_hash = Base32Unpadded::encode_string(&Sha256::digest(
serde_json::to_string(&stub_inputs).unwrap(),
));
Ok(esp.path().join(format!(
"EFI/Linux/nixos-generation-{version}-{stub_input_hash}.efi"
)))
}

View File

@ -1,8 +1,6 @@
use std::path::PathBuf;
use anyhow::Result; use anyhow::Result;
use base32ct::{Base32Unpadded, Encoding}; use base32ct::{Base32Unpadded, Encoding};
use tempfile::{tempdir, TempDir}; use tempfile::tempdir;
mod common; mod common;
@ -42,12 +40,13 @@ fn overwrite_unsigned_images() -> Result<()> {
let esp = tempdir()?; let esp = tempdir()?;
let tmpdir = tempdir()?; let tmpdir = tempdir()?;
let profiles = tempdir()?; let profiles = tempdir()?;
let toplevel = common::setup_toplevel(tmpdir.path())?;
let image1 = image_path(&esp, 1); let image1 = common::image_path(&esp, 1, &toplevel)?;
let image2 = image_path(&esp, 2); let image2 = common::image_path(&esp, 2, &toplevel)?;
let generation_link1 = common::setup_generation_link(tmpdir.path(), profiles.path(), 1)?; let generation_link1 = setup_generation_link_from_toplevel(&toplevel, profiles.path(), 1)?;
let generation_link2 = common::setup_generation_link(tmpdir.path(), profiles.path(), 2)?; let generation_link2 = setup_generation_link_from_toplevel(&toplevel, profiles.path(), 2)?;
let generation_links = vec![generation_link1, generation_link2]; let generation_links = vec![generation_link1, generation_link2];
let output1 = common::lanzaboote_install(0, esp.path(), generation_links.clone())?; let output1 = common::lanzaboote_install(0, esp.path(), generation_links.clone())?;
@ -66,6 +65,34 @@ fn overwrite_unsigned_images() -> Result<()> {
Ok(()) Ok(())
} }
#[test]
fn detect_generation_number_reuse() -> Result<()> {
let esp = tempdir()?;
let tmpdir = tempdir()?;
let profiles = tempdir()?;
let toplevel1 = common::setup_toplevel(tmpdir.path())?;
let toplevel2 = common::setup_toplevel(tmpdir.path())?;
let image1 = common::image_path(&esp, 1, &toplevel1)?;
// this deliberately gets the same number!
let image2 = common::image_path(&esp, 1, &toplevel2)?;
let generation_link1 = setup_generation_link_from_toplevel(&toplevel1, profiles.path(), 1)?;
let output1 = common::lanzaboote_install(0, esp.path(), vec![generation_link1])?;
assert!(output1.status.success());
assert!(image1.exists());
assert!(!image2.exists());
std::fs::remove_dir_all(profiles.path().join("system-1-link"))?;
let generation_link2 = setup_generation_link_from_toplevel(&toplevel2, profiles.path(), 1)?;
let output2 = common::lanzaboote_install(0, esp.path(), vec![generation_link2])?;
assert!(output2.status.success());
assert!(!image1.exists());
assert!(image2.exists());
Ok(())
}
#[test] #[test]
fn content_addressing_works() -> Result<()> { fn content_addressing_works() -> Result<()> {
let esp = tempdir()?; let esp = tempdir()?;
@ -94,8 +121,3 @@ fn content_addressing_works() -> Result<()> {
Ok(()) Ok(())
} }
fn image_path(esp: &TempDir, version: u64) -> PathBuf {
esp.path()
.join(format!("EFI/Linux/nixos-generation-{version}.efi"))
}

View File

@ -11,18 +11,16 @@ fn generate_expected_os_release() -> Result<()> {
let esp_mountpoint = tempdir()?; let esp_mountpoint = tempdir()?;
let tmpdir = tempdir()?; let tmpdir = tempdir()?;
let profiles = tempdir()?; let profiles = tempdir()?;
let toplevel = common::setup_toplevel(tmpdir.path())?;
let generation_link = common::setup_generation_link(tmpdir.path(), profiles.path(), 1) let generation_link =
common::setup_generation_link_from_toplevel(&toplevel, profiles.path(), 1)
.expect("Failed to setup generation link"); .expect("Failed to setup generation link");
let output0 = common::lanzaboote_install(0, esp_mountpoint.path(), vec![generation_link])?; let output0 = common::lanzaboote_install(0, esp_mountpoint.path(), vec![generation_link])?;
assert!(output0.status.success()); assert!(output0.status.success());
let stub_data = fs::read( let stub_data = fs::read(common::image_path(&esp_mountpoint, 1, &toplevel)?)?;
esp_mountpoint
.path()
.join("EFI/Linux/nixos-generation-1.efi"),
)?;
let os_release_section = pe_section(&stub_data, ".osrel") let os_release_section = pe_section(&stub_data, ".osrel")
.context("Failed to read .osrelease PE section.")? .context("Failed to read .osrelease PE section.")?
.to_owned(); .to_owned();