blob: 0a070e98625d2d39314ad28be47e9864f810570e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/uaccess.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#ifndef _ASMARM_UACCESS_H
9#define _ASMARM_UACCESS_H
10
11/*
12 * User space memory access functions
13 */
Russell King87c52572008-11-29 17:35:51 +000014#include <linux/string.h>
15#include <linux/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/errno.h>
17#include <asm/memory.h>
18#include <asm/domain.h>
Catalin Marinas8b592782009-07-24 12:32:57 +010019#include <asm/unified.h>
David Howells9f97da72012-03-28 18:30:01 +010020#include <asm/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#define VERIFY_READ 0
23#define VERIFY_WRITE 1
24
25/*
26 * The exception table consists of pairs of addresses: the first is the
27 * address of an instruction that is allowed to fault, and the second is
28 * the address at which the program should continue. No registers are
29 * modified, so it is entirely up to the continuation code to figure out
30 * what to do.
31 *
32 * All the routines below use bits of fixup code that are out of line
33 * with the main instruction path. This means when everything is well,
34 * we don't even have to jump over them. Further, they do not intrude
35 * on our cache or tlb entries.
36 */
37
38struct exception_table_entry
39{
40 unsigned long insn, fixup;
41};
42
43extern int fixup_exception(struct pt_regs *regs);
44
45/*
Russell King9641c7c2006-06-21 20:38:17 +010046 * These two are intentionally not defined anywhere - if the kernel
47 * code generates any references to them, that's a bug.
48 */
49extern int __get_user_bad(void);
50extern int __put_user_bad(void);
51
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Note that this is actually 0x1,0000,0000
54 */
55#define KERNEL_DS 0x00000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define get_ds() (KERNEL_DS)
Russell King9641c7c2006-06-21 20:38:17 +010057
58#ifdef CONFIG_MMU
59
60#define USER_DS TASK_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define get_fs() (current_thread_info()->addr_limit)
62
Russell King9641c7c2006-06-21 20:38:17 +010063static inline void set_fs(mm_segment_t fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 current_thread_info()->addr_limit = fs;
66 modify_domain(DOMAIN_KERNEL, fs ? DOMAIN_CLIENT : DOMAIN_MANAGER);
67}
68
69#define segment_eq(a,b) ((a) == (b))
70
71#define __addr_ok(addr) ({ \
72 unsigned long flag; \
73 __asm__("cmp %2, %0; movlo %0, #0" \
74 : "=&r" (flag) \
75 : "0" (current_thread_info()->addr_limit), "r" (addr) \
76 : "cc"); \
77 (flag == 0); })
78
79/* We use 33-bit arithmetic here... */
80#define __range_ok(addr,size) ({ \
Tilman Schmidt16cf5b32007-02-10 01:45:41 -080081 unsigned long flag, roksum; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 __chk_user_ptr(addr); \
83 __asm__("adds %1, %2, %3; sbcccs %1, %1, %0; movcc %0, #0" \
Tilman Schmidt16cf5b32007-02-10 01:45:41 -080084 : "=&r" (flag), "=&r" (roksum) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 : "r" (addr), "Ir" (size), "0" (current_thread_info()->addr_limit) \
86 : "cc"); \
87 flag; })
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Single-value transfer routines. They automatically use the right
91 * size if we just have the right pointer type. Note that the functions
92 * which read from user space (*get_*) need to take care not to leak
93 * kernel data even if the calling code is buggy and fails to check
94 * the return value. This means zeroing out the destination variable
95 * or buffer on error. Normally this is done out of line by the
96 * fixup code, but there are a few places where it intrudes on the
97 * main code path. When we only write to user space, there is no
98 * problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100extern int __get_user_1(void *);
101extern int __get_user_2(void *);
102extern int __get_user_4(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Russell King26fd5e0c2012-09-07 18:22:28 +0100104#define __GUP_CLOBBER_1 "lr", "cc"
105#ifdef CONFIG_CPU_USE_DOMAINS
106#define __GUP_CLOBBER_2 "ip", "lr", "cc"
107#else
108#define __GUP_CLOBBER_2 "lr", "cc"
109#endif
110#define __GUP_CLOBBER_4 "lr", "cc"
111
112#define __get_user_x(__r2,__p,__e,__l,__s) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 __asm__ __volatile__ ( \
114 __asmeq("%0", "r0") __asmeq("%1", "r2") \
Russell King26fd5e0c2012-09-07 18:22:28 +0100115 __asmeq("%3", "r1") \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 "bl __get_user_" #__s \
117 : "=&r" (__e), "=r" (__r2) \
Russell King26fd5e0c2012-09-07 18:22:28 +0100118 : "0" (__p), "r" (__l) \
119 : __GUP_CLOBBER_##__s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121#define get_user(x,p) \
122 ({ \
Russell King26fd5e0c2012-09-07 18:22:28 +0100123 unsigned long __limit = current_thread_info()->addr_limit - 1; \
Tobias Klauserc5a69d52007-02-17 20:11:19 +0100124 register const typeof(*(p)) __user *__p asm("r0") = (p);\
Al Virofc048b52006-10-11 17:22:54 +0100125 register unsigned long __r2 asm("r2"); \
Russell King26fd5e0c2012-09-07 18:22:28 +0100126 register unsigned long __l asm("r1") = __limit; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 register int __e asm("r0"); \
128 switch (sizeof(*(__p))) { \
129 case 1: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100130 __get_user_x(__r2, __p, __e, __l, 1); \
131 break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 case 2: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100133 __get_user_x(__r2, __p, __e, __l, 2); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 break; \
135 case 4: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100136 __get_user_x(__r2, __p, __e, __l, 4); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 default: __e = __get_user_bad(); break; \
139 } \
Russell Kingd2c5b692005-11-18 14:22:03 +0000140 x = (typeof(*(p))) __r2; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 __e; \
142 })
143
Russell King9641c7c2006-06-21 20:38:17 +0100144extern int __put_user_1(void *, unsigned int);
145extern int __put_user_2(void *, unsigned int);
146extern int __put_user_4(void *, unsigned int);
147extern int __put_user_8(void *, unsigned long long);
148
Russell King26fd5e0c2012-09-07 18:22:28 +0100149#define __put_user_x(__r2,__p,__e,__l,__s) \
Russell King9641c7c2006-06-21 20:38:17 +0100150 __asm__ __volatile__ ( \
151 __asmeq("%0", "r0") __asmeq("%2", "r2") \
Russell King26fd5e0c2012-09-07 18:22:28 +0100152 __asmeq("%3", "r1") \
Russell King9641c7c2006-06-21 20:38:17 +0100153 "bl __put_user_" #__s \
154 : "=&r" (__e) \
Russell King26fd5e0c2012-09-07 18:22:28 +0100155 : "0" (__p), "r" (__r2), "r" (__l) \
Russell King9641c7c2006-06-21 20:38:17 +0100156 : "ip", "lr", "cc")
157
158#define put_user(x,p) \
159 ({ \
Russell King26fd5e0c2012-09-07 18:22:28 +0100160 unsigned long __limit = current_thread_info()->addr_limit - 1; \
Tobias Klauserc5a69d52007-02-17 20:11:19 +0100161 register const typeof(*(p)) __r2 asm("r2") = (x); \
162 register const typeof(*(p)) __user *__p asm("r0") = (p);\
Russell King26fd5e0c2012-09-07 18:22:28 +0100163 register unsigned long __l asm("r1") = __limit; \
Russell King9641c7c2006-06-21 20:38:17 +0100164 register int __e asm("r0"); \
165 switch (sizeof(*(__p))) { \
166 case 1: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100167 __put_user_x(__r2, __p, __e, __l, 1); \
Russell King9641c7c2006-06-21 20:38:17 +0100168 break; \
169 case 2: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100170 __put_user_x(__r2, __p, __e, __l, 2); \
Russell King9641c7c2006-06-21 20:38:17 +0100171 break; \
172 case 4: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100173 __put_user_x(__r2, __p, __e, __l, 4); \
Russell King9641c7c2006-06-21 20:38:17 +0100174 break; \
175 case 8: \
Russell King26fd5e0c2012-09-07 18:22:28 +0100176 __put_user_x(__r2, __p, __e, __l, 8); \
Russell King9641c7c2006-06-21 20:38:17 +0100177 break; \
178 default: __e = __put_user_bad(); break; \
179 } \
180 __e; \
181 })
182
183#else /* CONFIG_MMU */
184
185/*
186 * uClinux has only one addr space, so has simplified address limits.
187 */
188#define USER_DS KERNEL_DS
189
190#define segment_eq(a,b) (1)
191#define __addr_ok(addr) (1)
192#define __range_ok(addr,size) (0)
193#define get_fs() (KERNEL_DS)
194
195static inline void set_fs(mm_segment_t fs)
196{
197}
198
199#define get_user(x,p) __get_user(x,p)
200#define put_user(x,p) __put_user(x,p)
201
202#endif /* CONFIG_MMU */
203
204#define access_ok(type,addr,size) (__range_ok(addr,size) == 0)
205
206/*
207 * The "__xxx" versions of the user access functions do not verify the
208 * address space - it must have been done previously with a separate
209 * "access_ok()" call.
210 *
211 * The "xxx_error" versions set the third argument to EFAULT if an
212 * error occurs, and leave it unchanged on success. Note that these
213 * versions are void (ie, don't return a value as such).
214 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#define __get_user(x,ptr) \
216({ \
217 long __gu_err = 0; \
218 __get_user_err((x),(ptr),__gu_err); \
219 __gu_err; \
220})
221
222#define __get_user_error(x,ptr,err) \
223({ \
224 __get_user_err((x),(ptr),err); \
225 (void) 0; \
226})
227
228#define __get_user_err(x,ptr,err) \
229do { \
230 unsigned long __gu_addr = (unsigned long)(ptr); \
231 unsigned long __gu_val; \
232 __chk_user_ptr(ptr); \
233 switch (sizeof(*(ptr))) { \
234 case 1: __get_user_asm_byte(__gu_val,__gu_addr,err); break; \
235 case 2: __get_user_asm_half(__gu_val,__gu_addr,err); break; \
236 case 4: __get_user_asm_word(__gu_val,__gu_addr,err); break; \
237 default: (__gu_val) = __get_user_bad(); \
238 } \
239 (x) = (__typeof__(*(ptr)))__gu_val; \
240} while (0)
241
242#define __get_user_asm_byte(x,addr,err) \
243 __asm__ __volatile__( \
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100244 "1: " TUSER(ldrb) " %1,[%2],#0\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 "2:\n" \
Russell King42604152010-04-19 10:15:03 +0100246 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 " .align 2\n" \
248 "3: mov %0, %3\n" \
249 " mov %1, #0\n" \
250 " b 2b\n" \
Russell King42604152010-04-19 10:15:03 +0100251 " .popsection\n" \
252 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 " .align 3\n" \
254 " .long 1b, 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100255 " .popsection" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 : "+r" (err), "=&r" (x) \
257 : "r" (addr), "i" (-EFAULT) \
258 : "cc")
259
260#ifndef __ARMEB__
261#define __get_user_asm_half(x,__gu_addr,err) \
262({ \
263 unsigned long __b1, __b2; \
264 __get_user_asm_byte(__b1, __gu_addr, err); \
265 __get_user_asm_byte(__b2, __gu_addr + 1, err); \
266 (x) = __b1 | (__b2 << 8); \
267})
268#else
269#define __get_user_asm_half(x,__gu_addr,err) \
270({ \
271 unsigned long __b1, __b2; \
272 __get_user_asm_byte(__b1, __gu_addr, err); \
273 __get_user_asm_byte(__b2, __gu_addr + 1, err); \
274 (x) = (__b1 << 8) | __b2; \
275})
276#endif
277
278#define __get_user_asm_word(x,addr,err) \
279 __asm__ __volatile__( \
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100280 "1: " TUSER(ldr) " %1,[%2],#0\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 "2:\n" \
Russell King42604152010-04-19 10:15:03 +0100282 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 " .align 2\n" \
284 "3: mov %0, %3\n" \
285 " mov %1, #0\n" \
286 " b 2b\n" \
Russell King42604152010-04-19 10:15:03 +0100287 " .popsection\n" \
288 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 " .align 3\n" \
290 " .long 1b, 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100291 " .popsection" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 : "+r" (err), "=&r" (x) \
293 : "r" (addr), "i" (-EFAULT) \
294 : "cc")
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#define __put_user(x,ptr) \
297({ \
298 long __pu_err = 0; \
299 __put_user_err((x),(ptr),__pu_err); \
300 __pu_err; \
301})
302
303#define __put_user_error(x,ptr,err) \
304({ \
305 __put_user_err((x),(ptr),err); \
306 (void) 0; \
307})
308
309#define __put_user_err(x,ptr,err) \
310do { \
311 unsigned long __pu_addr = (unsigned long)(ptr); \
312 __typeof__(*(ptr)) __pu_val = (x); \
313 __chk_user_ptr(ptr); \
314 switch (sizeof(*(ptr))) { \
315 case 1: __put_user_asm_byte(__pu_val,__pu_addr,err); break; \
316 case 2: __put_user_asm_half(__pu_val,__pu_addr,err); break; \
317 case 4: __put_user_asm_word(__pu_val,__pu_addr,err); break; \
318 case 8: __put_user_asm_dword(__pu_val,__pu_addr,err); break; \
319 default: __put_user_bad(); \
320 } \
321} while (0)
322
323#define __put_user_asm_byte(x,__pu_addr,err) \
324 __asm__ __volatile__( \
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100325 "1: " TUSER(strb) " %1,[%2],#0\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 "2:\n" \
Russell King42604152010-04-19 10:15:03 +0100327 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 " .align 2\n" \
329 "3: mov %0, %3\n" \
330 " b 2b\n" \
Russell King42604152010-04-19 10:15:03 +0100331 " .popsection\n" \
332 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 " .align 3\n" \
334 " .long 1b, 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100335 " .popsection" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 : "+r" (err) \
337 : "r" (x), "r" (__pu_addr), "i" (-EFAULT) \
338 : "cc")
339
340#ifndef __ARMEB__
341#define __put_user_asm_half(x,__pu_addr,err) \
342({ \
343 unsigned long __temp = (unsigned long)(x); \
344 __put_user_asm_byte(__temp, __pu_addr, err); \
345 __put_user_asm_byte(__temp >> 8, __pu_addr + 1, err); \
346})
347#else
348#define __put_user_asm_half(x,__pu_addr,err) \
349({ \
350 unsigned long __temp = (unsigned long)(x); \
351 __put_user_asm_byte(__temp >> 8, __pu_addr, err); \
352 __put_user_asm_byte(__temp, __pu_addr + 1, err); \
353})
354#endif
355
356#define __put_user_asm_word(x,__pu_addr,err) \
357 __asm__ __volatile__( \
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100358 "1: " TUSER(str) " %1,[%2],#0\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 "2:\n" \
Russell King42604152010-04-19 10:15:03 +0100360 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 " .align 2\n" \
362 "3: mov %0, %3\n" \
363 " b 2b\n" \
Russell King42604152010-04-19 10:15:03 +0100364 " .popsection\n" \
365 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 " .align 3\n" \
367 " .long 1b, 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100368 " .popsection" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 : "+r" (err) \
370 : "r" (x), "r" (__pu_addr), "i" (-EFAULT) \
371 : "cc")
372
373#ifndef __ARMEB__
374#define __reg_oper0 "%R2"
375#define __reg_oper1 "%Q2"
376#else
377#define __reg_oper0 "%Q2"
378#define __reg_oper1 "%R2"
379#endif
380
381#define __put_user_asm_dword(x,__pu_addr,err) \
382 __asm__ __volatile__( \
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100383 ARM( "1: " TUSER(str) " " __reg_oper1 ", [%1], #4\n" ) \
384 ARM( "2: " TUSER(str) " " __reg_oper0 ", [%1]\n" ) \
385 THUMB( "1: " TUSER(str) " " __reg_oper1 ", [%1]\n" ) \
386 THUMB( "2: " TUSER(str) " " __reg_oper0 ", [%1, #4]\n" ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 "3:\n" \
Russell King42604152010-04-19 10:15:03 +0100388 " .pushsection .fixup,\"ax\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 " .align 2\n" \
390 "4: mov %0, %3\n" \
391 " b 3b\n" \
Russell King42604152010-04-19 10:15:03 +0100392 " .popsection\n" \
393 " .pushsection __ex_table,\"a\"\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 " .align 3\n" \
395 " .long 1b, 4b\n" \
396 " .long 2b, 4b\n" \
Russell King42604152010-04-19 10:15:03 +0100397 " .popsection" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 : "+r" (err), "+r" (__pu_addr) \
399 : "r" (x), "i" (-EFAULT) \
400 : "cc")
401
Russell King02fcb972006-06-21 14:44:52 +0100402
Russell King9641c7c2006-06-21 20:38:17 +0100403#ifdef CONFIG_MMU
Russell King99573292006-10-26 10:27:42 +0100404extern unsigned long __must_check __copy_from_user(void *to, const void __user *from, unsigned long n);
405extern unsigned long __must_check __copy_to_user(void __user *to, const void *from, unsigned long n);
Nicolas Pitrea1f98842009-03-08 22:34:45 -0400406extern unsigned long __must_check __copy_to_user_std(void __user *to, const void *from, unsigned long n);
Russell King99573292006-10-26 10:27:42 +0100407extern unsigned long __must_check __clear_user(void __user *addr, unsigned long n);
Nicolas Pitrea1f98842009-03-08 22:34:45 -0400408extern unsigned long __must_check __clear_user_std(void __user *addr, unsigned long n);
Russell King9641c7c2006-06-21 20:38:17 +0100409#else
410#define __copy_from_user(to,from,n) (memcpy(to, (void __force *)from, n), 0)
411#define __copy_to_user(to,from,n) (memcpy((void __force *)to, from, n), 0)
412#define __clear_user(addr,n) (memset((void __force *)addr, 0, n), 0)
413#endif
414
Russell King99573292006-10-26 10:27:42 +0100415extern unsigned long __must_check __strncpy_from_user(char *to, const char __user *from, unsigned long count);
416extern unsigned long __must_check __strnlen_user(const char __user *s, long n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Russell King99573292006-10-26 10:27:42 +0100418static inline unsigned long __must_check copy_from_user(void *to, const void __user *from, unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 if (access_ok(VERIFY_READ, from, n))
Russell King02fcb972006-06-21 14:44:52 +0100421 n = __copy_from_user(to, from, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 else /* security hole - plug it */
Russell King59f0cb02008-10-27 11:24:09 +0000423 memset(to, 0, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return n;
425}
426
Russell King99573292006-10-26 10:27:42 +0100427static inline unsigned long __must_check copy_to_user(void __user *to, const void *from, unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 if (access_ok(VERIFY_WRITE, to, n))
Russell King02fcb972006-06-21 14:44:52 +0100430 n = __copy_to_user(to, from, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return n;
432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#define __copy_to_user_inatomic __copy_to_user
435#define __copy_from_user_inatomic __copy_from_user
436
Russell King99573292006-10-26 10:27:42 +0100437static inline unsigned long __must_check clear_user(void __user *to, unsigned long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 if (access_ok(VERIFY_WRITE, to, n))
Russell King02fcb972006-06-21 14:44:52 +0100440 n = __clear_user(to, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return n;
442}
443
Russell King99573292006-10-26 10:27:42 +0100444static inline long __must_check strncpy_from_user(char *dst, const char __user *src, long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 long res = -EFAULT;
447 if (access_ok(VERIFY_READ, src, 1))
Russell King02fcb972006-06-21 14:44:52 +0100448 res = __strncpy_from_user(dst, src, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return res;
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#define strlen_user(s) strnlen_user(s, ~0UL >> 1)
453
Russell King99573292006-10-26 10:27:42 +0100454static inline long __must_check strnlen_user(const char __user *s, long n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 unsigned long res = 0;
457
458 if (__addr_ok(s))
Russell King02fcb972006-06-21 14:44:52 +0100459 res = __strnlen_user(s, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 return res;
462}
463
464#endif /* _ASMARM_UACCESS_H */