wifi: cfg80211/mac80211: Fix ML element common size validation
authorIlan Peer <ilan.peer@intel.com>
Sun, 11 Sep 2022 13:55:12 +0000 (16:55 +0300)
committerChristian Lamparter <chunkeey@gmail.com>
Sun, 21 May 2023 21:07:05 +0000 (23:07 +0200)
The Multi-Link element can be fragmented, thus its size can exceed 254.
Thus, modify ieee80211_mle_size_ok() to use 'size_t len' instead of
'u8 len'.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
include/linux/ieee80211.h

index 6ad582667c2d5ffd7b695e8a87672374748924dd..d3fa31998e2e4dedcc6a743148bafb63014b6a99 100644 (file)
@@ -4529,7 +4529,7 @@ static inline u8 ieee80211_mle_common_size(const u8 *data)
  * @data: pointer to the element data
  * @len: length of the containing element
  */
-static inline bool ieee80211_mle_size_ok(const u8 *data, u8 len)
+static inline bool ieee80211_mle_size_ok(const u8 *data, size_t len)
 {
        const struct ieee80211_multi_link_elem *mle = (const void *)data;
        u8 fixed = sizeof(*mle);