]> git.baikalelectronics.ru Git - kernel.git/commit
ovl: Do not lose security.capability xattr over metadata file copy-up
authorVivek Goyal <vgoyal@redhat.com>
Wed, 30 Jan 2019 19:01:57 +0000 (14:01 -0500)
committerMiklos Szeredi <mszeredi@redhat.com>
Wed, 13 Feb 2019 10:14:46 +0000 (11:14 +0100)
commit7d5485579bf50ec4af0a688e2e50786dc3d79922
treeb2e1d4fbcb37495bea2aaa9ecf3ba8562382f208
parent7dfd598dd727a247c291b84b93892ad8991d9e38
ovl: Do not lose security.capability xattr over metadata file copy-up

If a file has been copied up metadata only, and later data is copied up,
upper loses any security.capability xattr it has (underlying filesystem
clears it as upon file write).

From a user's point of view, this is just a file copy-up and that should
not result in losing security.capability xattr.  Hence, before data copy
up, save security.capability xattr (if any) and restore it on upper after
data copy up is complete.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Fixes: a028a22d7731 ("ovl: A new xattr OVL_XATTR_METACOPY for file on upper")
Cc: <stable@vger.kernel.org> # v4.19+
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/overlayfs/copy_up.c
fs/overlayfs/overlayfs.h
fs/overlayfs/util.c