2 * Kernel module for testing copy_to/from_user infrastructure.
4 * Copyright 2013 Google Inc. All Rights Reserved
7 * Kees Cook <keescook@chromium.org>
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>
28 #define test(condition, msg) \
30 int cond = (condition); \
32 pr_warn("%s\n", msg); \
36 static int __init
test_user_copy_init(void)
42 unsigned long user_addr
;
43 unsigned long value
= 0x5A;
45 kmem
= kmalloc(PAGE_SIZE
* 2, GFP_KERNEL
);
49 user_addr
= vm_mmap(NULL
, 0, PAGE_SIZE
* 2,
50 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
51 MAP_ANONYMOUS
| MAP_PRIVATE
, 0);
52 if (user_addr
>= (unsigned long)(TASK_SIZE
)) {
53 pr_warn("Failed to allocate user memory\n");
58 usermem
= (char __user
*)user_addr
;
59 bad_usermem
= (char *)user_addr
;
61 /* Legitimate usage: none of these should fail. */
62 ret
|= test(copy_from_user(kmem
, usermem
, PAGE_SIZE
),
63 "legitimate copy_from_user failed");
64 ret
|= test(copy_to_user(usermem
, kmem
, PAGE_SIZE
),
65 "legitimate copy_to_user failed");
66 ret
|= test(get_user(value
, (unsigned long __user
*)usermem
),
67 "legitimate get_user failed");
68 ret
|= test(put_user(value
, (unsigned long __user
*)usermem
),
69 "legitimate put_user failed");
71 /* Invalid usage: none of these should succeed. */
72 ret
|= test(!copy_from_user(kmem
, (char __user
*)(kmem
+ PAGE_SIZE
),
74 "illegal all-kernel copy_from_user passed");
75 ret
|= test(!copy_from_user(bad_usermem
, (char __user
*)kmem
,
77 "illegal reversed copy_from_user passed");
78 ret
|= test(!copy_to_user((char __user
*)kmem
, kmem
+ PAGE_SIZE
,
80 "illegal all-kernel copy_to_user passed");
81 ret
|= test(!copy_to_user((char __user
*)kmem
, bad_usermem
,
83 "illegal reversed copy_to_user passed");
84 ret
|= test(!get_user(value
, (unsigned long __user
*)kmem
),
85 "illegal get_user passed");
86 ret
|= test(!put_user(value
, (unsigned long __user
*)kmem
),
87 "illegal put_user passed");
89 vm_munmap(user_addr
, PAGE_SIZE
* 2);
93 pr_info("tests passed.\n");
100 module_init(test_user_copy_init
);
102 static void __exit
test_user_copy_exit(void)
104 pr_info("unloaded.\n");
107 module_exit(test_user_copy_exit
);
109 MODULE_AUTHOR("Kees Cook <keescook@chromium.org>");
110 MODULE_LICENSE("GPL");