wifi: nl80211: fix integer overflow in nl80211_parse_mbssid_elems()
authorKeith Yeo <keithyjy@gmail.com>
Mon, 31 Jul 2023 03:47:20 +0000 (11:47 +0800)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 9 Aug 2023 12:43:35 +0000 (14:43 +0200)
commit6311071a056272e1e761de8d0305e87cc566f734
tree0912fd292c4ed1a75bf3f600ea4090bc1d985fcd
parent5fb9a9fb71a33be61d7d8e8ba4597bfb18d604d0
wifi: nl80211: fix integer overflow in nl80211_parse_mbssid_elems()

nl80211_parse_mbssid_elems() uses a u8 variable num_elems to count the
number of MBSSID elements in the nested netlink attribute attrs, which can
lead to an integer overflow if a user of the nl80211 interface specifies
256 or more elements in the corresponding attribute in userspace. The
integer overflow can lead to a heap buffer overflow as num_elems determines
the size of the trailing array in elems, and this array is thereafter
written to for each element in attrs.

Note that this vulnerability only affects devices with the
wiphy->mbssid_max_interfaces member set for the wireless physical device
struct in the device driver, and can only be triggered by a process with
CAP_NET_ADMIN capabilities.

Fix this by checking for a maximum of 255 elements in attrs.

Cc: stable@vger.kernel.org
Fixes: dc1e3cb8da8b ("nl80211: MBSSID and EMA support in AP mode")
Signed-off-by: Keith Yeo <keithyjy@gmail.com>
Link: https://lore.kernel.org/r/20230731034719.77206-1-keithyjy@gmail.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/nl80211.c