SMACK: Fix handling value==NULL in post setxattr 94/31094/1
authorJosé Bollo <jose.bollo@open.eurogiciel.org>
Thu, 3 Apr 2014 11:48:41 +0000 (13:48 +0200)
committerZbigniew Jasinski <z.jasinski@samsung.com>
Fri, 28 Nov 2014 09:36:12 +0000 (10:36 +0100)
commitbd8c67a1251f89d5b01bf1f3d46d729ccb122d6e
tree098a502d95c78be8819a6e91b9ae5658a219a22d
parent5de50a88ed22caa238e3f2013c107c22d5308177
SMACK: Fix handling value==NULL in post setxattr

The function `smack_inode_post_setxattr` is called each
time that a setxattr is done, for any value of name.
The kernel allow to put value==NULL when size==0
to set an empty attribute value. The systematic
call to smk_import_entry was causing the dereference
of a NULL pointer hence a KERNEL PANIC!

The problem can be produced easily by issuing the
command `setfattr -n user.data file` under bash prompt
when SMACK is active.

Moving the call to smk_import_entry as proposed by this
patch is correcting the behaviour because the function
smack_inode_post_setxattr is called for the SMACK's
attributes only if the function smack_inode_setxattr validated
the value and its size (what will not be the case when size==0).

It also has a benefical effect to not fill the smack hash
with garbage values coming from any extended attribute
write.

Change-Id: Iaf0039c2be9bccb6cee11c24a3b44d209101fe47
Signed-off-by: José Bollo <jose.bollo@open.eurogiciel.org>
security/smack/smack_lsm.c