blob: ac96ae23670900ebdcf13f1cd65319e494bb48e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* user_fixup.c: Fix up user copy faults.
2 *
3 * Copyright (C) 2004 David S. Miller <davem@redhat.com>
4 */
5
6#include <linux/compiler.h>
7#include <linux/kernel.h>
8#include <linux/string.h>
9#include <linux/errno.h>
Sam Ravnborg917c3662009-01-08 16:58:20 -080010#include <linux/module.h>
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/uaccess.h>
13
14/* Calculating the exact fault address when using
15 * block loads and stores can be very complicated.
David S. Millerefdc1e22005-09-28 21:06:47 -070016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * Instead of trying to be clever and handling all
18 * of the cases, just fix things up simply here.
19 */
20
David S. Millerefdc1e22005-09-28 21:06:47 -070021static unsigned long compute_size(unsigned long start, unsigned long size, unsigned long *offset)
22{
23 unsigned long fault_addr = current_thread_info()->fault_address;
24 unsigned long end = start + size;
25
26 if (fault_addr < start || fault_addr >= end) {
27 *offset = 0;
28 } else {
David S. Millerb270ee82008-12-01 02:48:26 -080029 *offset = fault_addr - start;
David S. Millerefdc1e22005-09-28 21:06:47 -070030 size = end - fault_addr;
31 }
32 return size;
33}
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035unsigned long copy_from_user_fixup(void *to, const void __user *from, unsigned long size)
36{
David S. Millerefdc1e22005-09-28 21:06:47 -070037 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
David S. Millerefdc1e22005-09-28 21:06:47 -070039 size = compute_size((unsigned long) from, size, &offset);
40 if (likely(size))
41 memset(to + offset, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 return size;
44}
Sam Ravnborg917c3662009-01-08 16:58:20 -080045EXPORT_SYMBOL(copy_from_user_fixup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47unsigned long copy_to_user_fixup(void __user *to, const void *from, unsigned long size)
48{
David S. Millerefdc1e22005-09-28 21:06:47 -070049 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
David S. Millerefdc1e22005-09-28 21:06:47 -070051 return compute_size((unsigned long) to, size, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
Sam Ravnborg917c3662009-01-08 16:58:20 -080053EXPORT_SYMBOL(copy_to_user_fixup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55unsigned long copy_in_user_fixup(void __user *to, void __user *from, unsigned long size)
56{
David S. Millerefdc1e22005-09-28 21:06:47 -070057 unsigned long fault_addr = current_thread_info()->fault_address;
58 unsigned long start = (unsigned long) to;
59 unsigned long end = start + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
David S. Millerefdc1e22005-09-28 21:06:47 -070061 if (fault_addr >= start && fault_addr < end)
62 return end - fault_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
David S. Millerefdc1e22005-09-28 21:06:47 -070064 start = (unsigned long) from;
65 end = start + size;
66 if (fault_addr >= start && fault_addr < end)
67 return end - fault_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 return size;
70}
Sam Ravnborg917c3662009-01-08 16:58:20 -080071EXPORT_SYMBOL(copy_in_user_fixup);