From: Jouni Malinen Date: Sat, 27 Feb 2016 16:49:31 +0000 (+0200) Subject: GAS client: Make PMF check on RX more consistent X-Git-Tag: hostap_2_6~815 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e04019737e9987137bec9034f2f9684c70275cd3;p=thirdparty%2Fhostap.git GAS client: Make PMF check on RX more consistent Use the SA field instead of BSSID in the received Action frame to determine whether PMF has been negotiated with the transmitter. While these fields are supposed to be same for Public Action frames from an AP, it would be possible that a frame is received with different values. The following operations in gas_query_rx() use SA, so do the same for the PMF check. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/gas_query.c b/wpa_supplicant/gas_query.c index 457f5fb64..4f0d0e622 100644 --- a/wpa_supplicant/gas_query.c +++ b/wpa_supplicant/gas_query.c @@ -501,7 +501,7 @@ int gas_query_rx(struct gas_query *gas, const u8 *da, const u8 *sa, return -1; prot = categ == WLAN_ACTION_PROTECTED_DUAL; - pmf = pmf_in_use(gas->wpa_s, bssid); + pmf = pmf_in_use(gas->wpa_s, sa); if (prot && !pmf) { wpa_printf(MSG_DEBUG, "GAS: Drop unexpected protected GAS frame when PMF is disabled"); return 0;