blob: 9bc43f83cee489307ebcae9d5e98efcee023baa0 [file] [log] [blame]
Kees Cookf5509cc2016-06-07 11:05:33 -07001/*
2 * This implements the various checks for CONFIG_HARDENED_USERCOPY*,
3 * which are designed to protect kernel memory from needless exposure
4 * and overwrite under many unintended conditions. This code is based
5 * on PAX_USERCOPY, which is:
6 *
7 * Copyright (C) 2001-2016 PaX Team, Bradley Spengler, Open Source
8 * Security Inc.
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#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
17#include <linux/mm.h>
Kees Cook918a3052019-09-17 11:00:25 -070018#include <linux/highmem.h>
Kees Cookf5509cc2016-06-07 11:05:33 -070019#include <linux/slab.h>
20#include <asm/sections.h>
21
22enum {
23 BAD_STACK = -1,
24 NOT_STACK = 0,
25 GOOD_FRAME,
26 GOOD_STACK,
27};
28
29/*
30 * Checks if a given pointer and length is contained by the current
31 * stack frame (if possible).
32 *
33 * Returns:
34 * NOT_STACK: not at all on the stack
35 * GOOD_FRAME: fully within a valid stack frame
36 * GOOD_STACK: fully on the stack (when can't do frame-checking)
37 * BAD_STACK: error condition (invalid stack position or bad stack frame)
38 */
39static noinline int check_stack_object(const void *obj, unsigned long len)
40{
41 const void * const stack = task_stack_page(current);
42 const void * const stackend = stack + THREAD_SIZE;
43 int ret;
44
45 /* Object is not on the stack at all. */
46 if (obj + len <= stack || stackend <= obj)
47 return NOT_STACK;
48
49 /*
50 * Reject: object partially overlaps the stack (passing the
51 * the check above means at least one end is within the stack,
52 * so if this check fails, the other end is outside the stack).
53 */
54 if (obj < stack || stackend < obj + len)
55 return BAD_STACK;
56
57 /* Check if object is safely within a valid frame. */
58 ret = arch_within_stack_frames(stack, stackend, obj, len);
59 if (ret)
60 return ret;
61
62 return GOOD_STACK;
63}
64
Kees Cook6d698fb2018-01-02 12:15:53 -080065static void report_usercopy(unsigned long len, bool to_user, const char *type)
Kees Cookf5509cc2016-06-07 11:05:33 -070066{
Kees Cook6d698fb2018-01-02 12:15:53 -080067 pr_emerg("kernel memory %s attempt detected %s '%s' (%lu bytes)\n",
Kees Cookf5509cc2016-06-07 11:05:33 -070068 to_user ? "exposure" : "overwrite",
Kees Cook6d698fb2018-01-02 12:15:53 -080069 to_user ? "from" : "to", type ? : "unknown", len);
Kees Cookf5509cc2016-06-07 11:05:33 -070070 /*
71 * For greater effect, it would be nice to do do_group_exit(),
72 * but BUG() actually hooks all the lock-breaking and per-arch
73 * Oops code, so that is used here instead.
74 */
75 BUG();
76}
77
78/* Returns true if any portion of [ptr,ptr+n) over laps with [low,high). */
79static bool overlaps(const void *ptr, unsigned long n, unsigned long low,
80 unsigned long high)
81{
82 unsigned long check_low = (uintptr_t)ptr;
83 unsigned long check_high = check_low + n;
84
85 /* Does not overlap if entirely above or entirely below. */
Josh Poimboeuf94cd97a2016-08-22 11:53:59 -050086 if (check_low >= high || check_high <= low)
Kees Cookf5509cc2016-06-07 11:05:33 -070087 return false;
88
89 return true;
90}
91
92/* Is this address range in the kernel text area? */
93static inline const char *check_kernel_text_object(const void *ptr,
94 unsigned long n)
95{
96 unsigned long textlow = (unsigned long)_stext;
97 unsigned long texthigh = (unsigned long)_etext;
98 unsigned long textlow_linear, texthigh_linear;
99
100 if (overlaps(ptr, n, textlow, texthigh))
101 return "<kernel text>";
102
103 /*
104 * Some architectures have virtual memory mappings with a secondary
105 * mapping of the kernel text, i.e. there is more than one virtual
106 * kernel address that points to the kernel image. It is usually
107 * when there is a separate linear physical memory mapping, in that
108 * __pa() is not just the reverse of __va(). This can be detected
109 * and checked:
110 */
111 textlow_linear = (unsigned long)__va(__pa(textlow));
112 /* No different mapping: we're done. */
113 if (textlow_linear == textlow)
114 return NULL;
115
116 /* Check the secondary mapping... */
117 texthigh_linear = (unsigned long)__va(__pa(texthigh));
118 if (overlaps(ptr, n, textlow_linear, texthigh_linear))
119 return "<linear kernel text>";
120
121 return NULL;
122}
123
124static inline const char *check_bogus_address(const void *ptr, unsigned long n)
125{
126 /* Reject if object wraps past end of memory. */
Isaac J. Manjarresfaf67602019-08-13 15:37:37 -0700127 if ((unsigned long)ptr + (n - 1) < (unsigned long)ptr)
Kees Cookf5509cc2016-06-07 11:05:33 -0700128 return "<wrapped address>";
129
130 /* Reject if NULL or ZERO-allocation. */
131 if (ZERO_OR_NULL_PTR(ptr))
132 return "<null>";
133
134 return NULL;
135}
136
Kees Cook8e1f74e2016-09-07 09:54:34 -0700137/* Checks for allocs that are marked in some way as spanning multiple pages. */
138static inline const char *check_page_span(const void *ptr, unsigned long n,
139 struct page *page, bool to_user)
Kees Cookf5509cc2016-06-07 11:05:33 -0700140{
Kees Cook8e1f74e2016-09-07 09:54:34 -0700141#ifdef CONFIG_HARDENED_USERCOPY_PAGESPAN
Kees Cookf5509cc2016-06-07 11:05:33 -0700142 const void *end = ptr + n - 1;
Kees Cook8e1f74e2016-09-07 09:54:34 -0700143 struct page *endpage;
Kees Cookf5509cc2016-06-07 11:05:33 -0700144 bool is_reserved, is_cma;
145
146 /*
Kees Cookf5509cc2016-06-07 11:05:33 -0700147 * Sometimes the kernel data regions are not marked Reserved (see
148 * check below). And sometimes [_sdata,_edata) does not cover
149 * rodata and/or bss, so check each range explicitly.
150 */
151
152 /* Allow reads of kernel rodata region (if not marked as Reserved). */
153 if (ptr >= (const void *)__start_rodata &&
154 end <= (const void *)__end_rodata) {
155 if (!to_user)
156 return "<rodata>";
157 return NULL;
158 }
159
160 /* Allow kernel data region (if not marked as Reserved). */
161 if (ptr >= (const void *)_sdata && end <= (const void *)_edata)
162 return NULL;
163
164 /* Allow kernel bss region (if not marked as Reserved). */
165 if (ptr >= (const void *)__bss_start &&
166 end <= (const void *)__bss_stop)
167 return NULL;
168
169 /* Is the object wholly within one base page? */
170 if (likely(((unsigned long)ptr & (unsigned long)PAGE_MASK) ==
171 ((unsigned long)end & (unsigned long)PAGE_MASK)))
172 return NULL;
173
Kees Cook8e1f74e2016-09-07 09:54:34 -0700174 /* Allow if fully inside the same compound (__GFP_COMP) page. */
Kees Cookf5509cc2016-06-07 11:05:33 -0700175 endpage = virt_to_head_page(end);
176 if (likely(endpage == page))
177 return NULL;
178
179 /*
180 * Reject if range is entirely either Reserved (i.e. special or
181 * device memory), or CMA. Otherwise, reject since the object spans
182 * several independently allocated pages.
183 */
184 is_reserved = PageReserved(page);
185 is_cma = is_migrate_cma_page(page);
186 if (!is_reserved && !is_cma)
Kees Cook8e1f74e2016-09-07 09:54:34 -0700187 return "<spans multiple pages>";
Kees Cookf5509cc2016-06-07 11:05:33 -0700188
189 for (ptr += PAGE_SIZE; ptr <= end; ptr += PAGE_SIZE) {
190 page = virt_to_head_page(ptr);
191 if (is_reserved && !PageReserved(page))
Kees Cook8e1f74e2016-09-07 09:54:34 -0700192 return "<spans Reserved and non-Reserved pages>";
Kees Cookf5509cc2016-06-07 11:05:33 -0700193 if (is_cma && !is_migrate_cma_page(page))
Kees Cook8e1f74e2016-09-07 09:54:34 -0700194 return "<spans CMA and non-CMA pages>";
Kees Cookf5509cc2016-06-07 11:05:33 -0700195 }
Kees Cook8e1f74e2016-09-07 09:54:34 -0700196#endif
Kees Cookf5509cc2016-06-07 11:05:33 -0700197
198 return NULL;
Kees Cook8e1f74e2016-09-07 09:54:34 -0700199}
Kees Cookf5509cc2016-06-07 11:05:33 -0700200
Kees Cook8e1f74e2016-09-07 09:54:34 -0700201static inline const char *check_heap_object(const void *ptr, unsigned long n,
202 bool to_user)
203{
204 struct page *page;
205
206 /*
207 * Some architectures (arm64) return true for virt_addr_valid() on
208 * vmalloced addresses. Work around this by checking for vmalloc
209 * first.
Laura Abbottaa4f0602016-09-20 08:56:36 -0700210 *
211 * We also need to check for module addresses explicitly since we
212 * may copy static data from modules to userspace
Kees Cook8e1f74e2016-09-07 09:54:34 -0700213 */
Laura Abbottaa4f0602016-09-20 08:56:36 -0700214 if (is_vmalloc_or_module_addr(ptr))
Kees Cook8e1f74e2016-09-07 09:54:34 -0700215 return NULL;
216
217 if (!virt_addr_valid(ptr))
218 return NULL;
219
Kees Cook918a3052019-09-17 11:00:25 -0700220 /*
221 * When CONFIG_HIGHMEM=y, kmap_to_page() will give either the
222 * highmem page or fallback to virt_to_page(). The following
223 * is effectively a highmem-aware virt_to_head_page().
224 */
225 page = compound_head(kmap_to_page((void *)ptr));
Kees Cook8e1f74e2016-09-07 09:54:34 -0700226
227 /* Check slab allocator for flags and size. */
228 if (PageSlab(page))
229 return __check_heap_object(ptr, n, page);
230
231 /* Verify object does not incorrectly span multiple pages. */
232 return check_page_span(ptr, n, page, to_user);
Kees Cookf5509cc2016-06-07 11:05:33 -0700233}
234
235/*
236 * Validates that the given object is:
237 * - not bogus address
238 * - known-safe heap or stack object
239 * - not in kernel text
240 */
241void __check_object_size(const void *ptr, unsigned long n, bool to_user)
242{
243 const char *err;
244
245 /* Skip all tests if size is zero. */
246 if (!n)
247 return;
248
249 /* Check for invalid addresses. */
250 err = check_bogus_address(ptr, n);
251 if (err)
252 goto report;
253
254 /* Check for bad heap object. */
255 err = check_heap_object(ptr, n, to_user);
256 if (err)
257 goto report;
258
259 /* Check for bad stack object. */
260 switch (check_stack_object(ptr, n)) {
261 case NOT_STACK:
262 /* Object is not touching the current process stack. */
263 break;
264 case GOOD_FRAME:
265 case GOOD_STACK:
266 /*
267 * Object is either in the correct frame (when it
268 * is possible to check) or just generally on the
269 * process stack (when frame checking not available).
270 */
271 return;
272 default:
273 err = "<process stack>";
274 goto report;
275 }
276
277 /* Check for object in kernel to avoid text exposure. */
278 err = check_kernel_text_object(ptr, n);
279 if (!err)
280 return;
281
282report:
Kees Cook6d698fb2018-01-02 12:15:53 -0800283 report_usercopy(n, to_user, err);
Kees Cookf5509cc2016-06-07 11:05:33 -0700284}
285EXPORT_SYMBOL(__check_object_size);