usercopy_64.c 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/* 
 * User address space access functions.
 *
 * Copyright 1997 Andi Kleen <ak@muc.de>
 * Copyright 1997 Linus Torvalds
 * Copyright 2002 Andi Kleen <ak@suse.de>
 */
8
#include <linux/export.h>
9
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17

/*
 * Zero Userspace
 */

unsigned long __clear_user(void __user *addr, unsigned long size)
{
	long __d0;
18
	might_fault();
L
Linus Torvalds 已提交
19 20
	/* no memory constraint because it doesn't change any memory gcc knows
	   about */
21
	stac();
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
	asm volatile(
		"	testq  %[size8],%[size8]\n"
		"	jz     4f\n"
		"0:	movq %[zero],(%[dst])\n"
		"	addq   %[eight],%[dst]\n"
		"	decl %%ecx ; jnz   0b\n"
		"4:	movq  %[size1],%%rcx\n"
		"	testl %%ecx,%%ecx\n"
		"	jz     2f\n"
		"1:	movb   %b[zero],(%[dst])\n"
		"	incq   %[dst]\n"
		"	decl %%ecx ; jnz  1b\n"
		"2:\n"
		".section .fixup,\"ax\"\n"
		"3:	lea 0(%[size1],%[size8],8),%[size8]\n"
		"	jmp 2b\n"
		".previous\n"
39 40
		_ASM_EXTABLE(0b,3b)
		_ASM_EXTABLE(1b,2b)
41
		: [size8] "=&c"(size), [dst] "=&D" (__d0)
L
Linus Torvalds 已提交
42 43
		: [size1] "r"(size & 7), "[size8]" (size / 8), "[dst]"(addr),
		  [zero] "r" (0UL), [eight] "r" (8UL));
44
	clac();
L
Linus Torvalds 已提交
45 46
	return size;
}
47
EXPORT_SYMBOL(__clear_user);
L
Linus Torvalds 已提交
48 49 50 51 52 53 54

unsigned long clear_user(void __user *to, unsigned long n)
{
	if (access_ok(VERIFY_WRITE, to, n))
		return __clear_user(to, n);
	return n;
}
55
EXPORT_SYMBOL(clear_user);
L
Linus Torvalds 已提交
56

57 58 59 60 61
/*
 * Try to copy last bytes and clear the rest if needed.
 * Since protection fault in copy_from/to_user is not a normal situation,
 * it is not necessary to optimize tail handling.
 */
62
__visible unsigned long
63
copy_user_handle_tail(char *to, char *from, unsigned len)
64
{
65
	for (; len; --len, to++) {
66 67
		char c;

68 69
		if (__get_user_nocheck(c, from++, sizeof(char)))
			break;
70
		if (__put_user_nocheck(c, to, sizeof(char)))
71 72
			break;
	}
73
	clac();
74 75
	return len;
}