From: Jaihind Yadav Date: Tue, 17 Dec 2019 11:55:47 +0000 (+0530) Subject: selinux: ensure we cleanup the internal AVC counters on error in avc_update() X-Git-Tag: v5.4.22~191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=111749fba968225d0cb51cce7727c18276ce6c6f;p=platform%2Fkernel%2Flinux-rpi.git selinux: ensure we cleanup the internal AVC counters on error in avc_update() [ Upstream commit 030b995ad9ece9fa2d218af4429c1c78c2342096 ] In AVC update we don't call avc_node_kill() when avc_xperms_populate() fails, resulting in the avc->avc_cache.active_nodes counter having a false value. In last patch this changes was missed , so correcting it. Fixes: fa1aa143ac4a ("selinux: extended permissions for ioctls") Signed-off-by: Jaihind Yadav Signed-off-by: Ravi Kumar Siddojigari [PM: merge fuzz, minor description cleanup] Signed-off-by: Paul Moore Signed-off-by: Sasha Levin --- diff --git a/security/selinux/avc.c b/security/selinux/avc.c index 6646300..d18cb32 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c @@ -891,7 +891,7 @@ static int avc_update_node(struct selinux_avc *avc, if (orig->ae.xp_node) { rc = avc_xperms_populate(node, orig->ae.xp_node); if (rc) { - kmem_cache_free(avc_node_cachep, node); + avc_node_kill(avc, node); goto out_unlock; } }