LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Dianzhang Chen <dianzhangchen0@gmail.com>
To: cl@linux.com
Cc: penberg@kernel.org, rientjes@google.com, iamjoonsoo.kim@lge.com,
akpm@linux-foundation.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org,
Dianzhang Chen <dianzhangchen0@gmail.com>
Subject: [PATCH] mm/slab_common.c: fix possible spectre-v1 in kmalloc_slab()
Date: Wed, 29 May 2019 20:37:28 +0800 [thread overview]
Message-ID: <1559133448-31779-1-git-send-email-dianzhangchen0@gmail.com> (raw)
The `size` in kmalloc_slab() is indirectly controlled by userspace via syscall: poll(defined in fs/select.c), hence leading to a potential exploitation of the Spectre variant 1 vulnerability.
The `size` can be controlled from: poll -> do_sys_poll -> kmalloc -> __kmalloc -> kmalloc_slab.
Fix this by sanitizing `size` before using it to index size_index.
Signed-off-by: Dianzhang Chen <dianzhangchen0@gmail.com>
---
mm/slab_common.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 58251ba..41c7e34 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -21,6 +21,7 @@
#include <asm/tlbflush.h>
#include <asm/page.h>
#include <linux/memcontrol.h>
+#include <linux/nospec.h>
#define CREATE_TRACE_POINTS
#include <trace/events/kmem.h>
@@ -1056,6 +1057,7 @@ struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
if (!size)
return ZERO_SIZE_PTR;
+ size = array_index_nospec(size, 193);
index = size_index[size_index_elem(size)];
} else {
if (WARN_ON_ONCE(size > KMALLOC_MAX_CACHE_SIZE))
--
2.7.4
next reply other threads:[~2019-05-29 12:39 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-29 12:37 Dianzhang Chen [this message]
2019-05-29 16:25 ` Michal Hocko
2019-05-29 16:39 ` Dianzhang Chen
2019-05-29 17:49 ` Michal Hocko
2019-05-30 5:20 ` Dianzhang Chen
2019-05-30 6:24 ` Michal Hocko
2019-05-30 7:01 ` Dianzhang Chen
2019-05-29 19:48 ` Matthew Wilcox
2019-05-30 5:21 ` Dianzhang Chen
2019-05-29 20:31 Alexey Dobriyan
2019-05-30 0:04 ` Matthew Wilcox
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1559133448-31779-1-git-send-email-dianzhangchen0@gmail.com \
--to=dianzhangchen0@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux.com \
--cc=iamjoonsoo.kim@lge.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=penberg@kernel.org \
--cc=rientjes@google.com \
--subject='Re: [PATCH] mm/slab_common.c: fix possible spectre-v1 in kmalloc_slab()' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).