]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/include/asm/uaccess_32.h
x86: Turn the copy_from_user check into an (optional) compile time warning
[net-next-2.6.git] / arch / x86 / include / asm / uaccess_32.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_UACCESS_32_H
2#define _ASM_X86_UACCESS_32_H
1da177e4
LT
3
4/*
5 * User space memory access functions
6 */
1da177e4
LT
7#include <linux/errno.h>
8#include <linux/thread_info.h>
9#include <linux/prefetch.h>
10#include <linux/string.h>
14e6d17d 11#include <asm/asm.h>
1da177e4
LT
12#include <asm/page.h>
13
b1fcec7f
JP
14unsigned 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);
1da177e4 24
6d1c4261
AK
25/**
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
4fe48782 36 * so that we don't result in page fault and sleep.
6d1c4261 37 *
1da177e4
LT
38 * 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
652050ae 44static __always_inline unsigned long __must_check
1da177e4
LT
45__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:
b1fcec7f
JP
52 __put_user_size(*(u8 *)from, (u8 __user *)to,
53 1, ret, 1);
1da177e4
LT
54 return ret;
55 case 2:
b1fcec7f
JP
56 __put_user_size(*(u16 *)from, (u16 __user *)to,
57 2, ret, 2);
1da177e4
LT
58 return ret;
59 case 4:
b1fcec7f
JP
60 __put_user_size(*(u32 *)from, (u32 __user *)to,
61 4, ret, 4);
1da177e4
LT
62 return ret;
63 }
64 }
65 return __copy_to_user_ll(to, from, n);
66}
67
1da177e4 68/**
9c7fff6e
RD
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.
1da177e4
LT
72 * @n: Number of bytes to copy.
73 *
74 * Context: User context only. This function may sleep.
75 *
9c7fff6e 76 * Copy data from kernel space to user space. Caller must check
1da177e4
LT
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.
1da177e4 81 */
9c7fff6e
RD
82static __always_inline unsigned long __must_check
83__copy_to_user(void __user *to, const void *from, unsigned long n)
84{
3ee1afa3 85 might_fault();
c10d38dd 86 return __copy_to_user_inatomic(to, from, n);
9c7fff6e
RD
87}
88
652050ae 89static __always_inline unsigned long
1da177e4
LT
90__copy_from_user_inatomic(void *to, const void __user *from, unsigned long n)
91{
7c12d811
N
92 /* 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}
9c7fff6e
RD
114
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 */
7c12d811
N
137static __always_inline unsigned long
138__copy_from_user(void *to, const void __user *from, unsigned long n)
139{
3ee1afa3 140 might_fault();
1da177e4
LT
141 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
7c12d811 159static __always_inline unsigned long __copy_from_user_nocache(void *to,
c22ce143
HY
160 const void __user *from, unsigned long n)
161{
3ee1afa3 162 might_fault();
c22ce143
HY
163 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
652050ae 181static __always_inline unsigned long
b1fcec7f
JP
182__copy_from_user_inatomic_nocache(void *to, const void __user *from,
183 unsigned long n)
1da177e4 184{
7c12d811 185 return __copy_from_user_ll_nocache_nozero(to, from, n);
c22ce143
HY
186}
187
1da177e4 188unsigned long __must_check copy_to_user(void __user *to,
b1fcec7f 189 const void *from, unsigned long n);
9f0cf4ad 190unsigned long __must_check _copy_from_user(void *to,
b1fcec7f
JP
191 const void __user *from,
192 unsigned long n);
9f0cf4ad 193
4a312769
AV
194
195extern void copy_from_user_overflow(void)
196#ifdef CONFIG_DEBUG_STACKOVERFLOW
197 __compiletime_warning("copy_from_user() buffer size is not provably correct")
198#endif
199;
200
9f0cf4ad
AV
201static inline unsigned long __must_check copy_from_user(void *to,
202 const void __user *from,
203 unsigned long n)
204{
205 int sz = __compiletime_object_size(to);
206 int ret = -EFAULT;
207
208 if (likely(sz == -1 || sz >= n))
209 ret = _copy_from_user(to, from, n);
9f0cf4ad 210 else
4a312769
AV
211 copy_from_user_overflow();
212
9f0cf4ad
AV
213 return ret;
214}
215
1da177e4 216long __must_check strncpy_from_user(char *dst, const char __user *src,
b1fcec7f 217 long count);
1da177e4 218long __must_check __strncpy_from_user(char *dst,
b1fcec7f 219 const char __user *src, long count);
1da177e4
LT
220
221/**
222 * strlen_user: - Get the size of a string in user space.
223 * @str: The string to measure.
224 *
225 * Context: User context only. This function may sleep.
226 *
227 * Get the size of a NUL-terminated string in user space.
228 *
229 * Returns the size of the string INCLUDING the terminating NUL.
230 * On exception, returns 0.
231 *
232 * If there is a limit on the length of a valid string, you may wish to
233 * consider using strnlen_user() instead.
234 */
48dd9343 235#define strlen_user(str) strnlen_user(str, LONG_MAX)
1da177e4
LT
236
237long strnlen_user(const char __user *str, long n);
238unsigned long __must_check clear_user(void __user *mem, unsigned long len);
239unsigned long __must_check __clear_user(void __user *mem, unsigned long len);
240
1965aae3 241#endif /* _ASM_X86_UACCESS_32_H */