-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ex-integrity.composefs: Tracking issue #2867
Comments
About the composefs file format stability. The plan is to guarantee stability in general, and there is way to change it by specifying a version when you generate the file. However, I don't want to give any stability guarantees until the overlay xattr changes has landed in the upstream kernel, because only then do we know they will not change. |
Ok, I ran into a snag with this approach: When doing an update, the new deploy is written, and when we enable fs-verity on it, with the signature, fs-verity fails. The reason is that the new signature is signed with the new certificate and the public key is not in the kernel keyring at the time of deploy. We have a similar issue at image building time, where we would need to load the public key into the keyring of the host (i.e. build) machine. It doesn't feel right to load any keys like this into the keyring at any time other then boot (and the keyrings are bound to be sealed anyway). So, I think we need to delay the application of the signature to the first boot, as we can then guarantee that the right keys are loaded. |
This issue will be discussed this Friday at 9:00am EST in https://meet.jit.si/moderated/2e9be89e0e9ee06647b4719784578a6251f72eec9a07829bc9212e57c4883816 |
I wrote down some random ramblings about the Phase 3 approach to kickstart Basic assumptions:
Points that needs consideration:
|
Looks like this sentence is cut before the end (from the first comment) |
How do we know that we are in fallback mode? |
This is done by ostree & rpm-ostree in Fedora CoreOS for example. |
Isn't it possible to validate fs-verity signatures from userspace with requiring the key to be loaded in the kernel? |
+1 from me for this approach in general. Thanks for writing it up! |
Note that in some cases (direct UEFI boot, with or without systemd-boot, with UKIs), there won't be BLS configs or they won't be used. #2753 (comment) as an alternative proposal to let the initrd figure out which entry was booted and which ostree deployment should be used by storing the ostree deployment hash in the filename of the UKI and then reading it from the EFI variables in the initrd. |
The way fs-verity signatures work right now is that they are verified by the kernel automatically when you open the file. If we had a standalone signature file paired with the non-signed composefs file we could do the validation in userspace like this. But if the composefs file was signed we can't even look at it until we've loaded the right key into the kernel. |
Was the meeting recorded? I wanted to join but accidentally overslept. |
Sorry, it wasn't. Probably should have. We decided to make this a recurring meeting, so there will be another one on Friday June 16 at the same time (9:30am EST). I may also argue at some point that this should be a composefs meeting and not an ostree meeting and we'd do it alongside or in the github.com/containers context. |
So, there is a keyctl_pkey_verify() syscall: |
This is prep for supporting composefs, where the physical root is distinct from the deployment root. Specifically for the LUKS case, we can find `/etc/crypttab` only in the deployment root. Otherwise, we suffix the passed path (usually `/sysroot`) that was mounted in the initramfs with `/sysroot` to find the physical root. xref ostreedev/ostree#2867
This is prep for supporting composefs, where the physical root is distinct from the deployment root. Specifically for the LUKS case, we can find `/etc/crypttab` only in the deployment root. Otherwise, we suffix the passed path (usually `/sysroot`) that was mounted in the initramfs with `/sysroot` to find the physical root. xref ostreedev/ostree#2867
This is to enable ostree+composefs: ostreedev/ostree#2867 When we care about the *physical* backing filesystem, we need to look at /sysroot/sysroot (which in the real root is `/sysroot`) because now `/sysroot` (aka `/` in the real root) is a composefs (really an `overlayfs` with a transient loop-mounted erofs), which is distinct from the physical root. Co-authored-by: Colin Walters <[email protected]>
This pairs with ostreedev/ostree#2640 It's all off by default (to state the obvious). But one can do e.g.: ``` $ cat >> src/config/image.yaml << EOF rootfs: ext4verity composefs: unsigned EOF ``` You can also try out `composefs: signed` and also do: ``` $ mkdir -p secrets $ openssl req -newkey rsa:4096 -nodes -keyout secrets/root-composefs-key.pem -x509 -out secrets/root-composefs-cert.pem ``` (But this is not *yet* a focus) More in ostreedev/ostree#2867
Is there an .ics file, etc. for this meeting so I can add to my calendar? |
100%, that is a better design choice overall but wont that be some time away for most products? IMO is possible that some systems might want to chose a more conservative approach when it comes to security and completely shutdown no matter what any other process might be running: I mean, the system is compromised already....and then before kernel reboot/shutdown, something could be logged (maybe attach some form of kernel notifier) so that persistent storage (RPMB?) can be updated to flag the situation during reboot... I am thinking that perhaps a router would fit in that sort of product but I dont know for sure |
I think you will have a hard time selling it upstream. |
yes I fully agree as well: but I think it is the sort of patch worth carrying off-tree |
Well, that is up to whoever wants to carry it. I'm not very interested in that kind of thing though. |
Hey, I'm wondering what's the current state of file verification? It's a bit hard to process all relevant threads as a project outsider. In particular I'm trying to figure out whether IMA is working or not (#3240), or is it supposed to be replaced with composefs? |
Most engineering effort is on composefs/erofs/fs-verity right now |
one note, if using an old systemd (ie, 250 (250.5+) with systemd-boot and ostree+composefs, you might need this systemd patch to find out the boot/ EFI partition:
otherwise boot will not be mounted |
@ldts Hmm, yes this relates to containers/composefs#280 as well as #3193 |
the gpt generator on systemd-boot 250 looks for the block device (expecting it contains the boot partition to mount besides the rootfs partition) using "/" (which with composefs is actually the overlay). So switching it to sysroot seems a better choice when using ostree. I hit this the other day so this is why I thought it would be worth sharing it here. without it, the system would still boot, but |
what about adding debugfs/sysfs counters on those errors? |
I'll propose something upstream (unless someone beats me to it) |
@cgwalters are there any performance tests being run comparing ostree vs ostree+composefs+fsverity? I am simply running:
resulting in:
and on
resulting in
I still need to check what this test is doing but I was wondering if there are any performance tests that I could use before we start deploying to embedded devices. |
[apologies for the removal of previous threads but I am just learning about the tool ...so was commenting in case anyone could steer/chip in] With something like this (10 minutes random read buffered workload) I persistently measure ~4% performance degradation on CFS reads. Does this seem correct?
|
@ldts I haven't measured or anything but a 4% degradation seems reasonable with fs-verity on as it has to verify bytes as it reads. What would be even more interesting would be, ext4 vs composefs with fs-verity on vs composefs with fs-verity off. I expect some Desktop users would prefer fs-verity off for example so they can make some local atomic changes and maybe care less about local signatures (I dunno up for debate) and maybe don't care about fs-verity. But in IoT or Automotive or somewhere like that it would make more sense to have fs-verity on. With fs-verity off, I would expect composefs to be faster than ext4 as it is erofs backed, so it would be interesting to see that. Maybe these things belong here also: |
@ericcurtin ok I'll measure fs-verity off as well. makes sense. thanks for the info.! |
Note that EROFS can have some impacts on metadata access only since ostree keeps data in the underlay filesystem. If your fio workload mainly measures full-data rand/seq read access it will have minor impacts tho. |
sorry I mispoke earlier about the 4% loss (my bad, wasnt measuring the right filesystem since fsverity was enabled everywhere); I am still doing some benchmarking (just qemu x86_64 based) but what I see with randomized reads using a buffered syncrhonous API for the tests on a full system install: kernel: command uses fio 3.30:
Test
I will stop here and comment further once all the benchmarking is done (I felt it was best if I corrected my earlier comment) |
um, while testing I noticed that I cant enable image signatures without also enabling fsverity on all the files in the rootfs. Is this expected? |
@ldts makes sense to me, fs-verity is what checks the signatures. Doesn't seem very useful to have signatures without fs-verity. |
Arent we talking about two different things? the fs-verity kernel layer just checks any file measurements if enabled -and supported- in the filesystem. In my use case - userspace signature validation- the public key is not loaded in the kernel key ring but just used by ostree-prepare-root to validate the composefs image signature. Other than that, I dont see why fs-verity needs to depend on it? to me it seems like a bug against usespace signature validation- an assumption that the kernel keyring must contain the key. |
said differently, why composefs image signature with fs-verity rootfs integrity is not supported - is it intentional or an implementation issue? The current release only supports composefs image signature with fs-verity rootfs integrity&authentication |
I see what you mean now, yeah I guess both could be supported individually. |
also, full filesystem integrity/authentication is amazing, no doubts about it. But perhaps many embedded devices wont be able to afford it - the performance drop in read-bandwidth testing can be too noticeable. So (an extension/feature?) maybe fs-verity could be allowed to be enabled on some of the deploy folders instead of requiring it on all of them? which is what I was trying to test when I noticed it wouldn't work. [I havent tested this patch yet, maybe it makes a good enough difference] Incidentanlly on imx8mp we are seeing a 13% improvement in read bandwidth performance tests by using ostree with CFS (without fs-verity) over EXT4. So really neat. I feel I am polluting this thread - maybe I should open a performance evaluation issue? |
The composefs libostree integration has been supported for a while now and is actively in use in various ostree/bootc-based systems. Let's turn it on by default. This has no effect if composefs support is not compiled in. Note also that this does not change the default value of the `composefs.enabled` tristate to `true`. The default is still `maybe`, but the deploy API will now also create composefs images for `maybe`. The reason for doing it this way is so that systems upgrading from old libostree versions (which may either not have composefs support or may have composefs-related bugs) will still be able to upgrade and not trip `ostree-prepare-root` in the new deployment (which allows missing composefs images for `maybe`). We may in the future change the default value to `true`. See also: ostreedev#2867
The composefs libostree integration has been supported for a while now and is actively in use in various ostree/bootc-based systems. Let's turn it on by default. This has no effect if composefs support is not compiled in. Note also that this does not change the default value of the `composefs.enabled` tristate to `true`. The default is still `maybe`, but the deploy API will now also create composefs images for `maybe`. The reason for doing it this way is so that systems upgrading from old libostree versions (which may either not have composefs support or may have composefs-related bugs) will still be able to upgrade and not trip `ostree-prepare-root` in the new deployment (which allows missing composefs images for `maybe`). We may in the future change the default value to `true`. See also: ostreedev#2867
The composefs libostree integration has been supported for a while now and is actively in use in various ostree/bootc-based systems. Let's turn it on by default. This has no effect if composefs support is not compiled in. This patch does two things: 1. It changes the default value for the `composefs.enabled` tristate to `true`. 2. It changes the deploy API to also create composefs images if the tristate is `maybe`. The reason for doing the latter is so that systems upgrading from old libostree versions (which may either not have composefs support or may have composefs-related bugs) will still be able to upgrade and not trip `ostree-prepare-root` in the new deployment (which allows missing composefs images for `maybe`). While we're here, fix the deploy logic to hard error out if composefs is requested but not compiled in, matching `ostree-prepare-root`. See also: ostreedev#2867
The composefs libostree integration has been supported for a while now and is actively in use in various ostree/bootc-based systems. Let's turn it on by default. This has no effect if composefs support is not compiled in. Note also that this does not change the default value of the `composefs.enabled` tristate to `true`. The default is still `maybe`, but the deploy API will now also create composefs images for `maybe`. The reason for doing it this way is so that systems upgrading from old libostree versions (which may either not have composefs support or may have composefs-related bugs) will still be able to upgrade and not trip `ostree-prepare-root` in the new deployment (which allows missing composefs images for `maybe`). We may in the future change the default value to `true`. See also: ostreedev#2867
composefs/ostree (and beyond)
Background
A key design goal of ostree at its creation was to not require any new functionality in the Linux kernel. The baseline mechanisms of hard links and read-only bind mounts suffice to manage views of read-only filesystem trees.
However, for Docker and then podman,
overlayfs
was created to more efficiently support copy-on-write semantics - also crucially, overlayfs is a layered filesystem; it can work with any underlying (modern) Linux filesystem as a backend.More recently, composefs was created which builds on overlayfs with more integrity features. This tracking issue is for the integration of composefs and ostree.
System integrity
ostree does not provide significant support for truly immutable system state; a simple
mount -o remount,rw /usr
will allow direct persistent modification of the underlying files.There is
ostree fsck
, but this is inefficient and manual, and further still today does not cover the checked-out deployment roots (so e.g. newly added binaries in the deployment root aren't found).Accidental damage protection
It is important to ostree to support "user owns machine" scenarios, where the user is root on their own computer and must have the ability to make persistent changes.
But it's still useful to have stronger protection against accidental damage. Due to the way composefs works using fs-verity, a simple
mount -o remount,rw
can no longer silently modify files. First, the mountedcomposefs
is always read-only; there is no write support in composefs. Access to the distinct underlying persistent root filesystem can be more strongly separated and isolated.Support for "sealed" systems
It's however also desirable to support a scenario where an organization wants to produce computing devices that are "sealed" to run only code produced (or signed) by that organization. These devices should not support persistent unsigned code.
ostree does not have strong support for this model today, and composefs should fix it.
Phase 0: Basic integration (experimental)
In this phase, we will land an outstanding pull request which adds basic integration that enables booting a system using composefs as a root filesystem. In this phase, a composefs image is dynamically created on the client using the ostree metadata.
This has already led us to multiple systems integration issues. So far, all tractable.
A good milestone to mark completion of this phase is landing a CI configuration to ostree which builds and deploys a system using composefs, and verifies it can be upgraded.
In this phase, there is no direct claimed support for "sealed" systems (i.e. files are not necessarily signed).
Phase 1: Basic rootfs sealing (experimental)
In this phase, support for signatures covering the composefs is added. A key question to determine is when the composefs file format is stable. Because the PR up until this point defaults to "re-synthesizing" the composefs on the client, the client must reproduce exactly what was generated server side and signed.
Phase 2: Secure Boot chaining (experimental)
This phase will document how to create a complete system using Secure Boot which chains to a root filesystem signature using composefs.
This may also depend on #2753 and #1951
Here is a sketch for how we can support trusted boot using composefs and fs-verity signatures.
During build:
/etc/pki/fsverity/cfs.pub
)--install /etc/pki/fsverity/cfs.pub
to dracut, which will copy the public key into the initrd.ostree=latest
argument, because at this point we don't know the final deployment id. See also discussion in Add ostree=aboot for signed Android Boot Images #2844ostree commit
) and generate a composefs image file based on the rootdir digest. We sign this file with the private key and store the signature as extra metadata in the commit object.During install:
ostree=...
arg.During boot:
/ostree/deploy/fedora-coreos/deploy/443ae0cd86a7dd4c6f5486a2283471b3c8f76fc5dcc4766cf935faa24a9e3d34.0
). (Note at this point that we can't trust either the BLS file or the deploy dir.)LCFS_MOUNT_FLAGS_REQUIRE_SIGNATURE
flag. This ensures that the file to be mounted has a signature, and thus can only be read if the matching public key is loaded in the keyring.Beyond
At this point, we should have gained significant experience with the system. We will determine when to mark this as officially stabilized after this.
Phase 3: "Native composefs"
Instead of "ostree using composefs", this proposes to flip things around, such that more code lives underneath the "composefs" project. A simple strawman proposal here is that we have the equivalent of
ostree-prepare-root.service
actually becomposefs-prepare-root.service
and live in github.com/containers/composefs.Related issues:
Phase 4: Unified container and host systems
This phase builds on the native composefs for hosts and ensures that containers (e.g. podman) share backing storage with the host system and as much code as possible.
The text was updated successfully, but these errors were encountered: