kasan.h 8.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6 7 8
#ifndef _LINUX_KASAN_H
#define _LINUX_KASAN_H

#include <linux/types.h>

struct kmem_cache;
struct page;
9
struct vm_struct;
10
struct task_struct;
11 12 13

#ifdef CONFIG_KASAN

14
#include <linux/linkage.h>
15
#include <asm/kasan.h>
16

P
Patricia Alfonso 已提交
17 18 19 20 21 22
/* kasan_data struct is used in KUnit tests for KASAN expected failures */
struct kunit_kasan_expectation {
	bool report_expected;
	bool report_found;
};

23 24 25 26 27 28 29 30 31 32 33 34 35 36
#endif

#if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)

#include <linux/pgtable.h>

/* Software KASAN implementations use shadow memory. */

#ifdef CONFIG_KASAN_SW_TAGS
#define KASAN_SHADOW_INIT 0xFF
#else
#define KASAN_SHADOW_INIT 0
#endif

37 38 39 40 41
extern unsigned char kasan_early_shadow_page[PAGE_SIZE];
extern pte_t kasan_early_shadow_pte[PTRS_PER_PTE];
extern pmd_t kasan_early_shadow_pmd[PTRS_PER_PMD];
extern pud_t kasan_early_shadow_pud[PTRS_PER_PUD];
extern p4d_t kasan_early_shadow_p4d[MAX_PTRS_PER_P4D];
42

43
int kasan_populate_early_shadow(const void *shadow_start,
44 45
				const void *shadow_end);

46 47 48 49 50 51
static inline void *kasan_mem_to_shadow(const void *addr)
{
	return (void *)((unsigned long)addr >> KASAN_SHADOW_SCALE_SHIFT)
		+ KASAN_SHADOW_OFFSET;
}

52 53 54
int kasan_add_zero_shadow(void *start, unsigned long size);
void kasan_remove_zero_shadow(void *start, unsigned long size);

55 56 57 58 59 60
/* Enable reporting bugs after kasan_disable_current() */
extern void kasan_enable_current(void);

/* Disable reporting bugs for current task */
extern void kasan_disable_current(void);

61 62 63 64 65 66 67 68 69 70
#else /* CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS */

static inline int kasan_add_zero_shadow(void *start, unsigned long size)
{
	return 0;
}
static inline void kasan_remove_zero_shadow(void *start,
					unsigned long size)
{}

71 72 73
static inline void kasan_enable_current(void) {}
static inline void kasan_disable_current(void) {}

74 75 76 77
#endif /* CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS */

#ifdef CONFIG_KASAN

78
void kasan_unpoison_range(const void *address, size_t size);
79

80 81 82
void kasan_alloc_pages(struct page *page, unsigned int order);
void kasan_free_pages(struct page *page, unsigned int order);

83
void kasan_cache_create(struct kmem_cache *cache, unsigned int *size,
84
			slab_flags_t *flags);
A
Alexander Potapenko 已提交
85

86 87 88
void kasan_poison_slab(struct page *page);
void kasan_unpoison_object_data(struct kmem_cache *cache, void *object);
void kasan_poison_object_data(struct kmem_cache *cache, void *object);
89 90
void * __must_check kasan_init_slab_obj(struct kmem_cache *cache,
					const void *object);
91

92 93
void * __must_check kasan_kmalloc_large(const void *ptr, size_t size,
						gfp_t flags);
94
void kasan_kfree_large(void *ptr, unsigned long ip);
95
void kasan_poison_kfree(void *ptr, unsigned long ip);
96 97 98 99
void * __must_check kasan_kmalloc(struct kmem_cache *s, const void *object,
					size_t size, gfp_t flags);
void * __must_check kasan_krealloc(const void *object, size_t new_size,
					gfp_t flags);
100

101 102
void * __must_check kasan_slab_alloc(struct kmem_cache *s, void *object,
					gfp_t flags);
103
bool kasan_slab_free(struct kmem_cache *s, void *object, unsigned long ip);
104

A
Alexander Potapenko 已提交
105 106 107 108 109
struct kasan_cache {
	int alloc_meta_offset;
	int free_meta_offset;
};

110 111 112
size_t __ksize(const void *);
static inline void kasan_unpoison_slab(const void *ptr)
{
113
	kasan_unpoison_range(ptr, __ksize(ptr));
114
}
115
size_t kasan_metadata_size(struct kmem_cache *cache);
116

117 118 119
bool kasan_save_enable_multi_shot(void);
void kasan_restore_multi_shot(bool enabled);

120 121
#else /* CONFIG_KASAN */

122
static inline void kasan_unpoison_range(const void *address, size_t size) {}
123

124 125 126
static inline void kasan_alloc_pages(struct page *page, unsigned int order) {}
static inline void kasan_free_pages(struct page *page, unsigned int order) {}

A
Alexander Potapenko 已提交
127
static inline void kasan_cache_create(struct kmem_cache *cache,
128
				      unsigned int *size,
129
				      slab_flags_t *flags) {}
A
Alexander Potapenko 已提交
130

131 132 133 134 135
static inline void kasan_poison_slab(struct page *page) {}
static inline void kasan_unpoison_object_data(struct kmem_cache *cache,
					void *object) {}
static inline void kasan_poison_object_data(struct kmem_cache *cache,
					void *object) {}
136 137 138 139 140
static inline void *kasan_init_slab_obj(struct kmem_cache *cache,
				const void *object)
{
	return (void *)object;
}
141

142 143 144 145
static inline void *kasan_kmalloc_large(void *ptr, size_t size, gfp_t flags)
{
	return ptr;
}
146
static inline void kasan_kfree_large(void *ptr, unsigned long ip) {}
147
static inline void kasan_poison_kfree(void *ptr, unsigned long ip) {}
148 149 150 151 152 153 154 155 156 157
static inline void *kasan_kmalloc(struct kmem_cache *s, const void *object,
				size_t size, gfp_t flags)
{
	return (void *)object;
}
static inline void *kasan_krealloc(const void *object, size_t new_size,
				 gfp_t flags)
{
	return (void *)object;
}
158

159 160 161 162 163
static inline void *kasan_slab_alloc(struct kmem_cache *s, void *object,
				   gfp_t flags)
{
	return object;
}
164 165
static inline bool kasan_slab_free(struct kmem_cache *s, void *object,
				   unsigned long ip)
166 167 168
{
	return false;
}
169

170
static inline void kasan_unpoison_slab(const void *ptr) { }
171
static inline size_t kasan_metadata_size(struct kmem_cache *cache) { return 0; }
172

173 174
#endif /* CONFIG_KASAN */

175 176 177 178 179 180
#if defined(CONFIG_KASAN) && CONFIG_KASAN_STACK
void kasan_unpoison_task_stack(struct task_struct *task);
#else
static inline void kasan_unpoison_task_stack(struct task_struct *task) {}
#endif

181 182 183 184
#ifdef CONFIG_KASAN_GENERIC

void kasan_cache_shrink(struct kmem_cache *cache);
void kasan_cache_shutdown(struct kmem_cache *cache);
185
void kasan_record_aux_stack(void *ptr);
186 187 188 189 190

#else /* CONFIG_KASAN_GENERIC */

static inline void kasan_cache_shrink(struct kmem_cache *cache) {}
static inline void kasan_cache_shutdown(struct kmem_cache *cache) {}
191
static inline void kasan_record_aux_stack(void *ptr) {}
192 193 194

#endif /* CONFIG_KASAN_GENERIC */

195
#if defined(CONFIG_KASAN_SW_TAGS) || defined(CONFIG_KASAN_HW_TAGS)
196 197 198

void *kasan_reset_tag(const void *addr);

199
bool kasan_report(unsigned long addr, size_t size,
200 201
		bool is_write, unsigned long ip);

202
#else /* CONFIG_KASAN_SW_TAGS || CONFIG_KASAN_HW_TAGS */
203 204 205 206 207 208

static inline void *kasan_reset_tag(const void *addr)
{
	return (void *)addr;
}

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
#endif /* CONFIG_KASAN_SW_TAGS || CONFIG_KASAN_HW_TAGS*/

#ifdef CONFIG_KASAN_SW_TAGS
void __init kasan_init_sw_tags(void);
#else
static inline void kasan_init_sw_tags(void) { }
#endif

#ifdef CONFIG_KASAN_HW_TAGS
void kasan_init_hw_tags_cpu(void);
void __init kasan_init_hw_tags(void);
#else
static inline void kasan_init_hw_tags_cpu(void) { }
static inline void kasan_init_hw_tags(void) { }
#endif
224

225
#ifdef CONFIG_KASAN_VMALLOC
A
Andrey Konovalov 已提交
226

227 228 229
int kasan_populate_vmalloc(unsigned long addr, unsigned long size);
void kasan_poison_vmalloc(const void *start, unsigned long size);
void kasan_unpoison_vmalloc(const void *start, unsigned long size);
230 231 232
void kasan_release_vmalloc(unsigned long start, unsigned long end,
			   unsigned long free_region_start,
			   unsigned long free_region_end);
A
Andrey Konovalov 已提交
233 234 235

#else /* CONFIG_KASAN_VMALLOC */

236 237
static inline int kasan_populate_vmalloc(unsigned long start,
					unsigned long size)
238 239 240 241
{
	return 0;
}

242 243 244 245
static inline void kasan_poison_vmalloc(const void *start, unsigned long size)
{ }
static inline void kasan_unpoison_vmalloc(const void *start, unsigned long size)
{ }
246 247 248 249
static inline void kasan_release_vmalloc(unsigned long start,
					 unsigned long end,
					 unsigned long free_region_start,
					 unsigned long free_region_end) {}
A
Andrey Konovalov 已提交
250 251 252

#endif /* CONFIG_KASAN_VMALLOC */

253 254
#if (defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)) && \
		!defined(CONFIG_KASAN_VMALLOC)
A
Andrey Konovalov 已提交
255 256 257 258 259 260 261 262 263

/*
 * These functions provide a special case to support backing module
 * allocations with real shadow memory. With KASAN vmalloc, the special
 * case is unnecessary, as the work is handled in the generic case.
 */
int kasan_module_alloc(void *addr, size_t size);
void kasan_free_shadow(const struct vm_struct *vm);

264
#else /* (CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS) && !CONFIG_KASAN_VMALLOC */
A
Andrey Konovalov 已提交
265 266 267 268

static inline int kasan_module_alloc(void *addr, size_t size) { return 0; }
static inline void kasan_free_shadow(const struct vm_struct *vm) {}

269
#endif /* (CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS) && !CONFIG_KASAN_VMALLOC */
270

271 272 273 274 275 276
#ifdef CONFIG_KASAN_INLINE
void kasan_non_canonical_hook(unsigned long addr);
#else /* CONFIG_KASAN_INLINE */
static inline void kasan_non_canonical_hook(unsigned long addr) { }
#endif /* CONFIG_KASAN_INLINE */

277
#endif /* LINUX_KASAN_H */