2022-11-24 04:19:30 -06:00
|
|
|
# Lanzaboote
|
2022-11-21 08:36:39 -06:00
|
|
|
|
2022-11-24 04:19:30 -06:00
|
|
|
![GitHub branch checks state](https://img.shields.io/github/checks-status/blitz/lanzaboote/master)
|
|
|
|
[![made-with-rust](https://img.shields.io/badge/Made%20with-Rust-1f425f.svg)](https://www.rust-lang.org/)
|
2022-11-24 04:21:17 -06:00
|
|
|
[![GitHub license](https://img.shields.io/github/license/blitz/lanzaboot.svg)](https://github.com/blitz/lanzaboote/blob/master/LICENSE)
|
2022-11-21 08:36:39 -06:00
|
|
|
|
2022-11-24 04:34:41 -06:00
|
|
|
🚧🚧🚧 **This is not working yet. Come back later.** 🚧🚧🚧
|
2022-11-21 08:36:39 -06:00
|
|
|
|
2022-11-24 04:19:30 -06:00
|
|
|
This repository contains experimental tooling for Secure Boot on
|
|
|
|
[NixOS](https://nixos.org/).
|
2022-11-21 09:02:20 -06:00
|
|
|
|
2022-11-24 04:34:41 -06:00
|
|
|
## High-Level Boot Flow
|
|
|
|
|
|
|
|
```mermaid
|
|
|
|
flowchart LR
|
|
|
|
systemd[systemd-boot]
|
|
|
|
lanzaboote[lanzaboote]
|
|
|
|
kernel[Linux Kernel]
|
|
|
|
|
|
|
|
systemd --> lanzaboote
|
|
|
|
lanzaboote --> kernel
|
|
|
|
```
|
|
|
|
|
2022-11-24 04:19:30 -06:00
|
|
|
## lanzatool
|
|
|
|
|
|
|
|
`lanzatool` is a Linux command line application that takes a
|
|
|
|
[bootspec](https://github.com/NixOS/rfcs/pull/125) document and
|
|
|
|
installs the boot files into the UEFI
|
|
|
|
[ESP](https://en.wikipedia.org/wiki/EFI_system_partition).
|
|
|
|
|
2022-11-24 04:34:41 -06:00
|
|
|
|
|
|
|
To make systemd-boot recognize a new boot target, `lanzatool` builds a
|
|
|
|
[UKI](https://wiki.archlinux.org/title/Unified_kernel_image) image. To
|
|
|
|
avoid having to embed kernel and initrd, we use a custom stub
|
|
|
|
`lanzaboote` (see below) that loads kernel and initrd from the ESP.
|
|
|
|
|
2022-11-24 04:19:30 -06:00
|
|
|
## lanzaboote
|
|
|
|
|
2022-11-24 04:34:41 -06:00
|
|
|
`lanzaboote` is the stub that `lanzatool` uses to form an UKI. It
|
|
|
|
loads a Linux kernel and initrd without breaking the Secure Boot chain
|
|
|
|
of trust. Instead of rolling our own crypto, `lanzaboote` re-uses the
|
|
|
|
signature verification that is built-in to UEFI.
|
|
|
|
|
|
|
|
## Relevant Nixpkgs Work
|
|
|
|
|
|
|
|
This project depends on upstream nixpkgs work:
|
|
|
|
|
|
|
|
- https://github.com/NixOS/nixpkgs/pull/191665
|
|
|
|
- https://github.com/DeterminateSystems/bootspec-secureboot/
|
|
|
|
- https://github.com/DeterminateSystems/bootspec
|
2022-11-24 04:19:30 -06:00
|
|
|
|
2022-11-24 04:34:41 -06:00
|
|
|
You can find everything integrated as PoC
|
|
|
|
[here](https://github.com/NixOS/nixpkgs/pull/202497).
|