madwifi: disable ccmp replay protection for ibss/ahdemo to make wpa-none work
SVN-Revision: 19822
This commit is contained in:
parent
a593773232
commit
f53f060299
1 changed files with 13 additions and 0 deletions
13
package/madwifi/patches/458-ibss_wpa_none.patch
Normal file
13
package/madwifi/patches/458-ibss_wpa_none.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- a/net80211/ieee80211_crypto_ccmp.c
|
||||
+++ b/net80211/ieee80211_crypto_ccmp.c
|
||||
@@ -273,7 +273,9 @@ ccmp_decap(struct ieee80211_key *k, stru
|
||||
tid = ((struct ieee80211_qosframe *)wh)->i_qos[0] & IEEE80211_QOS_TID;
|
||||
/* NB: assume IEEE80211_WEP_MINLEN covers the extended IV */
|
||||
pn = READ_6(ivp[0], ivp[1], ivp[4], ivp[5], ivp[6], ivp[7]);
|
||||
- if (pn && pn <= k->wk_keyrsc[tid]) {
|
||||
+ if ((vap->iv_opmode != IEEE80211_M_IBSS) &&
|
||||
+ (vap->iv_opmode != IEEE80211_M_AHDEMO) &&
|
||||
+ (pn && pn <= k->wk_keyrsc[tid])) {
|
||||
/*
|
||||
* Replay violation.
|
||||
*/
|
Loading…
Reference in a new issue