Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef _LINUX_KASAN_CHECKS_H |
| 3 | #define _LINUX_KASAN_CHECKS_H |
| 4 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 5 | #include <linux/types.h> |
| 6 | |
| 7 | /* |
| 8 | * __kasan_check_*: Always available when KASAN is enabled. This may be used |
| 9 | * even in compilation units that selectively disable KASAN, but must use KASAN |
| 10 | * to validate access to an address. Never use these in header files! |
| 11 | */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | #ifdef CONFIG_KASAN |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 13 | bool __kasan_check_read(const volatile void *p, unsigned int size); |
| 14 | bool __kasan_check_write(const volatile void *p, unsigned int size); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 15 | #else |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 16 | static inline bool __kasan_check_read(const volatile void *p, unsigned int size) |
| 17 | { |
| 18 | return true; |
| 19 | } |
| 20 | static inline bool __kasan_check_write(const volatile void *p, unsigned int size) |
| 21 | { |
| 22 | return true; |
| 23 | } |
| 24 | #endif |
| 25 | |
| 26 | /* |
| 27 | * kasan_check_*: Only available when the particular compilation unit has KASAN |
| 28 | * instrumentation enabled. May be used in header files. |
| 29 | */ |
| 30 | #ifdef __SANITIZE_ADDRESS__ |
| 31 | #define kasan_check_read __kasan_check_read |
| 32 | #define kasan_check_write __kasan_check_write |
| 33 | #else |
| 34 | static inline bool kasan_check_read(const volatile void *p, unsigned int size) |
| 35 | { |
| 36 | return true; |
| 37 | } |
| 38 | static inline bool kasan_check_write(const volatile void *p, unsigned int size) |
| 39 | { |
| 40 | return true; |
| 41 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 42 | #endif |
| 43 | |
| 44 | #endif |