]> git.hungrycats.org Git - linux/commit
kasan: avoid overflowing quarantine size on low memory systems
authorAlexander Potapenko <glider@google.com>
Tue, 2 Aug 2016 21:02:58 +0000 (14:02 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Sep 2016 08:12:48 +0000 (10:12 +0200)
commitcf48c9242444b9d542e2fe7e6ca01b8da00a1bc3
treed43fc539d00f5a0e3a44d57b3926c4e957d70367
parent6eeab2dc304a732722f77061ae364d102732943d
kasan: avoid overflowing quarantine size on low memory systems

commit c3cee372282cb6bcdf19ac1457581d5dd5ecb554 upstream.

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
mm/kasan/quarantine.c