diff options
| -rw-r--r-- | arch/x86/include/asm/uaccess_64.h | 10 | ||||
| -rw-r--r-- | arch/x86/kernel/x8664_ksyms_64.c | 2 | ||||
| -rw-r--r-- | arch/x86/lib/copy_user_64.S | 4 |
3 files changed, 12 insertions, 4 deletions
diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h index 7adebacaa325..46324c6a4f6e 100644 --- a/arch/x86/include/asm/uaccess_64.h +++ b/arch/x86/include/asm/uaccess_64.h | |||
| @@ -19,7 +19,7 @@ __must_check unsigned long | |||
| 19 | copy_user_generic(void *to, const void *from, unsigned len); | 19 | copy_user_generic(void *to, const void *from, unsigned len); |
| 20 | 20 | ||
| 21 | __must_check unsigned long | 21 | __must_check unsigned long |
| 22 | copy_to_user(void __user *to, const void *from, unsigned len); | 22 | _copy_to_user(void __user *to, const void *from, unsigned len); |
| 23 | __must_check unsigned long | 23 | __must_check unsigned long |
| 24 | _copy_from_user(void *to, const void __user *from, unsigned len); | 24 | _copy_from_user(void *to, const void __user *from, unsigned len); |
| 25 | __must_check unsigned long | 25 | __must_check unsigned long |
| @@ -32,6 +32,7 @@ static inline unsigned long __must_check copy_from_user(void *to, | |||
| 32 | int sz = __compiletime_object_size(to); | 32 | int sz = __compiletime_object_size(to); |
| 33 | int ret = -EFAULT; | 33 | int ret = -EFAULT; |
| 34 | 34 | ||
| 35 | might_fault(); | ||
| 35 | if (likely(sz == -1 || sz >= n)) | 36 | if (likely(sz == -1 || sz >= n)) |
| 36 | ret = _copy_from_user(to, from, n); | 37 | ret = _copy_from_user(to, from, n); |
| 37 | #ifdef CONFIG_DEBUG_VM | 38 | #ifdef CONFIG_DEBUG_VM |
| @@ -41,6 +42,13 @@ static inline unsigned long __must_check copy_from_user(void *to, | |||
| 41 | return ret; | 42 | return ret; |
| 42 | } | 43 | } |
| 43 | 44 | ||
| 45 | static __always_inline __must_check | ||
| 46 | int copy_to_user(void __user *dst, const void *src, unsigned size) | ||
| 47 | { | ||
| 48 | might_fault(); | ||
| 49 | |||
| 50 | return _copy_to_user(dst, src, size); | ||
| 51 | } | ||
| 44 | 52 | ||
| 45 | static __always_inline __must_check | 53 | static __always_inline __must_check |
| 46 | int __copy_from_user(void *dst, const void __user *src, unsigned size) | 54 | int __copy_from_user(void *dst, const void __user *src, unsigned size) |
diff --git a/arch/x86/kernel/x8664_ksyms_64.c b/arch/x86/kernel/x8664_ksyms_64.c index cd54276b6be8..a1029769b6f2 100644 --- a/arch/x86/kernel/x8664_ksyms_64.c +++ b/arch/x86/kernel/x8664_ksyms_64.c | |||
| @@ -31,7 +31,7 @@ EXPORT_SYMBOL(__put_user_8); | |||
| 31 | EXPORT_SYMBOL(copy_user_generic); | 31 | EXPORT_SYMBOL(copy_user_generic); |
| 32 | EXPORT_SYMBOL(__copy_user_nocache); | 32 | EXPORT_SYMBOL(__copy_user_nocache); |
| 33 | EXPORT_SYMBOL(_copy_from_user); | 33 | EXPORT_SYMBOL(_copy_from_user); |
| 34 | EXPORT_SYMBOL(copy_to_user); | 34 | EXPORT_SYMBOL(_copy_to_user); |
| 35 | 35 | ||
| 36 | EXPORT_SYMBOL(copy_page); | 36 | EXPORT_SYMBOL(copy_page); |
| 37 | EXPORT_SYMBOL(clear_page); | 37 | EXPORT_SYMBOL(clear_page); |
diff --git a/arch/x86/lib/copy_user_64.S b/arch/x86/lib/copy_user_64.S index 39369985f1cb..cf889d4e076a 100644 --- a/arch/x86/lib/copy_user_64.S +++ b/arch/x86/lib/copy_user_64.S | |||
| @@ -65,7 +65,7 @@ | |||
| 65 | .endm | 65 | .endm |
| 66 | 66 | ||
| 67 | /* Standard copy_to_user with segment limit checking */ | 67 | /* Standard copy_to_user with segment limit checking */ |
| 68 | ENTRY(copy_to_user) | 68 | ENTRY(_copy_to_user) |
| 69 | CFI_STARTPROC | 69 | CFI_STARTPROC |
| 70 | GET_THREAD_INFO(%rax) | 70 | GET_THREAD_INFO(%rax) |
| 71 | movq %rdi,%rcx | 71 | movq %rdi,%rcx |
| @@ -75,7 +75,7 @@ ENTRY(copy_to_user) | |||
| 75 | jae bad_to_user | 75 | jae bad_to_user |
| 76 | ALTERNATIVE_JUMP X86_FEATURE_REP_GOOD,copy_user_generic_unrolled,copy_user_generic_string | 76 | ALTERNATIVE_JUMP X86_FEATURE_REP_GOOD,copy_user_generic_unrolled,copy_user_generic_string |
| 77 | CFI_ENDPROC | 77 | CFI_ENDPROC |
| 78 | ENDPROC(copy_to_user) | 78 | ENDPROC(_copy_to_user) |
| 79 | 79 | ||
| 80 | /* Standard copy_from_user with segment limit checking */ | 80 | /* Standard copy_from_user with segment limit checking */ |
| 81 | ENTRY(_copy_from_user) | 81 | ENTRY(_copy_from_user) |
