]> git.karo-electronics.de Git - karo-tx-linux.git/commit
security,overlayfs: Provide security hook for copy up of xattrs for overlay file
authorVivek Goyal <vgoyal@redhat.com>
Wed, 13 Jul 2016 14:44:49 +0000 (10:44 -0400)
committerPaul Moore <paul@paul-moore.com>
Tue, 9 Aug 2016 00:42:13 +0000 (20:42 -0400)
commit121ab822ef21914adac2fa3730efeeb8fd762473
tree7fd5f6947837b361c249ec976af17bee10b22a2e
parent56909eb3f559103196ecbf2c08c923e0804980fb
security,overlayfs: Provide security hook for copy up of xattrs for overlay file

Provide a security hook which is called when xattrs of a file are being
copied up. This hook is called once for each xattr and LSM can return
0 if the security module wants the xattr to be copied up, 1 if the
security module wants the xattr to be discarded on the copy, -EOPNOTSUPP
if the security module does not handle/manage the xattr, or a -errno
upon an error.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
[PM: whitespace cleanup for checkpatch.pl]
Signed-off-by: Paul Moore <paul@paul-moore.com>
fs/overlayfs/copy_up.c
include/linux/lsm_hooks.h
include/linux/security.h
security/security.c