1 #ifndef _ASM_X86_UACCESS_H
2 #define _ASM_X86_UACCESS_H
4 * User space memory access functions
6 #include <linux/errno.h>
7 #include <linux/compiler.h>
8 #include <linux/kasan-checks.h>
9 #include <linux/thread_info.h>
10 #include <linux/string.h>
16 #define VERIFY_WRITE 1
19 * The fs value determines whether argument validity checking should be
20 * performed or not. If get_fs() == USER_DS, checking is performed, with
21 * get_fs() == KERNEL_DS, checking is bypassed.
23 * For historical reasons, these macros are grossly misnamed.
26 #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
28 #define KERNEL_DS MAKE_MM_SEG(-1UL)
29 #define USER_DS MAKE_MM_SEG(TASK_SIZE_MAX)
31 #define get_ds() (KERNEL_DS)
32 #define get_fs() (current->thread.addr_limit)
33 #define set_fs(x) (current->thread.addr_limit = (x))
35 #define segment_eq(a, b) ((a).seg == (b).seg)
37 #define user_addr_max() (current->thread.addr_limit.seg)
38 #define __addr_ok(addr) \
39 ((unsigned long __force)(addr) < user_addr_max())
42 * Test whether a block of memory is a valid user space address.
43 * Returns 0 if the range is valid, nonzero otherwise.
45 static inline bool __chk_range_not_ok(unsigned long addr, unsigned long size, unsigned long limit)
48 * If we have used "sizeof()" for the size,
49 * we know it won't overflow the limit (but
50 * it might overflow the 'addr', so it's
51 * important to subtract the size from the
52 * limit, not add it to the address).
54 if (__builtin_constant_p(size))
55 return unlikely(addr > limit - size);
57 /* Arbitrary sizes? Be careful about overflow */
59 if (unlikely(addr < size))
61 return unlikely(addr > limit);
64 #define __range_not_ok(addr, size, limit) \
66 __chk_user_ptr(addr); \
67 __chk_range_not_ok((unsigned long __force)(addr), size, limit); \
71 * access_ok: - Checks if a user space pointer is valid
72 * @type: Type of access: %VERIFY_READ or %VERIFY_WRITE. Note that
73 * %VERIFY_WRITE is a superset of %VERIFY_READ - if it is safe
74 * to write to a block, it is always safe to read from it.
75 * @addr: User space pointer to start of block to check
76 * @size: Size of block to check
78 * Context: User context only. This function may sleep if pagefaults are
81 * Checks if a pointer to a block of memory in user space is valid.
83 * Returns true (nonzero) if the memory block may be valid, false (zero)
84 * if it is definitely invalid.
86 * Note that, depending on architecture, this function probably just
87 * checks that the pointer is in the user space range - after calling
88 * this function, memory access functions may still return -EFAULT.
90 #define access_ok(type, addr, size) \
91 likely(!__range_not_ok(addr, size, user_addr_max()))
94 * The exception table consists of triples of addresses relative to the
95 * exception table entry itself. The first address is of an instruction
96 * that is allowed to fault, the second is the target at which the program
97 * should continue. The third is a handler function to deal with the fault
98 * caused by the instruction in the first field.
100 * All the routines below use bits of fixup code that are out of line
101 * with the main instruction path. This means when everything is well,
102 * we don't even have to jump over them. Further, they do not intrude
103 * on our cache or tlb entries.
106 struct exception_table_entry {
107 int insn, fixup, handler;
110 #define ARCH_HAS_RELATIVE_EXTABLE
112 #define swap_ex_entry_fixup(a, b, tmp, delta) \
114 (a)->fixup = (b)->fixup + (delta); \
115 (b)->fixup = (tmp).fixup - (delta); \
116 (a)->handler = (b)->handler + (delta); \
117 (b)->handler = (tmp).handler - (delta); \
120 extern int fixup_exception(struct pt_regs *regs, int trapnr);
121 extern bool ex_has_fault_handler(unsigned long ip);
122 extern void early_fixup_exception(struct pt_regs *regs, int trapnr);
125 * These are the main single-value transfer routines. They automatically
126 * use the right size if we just have the right pointer type.
128 * This gets kind of ugly. We want to return _two_ values in "get_user()"
129 * and yet we don't want to do any pointers, because that is too much
130 * of a performance impact. Thus we have a few rather ugly macros here,
131 * and hide all the ugliness from the user.
133 * The "__xxx" versions of the user access functions are versions that
134 * do not verify the address space, that must have been done previously
135 * with a separate "access_ok()" call (this is used when we do multiple
136 * accesses to the same area of user memory).
139 extern int __get_user_1(void);
140 extern int __get_user_2(void);
141 extern int __get_user_4(void);
142 extern int __get_user_8(void);
143 extern int __get_user_bad(void);
145 #define __uaccess_begin() stac()
146 #define __uaccess_end() clac()
149 * This is a type: either unsigned long, if the argument fits into
150 * that type, or otherwise unsigned long long.
152 #define __inttype(x) \
153 __typeof__(__builtin_choose_expr(sizeof(x) > sizeof(0UL), 0ULL, 0UL))
156 * get_user: - Get a simple variable from user space.
157 * @x: Variable to store result.
158 * @ptr: Source address, in user space.
160 * Context: User context only. This function may sleep if pagefaults are
163 * This macro copies a single simple variable from user space to kernel
164 * space. It supports simple types like char and int, but not larger
165 * data types like structures or arrays.
167 * @ptr must have pointer-to-simple-variable type, and the result of
168 * dereferencing @ptr must be assignable to @x without a cast.
170 * Returns zero on success, or -EFAULT on error.
171 * On error, the variable @x is set to zero.
174 * Careful: we have to cast the result to the type of the pointer
177 * The use of _ASM_DX as the register specifier is a bit of a
178 * simplification, as gcc only cares about it as the starting point
179 * and not size: for a 64-bit value it will use %ecx:%edx on 32 bits
180 * (%ecx being the next register in gcc's x86 register sequence), and
183 * Clang/LLVM cares about the size of the register, but still wants
184 * the base register for something that ends up being a pair.
186 #define get_user(x, ptr) \
189 register __inttype(*(ptr)) __val_gu asm("%"_ASM_DX); \
190 register void *__sp asm(_ASM_SP); \
191 __chk_user_ptr(ptr); \
193 asm volatile("call __get_user_%P4" \
194 : "=a" (__ret_gu), "=r" (__val_gu), "+r" (__sp) \
195 : "0" (ptr), "i" (sizeof(*(ptr)))); \
196 (x) = (__force __typeof__(*(ptr))) __val_gu; \
197 __builtin_expect(__ret_gu, 0); \
200 #define __put_user_x(size, x, ptr, __ret_pu) \
201 asm volatile("call __put_user_" #size : "=a" (__ret_pu) \
202 : "0" ((typeof(*(ptr)))(x)), "c" (ptr) : "ebx")
207 #define __put_user_asm_u64(x, addr, err, errret) \
209 "1: movl %%eax,0(%2)\n" \
210 "2: movl %%edx,4(%2)\n" \
212 ".section .fixup,\"ax\"\n" \
216 _ASM_EXTABLE(1b, 4b) \
217 _ASM_EXTABLE(2b, 4b) \
219 : "A" (x), "r" (addr), "i" (errret), "0" (err))
221 #define __put_user_asm_ex_u64(x, addr) \
223 "1: movl %%eax,0(%1)\n" \
224 "2: movl %%edx,4(%1)\n" \
226 _ASM_EXTABLE_EX(1b, 2b) \
227 _ASM_EXTABLE_EX(2b, 3b) \
228 : : "A" (x), "r" (addr))
230 #define __put_user_x8(x, ptr, __ret_pu) \
231 asm volatile("call __put_user_8" : "=a" (__ret_pu) \
232 : "A" ((typeof(*(ptr)))(x)), "c" (ptr) : "ebx")
234 #define __put_user_asm_u64(x, ptr, retval, errret) \
235 __put_user_asm(x, ptr, retval, "q", "", "er", errret)
236 #define __put_user_asm_ex_u64(x, addr) \
237 __put_user_asm_ex(x, addr, "q", "", "er")
238 #define __put_user_x8(x, ptr, __ret_pu) __put_user_x(8, x, ptr, __ret_pu)
241 extern void __put_user_bad(void);
244 * Strange magic calling convention: pointer in %ecx,
245 * value in %eax(:%edx), return value in %eax. clobbers %rbx
247 extern void __put_user_1(void);
248 extern void __put_user_2(void);
249 extern void __put_user_4(void);
250 extern void __put_user_8(void);
253 * put_user: - Write a simple value into user space.
254 * @x: Value to copy to user space.
255 * @ptr: Destination address, in user space.
257 * Context: User context only. This function may sleep if pagefaults are
260 * This macro copies a single simple value from kernel space to user
261 * space. It supports simple types like char and int, but not larger
262 * data types like structures or arrays.
264 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
265 * to the result of dereferencing @ptr.
267 * Returns zero on success, or -EFAULT on error.
269 #define put_user(x, ptr) \
272 __typeof__(*(ptr)) __pu_val; \
273 __chk_user_ptr(ptr); \
276 switch (sizeof(*(ptr))) { \
278 __put_user_x(1, __pu_val, ptr, __ret_pu); \
281 __put_user_x(2, __pu_val, ptr, __ret_pu); \
284 __put_user_x(4, __pu_val, ptr, __ret_pu); \
287 __put_user_x8(__pu_val, ptr, __ret_pu); \
290 __put_user_x(X, __pu_val, ptr, __ret_pu); \
293 __builtin_expect(__ret_pu, 0); \
296 #define __put_user_size(x, ptr, size, retval, errret) \
299 __chk_user_ptr(ptr); \
302 __put_user_asm(x, ptr, retval, "b", "b", "iq", errret); \
305 __put_user_asm(x, ptr, retval, "w", "w", "ir", errret); \
308 __put_user_asm(x, ptr, retval, "l", "k", "ir", errret); \
311 __put_user_asm_u64((__typeof__(*ptr))(x), ptr, retval, \
320 * This doesn't do __uaccess_begin/end - the exception handling
321 * around it must do that.
323 #define __put_user_size_ex(x, ptr, size) \
325 __chk_user_ptr(ptr); \
328 __put_user_asm_ex(x, ptr, "b", "b", "iq"); \
331 __put_user_asm_ex(x, ptr, "w", "w", "ir"); \
334 __put_user_asm_ex(x, ptr, "l", "k", "ir"); \
337 __put_user_asm_ex_u64((__typeof__(*ptr))(x), ptr); \
345 #define __get_user_asm_u64(x, ptr, retval, errret) \
347 __typeof__(ptr) __ptr = (ptr); \
348 asm volatile(ASM_STAC "\n" \
349 "1: movl %2,%%eax\n" \
350 "2: movl %3,%%edx\n" \
351 "3: " ASM_CLAC "\n" \
352 ".section .fixup,\"ax\"\n" \
354 " xorl %%eax,%%eax\n" \
355 " xorl %%edx,%%edx\n" \
358 _ASM_EXTABLE(1b, 4b) \
359 _ASM_EXTABLE(2b, 4b) \
360 : "=r" (retval), "=A"(x) \
361 : "m" (__m(__ptr)), "m" __m(((u32 *)(__ptr)) + 1), \
362 "i" (errret), "0" (retval)); \
365 #define __get_user_asm_ex_u64(x, ptr) (x) = __get_user_bad()
367 #define __get_user_asm_u64(x, ptr, retval, errret) \
368 __get_user_asm(x, ptr, retval, "q", "", "=r", errret)
369 #define __get_user_asm_ex_u64(x, ptr) \
370 __get_user_asm_ex(x, ptr, "q", "", "=r")
373 #define __get_user_size(x, ptr, size, retval, errret) \
376 __chk_user_ptr(ptr); \
379 __get_user_asm(x, ptr, retval, "b", "b", "=q", errret); \
382 __get_user_asm(x, ptr, retval, "w", "w", "=r", errret); \
385 __get_user_asm(x, ptr, retval, "l", "k", "=r", errret); \
388 __get_user_asm_u64(x, ptr, retval, errret); \
391 (x) = __get_user_bad(); \
395 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) \
397 "1: mov"itype" %2,%"rtype"1\n" \
399 ".section .fixup,\"ax\"\n" \
401 " xor"itype" %"rtype"1,%"rtype"1\n" \
404 _ASM_EXTABLE(1b, 3b) \
405 : "=r" (err), ltype(x) \
406 : "m" (__m(addr)), "i" (errret), "0" (err))
409 * This doesn't do __uaccess_begin/end - the exception handling
410 * around it must do that.
412 #define __get_user_size_ex(x, ptr, size) \
414 __chk_user_ptr(ptr); \
417 __get_user_asm_ex(x, ptr, "b", "b", "=q"); \
420 __get_user_asm_ex(x, ptr, "w", "w", "=r"); \
423 __get_user_asm_ex(x, ptr, "l", "k", "=r"); \
426 __get_user_asm_ex_u64(x, ptr); \
429 (x) = __get_user_bad(); \
433 #define __get_user_asm_ex(x, addr, itype, rtype, ltype) \
434 asm volatile("1: mov"itype" %1,%"rtype"0\n" \
436 ".section .fixup,\"ax\"\n" \
437 "3:xor"itype" %"rtype"0,%"rtype"0\n" \
440 _ASM_EXTABLE_EX(1b, 3b) \
441 : ltype(x) : "m" (__m(addr)))
443 #define __put_user_nocheck(x, ptr, size) \
447 __put_user_size((x), (ptr), (size), __pu_err, -EFAULT); \
449 __builtin_expect(__pu_err, 0); \
452 #define __get_user_nocheck(x, ptr, size) \
455 __inttype(*(ptr)) __gu_val; \
457 __get_user_size(__gu_val, (ptr), (size), __gu_err, -EFAULT); \
459 (x) = (__force __typeof__(*(ptr)))__gu_val; \
460 __builtin_expect(__gu_err, 0); \
463 /* FIXME: this hack is definitely wrong -AK */
464 struct __large_struct { unsigned long buf[100]; };
465 #define __m(x) (*(struct __large_struct __user *)(x))
468 * Tell gcc we read from memory instead of writing: this is because
469 * we do not write to any memory gcc knows about, so there are no
472 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) \
474 "1: mov"itype" %"rtype"1,%2\n" \
476 ".section .fixup,\"ax\"\n" \
480 _ASM_EXTABLE(1b, 3b) \
482 : ltype(x), "m" (__m(addr)), "i" (errret), "0" (err))
484 #define __put_user_asm_ex(x, addr, itype, rtype, ltype) \
485 asm volatile("1: mov"itype" %"rtype"0,%1\n" \
487 _ASM_EXTABLE_EX(1b, 2b) \
488 : : ltype(x), "m" (__m(addr)))
491 * uaccess_try and catch
493 #define uaccess_try do { \
494 current->thread.uaccess_err = 0; \
498 #define uaccess_catch(err) \
500 (err) |= (current->thread.uaccess_err ? -EFAULT : 0); \
504 * __get_user: - Get a simple variable from user space, with less checking.
505 * @x: Variable to store result.
506 * @ptr: Source address, in user space.
508 * Context: User context only. This function may sleep if pagefaults are
511 * This macro copies a single simple variable from user space to kernel
512 * space. It supports simple types like char and int, but not larger
513 * data types like structures or arrays.
515 * @ptr must have pointer-to-simple-variable type, and the result of
516 * dereferencing @ptr must be assignable to @x without a cast.
518 * Caller must check the pointer with access_ok() before calling this
521 * Returns zero on success, or -EFAULT on error.
522 * On error, the variable @x is set to zero.
525 #define __get_user(x, ptr) \
526 __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
529 * __put_user: - Write a simple value into user space, with less checking.
530 * @x: Value to copy to user space.
531 * @ptr: Destination address, in user space.
533 * Context: User context only. This function may sleep if pagefaults are
536 * This macro copies a single simple value from kernel space to user
537 * space. It supports simple types like char and int, but not larger
538 * data types like structures or arrays.
540 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
541 * to the result of dereferencing @ptr.
543 * Caller must check the pointer with access_ok() before calling this
546 * Returns zero on success, or -EFAULT on error.
549 #define __put_user(x, ptr) \
550 __put_user_nocheck((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
552 #define __get_user_unaligned __get_user
553 #define __put_user_unaligned __put_user
556 * {get|put}_user_try and catch
560 * } get_user_catch(err)
562 #define get_user_try uaccess_try
563 #define get_user_catch(err) uaccess_catch(err)
565 #define get_user_ex(x, ptr) do { \
566 unsigned long __gue_val; \
567 __get_user_size_ex((__gue_val), (ptr), (sizeof(*(ptr)))); \
568 (x) = (__force __typeof__(*(ptr)))__gue_val; \
571 #define put_user_try uaccess_try
572 #define put_user_catch(err) uaccess_catch(err)
574 #define put_user_ex(x, ptr) \
575 __put_user_size_ex((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
578 copy_from_user_nmi(void *to, const void __user *from, unsigned long n);
579 extern __must_check long
580 strncpy_from_user(char *dst, const char __user *src, long count);
582 extern __must_check long strlen_user(const char __user *str);
583 extern __must_check long strnlen_user(const char __user *str, long n);
585 unsigned long __must_check clear_user(void __user *mem, unsigned long len);
586 unsigned long __must_check __clear_user(void __user *mem, unsigned long len);
588 extern void __cmpxchg_wrong_size(void)
589 __compiletime_error("Bad argument size for cmpxchg");
591 #define __user_atomic_cmpxchg_inatomic(uval, ptr, old, new, size) \
594 __typeof__(ptr) __uval = (uval); \
595 __typeof__(*(ptr)) __old = (old); \
596 __typeof__(*(ptr)) __new = (new); \
602 "1:\t" LOCK_PREFIX "cmpxchgb %4, %2\n" \
604 "\t.section .fixup, \"ax\"\n" \
608 _ASM_EXTABLE(1b, 3b) \
609 : "+r" (__ret), "=a" (__old), "+m" (*(ptr)) \
610 : "i" (-EFAULT), "q" (__new), "1" (__old) \
618 "1:\t" LOCK_PREFIX "cmpxchgw %4, %2\n" \
620 "\t.section .fixup, \"ax\"\n" \
624 _ASM_EXTABLE(1b, 3b) \
625 : "+r" (__ret), "=a" (__old), "+m" (*(ptr)) \
626 : "i" (-EFAULT), "r" (__new), "1" (__old) \
634 "1:\t" LOCK_PREFIX "cmpxchgl %4, %2\n" \
636 "\t.section .fixup, \"ax\"\n" \
640 _ASM_EXTABLE(1b, 3b) \
641 : "+r" (__ret), "=a" (__old), "+m" (*(ptr)) \
642 : "i" (-EFAULT), "r" (__new), "1" (__old) \
649 if (!IS_ENABLED(CONFIG_X86_64)) \
650 __cmpxchg_wrong_size(); \
653 "1:\t" LOCK_PREFIX "cmpxchgq %4, %2\n" \
655 "\t.section .fixup, \"ax\"\n" \
659 _ASM_EXTABLE(1b, 3b) \
660 : "+r" (__ret), "=a" (__old), "+m" (*(ptr)) \
661 : "i" (-EFAULT), "r" (__new), "1" (__old) \
667 __cmpxchg_wrong_size(); \
674 #define user_atomic_cmpxchg_inatomic(uval, ptr, old, new) \
676 access_ok(VERIFY_WRITE, (ptr), sizeof(*(ptr))) ? \
677 __user_atomic_cmpxchg_inatomic((uval), (ptr), \
678 (old), (new), sizeof(*(ptr))) : \
683 * movsl can be slow when source and dest are not both 8-byte aligned
685 #ifdef CONFIG_X86_INTEL_USERCOPY
686 extern struct movsl_mask {
688 } ____cacheline_aligned_in_smp movsl_mask;
691 #define ARCH_HAS_NOCACHE_UACCESS 1
694 # include <asm/uaccess_32.h>
696 # include <asm/uaccess_64.h>
699 unsigned long __must_check _copy_from_user(void *to, const void __user *from,
701 unsigned long __must_check _copy_to_user(void __user *to, const void *from,
704 extern void __compiletime_error("usercopy buffer size is too small")
705 __bad_copy_user(void);
707 static inline void copy_user_overflow(int size, unsigned long count)
709 WARN(1, "Buffer overflow detected (%d < %lu)!\n", size, count);
712 static __always_inline unsigned long __must_check
713 copy_from_user(void *to, const void __user *from, unsigned long n)
715 int sz = __compiletime_object_size(to);
719 kasan_check_write(to, n);
721 if (likely(sz < 0 || sz >= n)) {
722 check_object_size(to, n, false);
723 n = _copy_from_user(to, from, n);
724 } else if (!__builtin_constant_p(n))
725 copy_user_overflow(sz, n);
732 static __always_inline unsigned long __must_check
733 copy_to_user(void __user *to, const void *from, unsigned long n)
735 int sz = __compiletime_object_size(from);
737 kasan_check_read(from, n);
741 if (likely(sz < 0 || sz >= n)) {
742 check_object_size(from, n, true);
743 n = _copy_to_user(to, from, n);
744 } else if (!__builtin_constant_p(n))
745 copy_user_overflow(sz, n);
753 * We rely on the nested NMI work to allow atomic faults from the NMI path; the
754 * nested NMI paths are careful to preserve CR2.
756 * Caller must use pagefault_enable/disable, or run in interrupt context,
757 * and also do a uaccess_ok() check
759 #define __copy_from_user_nmi __copy_from_user_inatomic
762 * The "unsafe" user accesses aren't really "unsafe", but the naming
763 * is a big fat warning: you have to not only do the access_ok()
764 * checking before using them, but you have to surround them with the
765 * user_access_begin/end() pair.
767 #define user_access_begin() __uaccess_begin()
768 #define user_access_end() __uaccess_end()
770 #define unsafe_put_user(x, ptr, err_label) \
773 __put_user_size((x), (ptr), sizeof(*(ptr)), __pu_err, -EFAULT); \
774 if (unlikely(__pu_err)) goto err_label; \
777 #define unsafe_get_user(x, ptr, err_label) \
780 unsigned long __gu_val; \
781 __get_user_size(__gu_val, (ptr), sizeof(*(ptr)), __gu_err, -EFAULT); \
782 (x) = (__force __typeof__(*(ptr)))__gu_val; \
783 if (unlikely(__gu_err)) goto err_label; \
786 #endif /* _ASM_X86_UACCESS_H */