From: Roman Kubiak Date: Mon, 5 Oct 2015 10:27:16 +0000 (+0200) Subject: Smack: pipefs fix in smack_d_instantiate X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8da4aba5bf9869f58d2a6bb30daaf54b2fa72569;p=linux-beck.git Smack: pipefs fix in smack_d_instantiate This fix writes the task label when smack_d_instantiate is called, before the label of the superblock was written on the pipe's inode. Signed-off-by: Roman Kubiak Acked-by: Casey Schaufler --- diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 2c0579d0da20..c2d66ca1127a 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -3354,6 +3354,9 @@ static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode) */ isp->smk_inode = smk_of_current(); break; + case PIPEFS_MAGIC: + isp->smk_inode = smk_of_current(); + break; default: isp->smk_inode = sbsp->smk_root; break;