From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752570AbdBCVOK (ORCPT ); Fri, 3 Feb 2017 16:14:10 -0500 Received: from mail.kernel.org ([198.145.29.136]:36672 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752331AbdBCVOJ (ORCPT ); Fri, 3 Feb 2017 16:14:09 -0500 From: "Luis R. Rodriguez" To: ebiederm@xmission.com, keescook@chromium.org, n.borisov.lkml@gmail.com, akpm@linux-foundation.org Cc: serge@hallyn.com, jack@suse.cz, linux-kernel@vger.kernel.org, "Luis R. Rodriguez" Subject: [PATCH] ucount: mark user_header with kmemleak_ignore() Date: Fri, 3 Feb 2017 13:14:04 -0800 Message-Id: <20170203211404.31458-1-mcgrof@kernel.org> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The user_header gets caught by kmemleak with the following splat as missing a free: unreferenced object 0xffff99667a733d80 (size 96): comm "swapper/0", pid 1, jiffies 4294892317 (age 62191.468s) hex dump (first 32 bytes): a0 b6 92 b4 ff ff ff ff 00 00 00 00 01 00 00 00 ................ 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ backtrace: [] kmemleak_alloc+0x4a/0xa0 [] __kmalloc+0x144/0x260 [] __register_sysctl_table+0x54/0x5e0 [] register_sysctl+0x1b/0x20 [] user_namespace_sysctl_init+0x17/0x34 [] do_one_initcall+0x52/0x1a0 [] kernel_init_freeable+0x173/0x200 [] kernel_init+0xe/0x100 [] ret_from_fork+0x2c/0x40 [] 0xffffffffffffffff The BUG_ON()s are intended to crash so no need to clean up after ourselves on error there. This is also a kernel/ subsys_init() we don't need a respective exit call here as this is never modular, so just white list it. Signed-off-by: Luis R. Rodriguez --- kernel/ucount.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel/ucount.c b/kernel/ucount.c index 68716403b261..8a11fc0cb459 100644 --- a/kernel/ucount.c +++ b/kernel/ucount.c @@ -231,11 +231,10 @@ static __init int user_namespace_sysctl_init(void) * properly. */ user_header = register_sysctl("user", empty); + kmemleak_ignore(user_header); BUG_ON(!user_header); BUG_ON(!setup_userns_sysctls(&init_user_ns)); #endif return 0; } subsys_initcall(user_namespace_sysctl_init); - - -- 2.11.0