]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
mm/damon/ops-common: handle extreme intervals in damon_hot_score()
authorSeongJae Park <sj@kernel.org>
Tue, 23 Jun 2026 13:58:31 +0000 (06:58 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 2 Jul 2026 02:02:53 +0000 (19:02 -0700)
Fix three issues in damon_hot_score() that comes from wrong handling of
extreme (zero or too high) monitoring intervals user setup.

When the user sets sampling interval zero, damon_max_nr_accesses(), which
is called from damon_hot_score(), causes a divide-by-zero.  Needless to
say, it is a problem.

When the user sets the aggregation interval zero, the function returns
zero.  It is wrong, since the real maximum nr_acceses in the setup should
be one.  Worse yet, it can cause another divide-by-zero from its caller,
damon_hot_score(), since it uses damon_max_nr_accesses() return value as a
denominator.

When the user sets the aggregation interval very high, damon_hot_score()
could return a value out of [0, DAMOS_MAX_SCORE] range.  Since the return
value is used as an index to the regions_score_histogram array, which is
DAMOS_MAX_SCORE+1 size, it causes out of bounds array access.

The issues can be relatively easily reproduced like below.  The sysfs
write permission is required, though.

    # ./damo start --damos_action lru_prio --damos_quota_space 100M \
            --damos_quota_interval 1s
    # cd /sys/kernel/mm/damon/admin/kdamonds/0
    # echo 0 > contexts/0/monitoring_attrs/intervals/sample_us
    # echo 0 > contexts/0/monitoring_attrs/intervals/aggr_us
    # echo commit > state
    # dmesg
    [...]
    [  131.329762] Oops: divide error: 0000 [#1] SMP NOPTI
    [...]
    [  131.336089] RIP: 0010:damon_hot_score+0x27/0xd0
    [...]

Fix the divide-by-zero intervals problems by explicitly handling the zero
intervals in damon_max_nr_accesses().  Fix the out-of-bound array access
by applying [0, DAMOS_MAX_SCORE] bounds before returning from
damon_hot_score().

The issue was discovered [1] by Sashiko.

Link: https://lore.kernel.org/20260623135834.67189-1-sj@kernel.org
Link: https://lore.kernel.org/20260619202459.145010-1-sj@kernel.org
Fixes: 198f0f4c58b9 ("mm/damon/vaddr,paddr: support pageout prioritization")
Signed-off-by: SeongJae Park <sj@kernel.org>
Cc: <stable@vger.kernel.org> # 5.16.x
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/damon.h
mm/damon/ops-common.c

index 6f7edb3590ef97e9e493842499d15f3e24f050b9..888570f55b4167e2e82cdeb11540c8fa156b7b05 100644 (file)
@@ -1065,9 +1065,13 @@ static inline bool damon_target_has_pid(const struct damon_ctx *ctx)
 
 static inline unsigned int damon_max_nr_accesses(const struct damon_attrs *attrs)
 {
-       /* {aggr,sample}_interval are unsigned long, hence could overflow */
-       return min(attrs->aggr_interval / attrs->sample_interval,
+       unsigned long sample_interval;
+       unsigned long max_nr_accesses;
+
+       sample_interval = attrs->sample_interval ? : 1;
+       max_nr_accesses = min(attrs->aggr_interval / sample_interval,
                        (unsigned long)UINT_MAX);
+       return max_nr_accesses ? : 1;
 }
 
 
index 5c93ef2bb8a97f24267c830578561bc70e99ab7f..d1842e2b00ef83a2a4f26f134688bb5090ad6a0b 100644 (file)
@@ -143,6 +143,7 @@ int damon_hot_score(struct damon_ctx *c, struct damon_region *r,
         * Transform it to fit in [0, DAMOS_MAX_SCORE]
         */
        hotness = hotness * DAMOS_MAX_SCORE / DAMON_MAX_SUBSCORE;
+       hotness = max(min(hotness, DAMOS_MAX_SCORE), 0);
 
        return hotness;
 }