blob: 5838fa911aa03f25138e8996f755b0b4fde34e18 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_UACCESS_H
2#define _ASM_X86_UACCESS_H
Glauber Costaca233862008-06-13 14:39:25 -03003/*
4 * User space memory access functions
5 */
6#include <linux/errno.h>
7#include <linux/compiler.h>
8#include <linux/thread_info.h>
Glauber Costaca233862008-06-13 14:39:25 -03009#include <linux/string.h>
10#include <asm/asm.h>
11#include <asm/page.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070012#include <asm/smap.h>
Glauber Costaca233862008-06-13 14:39:25 -030013
14#define VERIFY_READ 0
15#define VERIFY_WRITE 1
16
17/*
18 * The fs value determines whether argument validity checking should be
19 * performed or not. If get_fs() == USER_DS, checking is performed, with
20 * get_fs() == KERNEL_DS, checking is bypassed.
21 *
22 * For historical reasons, these macros are grossly misnamed.
23 */
24
25#define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
26
27#define KERNEL_DS MAKE_MM_SEG(-1UL)
Linus Torvalds9063c612009-06-20 15:40:00 -070028#define USER_DS MAKE_MM_SEG(TASK_SIZE_MAX)
Glauber Costaca233862008-06-13 14:39:25 -030029
30#define get_ds() (KERNEL_DS)
31#define get_fs() (current_thread_info()->addr_limit)
32#define set_fs(x) (current_thread_info()->addr_limit = (x))
33
34#define segment_eq(a, b) ((a).seg == (b).seg)
35
Linus Torvalds4ae73f22012-05-26 10:14:39 -070036#define user_addr_max() (current_thread_info()->addr_limit.seg)
Arun Sharmabc6ca7b2012-04-20 15:41:35 -070037#define __addr_ok(addr) \
38 ((unsigned long __force)(addr) < user_addr_max())
Glauber Costa002ca162008-06-25 11:08:51 -030039
Glauber Costaca233862008-06-13 14:39:25 -030040/*
41 * Test whether a block of memory is a valid user space address.
42 * Returns 0 if the range is valid, nonzero otherwise.
43 *
44 * This is equivalent to the following test:
Jiri Olsa26afb7c2011-05-12 16:30:30 +020045 * (u33)addr + (u33)size > (u33)current->addr_limit.seg (u65 for x86_64)
Glauber Costaca233862008-06-13 14:39:25 -030046 *
47 * This needs 33-bit (65-bit for x86_64) arithmetic. We have a carry...
48 */
49
Arun Sharmabc6ca7b2012-04-20 15:41:35 -070050#define __range_not_ok(addr, size, limit) \
Glauber Costaca233862008-06-13 14:39:25 -030051({ \
52 unsigned long flag, roksum; \
53 __chk_user_ptr(addr); \
54 asm("add %3,%1 ; sbb %0,%0 ; cmp %1,%4 ; sbb $0,%0" \
55 : "=&r" (flag), "=r" (roksum) \
56 : "1" (addr), "g" ((long)(size)), \
Arun Sharmabc6ca7b2012-04-20 15:41:35 -070057 "rm" (limit)); \
Glauber Costaca233862008-06-13 14:39:25 -030058 flag; \
59})
60
61/**
62 * access_ok: - Checks if a user space pointer is valid
63 * @type: Type of access: %VERIFY_READ or %VERIFY_WRITE. Note that
64 * %VERIFY_WRITE is a superset of %VERIFY_READ - if it is safe
65 * to write to a block, it is always safe to read from it.
66 * @addr: User space pointer to start of block to check
67 * @size: Size of block to check
68 *
69 * Context: User context only. This function may sleep.
70 *
71 * Checks if a pointer to a block of memory in user space is valid.
72 *
73 * Returns true (nonzero) if the memory block may be valid, false (zero)
74 * if it is definitely invalid.
75 *
76 * Note that, depending on architecture, this function probably just
77 * checks that the pointer is in the user space range - after calling
78 * this function, memory access functions may still return -EFAULT.
79 */
Arun Sharmabc6ca7b2012-04-20 15:41:35 -070080#define access_ok(type, addr, size) \
81 (likely(__range_not_ok(addr, size, user_addr_max()) == 0))
Glauber Costaca233862008-06-13 14:39:25 -030082
83/*
H. Peter Anvin70627652012-04-20 17:12:48 -070084 * The exception table consists of pairs of addresses relative to the
85 * exception table enty itself: the first is the address of an
86 * instruction that is allowed to fault, and the second is the address
87 * at which the program should continue. No registers are modified,
88 * so it is entirely up to the continuation code to figure out what to
89 * do.
Glauber Costaca233862008-06-13 14:39:25 -030090 *
91 * All the routines below use bits of fixup code that are out of line
92 * with the main instruction path. This means when everything is well,
93 * we don't even have to jump over them. Further, they do not intrude
94 * on our cache or tlb entries.
95 */
96
97struct exception_table_entry {
H. Peter Anvin70627652012-04-20 17:12:48 -070098 int insn, fixup;
Glauber Costaca233862008-06-13 14:39:25 -030099};
H. Peter Anvin70627652012-04-20 17:12:48 -0700100/* This is not the generic standard exception_table_entry format */
101#define ARCH_HAS_SORT_EXTABLE
102#define ARCH_HAS_SEARCH_EXTABLE
Glauber Costaca233862008-06-13 14:39:25 -0300103
104extern int fixup_exception(struct pt_regs *regs);
H. Peter Anvin70627652012-04-20 17:12:48 -0700105extern int early_fixup_exception(unsigned long *ip);
Glauber Costaca233862008-06-13 14:39:25 -0300106
107/*
108 * These are the main single-value transfer routines. They automatically
109 * use the right size if we just have the right pointer type.
110 *
111 * This gets kind of ugly. We want to return _two_ values in "get_user()"
112 * and yet we don't want to do any pointers, because that is too much
113 * of a performance impact. Thus we have a few rather ugly macros here,
114 * and hide all the ugliness from the user.
115 *
116 * The "__xxx" versions of the user access functions are versions that
117 * do not verify the address space, that must have been done previously
118 * with a separate "access_ok()" call (this is used when we do multiple
119 * accesses to the same area of user memory).
120 */
121
122extern int __get_user_1(void);
123extern int __get_user_2(void);
124extern int __get_user_4(void);
125extern int __get_user_8(void);
126extern int __get_user_bad(void);
127
H. Peter Anvin3578baa2013-02-12 11:47:31 -0800128/*
129 * This is a type: either unsigned long, if the argument fits into
130 * that type, or otherwise unsigned long long.
131 */
132#define __inttype(x) \
133__typeof__(__builtin_choose_expr(sizeof(x) > sizeof(0UL), 0ULL, 0UL))
Glauber Costa865e5b72008-06-25 11:05:11 -0300134
135/**
136 * get_user: - Get a simple variable from user space.
137 * @x: Variable to store result.
138 * @ptr: Source address, in user space.
139 *
140 * Context: User context only. This function may sleep.
141 *
142 * This macro copies a single simple variable from user space to kernel
143 * space. It supports simple types like char and int, but not larger
144 * data types like structures or arrays.
145 *
146 * @ptr must have pointer-to-simple-variable type, and the result of
147 * dereferencing @ptr must be assignable to @x without a cast.
148 *
149 * Returns zero on success, or -EFAULT on error.
150 * On error, the variable @x is set to zero.
H. Peter Anvinff52c3b2013-02-12 15:37:02 -0800151 */
152/*
H. Peter Anvin3578baa2013-02-12 11:47:31 -0800153 * Careful: we have to cast the result to the type of the pointer
154 * for sign reasons.
H. Peter Anvinff52c3b2013-02-12 15:37:02 -0800155 *
H. Peter Anvinf69fa9a2013-08-29 13:34:50 -0700156 * The use of _ASM_DX as the register specifier is a bit of a
H. Peter Anvinff52c3b2013-02-12 15:37:02 -0800157 * simplification, as gcc only cares about it as the starting point
158 * and not size: for a 64-bit value it will use %ecx:%edx on 32 bits
159 * (%ecx being the next register in gcc's x86 register sequence), and
160 * %rdx on 64 bits.
H. Peter Anvinf69fa9a2013-08-29 13:34:50 -0700161 *
162 * Clang/LLVM cares about the size of the register, but still wants
163 * the base register for something that ends up being a pair.
Glauber Costa865e5b72008-06-25 11:05:11 -0300164 */
Glauber Costa865e5b72008-06-25 11:05:11 -0300165#define get_user(x, ptr) \
166({ \
167 int __ret_gu; \
Jan-Simon Möllerbdfc0172013-08-29 21:13:05 +0200168 register __inttype(*(ptr)) __val_gu asm("%"_ASM_DX); \
Glauber Costa865e5b72008-06-25 11:05:11 -0300169 __chk_user_ptr(ptr); \
Ingo Molnard1a76182008-10-28 16:54:49 +0100170 might_fault(); \
H. Peter Anvin3578baa2013-02-12 11:47:31 -0800171 asm volatile("call __get_user_%P3" \
172 : "=a" (__ret_gu), "=r" (__val_gu) \
173 : "0" (ptr), "i" (sizeof(*(ptr)))); \
174 (x) = (__typeof__(*(ptr))) __val_gu; \
Glauber Costa865e5b72008-06-25 11:05:11 -0300175 __ret_gu; \
176})
177
Glauber Costae30a44f2008-06-25 13:17:43 -0300178#define __put_user_x(size, x, ptr, __ret_pu) \
179 asm volatile("call __put_user_" #size : "=a" (__ret_pu) \
Hiroshi Shimamoto4d5d7832009-01-19 16:34:26 -0800180 : "0" ((typeof(*(ptr)))(x)), "c" (ptr) : "ebx")
Glauber Costae30a44f2008-06-25 13:17:43 -0300181
182
183
Glauber Costadc70ddf2008-06-25 11:48:29 -0300184#ifdef CONFIG_X86_32
Hiroshi Shimamoto18114f62009-01-30 18:16:46 -0800185#define __put_user_asm_u64(x, addr, err, errret) \
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700186 asm volatile(ASM_STAC "\n" \
187 "1: movl %%eax,0(%2)\n" \
Glauber Costadc70ddf2008-06-25 11:48:29 -0300188 "2: movl %%edx,4(%2)\n" \
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700189 "3: " ASM_CLAC "\n" \
Glauber Costadc70ddf2008-06-25 11:48:29 -0300190 ".section .fixup,\"ax\"\n" \
191 "4: movl %3,%0\n" \
192 " jmp 3b\n" \
193 ".previous\n" \
194 _ASM_EXTABLE(1b, 4b) \
195 _ASM_EXTABLE(2b, 4b) \
196 : "=r" (err) \
Hiroshi Shimamoto18114f62009-01-30 18:16:46 -0800197 : "A" (x), "r" (addr), "i" (errret), "0" (err))
Glauber Costae30a44f2008-06-25 13:17:43 -0300198
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800199#define __put_user_asm_ex_u64(x, addr) \
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700200 asm volatile(ASM_STAC "\n" \
201 "1: movl %%eax,0(%1)\n" \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800202 "2: movl %%edx,4(%1)\n" \
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700203 "3: " ASM_CLAC "\n" \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700204 _ASM_EXTABLE_EX(1b, 2b) \
205 _ASM_EXTABLE_EX(2b, 3b) \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800206 : : "A" (x), "r" (addr))
207
Glauber Costae30a44f2008-06-25 13:17:43 -0300208#define __put_user_x8(x, ptr, __ret_pu) \
209 asm volatile("call __put_user_8" : "=a" (__ret_pu) \
210 : "A" ((typeof(*(ptr)))(x)), "c" (ptr) : "ebx")
Glauber Costadc70ddf2008-06-25 11:48:29 -0300211#else
Hiroshi Shimamoto18114f62009-01-30 18:16:46 -0800212#define __put_user_asm_u64(x, ptr, retval, errret) \
H. Peter Anvinebe119c2009-07-20 23:27:39 -0700213 __put_user_asm(x, ptr, retval, "q", "", "er", errret)
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800214#define __put_user_asm_ex_u64(x, addr) \
H. Peter Anvinebe119c2009-07-20 23:27:39 -0700215 __put_user_asm_ex(x, addr, "q", "", "er")
Glauber Costae30a44f2008-06-25 13:17:43 -0300216#define __put_user_x8(x, ptr, __ret_pu) __put_user_x(8, x, ptr, __ret_pu)
Glauber Costadc70ddf2008-06-25 11:48:29 -0300217#endif
218
Glauber Costae30a44f2008-06-25 13:17:43 -0300219extern void __put_user_bad(void);
220
221/*
222 * Strange magic calling convention: pointer in %ecx,
223 * value in %eax(:%edx), return value in %eax. clobbers %rbx
224 */
225extern void __put_user_1(void);
226extern void __put_user_2(void);
227extern void __put_user_4(void);
228extern void __put_user_8(void);
229
Glauber Costae30a44f2008-06-25 13:17:43 -0300230/**
231 * put_user: - Write a simple value into user space.
232 * @x: Value to copy to user space.
233 * @ptr: Destination address, in user space.
234 *
235 * Context: User context only. This function may sleep.
236 *
237 * This macro copies a single simple value from kernel space to user
238 * space. It supports simple types like char and int, but not larger
239 * data types like structures or arrays.
240 *
241 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
242 * to the result of dereferencing @ptr.
243 *
244 * Returns zero on success, or -EFAULT on error.
245 */
246#define put_user(x, ptr) \
247({ \
248 int __ret_pu; \
249 __typeof__(*(ptr)) __pu_val; \
250 __chk_user_ptr(ptr); \
Ingo Molnard1a76182008-10-28 16:54:49 +0100251 might_fault(); \
Glauber Costae30a44f2008-06-25 13:17:43 -0300252 __pu_val = x; \
253 switch (sizeof(*(ptr))) { \
254 case 1: \
255 __put_user_x(1, __pu_val, ptr, __ret_pu); \
256 break; \
257 case 2: \
258 __put_user_x(2, __pu_val, ptr, __ret_pu); \
259 break; \
260 case 4: \
261 __put_user_x(4, __pu_val, ptr, __ret_pu); \
262 break; \
263 case 8: \
264 __put_user_x8(__pu_val, ptr, __ret_pu); \
265 break; \
266 default: \
267 __put_user_x(X, __pu_val, ptr, __ret_pu); \
268 break; \
269 } \
270 __ret_pu; \
271})
272
Glauber Costadc70ddf2008-06-25 11:48:29 -0300273#define __put_user_size(x, ptr, size, retval, errret) \
274do { \
275 retval = 0; \
276 __chk_user_ptr(ptr); \
277 switch (size) { \
278 case 1: \
279 __put_user_asm(x, ptr, retval, "b", "b", "iq", errret); \
280 break; \
281 case 2: \
282 __put_user_asm(x, ptr, retval, "w", "w", "ir", errret); \
283 break; \
284 case 4: \
Hiroshi Shimamoto4d5d7832009-01-19 16:34:26 -0800285 __put_user_asm(x, ptr, retval, "l", "k", "ir", errret); \
Glauber Costadc70ddf2008-06-25 11:48:29 -0300286 break; \
287 case 8: \
Hiroshi Shimamoto18114f62009-01-30 18:16:46 -0800288 __put_user_asm_u64((__typeof__(*ptr))(x), ptr, retval, \
289 errret); \
Glauber Costadc70ddf2008-06-25 11:48:29 -0300290 break; \
291 default: \
292 __put_user_bad(); \
293 } \
294} while (0)
295
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800296#define __put_user_size_ex(x, ptr, size) \
297do { \
298 __chk_user_ptr(ptr); \
299 switch (size) { \
300 case 1: \
301 __put_user_asm_ex(x, ptr, "b", "b", "iq"); \
302 break; \
303 case 2: \
304 __put_user_asm_ex(x, ptr, "w", "w", "ir"); \
305 break; \
306 case 4: \
307 __put_user_asm_ex(x, ptr, "l", "k", "ir"); \
308 break; \
309 case 8: \
310 __put_user_asm_ex_u64((__typeof__(*ptr))(x), ptr); \
311 break; \
312 default: \
313 __put_user_bad(); \
314 } \
315} while (0)
316
Glauber Costa3f168222008-06-25 12:48:47 -0300317#ifdef CONFIG_X86_32
318#define __get_user_asm_u64(x, ptr, retval, errret) (x) = __get_user_bad()
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800319#define __get_user_asm_ex_u64(x, ptr) (x) = __get_user_bad()
Glauber Costa3f168222008-06-25 12:48:47 -0300320#else
321#define __get_user_asm_u64(x, ptr, retval, errret) \
322 __get_user_asm(x, ptr, retval, "q", "", "=r", errret)
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800323#define __get_user_asm_ex_u64(x, ptr) \
324 __get_user_asm_ex(x, ptr, "q", "", "=r")
Glauber Costa3f168222008-06-25 12:48:47 -0300325#endif
326
327#define __get_user_size(x, ptr, size, retval, errret) \
328do { \
329 retval = 0; \
330 __chk_user_ptr(ptr); \
331 switch (size) { \
332 case 1: \
333 __get_user_asm(x, ptr, retval, "b", "b", "=q", errret); \
334 break; \
335 case 2: \
336 __get_user_asm(x, ptr, retval, "w", "w", "=r", errret); \
337 break; \
338 case 4: \
339 __get_user_asm(x, ptr, retval, "l", "k", "=r", errret); \
340 break; \
341 case 8: \
342 __get_user_asm_u64(x, ptr, retval, errret); \
343 break; \
344 default: \
345 (x) = __get_user_bad(); \
346 } \
347} while (0)
348
349#define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) \
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700350 asm volatile(ASM_STAC "\n" \
351 "1: mov"itype" %2,%"rtype"1\n" \
352 "2: " ASM_CLAC "\n" \
Glauber Costa3f168222008-06-25 12:48:47 -0300353 ".section .fixup,\"ax\"\n" \
354 "3: mov %3,%0\n" \
355 " xor"itype" %"rtype"1,%"rtype"1\n" \
356 " jmp 2b\n" \
357 ".previous\n" \
358 _ASM_EXTABLE(1b, 3b) \
359 : "=r" (err), ltype(x) \
360 : "m" (__m(addr)), "i" (errret), "0" (err))
361
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800362#define __get_user_size_ex(x, ptr, size) \
363do { \
364 __chk_user_ptr(ptr); \
365 switch (size) { \
366 case 1: \
367 __get_user_asm_ex(x, ptr, "b", "b", "=q"); \
368 break; \
369 case 2: \
370 __get_user_asm_ex(x, ptr, "w", "w", "=r"); \
371 break; \
372 case 4: \
373 __get_user_asm_ex(x, ptr, "l", "k", "=r"); \
374 break; \
375 case 8: \
376 __get_user_asm_ex_u64(x, ptr); \
377 break; \
378 default: \
379 (x) = __get_user_bad(); \
380 } \
381} while (0)
382
383#define __get_user_asm_ex(x, addr, itype, rtype, ltype) \
H. Peter Anvin5e883532012-09-21 12:43:15 -0700384 asm volatile("1: mov"itype" %1,%"rtype"0\n" \
385 "2:\n" \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700386 _ASM_EXTABLE_EX(1b, 2b) \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800387 : ltype(x) : "m" (__m(addr)))
388
Glauber Costadc70ddf2008-06-25 11:48:29 -0300389#define __put_user_nocheck(x, ptr, size) \
390({ \
Hiroshi Shimamoto16855f82008-12-08 19:18:38 -0800391 int __pu_err; \
Glauber Costadc70ddf2008-06-25 11:48:29 -0300392 __put_user_size((x), (ptr), (size), __pu_err, -EFAULT); \
393 __pu_err; \
394})
395
Glauber Costa3f168222008-06-25 12:48:47 -0300396#define __get_user_nocheck(x, ptr, size) \
397({ \
Hiroshi Shimamoto16855f82008-12-08 19:18:38 -0800398 int __gu_err; \
Glauber Costa3f168222008-06-25 12:48:47 -0300399 unsigned long __gu_val; \
400 __get_user_size(__gu_val, (ptr), (size), __gu_err, -EFAULT); \
401 (x) = (__force __typeof__(*(ptr)))__gu_val; \
402 __gu_err; \
403})
Glauber Costadc70ddf2008-06-25 11:48:29 -0300404
405/* FIXME: this hack is definitely wrong -AK */
406struct __large_struct { unsigned long buf[100]; };
407#define __m(x) (*(struct __large_struct __user *)(x))
408
409/*
410 * Tell gcc we read from memory instead of writing: this is because
411 * we do not write to any memory gcc knows about, so there are no
412 * aliasing issues.
413 */
414#define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) \
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700415 asm volatile(ASM_STAC "\n" \
416 "1: mov"itype" %"rtype"1,%2\n" \
417 "2: " ASM_CLAC "\n" \
Glauber Costadc70ddf2008-06-25 11:48:29 -0300418 ".section .fixup,\"ax\"\n" \
419 "3: mov %3,%0\n" \
420 " jmp 2b\n" \
421 ".previous\n" \
422 _ASM_EXTABLE(1b, 3b) \
423 : "=r"(err) \
424 : ltype(x), "m" (__m(addr)), "i" (errret), "0" (err))
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800425
426#define __put_user_asm_ex(x, addr, itype, rtype, ltype) \
H. Peter Anvin5e883532012-09-21 12:43:15 -0700427 asm volatile("1: mov"itype" %"rtype"0,%1\n" \
428 "2:\n" \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700429 _ASM_EXTABLE_EX(1b, 2b) \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800430 : : ltype(x), "m" (__m(addr)))
431
432/*
433 * uaccess_try and catch
434 */
435#define uaccess_try do { \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800436 current_thread_info()->uaccess_err = 0; \
H. Peter Anvin5e883532012-09-21 12:43:15 -0700437 stac(); \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800438 barrier();
439
440#define uaccess_catch(err) \
H. Peter Anvin5e883532012-09-21 12:43:15 -0700441 clac(); \
Andy Lutomirski4fc34902011-11-07 16:33:40 -0800442 (err) |= (current_thread_info()->uaccess_err ? -EFAULT : 0); \
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800443} while (0)
444
Glauber Costa8cb834e2008-06-25 14:43:30 -0300445/**
446 * __get_user: - Get a simple variable from user space, with less checking.
447 * @x: Variable to store result.
448 * @ptr: Source address, in user space.
449 *
450 * Context: User context only. This function may sleep.
451 *
452 * This macro copies a single simple variable from user space to kernel
453 * space. It supports simple types like char and int, but not larger
454 * data types like structures or arrays.
455 *
456 * @ptr must have pointer-to-simple-variable type, and the result of
457 * dereferencing @ptr must be assignable to @x without a cast.
458 *
459 * Caller must check the pointer with access_ok() before calling this
460 * function.
461 *
462 * Returns zero on success, or -EFAULT on error.
463 * On error, the variable @x is set to zero.
464 */
Glauber Costadc70ddf2008-06-25 11:48:29 -0300465
Glauber Costa8cb834e2008-06-25 14:43:30 -0300466#define __get_user(x, ptr) \
467 __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800468
Glauber Costa8cb834e2008-06-25 14:43:30 -0300469/**
470 * __put_user: - Write a simple value into user space, with less checking.
471 * @x: Value to copy to user space.
472 * @ptr: Destination address, in user space.
473 *
474 * Context: User context only. This function may sleep.
475 *
476 * This macro copies a single simple value from kernel space to user
477 * space. It supports simple types like char and int, but not larger
478 * data types like structures or arrays.
479 *
480 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
481 * to the result of dereferencing @ptr.
482 *
483 * Caller must check the pointer with access_ok() before calling this
484 * function.
485 *
486 * Returns zero on success, or -EFAULT on error.
487 */
488
489#define __put_user(x, ptr) \
490 __put_user_nocheck((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
491
492#define __get_user_unaligned __get_user
493#define __put_user_unaligned __put_user
Glauber Costa865e5b72008-06-25 11:05:11 -0300494
Glauber Costa8bc7de0c2008-06-25 14:53:41 -0300495/*
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800496 * {get|put}_user_try and catch
497 *
498 * get_user_try {
499 * get_user_ex(...);
500 * } get_user_catch(err)
501 */
502#define get_user_try uaccess_try
503#define get_user_catch(err) uaccess_catch(err)
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800504
505#define get_user_ex(x, ptr) do { \
506 unsigned long __gue_val; \
507 __get_user_size_ex((__gue_val), (ptr), (sizeof(*(ptr)))); \
508 (x) = (__force __typeof__(*(ptr)))__gue_val; \
509} while (0)
510
Hiroshi Shimamoto019a1362009-01-29 11:49:18 -0800511#define put_user_try uaccess_try
512#define put_user_catch(err) uaccess_catch(err)
513
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800514#define put_user_ex(x, ptr) \
515 __put_user_size_ex((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
516
Robert Richter1ac2e6c2011-06-07 11:49:55 +0200517extern unsigned long
518copy_from_user_nmi(void *to, const void __user *from, unsigned long n);
Linus Torvalds92ae03f2012-04-06 14:32:32 -0700519extern __must_check long
520strncpy_from_user(char *dst, const char __user *src, long count);
Robert Richter1ac2e6c2011-06-07 11:49:55 +0200521
Linus Torvalds5723aa92012-05-26 11:09:53 -0700522extern __must_check long strlen_user(const char __user *str);
523extern __must_check long strnlen_user(const char __user *str, long n);
524
H. Peter Anvina0528582012-09-21 12:43:11 -0700525unsigned long __must_check clear_user(void __user *mem, unsigned long len);
526unsigned long __must_check __clear_user(void __user *mem, unsigned long len);
527
Hiroshi Shimamotofe40c0a2009-01-23 15:49:41 -0800528/*
Glauber Costa8bc7de0c2008-06-25 14:53:41 -0300529 * movsl can be slow when source and dest are not both 8-byte aligned
530 */
531#ifdef CONFIG_X86_INTEL_USERCOPY
532extern struct movsl_mask {
533 int mask;
534} ____cacheline_aligned_in_smp movsl_mask;
535#endif
536
Glauber Costa22cac162008-06-25 14:56:53 -0300537#define ARCH_HAS_NOCACHE_UACCESS 1
538
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200539#ifdef CONFIG_X86_32
David Howellsa1ce3922012-10-02 18:01:25 +0100540# include <asm/uaccess_32.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200541#else
David Howellsa1ce3922012-10-02 18:01:25 +0100542# include <asm/uaccess_64.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200543#endif
Glauber Costaca233862008-06-13 14:39:25 -0300544
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700545#endif /* _ASM_X86_UACCESS_H */
Nick Piggin8174c432008-07-25 19:45:24 -0700546