]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: mac80211_hwsim: fully initialise PMSR capabilities
authorJohannes Berg <johannes.berg@intel.com>
Tue, 3 Mar 2026 11:37:39 +0000 (12:37 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 6 Mar 2026 10:06:06 +0000 (11:06 +0100)
Since the recent additions to PMSR capabilities, it's no longer
sufficient to call parse_pmsr_capa() here since the capabilities
that were added aren't represented/filled by it. Always init the
data to zero to avoid using uninitialized memory.

Fixes: 86c6b6e4d187 ("wifi: nl80211/cfg80211: add new FTM capabilities")
Reported-by: syzbot+c686c6b197d10ff3a749@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/69a67aa3.a70a0220.b118c.000a.GAE@google.com/
Link: https://patch.msgid.link/20260303113739.176403-2-johannes@sipsolutions.net
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/virtual/mac80211_hwsim.c

index e89173f9163774f7825e2f938c79781a8d249c9b..f6b890dea7e07d34b2de1bcfad75f1a92335c61f 100644 (file)
@@ -6489,7 +6489,7 @@ static int hwsim_new_radio_nl(struct sk_buff *msg, struct genl_info *info)
        if (info->attrs[HWSIM_ATTR_PMSR_SUPPORT]) {
                struct cfg80211_pmsr_capabilities *pmsr_capa;
 
-               pmsr_capa = kmalloc_obj(*pmsr_capa);
+               pmsr_capa = kzalloc_obj(*pmsr_capa);
                if (!pmsr_capa) {
                        ret = -ENOMEM;
                        goto out_free;