d2ea9cb638e1b9021104e4ece28cb13c63d2d030
[openwrt-10.03/.git] / package / madwifi / patches / 112-keycache_PR_962.patch
1 Index: madwifi-ng-r2568-20070710/ath/if_ath.c
2 ===================================================================
3 --- madwifi-ng-r2568-20070710.orig/ath/if_ath.c 2007-07-23 01:48:40.726301028 +0200
4 +++ madwifi-ng-r2568-20070710/ath/if_ath.c      2007-07-23 01:48:41.230329754 +0200
5 @@ -5732,7 +5732,8 @@
6                  * frame; it'll be dropped where it's not wanted.
7                  */
8                 if (rs->rs_keyix != HAL_RXKEYIX_INVALID &&
9 -                   (ni = sc->sc_keyixmap[rs->rs_keyix]) != NULL) {
10 +                   ((ni = sc->sc_keyixmap[rs->rs_keyix]) != NULL) &&
11 +                       ieee80211_check_rxnode(ni, (const struct ieee80211_frame_min *) skb->data)) {
12                         struct ath_node *an;
13                         /*
14                          * Fast path: node is present in the key map;
15 Index: madwifi-ng-r2568-20070710/net80211/ieee80211_node.c
16 ===================================================================
17 --- madwifi-ng-r2568-20070710.orig/net80211/ieee80211_node.c    2007-07-23 01:48:38.458171774 +0200
18 +++ madwifi-ng-r2568-20070710/net80211/ieee80211_node.c 2007-07-23 01:48:41.230329754 +0200
19 @@ -1271,8 +1271,6 @@
20         IEEE80211_NODE_TABLE_UNLOCK_IRQ(nt);
21  
22         return ni;
23 -#undef IS_PSPOLL
24 -#undef IS_CTL
25  }
26  #ifdef IEEE80211_DEBUG_REFCNT
27  EXPORT_SYMBOL(ieee80211_find_rxnode_debug);
28 @@ -1280,6 +1278,20 @@
29  EXPORT_SYMBOL(ieee80211_find_rxnode);
30  #endif
31  
32 +int
33 +ieee80211_check_rxnode(struct ieee80211_node *ni,
34 +       const struct ieee80211_frame_min *wh)
35 +{
36 +       if (IS_CTL(wh) && !IS_PSPOLL(wh) /*&& !IS_RTS(ah)*/)
37 +               return IEEE80211_ADDR_EQ(ni->ni_macaddr, wh->i_addr1);
38 +       else
39 +               return IEEE80211_ADDR_EQ(ni->ni_macaddr, wh->i_addr2);
40 +}
41 +
42 +EXPORT_SYMBOL(ieee80211_check_rxnode);
43 +#undef IS_PSPOLL
44 +#undef IS_CTL
45 +
46  /*
47   * Return a reference to the appropriate node for sending
48   * a data frame.  This handles node discovery in adhoc networks.
49 Index: madwifi-ng-r2568-20070710/net80211/ieee80211_node.h
50 ===================================================================
51 --- madwifi-ng-r2568-20070710.orig/net80211/ieee80211_node.h    2007-07-23 01:48:38.466172232 +0200
52 +++ madwifi-ng-r2568-20070710/net80211/ieee80211_node.h 2007-07-23 01:48:41.254331120 +0200
53 @@ -328,6 +328,8 @@
54         *pni = NULL;                    /* guard against use */
55  }
56  
57 +int ieee80211_check_rxnode(struct ieee80211_node *ni,
58 +       const struct ieee80211_frame_min *wh);
59  int ieee80211_add_wds_addr(struct ieee80211_node_table *, struct ieee80211_node *,
60         const u_int8_t *, u_int8_t);
61  void ieee80211_remove_wds_addr(struct ieee80211_node_table *, const u_int8_t *);