Re: [PATCH 2/6] wifi: ath10k: use flexible arrays for WMI start scan TLVs

From: Kees Cook
Date: Wed Dec 13 2023 - 14:12:03 EST


On Wed, Dec 13, 2023 at 09:06:40AM -0800, Jeff Johnson wrote:
> Currently ath10k defines the following struct:
> struct wmi_start_scan_tlvs {
> u8 tlvs[0];
> } __packed;
>
> Per the guidance in [1] this should be a flexible array. However, a
> direct replace to u8 tlvs[] results in the compilation error:
> flexible array member in a struct with no named members
>
> This is because C99 6.7.2.1 (16) requires that a structure containing
> a flexible array member must have more than one named member.
>
> So rather than defining a separate struct wmi_start_scan_tlvs which
> contains the flexible tlvs[] array, just define the tlvs[] array where
> struct wmi_start_scan_tlvs is being used.
>
> No functional changes, compile tested only.
>
> [1] https://docs.kernel.org/process/deprecated.html#zero-length-and-one-element-arrays
>
> Signed-off-by: Jeff Johnson <quic_jjohnson@xxxxxxxxxxx>

Yeah, this too looks like the right approach: keeping the flex array
close instead of externalized into a no-op struct.

Reviewed-by: Kees Cook <keescook@xxxxxxxxxxxx>

--
Kees Cook