2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* __put_user functions.
|
|
|
|
*
|
|
|
|
* (C) Copyright 1998 Linus Torvalds
|
|
|
|
* (C) Copyright 2005 Andi Kleen
|
|
|
|
*
|
|
|
|
* 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: %rcx contains the address
|
|
|
|
* %rdx contains new value
|
|
|
|
*
|
|
|
|
* Outputs: %rax is error code (0 or -EFAULT)
|
|
|
|
*
|
|
|
|
* %r8 is destroyed.
|
|
|
|
*
|
|
|
|
* These functions should not modify any other registers,
|
|
|
|
* as they get called from within inline assembly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
2006-09-26 08:52:32 +00:00
|
|
|
#include <asm/dwarf2.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/errno.h>
|
2005-09-09 19:28:48 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/thread_info.h>
|
|
|
|
|
|
|
|
.text
|
2006-09-26 08:52:32 +00:00
|
|
|
ENTRY(__put_user_1)
|
|
|
|
CFI_STARTPROC
|
2005-04-16 22:20:36 +00:00
|
|
|
GET_THREAD_INFO(%r8)
|
|
|
|
cmpq threadinfo_addr_limit(%r8),%rcx
|
|
|
|
jae bad_put_user
|
|
|
|
1: movb %dl,(%rcx)
|
|
|
|
xorl %eax,%eax
|
|
|
|
ret
|
2006-09-26 08:52:32 +00:00
|
|
|
CFI_ENDPROC
|
|
|
|
ENDPROC(__put_user_1)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-26 08:52:32 +00:00
|
|
|
ENTRY(__put_user_2)
|
|
|
|
CFI_STARTPROC
|
2005-04-16 22:20:36 +00:00
|
|
|
GET_THREAD_INFO(%r8)
|
|
|
|
addq $1,%rcx
|
2005-04-21 14:59:51 +00:00
|
|
|
jc 20f
|
2005-04-16 22:20:36 +00:00
|
|
|
cmpq threadinfo_addr_limit(%r8),%rcx
|
2005-04-21 14:59:51 +00:00
|
|
|
jae 20f
|
2005-04-22 17:22:07 +00:00
|
|
|
decq %rcx
|
|
|
|
2: movw %dx,(%rcx)
|
2005-04-16 22:20:36 +00:00
|
|
|
xorl %eax,%eax
|
|
|
|
ret
|
2005-04-21 14:59:51 +00:00
|
|
|
20: decq %rcx
|
|
|
|
jmp bad_put_user
|
2006-09-26 08:52:32 +00:00
|
|
|
CFI_ENDPROC
|
|
|
|
ENDPROC(__put_user_2)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-26 08:52:32 +00:00
|
|
|
ENTRY(__put_user_4)
|
|
|
|
CFI_STARTPROC
|
2005-04-16 22:20:36 +00:00
|
|
|
GET_THREAD_INFO(%r8)
|
|
|
|
addq $3,%rcx
|
2005-04-21 14:59:51 +00:00
|
|
|
jc 30f
|
2005-04-16 22:20:36 +00:00
|
|
|
cmpq threadinfo_addr_limit(%r8),%rcx
|
2005-04-21 14:59:51 +00:00
|
|
|
jae 30f
|
2005-04-22 17:22:07 +00:00
|
|
|
subq $3,%rcx
|
|
|
|
3: movl %edx,(%rcx)
|
2005-04-16 22:20:36 +00:00
|
|
|
xorl %eax,%eax
|
|
|
|
ret
|
2005-04-21 14:59:51 +00:00
|
|
|
30: subq $3,%rcx
|
|
|
|
jmp bad_put_user
|
2006-09-26 08:52:32 +00:00
|
|
|
CFI_ENDPROC
|
|
|
|
ENDPROC(__put_user_4)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-26 08:52:32 +00:00
|
|
|
ENTRY(__put_user_8)
|
|
|
|
CFI_STARTPROC
|
2005-04-16 22:20:36 +00:00
|
|
|
GET_THREAD_INFO(%r8)
|
|
|
|
addq $7,%rcx
|
2005-04-21 14:59:51 +00:00
|
|
|
jc 40f
|
2005-04-16 22:20:36 +00:00
|
|
|
cmpq threadinfo_addr_limit(%r8),%rcx
|
2005-04-21 14:59:51 +00:00
|
|
|
jae 40f
|
2005-04-22 17:22:07 +00:00
|
|
|
subq $7,%rcx
|
|
|
|
4: movq %rdx,(%rcx)
|
2005-04-16 22:20:36 +00:00
|
|
|
xorl %eax,%eax
|
|
|
|
ret
|
2005-04-21 14:59:51 +00:00
|
|
|
40: subq $7,%rcx
|
|
|
|
jmp bad_put_user
|
2006-09-26 08:52:32 +00:00
|
|
|
CFI_ENDPROC
|
|
|
|
ENDPROC(__put_user_8)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
bad_put_user:
|
2006-09-26 08:52:32 +00:00
|
|
|
CFI_STARTPROC
|
2005-04-16 22:20:36 +00:00
|
|
|
movq $(-EFAULT),%rax
|
|
|
|
ret
|
2006-09-26 08:52:32 +00:00
|
|
|
CFI_ENDPROC
|
|
|
|
END(bad_put_user)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
.section __ex_table,"a"
|
|
|
|
.quad 1b,bad_put_user
|
|
|
|
.quad 2b,bad_put_user
|
|
|
|
.quad 3b,bad_put_user
|
|
|
|
.quad 4b,bad_put_user
|
|
|
|
.previous
|