Skip to content

Commit 4c04c6b

Browse files
sjp38akpm00
authored andcommitted
mm/damon/stat: deallocate damon_call() failure leaking damon_ctx
damon_stat_start() always allocates the module's damon_ctx object (damon_stat_context). Meanwhile, if damon_call() in the function fails, the damon_ctx object is not deallocated. Hence, if the damon_call() is failed, and the user writes Y to “enabled” again, the previously allocated damon_ctx object is leaked. This cannot simply be fixed by deallocating the damon_ctx object when damon_call() fails. That's because damon_call() failure doesn't guarantee the kdamond main function, which accesses the damon_ctx object, is completely finished. In other words, if damon_stat_start() deallocates the damon_ctx object after damon_call() failure, the not-yet-terminated kdamond could access the freed memory (use-after-free). Fix the leak while avoiding the use-after-free by keeping returning damon_stat_start() without deallocating the damon_ctx object after damon_call() failure, but deallocating it when the function is invoked again and the kdamond is completely terminated. If the kdamond is not yet terminated, simply return -EAGAIN, as the kdamond will soon be terminated. The issue was discovered [1] by sashiko. Link: https://lkml.kernel.org/r/[email protected] Link: https://lore.kernel.org/[email protected] [1] Fixes: 405f619 ("mm/damon/stat: use damon_call() repeat mode instead of damon_callback") Signed-off-by: SeongJae Park <[email protected]> Cc: <[email protected]> # 6.17.x Signed-off-by: Andrew Morton <[email protected]>
1 parent 894f99e commit 4c04c6b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

mm/damon/stat.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,12 @@ static int damon_stat_start(void)
245245
{
246246
int err;
247247

248+
if (damon_stat_context) {
249+
if (damon_is_running(damon_stat_context))
250+
return -EAGAIN;
251+
damon_destroy_ctx(damon_stat_context);
252+
}
253+
248254
damon_stat_context = damon_stat_build_ctx();
249255
if (!damon_stat_context)
250256
return -ENOMEM;
@@ -261,6 +267,7 @@ static void damon_stat_stop(void)
261267
{
262268
damon_stop(&damon_stat_context, 1);
263269
damon_destroy_ctx(damon_stat_context);
270+
damon_stat_context = NULL;
264271
}
265272

266273
static int damon_stat_enabled_store(

0 commit comments

Comments
 (0)