瀏覽代碼

[PATCH] fix broken lib/genalloc.c

genalloc improperly stores the sizes of freed chunks, allocates overlapping
memory regions, and oopses after its in-band data is overwritten.

Signed-off-by: Chris Humbert <mahadri-kernel@drigon.com>
Cc: Jes Sorensen <jes@trained-monkey.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Chris Humbert 19 年之前
父節點
當前提交
46596338a1
共有 1 個文件被更改,包括 6 次插入8 次删除
  1. 6 8
      lib/genalloc.c

+ 6 - 8
lib/genalloc.c

@@ -95,12 +95,10 @@ unsigned long gen_pool_alloc(struct gen_pool *poolp, int size)
 	if (size > max_chunk_size)
 	if (size > max_chunk_size)
 		return 0;
 		return 0;
 
 
-	i = 0;
-
 	size = max(size, 1 << ALLOC_MIN_SHIFT);
 	size = max(size, 1 << ALLOC_MIN_SHIFT);
-	s = roundup_pow_of_two(size);
-
-	j = i;
+	i = fls(size - 1);
+	s = 1 << i;
+	j = i -= ALLOC_MIN_SHIFT;
 
 
 	spin_lock_irqsave(&poolp->lock, flags);
 	spin_lock_irqsave(&poolp->lock, flags);
 	while (!h[j].next) {
 	while (!h[j].next) {
@@ -153,10 +151,10 @@ void gen_pool_free(struct gen_pool *poolp, unsigned long ptr, int size)
 	if (size > max_chunk_size)
 	if (size > max_chunk_size)
 		return;
 		return;
 
 
-	i = 0;
-
 	size = max(size, 1 << ALLOC_MIN_SHIFT);
 	size = max(size, 1 << ALLOC_MIN_SHIFT);
-	s = roundup_pow_of_two(size);
+	i = fls(size - 1);
+	s = 1 << i;
+	i -= ALLOC_MIN_SHIFT;
 
 
 	a = ptr;
 	a = ptr;