uaccess.h 14.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *  arch/arm/include/asm/uaccess.h
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef _ASMARM_UACCESS_H
#define _ASMARM_UACCESS_H

/*
 * User space memory access functions
 */
14
#include <linux/string.h>
L
Linus Torvalds 已提交
15 16
#include <asm/memory.h>
#include <asm/domain.h>
17
#include <asm/unified.h>
18
#include <asm/compiler.h>
L
Linus Torvalds 已提交
19

A
Al Viro 已提交
20
#include <asm/extable.h>
L
Linus Torvalds 已提交
21

22 23 24 25 26 27 28 29
/*
 * These two functions allow hooking accesses to userspace to increase
 * system integrity by ensuring that the kernel can not inadvertantly
 * perform such accesses (eg, via list poison values) which could then
 * be exploited for priviledge escalation.
 */
static inline unsigned int uaccess_save_and_enable(void)
{
30 31 32 33 34 35 36 37 38
#ifdef CONFIG_CPU_SW_DOMAIN_PAN
	unsigned int old_domain = get_domain();

	/* Set the current domain access to permit user accesses */
	set_domain((old_domain & ~domain_mask(DOMAIN_USER)) |
		   domain_val(DOMAIN_USER, DOMAIN_CLIENT));

	return old_domain;
#else
39
	return 0;
40
#endif
41 42 43 44
}

static inline void uaccess_restore(unsigned int flags)
{
45 46 47 48
#ifdef CONFIG_CPU_SW_DOMAIN_PAN
	/* Restore the user access mask */
	set_domain(flags);
#endif
49 50
}

R
Russell King 已提交
51 52 53 54 55 56 57
/*
 * These two are intentionally not defined anywhere - if the kernel
 * code generates any references to them, that's a bug.
 */
extern int __get_user_bad(void);
extern int __put_user_bad(void);

L
Linus Torvalds 已提交
58 59 60 61 62
/*
 * Note that this is actually 0x1,0000,0000
 */
#define KERNEL_DS	0x00000000
#define get_ds()	(KERNEL_DS)
R
Russell King 已提交
63 64 65 66

#ifdef CONFIG_MMU

#define USER_DS		TASK_SIZE
L
Linus Torvalds 已提交
67 68
#define get_fs()	(current_thread_info()->addr_limit)

R
Russell King 已提交
69
static inline void set_fs(mm_segment_t fs)
L
Linus Torvalds 已提交
70 71 72 73 74
{
	current_thread_info()->addr_limit = fs;
	modify_domain(DOMAIN_KERNEL, fs ? DOMAIN_CLIENT : DOMAIN_MANAGER);
}

M
Michael S. Tsirkin 已提交
75
#define segment_eq(a, b)	((a) == (b))
L
Linus Torvalds 已提交
76 77

/* We use 33-bit arithmetic here... */
M
Michael S. Tsirkin 已提交
78
#define __range_ok(addr, size) ({ \
79
	unsigned long flag, roksum; \
L
Linus Torvalds 已提交
80 81
	__chk_user_ptr(addr);	\
	__asm__("adds %1, %2, %3; sbcccs %1, %1, %0; movcc %0, #0" \
82
		: "=&r" (flag), "=&r" (roksum) \
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
		: "r" (addr), "Ir" (size), "0" (current_thread_info()->addr_limit) \
		: "cc"); \
	flag; })

/*
 * Single-value transfer routines.  They automatically use the right
 * size if we just have the right pointer type.  Note that the functions
 * which read from user space (*get_*) need to take care not to leak
 * kernel data even if the calling code is buggy and fails to check
 * the return value.  This means zeroing out the destination variable
 * or buffer on error.  Normally this is done out of line by the
 * fixup code, but there are a few places where it intrudes on the
 * main code path.  When we only write to user space, there is no
 * problem.
 */
extern int __get_user_1(void *);
extern int __get_user_2(void *);
extern int __get_user_4(void *);
101
extern int __get_user_32t_8(void *);
102
extern int __get_user_8(void *);
103 104 105
extern int __get_user_64t_1(void *);
extern int __get_user_64t_2(void *);
extern int __get_user_64t_4(void *);
L
Linus Torvalds 已提交
106

107 108 109 110 111 112 113
#define __GUP_CLOBBER_1	"lr", "cc"
#ifdef CONFIG_CPU_USE_DOMAINS
#define __GUP_CLOBBER_2	"ip", "lr", "cc"
#else
#define __GUP_CLOBBER_2 "lr", "cc"
#endif
#define __GUP_CLOBBER_4	"lr", "cc"
114
#define __GUP_CLOBBER_32t_8 "lr", "cc"
115
#define __GUP_CLOBBER_8	"lr", "cc"
116

M
Michael S. Tsirkin 已提交
117
#define __get_user_x(__r2, __p, __e, __l, __s)				\
L
Linus Torvalds 已提交
118 119
	   __asm__ __volatile__ (					\
		__asmeq("%0", "r0") __asmeq("%1", "r2")			\
120
		__asmeq("%3", "r1")					\
L
Linus Torvalds 已提交
121 122
		"bl	__get_user_" #__s				\
		: "=&r" (__e), "=r" (__r2)				\
123 124
		: "0" (__p), "r" (__l)					\
		: __GUP_CLOBBER_##__s)
L
Linus Torvalds 已提交
125

126 127
/* narrowing a double-word get into a single 32bit word register: */
#ifdef __ARMEB__
M
Michael S. Tsirkin 已提交
128
#define __get_user_x_32t(__r2, __p, __e, __l, __s)			\
129
	__get_user_x(__r2, __p, __e, __l, 32t_8)
130
#else
131
#define __get_user_x_32t __get_user_x
132 133
#endif

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
/*
 * storing result into proper least significant word of 64bit target var,
 * different only for big endian case where 64 bit __r2 lsw is r3:
 */
#ifdef __ARMEB__
#define __get_user_x_64t(__r2, __p, __e, __l, __s)		        \
	   __asm__ __volatile__ (					\
		__asmeq("%0", "r0") __asmeq("%1", "r2")			\
		__asmeq("%3", "r1")					\
		"bl	__get_user_64t_" #__s				\
		: "=&r" (__e), "=r" (__r2)				\
		: "0" (__p), "r" (__l)					\
		: __GUP_CLOBBER_##__s)
#else
#define __get_user_x_64t __get_user_x
#endif


M
Michael S. Tsirkin 已提交
152
#define __get_user_check(x, p)						\
L
Linus Torvalds 已提交
153
	({								\
154
		unsigned long __limit = current_thread_info()->addr_limit - 1; \
155
		register const typeof(*(p)) __user *__p asm("r0") = (p);\
156
		register typeof(x) __r2 asm("r2");			\
157
		register unsigned long __l asm("r1") = __limit;		\
L
Linus Torvalds 已提交
158
		register int __e asm("r0");				\
159
		unsigned int __ua_flags = uaccess_save_and_enable();	\
L
Linus Torvalds 已提交
160 161
		switch (sizeof(*(__p))) {				\
		case 1:							\
162 163 164 165
			if (sizeof((x)) >= 8)				\
				__get_user_x_64t(__r2, __p, __e, __l, 1); \
			else						\
				__get_user_x(__r2, __p, __e, __l, 1);	\
166
			break;						\
L
Linus Torvalds 已提交
167
		case 2:							\
168 169 170 171
			if (sizeof((x)) >= 8)				\
				__get_user_x_64t(__r2, __p, __e, __l, 2); \
			else						\
				__get_user_x(__r2, __p, __e, __l, 2);	\
L
Linus Torvalds 已提交
172 173
			break;						\
		case 4:							\
174 175 176 177
			if (sizeof((x)) >= 8)				\
				__get_user_x_64t(__r2, __p, __e, __l, 4); \
			else						\
				__get_user_x(__r2, __p, __e, __l, 4);	\
L
Linus Torvalds 已提交
178
			break;						\
179 180
		case 8:							\
			if (sizeof((x)) < 8)				\
181
				__get_user_x_32t(__r2, __p, __e, __l, 4); \
182 183 184
			else						\
				__get_user_x(__r2, __p, __e, __l, 8);	\
			break;						\
L
Linus Torvalds 已提交
185 186
		default: __e = __get_user_bad(); break;			\
		}							\
187
		uaccess_restore(__ua_flags);				\
188
		x = (typeof(*(p))) __r2;				\
L
Linus Torvalds 已提交
189 190 191
		__e;							\
	})

M
Michael S. Tsirkin 已提交
192
#define get_user(x, p)							\
193 194
	({								\
		might_fault();						\
M
Michael S. Tsirkin 已提交
195
		__get_user_check(x, p);					\
196 197
	 })

R
Russell King 已提交
198 199 200 201 202
extern int __put_user_1(void *, unsigned int);
extern int __put_user_2(void *, unsigned int);
extern int __put_user_4(void *, unsigned int);
extern int __put_user_8(void *, unsigned long long);

203
#define __put_user_check(__pu_val, __ptr, __err, __s)			\
R
Russell King 已提交
204
	({								\
205
		unsigned long __limit = current_thread_info()->addr_limit - 1; \
206 207
		register typeof(__pu_val) __r2 asm("r2") = __pu_val;	\
		register const void __user *__p asm("r0") = __ptr;	\
208
		register unsigned long __l asm("r1") = __limit;		\
R
Russell King 已提交
209
		register int __e asm("r0");				\
210 211 212 213 214 215 216 217
		__asm__ __volatile__ (					\
			__asmeq("%0", "r0") __asmeq("%2", "r2")		\
			__asmeq("%3", "r1")				\
			"bl	__put_user_" #__s			\
			: "=&r" (__e)					\
			: "0" (__p), "r" (__r2), "r" (__l)		\
			: "ip", "lr", "cc");				\
		__err = __e;						\
R
Russell King 已提交
218 219 220 221 222 223 224 225 226
	})

#else /* CONFIG_MMU */

/*
 * uClinux has only one addr space, so has simplified address limits.
 */
#define USER_DS			KERNEL_DS

M
Michael S. Tsirkin 已提交
227 228 229
#define segment_eq(a, b)		(1)
#define __addr_ok(addr)		((void)(addr), 1)
#define __range_ok(addr, size)	((void)(addr), 0)
R
Russell King 已提交
230 231 232 233 234 235
#define get_fs()		(KERNEL_DS)

static inline void set_fs(mm_segment_t fs)
{
}

M
Michael S. Tsirkin 已提交
236
#define get_user(x, p)	__get_user(x, p)
237
#define __put_user_check __put_user_nocheck
R
Russell King 已提交
238 239 240

#endif /* CONFIG_MMU */

M
Michael S. Tsirkin 已提交
241
#define access_ok(type, addr, size)	(__range_ok(addr, size) == 0)
R
Russell King 已提交
242

243
#define user_addr_max() \
A
Al Viro 已提交
244
	(uaccess_kernel() ? ~0UL : get_fs())
245

R
Russell King 已提交
246 247 248 249 250 251 252 253 254
/*
 * The "__xxx" versions of the user access functions do not verify the
 * address space - it must have been done previously with a separate
 * "access_ok()" call.
 *
 * The "xxx_error" versions set the third argument to EFAULT if an
 * error occurs, and leave it unchanged on success.  Note that these
 * versions are void (ie, don't return a value as such).
 */
M
Michael S. Tsirkin 已提交
255
#define __get_user(x, ptr)						\
L
Linus Torvalds 已提交
256 257
({									\
	long __gu_err = 0;						\
M
Michael S. Tsirkin 已提交
258
	__get_user_err((x), (ptr), __gu_err);				\
L
Linus Torvalds 已提交
259 260 261
	__gu_err;							\
})

M
Michael S. Tsirkin 已提交
262
#define __get_user_error(x, ptr, err)					\
L
Linus Torvalds 已提交
263
({									\
M
Michael S. Tsirkin 已提交
264
	__get_user_err((x), (ptr), err);				\
L
Linus Torvalds 已提交
265 266 267
	(void) 0;							\
})

M
Michael S. Tsirkin 已提交
268
#define __get_user_err(x, ptr, err)					\
L
Linus Torvalds 已提交
269 270 271
do {									\
	unsigned long __gu_addr = (unsigned long)(ptr);			\
	unsigned long __gu_val;						\
272
	unsigned int __ua_flags;					\
L
Linus Torvalds 已提交
273
	__chk_user_ptr(ptr);						\
274
	might_fault();							\
275
	__ua_flags = uaccess_save_and_enable();				\
L
Linus Torvalds 已提交
276
	switch (sizeof(*(ptr))) {					\
M
Michael S. Tsirkin 已提交
277 278 279
	case 1:	__get_user_asm_byte(__gu_val, __gu_addr, err);	break;	\
	case 2:	__get_user_asm_half(__gu_val, __gu_addr, err);	break;	\
	case 4:	__get_user_asm_word(__gu_val, __gu_addr, err);	break;	\
L
Linus Torvalds 已提交
280 281
	default: (__gu_val) = __get_user_bad();				\
	}								\
282
	uaccess_restore(__ua_flags);					\
L
Linus Torvalds 已提交
283 284 285
	(x) = (__typeof__(*(ptr)))__gu_val;				\
} while (0)

286
#define __get_user_asm(x, addr, err, instr)			\
L
Linus Torvalds 已提交
287
	__asm__ __volatile__(					\
288
	"1:	" TUSER(instr) " %1, [%2], #0\n"		\
L
Linus Torvalds 已提交
289
	"2:\n"							\
290
	"	.pushsection .text.fixup,\"ax\"\n"		\
L
Linus Torvalds 已提交
291 292 293 294
	"	.align	2\n"					\
	"3:	mov	%0, %3\n"				\
	"	mov	%1, #0\n"				\
	"	b	2b\n"					\
295 296
	"	.popsection\n"					\
	"	.pushsection __ex_table,\"a\"\n"		\
L
Linus Torvalds 已提交
297 298
	"	.align	3\n"					\
	"	.long	1b, 3b\n"				\
299
	"	.popsection"					\
L
Linus Torvalds 已提交
300 301 302 303
	: "+r" (err), "=&r" (x)					\
	: "r" (addr), "i" (-EFAULT)				\
	: "cc")

304 305 306
#define __get_user_asm_byte(x, addr, err)			\
	__get_user_asm(x, addr, err, ldrb)

L
Linus Torvalds 已提交
307
#ifndef __ARMEB__
M
Michael S. Tsirkin 已提交
308
#define __get_user_asm_half(x, __gu_addr, err)			\
L
Linus Torvalds 已提交
309 310 311 312 313 314 315
({								\
	unsigned long __b1, __b2;				\
	__get_user_asm_byte(__b1, __gu_addr, err);		\
	__get_user_asm_byte(__b2, __gu_addr + 1, err);		\
	(x) = __b1 | (__b2 << 8);				\
})
#else
M
Michael S. Tsirkin 已提交
316
#define __get_user_asm_half(x, __gu_addr, err)			\
L
Linus Torvalds 已提交
317 318 319 320 321 322 323 324
({								\
	unsigned long __b1, __b2;				\
	__get_user_asm_byte(__b1, __gu_addr, err);		\
	__get_user_asm_byte(__b2, __gu_addr + 1, err);		\
	(x) = (__b1 << 8) | __b2;				\
})
#endif

M
Michael S. Tsirkin 已提交
325
#define __get_user_asm_word(x, addr, err)			\
326
	__get_user_asm(x, addr, err, ldr)
L
Linus Torvalds 已提交
327

328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352

#define __put_user_switch(x, ptr, __err, __fn)				\
	do {								\
		const __typeof__(*(ptr)) __user *__pu_ptr = (ptr);	\
		__typeof__(*(ptr)) __pu_val = (x);			\
		unsigned int __ua_flags;				\
		might_fault();						\
		__ua_flags = uaccess_save_and_enable();			\
		switch (sizeof(*(ptr))) {				\
		case 1: __fn(__pu_val, __pu_ptr, __err, 1); break;	\
		case 2:	__fn(__pu_val, __pu_ptr, __err, 2); break;	\
		case 4:	__fn(__pu_val, __pu_ptr, __err, 4); break;	\
		case 8:	__fn(__pu_val, __pu_ptr, __err, 8); break;	\
		default: __err = __put_user_bad(); break;		\
		}							\
		uaccess_restore(__ua_flags);				\
	} while (0)

#define put_user(x, ptr)						\
({									\
	int __pu_err = 0;						\
	__put_user_switch((x), (ptr), __pu_err, __put_user_check);	\
	__pu_err;							\
})

M
Michael S. Tsirkin 已提交
353
#define __put_user(x, ptr)						\
L
Linus Torvalds 已提交
354 355
({									\
	long __pu_err = 0;						\
356
	__put_user_switch((x), (ptr), __pu_err, __put_user_nocheck);	\
L
Linus Torvalds 已提交
357 358 359
	__pu_err;							\
})

M
Michael S. Tsirkin 已提交
360
#define __put_user_error(x, ptr, err)					\
L
Linus Torvalds 已提交
361
({									\
362
	__put_user_switch((x), (ptr), (err), __put_user_nocheck);	\
L
Linus Torvalds 已提交
363 364 365
	(void) 0;							\
})

366 367 368 369 370 371 372 373 374 375
#define __put_user_nocheck(x, __pu_ptr, __err, __size)			\
	do {								\
		unsigned long __pu_addr = (unsigned long)__pu_ptr;	\
		__put_user_nocheck_##__size(x, __pu_addr, __err);	\
	} while (0)

#define __put_user_nocheck_1 __put_user_asm_byte
#define __put_user_nocheck_2 __put_user_asm_half
#define __put_user_nocheck_4 __put_user_asm_word
#define __put_user_nocheck_8 __put_user_asm_dword
L
Linus Torvalds 已提交
376

377
#define __put_user_asm(x, __pu_addr, err, instr)		\
L
Linus Torvalds 已提交
378
	__asm__ __volatile__(					\
379
	"1:	" TUSER(instr) " %1, [%2], #0\n"		\
L
Linus Torvalds 已提交
380
	"2:\n"							\
381
	"	.pushsection .text.fixup,\"ax\"\n"		\
L
Linus Torvalds 已提交
382 383 384
	"	.align	2\n"					\
	"3:	mov	%0, %3\n"				\
	"	b	2b\n"					\
385 386
	"	.popsection\n"					\
	"	.pushsection __ex_table,\"a\"\n"		\
L
Linus Torvalds 已提交
387 388
	"	.align	3\n"					\
	"	.long	1b, 3b\n"				\
389
	"	.popsection"					\
L
Linus Torvalds 已提交
390 391 392 393
	: "+r" (err)						\
	: "r" (x), "r" (__pu_addr), "i" (-EFAULT)		\
	: "cc")

394 395 396
#define __put_user_asm_byte(x, __pu_addr, err)			\
	__put_user_asm(x, __pu_addr, err, strb)

L
Linus Torvalds 已提交
397
#ifndef __ARMEB__
M
Michael S. Tsirkin 已提交
398
#define __put_user_asm_half(x, __pu_addr, err)			\
L
Linus Torvalds 已提交
399
({								\
400
	unsigned long __temp = (__force unsigned long)(x);	\
L
Linus Torvalds 已提交
401 402 403 404
	__put_user_asm_byte(__temp, __pu_addr, err);		\
	__put_user_asm_byte(__temp >> 8, __pu_addr + 1, err);	\
})
#else
M
Michael S. Tsirkin 已提交
405
#define __put_user_asm_half(x, __pu_addr, err)			\
L
Linus Torvalds 已提交
406
({								\
407
	unsigned long __temp = (__force unsigned long)(x);	\
L
Linus Torvalds 已提交
408 409 410 411 412
	__put_user_asm_byte(__temp >> 8, __pu_addr, err);	\
	__put_user_asm_byte(__temp, __pu_addr + 1, err);	\
})
#endif

M
Michael S. Tsirkin 已提交
413
#define __put_user_asm_word(x, __pu_addr, err)			\
414
	__put_user_asm(x, __pu_addr, err, str)
L
Linus Torvalds 已提交
415 416 417 418 419 420 421 422 423

#ifndef __ARMEB__
#define	__reg_oper0	"%R2"
#define	__reg_oper1	"%Q2"
#else
#define	__reg_oper0	"%Q2"
#define	__reg_oper1	"%R2"
#endif

M
Michael S. Tsirkin 已提交
424
#define __put_user_asm_dword(x, __pu_addr, err)			\
L
Linus Torvalds 已提交
425
	__asm__ __volatile__(					\
426 427 428 429
 ARM(	"1:	" TUSER(str) "	" __reg_oper1 ", [%1], #4\n"	) \
 ARM(	"2:	" TUSER(str) "	" __reg_oper0 ", [%1]\n"	) \
 THUMB(	"1:	" TUSER(str) "	" __reg_oper1 ", [%1]\n"	) \
 THUMB(	"2:	" TUSER(str) "	" __reg_oper0 ", [%1, #4]\n"	) \
L
Linus Torvalds 已提交
430
	"3:\n"							\
431
	"	.pushsection .text.fixup,\"ax\"\n"		\
L
Linus Torvalds 已提交
432 433 434
	"	.align	2\n"					\
	"4:	mov	%0, %3\n"				\
	"	b	3b\n"					\
435 436
	"	.popsection\n"					\
	"	.pushsection __ex_table,\"a\"\n"		\
L
Linus Torvalds 已提交
437 438 439
	"	.align	3\n"					\
	"	.long	1b, 4b\n"				\
	"	.long	2b, 4b\n"				\
440
	"	.popsection"					\
L
Linus Torvalds 已提交
441 442 443 444
	: "+r" (err), "+r" (__pu_addr)				\
	: "r" (x), "i" (-EFAULT)				\
	: "cc")

445

R
Russell King 已提交
446
#ifdef CONFIG_MMU
447 448 449 450
extern unsigned long __must_check
arm_copy_from_user(void *to, const void __user *from, unsigned long n);

static inline unsigned long __must_check
A
Al Viro 已提交
451
raw_copy_from_user(void *to, const void __user *from, unsigned long n)
452
{
453 454 455
	unsigned int __ua_flags;

	__ua_flags = uaccess_save_and_enable();
456 457 458 459 460 461 462 463 464 465 466
	n = arm_copy_from_user(to, from, n);
	uaccess_restore(__ua_flags);
	return n;
}

extern unsigned long __must_check
arm_copy_to_user(void __user *to, const void *from, unsigned long n);
extern unsigned long __must_check
__copy_to_user_std(void __user *to, const void *from, unsigned long n);

static inline unsigned long __must_check
A
Al Viro 已提交
467
raw_copy_to_user(void __user *to, const void *from, unsigned long n)
468
{
469
#ifndef CONFIG_UACCESS_WITH_MEMCPY
470 471
	unsigned int __ua_flags;
	__ua_flags = uaccess_save_and_enable();
472 473 474
	n = arm_copy_to_user(to, from, n);
	uaccess_restore(__ua_flags);
	return n;
475 476 477
#else
	return arm_copy_to_user(to, from, n);
#endif
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
}

extern unsigned long __must_check
arm_clear_user(void __user *addr, unsigned long n);
extern unsigned long __must_check
__clear_user_std(void __user *addr, unsigned long n);

static inline unsigned long __must_check
__clear_user(void __user *addr, unsigned long n)
{
	unsigned int __ua_flags = uaccess_save_and_enable();
	n = arm_clear_user(addr, n);
	uaccess_restore(__ua_flags);
	return n;
}

R
Russell King 已提交
494
#else
A
Al Viro 已提交
495 496
static inline unsigned long
raw_copy_from_user(void *to, const void __user *from, unsigned long n)
497
{
A
Al Viro 已提交
498 499
	memcpy(to, (const void __force *)from, n);
	return 0;
500
}
A
Al Viro 已提交
501 502
static inline unsigned long
raw_copy_to_user(void __user *to, const void *from, unsigned long n)
503
{
A
Al Viro 已提交
504 505
	memcpy((void __force *)to, from, n);
	return 0;
L
Linus Torvalds 已提交
506
}
A
Al Viro 已提交
507 508 509 510
#define __clear_user(addr, n)		(memset((void __force *)addr, 0, n), 0)
#endif
#define INLINE_COPY_TO_USER
#define INLINE_COPY_FROM_USER
L
Linus Torvalds 已提交
511

512
static inline unsigned long __must_check clear_user(void __user *to, unsigned long n)
L
Linus Torvalds 已提交
513 514
{
	if (access_ok(VERIFY_WRITE, to, n))
515
		n = __clear_user(to, n);
L
Linus Torvalds 已提交
516 517 518
	return n;
}

519
/* These are from lib/ code, and use __get_user() and friends */
520
extern long strncpy_from_user(char *dest, const char __user *src, long count);
L
Linus Torvalds 已提交
521

522
extern __must_check long strnlen_user(const char __user *str, long n);
L
Linus Torvalds 已提交
523 524

#endif /* _ASMARM_UACCESS_H */