[1.1] rootfs: fix 'can we mount on top of /proc' check#4334
Merged
lifubang merged 1 commit intoopencontainers:release-1.1from Jul 5, 2024
Merged
[1.1] rootfs: fix 'can we mount on top of /proc' check#4334lifubang merged 1 commit intoopencontainers:release-1.1from
lifubang merged 1 commit intoopencontainers:release-1.1from
Conversation
3f9f656 to
c1877c8
Compare
Contributor
c1877c8 to
0318bb2
Compare
lifubang
reviewed
Jul 3, 2024
lifubang
reviewed
Jul 3, 2024
(This is a cherry-pick of cdff09a but modified so that changes like 8e8b136 and a60933b don't also need to be backported. Ideally we would backport the entire "remove all mount logic from nsexec" series, but that would be a bit too much.) Our previous test for whether we can mount on top of /proc incorrectly assumed that it would only be called with bind-mount sources. This meant that having a non bind-mount entry for a pseudo-filesystem (like overlayfs) with a dummy source set to /proc on the host would let you bypass the check, which could easily lead to security issues. In addition, the check should be applied more uniformly to all mount types, so fix that as well. And add some tests for some of the tricky cases to make sure we protect against them properly. Fixes: 331692b ("Only allow proc mount if it is procfs") Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
0318bb2 to
a0292ca
Compare
Member
Author
|
I re-added the |
lifubang
approved these changes
Jul 5, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
(Backport of a patch from #3985.)
(This is a cherry-pick of cdff09a but modified so that changes like 8e8b136 and a60933b don't also need to be backported. Ideally we would backport the entire "remove all mount logic from nsexec" series, but that would be a bit too much.)
Our previous test for whether we can mount on top of /proc incorrectly assumed that it would only be called with bind-mount sources. This meant that having a non bind-mount entry for a pseudo-filesystem (like overlayfs) with a dummy source set to /proc on the host would let you bypass the check, which could easily lead to security issues.
In addition, the check should be applied more uniformly to all mount types, so fix that as well. And add some tests for some of the tricky cases to make sure we protect against them properly.
Fixes: 331692b ("Only allow proc mount if it is procfs")
Signed-off-by: Aleksa Sarai cyphar@cyphar.com