linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [[PATCH v2] mtd: check parts pointer before using it
@ 2011-08-24 11:26 Jason Liu
  2011-09-13  6:31 ` Jason Liu
  0 siblings, 1 reply; 4+ messages in thread
From: Jason Liu @ 2011-08-24 11:26 UTC (permalink / raw)
  To: linux-arm-kernel

The code has the check for parts but it called after kmemdup,
kmemdup(parts, sizeof(*parts) * nr_parts,...)
if (!parts)
	return -ENOMEM

In fact, we need check parts before safely using it.
and we also need check the real_parts to make sure kmemdup
allocation sucessfully.

Signed-off-by: Jason Liu <jason.hui@linaro.org>
Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Cc: Artem Bityutskiy <artem.bityutskiy@intel.com>
---
V2: Fix one error condition check and add real_parts check too.
---
This patch is based on git://git.infradead.org/users/dedekind/l2-mtd-2.6.git
---
 drivers/mtd/mtdcore.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index 09bdbac..b01993e 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -465,12 +465,13 @@ int mtd_device_parse_register(struct mtd_info *mtd, const char **types,
 	struct mtd_partition *real_parts;
 
 	err = parse_mtd_partitions(mtd, types, &real_parts, parser_data);
-	if (err <= 0 && nr_parts) {
+	if (err <= 0 && nr_parts && parts) {
 		real_parts = kmemdup(parts, sizeof(*parts) * nr_parts,
 				     GFP_KERNEL);
-		err = nr_parts;
-		if (!parts)
+		if (!real_parts)
 			err = -ENOMEM;
+		else
+			err = nr_parts;
 	}
 
 	if (err > 0) {
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [[PATCH v2] mtd: check parts pointer before using it
  2011-08-24 11:26 [[PATCH v2] mtd: check parts pointer before using it Jason Liu
@ 2011-09-13  6:31 ` Jason Liu
  2011-09-13  6:44   ` Artem Bityutskiy
  0 siblings, 1 reply; 4+ messages in thread
From: Jason Liu @ 2011-09-13  6:31 UTC (permalink / raw)
  To: linux-arm-kernel

Hi, Artem,

2011/8/24 Jason Liu <jason.hui@linaro.org>:
> The code has the check for parts but it called after kmemdup,
> kmemdup(parts, sizeof(*parts) * nr_parts,...)
> if (!parts)
> ? ? ? ?return -ENOMEM
>
> In fact, we need check parts before safely using it.
> and we also need check the real_parts to make sure kmemdup
> allocation sucessfully.
>
> Signed-off-by: Jason Liu <jason.hui@linaro.org>
> Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
> Cc: Artem Bityutskiy <artem.bityutskiy@intel.com>
> ---
> V2: Fix one error condition check and add real_parts check too.
> ---
> This patch is based on git://git.infradead.org/users/dedekind/l2-mtd-2.6.git
> ---
> ?drivers/mtd/mtdcore.c | ? ?7 ++++---
> ?1 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
> index 09bdbac..b01993e 100644
> --- a/drivers/mtd/mtdcore.c
> +++ b/drivers/mtd/mtdcore.c
> @@ -465,12 +465,13 @@ int mtd_device_parse_register(struct mtd_info *mtd, const char **types,
> ? ? ? ?struct mtd_partition *real_parts;
>
> ? ? ? ?err = parse_mtd_partitions(mtd, types, &real_parts, parser_data);
> - ? ? ? if (err <= 0 && nr_parts) {
> + ? ? ? if (err <= 0 && nr_parts && parts) {
> ? ? ? ? ? ? ? ?real_parts = kmemdup(parts, sizeof(*parts) * nr_parts,
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? GFP_KERNEL);
> - ? ? ? ? ? ? ? err = nr_parts;
> - ? ? ? ? ? ? ? if (!parts)
> + ? ? ? ? ? ? ? if (!real_parts)
> ? ? ? ? ? ? ? ? ? ? ? ?err = -ENOMEM;
> + ? ? ? ? ? ? ? else
> + ? ? ? ? ? ? ? ? ? ? ? err = nr_parts;
> ? ? ? ?}
>
> ? ? ? ?if (err > 0) {
> --
> 1.7.4.1

Ping, any comments about it? Thanks,

Jason

>
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [[PATCH v2] mtd: check parts pointer before using it
  2011-09-13  6:31 ` Jason Liu
@ 2011-09-13  6:44   ` Artem Bityutskiy
  2011-09-13  6:55     ` Jason Liu
  0 siblings, 1 reply; 4+ messages in thread
From: Artem Bityutskiy @ 2011-09-13  6:44 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, 2011-09-13 at 14:31 +0800, Jason Liu wrote:
> Ping, any comments about it? Thanks,

I was sure I answered you, sorry - your patch is for long time in my l2
tree and hence, in linux-next.

-- 
Best Regards,
Artem Bityutskiy

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [[PATCH v2] mtd: check parts pointer before using it
  2011-09-13  6:44   ` Artem Bityutskiy
@ 2011-09-13  6:55     ` Jason Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Jason Liu @ 2011-09-13  6:55 UTC (permalink / raw)
  To: linux-arm-kernel

Hi, Atrem,

2011/9/13 Artem Bityutskiy <dedekind1@gmail.com>:
> On Tue, 2011-09-13 at 14:31 +0800, Jason Liu wrote:
>> Ping, any comments about it? Thanks,
>
> I was sure I answered you, sorry - your patch is for long time in my l2
> tree and hence, in linux-next.

 I'm not aware of it. Thanks Artem.

Jason

>
> --
> Best Regards,
> Artem Bityutskiy
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-09-13  6:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-24 11:26 [[PATCH v2] mtd: check parts pointer before using it Jason Liu
2011-09-13  6:31 ` Jason Liu
2011-09-13  6:44   ` Artem Bityutskiy
2011-09-13  6:55     ` Jason Liu

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).