All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] md: get rid of a VLA
@ 2018-03-09  3:35 Tycho Andersen
  2018-03-09  4:55 ` Kees Cook
  0 siblings, 1 reply; 2+ messages in thread
From: Tycho Andersen @ 2018-03-09  3:35 UTC (permalink / raw)
  To: Alasdair Kergon, Mike Snitzer
  Cc: linux-kernel, dm-devel, kernel-hardening, Tobin C . Harding,
	Tycho Andersen

Ideally, we'd like to get rid of all VLAs in the kernel and add -Wvla to
the build args: https://lkml.org/lkml/2018/3/7/621

This one is a simple case, since we don't actually need the VLA at all: we
can just iterate over the stripes twice, once to emit their names, and the
second time to emit status (i.e. trade memory for time). Since the number
of stripes is probably low, this is hopefully not that expensive.

Signed-off-by: Tycho Andersen <tycho@tycho.ws>
CC: Alasdair Kergon <agk@redhat.com>
CC: Mike Snitzer <snitzer@redhat.com>
---
 drivers/md/dm-stripe.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/md/dm-stripe.c b/drivers/md/dm-stripe.c
index b5e892149c54..cd209e8902a6 100644
--- a/drivers/md/dm-stripe.c
+++ b/drivers/md/dm-stripe.c
@@ -368,7 +368,6 @@ static void stripe_status(struct dm_target *ti, status_type_t type,
 			  unsigned status_flags, char *result, unsigned maxlen)
 {
 	struct stripe_c *sc = (struct stripe_c *) ti->private;
-	char buffer[sc->stripes + 1];
 	unsigned int sz = 0;
 	unsigned int i;
 
@@ -377,11 +376,12 @@ static void stripe_status(struct dm_target *ti, status_type_t type,
 		DMEMIT("%d ", sc->stripes);
 		for (i = 0; i < sc->stripes; i++)  {
 			DMEMIT("%s ", sc->stripe[i].dev->name);
-			buffer[i] = atomic_read(&(sc->stripe[i].error_count)) ?
-				'D' : 'A';
 		}
-		buffer[i] = '\0';
-		DMEMIT("1 %s", buffer);
+		DMEMIT("1 ");
+		for (i = 0; i < sc->stripes; i++) {
+			DMEMIT("%c", atomic_read(&(sc->stripe[i].error_count)) ?
+			       'D' : 'A');
+		}
 		break;
 
 	case STATUSTYPE_TABLE:
-- 
2.14.1

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

* Re: [PATCH] md: get rid of a VLA
  2018-03-09  3:35 [PATCH] md: get rid of a VLA Tycho Andersen
@ 2018-03-09  4:55 ` Kees Cook
  0 siblings, 0 replies; 2+ messages in thread
From: Kees Cook @ 2018-03-09  4:55 UTC (permalink / raw)
  To: Tycho Andersen
  Cc: Alasdair Kergon, Mike Snitzer, LKML, dm-devel, Kernel Hardening,
	Tobin C . Harding

On Thu, Mar 8, 2018 at 7:35 PM, Tycho Andersen <tycho@tycho.ws> wrote:
> Ideally, we'd like to get rid of all VLAs in the kernel and add -Wvla to
> the build args: https://lkml.org/lkml/2018/3/7/621
>
> This one is a simple case, since we don't actually need the VLA at all: we
> can just iterate over the stripes twice, once to emit their names, and the
> second time to emit status (i.e. trade memory for time). Since the number
> of stripes is probably low, this is hopefully not that expensive.
>
> Signed-off-by: Tycho Andersen <tycho@tycho.ws>
> CC: Alasdair Kergon <agk@redhat.com>
> CC: Mike Snitzer <snitzer@redhat.com>

Reviewed-by: Kees Cook <keescook@chromium.org>

-Kees

> ---
>  drivers/md/dm-stripe.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/md/dm-stripe.c b/drivers/md/dm-stripe.c
> index b5e892149c54..cd209e8902a6 100644
> --- a/drivers/md/dm-stripe.c
> +++ b/drivers/md/dm-stripe.c
> @@ -368,7 +368,6 @@ static void stripe_status(struct dm_target *ti, status_type_t type,
>                           unsigned status_flags, char *result, unsigned maxlen)
>  {
>         struct stripe_c *sc = (struct stripe_c *) ti->private;
> -       char buffer[sc->stripes + 1];
>         unsigned int sz = 0;
>         unsigned int i;
>
> @@ -377,11 +376,12 @@ static void stripe_status(struct dm_target *ti, status_type_t type,
>                 DMEMIT("%d ", sc->stripes);
>                 for (i = 0; i < sc->stripes; i++)  {
>                         DMEMIT("%s ", sc->stripe[i].dev->name);
> -                       buffer[i] = atomic_read(&(sc->stripe[i].error_count)) ?
> -                               'D' : 'A';
>                 }
> -               buffer[i] = '\0';
> -               DMEMIT("1 %s", buffer);
> +               DMEMIT("1 ");
> +               for (i = 0; i < sc->stripes; i++) {
> +                       DMEMIT("%c", atomic_read(&(sc->stripe[i].error_count)) ?
> +                              'D' : 'A');
> +               }
>                 break;
>
>         case STATUSTYPE_TABLE:
> --
> 2.14.1
>



-- 
Kees Cook
Pixel Security

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

end of thread, other threads:[~2018-03-09  4:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-09  3:35 [PATCH] md: get rid of a VLA Tycho Andersen
2018-03-09  4:55 ` Kees Cook

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.