|
@@ -379,9 +379,9 @@ static inline unsigned long __must_check copy_from_user(void *to, const void __u
|
|
|
{
|
|
|
unsigned long res = n;
|
|
|
kasan_check_write(to, n);
|
|
|
+ check_object_size(to, n, false);
|
|
|
|
|
|
if (access_ok(VERIFY_READ, from, n)) {
|
|
|
- check_object_size(to, n, false);
|
|
|
res = __arch_copy_from_user(to, from, n);
|
|
|
}
|
|
|
if (unlikely(res))
|
|
@@ -392,9 +392,9 @@ 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);
|
|
|
+ check_object_size(from, n, true);
|
|
|
|
|
|
if (access_ok(VERIFY_WRITE, to, n)) {
|
|
|
- check_object_size(from, n, true);
|
|
|
n = __arch_copy_to_user(to, from, n);
|
|
|
}
|
|
|
return n;
|