* [RFC PATCH] mm/damon: handle zero sampling interval in damon_max_nr_accesses()
@ 2026-06-19 20:51 SeongJae Park
2026-06-19 21:03 ` sashiko-bot
0 siblings, 1 reply; 3+ messages in thread
From: SeongJae Park @ 2026-06-19 20:51 UTC (permalink / raw)
Cc: SeongJae Park, # 5 . 16 . x, Andrew Morton, damon, linux-kernel,
linux-mm
damon_max_nr_accesses() causes divide-by-zero if sampling interval is
zero. Fix it by handling the case.
The issue was dicovered [1] by Sashiko.
[1] https://lore.kernel.org/20260619202459.145010-1-sj@kernel.org
Fixes: 198f0f4c58b9 ("mm/damon/vaddr,paddr: support pageout prioritization")
Cc: <stable@vger.kernel.org> # 5.16.x
Signed-off-by: SeongJae Park <sj@kernel.org>
---
include/linux/damon.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/linux/damon.h b/include/linux/damon.h
index 64d75c78f4df4..b6fbe6089abc6 100644
--- a/include/linux/damon.h
+++ b/include/linux/damon.h
@@ -1066,8 +1066,10 @@ 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)
{
+ unsigned long sample_interval = attrs->sample_interval ? : 1;
+
/* {aggr,sample}_interval are unsigned long, hence could overflow */
- return min(attrs->aggr_interval / attrs->sample_interval,
+ return min(attrs->aggr_interval / sample_interval,
(unsigned long)UINT_MAX);
}
base-commit: 7a58ae62cdf3c006a53b805bbb12079ab2621a07
--
2.47.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [RFC PATCH] mm/damon: handle zero sampling interval in damon_max_nr_accesses() 2026-06-19 20:51 [RFC PATCH] mm/damon: handle zero sampling interval in damon_max_nr_accesses() SeongJae Park @ 2026-06-19 21:03 ` sashiko-bot 2026-06-19 21:07 ` SeongJae Park 0 siblings, 1 reply; 3+ messages in thread From: sashiko-bot @ 2026-06-19 21:03 UTC (permalink / raw) To: SeongJae Park; +Cc: damon Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [High] The patch replaces a divide-by-zero crash in `damon_max_nr_accesses()` with a divide-by-zero crash in caller functions such as `damon_hot_score()`. When `aggr_interval` and `sample_interval` are 0, `damon_max_nr_accesses()` returns 0, which is then used as a divisor by its callers. -- commit ca6b91d50d3b7234e014066f6e835c8aab906f49 Author: SeongJae Park <sj@kernel.org> mm/damon: handle zero sampling interval in damon_max_nr_accesses() damon_max_nr_accesses() causes divide-by-zero if sampling interval is zero. Fix it by handling the case. Link: https://lore.kernel.org/20260619202459.145010-1-sj@kernel.org > diff --git a/include/linux/damon.h b/include/linux/damon.h > index 6f7edb3590ef9..83b43d8ffef38 100644 > --- a/include/linux/damon.h > +++ b/include/linux/damon.h > @@ -1065,8 +1065,10 @@ 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) > { > + unsigned long sample_interval = attrs->sample_interval ? : 1; > + > /* {aggr,sample}_interval are unsigned long, hence could overflow */ > - return min(attrs->aggr_interval / attrs->sample_interval, > + return min(attrs->aggr_interval / sample_interval, > (unsigned long)UINT_MAX); > } [Severity: High] This is a pre-existing issue, but does this patch shift the divide-by-zero crash to the callers of damon_max_nr_accesses()? If a user configures DAMON via sysfs with both sample_interval and aggr_interval set to 0, damon_set_attrs() allows it because the validation check evaluates to false (0 > 0): mm/damon/core.c:damon_set_attrs() { if (attrs->sample_interval > attrs->aggr_interval) return -EINVAL; ... } With this patch applied, damon_max_nr_accesses() prevents the initial division by zero by defaulting sample_interval to 1. However, it then evaluates min(0 / 1, UINT_MAX) and returns 0. Later, when a DAMOS scheme with a quota is evaluated, damon_hot_score() uses the return value as a divisor: mm/damon/ops-common.c:damon_hot_score() { ... freq_subscore = r->nr_accesses * DAMON_MAX_SUBSCORE / damon_max_nr_accesses(&c->attrs); ... } Since damon_max_nr_accesses() now successfully returns 0, wouldn't this trigger a divide-by-zero exception in damon_hot_score() instead? Could we explicitly reject an aggr_interval of 0 in damon_set_attrs(), or ensure damon_max_nr_accesses() always returns at least 1? -- Sashiko AI review · https://sashiko.dev/#/patchset/20260619205144.150664-1-sj@kernel.org?part=1 ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] mm/damon: handle zero sampling interval in damon_max_nr_accesses() 2026-06-19 21:03 ` sashiko-bot @ 2026-06-19 21:07 ` SeongJae Park 0 siblings, 0 replies; 3+ messages in thread From: SeongJae Park @ 2026-06-19 21:07 UTC (permalink / raw) To: sashiko-bot; +Cc: SeongJae Park, damon On Fri, 19 Jun 2026 21:03:04 +0000 sashiko-bot@kernel.org wrote: > Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: > > Pre-existing issues: > - [High] The patch replaces a divide-by-zero crash in `damon_max_nr_accesses()` with a divide-by-zero crash in caller functions such as `damon_hot_score()`. When `aggr_interval` and `sample_interval` are 0, `damon_max_nr_accesses()` returns 0, which is then used as a divisor by its callers. > -- > > commit ca6b91d50d3b7234e014066f6e835c8aab906f49 > Author: SeongJae Park <sj@kernel.org> > > mm/damon: handle zero sampling interval in damon_max_nr_accesses() > > damon_max_nr_accesses() causes divide-by-zero if sampling interval is > zero. Fix it by handling the case. > > Link: https://lore.kernel.org/20260619202459.145010-1-sj@kernel.org > > > diff --git a/include/linux/damon.h b/include/linux/damon.h > > index 6f7edb3590ef9..83b43d8ffef38 100644 > > --- a/include/linux/damon.h > > +++ b/include/linux/damon.h > > @@ -1065,8 +1065,10 @@ 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) > > { > > + unsigned long sample_interval = attrs->sample_interval ? : 1; > > + > > /* {aggr,sample}_interval are unsigned long, hence could overflow */ > > - return min(attrs->aggr_interval / attrs->sample_interval, > > + return min(attrs->aggr_interval / sample_interval, > > (unsigned long)UINT_MAX); > > } > > [Severity: High] > This is a pre-existing issue, but does this patch shift the divide-by-zero > crash to the callers of damon_max_nr_accesses()? > > If a user configures DAMON via sysfs with both sample_interval and > aggr_interval set to 0, damon_set_attrs() allows it because the validation > check evaluates to false (0 > 0): > > mm/damon/core.c:damon_set_attrs() { > if (attrs->sample_interval > attrs->aggr_interval) > return -EINVAL; > ... > } > > With this patch applied, damon_max_nr_accesses() prevents the initial > division by zero by defaulting sample_interval to 1. However, it then > evaluates min(0 / 1, UINT_MAX) and returns 0. > > Later, when a DAMOS scheme with a quota is evaluated, damon_hot_score() uses > the return value as a divisor: > > mm/damon/ops-common.c:damon_hot_score() { > ... > freq_subscore = r->nr_accesses * DAMON_MAX_SUBSCORE / > damon_max_nr_accesses(&c->attrs); > ... > } > > Since damon_max_nr_accesses() now successfully returns 0, wouldn't this > trigger a divide-by-zero exception in damon_hot_score() instead? > > Could we explicitly reject an aggr_interval of 0 in damon_set_attrs(), or > ensure damon_max_nr_accesses() always returns at least 1? Ah, good catch. I will fix this in the next revision, like below: ''' --- a/include/linux/damon.h +++ b/include/linux/damon.h @@ -1252,11 +1252,11 @@ 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) { + unsigned long aggr_interval = attrs->aggr ? : 1; unsigned long sample_interval = attrs->sample_interval ? : 1; /* {aggr,sample}_interval are unsigned long, hence could overflow */ - return min(attrs->aggr_interval / sample_interval, - (unsigned long)UINT_MAX); + return min(ggr_interval / sample_interval, (unsigned long)UINT_MAX); } ''' Thanks, SJ [...] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-19 21:08 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-19 20:51 [RFC PATCH] mm/damon: handle zero sampling interval in damon_max_nr_accesses() SeongJae Park 2026-06-19 21:03 ` sashiko-bot 2026-06-19 21:07 ` SeongJae Park
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox