blob: 98f4a7934529213c31c8435d8cf00b51d68b3ff1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 03, 04 by Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +01008 * Copyright (C) 2007 Maciej W. Rozycki
Markos Chandrasac1d8592013-12-11 11:25:33 +00009 * Copyright (C) 2014, Imagination Technologies Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11#ifndef _ASM_UACCESS_H
12#define _ASM_UACCESS_H
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/errno.h>
16#include <linux/thread_info.h>
Markos Chandrasac1d8592013-12-11 11:25:33 +000017#include <asm/asm-eva.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/*
20 * The fs value determines whether argument validity checking should be
21 * performed or not. If get_fs() == USER_DS, checking is performed, with
22 * get_fs() == KERNEL_DS, checking is bypassed.
23 *
24 * For historical reasons, these macros are grossly misnamed.
25 */
Ralf Baechle875d43e2005-09-03 15:56:16 -070026#ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Sanjay Lal9843b032012-11-21 18:34:03 -080028#ifdef CONFIG_KVM_GUEST
29#define __UA_LIMIT 0x40000000UL
30#else
31#define __UA_LIMIT 0x80000000UL
32#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#define __UA_ADDR ".word"
35#define __UA_LA "la"
36#define __UA_ADDU "addu"
37#define __UA_t0 "$8"
38#define __UA_t1 "$9"
39
Ralf Baechle875d43e2005-09-03 15:56:16 -070040#endif /* CONFIG_32BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Ralf Baechle875d43e2005-09-03 15:56:16 -070042#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David Daney949e51b2010-10-14 11:32:33 -070044extern u64 __ua_limit;
45
46#define __UA_LIMIT __ua_limit
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define __UA_ADDR ".dword"
49#define __UA_LA "dla"
50#define __UA_ADDU "daddu"
51#define __UA_t0 "$12"
52#define __UA_t1 "$13"
53
Ralf Baechle875d43e2005-09-03 15:56:16 -070054#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * USER_DS is a bitmask that has the bits set that may not be set in a valid
58 * userspace address. Note that we limit 32-bit userspace to 0x7fff8000 but
59 * the arithmetic we're doing only works if the limit is a power of two, so
60 * we use 0x80000000 here on 32-bit kernels. If a process passes an invalid
61 * address in this range it's the process's problem, not ours :-)
62 */
63
Sanjay Lal9843b032012-11-21 18:34:03 -080064#ifdef CONFIG_KVM_GUEST
65#define KERNEL_DS ((mm_segment_t) { 0x80000000UL })
66#define USER_DS ((mm_segment_t) { 0xC0000000UL })
67#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define KERNEL_DS ((mm_segment_t) { 0UL })
69#define USER_DS ((mm_segment_t) { __UA_LIMIT })
Sanjay Lal9843b032012-11-21 18:34:03 -080070#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define VERIFY_READ 0
73#define VERIFY_WRITE 1
74
75#define get_ds() (KERNEL_DS)
76#define get_fs() (current_thread_info()->addr_limit)
77#define set_fs(x) (current_thread_info()->addr_limit = (x))
78
Ralf Baechle21a151d2007-10-11 23:46:15 +010079#define segment_eq(a, b) ((a).seg == (b).seg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81
82/*
83 * Is a address valid? This does a straighforward calculation rather
84 * than tests.
85 *
86 * Address valid if:
87 * - "addr" doesn't have any high-bits set
88 * - AND "size" doesn't have any high-bits set
89 * - AND "addr+size" doesn't have any high-bits set
90 * - OR we are in kernel mode.
91 *
92 * __ua_size() is a trick to avoid runtime checking of positive constant
93 * sizes; for those we already know at compile time that the size is ok.
94 */
95#define __ua_size(size) \
96 ((__builtin_constant_p(size) && (signed long) (size) > 0) ? 0 : (size))
97
98/*
99 * access_ok: - Checks if a user space pointer is valid
100 * @type: Type of access: %VERIFY_READ or %VERIFY_WRITE. Note that
Ralf Baechle70342282013-01-22 12:59:30 +0100101 * %VERIFY_WRITE is a superset of %VERIFY_READ - if it is safe
102 * to write to a block, it is always safe to read from it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * @addr: User space pointer to start of block to check
104 * @size: Size of block to check
105 *
Ralf Baechle70342282013-01-22 12:59:30 +0100106 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *
108 * Checks if a pointer to a block of memory in user space is valid.
109 *
110 * Returns true (nonzero) if the memory block may be valid, false (zero)
111 * if it is definitely invalid.
112 *
113 * Note that, depending on architecture, this function probably just
114 * checks that the pointer is in the user space range - after calling
115 * this function, memory access functions may still return -EFAULT.
116 */
117
118#define __access_mask get_fs().seg
119
Ralf Baechleed01b3d2009-04-27 16:46:21 +0200120#define __access_ok(addr, size, mask) \
121({ \
122 unsigned long __addr = (unsigned long) (addr); \
123 unsigned long __size = size; \
124 unsigned long __mask = mask; \
125 unsigned long __ok; \
126 \
127 __chk_user_ptr(addr); \
128 __ok = (signed long)(__mask & (__addr | (__addr + __size) | \
129 __ua_size(__size))); \
130 __ok == 0; \
Ralf Baechled0aab922009-04-27 15:31:34 +0200131})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133#define access_ok(type, addr, size) \
Ralf Baechled0aab922009-04-27 15:31:34 +0200134 likely(__access_ok((addr), (size), __access_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * put_user: - Write a simple value into user space.
Ralf Baechle70342282013-01-22 12:59:30 +0100138 * @x: Value to copy to user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * @ptr: Destination address, in user space.
140 *
Ralf Baechle70342282013-01-22 12:59:30 +0100141 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
143 * This macro copies a single simple value from kernel space to user
144 * space. It supports simple types like char and int, but not larger
145 * data types like structures or arrays.
146 *
147 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
148 * to the result of dereferencing @ptr.
149 *
150 * Returns zero on success, or -EFAULT on error.
151 */
Ralf Baechle70342282013-01-22 12:59:30 +0100152#define put_user(x,ptr) \
Ralf Baechle21a151d2007-10-11 23:46:15 +0100153 __put_user_check((x), (ptr), sizeof(*(ptr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155/*
156 * get_user: - Get a simple variable from user space.
Ralf Baechle70342282013-01-22 12:59:30 +0100157 * @x: Variable to store result.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * @ptr: Source address, in user space.
159 *
Ralf Baechle70342282013-01-22 12:59:30 +0100160 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
162 * This macro copies a single simple variable from user space to kernel
163 * space. It supports simple types like char and int, but not larger
164 * data types like structures or arrays.
165 *
166 * @ptr must have pointer-to-simple-variable type, and the result of
167 * dereferencing @ptr must be assignable to @x without a cast.
168 *
169 * Returns zero on success, or -EFAULT on error.
170 * On error, the variable @x is set to zero.
171 */
172#define get_user(x,ptr) \
Ralf Baechle21a151d2007-10-11 23:46:15 +0100173 __get_user_check((x), (ptr), sizeof(*(ptr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/*
176 * __put_user: - Write a simple value into user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +0100177 * @x: Value to copy to user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * @ptr: Destination address, in user space.
179 *
Ralf Baechle70342282013-01-22 12:59:30 +0100180 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *
182 * This macro copies a single simple value from kernel space to user
183 * space. It supports simple types like char and int, but not larger
184 * data types like structures or arrays.
185 *
186 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
187 * to the result of dereferencing @ptr.
188 *
189 * Caller must check the pointer with access_ok() before calling this
190 * function.
191 *
192 * Returns zero on success, or -EFAULT on error.
193 */
194#define __put_user(x,ptr) \
Ralf Baechle21a151d2007-10-11 23:46:15 +0100195 __put_user_nocheck((x), (ptr), sizeof(*(ptr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197/*
198 * __get_user: - Get a simple variable from user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +0100199 * @x: Variable to store result.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * @ptr: Source address, in user space.
201 *
Ralf Baechle70342282013-01-22 12:59:30 +0100202 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * This macro copies a single simple variable from user space to kernel
205 * space. It supports simple types like char and int, but not larger
206 * data types like structures or arrays.
207 *
208 * @ptr must have pointer-to-simple-variable type, and the result of
209 * dereferencing @ptr must be assignable to @x without a cast.
210 *
211 * Caller must check the pointer with access_ok() before calling this
212 * function.
213 *
214 * Returns zero on success, or -EFAULT on error.
215 * On error, the variable @x is set to zero.
216 */
217#define __get_user(x,ptr) \
Ralf Baechle21a151d2007-10-11 23:46:15 +0100218 __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220struct __large_struct { unsigned long buf[100]; };
Ralf Baechlefe00f942005-03-01 19:22:29 +0000221#define __m(x) (*(struct __large_struct __user *)(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223/*
224 * Yuck. We need two variants, one for 64bit operation and one
225 * for 32 bit mode and old iron.
226 */
Markos Chandrasac1d8592013-12-11 11:25:33 +0000227#ifndef CONFIG_EVA
228#define __get_kernel_common(val, size, ptr) __get_user_common(val, size, ptr)
229#else
230/*
231 * Kernel specific functions for EVA. We need to use normal load instructions
232 * to read data from kernel when operating in EVA mode. We use these macros to
233 * avoid redefining __get_user_asm for EVA.
234 */
235#undef _loadd
236#undef _loadw
237#undef _loadh
238#undef _loadb
239#ifdef CONFIG_32BIT
240#define _loadd _loadw
241#else
242#define _loadd(reg, addr) "ld " reg ", " addr
243#endif
244#define _loadw(reg, addr) "lw " reg ", " addr
245#define _loadh(reg, addr) "lh " reg ", " addr
246#define _loadb(reg, addr) "lb " reg ", " addr
247
248#define __get_kernel_common(val, size, ptr) \
249do { \
250 switch (size) { \
Markos Chandras0081ad22014-01-06 12:48:28 +0000251 case 1: __get_data_asm(val, _loadb, ptr); break; \
252 case 2: __get_data_asm(val, _loadh, ptr); break; \
253 case 4: __get_data_asm(val, _loadw, ptr); break; \
254 case 8: __GET_DW(val, _loadd, ptr); break; \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000255 default: __get_user_unknown(); break; \
256 } \
257} while (0)
258#endif
259
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000260#ifdef CONFIG_32BIT
Markos Chandras0081ad22014-01-06 12:48:28 +0000261#define __GET_DW(val, insn, ptr) __get_data_asm_ll32(val, insn, ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000263#ifdef CONFIG_64BIT
Markos Chandras0081ad22014-01-06 12:48:28 +0000264#define __GET_DW(val, insn, ptr) __get_data_asm(val, insn, ptr)
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000265#endif
266
267extern void __get_user_unknown(void);
268
269#define __get_user_common(val, size, ptr) \
270do { \
271 switch (size) { \
Markos Chandras0081ad22014-01-06 12:48:28 +0000272 case 1: __get_data_asm(val, user_lb, ptr); break; \
273 case 2: __get_data_asm(val, user_lh, ptr); break; \
274 case 4: __get_data_asm(val, user_lw, ptr); break; \
275 case 8: __GET_DW(val, user_ld, ptr); break; \
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000276 default: __get_user_unknown(); break; \
277 } \
278} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Ralf Baechle21a151d2007-10-11 23:46:15 +0100280#define __get_user_nocheck(x, ptr, size) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281({ \
Ralf Baechle8d2d91e2008-10-11 16:18:50 +0100282 int __gu_err; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000284 if (segment_eq(get_fs(), get_ds())) { \
285 __get_kernel_common((x), size, ptr); \
286 } else { \
287 __chk_user_ptr(ptr); \
288 __get_user_common((x), size, ptr); \
289 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 __gu_err; \
291})
292
Ralf Baechle21a151d2007-10-11 23:46:15 +0100293#define __get_user_check(x, ptr, size) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294({ \
Ralf Baechle8d2d91e2008-10-11 16:18:50 +0100295 int __gu_err = -EFAULT; \
Atsushi Nemoto8ecbbca2006-02-14 15:57:50 +0900296 const __typeof__(*(ptr)) __user * __gu_ptr = (ptr); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 \
Ralf Baechleef41f462009-04-28 14:17:54 +0200298 might_fault(); \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000299 if (likely(access_ok(VERIFY_READ, __gu_ptr, size))) { \
300 if (segment_eq(get_fs(), get_ds())) \
301 __get_kernel_common((x), size, __gu_ptr); \
302 else \
303 __get_user_common((x), size, __gu_ptr); \
304 } \
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000305 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 __gu_err; \
307})
308
Markos Chandras0081ad22014-01-06 12:48:28 +0000309#define __get_data_asm(val, insn, addr) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000310{ \
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000311 long __gu_tmp; \
312 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 __asm__ __volatile__( \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000314 "1: "insn("%1", "%3")" \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 "2: \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500316 " .insn \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 " .section .fixup,\"ax\" \n" \
318 "3: li %0, %4 \n" \
319 " j 2b \n" \
320 " .previous \n" \
321 " .section __ex_table,\"a\" \n" \
322 " "__UA_ADDR "\t1b, 3b \n" \
323 " .previous \n" \
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000324 : "=r" (__gu_err), "=r" (__gu_tmp) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000325 : "0" (0), "o" (__m(addr)), "i" (-EFAULT)); \
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000326 \
Atsushi Nemoto8ecbbca2006-02-14 15:57:50 +0900327 (val) = (__typeof__(*(addr))) __gu_tmp; \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000328}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330/*
331 * Get a long long 64 using 32 bit registers.
332 */
Markos Chandras0081ad22014-01-06 12:48:28 +0000333#define __get_data_asm_ll32(val, insn, addr) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000334{ \
Ralf Baechlecb66fb32007-02-13 11:45:24 +0000335 union { \
336 unsigned long long l; \
337 __typeof__(*(addr)) t; \
338 } __gu_tmp; \
Ralf Baechlecd1fb9e2007-02-12 23:12:38 +0000339 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 __asm__ __volatile__( \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000341 "1: " insn("%1", "(%3)")" \n" \
342 "2: " insn("%D1", "4(%3)")" \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500343 "3: \n" \
344 " .insn \n" \
345 " .section .fixup,\"ax\" \n" \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000346 "4: li %0, %4 \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 " move %1, $0 \n" \
348 " move %D1, $0 \n" \
349 " j 3b \n" \
350 " .previous \n" \
351 " .section __ex_table,\"a\" \n" \
352 " " __UA_ADDR " 1b, 4b \n" \
353 " " __UA_ADDR " 2b, 4b \n" \
354 " .previous \n" \
Ralf Baechlecb66fb32007-02-13 11:45:24 +0000355 : "=r" (__gu_err), "=&r" (__gu_tmp.l) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000356 : "0" (0), "r" (addr), "i" (-EFAULT)); \
Ralf Baechlecb66fb32007-02-13 11:45:24 +0000357 \
358 (val) = __gu_tmp.t; \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000359}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Markos Chandrasac1d8592013-12-11 11:25:33 +0000361#ifndef CONFIG_EVA
362#define __put_kernel_common(ptr, size) __put_user_common(ptr, size)
363#else
364/*
365 * Kernel specific functions for EVA. We need to use normal load instructions
366 * to read data from kernel when operating in EVA mode. We use these macros to
Markos Chandras0081ad22014-01-06 12:48:28 +0000367 * avoid redefining __get_data_asm for EVA.
Markos Chandrasac1d8592013-12-11 11:25:33 +0000368 */
369#undef _stored
370#undef _storew
371#undef _storeh
372#undef _storeb
373#ifdef CONFIG_32BIT
374#define _stored _storew
375#else
376#define _stored(reg, addr) "ld " reg ", " addr
377#endif
378
379#define _storew(reg, addr) "sw " reg ", " addr
380#define _storeh(reg, addr) "sh " reg ", " addr
381#define _storeb(reg, addr) "sb " reg ", " addr
382
383#define __put_kernel_common(ptr, size) \
384do { \
385 switch (size) { \
Markos Chandras0081ad22014-01-06 12:48:28 +0000386 case 1: __put_data_asm(_storeb, ptr); break; \
387 case 2: __put_data_asm(_storeh, ptr); break; \
388 case 4: __put_data_asm(_storew, ptr); break; \
389 case 8: __PUT_DW(_stored, ptr); break; \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000390 default: __put_user_unknown(); break; \
391 } \
392} while(0)
393#endif
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
396 * Yuck. We need two variants, one for 64bit operation and one
397 * for 32 bit mode and old iron.
398 */
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000399#ifdef CONFIG_32BIT
Markos Chandras0081ad22014-01-06 12:48:28 +0000400#define __PUT_DW(insn, ptr) __put_data_asm_ll32(insn, ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#endif
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000402#ifdef CONFIG_64BIT
Markos Chandras0081ad22014-01-06 12:48:28 +0000403#define __PUT_DW(insn, ptr) __put_data_asm(insn, ptr)
Ralf Baechle4feb8f82006-01-23 16:15:30 +0000404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000406#define __put_user_common(ptr, size) \
407do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 switch (size) { \
Markos Chandras0081ad22014-01-06 12:48:28 +0000409 case 1: __put_data_asm(user_sb, ptr); break; \
410 case 2: __put_data_asm(user_sh, ptr); break; \
411 case 4: __put_data_asm(user_sw, ptr); break; \
412 case 8: __PUT_DW(user_sd, ptr); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 default: __put_user_unknown(); break; \
414 } \
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000415} while (0)
416
417#define __put_user_nocheck(x, ptr, size) \
418({ \
419 __typeof__(*(ptr)) __pu_val; \
420 int __pu_err = 0; \
421 \
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000422 __pu_val = (x); \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000423 if (segment_eq(get_fs(), get_ds())) { \
424 __put_kernel_common(ptr, size); \
425 } else { \
426 __chk_user_ptr(ptr); \
427 __put_user_common(ptr, size); \
428 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 __pu_err; \
430})
431
Ralf Baechle21a151d2007-10-11 23:46:15 +0100432#define __put_user_check(x, ptr, size) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433({ \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000434 __typeof__(*(ptr)) __user *__pu_addr = (ptr); \
435 __typeof__(*(ptr)) __pu_val = (x); \
Ralf Baechle8d2d91e2008-10-11 16:18:50 +0100436 int __pu_err = -EFAULT; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 \
Ralf Baechleef41f462009-04-28 14:17:54 +0200438 might_fault(); \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000439 if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) { \
440 if (segment_eq(get_fs(), get_ds())) \
441 __put_kernel_common(__pu_addr, size); \
442 else \
443 __put_user_common(__pu_addr, size); \
444 } \
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000445 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 __pu_err; \
447})
448
Markos Chandras0081ad22014-01-06 12:48:28 +0000449#define __put_data_asm(insn, ptr) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000450{ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 __asm__ __volatile__( \
Markos Chandras0081ad22014-01-06 12:48:28 +0000452 "1: "insn("%z2", "%3")" # __put_data_asm \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 "2: \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500454 " .insn \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 " .section .fixup,\"ax\" \n" \
456 "3: li %0, %4 \n" \
457 " j 2b \n" \
458 " .previous \n" \
459 " .section __ex_table,\"a\" \n" \
460 " " __UA_ADDR " 1b, 3b \n" \
461 " .previous \n" \
462 : "=r" (__pu_err) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000463 : "0" (0), "Jr" (__pu_val), "o" (__m(ptr)), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 "i" (-EFAULT)); \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000465}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Markos Chandras0081ad22014-01-06 12:48:28 +0000467#define __put_data_asm_ll32(insn, ptr) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000468{ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 __asm__ __volatile__( \
Markos Chandras0081ad22014-01-06 12:48:28 +0000470 "1: "insn("%2", "(%3)")" # __put_data_asm_ll32 \n" \
Markos Chandrasac1d8592013-12-11 11:25:33 +0000471 "2: "insn("%D2", "4(%3)")" \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 "3: \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500473 " .insn \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 " .section .fixup,\"ax\" \n" \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000475 "4: li %0, %4 \n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 " j 3b \n" \
477 " .previous \n" \
478 " .section __ex_table,\"a\" \n" \
479 " " __UA_ADDR " 1b, 4b \n" \
480 " " __UA_ADDR " 2b, 4b \n" \
481 " .previous" \
482 : "=r" (__pu_err) \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000483 : "0" (0), "r" (__pu_val), "r" (ptr), \
484 "i" (-EFAULT)); \
485}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487extern void __put_user_unknown(void);
488
489/*
Leonid Yegoshin18e90012013-12-17 15:20:24 +0000490 * ul{b,h,w} are macros and there are no equivalent macros for EVA.
491 * EVA unaligned access is handled in the ADE exception handler.
492 */
493#ifndef CONFIG_EVA
494/*
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000495 * put_user_unaligned: - Write a simple value into user space.
Ralf Baechle70342282013-01-22 12:59:30 +0100496 * @x: Value to copy to user space.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000497 * @ptr: Destination address, in user space.
498 *
Ralf Baechle70342282013-01-22 12:59:30 +0100499 * Context: User context only. This function may sleep.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000500 *
501 * This macro copies a single simple value from kernel space to user
502 * space. It supports simple types like char and int, but not larger
503 * data types like structures or arrays.
504 *
505 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
506 * to the result of dereferencing @ptr.
507 *
508 * Returns zero on success, or -EFAULT on error.
509 */
510#define put_user_unaligned(x,ptr) \
511 __put_user_unaligned_check((x),(ptr),sizeof(*(ptr)))
512
513/*
514 * get_user_unaligned: - Get a simple variable from user space.
Ralf Baechle70342282013-01-22 12:59:30 +0100515 * @x: Variable to store result.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000516 * @ptr: Source address, in user space.
517 *
Ralf Baechle70342282013-01-22 12:59:30 +0100518 * Context: User context only. This function may sleep.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000519 *
520 * This macro copies a single simple variable from user space to kernel
521 * space. It supports simple types like char and int, but not larger
522 * data types like structures or arrays.
523 *
524 * @ptr must have pointer-to-simple-variable type, and the result of
525 * dereferencing @ptr must be assignable to @x without a cast.
526 *
527 * Returns zero on success, or -EFAULT on error.
528 * On error, the variable @x is set to zero.
529 */
530#define get_user_unaligned(x,ptr) \
531 __get_user_unaligned_check((x),(ptr),sizeof(*(ptr)))
532
533/*
534 * __put_user_unaligned: - Write a simple value into user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +0100535 * @x: Value to copy to user space.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000536 * @ptr: Destination address, in user space.
537 *
Ralf Baechle70342282013-01-22 12:59:30 +0100538 * Context: User context only. This function may sleep.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000539 *
540 * This macro copies a single simple value from kernel space to user
541 * space. It supports simple types like char and int, but not larger
542 * data types like structures or arrays.
543 *
544 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
545 * to the result of dereferencing @ptr.
546 *
547 * Caller must check the pointer with access_ok() before calling this
548 * function.
549 *
550 * Returns zero on success, or -EFAULT on error.
551 */
552#define __put_user_unaligned(x,ptr) \
553 __put_user_unaligned_nocheck((x),(ptr),sizeof(*(ptr)))
554
555/*
556 * __get_user_unaligned: - Get a simple variable from user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +0100557 * @x: Variable to store result.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000558 * @ptr: Source address, in user space.
559 *
Ralf Baechle70342282013-01-22 12:59:30 +0100560 * Context: User context only. This function may sleep.
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000561 *
562 * This macro copies a single simple variable from user space to kernel
563 * space. It supports simple types like char and int, but not larger
564 * data types like structures or arrays.
565 *
566 * @ptr must have pointer-to-simple-variable type, and the result of
567 * dereferencing @ptr must be assignable to @x without a cast.
568 *
569 * Caller must check the pointer with access_ok() before calling this
570 * function.
571 *
572 * Returns zero on success, or -EFAULT on error.
573 * On error, the variable @x is set to zero.
574 */
575#define __get_user_unaligned(x,ptr) \
576 __get_user__unalignednocheck((x),(ptr),sizeof(*(ptr)))
577
578/*
579 * Yuck. We need two variants, one for 64bit operation and one
580 * for 32 bit mode and old iron.
581 */
582#ifdef CONFIG_32BIT
583#define __GET_USER_UNALIGNED_DW(val, ptr) \
584 __get_user_unaligned_asm_ll32(val, ptr)
585#endif
586#ifdef CONFIG_64BIT
587#define __GET_USER_UNALIGNED_DW(val, ptr) \
588 __get_user_unaligned_asm(val, "uld", ptr)
589#endif
590
591extern void __get_user_unaligned_unknown(void);
592
593#define __get_user_unaligned_common(val, size, ptr) \
594do { \
595 switch (size) { \
Markos Chandras0081ad22014-01-06 12:48:28 +0000596 case 1: __get_data_asm(val, "lb", ptr); break; \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000597 case 2: __get_user_unaligned_asm(val, "ulh", ptr); break; \
598 case 4: __get_user_unaligned_asm(val, "ulw", ptr); break; \
599 case 8: __GET_USER_UNALIGNED_DW(val, ptr); break; \
600 default: __get_user_unaligned_unknown(); break; \
601 } \
602} while (0)
603
604#define __get_user_unaligned_nocheck(x,ptr,size) \
605({ \
606 int __gu_err; \
607 \
608 __get_user_unaligned_common((x), size, ptr); \
609 __gu_err; \
610})
611
612#define __get_user_unaligned_check(x,ptr,size) \
613({ \
614 int __gu_err = -EFAULT; \
615 const __typeof__(*(ptr)) __user * __gu_ptr = (ptr); \
616 \
617 if (likely(access_ok(VERIFY_READ, __gu_ptr, size))) \
618 __get_user_unaligned_common((x), size, __gu_ptr); \
619 \
620 __gu_err; \
621})
622
Markos Chandras0081ad22014-01-06 12:48:28 +0000623#define __get_data_unaligned_asm(val, insn, addr) \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000624{ \
625 long __gu_tmp; \
626 \
627 __asm__ __volatile__( \
628 "1: " insn " %1, %3 \n" \
629 "2: \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500630 " .insn \n" \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000631 " .section .fixup,\"ax\" \n" \
632 "3: li %0, %4 \n" \
633 " j 2b \n" \
634 " .previous \n" \
635 " .section __ex_table,\"a\" \n" \
636 " "__UA_ADDR "\t1b, 3b \n" \
637 " "__UA_ADDR "\t1b + 4, 3b \n" \
638 " .previous \n" \
639 : "=r" (__gu_err), "=r" (__gu_tmp) \
640 : "0" (0), "o" (__m(addr)), "i" (-EFAULT)); \
641 \
642 (val) = (__typeof__(*(addr))) __gu_tmp; \
643}
644
645/*
646 * Get a long long 64 using 32 bit registers.
647 */
648#define __get_user_unaligned_asm_ll32(val, addr) \
649{ \
Ralf Baechle70342282013-01-22 12:59:30 +0100650 unsigned long long __gu_tmp; \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000651 \
652 __asm__ __volatile__( \
653 "1: ulw %1, (%3) \n" \
654 "2: ulw %D1, 4(%3) \n" \
655 " move %0, $0 \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500656 "3: \n" \
657 " .insn \n" \
658 " .section .fixup,\"ax\" \n" \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000659 "4: li %0, %4 \n" \
660 " move %1, $0 \n" \
661 " move %D1, $0 \n" \
662 " j 3b \n" \
663 " .previous \n" \
664 " .section __ex_table,\"a\" \n" \
665 " " __UA_ADDR " 1b, 4b \n" \
666 " " __UA_ADDR " 1b + 4, 4b \n" \
667 " " __UA_ADDR " 2b, 4b \n" \
668 " " __UA_ADDR " 2b + 4, 4b \n" \
669 " .previous \n" \
670 : "=r" (__gu_err), "=&r" (__gu_tmp) \
671 : "0" (0), "r" (addr), "i" (-EFAULT)); \
672 (val) = (__typeof__(*(addr))) __gu_tmp; \
673}
674
675/*
676 * Yuck. We need two variants, one for 64bit operation and one
677 * for 32 bit mode and old iron.
678 */
679#ifdef CONFIG_32BIT
680#define __PUT_USER_UNALIGNED_DW(ptr) __put_user_unaligned_asm_ll32(ptr)
681#endif
682#ifdef CONFIG_64BIT
683#define __PUT_USER_UNALIGNED_DW(ptr) __put_user_unaligned_asm("usd", ptr)
684#endif
685
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000686#define __put_user_unaligned_common(ptr, size) \
687do { \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000688 switch (size) { \
Markos Chandras0081ad22014-01-06 12:48:28 +0000689 case 1: __put_data_asm("sb", ptr); break; \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000690 case 2: __put_user_unaligned_asm("ush", ptr); break; \
691 case 4: __put_user_unaligned_asm("usw", ptr); break; \
692 case 8: __PUT_USER_UNALIGNED_DW(ptr); break; \
693 default: __put_user_unaligned_unknown(); break; \
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000694} while (0)
695
696#define __put_user_unaligned_nocheck(x,ptr,size) \
697({ \
698 __typeof__(*(ptr)) __pu_val; \
699 int __pu_err = 0; \
700 \
701 __pu_val = (x); \
702 __put_user_unaligned_common(ptr, size); \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000703 __pu_err; \
704})
705
706#define __put_user_unaligned_check(x,ptr,size) \
707({ \
708 __typeof__(*(ptr)) __user *__pu_addr = (ptr); \
709 __typeof__(*(ptr)) __pu_val = (x); \
710 int __pu_err = -EFAULT; \
711 \
Markos Chandrasec56b1d2013-12-17 14:42:23 +0000712 if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) \
713 __put_user_unaligned_common(__pu_addr, size); \
714 \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000715 __pu_err; \
716})
717
718#define __put_user_unaligned_asm(insn, ptr) \
719{ \
720 __asm__ __volatile__( \
721 "1: " insn " %z2, %3 # __put_user_unaligned_asm\n" \
722 "2: \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500723 " .insn \n" \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000724 " .section .fixup,\"ax\" \n" \
725 "3: li %0, %4 \n" \
726 " j 2b \n" \
727 " .previous \n" \
728 " .section __ex_table,\"a\" \n" \
729 " " __UA_ADDR " 1b, 3b \n" \
730 " .previous \n" \
731 : "=r" (__pu_err) \
732 : "0" (0), "Jr" (__pu_val), "o" (__m(ptr)), \
733 "i" (-EFAULT)); \
734}
735
736#define __put_user_unaligned_asm_ll32(ptr) \
737{ \
738 __asm__ __volatile__( \
Ralf Baechle70342282013-01-22 12:59:30 +0100739 "1: sw %2, (%3) # __put_user_unaligned_asm_ll32 \n" \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000740 "2: sw %D2, 4(%3) \n" \
741 "3: \n" \
Steven J. Hill1658f912013-03-25 13:22:59 -0500742 " .insn \n" \
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000743 " .section .fixup,\"ax\" \n" \
744 "4: li %0, %4 \n" \
745 " j 3b \n" \
746 " .previous \n" \
747 " .section __ex_table,\"a\" \n" \
748 " " __UA_ADDR " 1b, 4b \n" \
749 " " __UA_ADDR " 1b + 4, 4b \n" \
750 " " __UA_ADDR " 2b, 4b \n" \
751 " " __UA_ADDR " 2b + 4, 4b \n" \
752 " .previous" \
753 : "=r" (__pu_err) \
754 : "0" (0), "r" (__pu_val), "r" (ptr), \
755 "i" (-EFAULT)); \
756}
757
758extern void __put_user_unaligned_unknown(void);
Leonid Yegoshin18e90012013-12-17 15:20:24 +0000759#endif
Ralf Baechle71ec6cc2006-10-31 02:52:56 +0000760
761/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * We're generating jump to subroutines which will be outside the range of
763 * jump instructions
764 */
765#ifdef MODULE
766#define __MODULE_JAL(destination) \
767 ".set\tnoat\n\t" \
Ralf Baechle70342282013-01-22 12:59:30 +0100768 __UA_LA "\t$1, " #destination "\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 "jalr\t$1\n\t" \
770 ".set\tat\n\t"
771#else
772#define __MODULE_JAL(destination) \
773 "jal\t" #destination "\n\t"
774#endif
775
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100776#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
777#define DADDI_SCRATCH "$0"
778#else
779#define DADDI_SCRATCH "$3"
780#endif
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782extern size_t __copy_user(void *__to, const void *__from, size_t __n);
783
Markos Chandras05c65162013-12-11 16:47:10 +0000784#ifndef CONFIG_EVA
Ralf Baechle21a151d2007-10-11 23:46:15 +0100785#define __invoke_copy_to_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786({ \
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100787 register void __user *__cu_to_r __asm__("$4"); \
788 register const void *__cu_from_r __asm__("$5"); \
789 register long __cu_len_r __asm__("$6"); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 \
791 __cu_to_r = (to); \
792 __cu_from_r = (from); \
793 __cu_len_r = (n); \
794 __asm__ __volatile__( \
795 __MODULE_JAL(__copy_user) \
796 : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) \
797 : \
David Daneybb0757e2012-06-06 23:00:31 +0100798 : "$8", "$9", "$10", "$11", "$12", "$14", "$15", "$24", "$31", \
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100799 DADDI_SCRATCH, "memory"); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 __cu_len_r; \
801})
802
Markos Chandras05c65162013-12-11 16:47:10 +0000803#define __invoke_copy_to_kernel(to, from, n) \
804 __invoke_copy_to_user(to, from, n)
805
806#endif
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808/*
809 * __copy_to_user: - Copy a block of data into user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +0100810 * @to: Destination address, in user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 * @from: Source address, in kernel space.
Ralf Baechle70342282013-01-22 12:59:30 +0100812 * @n: Number of bytes to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 *
Ralf Baechle70342282013-01-22 12:59:30 +0100814 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 *
816 * Copy data from kernel space to user space. Caller must check
817 * the specified block with access_ok() before calling this function.
818 *
819 * Returns number of bytes that could not be copied.
820 * On success, this will be zero.
821 */
Ralf Baechle21a151d2007-10-11 23:46:15 +0100822#define __copy_to_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823({ \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000824 void __user *__cu_to; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 const void *__cu_from; \
826 long __cu_len; \
827 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 __cu_to = (to); \
829 __cu_from = (from); \
830 __cu_len = (n); \
Ralf Baechleef41f462009-04-28 14:17:54 +0200831 might_fault(); \
Markos Chandras05c65162013-12-11 16:47:10 +0000832 if (segment_eq(get_fs(), get_ds())) \
833 __cu_len = __invoke_copy_to_kernel(__cu_to, __cu_from, \
834 __cu_len); \
835 else \
836 __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, \
837 __cu_len); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 __cu_len; \
839})
840
Ralf Baechled0c91ae2007-03-05 15:54:20 +0000841extern size_t __copy_user_inatomic(void *__to, const void *__from, size_t __n);
842
Ralf Baechle21a151d2007-10-11 23:46:15 +0100843#define __copy_to_user_inatomic(to, from, n) \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000844({ \
845 void __user *__cu_to; \
846 const void *__cu_from; \
847 long __cu_len; \
848 \
849 __cu_to = (to); \
850 __cu_from = (from); \
851 __cu_len = (n); \
Markos Chandras05c65162013-12-11 16:47:10 +0000852 if (segment_eq(get_fs(), get_ds())) \
853 __cu_len = __invoke_copy_to_kernel(__cu_to, __cu_from, \
854 __cu_len); \
855 else \
856 __cu_len = __invoke_copy_to_user(__cu_to, __cu_from, \
857 __cu_len); \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000858 __cu_len; \
859})
860
Ralf Baechle21a151d2007-10-11 23:46:15 +0100861#define __copy_from_user_inatomic(to, from, n) \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000862({ \
863 void *__cu_to; \
864 const void __user *__cu_from; \
865 long __cu_len; \
866 \
867 __cu_to = (to); \
868 __cu_from = (from); \
869 __cu_len = (n); \
Markos Chandras05c65162013-12-11 16:47:10 +0000870 if (segment_eq(get_fs(), get_ds())) \
871 __cu_len = __invoke_copy_from_kernel_inatomic(__cu_to, \
872 __cu_from,\
873 __cu_len);\
874 else \
875 __cu_len = __invoke_copy_from_user_inatomic(__cu_to, \
876 __cu_from, \
877 __cu_len); \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000878 __cu_len; \
879})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881/*
882 * copy_to_user: - Copy a block of data into user space.
Ralf Baechle70342282013-01-22 12:59:30 +0100883 * @to: Destination address, in user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * @from: Source address, in kernel space.
Ralf Baechle70342282013-01-22 12:59:30 +0100885 * @n: Number of bytes to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 *
Ralf Baechle70342282013-01-22 12:59:30 +0100887 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 *
889 * Copy data from kernel space to user space.
890 *
891 * Returns number of bytes that could not be copied.
892 * On success, this will be zero.
893 */
Ralf Baechle21a151d2007-10-11 23:46:15 +0100894#define copy_to_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895({ \
Ralf Baechlefe00f942005-03-01 19:22:29 +0000896 void __user *__cu_to; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 const void *__cu_from; \
898 long __cu_len; \
899 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 __cu_to = (to); \
901 __cu_from = (from); \
902 __cu_len = (n); \
Markos Chandras05c65162013-12-11 16:47:10 +0000903 if (segment_eq(get_fs(), get_ds())) { \
904 __cu_len = __invoke_copy_to_kernel(__cu_to, \
905 __cu_from, \
906 __cu_len); \
907 } else { \
908 if (access_ok(VERIFY_WRITE, __cu_to, __cu_len)) { \
909 might_fault(); \
910 __cu_len = __invoke_copy_to_user(__cu_to, \
911 __cu_from, \
912 __cu_len); \
913 } \
Ralf Baechleef41f462009-04-28 14:17:54 +0200914 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 __cu_len; \
916})
917
Markos Chandras05c65162013-12-11 16:47:10 +0000918#ifndef CONFIG_EVA
919
Ralf Baechle21a151d2007-10-11 23:46:15 +0100920#define __invoke_copy_from_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921({ \
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100922 register void *__cu_to_r __asm__("$4"); \
923 register const void __user *__cu_from_r __asm__("$5"); \
924 register long __cu_len_r __asm__("$6"); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 \
926 __cu_to_r = (to); \
927 __cu_from_r = (from); \
928 __cu_len_r = (n); \
929 __asm__ __volatile__( \
930 ".set\tnoreorder\n\t" \
931 __MODULE_JAL(__copy_user) \
932 ".set\tnoat\n\t" \
933 __UA_ADDU "\t$1, %1, %2\n\t" \
934 ".set\tat\n\t" \
935 ".set\treorder" \
936 : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) \
937 : \
David Daneybb0757e2012-06-06 23:00:31 +0100938 : "$8", "$9", "$10", "$11", "$12", "$14", "$15", "$24", "$31", \
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100939 DADDI_SCRATCH, "memory"); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 __cu_len_r; \
941})
942
Markos Chandras05c65162013-12-11 16:47:10 +0000943#define __invoke_copy_from_kernel(to, from, n) \
944 __invoke_copy_from_user(to, from, n)
945
946/* For userland <-> userland operations */
947#define ___invoke_copy_in_user(to, from, n) \
948 __invoke_copy_from_user(to, from, n)
949
950/* For kernel <-> kernel operations */
951#define ___invoke_copy_in_kernel(to, from, n) \
952 __invoke_copy_from_user(to, from, n)
953
Ralf Baechle21a151d2007-10-11 23:46:15 +0100954#define __invoke_copy_from_user_inatomic(to, from, n) \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000955({ \
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100956 register void *__cu_to_r __asm__("$4"); \
957 register const void __user *__cu_from_r __asm__("$5"); \
958 register long __cu_len_r __asm__("$6"); \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000959 \
960 __cu_to_r = (to); \
961 __cu_from_r = (from); \
962 __cu_len_r = (n); \
963 __asm__ __volatile__( \
964 ".set\tnoreorder\n\t" \
965 __MODULE_JAL(__copy_user_inatomic) \
966 ".set\tnoat\n\t" \
967 __UA_ADDU "\t$1, %1, %2\n\t" \
968 ".set\tat\n\t" \
969 ".set\treorder" \
970 : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) \
971 : \
David Daneybb0757e2012-06-06 23:00:31 +0100972 : "$8", "$9", "$10", "$11", "$12", "$14", "$15", "$24", "$31", \
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100973 DADDI_SCRATCH, "memory"); \
Ralf Baechlee03b5262007-02-19 16:59:24 +0000974 __cu_len_r; \
975})
976
Markos Chandras05c65162013-12-11 16:47:10 +0000977#define __invoke_copy_from_kernel_inatomic(to, from, n) \
978 __invoke_copy_from_user_inatomic(to, from, n) \
979
980#else
981
982/* EVA specific functions */
983
984extern size_t __copy_user_inatomic_eva(void *__to, const void *__from,
985 size_t __n);
986extern size_t __copy_from_user_eva(void *__to, const void *__from,
987 size_t __n);
988extern size_t __copy_to_user_eva(void *__to, const void *__from,
989 size_t __n);
990extern size_t __copy_in_user_eva(void *__to, const void *__from, size_t __n);
991
992#define __invoke_copy_from_user_eva_generic(to, from, n, func_ptr) \
993({ \
994 register void *__cu_to_r __asm__("$4"); \
995 register const void __user *__cu_from_r __asm__("$5"); \
996 register long __cu_len_r __asm__("$6"); \
997 \
998 __cu_to_r = (to); \
999 __cu_from_r = (from); \
1000 __cu_len_r = (n); \
1001 __asm__ __volatile__( \
1002 ".set\tnoreorder\n\t" \
1003 __MODULE_JAL(func_ptr) \
1004 ".set\tnoat\n\t" \
1005 __UA_ADDU "\t$1, %1, %2\n\t" \
1006 ".set\tat\n\t" \
1007 ".set\treorder" \
1008 : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) \
1009 : \
1010 : "$8", "$9", "$10", "$11", "$12", "$14", "$15", "$24", "$31", \
1011 DADDI_SCRATCH, "memory"); \
1012 __cu_len_r; \
1013})
1014
1015#define __invoke_copy_to_user_eva_generic(to, from, n, func_ptr) \
1016({ \
1017 register void *__cu_to_r __asm__("$4"); \
1018 register const void __user *__cu_from_r __asm__("$5"); \
1019 register long __cu_len_r __asm__("$6"); \
1020 \
1021 __cu_to_r = (to); \
1022 __cu_from_r = (from); \
1023 __cu_len_r = (n); \
1024 __asm__ __volatile__( \
1025 __MODULE_JAL(func_ptr) \
1026 : "+r" (__cu_to_r), "+r" (__cu_from_r), "+r" (__cu_len_r) \
1027 : \
1028 : "$8", "$9", "$10", "$11", "$12", "$14", "$15", "$24", "$31", \
1029 DADDI_SCRATCH, "memory"); \
1030 __cu_len_r; \
1031})
1032
1033/*
1034 * Source or destination address is in userland. We need to go through
1035 * the TLB
1036 */
1037#define __invoke_copy_from_user(to, from, n) \
1038 __invoke_copy_from_user_eva_generic(to, from, n, __copy_from_user_eva)
1039
1040#define __invoke_copy_from_user_inatomic(to, from, n) \
1041 __invoke_copy_from_user_eva_generic(to, from, n, \
1042 __copy_user_inatomic_eva)
1043
1044#define __invoke_copy_to_user(to, from, n) \
1045 __invoke_copy_to_user_eva_generic(to, from, n, __copy_to_user_eva)
1046
1047#define ___invoke_copy_in_user(to, from, n) \
1048 __invoke_copy_from_user_eva_generic(to, from, n, __copy_in_user_eva)
1049
1050/*
1051 * Source or destination address in the kernel. We are not going through
1052 * the TLB
1053 */
1054#define __invoke_copy_from_kernel(to, from, n) \
1055 __invoke_copy_from_user_eva_generic(to, from, n, __copy_user)
1056
1057#define __invoke_copy_from_kernel_inatomic(to, from, n) \
1058 __invoke_copy_from_user_eva_generic(to, from, n, __copy_user_inatomic)
1059
1060#define __invoke_copy_to_kernel(to, from, n) \
1061 __invoke_copy_to_user_eva_generic(to, from, n, __copy_user)
1062
1063#define ___invoke_copy_in_kernel(to, from, n) \
1064 __invoke_copy_from_user_eva_generic(to, from, n, __copy_user)
1065
1066#endif /* CONFIG_EVA */
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068/*
Chris Dearman131c1a22007-02-01 19:54:13 +00001069 * __copy_from_user: - Copy a block of data from user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +01001070 * @to: Destination address, in kernel space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 * @from: Source address, in user space.
Ralf Baechle70342282013-01-22 12:59:30 +01001072 * @n: Number of bytes to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 *
Ralf Baechle70342282013-01-22 12:59:30 +01001074 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 *
1076 * Copy data from user space to kernel space. Caller must check
1077 * the specified block with access_ok() before calling this function.
1078 *
1079 * Returns number of bytes that could not be copied.
1080 * On success, this will be zero.
1081 *
1082 * If some data could not be copied, this function will pad the copied
1083 * data to the requested size using zero bytes.
1084 */
Ralf Baechle21a151d2007-10-11 23:46:15 +01001085#define __copy_from_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086({ \
1087 void *__cu_to; \
Ralf Baechlefe00f942005-03-01 19:22:29 +00001088 const void __user *__cu_from; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 long __cu_len; \
1090 \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 __cu_to = (to); \
1092 __cu_from = (from); \
1093 __cu_len = (n); \
Ralf Baechleef41f462009-04-28 14:17:54 +02001094 might_fault(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 __cu_len = __invoke_copy_from_user(__cu_to, __cu_from, \
Ralf Baechle70342282013-01-22 12:59:30 +01001096 __cu_len); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 __cu_len; \
1098})
1099
1100/*
1101 * copy_from_user: - Copy a block of data from user space.
Ralf Baechle70342282013-01-22 12:59:30 +01001102 * @to: Destination address, in kernel space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * @from: Source address, in user space.
Ralf Baechle70342282013-01-22 12:59:30 +01001104 * @n: Number of bytes to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 *
Ralf Baechle70342282013-01-22 12:59:30 +01001106 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 *
1108 * Copy data from user space to kernel space.
1109 *
1110 * Returns number of bytes that could not be copied.
1111 * On success, this will be zero.
1112 *
1113 * If some data could not be copied, this function will pad the copied
1114 * data to the requested size using zero bytes.
1115 */
Ralf Baechle21a151d2007-10-11 23:46:15 +01001116#define copy_from_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117({ \
1118 void *__cu_to; \
Ralf Baechlefe00f942005-03-01 19:22:29 +00001119 const void __user *__cu_from; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 long __cu_len; \
1121 \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 __cu_to = (to); \
1123 __cu_from = (from); \
1124 __cu_len = (n); \
Markos Chandras05c65162013-12-11 16:47:10 +00001125 if (segment_eq(get_fs(), get_ds())) { \
1126 __cu_len = __invoke_copy_from_kernel(__cu_to, \
1127 __cu_from, \
1128 __cu_len); \
1129 } else { \
1130 if (access_ok(VERIFY_READ, __cu_from, __cu_len)) { \
1131 might_fault(); \
1132 __cu_len = __invoke_copy_from_user(__cu_to, \
1133 __cu_from, \
1134 __cu_len); \
1135 } \
Ralf Baechleef41f462009-04-28 14:17:54 +02001136 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 __cu_len; \
1138})
1139
Ralf Baechleed01b3d2009-04-27 16:46:21 +02001140#define __copy_in_user(to, from, n) \
1141({ \
1142 void __user *__cu_to; \
1143 const void __user *__cu_from; \
1144 long __cu_len; \
1145 \
Ralf Baechleed01b3d2009-04-27 16:46:21 +02001146 __cu_to = (to); \
1147 __cu_from = (from); \
1148 __cu_len = (n); \
Markos Chandras05c65162013-12-11 16:47:10 +00001149 if (segment_eq(get_fs(), get_ds())) { \
1150 __cu_len = ___invoke_copy_in_kernel(__cu_to, __cu_from, \
1151 __cu_len); \
1152 } else { \
1153 might_fault(); \
1154 __cu_len = ___invoke_copy_in_user(__cu_to, __cu_from, \
1155 __cu_len); \
1156 } \
Ralf Baechleed01b3d2009-04-27 16:46:21 +02001157 __cu_len; \
1158})
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Ralf Baechle21a151d2007-10-11 23:46:15 +01001160#define copy_in_user(to, from, n) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161({ \
Ralf Baechlefe00f942005-03-01 19:22:29 +00001162 void __user *__cu_to; \
1163 const void __user *__cu_from; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 long __cu_len; \
1165 \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 __cu_to = (to); \
1167 __cu_from = (from); \
1168 __cu_len = (n); \
Markos Chandras05c65162013-12-11 16:47:10 +00001169 if (segment_eq(get_fs(), get_ds())) { \
1170 __cu_len = ___invoke_copy_in_kernel(__cu_to,__cu_from, \
1171 __cu_len); \
1172 } else { \
1173 if (likely(access_ok(VERIFY_READ, __cu_from, __cu_len) &&\
1174 access_ok(VERIFY_WRITE, __cu_to, __cu_len))) {\
1175 might_fault(); \
1176 __cu_len = ___invoke_copy_in_user(__cu_to, \
1177 __cu_from, \
1178 __cu_len); \
1179 } \
Ralf Baechleef41f462009-04-28 14:17:54 +02001180 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 __cu_len; \
1182})
1183
1184/*
1185 * __clear_user: - Zero a block of memory in user space, with less checking.
Ralf Baechle70342282013-01-22 12:59:30 +01001186 * @to: Destination address, in user space.
1187 * @n: Number of bytes to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 *
1189 * Zero a block of memory in user space. Caller must check
1190 * the specified block with access_ok() before calling this function.
1191 *
1192 * Returns number of bytes that could not be cleared.
1193 * On success, this will be zero.
1194 */
1195static inline __kernel_size_t
Ralf Baechlefe00f942005-03-01 19:22:29 +00001196__clear_user(void __user *addr, __kernel_size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
1198 __kernel_size_t res;
1199
Ralf Baechleef41f462009-04-28 14:17:54 +02001200 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 __asm__ __volatile__(
1202 "move\t$4, %1\n\t"
1203 "move\t$5, $0\n\t"
1204 "move\t$6, %2\n\t"
1205 __MODULE_JAL(__bzero)
1206 "move\t%0, $6"
1207 : "=r" (res)
1208 : "r" (addr), "r" (size)
1209 : "$4", "$5", "$6", __UA_t0, __UA_t1, "$31");
1210
1211 return res;
1212}
1213
1214#define clear_user(addr,n) \
1215({ \
Ralf Baechlefe00f942005-03-01 19:22:29 +00001216 void __user * __cl_addr = (addr); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 unsigned long __cl_size = (n); \
1218 if (__cl_size && access_ok(VERIFY_WRITE, \
Wu Zhangjin63d38922009-05-21 05:50:01 +08001219 __cl_addr, __cl_size)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 __cl_size = __clear_user(__cl_addr, __cl_size); \
1221 __cl_size; \
1222})
1223
1224/*
1225 * __strncpy_from_user: - Copy a NUL terminated string from userspace, with less checking.
1226 * @dst: Destination address, in kernel space. This buffer must be at
Ralf Baechle70342282013-01-22 12:59:30 +01001227 * least @count bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * @src: Source address, in user space.
1229 * @count: Maximum number of bytes to copy, including the trailing NUL.
1230 *
1231 * Copies a NUL-terminated string from userspace to kernel space.
1232 * Caller must check the specified block with access_ok() before calling
1233 * this function.
1234 *
1235 * On success, returns the length of the string (not including the trailing
1236 * NUL).
1237 *
1238 * If access to userspace fails, returns -EFAULT (some data may have been
1239 * copied).
1240 *
1241 * If @count is smaller than the length of the string, copies @count bytes
1242 * and returns @count.
1243 */
1244static inline long
Ralf Baechlefe00f942005-03-01 19:22:29 +00001245__strncpy_from_user(char *__to, const char __user *__from, long __len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 long res;
1248
Ralf Baechleef41f462009-04-28 14:17:54 +02001249 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 __asm__ __volatile__(
1251 "move\t$4, %1\n\t"
1252 "move\t$5, %2\n\t"
1253 "move\t$6, %3\n\t"
1254 __MODULE_JAL(__strncpy_from_user_nocheck_asm)
1255 "move\t%0, $2"
1256 : "=r" (res)
1257 : "r" (__to), "r" (__from), "r" (__len)
1258 : "$2", "$3", "$4", "$5", "$6", __UA_t0, "$31", "memory");
1259
1260 return res;
1261}
1262
1263/*
1264 * strncpy_from_user: - Copy a NUL terminated string from userspace.
1265 * @dst: Destination address, in kernel space. This buffer must be at
Ralf Baechle70342282013-01-22 12:59:30 +01001266 * least @count bytes long.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 * @src: Source address, in user space.
1268 * @count: Maximum number of bytes to copy, including the trailing NUL.
1269 *
1270 * Copies a NUL-terminated string from userspace to kernel space.
1271 *
1272 * On success, returns the length of the string (not including the trailing
1273 * NUL).
1274 *
1275 * If access to userspace fails, returns -EFAULT (some data may have been
1276 * copied).
1277 *
1278 * If @count is smaller than the length of the string, copies @count bytes
1279 * and returns @count.
1280 */
1281static inline long
Ralf Baechlefe00f942005-03-01 19:22:29 +00001282strncpy_from_user(char *__to, const char __user *__from, long __len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 long res;
1285
Ralf Baechleef41f462009-04-28 14:17:54 +02001286 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 __asm__ __volatile__(
1288 "move\t$4, %1\n\t"
1289 "move\t$5, %2\n\t"
1290 "move\t$6, %3\n\t"
1291 __MODULE_JAL(__strncpy_from_user_asm)
1292 "move\t%0, $2"
1293 : "=r" (res)
1294 : "r" (__to), "r" (__from), "r" (__len)
1295 : "$2", "$3", "$4", "$5", "$6", __UA_t0, "$31", "memory");
1296
1297 return res;
1298}
1299
1300/* Returns: 0 if bad, string length+1 (memory size) of string if ok */
Ralf Baechlefe00f942005-03-01 19:22:29 +00001301static inline long __strlen_user(const char __user *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 long res;
1304
Ralf Baechleef41f462009-04-28 14:17:54 +02001305 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 __asm__ __volatile__(
1307 "move\t$4, %1\n\t"
1308 __MODULE_JAL(__strlen_user_nocheck_asm)
1309 "move\t%0, $2"
1310 : "=r" (res)
1311 : "r" (s)
1312 : "$2", "$4", __UA_t0, "$31");
1313
1314 return res;
1315}
1316
1317/*
1318 * strlen_user: - Get the size of a string in user space.
1319 * @str: The string to measure.
1320 *
Ralf Baechle70342282013-01-22 12:59:30 +01001321 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 *
1323 * Get the size of a NUL-terminated string in user space.
1324 *
1325 * Returns the size of the string INCLUDING the terminating NUL.
1326 * On exception, returns 0.
1327 *
1328 * If there is a limit on the length of a valid string, you may wish to
1329 * consider using strnlen_user() instead.
1330 */
Ralf Baechlefe00f942005-03-01 19:22:29 +00001331static inline long strlen_user(const char __user *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 long res;
1334
Ralf Baechleef41f462009-04-28 14:17:54 +02001335 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 __asm__ __volatile__(
1337 "move\t$4, %1\n\t"
1338 __MODULE_JAL(__strlen_user_asm)
1339 "move\t%0, $2"
1340 : "=r" (res)
1341 : "r" (s)
1342 : "$2", "$4", __UA_t0, "$31");
1343
1344 return res;
1345}
1346
1347/* Returns: 0 if bad, string length+1 (memory size) of string if ok */
Ralf Baechlefe00f942005-03-01 19:22:29 +00001348static inline long __strnlen_user(const char __user *s, long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 long res;
1351
Ralf Baechleef41f462009-04-28 14:17:54 +02001352 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 __asm__ __volatile__(
1354 "move\t$4, %1\n\t"
1355 "move\t$5, %2\n\t"
1356 __MODULE_JAL(__strnlen_user_nocheck_asm)
1357 "move\t%0, $2"
1358 : "=r" (res)
1359 : "r" (s), "r" (n)
1360 : "$2", "$4", "$5", __UA_t0, "$31");
1361
1362 return res;
1363}
1364
1365/*
1366 * strlen_user: - Get the size of a string in user space.
1367 * @str: The string to measure.
1368 *
Ralf Baechle70342282013-01-22 12:59:30 +01001369 * Context: User context only. This function may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 *
1371 * Get the size of a NUL-terminated string in user space.
1372 *
1373 * Returns the size of the string INCLUDING the terminating NUL.
1374 * On exception, returns 0.
1375 *
1376 * If there is a limit on the length of a valid string, you may wish to
1377 * consider using strnlen_user() instead.
1378 */
Ralf Baechlefe00f942005-03-01 19:22:29 +00001379static inline long strnlen_user(const char __user *s, long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 long res;
1382
Ralf Baechleef41f462009-04-28 14:17:54 +02001383 might_fault();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 __asm__ __volatile__(
1385 "move\t$4, %1\n\t"
1386 "move\t$5, %2\n\t"
1387 __MODULE_JAL(__strnlen_user_asm)
1388 "move\t%0, $2"
1389 : "=r" (res)
1390 : "r" (s), "r" (n)
1391 : "$2", "$4", "$5", __UA_t0, "$31");
1392
1393 return res;
1394}
1395
1396struct exception_table_entry
1397{
1398 unsigned long insn;
1399 unsigned long nextinsn;
1400};
1401
1402extern int fixup_exception(struct pt_regs *regs);
1403
1404#endif /* _ASM_UACCESS_H */