* [PATCH v4 1/2] mm/damon/core: prevent size quota overflow in the temporal goal tuner
2026-09-23 0:25 [PATCH v4 0/2] mm/damon: fix the temporal goal tuner's size quota conversion Donggeun Yoo
@ 2026-09-23 0:25 ` Donggeun Yoo
2026-09-23 5:59 ` SJ Park
2026-09-23 0:25 ` [PATCH v4 2/2] mm/damon/tests/core-kunit: test the temporal tuner's size quota conversion Donggeun Yoo
2026-09-23 6:06 ` [PATCH v4 0/2] mm/damon: fix the temporal goal " SJ Park
2 siblings, 1 reply; 5+ messages in thread
From: Donggeun Yoo @ 2026-09-23 0:25 UTC (permalink / raw)
To: sj, akpm; +Cc: damon, linux-mm, linux-kernel, donggeunyoo.kernel, stable
damos_goal_tune_esz_bp_temporal() converts the scheme's size quota
into basis points with "quota->esz_bp = quota->sz * 10000", both
unsigned long, and damos_set_effective_quota() divides the result
back by 10000. quotas/bytes is unbounded; bytes_store() hands it to
kstrtoul() as is.
On 32-bit the product wraps for any size quota above ULONG_MAX /
10000, that is 429496 bytes. A wrapped product below 10000 divides
to a zero effective quota: 429497 gives 0. damos_quota_is_full() is
then true on the first test of every charge window. Other wrapped
values are wrong without being zero: 500000 gives 70503.
Triggering this needs a scheme with a quota goal, the temporal goal
tuner, and a size quota above ULONG_MAX / 10000 -- 429496 bytes on
32-bit, 1844674407370955 on 64-bit. The scheme then makes no
progress for as long as the goal is unachieved, which is easy to
notice, and writing a smaller size quota restores it. Nothing is
corrupted and nothing leaks. This is unlikely to be hit on a tested
setup.
addr_unit does not cover this. It only scales the numbers a paddr
context writes to quotas/bytes, so a large enough scaled value wraps
just the same, and vaddr and fvaddr contexts take raw byte values.
Bound the multiply.
Fixes: af738a6a00c1 ("mm/damon/core: introduce DAMOS_QUOTA_GOAL_TUNER_TEMPORAL")
Cc: <stable@vger.kernel.org> # 7.1.x
Signed-off-by: Donggeun Yoo <donggeunyoo.kernel@gmail.com>
---
Measured on i386 under QEMU: one paddr context with a stat scheme, the
temporal goal tuner, and one unachieved user_input goal. Each size is
written to quotas/bytes and quotas/effective_bytes is read back after
update_schemes_effective_quotas.
quotas/bytes effective_bytes effective_bytes
before after
4096 4096 4096
429496 429496 429496
429497 0 429496
268435456 0 429496
1073741824 0 429496
500000 70503 429496
4294967295 429495 429496
0 429496 429496
mm/damon/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/damon/core.c b/mm/damon/core.c
index 4687b909d42c9..4716693ec0dc5 100644
--- a/mm/damon/core.c
+++ b/mm/damon/core.c
@@ -3275,7 +3275,7 @@ static void damos_goal_tune_esz_bp_temporal(struct damon_ctx *c,
if (score >= 10000)
quota->esz_bp = 0;
- else if (quota->sz)
+ else if (quota->sz && quota->sz <= ULONG_MAX / 10000)
quota->esz_bp = quota->sz * 10000;
else
quota->esz_bp = ULONG_MAX;
--
2.53.0
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v4 1/2] mm/damon/core: prevent size quota overflow in the temporal goal tuner
2026-09-23 0:25 ` [PATCH v4 1/2] mm/damon/core: prevent size quota overflow in the temporal goal tuner Donggeun Yoo
@ 2026-09-23 5:59 ` SJ Park
0 siblings, 0 replies; 5+ messages in thread
From: SJ Park @ 2026-09-23 5:59 UTC (permalink / raw)
To: Donggeun Yoo; +Cc: SJ Park, akpm, damon, linux-mm, linux-kernel, stable
On Wed, 23 Sep 2026 09:25:58 +0900 Donggeun Yoo <donggeunyoo.kernel@gmail.com> wrote:
> damos_goal_tune_esz_bp_temporal() converts the scheme's size quota
> into basis points with "quota->esz_bp = quota->sz * 10000", both
> unsigned long, and damos_set_effective_quota() divides the result
> back by 10000. quotas/bytes is unbounded; bytes_store() hands it to
> kstrtoul() as is.
>
> On 32-bit the product wraps for any size quota above ULONG_MAX /
> 10000, that is 429496 bytes. A wrapped product below 10000 divides
> to a zero effective quota: 429497 gives 0. damos_quota_is_full() is
> then true on the first test of every charge window. Other wrapped
> values are wrong without being zero: 500000 gives 70503.
>
> Triggering this needs a scheme with a quota goal, the temporal goal
> tuner, and a size quota above ULONG_MAX / 10000 -- 429496 bytes on
> 32-bit, 1844674407370955 on 64-bit. The scheme then makes no
> progress for as long as the goal is unachieved, which is easy to
> notice, and writing a smaller size quota restores it. Nothing is
> corrupted and nothing leaks. This is unlikely to be hit on a tested
> setup.
>
> addr_unit does not cover this. It only scales the numbers a paddr
> context writes to quotas/bytes, so a large enough scaled value wraps
> just the same, and vaddr and fvaddr contexts take raw byte values.
>
> Bound the multiply.
Looks good to me, thank you for finding and fixing this!
>
> Fixes: af738a6a00c1 ("mm/damon/core: introduce DAMOS_QUOTA_GOAL_TUNER_TEMPORAL")
> Cc: <stable@vger.kernel.org> # 7.1.x
> Signed-off-by: Donggeun Yoo <donggeunyoo.kernel@gmail.com>
Reviewed-by: SJ Park <sj@kernel.org>
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v4 2/2] mm/damon/tests/core-kunit: test the temporal tuner's size quota conversion
2026-09-23 0:25 [PATCH v4 0/2] mm/damon: fix the temporal goal tuner's size quota conversion Donggeun Yoo
2026-09-23 0:25 ` [PATCH v4 1/2] mm/damon/core: prevent size quota overflow in the temporal goal tuner Donggeun Yoo
@ 2026-09-23 0:25 ` Donggeun Yoo
2026-09-23 6:06 ` [PATCH v4 0/2] mm/damon: fix the temporal goal " SJ Park
2 siblings, 0 replies; 5+ messages in thread
From: Donggeun Yoo @ 2026-09-23 0:25 UTC (permalink / raw)
To: sj, akpm; +Cc: damon, linux-mm, linux-kernel, donggeunyoo.kernel
damos_goal_tune_esz_bp_temporal() encodes the size quota in basis
points, so the conversion is exact only up to ULONG_MAX / 10000. Pin
the three sizes around that boundary: the largest one that fits, the
first one that does not, and ULONG_MAX.
Signed-off-by: Donggeun Yoo <donggeunyoo.kernel@gmail.com>
Reviewed-by: SJ Park <sj@kernel.org>
---
mm/damon/tests/core-kunit.h | 48 +++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/mm/damon/tests/core-kunit.h b/mm/damon/tests/core-kunit.h
index df84d9cc7d204..bb20c6d01b692 100644
--- a/mm/damon/tests/core-kunit.h
+++ b/mm/damon/tests/core-kunit.h
@@ -2242,6 +2242,53 @@ static void damon_test_rand(struct kunit *test)
}
}
+static void damos_test_esz_goal_temporal(struct kunit *test)
+{
+ struct damos_access_pattern pattern = {};
+ struct damos_watermarks wmarks = {};
+ struct damos_quota quota = {
+ .goal_tuner = DAMOS_QUOTA_GOAL_TUNER_TEMPORAL,
+ };
+ struct damos_quota_goal *goal;
+ struct damon_ctx *ctx;
+ struct damos *s;
+
+ ctx = damon_new_ctx();
+ KUNIT_ASSERT_NOT_NULL(test, ctx);
+
+ s = damon_new_scheme(&pattern, DAMOS_STAT, 0, "a, &wmarks,
+ NUMA_NO_NODE);
+ if (!s) {
+ damon_destroy_ctx(ctx);
+ kunit_skip(test, "scheme alloc fail");
+ }
+ damon_add_scheme(ctx, s);
+
+ goal = damos_new_quota_goal(DAMOS_QUOTA_USER_INPUT, 10000);
+ if (!goal) {
+ damon_destroy_ctx(ctx);
+ kunit_skip(test, "quota goal alloc fail");
+ }
+ goal->current_value = 0;
+ damos_add_quota_goal(&s->quota, goal);
+
+ /* The largest size quota the basis-point conversion can hold. */
+ s->quota.sz = ULONG_MAX / 10000;
+ damos_set_effective_quota(ctx, s);
+ KUNIT_EXPECT_EQ(test, s->quota.esz, ULONG_MAX / 10000);
+
+ /* Any larger one saturates instead of wrapping. */
+ s->quota.sz = ULONG_MAX / 10000 + 1;
+ damos_set_effective_quota(ctx, s);
+ KUNIT_EXPECT_EQ(test, s->quota.esz, ULONG_MAX / 10000);
+
+ s->quota.sz = ULONG_MAX;
+ damos_set_effective_quota(ctx, s);
+ KUNIT_EXPECT_EQ(test, s->quota.esz, ULONG_MAX / 10000);
+
+ damon_destroy_ctx(ctx);
+}
+
static struct kunit_case damon_test_cases[] = {
KUNIT_CASE(damon_test_target),
KUNIT_CASE(damon_test_regions),
@@ -2281,6 +2328,7 @@ static struct kunit_case damon_test_cases[] = {
KUNIT_CASE(damon_test_is_last_region),
KUNIT_CASE(damon_test_walk_control_obsolete),
KUNIT_CASE(damon_test_rand),
+ KUNIT_CASE(damos_test_esz_goal_temporal),
{},
};
--
2.53.0
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v4 0/2] mm/damon: fix the temporal goal tuner's size quota conversion
2026-09-23 0:25 [PATCH v4 0/2] mm/damon: fix the temporal goal tuner's size quota conversion Donggeun Yoo
2026-09-23 0:25 ` [PATCH v4 1/2] mm/damon/core: prevent size quota overflow in the temporal goal tuner Donggeun Yoo
2026-09-23 0:25 ` [PATCH v4 2/2] mm/damon/tests/core-kunit: test the temporal tuner's size quota conversion Donggeun Yoo
@ 2026-09-23 6:06 ` SJ Park
2 siblings, 0 replies; 5+ messages in thread
From: SJ Park @ 2026-09-23 6:06 UTC (permalink / raw)
To: Donggeun Yoo; +Cc: SJ Park, akpm, damon, linux-mm, linux-kernel
On Wed, 23 Sep 2026 09:25:57 +0900 Donggeun Yoo <donggeunyoo.kernel@gmail.com> wrote:
> damos_goal_tune_esz_bp_temporal() hands the size quota to
> damos_set_effective_quota() through quota->esz_bp in basis points, and
> the multiply that gets it there is unchecked. On 32-bit it wraps above
> 429496 bytes, and a wrapped product below 10000 divides to a zero
> effective quota. damos_quota_is_full() is then true on the first test
> of every charge window, so the scheme makes no progress for as long as
> the goal is unachieved.
>
> Patch 1 bounds the conversion. Patch 2 pins the boundary in the core
> kunit suite, where the new test would fail without patch 1 on any word
> size.
>
> v2: https://lore.kernel.org/damon/20260920023111.2466265-1-donggeunyoo.kernel@gmail.com/
> v3: https://lore.kernel.org/damon/20260920122411.610213-1-donggeunyoo.kernel@gmail.com/
>
> v3 was posted before the discussion on v2 had finished. My mistake;
> this version was held until the thread settled.
>
> Changes in v4, from SJ Park's review of v2; the code is unchanged:
> - patch 1: drop the 256 MiB mention
> - patch 1: say what the user sees before saying the setup is unlikely
> - patch 1: cut the closing paragraph to "Bound the multiply."
> - patch 2: unchanged, and carries the Reviewed-by
From next time, please add full changelog (changes in v3, v2).
Otherwise, looks good to me. Thank you for finding and fixing the bug with the
test, Donggeun.
This series is applied to damon/next [1] tree. If this patch is not added to
mm.git in short term (~1 week?), I will ask mm.git maintainer (Andrew Morton)
to pick this. So, no action from your side is needed for now. If it seems I
also forgot doing that or you cannot wait for my action, please feel free to
ping me or Andrew.
[1] https://origin.kernel.org/doc/html/latest/mm/damon/maintainer-profile.html#scm-trees
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 5+ messages in thread