mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
usercopy: Restrict non-usercopy caches to size 0
With all known usercopied cache whitelists now defined in the kernel, switch the default usercopy region of kmem_cache_create() to size 0. Any new caches with usercopy regions will now need to use kmem_cache_create_usercopy() instead of kmem_cache_create(). This patch is modified from Brad Spengler/PaX Team's PAX_USERCOPY whitelisting code in the last public patch of grsecurity/PaX based on my understanding of the code. Changes or omissions from the original code are mine and don't reflect the original grsecurity/PaX code. Cc: David Windsor <dave@nullcore.net> Cc: Christoph Lameter <cl@linux.com> Cc: Pekka Enberg <penberg@kernel.org> Cc: David Rientjes <rientjes@google.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: linux-mm@kvack.org Signed-off-by: Kees Cook <keescook@chromium.org>
This commit is contained in:
parent
51776043af
commit
6d07d1cd30
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ struct kmem_cache *
|
||||||
kmem_cache_create(const char *name, size_t size, size_t align,
|
kmem_cache_create(const char *name, size_t size, size_t align,
|
||||||
slab_flags_t flags, void (*ctor)(void *))
|
slab_flags_t flags, void (*ctor)(void *))
|
||||||
{
|
{
|
||||||
return kmem_cache_create_usercopy(name, size, align, flags, 0, size,
|
return kmem_cache_create_usercopy(name, size, align, flags, 0, 0,
|
||||||
ctor);
|
ctor);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(kmem_cache_create);
|
EXPORT_SYMBOL(kmem_cache_create);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue