Re: [PATCH] staging: vchiq_arm: Clear VLA warning

From: Linus Torvalds
Date: Fri Mar 09 2018 - 13:46:07 EST


On Fri, Mar 9, 2018 at 10:35 AM, Kees Cook <keescook@xxxxxxxxxxxx> wrote:
>
> I think you mean ARRAY_SIZE(service_data) ? In that case, yeah, it
> seems like a raw "64" for the array size can be used instead.

I think 64 is much too big anyway. That's 768 bytes of stack data that
is used to check stuff deep in some transfer call chain.

So that code is broken from a stack usage model anyway. If it's just a
"random big number", then cut it down in size.

I don't know. The code was imported in 2013, and has seen very little
change since. I'm not sure how many users it has. But while changing
this, just do the stack size limitation at the same time.

Linus