|
@@ -21,6 +21,7 @@
|
|
|
/*
|
|
|
* User space memory access functions
|
|
|
*/
|
|
|
+#include <linux/kasan-checks.h>
|
|
|
#include <linux/string.h>
|
|
|
#include <linux/thread_info.h>
|
|
|
|
|
@@ -256,15 +257,29 @@ do { \
|
|
|
-EFAULT; \
|
|
|
})
|
|
|
|
|
|
-extern unsigned long __must_check __copy_from_user(void *to, const void __user *from, unsigned long n);
|
|
|
-extern unsigned long __must_check __copy_to_user(void __user *to, const void *from, unsigned long n);
|
|
|
+extern unsigned long __must_check __arch_copy_from_user(void *to, const void __user *from, unsigned long n);
|
|
|
+extern unsigned long __must_check __arch_copy_to_user(void __user *to, const void *from, unsigned long n);
|
|
|
extern unsigned long __must_check __copy_in_user(void __user *to, const void __user *from, unsigned long n);
|
|
|
extern unsigned long __must_check __clear_user(void __user *addr, unsigned long n);
|
|
|
|
|
|
+static inline unsigned long __must_check __copy_from_user(void *to, const void __user *from, unsigned long n)
|
|
|
+{
|
|
|
+ kasan_check_write(to, n);
|
|
|
+ return __arch_copy_from_user(to, from, n);
|
|
|
+}
|
|
|
+
|
|
|
+static inline unsigned long __must_check __copy_to_user(void __user *to, const void *from, unsigned long n)
|
|
|
+{
|
|
|
+ kasan_check_read(from, n);
|
|
|
+ return __arch_copy_to_user(to, from, n);
|
|
|
+}
|
|
|
+
|
|
|
static inline unsigned long __must_check copy_from_user(void *to, const void __user *from, unsigned long n)
|
|
|
{
|
|
|
+ kasan_check_write(to, n);
|
|
|
+
|
|
|
if (access_ok(VERIFY_READ, from, n))
|
|
|
- n = __copy_from_user(to, from, n);
|
|
|
+ n = __arch_copy_from_user(to, from, n);
|
|
|
else /* security hole - plug it */
|
|
|
memset(to, 0, n);
|
|
|
return n;
|
|
@@ -272,8 +287,10 @@ static inline unsigned long __must_check copy_from_user(void *to, const void __u
|
|
|
|
|
|
static inline unsigned long __must_check copy_to_user(void __user *to, const void *from, unsigned long n)
|
|
|
{
|
|
|
+ kasan_check_read(from, n);
|
|
|
+
|
|
|
if (access_ok(VERIFY_WRITE, to, n))
|
|
|
- n = __copy_to_user(to, from, n);
|
|
|
+ n = __arch_copy_to_user(to, from, n);
|
|
|
return n;
|
|
|
}
|
|
|
|