xtask: Add more SBAT checks Check that the SBAT data parses correctly, and that the human-readable version matches the package version. BUG=b:306384741 TEST=cargo xtask check Change-Id: Ia5e0388ccbb4fec5bb2c12b9b6bda57aa0a3f7e9 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crdyboot/+/4974202 Commit-Queue: Nicholas Bishop <nicholasbishop@google.com> Tested-by: chromeos-cop-builder@chromeos-cop.iam.gserviceaccount.com <chromeos-cop-builder@chromeos-cop.iam.gserviceaccount.com> Reviewed-by: Ted Brandston <tbrandston@google.com> Tested-by: Nicholas Bishop <nicholasbishop@google.com>
Pronounced CUR-dee-boot.
Crdyboot is a UEFI bootloader for ChromeOS Flex. It is not yet in use.
Crdyboot acts as a bridge between UEFI firmware and the Chromebook style of booting. It uses vboot to select and validate an appropriate kernel partition, then launches that kernel using the Linux EFI stub.
The project is organized as a Rust workspace containing several packages:
vboot package is a thin wrapper around the C vboot library. It also exposes a DiskIo trait through which it can read and write blocks to a disk.libcrdy package is where most of the bootloader is implemented. It implements the DiskIo trait using the uefi crate, and uses the vboot package to load and verify a kernel. It then boots into that kernel using the EFI stub.crdyboot package provides the actual bootloader executable. It contains the embedded key used to verify the kernel data, the SBAT data used for revocation, and sets up logging and allocation. Then it uses libcrdy to load, verify, and run the kernel.xtask package contains a host executable that provides the various xtask commands shown below. It's like a fancy Makefile for running various dev and test operations.enroller subdirectory contains a small UEFI application that enrolls a test key in the PK, KEK, and db variables. This is used to set up the test VM, and can also be used on real hardware (see the “Testing on real hardware” section).Install Rust: https://rustup.rs
Install tools used for image signing and running in a VM:
sudo apt install clang curl efitools gdisk libssl-dev ovmf ovmf-ia32 \
pkg-config qemu-system-x86 sbsigntool swtpm
After installing qemu, add your user to the kvm group. You will need to log out and back in for this to take effect:
sudo adduser ${USER} kvm
Googlers: see go/crdyboot-internal for additional recommendations.
Before running any other commands in the repository, run this setup command:
cargo xtask setup [<disk-path>]
This will prepare a reven image to use with VM tests. By default a build of the public reven board is downloaded from a GS bucket. If you are a Googler, you can pass --reven-private to get a recent build of the private reven board. Alternatively, you can provide a file path to use a local image. The image should be a test image with verity enabled.
To check formatting, lint, test, build crdyboot, and install to the image:
cargo xtask check [--vm-tests]
The --vm-tests option enables slow tests that run under QEMU.
To just build crdyboot and install to the image (a quicker subset of check):
cargo xtask build
Then run it in QEMU:
cargo xtask qemu [--ia32] [--no-secure-boot] [--tpm1|--tpm2]
To test secure boot with real hardware you will need to enroll custom keys. Write workspace/enroller.bin to a USB, and write workspace/disk.bin to a second USB, e.g. using writedisk.
Boot the DUT and enter the boot setup. Find the secure boot settings and change it to setup mode. (The details will vary from one vendor to another.)
Plug in the enroller USB and reboot. Use the boot menu to select the USB and wait for it to complete.
Unplug the enroller USB and plug in the cloudready USB, then reboot. Use the boot menu to select the USB.
See the docs subdirectory.