Message ID | 20180228200620.30026-6-igor.stoppa@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Igor, Thank you for the patch! Yet something to improve: [auto build test ERROR on next-20180223] [cannot apply to linus/master mmotm/master char-misc/char-misc-testing v4.16-rc3 v4.16-rc2 v4.16-rc1 v4.16-rc3] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Igor-Stoppa/mm-security-ro-protection-for-dynamic-data/20180302-232215 config: arm-allmodconfig (attached as .config) compiler: arm-linux-gnueabi-gcc (Debian 7.2.0-11) 7.2.0 reproduce: wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # save the attached .config to linux build tree make.cross ARCH=arm All errors (new ones prefixed by >>): mm/test_pmalloc.c: In function 'test_pmalloc': >> mm/test_pmalloc.c:52:14: error: implicit declaration of function 'vmalloc'; did you mean 'kvmalloc'? [-Werror=implicit-function-declaration] var_vmall = vmalloc(SIZE_2); ^~~~~~~ kvmalloc mm/test_pmalloc.c:52:12: warning: assignment makes pointer from integer without a cast [-Wint-conversion] var_vmall = vmalloc(SIZE_2); ^ >> mm/test_pmalloc.c:64:2: error: implicit declaration of function 'vfree'; did you mean 'kvfree'? [-Werror=implicit-function-declaration] vfree(var_vmall); ^~~~~ kvfree cc1: some warnings being treated as errors vim +52 mm/test_pmalloc.c 27 28 #define is_alloc_ok(variable, size) \ 29 validate_alloc(true, variable, size) 30 31 #define is_alloc_no(variable, size) \ 32 validate_alloc(false, variable, size) 33 34 void test_pmalloc(void) 35 { 36 struct gen_pool *pool_unprot; 37 struct gen_pool *pool_prot; 38 void *var_prot, *var_unprot, *var_vmall; 39 40 pr_notice("pmalloc-selftest"); 41 pool_unprot = pmalloc_create_pool("unprotected", 0); 42 if (unlikely(!pool_unprot)) 43 goto error; 44 pool_prot = pmalloc_create_pool("protected", 0); 45 if (unlikely(!(pool_prot))) 46 goto error_release; 47 48 pr_notice("Testing allocation capability"); 49 var_unprot = pmalloc(pool_unprot, SIZE_1 - 1, GFP_KERNEL); 50 var_prot = pmalloc(pool_prot, SIZE_1, GFP_KERNEL); 51 *(int *)var_prot = 0; > 52 var_vmall = vmalloc(SIZE_2); 53 54 55 pr_notice("Test correctness of is_pmalloc_object()"); 56 WARN_ON(unlikely(!is_alloc_ok(var_unprot, 10))); 57 WARN_ON(unlikely(!is_alloc_ok(var_unprot, SIZE_1))); 58 WARN_ON(unlikely(!is_alloc_ok(var_unprot, PAGE_SIZE))); 59 WARN_ON(unlikely(!is_alloc_no(var_unprot, SIZE_1 + 1))); 60 WARN_ON(unlikely(!is_alloc_no(var_vmall, 10))); 61 62 63 pfree(pool_unprot, var_unprot); > 64 vfree(var_vmall); --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
Looks good, and a bit more thorough test than last iteration. Reviewed-by: Jay Freyensee <why2jjj.linux@gmail.com> On 2/28/18 12:06 PM, Igor Stoppa wrote: > Add basic self-test functionality for pmalloc. > > The testing is introduced as early as possible, right after the main > dependency, genalloc, has passed successfully, so that it can help > diagnosing failures in pmalloc users. > > Signed-off-by: Igor Stoppa <igor.stoppa@huawei.com> > --- > include/linux/test_pmalloc.h | 24 +++++++++++ > init/main.c | 2 + > mm/Kconfig | 10 +++++ > mm/Makefile | 1 + > mm/test_pmalloc.c | 100 +++++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 137 insertions(+) > create mode 100644 include/linux/test_pmalloc.h > create mode 100644 mm/test_pmalloc.c > > diff --git a/include/linux/test_pmalloc.h b/include/linux/test_pmalloc.h > new file mode 100644 > index 000000000000..c7e2e451c17c > --- /dev/null > +++ b/include/linux/test_pmalloc.h > @@ -0,0 +1,24 @@ > +/* SPDX-License-Identifier: GPL-2.0 */ > +/* > + * test_pmalloc.h > + * > + * (C) Copyright 2018 Huawei Technologies Co. Ltd. > + * Author: Igor Stoppa <igor.stoppa@huawei.com> > + */ > + > + > +#ifndef __LINUX_TEST_PMALLOC_H > +#define __LINUX_TEST_PMALLOC_H > + > + > +#ifdef CONFIG_TEST_PROTECTABLE_MEMORY > + > +void test_pmalloc(void); > + > +#else > + > +static inline void test_pmalloc(void){}; > + > +#endif > + > +#endif > diff --git a/init/main.c b/init/main.c > index 2bf1312fd2fe..ea44c940070a 100644 > --- a/init/main.c > +++ b/init/main.c > @@ -91,6 +91,7 @@ > #include <linux/rodata_test.h> > #include <linux/jump_label.h> > #include <linux/test_genalloc.h> > +#include <linux/test_pmalloc.h> > > #include <asm/io.h> > #include <asm/bugs.h> > @@ -663,6 +664,7 @@ asmlinkage __visible void __init start_kernel(void) > mem_encrypt_init(); > > test_genalloc(); > + test_pmalloc(); > #ifdef CONFIG_BLK_DEV_INITRD > if (initrd_start && !initrd_below_start_ok && > page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) { > diff --git a/mm/Kconfig b/mm/Kconfig > index 016d29b9400b..47b0843b02d2 100644 > --- a/mm/Kconfig > +++ b/mm/Kconfig > @@ -767,3 +767,13 @@ config PROTECTABLE_MEMORY > depends on ARCH_HAS_SET_MEMORY > select GENERIC_ALLOCATOR > default y > + > +config TEST_PROTECTABLE_MEMORY > + bool "Run self test for pmalloc memory allocator" > + depends on MMU > + depends on ARCH_HAS_SET_MEMORY > + select PROTECTABLE_MEMORY > + default n > + help > + Tries to verify that pmalloc works correctly and that the memory > + is effectively protected. > diff --git a/mm/Makefile b/mm/Makefile > index 959fdbdac118..1de4be5fd0bc 100644 > --- a/mm/Makefile > +++ b/mm/Makefile > @@ -66,6 +66,7 @@ obj-$(CONFIG_SPARSEMEM_VMEMMAP) += sparse-vmemmap.o > obj-$(CONFIG_SLOB) += slob.o > obj-$(CONFIG_MMU_NOTIFIER) += mmu_notifier.o > obj-$(CONFIG_PROTECTABLE_MEMORY) += pmalloc.o > +obj-$(CONFIG_TEST_PROTECTABLE_MEMORY) += test_pmalloc.o > obj-$(CONFIG_KSM) += ksm.o > obj-$(CONFIG_PAGE_POISONING) += page_poison.o > obj-$(CONFIG_SLAB) += slab.o > diff --git a/mm/test_pmalloc.c b/mm/test_pmalloc.c > new file mode 100644 > index 000000000000..df7ecc91c6a4 > --- /dev/null > +++ b/mm/test_pmalloc.c > @@ -0,0 +1,100 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * test_pmalloc.c > + * > + * (C) Copyright 2018 Huawei Technologies Co. Ltd. > + * Author: Igor Stoppa <igor.stoppa@huawei.com> > + */ > + > +#include <linux/pmalloc.h> > +#include <linux/mm.h> > +#include <linux/test_pmalloc.h> > +#include <linux/bug.h> > + > +#define SIZE_1 (PAGE_SIZE * 3) > +#define SIZE_2 1000 > + > +static inline bool validate_alloc(bool expected, void *addr, > + unsigned long size) > +{ > + bool test; > + > + test = is_pmalloc_object(addr, size) > 0; > + pr_notice("must be %s: %s", > + expected ? "ok" : "no", test ? "ok" : "no"); > + return test == expected; > +} > + > +#define is_alloc_ok(variable, size) \ > + validate_alloc(true, variable, size) > + > +#define is_alloc_no(variable, size) \ > + validate_alloc(false, variable, size) > + > +void test_pmalloc(void) > +{ > + struct gen_pool *pool_unprot; > + struct gen_pool *pool_prot; > + void *var_prot, *var_unprot, *var_vmall; > + > + pr_notice("pmalloc-selftest"); > + pool_unprot = pmalloc_create_pool("unprotected", 0); > + if (unlikely(!pool_unprot)) > + goto error; > + pool_prot = pmalloc_create_pool("protected", 0); > + if (unlikely(!(pool_prot))) > + goto error_release; > + > + pr_notice("Testing allocation capability"); > + var_unprot = pmalloc(pool_unprot, SIZE_1 - 1, GFP_KERNEL); > + var_prot = pmalloc(pool_prot, SIZE_1, GFP_KERNEL); > + *(int *)var_prot = 0; > + var_vmall = vmalloc(SIZE_2); > + > + > + pr_notice("Test correctness of is_pmalloc_object()"); > + WARN_ON(unlikely(!is_alloc_ok(var_unprot, 10))); > + WARN_ON(unlikely(!is_alloc_ok(var_unprot, SIZE_1))); > + WARN_ON(unlikely(!is_alloc_ok(var_unprot, PAGE_SIZE))); > + WARN_ON(unlikely(!is_alloc_no(var_unprot, SIZE_1 + 1))); > + WARN_ON(unlikely(!is_alloc_no(var_vmall, 10))); > + > + > + pfree(pool_unprot, var_unprot); > + vfree(var_vmall); > + > + pmalloc_protect_pool(pool_prot); > + > + /* > + * This will intentionally trigger a WARN, because the pool being > + * allocated from is already protected. > + */ > + pr_notice("Test allocation from a protected pool." > + "Expect WARN in pmalloc"); > + if (unlikely(pmalloc(pool_prot, 10, GFP_KERNEL))) > + WARN(true, "no memory from a protected pool"); > + > + /* > + * This will intentionally trigger a WARN because the pool being > + * destroyed is not protected, which is unusual and should happen > + * on error paths only, where probably other warnings are already > + * displayed. > + */ > + pr_notice("pmalloc-selftest:" > + " Expect WARN in pmalloc_pool_set_protection below."); > + pmalloc_destroy_pool(pool_unprot); > + pr_notice("pmalloc-selftest:" > + "Critical point for expected WARN passed."); > + > + /* This must not cause WARNings */ > + pr_notice("pmalloc-selftest:" > + "Expect no WARN below."); > + pmalloc_destroy_pool(pool_prot); > + pr_notice("pmalloc-selftest:" > + "Critical point for unexpected WARN passed."); > + return; > +error_release: > + pmalloc_destroy_pool(pool_unprot); > +error: > + WARN(true, "Unable to allocate memory for pmalloc selftest."); > +}
diff --git a/include/linux/test_pmalloc.h b/include/linux/test_pmalloc.h new file mode 100644 index 000000000000..c7e2e451c17c --- /dev/null +++ b/include/linux/test_pmalloc.h @@ -0,0 +1,24 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * test_pmalloc.h + * + * (C) Copyright 2018 Huawei Technologies Co. Ltd. + * Author: Igor Stoppa <igor.stoppa@huawei.com> + */ + + +#ifndef __LINUX_TEST_PMALLOC_H +#define __LINUX_TEST_PMALLOC_H + + +#ifdef CONFIG_TEST_PROTECTABLE_MEMORY + +void test_pmalloc(void); + +#else + +static inline void test_pmalloc(void){}; + +#endif + +#endif diff --git a/init/main.c b/init/main.c index 2bf1312fd2fe..ea44c940070a 100644 --- a/init/main.c +++ b/init/main.c @@ -91,6 +91,7 @@ #include <linux/rodata_test.h> #include <linux/jump_label.h> #include <linux/test_genalloc.h> +#include <linux/test_pmalloc.h> #include <asm/io.h> #include <asm/bugs.h> @@ -663,6 +664,7 @@ asmlinkage __visible void __init start_kernel(void) mem_encrypt_init(); test_genalloc(); + test_pmalloc(); #ifdef CONFIG_BLK_DEV_INITRD if (initrd_start && !initrd_below_start_ok && page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) { diff --git a/mm/Kconfig b/mm/Kconfig index 016d29b9400b..47b0843b02d2 100644 --- a/mm/Kconfig +++ b/mm/Kconfig @@ -767,3 +767,13 @@ config PROTECTABLE_MEMORY depends on ARCH_HAS_SET_MEMORY select GENERIC_ALLOCATOR default y + +config TEST_PROTECTABLE_MEMORY + bool "Run self test for pmalloc memory allocator" + depends on MMU + depends on ARCH_HAS_SET_MEMORY + select PROTECTABLE_MEMORY + default n + help + Tries to verify that pmalloc works correctly and that the memory + is effectively protected. diff --git a/mm/Makefile b/mm/Makefile index 959fdbdac118..1de4be5fd0bc 100644 --- a/mm/Makefile +++ b/mm/Makefile @@ -66,6 +66,7 @@ obj-$(CONFIG_SPARSEMEM_VMEMMAP) += sparse-vmemmap.o obj-$(CONFIG_SLOB) += slob.o obj-$(CONFIG_MMU_NOTIFIER) += mmu_notifier.o obj-$(CONFIG_PROTECTABLE_MEMORY) += pmalloc.o +obj-$(CONFIG_TEST_PROTECTABLE_MEMORY) += test_pmalloc.o obj-$(CONFIG_KSM) += ksm.o obj-$(CONFIG_PAGE_POISONING) += page_poison.o obj-$(CONFIG_SLAB) += slab.o diff --git a/mm/test_pmalloc.c b/mm/test_pmalloc.c new file mode 100644 index 000000000000..df7ecc91c6a4 --- /dev/null +++ b/mm/test_pmalloc.c @@ -0,0 +1,100 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * test_pmalloc.c + * + * (C) Copyright 2018 Huawei Technologies Co. Ltd. + * Author: Igor Stoppa <igor.stoppa@huawei.com> + */ + +#include <linux/pmalloc.h> +#include <linux/mm.h> +#include <linux/test_pmalloc.h> +#include <linux/bug.h> + +#define SIZE_1 (PAGE_SIZE * 3) +#define SIZE_2 1000 + +static inline bool validate_alloc(bool expected, void *addr, + unsigned long size) +{ + bool test; + + test = is_pmalloc_object(addr, size) > 0; + pr_notice("must be %s: %s", + expected ? "ok" : "no", test ? "ok" : "no"); + return test == expected; +} + +#define is_alloc_ok(variable, size) \ + validate_alloc(true, variable, size) + +#define is_alloc_no(variable, size) \ + validate_alloc(false, variable, size) + +void test_pmalloc(void) +{ + struct gen_pool *pool_unprot; + struct gen_pool *pool_prot; + void *var_prot, *var_unprot, *var_vmall; + + pr_notice("pmalloc-selftest"); + pool_unprot = pmalloc_create_pool("unprotected", 0); + if (unlikely(!pool_unprot)) + goto error; + pool_prot = pmalloc_create_pool("protected", 0); + if (unlikely(!(pool_prot))) + goto error_release; + + pr_notice("Testing allocation capability"); + var_unprot = pmalloc(pool_unprot, SIZE_1 - 1, GFP_KERNEL); + var_prot = pmalloc(pool_prot, SIZE_1, GFP_KERNEL); + *(int *)var_prot = 0; + var_vmall = vmalloc(SIZE_2); + + + pr_notice("Test correctness of is_pmalloc_object()"); + WARN_ON(unlikely(!is_alloc_ok(var_unprot, 10))); + WARN_ON(unlikely(!is_alloc_ok(var_unprot, SIZE_1))); + WARN_ON(unlikely(!is_alloc_ok(var_unprot, PAGE_SIZE))); + WARN_ON(unlikely(!is_alloc_no(var_unprot, SIZE_1 + 1))); + WARN_ON(unlikely(!is_alloc_no(var_vmall, 10))); + + + pfree(pool_unprot, var_unprot); + vfree(var_vmall); + + pmalloc_protect_pool(pool_prot); + + /* + * This will intentionally trigger a WARN, because the pool being + * allocated from is already protected. + */ + pr_notice("Test allocation from a protected pool." + "Expect WARN in pmalloc"); + if (unlikely(pmalloc(pool_prot, 10, GFP_KERNEL))) + WARN(true, "no memory from a protected pool"); + + /* + * This will intentionally trigger a WARN because the pool being + * destroyed is not protected, which is unusual and should happen + * on error paths only, where probably other warnings are already + * displayed. + */ + pr_notice("pmalloc-selftest:" + " Expect WARN in pmalloc_pool_set_protection below."); + pmalloc_destroy_pool(pool_unprot); + pr_notice("pmalloc-selftest:" + "Critical point for expected WARN passed."); + + /* This must not cause WARNings */ + pr_notice("pmalloc-selftest:" + "Expect no WARN below."); + pmalloc_destroy_pool(pool_prot); + pr_notice("pmalloc-selftest:" + "Critical point for unexpected WARN passed."); + return; +error_release: + pmalloc_destroy_pool(pool_unprot); +error: + WARN(true, "Unable to allocate memory for pmalloc selftest."); +}
Add basic self-test functionality for pmalloc. The testing is introduced as early as possible, right after the main dependency, genalloc, has passed successfully, so that it can help diagnosing failures in pmalloc users. Signed-off-by: Igor Stoppa <igor.stoppa@huawei.com> --- include/linux/test_pmalloc.h | 24 +++++++++++ init/main.c | 2 + mm/Kconfig | 10 +++++ mm/Makefile | 1 + mm/test_pmalloc.c | 100 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 137 insertions(+) create mode 100644 include/linux/test_pmalloc.h create mode 100644 mm/test_pmalloc.c