linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Boris Brezillon <boris.brezillon@bootlin.com>
To: David Woodhouse <dwmw2@infradead.org>,
	Brian Norris <computersforpeace@gmail.com>,
	Boris Brezillon <boris.brezillon@bootlin.com>,
	Marek Vasut <marek.vasut@gmail.com>,
	Richard Weinberger <richard@nod.at>,
	linux-mtd@lists.infradead.org
Cc: linux-kernel@vger.kernel.org, Kees Cook <keescook@chromium.org>,
	Olof Johansson <olof@lixom.net>
Subject: Re: [PATCH v2] mtd: sa1100: avoid VLA in sa1100_setup_mtd
Date: Tue, 6 Nov 2018 14:12:14 +0100	[thread overview]
Message-ID: <20181106141214.26f68154@bbrezillon> (raw)
In-Reply-To: <20181105075835.16234-1-boris.brezillon@bootlin.com>

On Mon,  5 Nov 2018 08:58:35 +0100
Boris Brezillon <boris.brezillon@bootlin.com> wrote:

> Enabling -Wvla found another variable-length array with randconfig
> testing:
> 
> drivers/mtd/maps/sa1100-flash.c: In function 'sa1100_setup_mtd':
> drivers/mtd/maps/sa1100-flash.c:224:10: error: ISO C90 forbids variable length array 'cdev' [-Werror=vla]
> 
> Dynamically allocate the cdev array passed to mtd_concat_create()
> instead of using a VLA.
> 
> Reported-by: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
> Cc: Kees Cook <keescook@chromium.org>
> Cc: Olof Johansson <olof@lixom.net>

Queued to the mtd fixes branch.

> ---
> Changes in v2:
> - Allocate cdev dynamically instead of having a fixed-size array
> 
> Hello,
> 
> I'm planning to queue this patch to the mtd/fixes PR. Arnd, Kees, feel
> free to add your R-b.
> 
> Regards,
> 
> Boris
> ---
>  drivers/mtd/maps/sa1100-flash.c | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mtd/maps/sa1100-flash.c b/drivers/mtd/maps/sa1100-flash.c
> index 784c6e1a0391..fd5fe12d7461 100644
> --- a/drivers/mtd/maps/sa1100-flash.c
> +++ b/drivers/mtd/maps/sa1100-flash.c
> @@ -221,7 +221,14 @@ static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev,
>  		info->mtd = info->subdev[0].mtd;
>  		ret = 0;
>  	} else if (info->num_subdev > 1) {
> -		struct mtd_info *cdev[nr];
> +		struct mtd_info **cdev;
> +
> +		cdev = kmalloc_array(nr, sizeof(*cdev), GFP_KERNEL);
> +		if (!cdev) {
> +			ret = -ENOMEM;
> +			goto err;
> +		}
> +
>  		/*
>  		 * We detected multiple devices.  Concatenate them together.
>  		 */
> @@ -230,6 +237,7 @@ static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev,
>  
>  		info->mtd = mtd_concat_create(cdev, info->num_subdev,
>  					      plat->name);
> +		kfree(cdev);
>  		if (info->mtd == NULL) {
>  			ret = -ENXIO;
>  			goto err;

      parent reply	other threads:[~2018-11-06 13:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-05  7:58 [PATCH v2] mtd: sa1100: avoid VLA in sa1100_setup_mtd Boris Brezillon
2018-11-05  8:11 ` Boris Brezillon
2018-11-06 13:12 ` Boris Brezillon [this message]

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=20181106141214.26f68154@bbrezillon \
    --to=boris.brezillon@bootlin.com \
    --cc=computersforpeace@gmail.com \
    --cc=dwmw2@infradead.org \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=marek.vasut@gmail.com \
    --cc=olof@lixom.net \
    --cc=richard@nod.at \
    /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 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).