copy_in_user.S 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copy from user space to user space
 *
 * Copyright (C) 2012 ARM Ltd.
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/linkage.h>
20

21
#include <asm/cache.h>
A
Al Viro 已提交
22
#include <asm/asm-uaccess.h>
23 24 25 26 27 28 29 30 31 32 33

/*
 * Copy from user space to user space (alignment handled by the hardware)
 *
 * Parameters:
 *	x0 - to
 *	x1 - from
 *	x2 - n
 * Returns:
 *	x0 - bytes not copied
 */
34
	.macro ldrb1 ptr, regB, val
35
	uao_user_alternative 9998f, ldrb, ldtrb, \ptr, \regB, \val
36 37 38
	.endm

	.macro strb1 ptr, regB, val
39
	uao_user_alternative 9998f, strb, sttrb, \ptr, \regB, \val
40 41 42
	.endm

	.macro ldrh1 ptr, regB, val
43
	uao_user_alternative 9998f, ldrh, ldtrh, \ptr, \regB, \val
44 45 46
	.endm

	.macro strh1 ptr, regB, val
47
	uao_user_alternative 9998f, strh, sttrh, \ptr, \regB, \val
48 49 50
	.endm

	.macro ldr1 ptr, regB, val
51
	uao_user_alternative 9998f, ldr, ldtr, \ptr, \regB, \val
52 53 54
	.endm

	.macro str1 ptr, regB, val
55
	uao_user_alternative 9998f, str, sttr, \ptr, \regB, \val
56 57 58
	.endm

	.macro ldp1 ptr, regB, regC, val
59
	uao_ldp 9998f, \ptr, \regB, \regC, \val
60 61 62
	.endm

	.macro stp1 ptr, regB, regC, val
63
	uao_stp 9998f, \ptr, \regB, \regC, \val
64 65 66
	.endm

end	.req	x5
67
ENTRY(__copy_in_user)
68
	uaccess_enable_not_uao x3, x4
69 70
	add	end, x0, x2
#include "copy_template.S"
71
	uaccess_disable_not_uao x3
72
	mov	x0, #0
73 74 75 76 77
	ret
ENDPROC(__copy_in_user)

	.section .fixup,"ax"
	.align	2
78
9998:	sub	x0, end, dst			// bytes not copied
79 80
	ret
	.previous