]> Git Repo - linux.git/commitdiff
wifi: cfg80211: Annotate struct cfg80211_scan_request with __counted_by
authorKees Cook <[email protected]>
Thu, 17 Aug 2023 21:15:28 +0000 (14:15 -0700)
committerJohannes Berg <[email protected]>
Tue, 22 Aug 2023 11:18:16 +0000 (13:18 +0200)
Prepare for the coming implementation by GCC and Clang of the __counted_by
attribute. Flexible array members annotated with __counted_by can have
their accesses bounds-checked at run-time checking via CONFIG_UBSAN_BOUNDS
(for array indexing) and CONFIG_FORTIFY_SOURCE (for strcpy/memcpy-family
functions).

As found with Coccinelle[1], add __counted_by for struct cfg80211_scan_request.
Additionally, since the element count member must be set before accessing
the annotated flexible array member, move its initialization earlier.

[1] https://github.com/kees/kernel-tools/blob/trunk/coccinelle/examples/counted_by.cocci

Cc: Johannes Berg <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Eric Dumazet <[email protected]>
Cc: Jakub Kicinski <[email protected]>
Cc: Paolo Abeni <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Kees Cook <[email protected]>
Reviewed-by: Gustavo A. R. Silva <[email protected]>
Reviewed-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Johannes Berg <[email protected]>
include/net/cfg80211.h

index 6efe216c01d2535dd26ddc1688e92feb68dc1bfb..a2afc94a54084e2ef8c077fdc7adb4ff5018c2d1 100644 (file)
@@ -2544,7 +2544,7 @@ struct cfg80211_scan_request {
        struct cfg80211_scan_6ghz_params *scan_6ghz_params;
 
        /* keep last */
-       struct ieee80211_channel *channels[];
+       struct ieee80211_channel *channels[] __counted_by(n_channels);
 };
 
 static inline void get_random_mask_addr(u8 *buf, const u8 *addr, const u8 *mask)
This page took 0.068813 seconds and 4 git commands to generate.