From: Seung-Woo Kim Date: Fri, 17 Apr 2015 06:25:04 +0000 (+0900) Subject: BACKPORT: Smack: ignore private inode for smack_file_receive X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c796fe225f8eaebd4a37efaf8f72cd6254ac9b7b;p=platform%2Fkernel%2Flinux-stable.git BACKPORT: Smack: ignore private inode for smack_file_receive The dmabuf fd can be shared between processes via unix domain socket. The file of dmabuf fd is came from anon_inode. The inode has no set and get xattr operations, so it can not be shared between processes with smack. This patch fixes just to ignore private inode including anon_inode for smack_file_receive. Signed-off-by: Seung-Woo Kim (cherry-picked from upstream 9777582e8d604f69ce3a93805065e451487e26b4) --- diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 72a10efd7eb3..7ce602d5357c 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -1677,6 +1677,9 @@ static int smack_file_receive(struct file *file) struct smk_audit_info ad; struct inode *inode = file->f_path.dentry->d_inode; + if (unlikely(IS_PRIVATE(inode))) + return 0; + smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH); smk_ad_setfield_u_fs_path(&ad, file->f_path); /*