blob: b9a37a415bf9c0ff4ba07af19cf713351c79f2dd [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Based on arch/arm/include/asm/uaccess.h
4 *
5 * Copyright (C) 2012 ARM Ltd.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7#ifndef __ASM_UACCESS_H
8#define __ASM_UACCESS_H
9
10#include <asm/alternative.h>
11#include <asm/kernel-pgtable.h>
12#include <asm/sysreg.h>
13
14/*
15 * User space memory access functions
16 */
17#include <linux/bitops.h>
18#include <linux/kasan-checks.h>
19#include <linux/string.h>
20
21#include <asm/cpufeature.h>
22#include <asm/ptrace.h>
23#include <asm/memory.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000024#include <asm/extable.h>
25
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000026#define get_fs() (current_thread_info()->addr_limit)
27
28static inline void set_fs(mm_segment_t fs)
29{
30 current_thread_info()->addr_limit = fs;
31
32 /*
33 * Prevent a mispredicted conditional call to set_fs from forwarding
34 * the wrong address limit to access_ok under speculation.
35 */
David Brazdil0f672f62019-12-10 10:32:29 +000036 spec_bar();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000037
38 /* On user-mode return, check fs is correct */
39 set_thread_flag(TIF_FSCHECK);
40
41 /*
42 * Enable/disable UAO so that copy_to_user() etc can access
43 * kernel memory with the unprivileged instructions.
44 */
45 if (IS_ENABLED(CONFIG_ARM64_UAO) && fs == KERNEL_DS)
46 asm(ALTERNATIVE("nop", SET_PSTATE_UAO(1), ARM64_HAS_UAO));
47 else
48 asm(ALTERNATIVE("nop", SET_PSTATE_UAO(0), ARM64_HAS_UAO,
49 CONFIG_ARM64_UAO));
50}
51
52#define segment_eq(a, b) ((a) == (b))
53
54/*
55 * Test whether a block of memory is a valid user space address.
56 * Returns 1 if the range is valid, 0 otherwise.
57 *
58 * This is equivalent to the following test:
59 * (u65)addr + (u65)size <= (u65)current->addr_limit + 1
60 */
61static inline unsigned long __range_ok(const void __user *addr, unsigned long size)
62{
63 unsigned long ret, limit = current_thread_info()->addr_limit;
64
Olivier Deprez0e641232021-09-23 10:07:05 +020065 /*
66 * Asynchronous I/O running in a kernel thread does not have the
67 * TIF_TAGGED_ADDR flag of the process owning the mm, so always untag
68 * the user address before checking.
69 */
David Brazdil0f672f62019-12-10 10:32:29 +000070 if (IS_ENABLED(CONFIG_ARM64_TAGGED_ADDR_ABI) &&
Olivier Deprez0e641232021-09-23 10:07:05 +020071 (current->flags & PF_KTHREAD || test_thread_flag(TIF_TAGGED_ADDR)))
David Brazdil0f672f62019-12-10 10:32:29 +000072 addr = untagged_addr(addr);
73
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000074 __chk_user_ptr(addr);
75 asm volatile(
76 // A + B <= C + 1 for all A,B,C, in four easy steps:
77 // 1: X = A + B; X' = X % 2^64
78 " adds %0, %3, %2\n"
79 // 2: Set C = 0 if X > 2^64, to guarantee X' > C in step 4
80 " csel %1, xzr, %1, hi\n"
81 // 3: Set X' = ~0 if X >= 2^64. For X == 2^64, this decrements X'
82 // to compensate for the carry flag being set in step 4. For
83 // X > 2^64, X' merely has to remain nonzero, which it does.
84 " csinv %0, %0, xzr, cc\n"
85 // 4: For X < 2^64, this gives us X' - C - 1 <= 0, where the -1
86 // comes from the carry in being clear. Otherwise, we are
87 // testing X' - C == 0, subject to the previous adjustments.
88 " sbcs xzr, %0, %1\n"
89 " cset %0, ls\n"
90 : "=&r" (ret), "+r" (limit) : "Ir" (size), "0" (addr) : "cc");
91
92 return ret;
93}
94
David Brazdil0f672f62019-12-10 10:32:29 +000095#define access_ok(addr, size) __range_ok(addr, size)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000096#define user_addr_max get_fs
97
98#define _ASM_EXTABLE(from, to) \
99 " .pushsection __ex_table, \"a\"\n" \
100 " .align 3\n" \
101 " .long (" #from " - .), (" #to " - .)\n" \
102 " .popsection\n"
103
104/*
105 * User access enabling/disabling.
106 */
107#ifdef CONFIG_ARM64_SW_TTBR0_PAN
108static inline void __uaccess_ttbr0_disable(void)
109{
110 unsigned long flags, ttbr;
111
112 local_irq_save(flags);
113 ttbr = read_sysreg(ttbr1_el1);
114 ttbr &= ~TTBR_ASID_MASK;
Olivier Deprez0e641232021-09-23 10:07:05 +0200115 /* reserved_pg_dir placed before swapper_pg_dir */
116 write_sysreg(ttbr - PAGE_SIZE, ttbr0_el1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000117 isb();
118 /* Set reserved ASID */
119 write_sysreg(ttbr, ttbr1_el1);
120 isb();
121 local_irq_restore(flags);
122}
123
124static inline void __uaccess_ttbr0_enable(void)
125{
126 unsigned long flags, ttbr0, ttbr1;
127
128 /*
129 * Disable interrupts to avoid preemption between reading the 'ttbr0'
130 * variable and the MSR. A context switch could trigger an ASID
131 * roll-over and an update of 'ttbr0'.
132 */
133 local_irq_save(flags);
134 ttbr0 = READ_ONCE(current_thread_info()->ttbr0);
135
136 /* Restore active ASID */
137 ttbr1 = read_sysreg(ttbr1_el1);
138 ttbr1 &= ~TTBR_ASID_MASK; /* safety measure */
139 ttbr1 |= ttbr0 & TTBR_ASID_MASK;
140 write_sysreg(ttbr1, ttbr1_el1);
141 isb();
142
143 /* Restore user page table */
144 write_sysreg(ttbr0, ttbr0_el1);
145 isb();
146 local_irq_restore(flags);
147}
148
149static inline bool uaccess_ttbr0_disable(void)
150{
151 if (!system_uses_ttbr0_pan())
152 return false;
153 __uaccess_ttbr0_disable();
154 return true;
155}
156
157static inline bool uaccess_ttbr0_enable(void)
158{
159 if (!system_uses_ttbr0_pan())
160 return false;
161 __uaccess_ttbr0_enable();
162 return true;
163}
164#else
165static inline bool uaccess_ttbr0_disable(void)
166{
167 return false;
168}
169
170static inline bool uaccess_ttbr0_enable(void)
171{
172 return false;
173}
174#endif
175
176static inline void __uaccess_disable_hw_pan(void)
177{
178 asm(ALTERNATIVE("nop", SET_PSTATE_PAN(0), ARM64_HAS_PAN,
179 CONFIG_ARM64_PAN));
180}
181
182static inline void __uaccess_enable_hw_pan(void)
183{
184 asm(ALTERNATIVE("nop", SET_PSTATE_PAN(1), ARM64_HAS_PAN,
185 CONFIG_ARM64_PAN));
186}
187
188#define __uaccess_disable(alt) \
189do { \
190 if (!uaccess_ttbr0_disable()) \
191 asm(ALTERNATIVE("nop", SET_PSTATE_PAN(1), alt, \
192 CONFIG_ARM64_PAN)); \
193} while (0)
194
195#define __uaccess_enable(alt) \
196do { \
197 if (!uaccess_ttbr0_enable()) \
198 asm(ALTERNATIVE("nop", SET_PSTATE_PAN(0), alt, \
199 CONFIG_ARM64_PAN)); \
200} while (0)
201
202static inline void uaccess_disable(void)
203{
204 __uaccess_disable(ARM64_HAS_PAN);
205}
206
207static inline void uaccess_enable(void)
208{
209 __uaccess_enable(ARM64_HAS_PAN);
210}
211
212/*
213 * These functions are no-ops when UAO is present.
214 */
215static inline void uaccess_disable_not_uao(void)
216{
217 __uaccess_disable(ARM64_ALT_PAN_NOT_UAO);
218}
219
220static inline void uaccess_enable_not_uao(void)
221{
222 __uaccess_enable(ARM64_ALT_PAN_NOT_UAO);
223}
224
225/*
226 * Sanitise a uaccess pointer such that it becomes NULL if above the
David Brazdil0f672f62019-12-10 10:32:29 +0000227 * current addr_limit. In case the pointer is tagged (has the top byte set),
228 * untag the pointer before checking.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000229 */
230#define uaccess_mask_ptr(ptr) (__typeof__(ptr))__uaccess_mask_ptr(ptr)
231static inline void __user *__uaccess_mask_ptr(const void __user *ptr)
232{
233 void __user *safe_ptr;
234
235 asm volatile(
David Brazdil0f672f62019-12-10 10:32:29 +0000236 " bics xzr, %3, %2\n"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000237 " csel %0, %1, xzr, eq\n"
238 : "=&r" (safe_ptr)
David Brazdil0f672f62019-12-10 10:32:29 +0000239 : "r" (ptr), "r" (current_thread_info()->addr_limit),
240 "r" (untagged_addr(ptr))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000241 : "cc");
242
243 csdb();
244 return safe_ptr;
245}
246
247/*
248 * The "__xxx" versions of the user access functions do not verify the address
249 * space - it must have been done previously with a separate "access_ok()"
250 * call.
251 *
252 * The "__xxx_error" versions set the third argument to -EFAULT if an error
253 * occurs, and leave it unchanged on success.
254 */
255#define __get_user_asm(instr, alt_instr, reg, x, addr, err, feature) \
256 asm volatile( \
257 "1:"ALTERNATIVE(instr " " reg "1, [%2]\n", \
258 alt_instr " " reg "1, [%2]\n", feature) \
259 "2:\n" \
260 " .section .fixup, \"ax\"\n" \
261 " .align 2\n" \
262 "3: mov %w0, %3\n" \
263 " mov %1, #0\n" \
264 " b 2b\n" \
265 " .previous\n" \
266 _ASM_EXTABLE(1b, 3b) \
267 : "+r" (err), "=&r" (x) \
268 : "r" (addr), "i" (-EFAULT))
269
David Brazdil0f672f62019-12-10 10:32:29 +0000270#define __raw_get_user(x, ptr, err) \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000271do { \
272 unsigned long __gu_val; \
273 __chk_user_ptr(ptr); \
274 uaccess_enable_not_uao(); \
275 switch (sizeof(*(ptr))) { \
276 case 1: \
277 __get_user_asm("ldrb", "ldtrb", "%w", __gu_val, (ptr), \
278 (err), ARM64_HAS_UAO); \
279 break; \
280 case 2: \
281 __get_user_asm("ldrh", "ldtrh", "%w", __gu_val, (ptr), \
282 (err), ARM64_HAS_UAO); \
283 break; \
284 case 4: \
285 __get_user_asm("ldr", "ldtr", "%w", __gu_val, (ptr), \
286 (err), ARM64_HAS_UAO); \
287 break; \
288 case 8: \
289 __get_user_asm("ldr", "ldtr", "%x", __gu_val, (ptr), \
290 (err), ARM64_HAS_UAO); \
291 break; \
292 default: \
293 BUILD_BUG(); \
294 } \
295 uaccess_disable_not_uao(); \
296 (x) = (__force __typeof__(*(ptr)))__gu_val; \
297} while (0)
298
David Brazdil0f672f62019-12-10 10:32:29 +0000299#define __get_user_error(x, ptr, err) \
300do { \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000301 __typeof__(*(ptr)) __user *__p = (ptr); \
302 might_fault(); \
David Brazdil0f672f62019-12-10 10:32:29 +0000303 if (access_ok(__p, sizeof(*__p))) { \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000304 __p = uaccess_mask_ptr(__p); \
David Brazdil0f672f62019-12-10 10:32:29 +0000305 __raw_get_user((x), __p, (err)); \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000306 } else { \
307 (x) = 0; (err) = -EFAULT; \
308 } \
David Brazdil0f672f62019-12-10 10:32:29 +0000309} while (0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000310
311#define __get_user(x, ptr) \
312({ \
313 int __gu_err = 0; \
David Brazdil0f672f62019-12-10 10:32:29 +0000314 __get_user_error((x), (ptr), __gu_err); \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000315 __gu_err; \
316})
317
318#define get_user __get_user
319
320#define __put_user_asm(instr, alt_instr, reg, x, addr, err, feature) \
321 asm volatile( \
322 "1:"ALTERNATIVE(instr " " reg "1, [%2]\n", \
323 alt_instr " " reg "1, [%2]\n", feature) \
324 "2:\n" \
325 " .section .fixup,\"ax\"\n" \
326 " .align 2\n" \
327 "3: mov %w0, %3\n" \
328 " b 2b\n" \
329 " .previous\n" \
330 _ASM_EXTABLE(1b, 3b) \
331 : "+r" (err) \
332 : "r" (x), "r" (addr), "i" (-EFAULT))
333
David Brazdil0f672f62019-12-10 10:32:29 +0000334#define __raw_put_user(x, ptr, err) \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000335do { \
336 __typeof__(*(ptr)) __pu_val = (x); \
337 __chk_user_ptr(ptr); \
338 uaccess_enable_not_uao(); \
339 switch (sizeof(*(ptr))) { \
340 case 1: \
341 __put_user_asm("strb", "sttrb", "%w", __pu_val, (ptr), \
342 (err), ARM64_HAS_UAO); \
343 break; \
344 case 2: \
345 __put_user_asm("strh", "sttrh", "%w", __pu_val, (ptr), \
346 (err), ARM64_HAS_UAO); \
347 break; \
348 case 4: \
349 __put_user_asm("str", "sttr", "%w", __pu_val, (ptr), \
350 (err), ARM64_HAS_UAO); \
351 break; \
352 case 8: \
353 __put_user_asm("str", "sttr", "%x", __pu_val, (ptr), \
354 (err), ARM64_HAS_UAO); \
355 break; \
356 default: \
357 BUILD_BUG(); \
358 } \
359 uaccess_disable_not_uao(); \
360} while (0)
361
David Brazdil0f672f62019-12-10 10:32:29 +0000362#define __put_user_error(x, ptr, err) \
363do { \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000364 __typeof__(*(ptr)) __user *__p = (ptr); \
365 might_fault(); \
David Brazdil0f672f62019-12-10 10:32:29 +0000366 if (access_ok(__p, sizeof(*__p))) { \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000367 __p = uaccess_mask_ptr(__p); \
David Brazdil0f672f62019-12-10 10:32:29 +0000368 __raw_put_user((x), __p, (err)); \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000369 } else { \
370 (err) = -EFAULT; \
371 } \
David Brazdil0f672f62019-12-10 10:32:29 +0000372} while (0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000373
374#define __put_user(x, ptr) \
375({ \
376 int __pu_err = 0; \
David Brazdil0f672f62019-12-10 10:32:29 +0000377 __put_user_error((x), (ptr), __pu_err); \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000378 __pu_err; \
379})
380
381#define put_user __put_user
382
383extern unsigned long __must_check __arch_copy_from_user(void *to, const void __user *from, unsigned long n);
384#define raw_copy_from_user(to, from, n) \
385({ \
David Brazdil0f672f62019-12-10 10:32:29 +0000386 unsigned long __acfu_ret; \
387 uaccess_enable_not_uao(); \
388 __acfu_ret = __arch_copy_from_user((to), \
389 __uaccess_mask_ptr(from), (n)); \
390 uaccess_disable_not_uao(); \
391 __acfu_ret; \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000392})
393
394extern unsigned long __must_check __arch_copy_to_user(void __user *to, const void *from, unsigned long n);
395#define raw_copy_to_user(to, from, n) \
396({ \
David Brazdil0f672f62019-12-10 10:32:29 +0000397 unsigned long __actu_ret; \
398 uaccess_enable_not_uao(); \
399 __actu_ret = __arch_copy_to_user(__uaccess_mask_ptr(to), \
400 (from), (n)); \
401 uaccess_disable_not_uao(); \
402 __actu_ret; \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000403})
404
405extern unsigned long __must_check __arch_copy_in_user(void __user *to, const void __user *from, unsigned long n);
406#define raw_copy_in_user(to, from, n) \
407({ \
David Brazdil0f672f62019-12-10 10:32:29 +0000408 unsigned long __aciu_ret; \
409 uaccess_enable_not_uao(); \
410 __aciu_ret = __arch_copy_in_user(__uaccess_mask_ptr(to), \
411 __uaccess_mask_ptr(from), (n)); \
412 uaccess_disable_not_uao(); \
413 __aciu_ret; \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000414})
415
416#define INLINE_COPY_TO_USER
417#define INLINE_COPY_FROM_USER
418
419extern unsigned long __must_check __arch_clear_user(void __user *to, unsigned long n);
420static inline unsigned long __must_check __clear_user(void __user *to, unsigned long n)
421{
David Brazdil0f672f62019-12-10 10:32:29 +0000422 if (access_ok(to, n)) {
423 uaccess_enable_not_uao();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000424 n = __arch_clear_user(__uaccess_mask_ptr(to), n);
David Brazdil0f672f62019-12-10 10:32:29 +0000425 uaccess_disable_not_uao();
426 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000427 return n;
428}
429#define clear_user __clear_user
430
431extern long strncpy_from_user(char *dest, const char __user *src, long count);
432
433extern __must_check long strnlen_user(const char __user *str, long n);
434
435#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
436struct page;
437void memcpy_page_flushcache(char *to, struct page *page, size_t offset, size_t len);
438extern unsigned long __must_check __copy_user_flushcache(void *to, const void __user *from, unsigned long n);
439
440static inline int __copy_from_user_flushcache(void *dst, const void __user *src, unsigned size)
441{
442 kasan_check_write(dst, size);
443 return __copy_user_flushcache(dst, __uaccess_mask_ptr(src), size);
444}
445#endif
446
447#endif /* __ASM_UACCESS_H */