GNU Linux-libre 4.4.284-gnu1
[releases.git] / mm / kasan / report.c
1 /*
2  * This file contains error reporting code.
3  *
4  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5  * Author: Andrey Ryabinin <ryabinin.a.a@gmail.com>
6  *
7  * Some code borrowed from https://github.com/xairy/kasan-prototype by
8  *        Andrey Konovalov <adech.fo@gmail.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  */
15
16 #include <linux/ftrace.h>
17 #include <linux/kernel.h>
18 #include <linux/mm.h>
19 #include <linux/printk.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/stacktrace.h>
23 #include <linux/string.h>
24 #include <linux/types.h>
25 #include <linux/kasan.h>
26 #include <linux/module.h>
27
28 #include <asm/sections.h>
29
30 #include "kasan.h"
31 #include "../slab.h"
32
33 /* Shadow layout customization. */
34 #define SHADOW_BYTES_PER_BLOCK 1
35 #define SHADOW_BLOCKS_PER_ROW 16
36 #define SHADOW_BYTES_PER_ROW (SHADOW_BLOCKS_PER_ROW * SHADOW_BYTES_PER_BLOCK)
37 #define SHADOW_ROWS_AROUND_ADDR 2
38
39 static const void *find_first_bad_addr(const void *addr, size_t size)
40 {
41         u8 shadow_val = *(u8 *)kasan_mem_to_shadow(addr);
42         const void *first_bad_addr = addr;
43
44         while (!shadow_val && first_bad_addr < addr + size) {
45                 first_bad_addr += KASAN_SHADOW_SCALE_SIZE;
46                 shadow_val = *(u8 *)kasan_mem_to_shadow(first_bad_addr);
47         }
48         return first_bad_addr;
49 }
50
51 static void print_error_description(struct kasan_access_info *info)
52 {
53         const char *bug_type = "unknown-crash";
54         u8 *shadow_addr;
55
56         info->first_bad_addr = find_first_bad_addr(info->access_addr,
57                                                 info->access_size);
58
59         shadow_addr = (u8 *)kasan_mem_to_shadow(info->first_bad_addr);
60
61         /*
62          * If shadow byte value is in [0, KASAN_SHADOW_SCALE_SIZE) we can look
63          * at the next shadow byte to determine the type of the bad access.
64          */
65         if (*shadow_addr > 0 && *shadow_addr <= KASAN_SHADOW_SCALE_SIZE - 1)
66                 shadow_addr++;
67
68         switch (*shadow_addr) {
69         case 0 ... KASAN_SHADOW_SCALE_SIZE - 1:
70                 /*
71                  * In theory it's still possible to see these shadow values
72                  * due to a data race in the kernel code.
73                  */
74                 bug_type = "out-of-bounds";
75                 break;
76         case KASAN_PAGE_REDZONE:
77         case KASAN_KMALLOC_REDZONE:
78                 bug_type = "slab-out-of-bounds";
79                 break;
80         case KASAN_GLOBAL_REDZONE:
81                 bug_type = "global-out-of-bounds";
82                 break;
83         case KASAN_STACK_LEFT:
84         case KASAN_STACK_MID:
85         case KASAN_STACK_RIGHT:
86         case KASAN_STACK_PARTIAL:
87                 bug_type = "stack-out-of-bounds";
88                 break;
89         case KASAN_FREE_PAGE:
90         case KASAN_KMALLOC_FREE:
91                 bug_type = "use-after-free";
92                 break;
93         }
94
95         pr_err("BUG: KASAN: %s in %pS at addr %p\n",
96                 bug_type, (void *)info->ip,
97                 info->access_addr);
98         pr_err("%s of size %zu by task %s/%d\n",
99                 info->is_write ? "Write" : "Read",
100                 info->access_size, current->comm, task_pid_nr(current));
101 }
102
103 static inline bool kernel_or_module_addr(const void *addr)
104 {
105         if (addr >= (void *)_stext && addr < (void *)_end)
106                 return true;
107         if (is_module_address((unsigned long)addr))
108                 return true;
109         return false;
110 }
111
112 static inline bool init_task_stack_addr(const void *addr)
113 {
114         return addr >= (void *)&init_thread_union.stack &&
115                 (addr <= (void *)&init_thread_union.stack +
116                         sizeof(init_thread_union.stack));
117 }
118
119 static void print_address_description(struct kasan_access_info *info)
120 {
121         const void *addr = info->access_addr;
122
123         if ((addr >= (void *)PAGE_OFFSET) &&
124                 (addr < high_memory)) {
125                 struct page *page = virt_to_head_page(addr);
126
127                 if (PageSlab(page)) {
128                         void *object;
129                         struct kmem_cache *cache = page->slab_cache;
130                         void *last_object;
131
132                         object = virt_to_obj(cache, page_address(page), addr);
133                         last_object = page_address(page) +
134                                 page->objects * cache->size;
135
136                         if (unlikely(object > last_object))
137                                 object = last_object; /* we hit into padding */
138
139                         object_err(cache, page, object,
140                                 "kasan: bad access detected");
141                         return;
142                 }
143                 dump_page(page, "kasan: bad access detected");
144         }
145
146         if (kernel_or_module_addr(addr)) {
147                 if (!init_task_stack_addr(addr))
148                         pr_err("Address belongs to variable %pS\n", addr);
149         }
150
151         dump_stack();
152 }
153
154 static bool row_is_guilty(const void *row, const void *guilty)
155 {
156         return (row <= guilty) && (guilty < row + SHADOW_BYTES_PER_ROW);
157 }
158
159 static int shadow_pointer_offset(const void *row, const void *shadow)
160 {
161         /* The length of ">ff00ff00ff00ff00: " is
162          *    3 + (BITS_PER_LONG/8)*2 chars.
163          */
164         return 3 + (BITS_PER_LONG/8)*2 + (shadow - row)*2 +
165                 (shadow - row) / SHADOW_BYTES_PER_BLOCK + 1;
166 }
167
168 static void print_shadow_for_address(const void *addr)
169 {
170         int i;
171         const void *shadow = kasan_mem_to_shadow(addr);
172         const void *shadow_row;
173
174         shadow_row = (void *)round_down((unsigned long)shadow,
175                                         SHADOW_BYTES_PER_ROW)
176                 - SHADOW_ROWS_AROUND_ADDR * SHADOW_BYTES_PER_ROW;
177
178         pr_err("Memory state around the buggy address:\n");
179
180         for (i = -SHADOW_ROWS_AROUND_ADDR; i <= SHADOW_ROWS_AROUND_ADDR; i++) {
181                 const void *kaddr = kasan_shadow_to_mem(shadow_row);
182                 char buffer[4 + (BITS_PER_LONG/8)*2];
183                 char shadow_buf[SHADOW_BYTES_PER_ROW];
184
185                 snprintf(buffer, sizeof(buffer),
186                         (i == 0) ? ">%p: " : " %p: ", kaddr);
187                 /*
188                  * We should not pass a shadow pointer to generic
189                  * function, because generic functions may try to
190                  * access kasan mapping for the passed address.
191                  */
192                 memcpy(shadow_buf, shadow_row, SHADOW_BYTES_PER_ROW);
193                 print_hex_dump(KERN_ERR, buffer,
194                         DUMP_PREFIX_NONE, SHADOW_BYTES_PER_ROW, 1,
195                         shadow_buf, SHADOW_BYTES_PER_ROW, 0);
196
197                 if (row_is_guilty(shadow_row, shadow))
198                         pr_err("%*c\n",
199                                 shadow_pointer_offset(shadow_row, shadow),
200                                 '^');
201
202                 shadow_row += SHADOW_BYTES_PER_ROW;
203         }
204 }
205
206 static DEFINE_SPINLOCK(report_lock);
207
208 static void kasan_report_error(struct kasan_access_info *info)
209 {
210         unsigned long flags;
211         const char *bug_type;
212
213         /*
214          * Make sure we don't end up in loop.
215          */
216         kasan_disable_current();
217         spin_lock_irqsave(&report_lock, flags);
218         pr_err("================================="
219                 "=================================\n");
220         if (info->access_addr <
221                         kasan_shadow_to_mem((void *)KASAN_SHADOW_START)) {
222                 if ((unsigned long)info->access_addr < PAGE_SIZE)
223                         bug_type = "null-ptr-deref";
224                 else if ((unsigned long)info->access_addr < TASK_SIZE)
225                         bug_type = "user-memory-access";
226                 else
227                         bug_type = "wild-memory-access";
228                 pr_err("BUG: KASAN: %s on address %p\n",
229                         bug_type, info->access_addr);
230                 pr_err("%s of size %zu by task %s/%d\n",
231                         info->is_write ? "Write" : "Read",
232                         info->access_size, current->comm,
233                         task_pid_nr(current));
234                 dump_stack();
235         } else {
236                 print_error_description(info);
237                 print_address_description(info);
238                 print_shadow_for_address(info->first_bad_addr);
239         }
240         pr_err("================================="
241                 "=================================\n");
242         add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
243         spin_unlock_irqrestore(&report_lock, flags);
244         kasan_enable_current();
245 }
246
247 void kasan_report(unsigned long addr, size_t size,
248                 bool is_write, unsigned long ip)
249 {
250         struct kasan_access_info info;
251
252         if (likely(!kasan_report_enabled()))
253                 return;
254
255         disable_trace_on_warning();
256
257         info.access_addr = (void *)addr;
258         info.access_size = size;
259         info.is_write = is_write;
260         info.ip = ip;
261
262         kasan_report_error(&info);
263 }
264
265
266 #define DEFINE_ASAN_REPORT_LOAD(size)                     \
267 void __asan_report_load##size##_noabort(unsigned long addr) \
268 {                                                         \
269         kasan_report(addr, size, false, _RET_IP_);        \
270 }                                                         \
271 EXPORT_SYMBOL(__asan_report_load##size##_noabort)
272
273 #define DEFINE_ASAN_REPORT_STORE(size)                     \
274 void __asan_report_store##size##_noabort(unsigned long addr) \
275 {                                                          \
276         kasan_report(addr, size, true, _RET_IP_);          \
277 }                                                          \
278 EXPORT_SYMBOL(__asan_report_store##size##_noabort)
279
280 DEFINE_ASAN_REPORT_LOAD(1);
281 DEFINE_ASAN_REPORT_LOAD(2);
282 DEFINE_ASAN_REPORT_LOAD(4);
283 DEFINE_ASAN_REPORT_LOAD(8);
284 DEFINE_ASAN_REPORT_LOAD(16);
285 DEFINE_ASAN_REPORT_STORE(1);
286 DEFINE_ASAN_REPORT_STORE(2);
287 DEFINE_ASAN_REPORT_STORE(4);
288 DEFINE_ASAN_REPORT_STORE(8);
289 DEFINE_ASAN_REPORT_STORE(16);
290
291 void __asan_report_load_n_noabort(unsigned long addr, size_t size)
292 {
293         kasan_report(addr, size, false, _RET_IP_);
294 }
295 EXPORT_SYMBOL(__asan_report_load_n_noabort);
296
297 void __asan_report_store_n_noabort(unsigned long addr, size_t size)
298 {
299         kasan_report(addr, size, true, _RET_IP_);
300 }
301 EXPORT_SYMBOL(__asan_report_store_n_noabort);