From: Jouni Malinen Date: Tue, 5 Nov 2024 16:48:20 +0000 (+0200) Subject: AP: Update the list of Action frame categories that are not robust X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74792088bcc3d313e7c4635c24ea7b61774031cc;p=thirdparty%2Fhostap.git AP: Update the list of Action frame categories that are not robust Number of new Action frame categories have been identified as being not robust, i.e., not using management frame protection. Update AP mode implementation to cover those to allow reception unprotection Action frames from those categories. Signed-off-by: Jouni Malinen --- diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c index c03b88433..417a50056 100644 --- a/src/ap/ieee802_11.c +++ b/src/ap/ieee802_11.c @@ -6050,7 +6050,15 @@ static void handle_beacon(struct hostapd_data *hapd, static int robust_action_frame(u8 category) { return category != WLAN_ACTION_PUBLIC && - category != WLAN_ACTION_HT; + category != WLAN_ACTION_HT && + category != WLAN_ACTION_UNPROTECTED_WNM && + category != WLAN_ACTION_SELF_PROTECTED && + category != WLAN_ACTION_UNPROTECTED_DMG && + category != WLAN_ACTION_VHT && + category != WLAN_ACTION_UNPROTECTED_S1G && + category != WLAN_ACTION_HE && + category != WLAN_ACTION_EHT && + category != WLAN_ACTION_VENDOR_SPECIFIC; }