All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "SJ Park" <sj@kernel.org>
Cc: damon@lists.linux.dev
Subject: Re: [PATCH 4/8] mm/damon/reclaim: remove duplicated min_region_sz power of 2 check
Date: Sun, 05 Jul 2026 16:12:09 +0000	[thread overview]
Message-ID: <20260705161209.E286A1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260705155600.96555-5-sj@kernel.org>

Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] State Corruption on Error Path: invalid `addr_unit` permanently corrupts global monitoring region parameters.
- [Medium] API Contract Violation: `ALIGN` macros are invoked with non-power-of-two inputs, computing garbage values.
--

commit f2a479c4ed9e6eb22e5e61615eb62f684e1703b1
Author: SJ Park <sj@kernel.org>

mm/damon/reclaim: remove duplicated min_region_sz power of 2 check
    
This commit removes the power-of-two validation for min_region_sz in
damon_reclaim_apply_parameters(). The change relies on the assumption
that identical validation in damon_start() and damon_commit_ctx() is
sufficient to catch invalid parameters.

> diff --git a/mm/damon/reclaim.c b/mm/damon/reclaim.c
> index 11b70d0a9a6f0..6469b25cc34f9 100644
> --- a/mm/damon/reclaim.c
> +++ b/mm/damon/reclaim.c
> @@ -208,11 +208,6 @@ static int damon_reclaim_apply_parameters(void)
>  	param_ctx->addr_unit = addr_unit;
>  	param_ctx->min_region_sz = max(DAMON_MIN_REGION_SZ / addr_unit, 1);
>  
> -	if (!is_power_of_2(param_ctx->min_region_sz)) {
> -		err = -EINVAL;
> -		goto out;
> -	}
> -

[Severity: High]
By removing this early check, does an invalid addr_unit now proceed to call
damon_set_region_system_rams_default() before damon_commit_ctx() rejects it?

If so, could this permanently corrupt the global monitor_region_start and
monitor_region_end parameters on the error path?

For example, damon_find_system_rams_range() scales and overwrites these
global pointers before the context validation has a chance to fail:

mm/damon/core.c:damon_find_system_rams_range() {
	...
	*start = damon_res_to_core_addr(arg.res.start, addr_unit);
	*end = damon_res_to_core_addr(arg.res.end + 1, addr_unit);
	...
}

[Severity: Medium]
Additionally, if we allow a non-power-of-two min_region_sz to be passed
downwards, does this violate the requirements of the ALIGN macros?

When damon_set_regions() processes the temporary target structure:

mm/damon/core.c:damon_set_regions() {
	...
	start = ALIGN_DOWN(ranges[i].start, min_region_sz);
	end = ALIGN(ranges[i].end, min_region_sz);
	...
}

Since ALIGN relies on bitwise operations, won't passing a non-power-of-two
min_region_sz result in garbage address calculations?

>  	if (!damon_reclaim_mon_attrs.aggr_interval) {
>  		err = -EINVAL;
>  		goto out;

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260705155600.96555-1-sj@kernel.org?part=4

  reply	other threads:[~2026-07-05 16:12 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-05 15:55 [PATCH 0/8] mm/damon: validate all parameters in the core SJ Park
2026-07-05 15:55 ` [PATCH 1/8] mm/damon/core: safely validate src on damon_commit_ctx() SJ Park
2026-07-05 15:55 ` [PATCH 2/8] mm/damon/core: do parameter testing commit on damon_start() SJ Park
2026-07-05 15:55 ` [PATCH 3/8] mm/damon/sysfs: remove duplicated commit input validity check SJ Park
2026-07-05 15:55 ` [PATCH 4/8] mm/damon/reclaim: remove duplicated min_region_sz power of 2 check SJ Park
2026-07-05 16:12   ` sashiko-bot [this message]
2026-07-05 16:36     ` SJ Park
2026-07-05 15:55 ` [PATCH 5/8] mm/damon/lru_sort: remove duplicated min_region_sz power_of_2() check SJ Park
2026-07-05 15:55 ` [PATCH 6/8] mm/damon: document region size validation in damon_set_regions() SJ Park
2026-07-05 15:55 ` [PATCH 7/8] mm/damon/core: remove start, end check in damon_set_region_system_rams() SJ Park
2026-07-05 16:06   ` sashiko-bot
2026-07-05 16:40     ` SJ Park
2026-07-05 15:55 ` [PATCH 8/8] mm/damon/sysfs: remove region size validation SJ Park
2026-07-05 16:05   ` sashiko-bot
2026-07-05 16:41     ` SJ Park
2026-07-05 16:46 ` [PATCH 0/8] mm/damon: validate all parameters in the core SJ Park
2026-07-05 19:16 ` Andrew Morton
2026-07-05 19:43   ` SJ Park

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260705161209.E286A1F000E9@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=damon@lists.linux.dev \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=sj@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.