Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1709803

[linux-next][PATCH v2] mm/slub.c: add a naive detection of double free or corruption

From Alexander Popov <alex.popov@linux.com>
Newsgroups linux.kernel
Subject [linux-next][PATCH v2] mm/slub.c: add a naive detection of double free or corruption
Date 2017-08-11 18:20 +0200
Message-ID <udkPg-5Kw-13@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Add an assertion similar to "fasttop" check in GNU C Library allocator
as a part of SLAB_FREELIST_HARDENED feature. An object added to a singly
linked freelist should not point to itself. That helps to detect some
double free errors (e.g. CVE-2017-2636) without slub_debug and KASAN.

Signed-off-by: Alexander Popov <alex.popov@linux.com>
---
 mm/slub.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/mm/slub.c b/mm/slub.c
index b9c7f1a..77b2781 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -290,6 +290,10 @@ static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
 {
 	unsigned long freeptr_addr = (unsigned long)object + s->offset;
 
+#ifdef CONFIG_SLAB_FREELIST_HARDENED
+	BUG_ON(object == fp); /* naive detection of double free or corruption */
+#endif
+
 	*(void **)freeptr_addr = freelist_ptr(s, fp, freeptr_addr);
 }
 
-- 
2.7.4

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[linux-next][PATCH v2] mm/slub.c: add a naive detection of double free or corruption Alexander Popov <alex.popov@linux.com> - 2017-08-11 18:20 +0200
  Re: [linux-next][PATCH v2] mm/slub.c: add a naive detection of double  free or corruption Christopher Lameter <cl@linux.com> - 2017-08-11 19:30 +0200

csiph-web