提交 e47e3118 编写于 作者: K Kees Cook

lkdtm: Update usercopy tests for whitelisting

This updates the USERCOPY_HEAP_FLAG_* tests to USERCOPY_HEAP_WHITELIST_*,
since the final form of usercopy whitelisting ended up using an offset/size
window instead of the earlier proposed allocation flags.
Signed-off-by: NKees Cook <keescook@chromium.org>
上级 6d07d1cd
...@@ -76,8 +76,8 @@ void __init lkdtm_usercopy_init(void); ...@@ -76,8 +76,8 @@ void __init lkdtm_usercopy_init(void);
void __exit lkdtm_usercopy_exit(void); void __exit lkdtm_usercopy_exit(void);
void lkdtm_USERCOPY_HEAP_SIZE_TO(void); void lkdtm_USERCOPY_HEAP_SIZE_TO(void);
void lkdtm_USERCOPY_HEAP_SIZE_FROM(void); void lkdtm_USERCOPY_HEAP_SIZE_FROM(void);
void lkdtm_USERCOPY_HEAP_FLAG_TO(void); void lkdtm_USERCOPY_HEAP_WHITELIST_TO(void);
void lkdtm_USERCOPY_HEAP_FLAG_FROM(void); void lkdtm_USERCOPY_HEAP_WHITELIST_FROM(void);
void lkdtm_USERCOPY_STACK_FRAME_TO(void); void lkdtm_USERCOPY_STACK_FRAME_TO(void);
void lkdtm_USERCOPY_STACK_FRAME_FROM(void); void lkdtm_USERCOPY_STACK_FRAME_FROM(void);
void lkdtm_USERCOPY_STACK_BEYOND(void); void lkdtm_USERCOPY_STACK_BEYOND(void);
......
...@@ -177,8 +177,8 @@ static const struct crashtype crashtypes[] = { ...@@ -177,8 +177,8 @@ static const struct crashtype crashtypes[] = {
CRASHTYPE(ATOMIC_TIMING), CRASHTYPE(ATOMIC_TIMING),
CRASHTYPE(USERCOPY_HEAP_SIZE_TO), CRASHTYPE(USERCOPY_HEAP_SIZE_TO),
CRASHTYPE(USERCOPY_HEAP_SIZE_FROM), CRASHTYPE(USERCOPY_HEAP_SIZE_FROM),
CRASHTYPE(USERCOPY_HEAP_FLAG_TO), CRASHTYPE(USERCOPY_HEAP_WHITELIST_TO),
CRASHTYPE(USERCOPY_HEAP_FLAG_FROM), CRASHTYPE(USERCOPY_HEAP_WHITELIST_FROM),
CRASHTYPE(USERCOPY_STACK_FRAME_TO), CRASHTYPE(USERCOPY_STACK_FRAME_TO),
CRASHTYPE(USERCOPY_STACK_FRAME_FROM), CRASHTYPE(USERCOPY_STACK_FRAME_FROM),
CRASHTYPE(USERCOPY_STACK_BEYOND), CRASHTYPE(USERCOPY_STACK_BEYOND),
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
*/ */
static volatile size_t unconst = 0; static volatile size_t unconst = 0;
static volatile size_t cache_size = 1024; static volatile size_t cache_size = 1024;
static struct kmem_cache *bad_cache; static struct kmem_cache *whitelist_cache;
static const unsigned char test_text[] = "This is a test.\n"; static const unsigned char test_text[] = "This is a test.\n";
...@@ -115,6 +115,10 @@ static noinline void do_usercopy_stack(bool to_user, bool bad_frame) ...@@ -115,6 +115,10 @@ static noinline void do_usercopy_stack(bool to_user, bool bad_frame)
vm_munmap(user_addr, PAGE_SIZE); vm_munmap(user_addr, PAGE_SIZE);
} }
/*
* This checks for whole-object size validation with hardened usercopy,
* with or without usercopy whitelisting.
*/
static void do_usercopy_heap_size(bool to_user) static void do_usercopy_heap_size(bool to_user)
{ {
unsigned long user_addr; unsigned long user_addr;
...@@ -177,77 +181,79 @@ static void do_usercopy_heap_size(bool to_user) ...@@ -177,77 +181,79 @@ static void do_usercopy_heap_size(bool to_user)
kfree(two); kfree(two);
} }
static void do_usercopy_heap_flag(bool to_user) /*
* This checks for the specific whitelist window within an object. If this
* test passes, then do_usercopy_heap_size() tests will pass too.
*/
static void do_usercopy_heap_whitelist(bool to_user)
{ {
unsigned long user_addr; unsigned long user_alloc;
unsigned char *good_buf = NULL; unsigned char *buf = NULL;
unsigned char *bad_buf = NULL; unsigned char __user *user_addr;
size_t offset, size;
/* Make sure cache was prepared. */ /* Make sure cache was prepared. */
if (!bad_cache) { if (!whitelist_cache) {
pr_warn("Failed to allocate kernel cache\n"); pr_warn("Failed to allocate kernel cache\n");
return; return;
} }
/* /*
* Allocate one buffer from each cache (kmalloc will have the * Allocate a buffer with a whitelisted window in the buffer.
* SLAB_USERCOPY flag already, but "bad_cache" won't).
*/ */
good_buf = kmalloc(cache_size, GFP_KERNEL); buf = kmem_cache_alloc(whitelist_cache, GFP_KERNEL);
bad_buf = kmem_cache_alloc(bad_cache, GFP_KERNEL); if (!buf) {
if (!good_buf || !bad_buf) { pr_warn("Failed to allocate buffer from whitelist cache\n");
pr_warn("Failed to allocate buffers from caches\n");
goto free_alloc; goto free_alloc;
} }
/* Allocate user memory we'll poke at. */ /* Allocate user memory we'll poke at. */
user_addr = vm_mmap(NULL, 0, PAGE_SIZE, user_alloc = vm_mmap(NULL, 0, PAGE_SIZE,
PROT_READ | PROT_WRITE | PROT_EXEC, PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_ANONYMOUS | MAP_PRIVATE, 0); MAP_ANONYMOUS | MAP_PRIVATE, 0);
if (user_addr >= TASK_SIZE) { if (user_alloc >= TASK_SIZE) {
pr_warn("Failed to allocate user memory\n"); pr_warn("Failed to allocate user memory\n");
goto free_alloc; goto free_alloc;
} }
user_addr = (void __user *)user_alloc;
memset(good_buf, 'A', cache_size); memset(buf, 'B', cache_size);
memset(bad_buf, 'B', cache_size);
/* Whitelisted window in buffer, from kmem_cache_create_usercopy. */
offset = (cache_size / 4) + unconst;
size = (cache_size / 16) + unconst;
if (to_user) { if (to_user) {
pr_info("attempting good copy_to_user with SLAB_USERCOPY\n"); pr_info("attempting good copy_to_user inside whitelist\n");
if (copy_to_user((void __user *)user_addr, good_buf, if (copy_to_user(user_addr, buf + offset, size)) {
cache_size)) {
pr_warn("copy_to_user failed unexpectedly?!\n"); pr_warn("copy_to_user failed unexpectedly?!\n");
goto free_user; goto free_user;
} }
pr_info("attempting bad copy_to_user w/o SLAB_USERCOPY\n"); pr_info("attempting bad copy_to_user outside whitelist\n");
if (copy_to_user((void __user *)user_addr, bad_buf, if (copy_to_user(user_addr, buf + offset - 1, size)) {
cache_size)) {
pr_warn("copy_to_user failed, but lacked Oops\n"); pr_warn("copy_to_user failed, but lacked Oops\n");
goto free_user; goto free_user;
} }
} else { } else {
pr_info("attempting good copy_from_user with SLAB_USERCOPY\n"); pr_info("attempting good copy_from_user inside whitelist\n");
if (copy_from_user(good_buf, (void __user *)user_addr, if (copy_from_user(buf + offset, user_addr, size)) {
cache_size)) {
pr_warn("copy_from_user failed unexpectedly?!\n"); pr_warn("copy_from_user failed unexpectedly?!\n");
goto free_user; goto free_user;
} }
pr_info("attempting bad copy_from_user w/o SLAB_USERCOPY\n"); pr_info("attempting bad copy_from_user outside whitelist\n");
if (copy_from_user(bad_buf, (void __user *)user_addr, if (copy_from_user(buf + offset - 1, user_addr, size)) {
cache_size)) {
pr_warn("copy_from_user failed, but lacked Oops\n"); pr_warn("copy_from_user failed, but lacked Oops\n");
goto free_user; goto free_user;
} }
} }
free_user: free_user:
vm_munmap(user_addr, PAGE_SIZE); vm_munmap(user_alloc, PAGE_SIZE);
free_alloc: free_alloc:
if (bad_buf) if (buf)
kmem_cache_free(bad_cache, bad_buf); kmem_cache_free(whitelist_cache, buf);
kfree(good_buf);
} }
/* Callable tests. */ /* Callable tests. */
...@@ -261,14 +267,14 @@ void lkdtm_USERCOPY_HEAP_SIZE_FROM(void) ...@@ -261,14 +267,14 @@ void lkdtm_USERCOPY_HEAP_SIZE_FROM(void)
do_usercopy_heap_size(false); do_usercopy_heap_size(false);
} }
void lkdtm_USERCOPY_HEAP_FLAG_TO(void) void lkdtm_USERCOPY_HEAP_WHITELIST_TO(void)
{ {
do_usercopy_heap_flag(true); do_usercopy_heap_whitelist(true);
} }
void lkdtm_USERCOPY_HEAP_FLAG_FROM(void) void lkdtm_USERCOPY_HEAP_WHITELIST_FROM(void)
{ {
do_usercopy_heap_flag(false); do_usercopy_heap_whitelist(false);
} }
void lkdtm_USERCOPY_STACK_FRAME_TO(void) void lkdtm_USERCOPY_STACK_FRAME_TO(void)
...@@ -319,11 +325,15 @@ void lkdtm_USERCOPY_KERNEL(void) ...@@ -319,11 +325,15 @@ void lkdtm_USERCOPY_KERNEL(void)
void __init lkdtm_usercopy_init(void) void __init lkdtm_usercopy_init(void)
{ {
/* Prepare cache that lacks SLAB_USERCOPY flag. */ /* Prepare cache that lacks SLAB_USERCOPY flag. */
bad_cache = kmem_cache_create("lkdtm-no-usercopy", cache_size, 0, whitelist_cache =
0, NULL); kmem_cache_create_usercopy("lkdtm-usercopy", cache_size,
0, 0,
cache_size / 4,
cache_size / 16,
NULL);
} }
void __exit lkdtm_usercopy_exit(void) void __exit lkdtm_usercopy_exit(void)
{ {
kmem_cache_destroy(bad_cache); kmem_cache_destroy(whitelist_cache);
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册