2 * User address space access functions.
4 * Copyright 1997 Andi Kleen <ak@muc.de>
5 * Copyright 1997 Linus Torvalds
6 * Copyright 2002 Andi Kleen <ak@suse.de>
8 #include <linux/module.h>
9 #include <asm/uaccess.h>
15 unsigned long __clear_user(void __user
*addr
, unsigned long size
)
19 /* no memory constraint because it doesn't change any memory gcc knows
22 " testq %[size8],%[size8]\n"
24 "0: movq %[zero],(%[dst])\n"
25 " addq %[eight],%[dst]\n"
26 " decl %%ecx ; jnz 0b\n"
27 "4: movq %[size1],%%rcx\n"
28 " testl %%ecx,%%ecx\n"
30 "1: movb %b[zero],(%[dst])\n"
32 " decl %%ecx ; jnz 1b\n"
34 ".section .fixup,\"ax\"\n"
35 "3: lea 0(%[size1],%[size8],8),%[size8]\n"
40 : [size8
] "=&c"(size
), [dst
] "=&D" (__d0
)
41 : [size1
] "r"(size
& 7), "[size8]" (size
/ 8), "[dst]"(addr
),
42 [zero
] "r" (0UL), [eight
] "r" (8UL));
45 EXPORT_SYMBOL(__clear_user
);
47 unsigned long clear_user(void __user
*to
, unsigned long n
)
49 if (access_ok(VERIFY_WRITE
, to
, n
))
50 return __clear_user(to
, n
);
53 EXPORT_SYMBOL(clear_user
);
55 unsigned long copy_in_user(void __user
*to
, const void __user
*from
, unsigned len
)
57 if (access_ok(VERIFY_WRITE
, to
, len
) && access_ok(VERIFY_READ
, from
, len
)) {
58 return copy_user_generic((__force
void *)to
, (__force
void *)from
, len
);
62 EXPORT_SYMBOL(copy_in_user
);
65 * Try to copy last bytes and clear the rest if needed.
66 * Since protection fault in copy_from/to_user is not a normal situation,
67 * it is not necessary to optimize tail handling.
70 copy_user_handle_tail(char *to
, char *from
, unsigned len
, unsigned zerorest
)
76 if (__get_user_nocheck(c
, from
++, sizeof(char)))
78 if (__put_user_nocheck(c
, to
++, sizeof(char)))
82 for (c
= 0, zero_len
= len
; zerorest
&& zero_len
; --zero_len
)
83 if (__put_user_nocheck(c
, to
++, sizeof(char)))