[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAB4PhKd_=KjNGJ+3TL5tqPqoetcD28oaWC55UqNRqFGZ7gmYHw@mail.gmail.com>
Date: Tue, 13 Sep 2011 14:31:30 +0800
From: Jason Liu <liu.h.jason@...il.com>
To: Jason Liu <jason.hui@...aro.org>
Cc: linux-arm-kernel@...ts.infradead.org, dedekind1@...il.com,
linux-mtd@...ts.infradead.org, linux-kernel@...r.kernel.org,
patches@...aro.org, David.Woodhouse@...el.com
Subject: Re: [[PATCH v2] mtd: check parts pointer before using it
Hi, Artem,
2011/8/24 Jason Liu <jason.hui@...aro.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@...aro.org>
> Cc: Dmitry Eremin-Solenikov <dbaryshkov@...il.com>
> Cc: Artem Bityutskiy <artem.bityutskiy@...el.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@...ts.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists