Skip to content
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

Initial fs-verity support #1959

Merged
merged 1 commit into from
Jan 28, 2020

Conversation

cgwalters
Copy link
Member

@cgwalters cgwalters commented Oct 25, 2019

Using fs-verity is natural for OSTree because it's file-based,
as opposed to block based (like dm-verity). This only covers
files - not symlinks or directories. And we clearly need to
have integrity for the deployment directories at least.

More background on fs-verity:

So making this truly secure would need a lot more work. Nevertheless,
I think it's time to start experimenting with it. Among other things,
it does finally add an API that makes files immutable, which will
help against some accidental damage.

@cgwalters
Copy link
Member Author

cgwalters commented Oct 28, 2019

I think Android is basically going to continue using dm-verity for the base OS, and use fs-verity just for apps which come as single .zip files.

So they don't have the problem of verifying full filesystem trees.

I was thinking about this some more, and a rather gross hack might be to store all of our directories/symlinks as effectively tarballs in the real root (that are fs-verity protected), then on boot we unpack them into a tmpfs, and use overlayfs with the tmpfs and the underlying fs-verity files.

But clearly what we really want is an extension to fs-verity that lets us "seal" a directory and set of symlinks in it too.

@cgwalters
Copy link
Member Author

Continuing my half-baked ideation...

Maybe we can use a dual-partition dm-verity to hold the directories/symlinks, and an overlayfs pointing to the underlying real rootfs with fs-verity files?

But...what's bugging me here is that if an attacker gains CAP_SYS_ADMIN and the ability to write directly to the underlying block device, then on reboot, even though the files are fs-verity protected, all of the rest of the disk (starting from the root directory) isn't. And it's known that mounting malicious filesystems is unsafe. I wonder if the fs-verity developers (or potential Android/ChromeOS use of it) have considered this.

@cgwalters
Copy link
Member Author

cgwalters commented Oct 30, 2019

Also, one thing we can and should do is use fs-verity for /boot - this PR needs to do the same thing for /boot that it does for /ostree/repo/objects (at least when /boot is a separate FS). For Fedora CoreOS we could probably turn on ext4+verity for /boot by default even if we don't make the switch for /. That could at least help us prove out some of the secure/trusted boot bits combining with fs-verity even if we aren't doing it for the rest of userspace yet.

@cgwalters
Copy link
Member Author

OK a number of tweaks, biggest is that we now also do fsverity for files in /boot.

Also now:
Depends: https://gitlab.gnome.org/GNOME/libglnx/merge_requests/11

@cgwalters
Copy link
Member Author

I think the remaining files to cover are the config file (circular, need to write it then verity it), and the origin file.

@cgwalters
Copy link
Member Author

cgwalters commented Oct 31, 2019

Side note: I just confirmed that fs-verity is perfectly happy to run without any privileges (plain Unix user). This means that ostree's fsverity support would work just fine for flatpak user installs. One could also use fs-verity for random config files like ~/.bashrc.

We also should consider how this intersects with /etc of course - ext4 doesn't do reflinks, so we'll end up with un-veritied copies. With a theoretical XFS w/fsverity, we could rely on reflinks.

Hmm. Maybe now that overlayfs is pretty stable...we should go with adding a model where overlayfs is used for /etc with OSTree (ostree config set sysroot.overlayetc true) This would have a few benefits; it'd be more efficient on filesystems without reflinks, and it'd also let us rely on having the default config files be read with verity.

I'm excited about the potential of fs-verity!

@cgwalters
Copy link
Member Author

Lifted the WIP from this - it definitely works and does something useful today: makes files immutable. I particularly want to do this for FCOS for /boot to start since we don't have the readonly bind mount over /boot.

The question is; is that worth merging as is? I'm uncertain. I think it's quite likely we'll need a "sign this file" callback. And...looking at that, we have the big decision whether to import the existing C code or to execute it as a subprocess (or, try to get a library made out of it upstream) (Or, git submodule it).

And, none of the signing will really be worth much until we implement a full plan per above.

And, actually need support for shipping the signatures out of band too. That's going to be hard to do elegantly while retaining backwards compatibility. Bigger picture, if one can assume verity, then we don't need the "basic OSTree sha256" anymore...which argues for thinking of this more like a fully separate "mode" for OSTree with its own repository format...

@cgwalters
Copy link
Member Author

I updated this to disable even the "opportunistic" use of fs-verity (previously it'd only happen if you happened to mkfs.ext4 -O verity which isn't the default so extremely unlikely to do accidentally), but at least now it's totally off unless one sets the repo config flag to require it.

(That said also, we need to care for the case that /boot is of a different filesystem type)

@jlebon
Copy link
Member

jlebon commented Dec 11, 2019

OK, so confirm here, without the "measure" step, this is essentially a stronger version of chattr +i, right? And this patch also acts as a stepping stone towards when we do figure out integrity checking?

@cgwalters
Copy link
Member Author

OK, so confirm here, without the "measure" step, this is essentially a stronger version of chattr +i, right?

Stronger in some ways, but also weaker in others; e.g. it does allow unlink() and link() which we really want. It also does allow chmod u+s and chown foo:bar which we don't...

And this patch also acts as a stepping stone towards when we do figure out integrity checking?

I think a bottom line is this is useful as a starting point.

@cgwalters
Copy link
Member Author

/override f29-rpmostree

@openshift-ci-robot
Copy link
Collaborator

@cgwalters: Overrode contexts on behalf of cgwalters: f29-rpmostree

In response to this:

/override f29-rpmostree

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

src/libostree/ostree-repo-commit.c Outdated Show resolved Hide resolved
src/libostree/ostree-repo.c Outdated Show resolved Hide resolved
src/libostree/ostree-sysroot-deploy.c Show resolved Hide resolved
@cgwalters cgwalters force-pushed the ostree-verity branch 2 times, most recently from 7e10a8c to 8cefa5b Compare January 27, 2020 12:45
cgwalters added a commit to cgwalters/coreos-assembler that referenced this pull request Jan 27, 2020
if (fdatasync (tmp_dest.fd) < 0)
return glnx_throw_errno_prefix (error, "fdatasync");

if (!_ostree_tmpf_fsverity_core (&tmp_dest, NULL, error))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be _ostree_tmpf_fsverity so it respects the settings?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah...the problem is that /boot may be a different filesystem type. The repo is trying to cache the supported state for the repo. Messy...

I tweaked this so we don't enable verity for /boot if we're not using it for / - but currently if it's required by / we downgrade to "opportunistic" for /boot.

src/libostree/ostree-sysroot-deploy.c Show resolved Hide resolved
Using fs-verity is natural for OSTree because it's file-based,
as opposed to block based (like dm-verity).  This only covers
files - not symlinks or directories.  And we clearly need to
have integrity for the deployment directories at least.

Also, what we likely need is an API that supports signing files
as they're committed.

So making this truly secure would need a lot more work.  Nevertheless,
I think it's time to start experimenting with it.  Among other things,
it does *finally* add an API that makes files immutable, which will
help against some accidental damage.

This is basic enablement work that is being driven by
Fedora CoreOS; see also coreos/coreos-assembler#876
@cgwalters
Copy link
Member Author

To expand on this:

I was thinking about this some more, and a rather gross hack might be to store all of our directories/symlinks as effectively tarballs in the real root (that are fs-verity protected), then on boot we unpack them into a tmpfs, and use overlayfs with the tmpfs and the underlying fs-verity files.

It may help to only separate files with nontrivial size (maybe > 1k?). Also with this it may be simplest to have one big "verity pack file" for the initial deployment, then create small "delta pack files" for updates. Then at some point we do a "repack"?

Also related to signatures and such, in this model we'd need to verify the signature on the verity pack files as well as every "loose file", since we can't rely on overlayfs to do that for us.

OR we try to go with the in-kernel verity signature support.

jlebon pushed a commit to coreos/coreos-assembler that referenced this pull request Jan 28, 2020
Copy link
Member

@jlebon jlebon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One last comment, but LGTM as is too!

_OstreeFeatureSupport boot_verity = _OSTREE_FEATURE_NO;
if (repo->fs_verity_wanted != _OSTREE_FEATURE_NO)
boot_verity = _OSTREE_FEATURE_MAYBE;
if (!_ostree_tmpf_fsverity_core (&tmp_dest, boot_verity, NULL, error))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Won't this cause one ioctl each time even if it's not supported? Hmm, how about we add an optional fsverity_wanted parameter to _ostree_tmpf_fsverity that overrides the one from OstreeRepo? Then we could use it here too and get the automatic no-op.

Ohh, but right the kernel might support it, but not the filesystem on /boot. Hmm, so probably instead we should have a boot_fsverity in the OstreeSysroot object? But ehhh, this is good as is too. The number of files we install in /boot pales in comparison to / so it's a small optimization we could do later.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, an extra syscall or two for this doesn't matter much, but I try to keep the total small since I sometimes just resort to strace -f - we have a lot more objects than kernels.

@jlebon
Copy link
Member

jlebon commented Jan 28, 2020

/lgtm

@openshift-ci-robot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: cgwalters, jlebon

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-robot openshift-merge-robot merged commit 96fb1de into ostreedev:master Jan 28, 2020
@cgwalters cgwalters mentioned this pull request Jan 29, 2020
cgwalters added a commit to cgwalters/ostree that referenced this pull request Jan 10, 2021
At the time we added fsverity code to ostree, fsverity was
just a CLI tool; since then it has
gained a C shared library which wraps all the signature
bits and the enablement `ioctl()` conveniently.

This makes it much easier for us to support signatures, so
do so.  Note that at this time, because ostree doesn't define
a mechanism to transport fsverity signatures across repositories,
this is mostly only useful for locally-generated signatures.

The idea however is this is a starting point from which we can
build more support, including signature transport, remote keys,
etc.

In order to simplify things, drop support for "opportunistic"
use of fsverity.  In practice we expect people using this
to set it up fully, or not at all.  The "read only files"
aspect *is* useful, but complicated the code too much relative
to its benefit.

Also drop support for using fsverity for `/boot` for now; in
practice most things there are read by the bootloader,
which doesn't know about fsverity.  Instead those should
be covered by e.g. Secure Boot.  This ensures that
we only have one high level API `_ostree_tmpf_fsverity()`
that is invoked from the core commit path.

xref https://lwn.net/Articles/842002
xref ostreedev#1959
xref coreos/rpm-ostree#1883
cgwalters added a commit to cgwalters/ostree that referenced this pull request Jan 10, 2021
At the time we added fsverity code to ostree, fsverity was
just a CLI tool; since then it has
gained a C shared library which wraps all the signature
bits and the enablement `ioctl()` conveniently.

This makes it much easier for us to support signatures, so
do so.  Note that at this time, because ostree doesn't define
a mechanism to transport fsverity signatures across repositories,
this is mostly only useful for locally-generated signatures.

The idea however is this is a starting point from which we can
build more support, including signature transport, remote keys,
etc.

In order to simplify things, drop support for "opportunistic"
use of fsverity.  In practice we expect people using this
to set it up fully, or not at all.  The "read only files"
aspect *is* useful, but complicated the code too much relative
to its benefit.

Also drop support for using fsverity for `/boot` for now; in
practice most things there are read by the bootloader,
which doesn't know about fsverity.  Instead those should
be covered by e.g. Secure Boot.  This ensures that
we only have one high level API `_ostree_tmpf_fsverity()`
that is invoked from the core commit path.

xref https://lwn.net/Articles/842002
xref ostreedev#1959
xref coreos/rpm-ostree#1883
cgwalters added a commit to cgwalters/ostree that referenced this pull request Jan 16, 2021
At the time we added fsverity code to ostree, fsverity was
just a CLI tool; since then it has
gained a C shared library which wraps all the signature
bits and the enablement `ioctl()` conveniently.

This makes it much easier for us to support signatures, so
do so.  Note that at this time, because ostree doesn't define
a mechanism to transport fsverity signatures across repositories,
this is mostly only useful for locally-generated signatures.

The idea however is this is a starting point from which we can
build more support, including signature transport, remote keys,
etc.

In order to simplify things, drop support for "opportunistic"
use of fsverity.  In practice we expect people using this
to set it up fully, or not at all.  The "read only files"
aspect *is* useful, but complicated the code too much relative
to its benefit.

Also drop support for using fsverity for `/boot` for now; in
practice most things there are read by the bootloader,
which doesn't know about fsverity.  Instead those should
be covered by e.g. Secure Boot.  This ensures that
we only have one high level API `_ostree_tmpf_fsverity()`
that is invoked from the core commit path.

xref https://lwn.net/Articles/842002
xref ostreedev#1959
xref coreos/rpm-ostree#1883
cgwalters added a commit to cgwalters/ostree that referenced this pull request Jan 17, 2021
At the time we added fsverity code to ostree, fsverity was
just a CLI tool; since then it has
gained a C shared library which wraps all the signature
bits and the enablement `ioctl()` conveniently.

This makes it much easier for us to support signatures, so
do so.  Note that at this time, because ostree doesn't define
a mechanism to transport fsverity signatures across repositories,
this is mostly only useful for locally-generated signatures.

The idea however is this is a starting point from which we can
build more support, including signature transport, remote keys,
etc.

In order to simplify things, drop support for "opportunistic"
use of fsverity.  In practice we expect people using this
to set it up fully, or not at all.  The "read only files"
aspect *is* useful, but complicated the code too much relative
to its benefit.

Also drop support for using fsverity for `/boot` for now; in
practice most things there are read by the bootloader,
which doesn't know about fsverity.  Instead those should
be covered by e.g. Secure Boot.  This ensures that
we only have one high level API `_ostree_tmpf_fsverity()`
that is invoked from the core commit path.

xref https://lwn.net/Articles/842002
xref ostreedev#1959
xref coreos/rpm-ostree#1883
cgwalters added a commit to cgwalters/ostree that referenced this pull request Jan 24, 2021
At the time we added fsverity code to ostree, fsverity was
just a CLI tool; since then it has
gained a C shared library which wraps all the signature
bits and the enablement `ioctl()` conveniently.

This makes it much easier for us to support signatures, so
do so.  Note that at this time, because ostree doesn't define
a mechanism to transport fsverity signatures across repositories,
this is mostly only useful for locally-generated signatures.

The idea however is this is a starting point from which we can
build more support, including signature transport, remote keys,
etc.

In order to simplify things, drop support for "opportunistic"
use of fsverity.  In practice we expect people using this
to set it up fully, or not at all.  The "read only files"
aspect *is* useful, but complicated the code too much relative
to its benefit.

Also drop support for using fsverity for `/boot` for now; in
practice most things there are read by the bootloader,
which doesn't know about fsverity.  Instead those should
be covered by e.g. Secure Boot.  This ensures that
we only have one high level API `_ostree_tmpf_fsverity()`
that is invoked from the core commit path.

xref https://lwn.net/Articles/842002
xref ostreedev#1959
xref coreos/rpm-ostree#1883
cgwalters added a commit to cgwalters/ostree that referenced this pull request Jan 25, 2021
At the time we added fsverity code to ostree, fsverity was
just a CLI tool; since then it has
gained a C shared library which wraps all the signature
bits and the enablement `ioctl()` conveniently.

This makes it much easier for us to support signatures, so
do so.  Note that at this time, because ostree doesn't define
a mechanism to transport fsverity signatures across repositories,
this is mostly only useful for locally-generated signatures.

The idea however is this is a starting point from which we can
build more support, including signature transport, remote keys,
etc.

In order to simplify things, drop support for "opportunistic"
use of fsverity.  In practice we expect people using this
to set it up fully, or not at all.  The "read only files"
aspect *is* useful, but complicated the code too much relative
to its benefit.

Also drop support for using fsverity for `/boot` for now; in
practice most things there are read by the bootloader,
which doesn't know about fsverity.  Instead those should
be covered by e.g. Secure Boot.  This ensures that
we only have one high level API `_ostree_tmpf_fsverity()`
that is invoked from the core commit path.

xref https://lwn.net/Articles/842002
xref ostreedev#1959
xref coreos/rpm-ostree#1883
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants