From patchwork Fri May 17 00:50:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kees Cook X-Patchwork-Id: 10947195 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A58A676 for ; Fri, 17 May 2019 00:50:39 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 920C81FFE6 for ; Fri, 17 May 2019 00:50:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7FE9A1FFFE; Fri, 17 May 2019 00:50:39 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.3 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from mother.openwall.net (mother.openwall.net [195.42.179.200]) by mail.wl.linuxfoundation.org (Postfix) with SMTP id 62E131FFE6 for ; Fri, 17 May 2019 00:50:38 +0000 (UTC) Received: (qmail 22144 invoked by uid 550); 17 May 2019 00:50:37 -0000 Mailing-List: contact kernel-hardening-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Delivered-To: mailing list kernel-hardening@lists.openwall.com Received: (qmail 22126 invoked from network); 17 May 2019 00:50:36 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=date:from:to:cc:subject:message-id:mime-version:content-disposition :in-reply-to; bh=NL+2xCgkdZjiZqCBPfjZBo7z+6ErcBZumRMPeJ0EeFQ=; b=CSOy8X4is2wKO5Rx00RuxmgXP2xZ/JC0zjufsNKTddwrxwO2WKPgOuXTHfERCHP17t /NQWFMlmPsBYSh7Egh8kIVJpTxtTFcLIzeZM2jDOqcOiXqopm11/OjGDq01Su5EXxkTb 1ghHfV+1HedbTD3CkcfjioeNBQtpo4hTUV65U= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-disposition:in-reply-to; bh=NL+2xCgkdZjiZqCBPfjZBo7z+6ErcBZumRMPeJ0EeFQ=; b=FE1ULKhbIAoLveAwipU0brJO/V8T6FWEjtnZ8Kpt5lsisPSUC1KfKGHw5GDvZufRtb Bl/lJrGRxCDn5inZPhVIeIqDcs/XcIZU5/jAd0gViBZLN5457r+QrUZRJEkePR055WtM NcG0MjoegEmSQpgxkRZF7SAoxD5pIwbwNC6mEW+C3Njn6GV8oDMXNaJcxgAol2ofH2nT KTAVqajLO3wxWWlaxVnFABRNEaAWye6S4B8AGhFJEmTDexrr9LpXJrfKS/JChxKjSNVn uvS5usPAMMCCtTSgxLn2aj/UGdlKvJq2df9uPZTcucQuPcO6urJB0EHDE6+s/WhOLHzM v+eA== X-Gm-Message-State: APjAAAU+jIR15vBBOIyrOeuAZDBq3qfTbgQXdsMWHb88T7I5gTJlLxLO 2e+1YT+XPUaHk+vc/gAwKWcOdA== X-Google-Smtp-Source: APXvYqybqaQ0dXdhVwgFoK8fD+r7lJjBN2v7ErsEC2WUSyLWan6WZ1LYFWJpqOYM54Zi1kkADEi3gw== X-Received: by 2002:a63:fb02:: with SMTP id o2mr52230505pgh.357.1558054224431; Thu, 16 May 2019 17:50:24 -0700 (PDT) Date: Thu, 16 May 2019 17:50:22 -0700 From: Kees Cook To: Alexander Potapenko Cc: akpm@linux-foundation.org, cl@linux.com, kernel-hardening@lists.openwall.com, Masahiro Yamada , James Morris , "Serge E. Hallyn" , Nick Desaulniers , Kostya Serebryany , Dmitry Vyukov , Sandeep Patil , Laura Abbott , Randy Dunlap , Jann Horn , Mark Rutland , linux-mm@kvack.org, linux-security-module@vger.kernel.org Subject: [PATCH 5/4] mm: Introduce SLAB_NO_FREE_INIT and mark excluded caches Message-ID: <201905161746.16E885F@keescook> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20190514143537.10435-5-glider@google.com> X-Virus-Scanned: ClamAV using ClamSMTP In order to improve the init_on_free performance, some frequently freed caches with less sensitive contents can be excluded from the init_on_free behavior. This patch is modified from Brad Spengler/PaX Team's 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. Signed-off-by: Kees Cook --- fs/buffer.c | 2 +- fs/dcache.c | 3 ++- include/linux/slab.h | 3 +++ kernel/fork.c | 6 ++++-- mm/rmap.c | 5 +++-- mm/slab.h | 5 +++-- net/core/skbuff.c | 6 ++++-- 7 files changed, 20 insertions(+), 10 deletions(-) diff --git a/fs/buffer.c b/fs/buffer.c index 0faa41fb4c88..04a85bd4cf2e 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -3457,7 +3457,7 @@ void __init buffer_init(void) bh_cachep = kmem_cache_create("buffer_head", sizeof(struct buffer_head), 0, (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC| - SLAB_MEM_SPREAD), + SLAB_MEM_SPREAD|SLAB_NO_FREE_INIT), NULL); /* diff --git a/fs/dcache.c b/fs/dcache.c index 8136bda27a1f..323b039accba 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -3139,7 +3139,8 @@ void __init vfs_caches_init_early(void) void __init vfs_caches_init(void) { names_cachep = kmem_cache_create_usercopy("names_cache", PATH_MAX, 0, - SLAB_HWCACHE_ALIGN|SLAB_PANIC, 0, PATH_MAX, NULL); + SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NO_FREE_INIT, 0, + PATH_MAX, NULL); dcache_init(); inode_init(); diff --git a/include/linux/slab.h b/include/linux/slab.h index 9449b19c5f10..7eba9ad8830d 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h @@ -92,6 +92,9 @@ /* Avoid kmemleak tracing */ #define SLAB_NOLEAKTRACE ((slab_flags_t __force)0x00800000U) +/* Exclude slab from zero-on-free when init_on_free is enabled */ +#define SLAB_NO_FREE_INIT ((slab_flags_t __force)0x01000000U) + /* Fault injection mark */ #ifdef CONFIG_FAILSLAB # define SLAB_FAILSLAB ((slab_flags_t __force)0x02000000U) diff --git a/kernel/fork.c b/kernel/fork.c index b4cba953040a..9868585f5520 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -2550,11 +2550,13 @@ void __init proc_caches_init(void) mm_cachep = kmem_cache_create_usercopy("mm_struct", mm_size, ARCH_MIN_MMSTRUCT_ALIGN, - SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, + SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT| + SLAB_NO_FREE_INIT, offsetof(struct mm_struct, saved_auxv), sizeof_field(struct mm_struct, saved_auxv), NULL); - vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT); + vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT| + SLAB_NO_FREE_INIT); mmap_init(); nsproxy_cache_init(); } diff --git a/mm/rmap.c b/mm/rmap.c index e5dfe2ae6b0d..b7b8013eeb0a 100644 --- a/mm/rmap.c +++ b/mm/rmap.c @@ -432,10 +432,11 @@ static void anon_vma_ctor(void *data) void __init anon_vma_init(void) { anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma), - 0, SLAB_TYPESAFE_BY_RCU|SLAB_PANIC|SLAB_ACCOUNT, + 0, SLAB_TYPESAFE_BY_RCU|SLAB_PANIC|SLAB_ACCOUNT| + SLAB_NO_FREE_INIT, anon_vma_ctor); anon_vma_chain_cachep = KMEM_CACHE(anon_vma_chain, - SLAB_PANIC|SLAB_ACCOUNT); + SLAB_PANIC|SLAB_ACCOUNT|SLAB_NO_FREE_INIT); } /* diff --git a/mm/slab.h b/mm/slab.h index 24ae887359b8..f95b4f03c57b 100644 --- a/mm/slab.h +++ b/mm/slab.h @@ -129,7 +129,8 @@ static inline slab_flags_t kmem_cache_flags(unsigned int object_size, /* Legal flag mask for kmem_cache_create(), for various configurations */ #define SLAB_CORE_FLAGS (SLAB_HWCACHE_ALIGN | SLAB_CACHE_DMA | \ SLAB_CACHE_DMA32 | SLAB_PANIC | \ - SLAB_TYPESAFE_BY_RCU | SLAB_DEBUG_OBJECTS ) + SLAB_TYPESAFE_BY_RCU | SLAB_DEBUG_OBJECTS | \ + SLAB_NO_FREE_INIT) #if defined(CONFIG_DEBUG_SLAB) #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER) @@ -535,7 +536,7 @@ static inline bool slab_want_init_on_alloc(gfp_t flags, struct kmem_cache *c) static inline bool slab_want_init_on_free(struct kmem_cache *c) { if (static_branch_unlikely(&init_on_free)) - return !(c->ctor); + return !(c->ctor) && ((c->flags & SLAB_NO_FREE_INIT) == 0); else return false; } diff --git a/net/core/skbuff.c b/net/core/skbuff.c index e89be6282693..b65902d2c042 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -3981,14 +3981,16 @@ void __init skb_init(void) skbuff_head_cache = kmem_cache_create_usercopy("skbuff_head_cache", sizeof(struct sk_buff), 0, - SLAB_HWCACHE_ALIGN|SLAB_PANIC, + SLAB_HWCACHE_ALIGN|SLAB_PANIC| + SLAB_NO_FREE_INIT, offsetof(struct sk_buff, cb), sizeof_field(struct sk_buff, cb), NULL); skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache", sizeof(struct sk_buff_fclones), 0, - SLAB_HWCACHE_ALIGN|SLAB_PANIC, + SLAB_HWCACHE_ALIGN|SLAB_PANIC| + SLAB_NO_FREE_INIT, NULL); skb_extensions_init(); }