You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike the others, this is not a standard option accepted by mount(8).
In fact SB_POSIXACL is an internal flag, and accepting MS_POSIXACL on the
mount(2) interface is possibly a bug.
The only filesystem that apparently wants to handle the "posixacl" option
is 9p, but it has special handling of that option besides setting
SB_POSIXACL.
runc/libcontainer/specconv/spec_linux.go
Line 69 in 32d7413
Currently, runc maps the
acl
mount option strings toMS_POSIXACL
, but this option doesn't seem used byutil-linux
: https://github.com/util-linux/util-linux/search?q=MS_POSIXACLSurprisingly,
MS_POSIXACL
isn't even referred by the kernel, except insecurity/apparmor/mount.c:audit_mnt_flags()
: https://elixir.bootlin.com/linux/v6.1.11/C/ident/MS_POSIXACLProbably the
acl
string should be just passed tomount(2)
viavoid *data
.The text was updated successfully, but these errors were encountered: