[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20201204102206.20237-1-qiang.zhang@windriver.com>
Date: Fri, 4 Dec 2020 18:22:06 +0800
From: qiang.zhang@...driver.com
To: aryabinin@...tuozzo.com, dvyukov@...gle.com
Cc: akpm@...ux-foundation.org, andreyknvl@...gle.com, qcai@...hat.com,
kuan-ying.lee@...iatek.com, linux-mm@...ck.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] kasan: fix slab double free when cpu-hotplug
From: Zqiang <qiang.zhang@...driver.com>
When a CPU offline, the per-cpu quarantine's offline be set true,
after this, if the quarantine_put be called in this CPU, the objects
will be free and return false, free objects doesn't to be done, due
to return false, the slab memory manager will free this objects.
Fixes: 41ab1aae781f ("kasan: fix object remaining in offline per-cpu quarantine")
Signed-off-by: Zqiang <qiang.zhang@...driver.com>
---
mm/kasan/quarantine.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/mm/kasan/quarantine.c b/mm/kasan/quarantine.c
index d98b516f372f..55783125a767 100644
--- a/mm/kasan/quarantine.c
+++ b/mm/kasan/quarantine.c
@@ -194,7 +194,6 @@ bool quarantine_put(struct kmem_cache *cache, void *object)
q = this_cpu_ptr(&cpu_quarantine);
if (q->offline) {
- qlink_free(&meta->quarantine_link, cache);
local_irq_restore(flags);
return false;
}
--
2.17.1
Powered by blists - more mailing lists