2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/lib/putuser.S
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Russell King
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Idea from x86 version, (C) Copyright 1998 Linus Torvalds
|
|
|
|
*
|
|
|
|
* These functions have a non-standard call interface to make
|
|
|
|
* them more efficient, especially as they return an error
|
|
|
|
* value in addition to the "real" return value.
|
|
|
|
*
|
|
|
|
* __put_user_X
|
|
|
|
*
|
|
|
|
* Inputs: r0 contains the address
|
2012-09-07 19:22:28 +02:00
|
|
|
* r1 contains the address limit, which must be preserved
|
2005-04-17 00:20:36 +02:00
|
|
|
* r2, r3 contains the value
|
|
|
|
* Outputs: r0 is the error code
|
|
|
|
* lr corrupted
|
|
|
|
*
|
2008-08-02 11:55:55 +02:00
|
|
|
* No other registers must be altered. (see <asm/uaccess.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
* for specific ASM register usage).
|
|
|
|
*
|
|
|
|
* Note that ADDR_LIMIT is either 0 or 0xc0000000
|
|
|
|
* Note also that it is intended that __put_user_bad is not global.
|
|
|
|
*/
|
2008-08-28 12:22:32 +02:00
|
|
|
#include <linux/linkage.h>
|
2012-09-07 19:22:28 +02:00
|
|
|
#include <asm/assembler.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/errno.h>
|
2010-09-13 17:03:21 +02:00
|
|
|
#include <asm/domain.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-08-28 12:22:32 +02:00
|
|
|
ENTRY(__put_user_1)
|
2012-09-07 19:22:28 +02:00
|
|
|
check_uaccess r0, 1, r1, ip, __put_user_bad
|
2012-01-25 11:38:13 +01:00
|
|
|
1: TUSER(strb) r2, [r0]
|
2005-04-17 00:20:36 +02:00
|
|
|
mov r0, #0
|
2014-06-30 17:29:12 +02:00
|
|
|
ret lr
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(__put_user_1)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-08-28 12:22:32 +02:00
|
|
|
ENTRY(__put_user_2)
|
2012-09-07 19:22:28 +02:00
|
|
|
check_uaccess r0, 2, r1, ip, __put_user_bad
|
2005-04-17 00:20:36 +02:00
|
|
|
mov ip, r2, lsr #8
|
2009-07-24 13:32:57 +02:00
|
|
|
#ifdef CONFIG_THUMB2_KERNEL
|
|
|
|
#ifndef __ARMEB__
|
2012-01-25 11:38:13 +01:00
|
|
|
2: TUSER(strb) r2, [r0]
|
|
|
|
3: TUSER(strb) ip, [r0, #1]
|
2009-07-24 13:32:57 +02:00
|
|
|
#else
|
2012-01-25 11:38:13 +01:00
|
|
|
2: TUSER(strb) ip, [r0]
|
|
|
|
3: TUSER(strb) r2, [r0, #1]
|
2009-07-24 13:32:57 +02:00
|
|
|
#endif
|
|
|
|
#else /* !CONFIG_THUMB2_KERNEL */
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __ARMEB__
|
2012-01-25 11:38:13 +01:00
|
|
|
2: TUSER(strb) r2, [r0], #1
|
|
|
|
3: TUSER(strb) ip, [r0]
|
2005-04-17 00:20:36 +02:00
|
|
|
#else
|
2012-01-25 11:38:13 +01:00
|
|
|
2: TUSER(strb) ip, [r0], #1
|
|
|
|
3: TUSER(strb) r2, [r0]
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
2009-07-24 13:32:57 +02:00
|
|
|
#endif /* CONFIG_THUMB2_KERNEL */
|
2005-04-17 00:20:36 +02:00
|
|
|
mov r0, #0
|
2014-06-30 17:29:12 +02:00
|
|
|
ret lr
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(__put_user_2)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-08-28 12:22:32 +02:00
|
|
|
ENTRY(__put_user_4)
|
2012-09-07 19:22:28 +02:00
|
|
|
check_uaccess r0, 4, r1, ip, __put_user_bad
|
2012-01-25 11:38:13 +01:00
|
|
|
4: TUSER(str) r2, [r0]
|
2005-04-17 00:20:36 +02:00
|
|
|
mov r0, #0
|
2014-06-30 17:29:12 +02:00
|
|
|
ret lr
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(__put_user_4)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-08-28 12:22:32 +02:00
|
|
|
ENTRY(__put_user_8)
|
2012-09-07 19:22:28 +02:00
|
|
|
check_uaccess r0, 8, r1, ip, __put_user_bad
|
2009-07-24 13:32:57 +02:00
|
|
|
#ifdef CONFIG_THUMB2_KERNEL
|
2012-01-25 11:38:13 +01:00
|
|
|
5: TUSER(str) r2, [r0]
|
|
|
|
6: TUSER(str) r3, [r0, #4]
|
2009-07-24 13:32:57 +02:00
|
|
|
#else
|
2012-01-25 11:38:13 +01:00
|
|
|
5: TUSER(str) r2, [r0], #4
|
|
|
|
6: TUSER(str) r3, [r0]
|
2009-07-24 13:32:57 +02:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
mov r0, #0
|
2014-06-30 17:29:12 +02:00
|
|
|
ret lr
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(__put_user_8)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
__put_user_bad:
|
|
|
|
mov r0, #-EFAULT
|
2014-06-30 17:29:12 +02:00
|
|
|
ret lr
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(__put_user_bad)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-04-19 11:15:03 +02:00
|
|
|
.pushsection __ex_table, "a"
|
2005-04-17 00:20:36 +02:00
|
|
|
.long 1b, __put_user_bad
|
|
|
|
.long 2b, __put_user_bad
|
|
|
|
.long 3b, __put_user_bad
|
|
|
|
.long 4b, __put_user_bad
|
|
|
|
.long 5b, __put_user_bad
|
|
|
|
.long 6b, __put_user_bad
|
2010-04-19 11:15:03 +02:00
|
|
|
.popsection
|