Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1039d081 authored by Dedy Lansky's avatar Dedy Lansky Committed by Johannes Berg
Browse files

nl80211: fix nlmsg allocation in cfg80211_ft_event



Allocation size of nlmsg in cfg80211_ft_event is based on ric_ies_len
and doesn't take into account ies_len. This leads to
NL80211_CMD_FT_EVENT message construction failure in case ft_event
contains large enough ies buffer.
Add ies_len to the nlmsg allocation size.

Signed-off-by: default avatarDedy Lansky <dlansky@codeaurora.org>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 81459649
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -15555,7 +15555,8 @@ void cfg80211_ft_event(struct net_device *netdev,
	if (!ft_event->target_ap)
		return;

	msg = nlmsg_new(100 + ft_event->ric_ies_len, GFP_KERNEL);
	msg = nlmsg_new(100 + ft_event->ies_len + ft_event->ric_ies_len,
			GFP_KERNEL);
	if (!msg)
		return;