uaccess_64.h 3.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
H
H. Peter Anvin 已提交
2 3
#ifndef _ASM_X86_UACCESS_64_H
#define _ASM_X86_UACCESS_64_H
L
Linus Torvalds 已提交
4 5 6 7 8

/*
 * User space memory access functions
 */
#include <linux/compiler.h>
9
#include <linux/lockdep.h>
10
#include <linux/kasan-checks.h>
11
#include <asm/alternative.h>
12
#include <asm/cpufeatures.h>
L
Linus Torvalds 已提交
13 14 15 16 17 18 19
#include <asm/page.h>

/*
 * Copy To/From Userspace
 */

/* Handles exceptions in both to and from, but doesn't do access_ok */
20
__must_check unsigned long
21 22
copy_user_enhanced_fast_string(void *to, const void *from, unsigned len);
__must_check unsigned long
23 24 25 26 27 28 29 30 31
copy_user_generic_string(void *to, const void *from, unsigned len);
__must_check unsigned long
copy_user_generic_unrolled(void *to, const void *from, unsigned len);

static __always_inline __must_check unsigned long
copy_user_generic(void *to, const void *from, unsigned len)
{
	unsigned ret;

32 33 34 35 36 37
	/*
	 * If CPU has ERMS feature, use copy_user_enhanced_fast_string.
	 * Otherwise, if CPU has rep_good feature, use copy_user_generic_string.
	 * Otherwise, use copy_user_generic_unrolled.
	 */
	alternative_call_2(copy_user_generic_unrolled,
38 39
			 copy_user_generic_string,
			 X86_FEATURE_REP_GOOD,
40 41
			 copy_user_enhanced_fast_string,
			 X86_FEATURE_ERMS,
42 43 44 45 46 47
			 ASM_OUTPUT2("=a" (ret), "=D" (to), "=S" (from),
				     "=d" (len)),
			 "1" (to), "2" (from), "3" (len)
			 : "memory", "rcx", "r8", "r9", "r10", "r11");
	return ret;
}
48

A
Al Viro 已提交
49
static __always_inline __must_check unsigned long
50 51 52 53 54
copy_to_user_mcsafe(void *to, const void *from, unsigned len)
{
	unsigned long ret;

	__uaccess_begin();
55 56 57 58 59 60
	/*
	 * Note, __memcpy_mcsafe() is explicitly used since it can
	 * handle exceptions / faults.  memcpy_mcsafe() may fall back to
	 * memcpy() which lacks this handling.
	 */
	ret = __memcpy_mcsafe(to, from, len);
61 62 63 64 65
	__uaccess_end();
	return ret;
}

static __always_inline __must_check unsigned long
A
Al Viro 已提交
66
raw_copy_from_user(void *dst, const void __user *src, unsigned long size)
67
{
68
	return copy_user_generic(dst, (__force void *)src, size);
69
}
L
Linus Torvalds 已提交
70

A
Al Viro 已提交
71 72
static __always_inline __must_check unsigned long
raw_copy_to_user(void __user *dst, const void *src, unsigned long size)
73
{
74
	return copy_user_generic((__force void *)dst, src, size);
75
}
L
Linus Torvalds 已提交
76

77
static __always_inline __must_check
A
Al Viro 已提交
78
unsigned long raw_copy_in_user(void __user *dst, const void __user *src, unsigned long size)
79
{
80 81
	return copy_user_generic((__force void *)dst,
				 (__force void *)src, size);
82
}
L
Linus Torvalds 已提交
83

84 85
extern long __copy_user_nocache(void *dst, const void __user *src,
				unsigned size, int zerorest);
86

87 88 89 90
extern long __copy_user_flushcache(void *dst, const void __user *src, unsigned size);
extern void memcpy_page_flushcache(char *to, struct page *page, size_t offset,
			   size_t len);

91 92 93
static inline int
__copy_from_user_inatomic_nocache(void *dst, const void __user *src,
				  unsigned size)
94
{
95
	kasan_check_write(dst, size);
96
	return __copy_user_nocache(dst, src, size, 0);
97 98
}

99 100 101 102 103 104 105
static inline int
__copy_from_user_flushcache(void *dst, const void __user *src, unsigned size)
{
	kasan_check_write(dst, size);
	return __copy_user_flushcache(dst, src, size);
}

106 107 108
unsigned long
mcsafe_handle_tail(char *to, char *from, unsigned len);

H
H. Peter Anvin 已提交
109
#endif /* _ASM_X86_UACCESS_64_H */