2 * User address space access functions.
4 * For licencing details see kernel-base/COPYING
7 #include <linux/highmem.h>
8 #include <linux/module.h>
10 #include <asm/word-at-a-time.h>
13 * best effort, GUP based copy_from_user() that is NMI-safe
16 copy_from_user_nmi(void *to, const void __user *from, unsigned long n)
18 unsigned long offset, addr = (unsigned long)from;
19 unsigned long size, len = 0;
25 ret = __get_user_pages_fast(addr, 1, 0, &page);
29 offset = addr & (PAGE_SIZE - 1);
30 size = min(PAGE_SIZE - offset, n - len);
32 map = kmap_atomic(page);
33 memcpy(to, map+offset, size);
45 EXPORT_SYMBOL_GPL(copy_from_user_nmi);
48 * Do a strncpy, return length of string without final '\0'.
49 * 'count' is the user-supplied count (return 'count' if we
50 * hit it), 'max' is the address space maximum (and we return
51 * -EFAULT if we hit it).
53 static inline long do_strncpy_from_user(char *dst, const char __user *src, long count, unsigned long max)
58 * Truncate 'max' to the user-specified limit, so that
59 * we only have one limit we need to check in the loop
64 while (max >= sizeof(unsigned long)) {
65 unsigned long c, mask;
67 /* Fall back to byte-at-a-time if we get a page fault */
68 if (unlikely(__get_user(c,(unsigned long __user *)(src+res))))
72 mask = (mask - 1) & ~mask;
74 *(unsigned long *)(dst+res) = c & mask;
75 return res + count_masked_bytes(mask);
77 *(unsigned long *)(dst+res) = c;
78 res += sizeof(unsigned long);
79 max -= sizeof(unsigned long);
85 if (unlikely(__get_user(c,src+res)))
95 * Uhhuh. We hit 'max'. But was that the user-specified maximum
96 * too? If so, that's ok - we got as much as the user asked for.
102 * Nope: we hit the address space limit, and we still had more
103 * characters the caller would have wanted. That's an EFAULT.
109 * strncpy_from_user: - Copy a NUL terminated string from userspace.
110 * @dst: Destination address, in kernel space. This buffer must be at
111 * least @count bytes long.
112 * @src: Source address, in user space.
113 * @count: Maximum number of bytes to copy, including the trailing NUL.
115 * Copies a NUL-terminated string from userspace to kernel space.
117 * On success, returns the length of the string (not including the trailing
120 * If access to userspace fails, returns -EFAULT (some data may have been
123 * If @count is smaller than the length of the string, copies @count bytes
124 * and returns @count.
127 strncpy_from_user(char *dst, const char __user *src, long count)
129 unsigned long max_addr, src_addr;
131 if (unlikely(count <= 0))
134 max_addr = current_thread_info()->addr_limit.seg;
135 src_addr = (unsigned long)src;
136 if (likely(src_addr < max_addr)) {
137 unsigned long max = max_addr - src_addr;
138 return do_strncpy_from_user(dst, src, count, max);
142 EXPORT_SYMBOL(strncpy_from_user);