uaccess.h 16.1 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 15
#include <linux/string.h>
#include <linux/thread_info.h>
L
Linus Torvalds 已提交
16 17 18
#include <asm/errno.h>
#include <asm/memory.h>
#include <asm/domain.h>
19
#include <asm/unified.h>
20
#include <asm/compiler.h>
L
Linus Torvalds 已提交
21

22
#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
23 24 25 26 27 28
#include <asm-generic/uaccess-unaligned.h>
#else
#define __get_user_unaligned __get_user
#define __put_user_unaligned __put_user
#endif

L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#define VERIFY_READ 0
#define VERIFY_WRITE 1

/*
 * The exception table consists of pairs of addresses: the first is the
 * address of an instruction that is allowed to fault, and the second is
 * the address at which the program should continue.  No registers are
 * modified, so it is entirely up to the continuation code to figure out
 * what to do.
 *
 * All the routines below use bits of fixup code that are out of line
 * with the main instruction path.  This means when everything is well,
 * we don't even have to jump over them.  Further, they do not intrude
 * on our cache or tlb entries.
 */

struct exception_table_entry
{
	unsigned long insn, fixup;
};

extern int fixup_exception(struct pt_regs *regs);

52 53 54 55 56 57 58 59
/*
 * 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)
{
60 61 62 63 64 65 66 67 68
#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
69
	return 0;
70
#endif
71 72 73 74
}

static inline void uaccess_restore(unsigned int flags)
{
75 76 77 78
#ifdef CONFIG_CPU_SW_DOMAIN_PAN
	/* Restore the user access mask */
	set_domain(flags);
#endif
79 80
}

R
Russell King 已提交
81 82 83 84 85 86 87
/*
 * 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 已提交
88 89 90 91 92
/*
 * Note that this is actually 0x1,0000,0000
 */
#define KERNEL_DS	0x00000000
#define get_ds()	(KERNEL_DS)
R
Russell King 已提交
93 94 95 96

#ifdef CONFIG_MMU

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

R
Russell King 已提交
99
static inline void set_fs(mm_segment_t fs)
L
Linus Torvalds 已提交
100 101 102 103 104
{
	current_thread_info()->addr_limit = fs;
	modify_domain(DOMAIN_KERNEL, fs ? DOMAIN_CLIENT : DOMAIN_MANAGER);
}

M
Michael S. Tsirkin 已提交
105
#define segment_eq(a, b)	((a) == (b))
L
Linus Torvalds 已提交
106 107

/* We use 33-bit arithmetic here... */
M
Michael S. Tsirkin 已提交
108
#define __range_ok(addr, size) ({ \
109
	unsigned long flag, roksum; \
L
Linus Torvalds 已提交
110 111
	__chk_user_ptr(addr);	\
	__asm__("adds %1, %2, %3; sbcccs %1, %1, %0; movcc %0, #0" \
112
		: "=&r" (flag), "=&r" (roksum) \
L
Linus Torvalds 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		: "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 *);
131
extern int __get_user_32t_8(void *);
132
extern int __get_user_8(void *);
133 134 135
extern int __get_user_64t_1(void *);
extern int __get_user_64t_2(void *);
extern int __get_user_64t_4(void *);
L
Linus Torvalds 已提交
136

137 138 139 140 141 142 143
#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"
144
#define __GUP_CLOBBER_32t_8 "lr", "cc"
145
#define __GUP_CLOBBER_8	"lr", "cc"
146

M
Michael S. Tsirkin 已提交
147
#define __get_user_x(__r2, __p, __e, __l, __s)				\
L
Linus Torvalds 已提交
148 149
	   __asm__ __volatile__ (					\
		__asmeq("%0", "r0") __asmeq("%1", "r2")			\
150
		__asmeq("%3", "r1")					\
L
Linus Torvalds 已提交
151 152
		"bl	__get_user_" #__s				\
		: "=&r" (__e), "=r" (__r2)				\
153 154
		: "0" (__p), "r" (__l)					\
		: __GUP_CLOBBER_##__s)
L
Linus Torvalds 已提交
155

156 157
/* narrowing a double-word get into a single 32bit word register: */
#ifdef __ARMEB__
M
Michael S. Tsirkin 已提交
158
#define __get_user_x_32t(__r2, __p, __e, __l, __s)			\
159
	__get_user_x(__r2, __p, __e, __l, 32t_8)
160
#else
161
#define __get_user_x_32t __get_user_x
162 163
#endif

164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
/*
 * 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 已提交
182
#define __get_user_check(x, p)						\
L
Linus Torvalds 已提交
183
	({								\
184
		unsigned long __limit = current_thread_info()->addr_limit - 1; \
185
		register const typeof(*(p)) __user *__p asm("r0") = (p);\
186
		register typeof(x) __r2 asm("r2");			\
187
		register unsigned long __l asm("r1") = __limit;		\
L
Linus Torvalds 已提交
188
		register int __e asm("r0");				\
189
		unsigned int __ua_flags = uaccess_save_and_enable();	\
L
Linus Torvalds 已提交
190 191
		switch (sizeof(*(__p))) {				\
		case 1:							\
192 193 194 195
			if (sizeof((x)) >= 8)				\
				__get_user_x_64t(__r2, __p, __e, __l, 1); \
			else						\
				__get_user_x(__r2, __p, __e, __l, 1);	\
196
			break;						\
L
Linus Torvalds 已提交
197
		case 2:							\
198 199 200 201
			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 已提交
202 203
			break;						\
		case 4:							\
204 205 206 207
			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 已提交
208
			break;						\
209 210
		case 8:							\
			if (sizeof((x)) < 8)				\
211
				__get_user_x_32t(__r2, __p, __e, __l, 4); \
212 213 214
			else						\
				__get_user_x(__r2, __p, __e, __l, 8);	\
			break;						\
L
Linus Torvalds 已提交
215 216
		default: __e = __get_user_bad(); break;			\
		}							\
217
		uaccess_restore(__ua_flags);				\
218
		x = (typeof(*(p))) __r2;				\
L
Linus Torvalds 已提交
219 220 221
		__e;							\
	})

M
Michael S. Tsirkin 已提交
222
#define get_user(x, p)							\
223 224
	({								\
		might_fault();						\
M
Michael S. Tsirkin 已提交
225
		__get_user_check(x, p);					\
226 227
	 })

R
Russell King 已提交
228 229 230 231 232
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);

M
Michael S. Tsirkin 已提交
233
#define __put_user_x(__r2, __p, __e, __l, __s)				\
R
Russell King 已提交
234 235
	   __asm__ __volatile__ (					\
		__asmeq("%0", "r0") __asmeq("%2", "r2")			\
236
		__asmeq("%3", "r1")					\
R
Russell King 已提交
237 238
		"bl	__put_user_" #__s				\
		: "=&r" (__e)						\
239
		: "0" (__p), "r" (__r2), "r" (__l)			\
R
Russell King 已提交
240 241
		: "ip", "lr", "cc")

M
Michael S. Tsirkin 已提交
242
#define __put_user_check(x, p)						\
R
Russell King 已提交
243
	({								\
244
		unsigned long __limit = current_thread_info()->addr_limit - 1; \
245
		const typeof(*(p)) __user *__tmp_p = (p);		\
246
		register const typeof(*(p)) __r2 asm("r2") = (x);	\
247
		register const typeof(*(p)) __user *__p asm("r0") = __tmp_p; \
248
		register unsigned long __l asm("r1") = __limit;		\
R
Russell King 已提交
249
		register int __e asm("r0");				\
250
		unsigned int __ua_flags = uaccess_save_and_enable();	\
R
Russell King 已提交
251 252
		switch (sizeof(*(__p))) {				\
		case 1:							\
253
			__put_user_x(__r2, __p, __e, __l, 1);		\
R
Russell King 已提交
254 255
			break;						\
		case 2:							\
256
			__put_user_x(__r2, __p, __e, __l, 2);		\
R
Russell King 已提交
257 258
			break;						\
		case 4:							\
259
			__put_user_x(__r2, __p, __e, __l, 4);		\
R
Russell King 已提交
260 261
			break;						\
		case 8:							\
262
			__put_user_x(__r2, __p, __e, __l, 8);		\
R
Russell King 已提交
263 264 265
			break;						\
		default: __e = __put_user_bad(); break;			\
		}							\
266
		uaccess_restore(__ua_flags);				\
R
Russell King 已提交
267 268 269
		__e;							\
	})

M
Michael S. Tsirkin 已提交
270
#define put_user(x, p)							\
271 272
	({								\
		might_fault();						\
M
Michael S. Tsirkin 已提交
273
		__put_user_check(x, p);					\
274 275
	 })

R
Russell King 已提交
276 277 278 279 280 281 282
#else /* CONFIG_MMU */

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

M
Michael S. Tsirkin 已提交
283 284 285
#define segment_eq(a, b)		(1)
#define __addr_ok(addr)		((void)(addr), 1)
#define __range_ok(addr, size)	((void)(addr), 0)
R
Russell King 已提交
286 287 288 289 290 291
#define get_fs()		(KERNEL_DS)

static inline void set_fs(mm_segment_t fs)
{
}

M
Michael S. Tsirkin 已提交
292 293
#define get_user(x, p)	__get_user(x, p)
#define put_user(x, p)	__put_user(x, p)
R
Russell King 已提交
294 295 296

#endif /* CONFIG_MMU */

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

299
#define user_addr_max() \
300
	(segment_eq(get_fs(), KERNEL_DS) ? ~0UL : get_fs())
301

R
Russell King 已提交
302 303 304 305 306 307 308 309 310
/*
 * 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 已提交
311
#define __get_user(x, ptr)						\
L
Linus Torvalds 已提交
312 313
({									\
	long __gu_err = 0;						\
M
Michael S. Tsirkin 已提交
314
	__get_user_err((x), (ptr), __gu_err);				\
L
Linus Torvalds 已提交
315 316 317
	__gu_err;							\
})

M
Michael S. Tsirkin 已提交
318
#define __get_user_error(x, ptr, err)					\
L
Linus Torvalds 已提交
319
({									\
M
Michael S. Tsirkin 已提交
320
	__get_user_err((x), (ptr), err);				\
L
Linus Torvalds 已提交
321 322 323
	(void) 0;							\
})

M
Michael S. Tsirkin 已提交
324
#define __get_user_err(x, ptr, err)					\
L
Linus Torvalds 已提交
325 326 327
do {									\
	unsigned long __gu_addr = (unsigned long)(ptr);			\
	unsigned long __gu_val;						\
328
	unsigned int __ua_flags;					\
L
Linus Torvalds 已提交
329
	__chk_user_ptr(ptr);						\
330
	might_fault();							\
331
	__ua_flags = uaccess_save_and_enable();				\
L
Linus Torvalds 已提交
332
	switch (sizeof(*(ptr))) {					\
M
Michael S. Tsirkin 已提交
333 334 335
	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 已提交
336 337
	default: (__gu_val) = __get_user_bad();				\
	}								\
338
	uaccess_restore(__ua_flags);					\
L
Linus Torvalds 已提交
339 340 341
	(x) = (__typeof__(*(ptr)))__gu_val;				\
} while (0)

342
#define __get_user_asm(x, addr, err, instr)			\
L
Linus Torvalds 已提交
343
	__asm__ __volatile__(					\
344
	"1:	" TUSER(instr) " %1, [%2], #0\n"		\
L
Linus Torvalds 已提交
345
	"2:\n"							\
346
	"	.pushsection .text.fixup,\"ax\"\n"		\
L
Linus Torvalds 已提交
347 348 349 350
	"	.align	2\n"					\
	"3:	mov	%0, %3\n"				\
	"	mov	%1, #0\n"				\
	"	b	2b\n"					\
351 352
	"	.popsection\n"					\
	"	.pushsection __ex_table,\"a\"\n"		\
L
Linus Torvalds 已提交
353 354
	"	.align	3\n"					\
	"	.long	1b, 3b\n"				\
355
	"	.popsection"					\
L
Linus Torvalds 已提交
356 357 358 359
	: "+r" (err), "=&r" (x)					\
	: "r" (addr), "i" (-EFAULT)				\
	: "cc")

360 361 362
#define __get_user_asm_byte(x, addr, err)			\
	__get_user_asm(x, addr, err, ldrb)

L
Linus Torvalds 已提交
363
#ifndef __ARMEB__
M
Michael S. Tsirkin 已提交
364
#define __get_user_asm_half(x, __gu_addr, err)			\
L
Linus Torvalds 已提交
365 366 367 368 369 370 371
({								\
	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 已提交
372
#define __get_user_asm_half(x, __gu_addr, err)			\
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380
({								\
	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 已提交
381
#define __get_user_asm_word(x, addr, err)			\
382
	__get_user_asm(x, addr, err, ldr)
L
Linus Torvalds 已提交
383

M
Michael S. Tsirkin 已提交
384
#define __put_user(x, ptr)						\
L
Linus Torvalds 已提交
385 386
({									\
	long __pu_err = 0;						\
M
Michael S. Tsirkin 已提交
387
	__put_user_err((x), (ptr), __pu_err);				\
L
Linus Torvalds 已提交
388 389 390
	__pu_err;							\
})

M
Michael S. Tsirkin 已提交
391
#define __put_user_error(x, ptr, err)					\
L
Linus Torvalds 已提交
392
({									\
M
Michael S. Tsirkin 已提交
393
	__put_user_err((x), (ptr), err);				\
L
Linus Torvalds 已提交
394 395 396
	(void) 0;							\
})

M
Michael S. Tsirkin 已提交
397
#define __put_user_err(x, ptr, err)					\
L
Linus Torvalds 已提交
398 399
do {									\
	unsigned long __pu_addr = (unsigned long)(ptr);			\
400
	unsigned int __ua_flags;					\
L
Linus Torvalds 已提交
401 402
	__typeof__(*(ptr)) __pu_val = (x);				\
	__chk_user_ptr(ptr);						\
403
	might_fault();							\
404
	__ua_flags = uaccess_save_and_enable();				\
L
Linus Torvalds 已提交
405
	switch (sizeof(*(ptr))) {					\
M
Michael S. Tsirkin 已提交
406 407 408 409
	case 1: __put_user_asm_byte(__pu_val, __pu_addr, err);	break;	\
	case 2: __put_user_asm_half(__pu_val, __pu_addr, err);	break;	\
	case 4: __put_user_asm_word(__pu_val, __pu_addr, err);	break;	\
	case 8:	__put_user_asm_dword(__pu_val, __pu_addr, err);	break;	\
L
Linus Torvalds 已提交
410 411
	default: __put_user_bad();					\
	}								\
412
	uaccess_restore(__ua_flags);					\
L
Linus Torvalds 已提交
413 414
} while (0)

415
#define __put_user_asm(x, __pu_addr, err, instr)		\
L
Linus Torvalds 已提交
416
	__asm__ __volatile__(					\
417
	"1:	" TUSER(instr) " %1, [%2], #0\n"		\
L
Linus Torvalds 已提交
418
	"2:\n"							\
419
	"	.pushsection .text.fixup,\"ax\"\n"		\
L
Linus Torvalds 已提交
420 421 422
	"	.align	2\n"					\
	"3:	mov	%0, %3\n"				\
	"	b	2b\n"					\
423 424
	"	.popsection\n"					\
	"	.pushsection __ex_table,\"a\"\n"		\
L
Linus Torvalds 已提交
425 426
	"	.align	3\n"					\
	"	.long	1b, 3b\n"				\
427
	"	.popsection"					\
L
Linus Torvalds 已提交
428 429 430 431
	: "+r" (err)						\
	: "r" (x), "r" (__pu_addr), "i" (-EFAULT)		\
	: "cc")

432 433 434
#define __put_user_asm_byte(x, __pu_addr, err)			\
	__put_user_asm(x, __pu_addr, err, strb)

L
Linus Torvalds 已提交
435
#ifndef __ARMEB__
M
Michael S. Tsirkin 已提交
436
#define __put_user_asm_half(x, __pu_addr, err)			\
L
Linus Torvalds 已提交
437
({								\
438
	unsigned long __temp = (__force unsigned long)(x);	\
L
Linus Torvalds 已提交
439 440 441 442
	__put_user_asm_byte(__temp, __pu_addr, err);		\
	__put_user_asm_byte(__temp >> 8, __pu_addr + 1, err);	\
})
#else
M
Michael S. Tsirkin 已提交
443
#define __put_user_asm_half(x, __pu_addr, err)			\
L
Linus Torvalds 已提交
444
({								\
445
	unsigned long __temp = (__force unsigned long)(x);	\
L
Linus Torvalds 已提交
446 447 448 449 450
	__put_user_asm_byte(__temp >> 8, __pu_addr, err);	\
	__put_user_asm_byte(__temp, __pu_addr + 1, err);	\
})
#endif

M
Michael S. Tsirkin 已提交
451
#define __put_user_asm_word(x, __pu_addr, err)			\
452
	__put_user_asm(x, __pu_addr, err, str)
L
Linus Torvalds 已提交
453 454 455 456 457 458 459 460 461

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

M
Michael S. Tsirkin 已提交
462
#define __put_user_asm_dword(x, __pu_addr, err)			\
L
Linus Torvalds 已提交
463
	__asm__ __volatile__(					\
464 465 466 467
 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 已提交
468
	"3:\n"							\
469
	"	.pushsection .text.fixup,\"ax\"\n"		\
L
Linus Torvalds 已提交
470 471 472
	"	.align	2\n"					\
	"4:	mov	%0, %3\n"				\
	"	b	3b\n"					\
473 474
	"	.popsection\n"					\
	"	.pushsection __ex_table,\"a\"\n"		\
L
Linus Torvalds 已提交
475 476 477
	"	.align	3\n"					\
	"	.long	1b, 4b\n"				\
	"	.long	2b, 4b\n"				\
478
	"	.popsection"					\
L
Linus Torvalds 已提交
479 480 481 482
	: "+r" (err), "+r" (__pu_addr)				\
	: "r" (x), "i" (-EFAULT)				\
	: "cc")

483

R
Russell King 已提交
484
#ifdef CONFIG_MMU
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
extern unsigned long __must_check
arm_copy_from_user(void *to, const void __user *from, unsigned long n);

static inline unsigned long __must_check
__copy_from_user(void *to, const void __user *from, unsigned long n)
{
	unsigned int __ua_flags = uaccess_save_and_enable();
	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
__copy_to_user(void __user *to, const void *from, unsigned long n)
{
505
#ifndef CONFIG_UACCESS_WITH_MEMCPY
506 507 508 509
	unsigned int __ua_flags = uaccess_save_and_enable();
	n = arm_copy_to_user(to, from, n);
	uaccess_restore(__ua_flags);
	return n;
510 511 512
#else
	return arm_copy_to_user(to, from, n);
#endif
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
}

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 已提交
529
#else
M
Michael S. Tsirkin 已提交
530 531 532
#define __copy_from_user(to, from, n)	(memcpy(to, (void __force *)from, n), 0)
#define __copy_to_user(to, from, n)	(memcpy((void __force *)to, from, n), 0)
#define __clear_user(addr, n)		(memset((void __force *)addr, 0, n), 0)
R
Russell King 已提交
533 534
#endif

535
static inline unsigned long __must_check copy_from_user(void *to, const void __user *from, unsigned long n)
L
Linus Torvalds 已提交
536 537
{
	if (access_ok(VERIFY_READ, from, n))
538
		n = __copy_from_user(to, from, n);
L
Linus Torvalds 已提交
539
	else /* security hole - plug it */
R
Russell King 已提交
540
		memset(to, 0, n);
L
Linus Torvalds 已提交
541 542 543
	return n;
}

544
static inline unsigned long __must_check copy_to_user(void __user *to, const void *from, unsigned long n)
L
Linus Torvalds 已提交
545 546
{
	if (access_ok(VERIFY_WRITE, to, n))
547
		n = __copy_to_user(to, from, n);
L
Linus Torvalds 已提交
548 549 550 551 552 553
	return n;
}

#define __copy_to_user_inatomic __copy_to_user
#define __copy_from_user_inatomic __copy_from_user

554
static inline unsigned long __must_check clear_user(void __user *to, unsigned long n)
L
Linus Torvalds 已提交
555 556
{
	if (access_ok(VERIFY_WRITE, to, n))
557
		n = __clear_user(to, n);
L
Linus Torvalds 已提交
558 559 560
	return n;
}

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

564 565
extern __must_check long strlen_user(const char __user *str);
extern __must_check long strnlen_user(const char __user *str, long n);
L
Linus Torvalds 已提交
566 567

#endif /* _ASMARM_UACCESS_H */