lkdtm: use function_nocfi
authorSami Tolvanen <samitolvanen@google.com>
Thu, 8 Apr 2021 18:28:35 +0000 (11:28 -0700)
committerKees Cook <keescook@chromium.org>
Thu, 8 Apr 2021 23:04:22 +0000 (16:04 -0700)
To ensure we take the actual address of a function in kernel text,
use function_nocfi. Otherwise, with CONFIG_CFI_CLANG, the compiler
replaces the address with a pointer to the CFI jump table, which is
actually in the module when compiled with CONFIG_LKDTM=m.

Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
Acked-by: Kees Cook <keescook@chromium.org>
Tested-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20210408182843.1754385-11-samitolvanen@google.com
drivers/misc/lkdtm/usercopy.c

index 109e8d4302c11332decb0334c55854fa8b390a01..15d220ef35a5695194cf5a212bd166ef2c6f7544 100644 (file)
@@ -314,7 +314,7 @@ void lkdtm_USERCOPY_KERNEL(void)
 
        pr_info("attempting bad copy_to_user from kernel text: %px\n",
                vm_mmap);
-       if (copy_to_user((void __user *)user_addr, vm_mmap,
+       if (copy_to_user((void __user *)user_addr, function_nocfi(vm_mmap),
                         unconst + PAGE_SIZE)) {
                pr_warn("copy_to_user failed, but lacked Oops\n");
                goto free_user;