blob: 088d09fb1615af8081872b04e9b2b3ec15e1fbad [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_UACCESS_32_H
2#define _ASM_X86_UACCESS_32_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/*
5 * User space memory access functions
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/errno.h>
8#include <linux/thread_info.h>
9#include <linux/prefetch.h>
10#include <linux/string.h>
H. Peter Anvin14e6d172008-02-04 16:47:59 +010011#include <asm/asm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/page.h>
13
Joe Perchesb1fcec72008-03-23 01:03:48 -070014unsigned long __must_check __copy_to_user_ll
15 (void __user *to, const void *from, unsigned long n);
16unsigned long __must_check __copy_from_user_ll
17 (void *to, const void __user *from, unsigned long n);
18unsigned long __must_check __copy_from_user_ll_nozero
19 (void *to, const void __user *from, unsigned long n);
20unsigned long __must_check __copy_from_user_ll_nocache
21 (void *to, const void __user *from, unsigned long n);
22unsigned long __must_check __copy_from_user_ll_nocache_nozero
23 (void *to, const void __user *from, unsigned long n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Aneesh Kumar K.V6d1c4262007-05-02 19:27:06 +020025/**
26 * __copy_to_user_inatomic: - Copy a block of data into user space, with less checking.
27 * @to: Destination address, in user space.
28 * @from: Source address, in kernel space.
29 * @n: Number of bytes to copy.
30 *
31 * Context: User context only.
32 *
33 * Copy data from kernel space to user space. Caller must check
34 * the specified block with access_ok() before calling this function.
35 * The caller should also make sure he pins the user space address
Sergey Senozhatsky4fe48782009-09-17 15:54:01 +030036 * so that we don't result in page fault and sleep.
Aneesh Kumar K.V6d1c4262007-05-02 19:27:06 +020037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Here we special-case 1, 2 and 4-byte copy_*_user invocations. On a fault
39 * we return the initial request size (1, 2 or 4), as copy_*_user should do.
40 * If a store crosses a page boundary and gets a fault, the x86 will not write
41 * anything, so this is accurate.
42 */
43
Ingo Molnar652050a2006-01-14 13:21:30 -080044static __always_inline unsigned long __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -070045__copy_to_user_inatomic(void __user *to, const void *from, unsigned long n)
46{
47 if (__builtin_constant_p(n)) {
48 unsigned long ret;
49
50 switch (n) {
51 case 1:
Joe Perchesb1fcec72008-03-23 01:03:48 -070052 __put_user_size(*(u8 *)from, (u8 __user *)to,
53 1, ret, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return ret;
55 case 2:
Joe Perchesb1fcec72008-03-23 01:03:48 -070056 __put_user_size(*(u16 *)from, (u16 __user *)to,
57 2, ret, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return ret;
59 case 4:
Joe Perchesb1fcec72008-03-23 01:03:48 -070060 __put_user_size(*(u32 *)from, (u32 __user *)to,
61 4, ret, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return ret;
63 }
64 }
65 return __copy_to_user_ll(to, from, n);
66}
67
Randy Dunlap9c7fff62006-10-11 01:22:10 -070068/**
69 * __copy_to_user: - Copy a block of data into user space, with less checking.
70 * @to: Destination address, in user space.
71 * @from: Source address, in kernel space.
72 * @n: Number of bytes to copy.
73 *
74 * Context: User context only. This function may sleep.
75 *
76 * Copy data from kernel space to user space. Caller must check
77 * the specified block with access_ok() before calling this function.
78 *
79 * Returns number of bytes that could not be copied.
80 * On success, this will be zero.
81 */
Ingo Molnar652050a2006-01-14 13:21:30 -080082static __always_inline unsigned long __must_check
Linus Torvalds1da177e2005-04-16 15:20:36 -070083__copy_to_user(void __user *to, const void *from, unsigned long n)
84{
Ingo Molnard1a76182008-10-28 16:54:49 +010085 might_fault();
86 return __copy_to_user_inatomic(to, from, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Ingo Molnar652050a2006-01-14 13:21:30 -080089static __always_inline unsigned long
Linus Torvalds1da177e2005-04-16 15:20:36 -070090__copy_from_user_inatomic(void *to, const void __user *from, unsigned long n)
91{
NeilBrown7c12d812006-06-25 05:48:02 -070092 /* Avoid zeroing the tail if the copy fails..
93 * If 'n' is constant and 1, 2, or 4, we do still zero on a failure,
94 * but as the zeroing behaviour is only significant when n is not
95 * constant, that shouldn't be a problem.
96 */
97 if (__builtin_constant_p(n)) {
98 unsigned long ret;
99
100 switch (n) {
101 case 1:
102 __get_user_size(*(u8 *)to, from, 1, ret, 1);
103 return ret;
104 case 2:
105 __get_user_size(*(u16 *)to, from, 2, ret, 2);
106 return ret;
107 case 4:
108 __get_user_size(*(u32 *)to, from, 4, ret, 4);
109 return ret;
110 }
111 }
112 return __copy_from_user_ll_nozero(to, from, n);
113}
Randy Dunlap9c7fff62006-10-11 01:22:10 -0700114
115/**
116 * __copy_from_user: - Copy a block of data from user space, with less checking.
117 * @to: Destination address, in kernel space.
118 * @from: Source address, in user space.
119 * @n: Number of bytes to copy.
120 *
121 * Context: User context only. This function may sleep.
122 *
123 * Copy data from user space to kernel space. Caller must check
124 * the specified block with access_ok() before calling this function.
125 *
126 * Returns number of bytes that could not be copied.
127 * On success, this will be zero.
128 *
129 * If some data could not be copied, this function will pad the copied
130 * data to the requested size using zero bytes.
131 *
132 * An alternate version - __copy_from_user_inatomic() - may be called from
133 * atomic context and will fail rather than sleep. In this case the
134 * uncopied bytes will *NOT* be padded with zeros. See fs/filemap.h
135 * for explanation of why this is needed.
136 */
NeilBrown7c12d812006-06-25 05:48:02 -0700137static __always_inline unsigned long
138__copy_from_user(void *to, const void __user *from, unsigned long n)
139{
Ingo Molnard1a76182008-10-28 16:54:49 +0100140 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (__builtin_constant_p(n)) {
142 unsigned long ret;
143
144 switch (n) {
145 case 1:
146 __get_user_size(*(u8 *)to, from, 1, ret, 1);
147 return ret;
148 case 2:
149 __get_user_size(*(u16 *)to, from, 2, ret, 2);
150 return ret;
151 case 4:
152 __get_user_size(*(u32 *)to, from, 4, ret, 4);
153 return ret;
154 }
155 }
156 return __copy_from_user_ll(to, from, n);
157}
158
NeilBrown7c12d812006-06-25 05:48:02 -0700159static __always_inline unsigned long __copy_from_user_nocache(void *to,
Hiro Yoshiokac22ce142006-06-23 02:04:16 -0700160 const void __user *from, unsigned long n)
161{
Ingo Molnard1a76182008-10-28 16:54:49 +0100162 might_fault();
Hiro Yoshiokac22ce142006-06-23 02:04:16 -0700163 if (__builtin_constant_p(n)) {
164 unsigned long ret;
165
166 switch (n) {
167 case 1:
168 __get_user_size(*(u8 *)to, from, 1, ret, 1);
169 return ret;
170 case 2:
171 __get_user_size(*(u16 *)to, from, 2, ret, 2);
172 return ret;
173 case 4:
174 __get_user_size(*(u32 *)to, from, 4, ret, 4);
175 return ret;
176 }
177 }
178 return __copy_from_user_ll_nocache(to, from, n);
179}
180
Ingo Molnar652050a2006-01-14 13:21:30 -0800181static __always_inline unsigned long
Joe Perchesb1fcec72008-03-23 01:03:48 -0700182__copy_from_user_inatomic_nocache(void *to, const void __user *from,
183 unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
NeilBrown7c12d812006-06-25 05:48:02 -0700185 return __copy_from_user_ll_nocache_nozero(to, from, n);
Hiro Yoshiokac22ce142006-06-23 02:04:16 -0700186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188unsigned long __must_check copy_to_user(void __user *to,
Joe Perchesb1fcec72008-03-23 01:03:48 -0700189 const void *from, unsigned long n);
Arjan van de Ven9f0cf4a2009-09-26 14:33:01 +0200190unsigned long __must_check _copy_from_user(void *to,
Joe Perchesb1fcec72008-03-23 01:03:48 -0700191 const void __user *from,
192 unsigned long n);
Arjan van de Ven9f0cf4a2009-09-26 14:33:01 +0200193
Arjan van de Ven4a312762009-09-30 13:05:23 +0200194
195extern void copy_from_user_overflow(void)
Arjan van de Ven63312b62009-10-02 07:50:50 -0700196#ifdef CONFIG_DEBUG_STRICT_USER_COPY_CHECKS
197 __compiletime_error("copy_from_user() buffer size is not provably correct")
198#else
Arjan van de Ven4a312762009-09-30 13:05:23 +0200199 __compiletime_warning("copy_from_user() buffer size is not provably correct")
200#endif
201;
202
Arjan van de Ven9f0cf4a2009-09-26 14:33:01 +0200203static inline unsigned long __must_check copy_from_user(void *to,
204 const void __user *from,
205 unsigned long n)
206{
207 int sz = __compiletime_object_size(to);
Arjan van de Ven9f0cf4a2009-09-26 14:33:01 +0200208
209 if (likely(sz == -1 || sz >= n))
Heiko Carstens409d02e2010-01-05 14:19:11 +0100210 n = _copy_from_user(to, from, n);
Arjan van de Ven9f0cf4a2009-09-26 14:33:01 +0200211 else
Arjan van de Ven4a312762009-09-30 13:05:23 +0200212 copy_from_user_overflow();
213
Heiko Carstens409d02e2010-01-05 14:19:11 +0100214 return n;
Arjan van de Ven9f0cf4a2009-09-26 14:33:01 +0200215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217long __must_check strncpy_from_user(char *dst, const char __user *src,
Joe Perchesb1fcec72008-03-23 01:03:48 -0700218 long count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219long __must_check __strncpy_from_user(char *dst,
Joe Perchesb1fcec72008-03-23 01:03:48 -0700220 const char __user *src, long count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/**
223 * strlen_user: - Get the size of a string in user space.
224 * @str: The string to measure.
225 *
226 * Context: User context only. This function may sleep.
227 *
228 * Get the size of a NUL-terminated string in user space.
229 *
230 * Returns the size of the string INCLUDING the terminating NUL.
231 * On exception, returns 0.
232 *
233 * If there is a limit on the length of a valid string, you may wish to
234 * consider using strnlen_user() instead.
235 */
Robert P. J. Day48dd9342007-07-21 17:11:26 +0200236#define strlen_user(str) strnlen_user(str, LONG_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238long strnlen_user(const char __user *str, long n);
239unsigned long __must_check clear_user(void __user *mem, unsigned long len);
240unsigned long __must_check __clear_user(void __user *mem, unsigned long len);
241
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700242#endif /* _ASM_X86_UACCESS_32_H */