2 * Kernel module for testing copy_to/from_user infrastructure.
4 * Copyright 2013 Google Inc. All Rights Reserved
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/mman.h>
22 #include <linux/module.h>
23 #include <linux/sched.h>
24 #include <linux/slab.h>
25 #include <linux/uaccess.h>
26 #include <linux/vmalloc.h>
29 * Several 32-bit architectures support 64-bit {get,put}_user() calls.
30 * As there doesn't appear to be anything that can safely determine
31 * their capability at compile-time, we just have to opt-out certain archs.
33 #if BITS_PER_LONG == 64 || (!(defined(CONFIG_ARM) && !defined(MMU)) && \
34 !defined(CONFIG_AVR32) && \
35 !defined(CONFIG_BLACKFIN) && \
36 !defined(CONFIG_M32R) && \
37 !defined(CONFIG_M68K) && \
38 !defined(CONFIG_MICROBLAZE) && \
39 !defined(CONFIG_MN10300) && \
40 !defined(CONFIG_NIOS2) && \
41 !defined(CONFIG_PPC32) && \
42 !defined(CONFIG_SUPERH))
46 #define test(condition, msg) \
48 int cond = (condition); \
50 pr_warn("%s\n", msg); \
54 static int __init test_user_copy_init(void)
60 unsigned long user_addr;
68 kmem = kmalloc(PAGE_SIZE * 2, GFP_KERNEL);
72 user_addr = vm_mmap(NULL, 0, PAGE_SIZE * 2,
73 PROT_READ | PROT_WRITE | PROT_EXEC,
74 MAP_ANONYMOUS | MAP_PRIVATE, 0);
75 if (user_addr >= (unsigned long)(TASK_SIZE)) {
76 pr_warn("Failed to allocate user memory\n");
81 usermem = (char __user *)user_addr;
82 bad_usermem = (char *)user_addr;
85 * Legitimate usage: none of these copies should fail.
87 memset(kmem, 0x3a, PAGE_SIZE * 2);
88 ret |= test(copy_to_user(usermem, kmem, PAGE_SIZE),
89 "legitimate copy_to_user failed");
90 memset(kmem, 0x0, PAGE_SIZE);
91 ret |= test(copy_from_user(kmem, usermem, PAGE_SIZE),
92 "legitimate copy_from_user failed");
93 ret |= test(memcmp(kmem, kmem + PAGE_SIZE, PAGE_SIZE),
94 "legitimate usercopy failed to copy data");
96 #define test_legit(size, check) \
99 ret |= test(put_user(val_##size, (size __user *)usermem), \
100 "legitimate put_user (" #size ") failed"); \
102 ret |= test(get_user(val_##size, (size __user *)usermem), \
103 "legitimate get_user (" #size ") failed"); \
104 ret |= test(val_##size != check, \
105 "legitimate get_user (" #size ") failed to do copy"); \
106 if (val_##size != check) { \
107 pr_info("0x%llx != 0x%llx\n", \
108 (unsigned long long)val_##size, \
109 (unsigned long long)check); \
113 test_legit(u8, 0x5a);
114 test_legit(u16, 0x5a5b);
115 test_legit(u32, 0x5a5b5c5d);
117 test_legit(u64, 0x5a5b5c5d6a6b6c6d);
122 * Invalid usage: none of these copies should succeed.
125 /* Prepare kernel memory with check values. */
126 memset(kmem, 0x5a, PAGE_SIZE);
127 memset(kmem + PAGE_SIZE, 0, PAGE_SIZE);
129 /* Reject kernel-to-kernel copies through copy_from_user(). */
130 ret |= test(!copy_from_user(kmem, (char __user *)(kmem + PAGE_SIZE),
132 "illegal all-kernel copy_from_user passed");
134 /* Destination half of buffer should have been zeroed. */
135 ret |= test(memcmp(kmem + PAGE_SIZE, kmem, PAGE_SIZE),
136 "zeroing failure for illegal all-kernel copy_from_user");
140 * When running with SMAP/PAN/etc, this will Oops the kernel
141 * due to the zeroing of userspace memory on failure. This needs
142 * to be tested in LKDTM instead, since this test module does not
145 ret |= test(!copy_from_user(bad_usermem, (char __user *)kmem,
147 "illegal reversed copy_from_user passed");
149 ret |= test(!copy_to_user((char __user *)kmem, kmem + PAGE_SIZE,
151 "illegal all-kernel copy_to_user passed");
152 ret |= test(!copy_to_user((char __user *)kmem, bad_usermem,
154 "illegal reversed copy_to_user passed");
156 #define test_illegal(size, check) \
158 val_##size = (check); \
159 ret |= test(!get_user(val_##size, (size __user *)kmem), \
160 "illegal get_user (" #size ") passed"); \
161 ret |= test(val_##size != (size)0, \
162 "zeroing failure for illegal get_user (" #size ")"); \
163 if (val_##size != (size)0) { \
164 pr_info("0x%llx != 0\n", \
165 (unsigned long long)val_##size); \
167 ret |= test(!put_user(val_##size, (size __user *)kmem), \
168 "illegal put_user (" #size ") passed"); \
171 test_illegal(u8, 0x5a);
172 test_illegal(u16, 0x5a5b);
173 test_illegal(u32, 0x5a5b5c5d);
175 test_illegal(u64, 0x5a5b5c5d6a6b6c6d);
179 vm_munmap(user_addr, PAGE_SIZE * 2);
183 pr_info("tests passed.\n");
190 module_init(test_user_copy_init);
192 static void __exit test_user_copy_exit(void)
194 pr_info("unloaded.\n");
197 module_exit(test_user_copy_exit);
200 MODULE_LICENSE("GPL");