From b686afa23e85321f9e376b2aeddddb6e70adc22b Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Wed, 6 Sep 2023 20:54:52 +0200 Subject: apparmor: Explicitly pass options we use while remounting root filesystem As a result of AppArmor commit d4b0fef10a4a ("parser: fix rule flag generation change_mount type rules"), we can't expect anymore to get permission to mount() / read-write, with MS_REC | MS_UNBINDABLE ("runbindable", in AppArmor terms), if we don't explicitly pass those flags as options. It used to work by mistake. Now, the reasonable expectation would be that we could just change the existing rule into: mount options=(rw, runbindable) "" -> /, ...but this now fails to load too, I think as a result of AppArmor commit 9d3f8c6cc05d ("parser: fix parsing of source as mount point for propagation type flags"). It works with 'rw' alone, but 'runbindable' is indeed a propagation type flag. Skip the source specification, it doesn't add anything meaningful to the rule anyway. Reported-by: Paul Holzinger Link: https://github.com/containers/podman/pull/19751 Signed-off-by: Stefano Brivio --- contrib/apparmor/abstractions/passt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/apparmor/abstractions/passt b/contrib/apparmor/abstractions/passt index a16eb6e..d778222 100644 --- a/contrib/apparmor/abstractions/passt +++ b/contrib/apparmor/abstractions/passt @@ -26,7 +26,7 @@ capability sys_ptrace, / r, # isolate_prefork(), isolation.c - mount "" -> "/", + mount options=(rw, runbindable) /, mount "" -> "/tmp/", pivot_root "/tmp/" -> "/tmp/", umount "/", -- cgit v1.2.3