]> Git Repo - linux.git/commit
kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink occur...
authorZqiang <[email protected]>
Wed, 27 Apr 2022 19:41:56 +0000 (12:41 -0700)
committerLinus Torvalds <[email protected]>
Wed, 27 Apr 2022 20:28:48 +0000 (13:28 -0700)
commit31fa985b4196f8a66f027672e9bf2b81fea0417c
tree38b4498f260c7ffa7bedbcf13242fd21dafb7010
parentd615b5416f8a1afeb82d13b238f8152c572d59c0
kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink occur at same time

kasan_quarantine_remove_cache() is called in kmem_cache_shrink()/
destroy().  The kasan_quarantine_remove_cache() call is protected by
cpuslock in kmem_cache_destroy() to ensure serialization with
kasan_cpu_offline().

However the kasan_quarantine_remove_cache() call is not protected by
cpuslock in kmem_cache_shrink().  When a CPU is going offline and cache
shrink occurs at same time, the cpu_quarantine may be corrupted by
interrupt (per_cpu_remove_cache operation).

So add a cpu_quarantine offline flags check in per_cpu_remove_cache().

[[email protected]: add comment, per Zqiang]

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Zqiang <[email protected]>
Reviewed-by: Dmitry Vyukov <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: Alexander Potapenko <[email protected]>
Cc: Andrey Konovalov <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/kasan/quarantine.c
This page took 0.051509 seconds and 4 git commands to generate.