1 diff -urN madwifi-ng-r2377-20070526.old/ath/if_ath.c madwifi-ng-r2377-20070526.dev/ath/if_ath.c
2 --- madwifi-ng-r2377-20070526.old/ath/if_ath.c 2007-05-26 18:51:09.532638360 +0200
3 +++ madwifi-ng-r2377-20070526.dev/ath/if_ath.c 2007-05-26 18:51:09.544636536 +0200
6 u_int processed = 0, early_stop = 0;
7 u_int rx_limit = dev->quota;
10 /* Let the 802.11 layer know about the new noise floor */
11 sc->sc_channoise = ath_hal_get_channel_noise(ah, &(sc->sc_curchan));
12 @@ -5703,31 +5704,16 @@
14 if (rs->rs_status & HAL_RXERR_MIC) {
15 sc->sc_stats.ast_rx_badmic++;
17 - * Do minimal work required to hand off
18 - * the 802.11 header for notification.
20 - /* XXX frag's and QoS frames */
21 - len = rs->rs_datalen;
22 - if (len >= sizeof (struct ieee80211_frame)) {
23 - bus_dma_sync_single(sc->sc_bdev,
24 - bf->bf_skbaddr, len,
25 - BUS_DMA_FROMDEVICE);
27 -/* XXX revalidate MIC, lookup ni to find VAP */
28 - ieee80211_notify_michael_failure(ic,
29 - (struct ieee80211_frame *) skb->data,
31 - rs->rs_keyix - 32 : rs->rs_keyix
38 * Reject error frames if we have no vaps that
39 * are operating in monitor mode.
41 - if(sc->sc_nmonvaps == 0) goto rx_next;
42 + if ((rs->rs_status & ~HAL_RXERR_MIC) &&
43 + ((rs->rs_status &~ HAL_RXERR_DECRYPT) ||
44 + (sc->sc_ic.ic_opmode != IEEE80211_M_MONITOR)))
49 @@ -5811,6 +5797,20 @@
53 + /* MIC failure. Drop the packet in any case */
55 + ni = ieee80211_find_rxnode(ic,
56 + (const struct ieee80211_frame_min *) skb->data);
58 + ieee80211_check_mic(ni, skb);
59 + ieee80211_unref_node(&ni);
61 + dev_kfree_skb_any(skb);
68 * Locate the node for sender, track state, and then
69 * pass the (referenced) node up to the 802.11 layer
70 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_ccmp.c madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_ccmp.c
71 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_ccmp.c 2007-05-17 00:13:10.000000000 +0200
72 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_ccmp.c 2007-05-26 18:51:09.545636384 +0200
74 static int ccmp_encap(struct ieee80211_key *, struct sk_buff *, u_int8_t);
75 static int ccmp_decap(struct ieee80211_key *, struct sk_buff *, int);
76 static int ccmp_enmic(struct ieee80211_key *, struct sk_buff *, int);
77 -static int ccmp_demic(struct ieee80211_key *, struct sk_buff *, int);
78 +static int ccmp_demic(struct ieee80211_key *, struct sk_buff *, int, int);
80 static const struct ieee80211_cipher ccmp = {
83 * Verify and strip MIC from the frame.
86 -ccmp_demic(struct ieee80211_key *k, struct sk_buff *skb, int hdrlen)
87 +ccmp_demic(struct ieee80211_key *k, struct sk_buff *skb, int hdrlen, int force)
91 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto.h madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto.h
92 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto.h 2007-04-16 14:32:29.000000000 +0200
93 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto.h 2007-05-26 18:51:09.545636384 +0200
95 int (*ic_encap)(struct ieee80211_key *, struct sk_buff *, u_int8_t);
96 int (*ic_decap)(struct ieee80211_key *, struct sk_buff *, int);
97 int (*ic_enmic)(struct ieee80211_key *, struct sk_buff *, int);
98 - int (*ic_demic)(struct ieee80211_key *, struct sk_buff *, int);
99 + int (*ic_demic)(struct ieee80211_key *, struct sk_buff *, int, int);
101 extern const struct ieee80211_cipher ieee80211_cipher_none;
103 @@ -163,10 +163,10 @@
106 ieee80211_crypto_demic(struct ieee80211vap *vap, struct ieee80211_key *k,
107 - struct sk_buff *skb, int hdrlen)
108 + struct sk_buff *skb, int hdrlen, int force)
110 const struct ieee80211_cipher *cip = k->wk_cipher;
111 - return (cip->ic_miclen > 0 ? cip->ic_demic(k, skb, hdrlen) : 1);
112 + return (cip->ic_miclen > 0 ? cip->ic_demic(k, skb, hdrlen, force) : 1);
116 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_none.c madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_none.c
117 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_none.c 2006-09-20 10:45:13.000000000 +0200
118 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_none.c 2007-05-26 18:51:09.545636384 +0200
120 static int none_encap(struct ieee80211_key *, struct sk_buff *, u_int8_t);
121 static int none_decap(struct ieee80211_key *, struct sk_buff *, int);
122 static int none_enmic(struct ieee80211_key *, struct sk_buff *, int);
123 -static int none_demic(struct ieee80211_key *, struct sk_buff *, int);
124 +static int none_demic(struct ieee80211_key *, struct sk_buff *, int, int);
126 const struct ieee80211_cipher ieee80211_cipher_none = {
132 -none_demic(struct ieee80211_key *k, struct sk_buff *skb, int hdrlen)
133 +none_demic(struct ieee80211_key *k, struct sk_buff *skb, int hdrlen, int force)
135 struct ieee80211vap *vap = k->wk_private;
137 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_tkip.c madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_tkip.c
138 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_tkip.c 2007-05-17 00:13:10.000000000 +0200
139 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_tkip.c 2007-05-26 18:51:09.546636232 +0200
141 static int tkip_encap(struct ieee80211_key *, struct sk_buff *, u_int8_t);
142 static int tkip_enmic(struct ieee80211_key *, struct sk_buff *, int);
143 static int tkip_decap(struct ieee80211_key *, struct sk_buff *, int);
144 -static int tkip_demic(struct ieee80211_key *, struct sk_buff *, int);
145 +static int tkip_demic(struct ieee80211_key *, struct sk_buff *, int, int);
147 static const struct ieee80211_cipher tkip = {
150 * Verify and strip MIC from the frame.
153 -tkip_demic(struct ieee80211_key *k, struct sk_buff *skb0, int hdrlen)
154 +tkip_demic(struct ieee80211_key *k, struct sk_buff *skb0, int hdrlen, int force)
156 struct tkip_ctx *ctx = k->wk_private;
160 wh = (struct ieee80211_frame *) skb0->data;
161 /* NB: skb left pointing at last in chain */
162 - if (k->wk_flags & IEEE80211_KEY_SWMIC) {
163 + if ((k->wk_flags & IEEE80211_KEY_SWMIC) || force) {
164 struct ieee80211vap *vap = ctx->tc_vap;
165 u8 mic[IEEE80211_WEP_MICLEN];
166 u8 mic0[IEEE80211_WEP_MICLEN];
167 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_wep.c madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_wep.c
168 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_crypto_wep.c 2006-09-20 10:45:13.000000000 +0200
169 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_crypto_wep.c 2007-05-26 18:51:09.547636080 +0200
171 static int wep_encap(struct ieee80211_key *, struct sk_buff *, u_int8_t);
172 static int wep_decap(struct ieee80211_key *, struct sk_buff *, int);
173 static int wep_enmic(struct ieee80211_key *, struct sk_buff *, int);
174 -static int wep_demic(struct ieee80211_key *, struct sk_buff *, int);
175 +static int wep_demic(struct ieee80211_key *, struct sk_buff *, int, int);
177 static const struct ieee80211_cipher wep = {
180 * Verify and strip MIC from the frame.
183 -wep_demic(struct ieee80211_key *k, struct sk_buff *skb, int hdrlen)
184 +wep_demic(struct ieee80211_key *k, struct sk_buff *skb, int hdrlen, int force)
188 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_input.c madwifi-ng-r2377-20070526.dev/net80211/ieee80211_input.c
189 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_input.c 2007-05-26 18:51:09.534638056 +0200
190 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_input.c 2007-05-26 18:51:09.548635928 +0200
192 * Next strip any MSDU crypto bits.
195 - !ieee80211_crypto_demic(vap, key, skb, hdrspace)) {
196 + !ieee80211_crypto_demic(vap, key, skb, hdrspace, 0)) {
197 IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT,
198 ni->ni_macaddr, "data", "%s", "demic error");
199 IEEE80211_NODE_STAT(ni, rx_demicfail);
200 @@ -3789,6 +3789,47 @@
205 + * Process a frame w/ hw detected MIC failure.
206 + * The frame will be dropped in any case.
209 +ieee80211_check_mic(struct ieee80211_node *ni, struct sk_buff *skb)
211 + struct ieee80211vap *vap = ni->ni_vap;
213 + struct ieee80211_frame *wh;
214 + struct ieee80211_key *key;
216 + struct ieee80211com *ic = vap->iv_ic;
218 + if (skb->len < sizeof(struct ieee80211_frame_min)) {
219 + IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_ANY,
220 + ni->ni_macaddr, NULL,
221 + "too short (1): len %u", skb->len);
222 + vap->iv_stats.is_rx_tooshort++;
226 + wh = (struct ieee80211_frame *)skb->data;
228 + hdrspace = ieee80211_hdrspace(ic, wh);
229 + key = ieee80211_crypto_decap(ni, skb, hdrspace);
231 + /* NB: stats+msgs handled in crypto_decap */
232 + IEEE80211_NODE_STAT(ni, rx_wepfail);
236 + if (!ieee80211_crypto_demic(vap, key, skb, hdrspace, 1)) {
237 + IEEE80211_DISCARD_MAC(vap, IEEE80211_MSG_INPUT,
238 + ni->ni_macaddr, "data", "%s", "demic error");
239 + IEEE80211_NODE_STAT(ni, rx_demicfail);
243 +EXPORT_SYMBOL(ieee80211_check_mic);
245 #ifdef IEEE80211_DEBUG
248 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_linux.c madwifi-ng-r2377-20070526.dev/net80211/ieee80211_linux.c
249 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_linux.c 2007-05-21 17:53:39.000000000 +0200
250 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_linux.c 2007-05-26 18:51:09.549635776 +0200
253 /* TODO: needed parameters: count, keyid, key type, src address, TSC */
254 snprintf(buf, sizeof(buf), "%s(keyid=%d %scast addr=%s)", tag,
255 - keyix, IEEE80211_IS_MULTICAST(wh->i_addr1) ? "broad" : "uni",
256 - ether_sprintf(wh->i_addr1));
257 + keyix, IEEE80211_IS_MULTICAST(wh->i_addr2) ? "broad" : "uni",
258 + ether_sprintf(wh->i_addr2));
259 memset(&wrqu, 0, sizeof(wrqu));
260 wrqu.data.length = strlen(buf);
261 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
262 diff -urN madwifi-ng-r2377-20070526.old/net80211/ieee80211_proto.h madwifi-ng-r2377-20070526.dev/net80211/ieee80211_proto.h
263 --- madwifi-ng-r2377-20070526.old/net80211/ieee80211_proto.h 2007-05-26 18:51:09.321670432 +0200
264 +++ madwifi-ng-r2377-20070526.dev/net80211/ieee80211_proto.h 2007-05-26 18:51:09.549635776 +0200
266 void ieee80211_set11gbasicrates(struct ieee80211_rateset *, enum ieee80211_phymode);
267 enum ieee80211_phymode ieee80211_get11gbasicrates(struct ieee80211_rateset *);
268 void ieee80211_send_pspoll(struct ieee80211_node *);
269 +void ieee80211_check_mic(struct ieee80211_node *, struct sk_buff *);
272 * Return the size of the 802.11 header for a management or data frame.