* [PATCH] mm/kmemleak: fix checksum computation for per-cpu objects
@ 2026-07-03 16:17 Breno Leitao
2026-07-03 16:28 ` Catalin Marinas
2026-07-03 17:09 ` Pavel Tikhomirov
0 siblings, 2 replies; 3+ messages in thread
From: Breno Leitao @ 2026-07-03 16:17 UTC (permalink / raw)
To: Catalin Marinas, Andrew Morton, Pavel Tikhomirov
Cc: linux-mm, linux-kernel, kernel-team, stable, Breno Leitao
The per-cpu object checksum folds each CPU's CRC together with XOR and
seeds every CRC with 0. Both choices make update_checksum() miss content
changes:
- XOR is self-cancelling, so equal contents on two CPUs cancel out and
simultaneous identical changes leave the checksum unchanged.
- crc32(0, ...) over all-zero content is 0, so a freshly allocated,
zeroed per-cpu area checksums to 0, matching the initial value, and
the object is never seen to change.
See discussions at [0].
When update_checksum() wrongly reports an actively modified object as
unchanged, kmemleak stops greying it for an extra scan and can report a
live per-cpu object as a leak.
Fold the per-cpu CRC as a single rolling checksum across all CPUs and
initialise the object checksum to ~0 so the first computed value always
registers as a change, even for content that hashes to 0.
reset_checksum() is seeded the same way.
Link: https://lore.kernel.org/all/akfYImSNDh3OjIfR@gmail.com [0]
Co-developed-by: Catalin Marinas <catalin.marinas@arm.com>
Fixes: 6c99d4eb7c5e ("kmemleak: enable tracking for percpu pointers")
Cc: stable@vger.kernel.org
Signed-off-by: Breno Leitao <leitao@debian.org>
---
mm/kmemleak.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/mm/kmemleak.c b/mm/kmemleak.c
index 68a0e30eea1e3..e96e9efd19b0d 100644
--- a/mm/kmemleak.c
+++ b/mm/kmemleak.c
@@ -687,7 +687,7 @@ static struct kmemleak_object *__alloc_object(gfp_t gfp)
atomic_set(&object->use_count, 1);
object->excess_ref = 0;
object->count = 0; /* white color initially */
- object->checksum = 0;
+ object->checksum = ~0;
object->del_state = 0;
/* task information */
@@ -981,7 +981,7 @@ static void reset_checksum(unsigned long ptr)
}
raw_spin_lock_irqsave(&object->lock, flags);
- object->checksum = 0;
+ object->checksum = ~0;
raw_spin_unlock_irqrestore(&object->lock, flags);
put_object(object);
}
@@ -1410,7 +1410,8 @@ static bool update_checksum(struct kmemleak_object *object)
for_each_possible_cpu(cpu) {
void *ptr = per_cpu_ptr((void __percpu *)object->pointer, cpu);
- object->checksum ^= crc32(0, kasan_reset_tag((void *)ptr), object->size);
+ object->checksum = crc32(object->checksum,
+ kasan_reset_tag((void *)ptr), object->size);
}
} else {
object->checksum = crc32(0, kasan_reset_tag((void *)object->pointer), object->size);
---
base-commit: 6eb8711ece2ce27e52e327a5b7a628ed39b97f45
change-id: 20260703-kmemleak_checksum-e69602b36a3d
Best regards,
--
Breno Leitao <leitao@debian.org>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mm/kmemleak: fix checksum computation for per-cpu objects
2026-07-03 16:17 [PATCH] mm/kmemleak: fix checksum computation for per-cpu objects Breno Leitao
@ 2026-07-03 16:28 ` Catalin Marinas
2026-07-03 17:09 ` Pavel Tikhomirov
1 sibling, 0 replies; 3+ messages in thread
From: Catalin Marinas @ 2026-07-03 16:28 UTC (permalink / raw)
To: Breno Leitao
Cc: Andrew Morton, Pavel Tikhomirov, linux-mm, linux-kernel,
kernel-team, stable
On Fri, Jul 03, 2026 at 09:17:24AM -0700, Breno Leitao wrote:
> The per-cpu object checksum folds each CPU's CRC together with XOR and
> seeds every CRC with 0. Both choices make update_checksum() miss content
> changes:
>
> - XOR is self-cancelling, so equal contents on two CPUs cancel out and
> simultaneous identical changes leave the checksum unchanged.
> - crc32(0, ...) over all-zero content is 0, so a freshly allocated,
> zeroed per-cpu area checksums to 0, matching the initial value, and
> the object is never seen to change.
>
> See discussions at [0].
>
> When update_checksum() wrongly reports an actively modified object as
> unchanged, kmemleak stops greying it for an extra scan and can report a
> live per-cpu object as a leak.
>
> Fold the per-cpu CRC as a single rolling checksum across all CPUs and
> initialise the object checksum to ~0 so the first computed value always
> registers as a change, even for content that hashes to 0.
> reset_checksum() is seeded the same way.
>
> Link: https://lore.kernel.org/all/akfYImSNDh3OjIfR@gmail.com [0]
> Co-developed-by: Catalin Marinas <catalin.marinas@arm.com>
Since you added co-developed-by, I think it needs this as well:
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
(otherwise I'm fine with suggested-by)
Thanks for the investigation and posting this.
--
Catalin
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mm/kmemleak: fix checksum computation for per-cpu objects
2026-07-03 16:17 [PATCH] mm/kmemleak: fix checksum computation for per-cpu objects Breno Leitao
2026-07-03 16:28 ` Catalin Marinas
@ 2026-07-03 17:09 ` Pavel Tikhomirov
1 sibling, 0 replies; 3+ messages in thread
From: Pavel Tikhomirov @ 2026-07-03 17:09 UTC (permalink / raw)
To: Breno Leitao, Catalin Marinas, Andrew Morton
Cc: linux-mm, linux-kernel, kernel-team, stable
Thanks for fixing!
Reviewed-by: Pavel Tikhomirov <ptikhomirov@virtuozzo.com>
On 7/3/26 18:17, Breno Leitao wrote:
> The per-cpu object checksum folds each CPU's CRC together with XOR and
> seeds every CRC with 0. Both choices make update_checksum() miss content
> changes:
>
> - XOR is self-cancelling, so equal contents on two CPUs cancel out and
> simultaneous identical changes leave the checksum unchanged.
> - crc32(0, ...) over all-zero content is 0, so a freshly allocated,
> zeroed per-cpu area checksums to 0, matching the initial value, and
> the object is never seen to change.
>
> See discussions at [0].
>
> When update_checksum() wrongly reports an actively modified object as
> unchanged, kmemleak stops greying it for an extra scan and can report a
> live per-cpu object as a leak.
>
> Fold the per-cpu CRC as a single rolling checksum across all CPUs and
> initialise the object checksum to ~0 so the first computed value always
> registers as a change, even for content that hashes to 0.
> reset_checksum() is seeded the same way.
>
> Link: https://lore.kernel.org/all/akfYImSNDh3OjIfR@gmail.com [0]
> Co-developed-by: Catalin Marinas <catalin.marinas@arm.com>
> Fixes: 6c99d4eb7c5e ("kmemleak: enable tracking for percpu pointers")
> Cc: stable@vger.kernel.org
> Signed-off-by: Breno Leitao <leitao@debian.org>
> ---
> mm/kmemleak.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/mm/kmemleak.c b/mm/kmemleak.c
> index 68a0e30eea1e3..e96e9efd19b0d 100644
> --- a/mm/kmemleak.c
> +++ b/mm/kmemleak.c
> @@ -687,7 +687,7 @@ static struct kmemleak_object *__alloc_object(gfp_t gfp)
> atomic_set(&object->use_count, 1);
> object->excess_ref = 0;
> object->count = 0; /* white color initially */
> - object->checksum = 0;
> + object->checksum = ~0;
> object->del_state = 0;
>
> /* task information */
> @@ -981,7 +981,7 @@ static void reset_checksum(unsigned long ptr)
> }
>
> raw_spin_lock_irqsave(&object->lock, flags);
> - object->checksum = 0;
> + object->checksum = ~0;
> raw_spin_unlock_irqrestore(&object->lock, flags);
> put_object(object);
> }
> @@ -1410,7 +1410,8 @@ static bool update_checksum(struct kmemleak_object *object)
> for_each_possible_cpu(cpu) {
> void *ptr = per_cpu_ptr((void __percpu *)object->pointer, cpu);
>
> - object->checksum ^= crc32(0, kasan_reset_tag((void *)ptr), object->size);
> + object->checksum = crc32(object->checksum,
> + kasan_reset_tag((void *)ptr), object->size);
> }
> } else {
> object->checksum = crc32(0, kasan_reset_tag((void *)object->pointer), object->size);
>
> ---
> base-commit: 6eb8711ece2ce27e52e327a5b7a628ed39b97f45
> change-id: 20260703-kmemleak_checksum-e69602b36a3d
>
> Best regards,
> --
> Breno Leitao <leitao@debian.org>
>
--
Best regards, Pavel Tikhomirov
Senior Software Developer, Virtuozzo.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-03 17:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-03 16:17 [PATCH] mm/kmemleak: fix checksum computation for per-cpu objects Breno Leitao
2026-07-03 16:28 ` Catalin Marinas
2026-07-03 17:09 ` Pavel Tikhomirov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox