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:
7 * Copyright (C) 2001-2016 PaX Team, Bradley Spengler, Open Source
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.
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18 #include <linux/slab.h>
19 #include <asm/sections.h>
29 * Checks if a given pointer and length is contained by the current
30 * stack frame (if possible).
33 * NOT_STACK: not at all on the stack
34 * GOOD_FRAME: fully within a valid stack frame
35 * GOOD_STACK: fully on the stack (when can't do frame-checking)
36 * BAD_STACK: error condition (invalid stack position or bad stack frame)
38 static noinline
int check_stack_object(const void *obj
, unsigned long len
)
40 const void * const stack
= task_stack_page(current
);
41 const void * const stackend
= stack
+ THREAD_SIZE
;
44 /* Object is not on the stack at all. */
45 if (obj
+ len
<= stack
|| stackend
<= obj
)
49 * Reject: object partially overlaps the stack (passing the
50 * the check above means at least one end is within the stack,
51 * so if this check fails, the other end is outside the stack).
53 if (obj
< stack
|| stackend
< obj
+ len
)
56 /* Check if object is safely within a valid frame. */
57 ret
= arch_within_stack_frames(stack
, stackend
, obj
, len
);
64 static void report_usercopy(const void *ptr
, unsigned long len
,
65 bool to_user
, const char *type
)
67 pr_emerg("kernel memory %s attempt detected %s %p (%s) (%lu bytes)\n",
68 to_user
? "exposure" : "overwrite",
69 to_user
? "from" : "to", ptr
, type
? : "unknown", len
);
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.
78 /* Returns true if any portion of [ptr,ptr+n) over laps with [low,high). */
79 static bool overlaps(const void *ptr
, unsigned long n
, unsigned long low
,
82 unsigned long check_low
= (uintptr_t)ptr
;
83 unsigned long check_high
= check_low
+ n
;
85 /* Does not overlap if entirely above or entirely below. */
86 if (check_low
>= high
|| check_high
<= low
)
92 /* Is this address range in the kernel text area? */
93 static inline const char *check_kernel_text_object(const void *ptr
,
96 unsigned long textlow
= (unsigned long)_stext
;
97 unsigned long texthigh
= (unsigned long)_etext
;
98 unsigned long textlow_linear
, texthigh_linear
;
100 if (overlaps(ptr
, n
, textlow
, texthigh
))
101 return "<kernel text>";
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
111 textlow_linear
= (unsigned long)__va(__pa(textlow
));
112 /* No different mapping: we're done. */
113 if (textlow_linear
== textlow
)
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>";
124 static inline const char *check_bogus_address(const void *ptr
, unsigned long n
)
126 /* Reject if object wraps past end of memory. */
127 if ((unsigned long)ptr
+ n
< (unsigned long)ptr
)
128 return "<wrapped address>";
130 /* Reject if NULL or ZERO-allocation. */
131 if (ZERO_OR_NULL_PTR(ptr
))
137 /* Checks for allocs that are marked in some way as spanning multiple pages. */
138 static inline const char *check_page_span(const void *ptr
, unsigned long n
,
139 struct page
*page
, bool to_user
)
141 #ifdef CONFIG_HARDENED_USERCOPY_PAGESPAN
142 const void *end
= ptr
+ n
- 1;
143 struct page
*endpage
;
144 bool is_reserved
, is_cma
;
147 * 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.
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
) {
160 /* Allow kernel data region (if not marked as Reserved). */
161 if (ptr
>= (const void *)_sdata
&& end
<= (const void *)_edata
)
164 /* Allow kernel bss region (if not marked as Reserved). */
165 if (ptr
>= (const void *)__bss_start
&&
166 end
<= (const void *)__bss_stop
)
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
)))
174 /* Allow if fully inside the same compound (__GFP_COMP) page. */
175 endpage
= virt_to_head_page(end
);
176 if (likely(endpage
== page
))
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.
184 is_reserved
= PageReserved(page
);
185 is_cma
= is_migrate_cma_page(page
);
186 if (!is_reserved
&& !is_cma
)
187 return "<spans multiple pages>";
189 for (ptr
+= PAGE_SIZE
; ptr
<= end
; ptr
+= PAGE_SIZE
) {
190 page
= virt_to_head_page(ptr
);
191 if (is_reserved
&& !PageReserved(page
))
192 return "<spans Reserved and non-Reserved pages>";
193 if (is_cma
&& !is_migrate_cma_page(page
))
194 return "<spans CMA and non-CMA pages>";
201 static inline const char *check_heap_object(const void *ptr
, unsigned long n
,
207 * Some architectures (arm64) return true for virt_addr_valid() on
208 * vmalloced addresses. Work around this by checking for vmalloc
211 if (is_vmalloc_addr(ptr
))
214 if (!virt_addr_valid(ptr
))
217 page
= virt_to_head_page(ptr
);
219 /* Check slab allocator for flags and size. */
221 return __check_heap_object(ptr
, n
, page
);
223 /* Verify object does not incorrectly span multiple pages. */
224 return check_page_span(ptr
, n
, page
, to_user
);
228 * Validates that the given object is:
229 * - not bogus address
230 * - known-safe heap or stack object
231 * - not in kernel text
233 void __check_object_size(const void *ptr
, unsigned long n
, bool to_user
)
237 /* Skip all tests if size is zero. */
241 /* Check for invalid addresses. */
242 err
= check_bogus_address(ptr
, n
);
246 /* Check for bad heap object. */
247 err
= check_heap_object(ptr
, n
, to_user
);
251 /* Check for bad stack object. */
252 switch (check_stack_object(ptr
, n
)) {
254 /* Object is not touching the current process stack. */
259 * Object is either in the correct frame (when it
260 * is possible to check) or just generally on the
261 * process stack (when frame checking not available).
265 err
= "<process stack>";
269 /* Check for object in kernel to avoid text exposure. */
270 err
= check_kernel_text_object(ptr
, n
);
275 report_usercopy(ptr
, n
, to_user
, err
);
277 EXPORT_SYMBOL(__check_object_size
);