aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch
diff options
context:
space:
mode:
authorKoen Vandeputte <koen.vandeputte@ncentric.com>2017-09-05 09:56:22 +0200
committerStijn Tintel <stijn@linux-ipv6.be>2017-10-07 05:46:04 +0300
commit2f78034c3ef71bdeb1f2955aa8844b1d1ec70d3a (patch)
tree1635cd5f7c7284ef2f3482f3afa61678bb31361f /package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch
parentbd27331eeaf6cd1db9ad5b44c4f0f10f03b7911f (diff)
downloadupstream-2f78034c3ef71bdeb1f2955aa8844b1d1ec70d3a.tar.gz
upstream-2f78034c3ef71bdeb1f2955aa8844b1d1ec70d3a.tar.bz2
upstream-2f78034c3ef71bdeb1f2955aa8844b1d1ec70d3a.zip
hostapd: update to version 2017-08-24
- Deleted upstreamed patches & parts - Refreshed all Compile tested: full-option package + tools (hostapd + wpa_supplicant) Run-tested: hostapd wpa2 hotspot & wpa_supplicant IBSS link Targets: cns3xxx Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch')
-rw-r--r--package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch b/package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch
deleted file mode 100644
index 6db1e9b34b..0000000000
--- a/package/network/services/hostapd/patches/002-Fix-duplicate-Reassociation-Request-frame-dropping.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From: Jouni Malinen <jouni@qca.qualcomm.com>
-Date: Sat, 14 Jan 2017 01:04:31 +0200
-Subject: [PATCH] Fix duplicate Reassociation Request frame dropping
-
-Relational operators (==) have higher precedence than the ternary
-conditional in C. The last_subtype check for association/reassociation
-was broken due to incorrect assumption about the precedence. Fix this by
-adding parenthesis around the ternary conditional.
-
-The previous implementation worked for Association Request frames by
-accident since WLAN_FC_STYPE_ASSOC_REQ happens to have value 0 and when
-the last receive frame was an Association Request frame, the
-sta->last_subtype == reassoc check was true and non-zero
-WLAN_FC_STYPE_REASSOC_REQ was interpreted as true. However, this was
-broken for Reassociation Request frame. reassoc == 1 in that case could
-have matched received Association Response frame (subtype == 1), but
-those are not received in AP mode and as such, this did not break other
-behavior apart from not being able to drop duplicated Reassociation
-Request frames.
-
-Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
----
-
---- a/src/ap/ieee802_11.c
-+++ b/src/ap/ieee802_11.c
-@@ -2485,8 +2485,8 @@ static void handle_assoc(struct hostapd_
- if ((fc & WLAN_FC_RETRY) &&
- sta->last_seq_ctrl != WLAN_INVALID_MGMT_SEQ &&
- sta->last_seq_ctrl == seq_ctrl &&
-- sta->last_subtype == reassoc ? WLAN_FC_STYPE_REASSOC_REQ :
-- WLAN_FC_STYPE_ASSOC_REQ) {
-+ sta->last_subtype == (reassoc ? WLAN_FC_STYPE_REASSOC_REQ :
-+ WLAN_FC_STYPE_ASSOC_REQ)) {
- hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
- HOSTAPD_LEVEL_DEBUG,
- "Drop repeated association frame seq_ctrl=0x%x",