diff options
author | Alexander Potapenko <glider@google.com> | 2016-08-02 17:02:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-08-02 17:31:41 -0400 |
commit | c3cee372282cb6bcdf19ac1457581d5dd5ecb554 (patch) | |
tree | c69679c97a866019a5efde5078b85fe9e02cc54b | |
parent | 7e088978933ee186533355ae03a9dc1de99cf6c7 (diff) |
kasan: avoid overflowing quarantine size on low memory systems
If the total amount of memory assigned to quarantine is less than the
amount of memory assigned to per-cpu quarantines, |new_quarantine_size|
may overflow. Instead, set it to zero.
[akpm@linux-foundation.org: cleanup: use WARN_ONCE return value]
Link: http://lkml.kernel.org/r/1470063563-96266-1-git-send-email-glider@google.com
Fixes: 55834c59098d ("mm: kasan: initial memory quarantine implementation")
Signed-off-by: Alexander Potapenko <glider@google.com>
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/kasan/quarantine.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mm/kasan/quarantine.c b/mm/kasan/quarantine.c index 7fd121d13b88..b6728a33a4ac 100644 --- a/mm/kasan/quarantine.c +++ b/mm/kasan/quarantine.c | |||
@@ -198,7 +198,7 @@ void quarantine_put(struct kasan_free_meta *info, struct kmem_cache *cache) | |||
198 | 198 | ||
199 | void quarantine_reduce(void) | 199 | void quarantine_reduce(void) |
200 | { | 200 | { |
201 | size_t new_quarantine_size; | 201 | size_t new_quarantine_size, percpu_quarantines; |
202 | unsigned long flags; | 202 | unsigned long flags; |
203 | struct qlist_head to_free = QLIST_INIT; | 203 | struct qlist_head to_free = QLIST_INIT; |
204 | size_t size_to_free = 0; | 204 | size_t size_to_free = 0; |
@@ -216,7 +216,12 @@ void quarantine_reduce(void) | |||
216 | */ | 216 | */ |
217 | new_quarantine_size = (READ_ONCE(totalram_pages) << PAGE_SHIFT) / | 217 | new_quarantine_size = (READ_ONCE(totalram_pages) << PAGE_SHIFT) / |
218 | QUARANTINE_FRACTION; | 218 | QUARANTINE_FRACTION; |
219 | new_quarantine_size -= QUARANTINE_PERCPU_SIZE * num_online_cpus(); | 219 | percpu_quarantines = QUARANTINE_PERCPU_SIZE * num_online_cpus(); |
220 | if (WARN_ONCE(new_quarantine_size < percpu_quarantines, | ||
221 | "Too little memory, disabling global KASAN quarantine.\n")) | ||
222 | new_quarantine_size = 0; | ||
223 | else | ||
224 | new_quarantine_size -= percpu_quarantines; | ||
220 | WRITE_ONCE(quarantine_size, new_quarantine_size); | 225 | WRITE_ONCE(quarantine_size, new_quarantine_size); |
221 | 226 | ||
222 | last = global_quarantine.head; | 227 | last = global_quarantine.head; |