blob: 1c260e6b3b3c6a1f26fc1e13a0fdb39099bbbf68 [file] [log] [blame]
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08001#ifndef __MM_KASAN_KASAN_H
2#define __MM_KASAN_KASAN_H
3
4#include <linux/kasan.h>
Alexander Potapenkocd110162016-03-25 14:22:08 -07005#include <linux/stackdepot.h>
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08006
7#define KASAN_SHADOW_SCALE_SIZE (1UL << KASAN_SHADOW_SCALE_SHIFT)
8#define KASAN_SHADOW_MASK (KASAN_SHADOW_SCALE_SIZE - 1)
9
Andrey Ryabininb8c73fc2015-02-13 14:39:28 -080010#define KASAN_FREE_PAGE 0xFF /* page was freed */
Andrey Ryabinin0316bec2015-02-13 14:39:42 -080011#define KASAN_PAGE_REDZONE 0xFE /* redzone for kmalloc_large allocations */
12#define KASAN_KMALLOC_REDZONE 0xFC /* redzone inside slub object */
13#define KASAN_KMALLOC_FREE 0xFB /* object was freed (kmem_cache_free/kfree) */
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080014#define KASAN_GLOBAL_REDZONE 0xFA /* redzone for global variable */
Andrey Ryabinin0316bec2015-02-13 14:39:42 -080015
Andrey Ryabininc420f162015-02-13 14:39:59 -080016/*
17 * Stack redzone shadow values
18 * (Those are compiler's ABI, don't change them)
19 */
20#define KASAN_STACK_LEFT 0xF1
21#define KASAN_STACK_MID 0xF2
22#define KASAN_STACK_RIGHT 0xF3
23#define KASAN_STACK_PARTIAL 0xF4
Dmitry Vyukov828347f2016-11-30 15:54:16 -080024#define KASAN_USE_AFTER_SCOPE 0xF8
Andrey Ryabininc420f162015-02-13 14:39:59 -080025
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080026/* Don't break randconfig/all*config builds */
27#ifndef KASAN_ABI_VERSION
28#define KASAN_ABI_VERSION 1
29#endif
Andrey Ryabininb8c73fc2015-02-13 14:39:28 -080030
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080031struct kasan_access_info {
32 const void *access_addr;
33 const void *first_bad_addr;
34 size_t access_size;
35 bool is_write;
36 unsigned long ip;
37};
38
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080039/* The layout of struct dictated by compiler */
40struct kasan_source_location {
41 const char *filename;
42 int line_no;
43 int column_no;
44};
45
46/* The layout of struct dictated by compiler */
47struct kasan_global {
48 const void *beg; /* Address of the beginning of the global variable. */
49 size_t size; /* Size of the global variable. */
50 size_t size_with_redzone; /* Size of the variable + size of the red zone. 32 bytes aligned */
51 const void *name;
52 const void *module_name; /* Name of the module where the global variable is declared. */
53 unsigned long has_dynamic_init; /* This needed for C++ */
54#if KASAN_ABI_VERSION >= 4
55 struct kasan_source_location *location;
56#endif
Dmitry Vyukov045d5992016-11-30 15:54:13 -080057#if KASAN_ABI_VERSION >= 5
58 char *odr_indicator;
59#endif
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080060};
61
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070062/**
63 * Structures to keep alloc and free tracks *
64 */
65
Alexander Potapenkocd110162016-03-25 14:22:08 -070066#define KASAN_STACK_DEPTH 64
67
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070068struct kasan_track {
Alexander Potapenkocd110162016-03-25 14:22:08 -070069 u32 pid;
70 depot_stack_handle_t stack;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070071};
72
73struct kasan_alloc_meta {
Andrey Ryabininb3cbd9b2016-08-02 14:02:52 -070074 struct kasan_track alloc_track;
75 struct kasan_track free_track;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070076};
77
Alexander Potapenko55834c52016-05-20 16:59:11 -070078struct qlist_node {
79 struct qlist_node *next;
80};
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070081struct kasan_free_meta {
Alexander Potapenko55834c52016-05-20 16:59:11 -070082 /* This field is used while the object is in the quarantine.
83 * Otherwise it might be used for the allocator freelist.
84 */
85 struct qlist_node quarantine_link;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070086};
87
88struct kasan_alloc_meta *get_alloc_info(struct kmem_cache *cache,
89 const void *object);
90struct kasan_free_meta *get_free_info(struct kmem_cache *cache,
91 const void *object);
92
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080093static inline const void *kasan_shadow_to_mem(const void *shadow_addr)
94{
95 return (void *)(((unsigned long)shadow_addr - KASAN_SHADOW_OFFSET)
96 << KASAN_SHADOW_SCALE_SHIFT);
97}
98
Aneesh Kumar K.V0ba86632015-11-05 18:50:43 -080099static inline bool kasan_report_enabled(void)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -0800100{
101 return !current->kasan_depth;
102}
103
104void kasan_report(unsigned long addr, size_t size,
105 bool is_write, unsigned long ip);
Andrey Ryabinin7e088972016-08-02 14:02:55 -0700106void kasan_report_double_free(struct kmem_cache *cache, void *object,
107 s8 shadow);
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -0800108
Alexander Potapenko80a92012016-07-28 15:49:07 -0700109#if defined(CONFIG_SLAB) || defined(CONFIG_SLUB)
Alexander Potapenko55834c52016-05-20 16:59:11 -0700110void quarantine_put(struct kasan_free_meta *info, struct kmem_cache *cache);
111void quarantine_reduce(void);
112void quarantine_remove_cache(struct kmem_cache *cache);
113#else
114static inline void quarantine_put(struct kasan_free_meta *info,
115 struct kmem_cache *cache) { }
116static inline void quarantine_reduce(void) { }
117static inline void quarantine_remove_cache(struct kmem_cache *cache) { }
118#endif
119
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -0800120#endif