diff options
author | Andrey Ryabinin <aryabinin@virtuozzo.com> | 2016-05-20 19:59:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-20 20:58:30 -0400 |
commit | 64f8ebaf115bcddc4aaa902f981c57ba6506bc42 (patch) | |
tree | 11f1cba5bc8867e085236ff96861ced9a29c943e /mm | |
parent | 936bb4bbbb832f81055328b84e5afe1fc7246a8d (diff) |
mm/kasan: add API to check memory regions
Memory access coded in an assembly won't be seen by KASAN as a compiler
can instrument only C code. Add kasan_check_[read,write]() API which is
going to be used to check a certain memory range.
Link: http://lkml.kernel.org/r/1462538722-1574-3-git-send-email-aryabinin@virtuozzo.com
Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
Acked-by: Alexander Potapenko <glider@google.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/kasan/kasan.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mm/kasan/kasan.c b/mm/kasan/kasan.c index e5beb40d97b1..18b6a2b8d183 100644 --- a/mm/kasan/kasan.c +++ b/mm/kasan/kasan.c | |||
@@ -299,6 +299,18 @@ static void check_memory_region(unsigned long addr, | |||
299 | check_memory_region_inline(addr, size, write, ret_ip); | 299 | check_memory_region_inline(addr, size, write, ret_ip); |
300 | } | 300 | } |
301 | 301 | ||
302 | void kasan_check_read(const void *p, unsigned int size) | ||
303 | { | ||
304 | check_memory_region((unsigned long)p, size, false, _RET_IP_); | ||
305 | } | ||
306 | EXPORT_SYMBOL(kasan_check_read); | ||
307 | |||
308 | void kasan_check_write(const void *p, unsigned int size) | ||
309 | { | ||
310 | check_memory_region((unsigned long)p, size, true, _RET_IP_); | ||
311 | } | ||
312 | EXPORT_SYMBOL(kasan_check_write); | ||
313 | |||
302 | #undef memset | 314 | #undef memset |
303 | void *memset(void *addr, int c, size_t len) | 315 | void *memset(void *addr, int c, size_t len) |
304 | { | 316 | { |