All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guennadi Liakhovetski <lg@denx.de>
To: linux-kernel@vger.kernel.org
Cc: Paul Mundt <lethal@linux-sh.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	adrian@newgolddream.dyndns.info, lkmladrian@gmail.com,
	linux-sh@vger.kernel.org, penberg@cs.helsinki.fi,
	dbaryshkov@gmail.com, penguin-kernel@i-love.sakura.ne.jp,
	hannes@cmpxchg.org
Subject: [PATCH] fix broken size test in bitmap_find_free_region()
Date: Fri, 06 Feb 2009 12:22:33 +0000	[thread overview]
Message-ID: <Pine.LNX.4.64.0902061313260.6241@axis700.grange> (raw)
In-Reply-To: <Pine.LNX.4.64.0901280913090.4926@axis700.grange>

This loop and test in bitmap_find_free_region()

	for (pos = 0; pos < bits; pos += (1 << order))
		if (__reg_op(bitmap, pos, order, REG_OP_ISFREE))
			break;
	if (pos = bits)
		return -ENOMEM;

can only return an error (-ENOMEM) if bits is a multiple of (1 << order), 
which is, for instance, true, if bits is (also) a power of 2. This 
is not necessarily the case with dma_alloc_from_coherent(). A failure to 
recognise too large a request leads in dma_alloc_from_coherent() to 
accessing beyond available memory, and to writing beyond the bitmap.

Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
---

diff --git a/lib/bitmap.c b/lib/bitmap.c
index 1338469..d49c37f 100644
--- a/lib/bitmap.c
+++ b/lib/bitmap.c
@@ -953,7 +953,7 @@ int bitmap_find_free_region(unsigned long *bitmap, int bits, int order)
 	for (pos = 0; pos < bits; pos += (1 << order))
 		if (__reg_op(bitmap, pos, order, REG_OP_ISFREE))
 			break;
-	if (pos = bits)
+	if (pos + (1 << order) > bits)
 		return -ENOMEM;
 	__reg_op(bitmap, pos, order, REG_OP_ALLOC);
 	return pos;

WARNING: multiple messages have this Message-ID (diff)
From: Guennadi Liakhovetski <lg@denx.de>
To: linux-kernel@vger.kernel.org
Cc: Paul Mundt <lethal@linux-sh.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	adrian@newgolddream.dyndns.info, lkmladrian@gmail.com,
	linux-sh@vger.kernel.org, penberg@cs.helsinki.fi,
	dbaryshkov@gmail.com, penguin-kernel@i-love.sakura.ne.jp,
	hannes@cmpxchg.org
Subject: [PATCH] fix broken size test in bitmap_find_free_region()
Date: Fri, 6 Feb 2009 13:22:33 +0100 (CET)	[thread overview]
Message-ID: <Pine.LNX.4.64.0902061313260.6241@axis700.grange> (raw)
In-Reply-To: <Pine.LNX.4.64.0901280913090.4926@axis700.grange>

This loop and test in bitmap_find_free_region()

	for (pos = 0; pos < bits; pos += (1 << order))
		if (__reg_op(bitmap, pos, order, REG_OP_ISFREE))
			break;
	if (pos == bits)
		return -ENOMEM;

can only return an error (-ENOMEM) if bits is a multiple of (1 << order), 
which is, for instance, true, if bits is (also) a power of 2. This 
is not necessarily the case with dma_alloc_from_coherent(). A failure to 
recognise too large a request leads in dma_alloc_from_coherent() to 
accessing beyond available memory, and to writing beyond the bitmap.

Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
---

diff --git a/lib/bitmap.c b/lib/bitmap.c
index 1338469..d49c37f 100644
--- a/lib/bitmap.c
+++ b/lib/bitmap.c
@@ -953,7 +953,7 @@ int bitmap_find_free_region(unsigned long *bitmap, int bits, int order)
 	for (pos = 0; pos < bits; pos += (1 << order))
 		if (__reg_op(bitmap, pos, order, REG_OP_ISFREE))
 			break;
-	if (pos == bits)
+	if (pos + (1 << order) > bits)
 		return -ENOMEM;
 	__reg_op(bitmap, pos, order, REG_OP_ALLOC);
 	return pos;

  reply	other threads:[~2009-02-06 12:22 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-20 21:48 [PATCH] dma: fix up broken comparison in dma_alloc_from_coherent Adrian McMenamin
2009-01-20 21:55 ` [PATCH] dma: fix up broken comparison in Adrian McMenamin
2009-01-20 21:55   ` [PATCH] dma: fix up broken comparison in dma_alloc_from_coherent Adrian McMenamin
2009-01-21  3:39   ` Paul Mundt
2009-01-21  3:39     ` Paul Mundt
2009-01-21  8:11     ` Paul Mundt
2009-01-21  8:11       ` Paul Mundt
2009-01-21  8:29       ` Guennadi Liakhovetski
2009-01-21  8:29         ` Guennadi Liakhovetski
2009-01-21  8:30         ` Paul Mundt
2009-01-21  8:30           ` Paul Mundt
2009-01-27 21:48       ` [PATCH] dma: fix up broken comparison in Andrew Morton
2009-01-27 21:48         ` [PATCH] dma: fix up broken comparison in dma_alloc_from_coherent Andrew Morton
2009-01-27 22:54         ` Paul Mundt
2009-01-27 22:54           ` Paul Mundt
2009-01-28  8:36           ` Guennadi Liakhovetski
2009-01-28  8:36             ` Guennadi Liakhovetski
2009-02-06 12:22             ` Guennadi Liakhovetski [this message]
2009-02-06 12:22               ` [PATCH] fix broken size test in bitmap_find_free_region() Guennadi Liakhovetski
2009-02-06 21:29               ` Andrew Morton
2009-02-06 21:29                 ` Andrew Morton
2009-02-06 22:30                 ` Guennadi Liakhovetski
2009-02-06 22:30                   ` Guennadi Liakhovetski

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=Pine.LNX.4.64.0902061313260.6241@axis700.grange \
    --to=lg@denx.de \
    --cc=adrian@newgolddream.dyndns.info \
    --cc=akpm@linux-foundation.org \
    --cc=dbaryshkov@gmail.com \
    --cc=hannes@cmpxchg.org \
    --cc=lethal@linux-sh.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=lkmladrian@gmail.com \
    --cc=penberg@cs.helsinki.fi \
    --cc=penguin-kernel@i-love.sakura.ne.jp \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.