blob: f527b02a0ee3c802d68161a8054a08b7e6ec3b4f [file] [log] [blame]
Andrey Ryabininef7f0d62015-02-13 14:39:25 -08001#ifndef _ASM_X86_KASAN_H
2#define _ASM_X86_KASAN_H
3
Andrey Ryabinin920e2772015-08-13 08:37:23 +03004#include <linux/const.h>
5#define KASAN_SHADOW_OFFSET _AC(CONFIG_KASAN_SHADOW_OFFSET, UL)
6
Andrey Ryabininef7f0d62015-02-13 14:39:25 -08007/*
8 * Compiler uses shadow offset assuming that addresses start
9 * from 0. Kernel addresses don't start from 0, so shadow
10 * for kernel really starts from compiler's shadow offset +
11 * 'kernel address space start' >> KASAN_SHADOW_SCALE_SHIFT
12 */
13#define KASAN_SHADOW_START (KASAN_SHADOW_OFFSET + \
Kirill A. Shutemov4c7c4482017-03-30 11:07:27 +030014 ((-1UL << __VIRTUAL_MASK_SHIFT) >> 3))
15/*
16 * 47 bits for kernel address -> (47 - 3) bits for shadow
17 * 56 bits for kernel address -> (56 - 3) bits for shadow
18 */
19#define KASAN_SHADOW_END (KASAN_SHADOW_START + (1ULL << (__VIRTUAL_MASK_SHIFT - 3)))
Andrey Ryabininef7f0d62015-02-13 14:39:25 -080020
21#ifndef __ASSEMBLY__
22
Andrey Ryabininef7f0d62015-02-13 14:39:25 -080023#ifdef CONFIG_KASAN
Alexander Popov5d5aa3c2015-07-02 12:09:34 +030024void __init kasan_early_init(void);
Andrey Ryabininef7f0d62015-02-13 14:39:25 -080025void __init kasan_init(void);
26#else
Alexander Popov5d5aa3c2015-07-02 12:09:34 +030027static inline void kasan_early_init(void) { }
Andrey Ryabininef7f0d62015-02-13 14:39:25 -080028static inline void kasan_init(void) { }
29#endif
30
31#endif
32
33#endif