blob: 64f2b2871282b7b43eb74cef20c0e64d163f263a [file] [log] [blame]
Johannes Bergaf6b6372009-12-23 13:15:35 +01001/*
2 * mac80211 work implementation
3 *
4 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
5 * Copyright 2004, Instant802 Networks, Inc.
6 * Copyright 2005, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2009, Johannes Berg <johannes@sipsolutions.net>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/delay.h>
17#include <linux/if_ether.h>
18#include <linux/skbuff.h>
19#include <linux/if_arp.h>
20#include <linux/etherdevice.h>
21#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Johannes Bergaf6b6372009-12-23 13:15:35 +010023#include <net/mac80211.h>
24#include <asm/unaligned.h>
25
26#include "ieee80211_i.h"
27#include "rate.h"
28
29#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
30#define IEEE80211_AUTH_MAX_TRIES 3
31#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
32#define IEEE80211_ASSOC_MAX_TRIES 3
33#define IEEE80211_MAX_PROBE_TRIES 5
34
35enum work_action {
Johannes Bergb8d92c92010-05-11 12:42:04 +020036 WORK_ACT_MISMATCH,
Johannes Bergaf6b6372009-12-23 13:15:35 +010037 WORK_ACT_NONE,
38 WORK_ACT_TIMEOUT,
39 WORK_ACT_DONE,
40};
41
42
43/* utils */
44static inline void ASSERT_WORK_MTX(struct ieee80211_local *local)
45{
Johannes Berga1699b72010-07-30 16:46:07 +020046 lockdep_assert_held(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +010047}
48
49/*
50 * We can have multiple work items (and connection probing)
51 * scheduling this timer, but we need to take care to only
52 * reschedule it when it should fire _earlier_ than it was
53 * asked for before, or if it's not pending right now. This
54 * function ensures that. Note that it then is required to
55 * run this function for all timeouts after the first one
56 * has happened -- the work that runs from this timer will
57 * do that.
58 */
59static void run_again(struct ieee80211_local *local,
60 unsigned long timeout)
61{
62 ASSERT_WORK_MTX(local);
63
64 if (!timer_pending(&local->work_timer) ||
65 time_before(timeout, local->work_timer.expires))
66 mod_timer(&local->work_timer, timeout);
67}
68
69static void work_free_rcu(struct rcu_head *head)
70{
71 struct ieee80211_work *wk =
72 container_of(head, struct ieee80211_work, rcu_head);
73
74 kfree(wk);
75}
76
77void free_work(struct ieee80211_work *wk)
78{
79 call_rcu(&wk->rcu_head, work_free_rcu);
80}
81
82static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
83 struct ieee80211_supported_band *sband,
84 u32 *rates)
85{
86 int i, j, count;
87 *rates = 0;
88 count = 0;
89 for (i = 0; i < supp_rates_len; i++) {
90 int rate = (supp_rates[i] & 0x7F) * 5;
91
92 for (j = 0; j < sband->n_bitrates; j++)
93 if (sband->bitrates[j].bitrate == rate) {
94 *rates |= BIT(j);
95 count++;
96 break;
97 }
98 }
99
100 return count;
101}
102
103/* frame sending functions */
104
Johannes Berg77c81442009-12-23 13:15:37 +0100105static void ieee80211_add_ht_ie(struct sk_buff *skb, const u8 *ht_info_ie,
106 struct ieee80211_supported_band *sband,
107 struct ieee80211_channel *channel,
108 enum ieee80211_smps_mode smps)
109{
110 struct ieee80211_ht_info *ht_info;
111 u8 *pos;
112 u32 flags = channel->flags;
113 u16 cap = sband->ht_cap.cap;
114 __le16 tmp;
115
116 if (!sband->ht_cap.ht_supported)
117 return;
118
119 if (!ht_info_ie)
120 return;
121
122 if (ht_info_ie[1] < sizeof(struct ieee80211_ht_info))
123 return;
124
125 ht_info = (struct ieee80211_ht_info *)(ht_info_ie + 2);
126
127 /* determine capability flags */
128
129 if (ieee80211_disable_40mhz_24ghz &&
130 sband->band == IEEE80211_BAND_2GHZ) {
131 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
132 cap &= ~IEEE80211_HT_CAP_SGI_40;
133 }
134
135 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
136 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
137 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
138 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
139 cap &= ~IEEE80211_HT_CAP_SGI_40;
140 }
141 break;
142 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
143 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
144 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
145 cap &= ~IEEE80211_HT_CAP_SGI_40;
146 }
147 break;
148 }
149
150 /* set SM PS mode properly */
151 cap &= ~IEEE80211_HT_CAP_SM_PS;
152 switch (smps) {
153 case IEEE80211_SMPS_AUTOMATIC:
154 case IEEE80211_SMPS_NUM_MODES:
155 WARN_ON(1);
156 case IEEE80211_SMPS_OFF:
157 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
158 IEEE80211_HT_CAP_SM_PS_SHIFT;
159 break;
160 case IEEE80211_SMPS_STATIC:
161 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
162 IEEE80211_HT_CAP_SM_PS_SHIFT;
163 break;
164 case IEEE80211_SMPS_DYNAMIC:
165 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
166 IEEE80211_HT_CAP_SM_PS_SHIFT;
167 break;
168 }
169
170 /* reserve and fill IE */
171
172 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
173 *pos++ = WLAN_EID_HT_CAPABILITY;
174 *pos++ = sizeof(struct ieee80211_ht_cap);
175 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
176
177 /* capability flags */
178 tmp = cpu_to_le16(cap);
179 memcpy(pos, &tmp, sizeof(u16));
180 pos += sizeof(u16);
181
182 /* AMPDU parameters */
183 *pos++ = sband->ht_cap.ampdu_factor |
184 (sband->ht_cap.ampdu_density <<
185 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
186
187 /* MCS set */
188 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
189 pos += sizeof(sband->ht_cap.mcs);
190
191 /* extended capabilities */
192 pos += sizeof(__le16);
193
194 /* BF capabilities */
195 pos += sizeof(__le32);
196
197 /* antenna selection */
198 pos += sizeof(u8);
199}
200
Johannes Bergaf6b6372009-12-23 13:15:35 +0100201static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
202 struct ieee80211_work *wk)
203{
204 struct ieee80211_local *local = sdata->local;
205 struct sk_buff *skb;
206 struct ieee80211_mgmt *mgmt;
Kalle Valoab133152010-01-12 10:42:31 +0200207 u8 *pos, qos_info;
Johannes Berg77c81442009-12-23 13:15:37 +0100208 const u8 *ies;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100209 size_t offset = 0, noffset;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100210 int i, len, count, rates_len, supp_rates_len;
211 u16 capab;
212 struct ieee80211_supported_band *sband;
213 u32 rates = 0;
214
Johannes Berg77c81442009-12-23 13:15:37 +0100215 sband = local->hw.wiphy->bands[wk->chan->band];
216
Stanislaw Gruszka76f27362010-04-28 17:03:15 +0200217 if (wk->assoc.supp_rates_len) {
218 /*
219 * Get all rates supported by the device and the AP as
220 * some APs don't like getting a superset of their rates
221 * in the association request (e.g. D-Link DAP 1353 in
222 * b-only mode)...
223 */
224 rates_len = ieee80211_compatible_rates(wk->assoc.supp_rates,
225 wk->assoc.supp_rates_len,
226 sband, &rates);
227 } else {
228 /*
229 * In case AP not provide any supported rates information
230 * before association, we send information element(s) with
231 * all rates that we support.
232 */
233 rates = ~0;
234 rates_len = sband->n_bitrates;
235 }
Johannes Berg77c81442009-12-23 13:15:37 +0100236
237 skb = alloc_skb(local->hw.extra_tx_headroom +
238 sizeof(*mgmt) + /* bit too much but doesn't matter */
239 2 + wk->assoc.ssid_len + /* SSID */
240 4 + rates_len + /* (extended) rates */
241 4 + /* power capability */
242 2 + 2 * sband->n_channels + /* supported channels */
243 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
244 wk->ie_len + /* extra IEs */
245 9, /* WMM */
246 GFP_KERNEL);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100247 if (!skb) {
248 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
249 "frame\n", sdata->name);
250 return;
251 }
252 skb_reserve(skb, local->hw.extra_tx_headroom);
253
Johannes Bergaf6b6372009-12-23 13:15:35 +0100254 capab = WLAN_CAPABILITY_ESS;
255
256 if (sband->band == IEEE80211_BAND_2GHZ) {
257 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
258 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
259 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
260 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
261 }
262
263 if (wk->assoc.capability & WLAN_CAPABILITY_PRIVACY)
264 capab |= WLAN_CAPABILITY_PRIVACY;
265
Johannes Bergaf6b6372009-12-23 13:15:35 +0100266 if ((wk->assoc.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
267 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
268 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
269
270 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
271 memset(mgmt, 0, 24);
272 memcpy(mgmt->da, wk->filter_ta, ETH_ALEN);
273 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
274 memcpy(mgmt->bssid, wk->filter_ta, ETH_ALEN);
275
276 if (!is_zero_ether_addr(wk->assoc.prev_bssid)) {
277 skb_put(skb, 10);
278 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
279 IEEE80211_STYPE_REASSOC_REQ);
280 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
281 mgmt->u.reassoc_req.listen_interval =
282 cpu_to_le16(local->hw.conf.listen_interval);
283 memcpy(mgmt->u.reassoc_req.current_ap, wk->assoc.prev_bssid,
284 ETH_ALEN);
285 } else {
286 skb_put(skb, 4);
287 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
288 IEEE80211_STYPE_ASSOC_REQ);
289 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
290 mgmt->u.assoc_req.listen_interval =
291 cpu_to_le16(local->hw.conf.listen_interval);
292 }
293
294 /* SSID */
295 ies = pos = skb_put(skb, 2 + wk->assoc.ssid_len);
296 *pos++ = WLAN_EID_SSID;
297 *pos++ = wk->assoc.ssid_len;
298 memcpy(pos, wk->assoc.ssid, wk->assoc.ssid_len);
299
300 /* add all rates which were marked to be used above */
301 supp_rates_len = rates_len;
302 if (supp_rates_len > 8)
303 supp_rates_len = 8;
304
305 len = sband->n_bitrates;
306 pos = skb_put(skb, supp_rates_len + 2);
307 *pos++ = WLAN_EID_SUPP_RATES;
308 *pos++ = supp_rates_len;
309
310 count = 0;
311 for (i = 0; i < sband->n_bitrates; i++) {
312 if (BIT(i) & rates) {
313 int rate = sband->bitrates[i].bitrate;
314 *pos++ = (u8) (rate / 5);
315 if (++count == 8)
316 break;
317 }
318 }
319
320 if (rates_len > count) {
321 pos = skb_put(skb, rates_len - count + 2);
322 *pos++ = WLAN_EID_EXT_SUPP_RATES;
323 *pos++ = rates_len - count;
324
325 for (i++; i < sband->n_bitrates; i++) {
326 if (BIT(i) & rates) {
327 int rate = sband->bitrates[i].bitrate;
328 *pos++ = (u8) (rate / 5);
329 }
330 }
331 }
332
333 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
334 /* 1. power capabilities */
335 pos = skb_put(skb, 4);
336 *pos++ = WLAN_EID_PWR_CAPABILITY;
337 *pos++ = 2;
338 *pos++ = 0; /* min tx power */
Johannes Berg77c81442009-12-23 13:15:37 +0100339 *pos++ = wk->chan->max_power; /* max tx power */
Johannes Bergaf6b6372009-12-23 13:15:35 +0100340
341 /* 2. supported channels */
342 /* TODO: get this in reg domain format */
343 pos = skb_put(skb, 2 * sband->n_channels + 2);
344 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
345 *pos++ = 2 * sband->n_channels;
346 for (i = 0; i < sband->n_channels; i++) {
347 *pos++ = ieee80211_frequency_to_channel(
348 sband->channels[i].center_freq);
349 *pos++ = 1; /* one channel in the subband*/
350 }
351 }
352
Johannes Berg8e664fb2009-12-23 13:15:38 +0100353 /* if present, add any custom IEs that go before HT */
Johannes Bergaf6b6372009-12-23 13:15:35 +0100354 if (wk->ie_len && wk->ie) {
Johannes Berg8e664fb2009-12-23 13:15:38 +0100355 static const u8 before_ht[] = {
356 WLAN_EID_SSID,
357 WLAN_EID_SUPP_RATES,
358 WLAN_EID_EXT_SUPP_RATES,
359 WLAN_EID_PWR_CAPABILITY,
360 WLAN_EID_SUPPORTED_CHANNELS,
361 WLAN_EID_RSN,
362 WLAN_EID_QOS_CAPA,
363 WLAN_EID_RRM_ENABLED_CAPABILITIES,
364 WLAN_EID_MOBILITY_DOMAIN,
365 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
366 };
367 noffset = ieee80211_ie_split(wk->ie, wk->ie_len,
368 before_ht, ARRAY_SIZE(before_ht),
369 offset);
370 pos = skb_put(skb, noffset - offset);
371 memcpy(pos, wk->ie + offset, noffset - offset);
372 offset = noffset;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100373 }
374
Johannes Berg77c81442009-12-23 13:15:37 +0100375 if (wk->assoc.use_11n && wk->assoc.wmm_used &&
376 local->hw.queues >= 4)
377 ieee80211_add_ht_ie(skb, wk->assoc.ht_information_ie,
378 sband, wk->chan, wk->assoc.smps);
379
Johannes Berg8e664fb2009-12-23 13:15:38 +0100380 /* if present, add any custom non-vendor IEs that go after HT */
381 if (wk->ie_len && wk->ie) {
382 noffset = ieee80211_ie_split_vendor(wk->ie, wk->ie_len,
383 offset);
384 pos = skb_put(skb, noffset - offset);
385 memcpy(pos, wk->ie + offset, noffset - offset);
386 offset = noffset;
387 }
388
Johannes Bergaf6b6372009-12-23 13:15:35 +0100389 if (wk->assoc.wmm_used && local->hw.queues >= 4) {
Kalle Valoab133152010-01-12 10:42:31 +0200390 if (wk->assoc.uapsd_used) {
Kalle Valo50ae0cf2010-01-12 10:42:39 +0200391 qos_info = local->uapsd_queues;
392 qos_info |= (local->uapsd_max_sp_len <<
Kalle Valoab133152010-01-12 10:42:31 +0200393 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
394 } else {
395 qos_info = 0;
396 }
397
Johannes Bergaf6b6372009-12-23 13:15:35 +0100398 pos = skb_put(skb, 9);
399 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
400 *pos++ = 7; /* len */
401 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
402 *pos++ = 0x50;
403 *pos++ = 0xf2;
404 *pos++ = 2; /* WME */
405 *pos++ = 0; /* WME info */
406 *pos++ = 1; /* WME ver */
Kalle Valoab133152010-01-12 10:42:31 +0200407 *pos++ = qos_info;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100408 }
409
Johannes Berg8e664fb2009-12-23 13:15:38 +0100410 /* add any remaining custom (i.e. vendor specific here) IEs */
411 if (wk->ie_len && wk->ie) {
412 noffset = wk->ie_len;
413 pos = skb_put(skb, noffset - offset);
414 memcpy(pos, wk->ie + offset, noffset - offset);
415 }
416
Johannes Bergaf6b6372009-12-23 13:15:35 +0100417 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
418 ieee80211_tx_skb(sdata, skb);
419}
420
421static void ieee80211_remove_auth_bss(struct ieee80211_local *local,
422 struct ieee80211_work *wk)
423{
424 struct cfg80211_bss *cbss;
425 u16 capa_val = WLAN_CAPABILITY_ESS;
426
427 if (wk->probe_auth.privacy)
428 capa_val |= WLAN_CAPABILITY_PRIVACY;
429
430 cbss = cfg80211_get_bss(local->hw.wiphy, wk->chan, wk->filter_ta,
431 wk->probe_auth.ssid, wk->probe_auth.ssid_len,
432 WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY,
433 capa_val);
434 if (!cbss)
435 return;
436
437 cfg80211_unlink_bss(local->hw.wiphy, cbss);
438 cfg80211_put_bss(cbss);
439}
440
441static enum work_action __must_check
442ieee80211_direct_probe(struct ieee80211_work *wk)
443{
444 struct ieee80211_sub_if_data *sdata = wk->sdata;
445 struct ieee80211_local *local = sdata->local;
446
447 wk->probe_auth.tries++;
448 if (wk->probe_auth.tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100449 printk(KERN_DEBUG "%s: direct probe to %pM timed out\n",
Johannes Bergaf6b6372009-12-23 13:15:35 +0100450 sdata->name, wk->filter_ta);
451
452 /*
453 * Most likely AP is not in the range so remove the
454 * bss struct for that AP.
455 */
456 ieee80211_remove_auth_bss(local, wk);
457
Johannes Bergaf6b6372009-12-23 13:15:35 +0100458 return WORK_ACT_TIMEOUT;
459 }
460
Ben Greear2f886752010-12-07 11:27:01 -0800461 printk(KERN_DEBUG "%s: direct probe to %pM (try %d/%i)\n",
462 sdata->name, wk->filter_ta, wk->probe_auth.tries,
463 IEEE80211_AUTH_MAX_TRIES);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100464
465 /*
466 * Direct probe is sent to broadcast address as some APs
467 * will not answer to direct packet in unassociated state.
468 */
469 ieee80211_send_probe_req(sdata, NULL, wk->probe_auth.ssid,
470 wk->probe_auth.ssid_len, NULL, 0);
471
472 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
473 run_again(local, wk->timeout);
474
475 return WORK_ACT_NONE;
476}
477
478
479static enum work_action __must_check
480ieee80211_authenticate(struct ieee80211_work *wk)
481{
482 struct ieee80211_sub_if_data *sdata = wk->sdata;
483 struct ieee80211_local *local = sdata->local;
484
485 wk->probe_auth.tries++;
486 if (wk->probe_auth.tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100487 printk(KERN_DEBUG "%s: authentication with %pM"
Johannes Bergaf6b6372009-12-23 13:15:35 +0100488 " timed out\n", sdata->name, wk->filter_ta);
489
490 /*
491 * Most likely AP is not in the range so remove the
492 * bss struct for that AP.
493 */
494 ieee80211_remove_auth_bss(local, wk);
495
Johannes Bergaf6b6372009-12-23 13:15:35 +0100496 return WORK_ACT_TIMEOUT;
497 }
498
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100499 printk(KERN_DEBUG "%s: authenticate with %pM (try %d)\n",
Johannes Bergaf6b6372009-12-23 13:15:35 +0100500 sdata->name, wk->filter_ta, wk->probe_auth.tries);
501
502 ieee80211_send_auth(sdata, 1, wk->probe_auth.algorithm, wk->ie,
503 wk->ie_len, wk->filter_ta, NULL, 0, 0);
504 wk->probe_auth.transaction = 2;
505
506 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
507 run_again(local, wk->timeout);
508
509 return WORK_ACT_NONE;
510}
511
512static enum work_action __must_check
513ieee80211_associate(struct ieee80211_work *wk)
514{
515 struct ieee80211_sub_if_data *sdata = wk->sdata;
516 struct ieee80211_local *local = sdata->local;
517
518 wk->assoc.tries++;
519 if (wk->assoc.tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100520 printk(KERN_DEBUG "%s: association with %pM"
Johannes Bergaf6b6372009-12-23 13:15:35 +0100521 " timed out\n",
522 sdata->name, wk->filter_ta);
523
524 /*
525 * Most likely AP is not in the range so remove the
526 * bss struct for that AP.
527 */
528 if (wk->assoc.bss)
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100529 cfg80211_unlink_bss(local->hw.wiphy, wk->assoc.bss);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100530
Johannes Bergaf6b6372009-12-23 13:15:35 +0100531 return WORK_ACT_TIMEOUT;
532 }
533
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100534 printk(KERN_DEBUG "%s: associate with %pM (try %d)\n",
Johannes Bergaf6b6372009-12-23 13:15:35 +0100535 sdata->name, wk->filter_ta, wk->assoc.tries);
536 ieee80211_send_assoc(sdata, wk);
537
538 wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
539 run_again(local, wk->timeout);
540
541 return WORK_ACT_NONE;
542}
543
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100544static enum work_action __must_check
545ieee80211_remain_on_channel_timeout(struct ieee80211_work *wk)
546{
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100547 /*
548 * First time we run, do nothing -- the generic code will
549 * have switched to the right channel etc.
550 */
Johannes Berg723bae72010-01-25 13:36:36 +0100551 if (!wk->started) {
Johannes Berge4da8c32009-12-23 13:15:43 +0100552 wk->timeout = jiffies + msecs_to_jiffies(wk->remain.duration);
553
Kalle Valo1990ca62009-12-30 14:42:20 +0200554 cfg80211_ready_on_channel(wk->sdata->dev, (unsigned long) wk,
555 wk->chan, wk->chan_type,
556 wk->remain.duration, GFP_KERNEL);
Johannes Berge4da8c32009-12-23 13:15:43 +0100557
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100558 return WORK_ACT_NONE;
559 }
560
Johannes Berge4da8c32009-12-23 13:15:43 +0100561 return WORK_ACT_TIMEOUT;
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100562}
563
Johannes Berge5b900d2010-07-29 16:08:55 +0200564static enum work_action __must_check
Johannes Bergf30221e2010-11-25 10:02:30 +0100565ieee80211_offchannel_tx(struct ieee80211_work *wk)
566{
567 if (!wk->started) {
568 wk->timeout = jiffies + msecs_to_jiffies(wk->offchan_tx.wait);
569
570 /*
571 * After this, offchan_tx.frame remains but now is no
572 * longer a valid pointer -- we still need it as the
573 * cookie for canceling this work.
574 */
575 ieee80211_tx_skb(wk->sdata, wk->offchan_tx.frame);
576
577 return WORK_ACT_NONE;
578 }
579
580 return WORK_ACT_TIMEOUT;
581}
582
583static enum work_action __must_check
Johannes Berge5b900d2010-07-29 16:08:55 +0200584ieee80211_assoc_beacon_wait(struct ieee80211_work *wk)
585{
586 if (wk->started)
587 return WORK_ACT_TIMEOUT;
588
589 /*
590 * Wait up to one beacon interval ...
591 * should this be more if we miss one?
592 */
593 printk(KERN_DEBUG "%s: waiting for beacon from %pM\n",
594 wk->sdata->name, wk->filter_ta);
595 wk->timeout = TU_TO_EXP_TIME(wk->assoc.bss->beacon_interval);
596 return WORK_ACT_NONE;
597}
598
Johannes Bergaf6b6372009-12-23 13:15:35 +0100599static void ieee80211_auth_challenge(struct ieee80211_work *wk,
600 struct ieee80211_mgmt *mgmt,
601 size_t len)
602{
603 struct ieee80211_sub_if_data *sdata = wk->sdata;
604 u8 *pos;
605 struct ieee802_11_elems elems;
606
607 pos = mgmt->u.auth.variable;
608 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
609 if (!elems.challenge)
610 return;
611 ieee80211_send_auth(sdata, 3, wk->probe_auth.algorithm,
612 elems.challenge - 2, elems.challenge_len + 2,
613 wk->filter_ta, wk->probe_auth.key,
614 wk->probe_auth.key_len, wk->probe_auth.key_idx);
615 wk->probe_auth.transaction = 4;
616}
617
618static enum work_action __must_check
619ieee80211_rx_mgmt_auth(struct ieee80211_work *wk,
620 struct ieee80211_mgmt *mgmt, size_t len)
621{
622 u16 auth_alg, auth_transaction, status_code;
623
624 if (wk->type != IEEE80211_WORK_AUTH)
Johannes Bergb8d92c92010-05-11 12:42:04 +0200625 return WORK_ACT_MISMATCH;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100626
627 if (len < 24 + 6)
628 return WORK_ACT_NONE;
629
630 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
631 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
632 status_code = le16_to_cpu(mgmt->u.auth.status_code);
633
634 if (auth_alg != wk->probe_auth.algorithm ||
635 auth_transaction != wk->probe_auth.transaction)
636 return WORK_ACT_NONE;
637
638 if (status_code != WLAN_STATUS_SUCCESS) {
639 printk(KERN_DEBUG "%s: %pM denied authentication (status %d)\n",
640 wk->sdata->name, mgmt->sa, status_code);
641 return WORK_ACT_DONE;
642 }
643
644 switch (wk->probe_auth.algorithm) {
645 case WLAN_AUTH_OPEN:
646 case WLAN_AUTH_LEAP:
647 case WLAN_AUTH_FT:
648 break;
649 case WLAN_AUTH_SHARED_KEY:
650 if (wk->probe_auth.transaction != 4) {
651 ieee80211_auth_challenge(wk, mgmt, len);
652 /* need another frame */
653 return WORK_ACT_NONE;
654 }
655 break;
656 default:
657 WARN_ON(1);
658 return WORK_ACT_NONE;
659 }
660
661 printk(KERN_DEBUG "%s: authenticated\n", wk->sdata->name);
662 return WORK_ACT_DONE;
663}
664
665static enum work_action __must_check
666ieee80211_rx_mgmt_assoc_resp(struct ieee80211_work *wk,
667 struct ieee80211_mgmt *mgmt, size_t len,
668 bool reassoc)
669{
670 struct ieee80211_sub_if_data *sdata = wk->sdata;
671 struct ieee80211_local *local = sdata->local;
672 u16 capab_info, status_code, aid;
673 struct ieee802_11_elems elems;
674 u8 *pos;
675
Johannes Bergb8d92c92010-05-11 12:42:04 +0200676 if (wk->type != IEEE80211_WORK_ASSOC)
677 return WORK_ACT_MISMATCH;
678
Johannes Bergaf6b6372009-12-23 13:15:35 +0100679 /*
680 * AssocResp and ReassocResp have identical structure, so process both
681 * of them in this function.
682 */
683
684 if (len < 24 + 6)
685 return WORK_ACT_NONE;
686
687 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
688 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
689 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
690
691 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
692 "status=%d aid=%d)\n",
693 sdata->name, reassoc ? "Rea" : "A", mgmt->sa,
694 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
695
696 pos = mgmt->u.assoc_resp.variable;
697 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
698
699 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
700 elems.timeout_int && elems.timeout_int_len == 5 &&
701 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
702 u32 tu, ms;
703 tu = get_unaligned_le32(elems.timeout_int + 1);
704 ms = tu * 1024 / 1000;
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100705 printk(KERN_DEBUG "%s: %pM rejected association temporarily; "
Johannes Bergaf6b6372009-12-23 13:15:35 +0100706 "comeback duration %u TU (%u ms)\n",
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100707 sdata->name, mgmt->sa, tu, ms);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100708 wk->timeout = jiffies + msecs_to_jiffies(ms);
709 if (ms > IEEE80211_ASSOC_TIMEOUT)
710 run_again(local, wk->timeout);
711 return WORK_ACT_NONE;
712 }
713
714 if (status_code != WLAN_STATUS_SUCCESS)
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100715 printk(KERN_DEBUG "%s: %pM denied association (code=%d)\n",
716 sdata->name, mgmt->sa, status_code);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100717 else
718 printk(KERN_DEBUG "%s: associated\n", sdata->name);
719
720 return WORK_ACT_DONE;
721}
722
723static enum work_action __must_check
724ieee80211_rx_mgmt_probe_resp(struct ieee80211_work *wk,
725 struct ieee80211_mgmt *mgmt, size_t len,
726 struct ieee80211_rx_status *rx_status)
727{
728 struct ieee80211_sub_if_data *sdata = wk->sdata;
729 struct ieee80211_local *local = sdata->local;
730 size_t baselen;
731
732 ASSERT_WORK_MTX(local);
733
Johannes Bergb8d92c92010-05-11 12:42:04 +0200734 if (wk->type != IEEE80211_WORK_DIRECT_PROBE)
735 return WORK_ACT_MISMATCH;
736
737 if (len < 24 + 12)
738 return WORK_ACT_NONE;
739
Johannes Bergaf6b6372009-12-23 13:15:35 +0100740 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
741 if (baselen > len)
742 return WORK_ACT_NONE;
743
744 printk(KERN_DEBUG "%s: direct probe responded\n", sdata->name);
745 return WORK_ACT_DONE;
746}
747
Johannes Berge5b900d2010-07-29 16:08:55 +0200748static enum work_action __must_check
749ieee80211_rx_mgmt_beacon(struct ieee80211_work *wk,
750 struct ieee80211_mgmt *mgmt, size_t len)
751{
752 struct ieee80211_sub_if_data *sdata = wk->sdata;
753 struct ieee80211_local *local = sdata->local;
754
755 ASSERT_WORK_MTX(local);
756
757 if (wk->type != IEEE80211_WORK_ASSOC_BEACON_WAIT)
758 return WORK_ACT_MISMATCH;
759
760 if (len < 24 + 12)
761 return WORK_ACT_NONE;
762
763 printk(KERN_DEBUG "%s: beacon received\n", sdata->name);
764 return WORK_ACT_DONE;
765}
766
Johannes Bergaf6b6372009-12-23 13:15:35 +0100767static void ieee80211_work_rx_queued_mgmt(struct ieee80211_local *local,
768 struct sk_buff *skb)
769{
770 struct ieee80211_rx_status *rx_status;
771 struct ieee80211_mgmt *mgmt;
772 struct ieee80211_work *wk;
Christoph Fritz021570e2010-06-16 16:37:34 +0200773 enum work_action rma = WORK_ACT_NONE;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100774 u16 fc;
775
776 rx_status = (struct ieee80211_rx_status *) skb->cb;
777 mgmt = (struct ieee80211_mgmt *) skb->data;
778 fc = le16_to_cpu(mgmt->frame_control);
779
Johannes Berga1699b72010-07-30 16:46:07 +0200780 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100781
782 list_for_each_entry(wk, &local->work_list, list) {
783 const u8 *bssid = NULL;
784
785 switch (wk->type) {
786 case IEEE80211_WORK_DIRECT_PROBE:
787 case IEEE80211_WORK_AUTH:
788 case IEEE80211_WORK_ASSOC:
Johannes Berge5b900d2010-07-29 16:08:55 +0200789 case IEEE80211_WORK_ASSOC_BEACON_WAIT:
Johannes Bergaf6b6372009-12-23 13:15:35 +0100790 bssid = wk->filter_ta;
791 break;
792 default:
793 continue;
794 }
795
796 /*
797 * Before queuing, we already verified mgmt->sa,
798 * so this is needed just for matching.
799 */
800 if (compare_ether_addr(bssid, mgmt->bssid))
801 continue;
802
803 switch (fc & IEEE80211_FCTL_STYPE) {
Johannes Berge5b900d2010-07-29 16:08:55 +0200804 case IEEE80211_STYPE_BEACON:
805 rma = ieee80211_rx_mgmt_beacon(wk, mgmt, skb->len);
806 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100807 case IEEE80211_STYPE_PROBE_RESP:
808 rma = ieee80211_rx_mgmt_probe_resp(wk, mgmt, skb->len,
809 rx_status);
810 break;
811 case IEEE80211_STYPE_AUTH:
812 rma = ieee80211_rx_mgmt_auth(wk, mgmt, skb->len);
813 break;
814 case IEEE80211_STYPE_ASSOC_RESP:
815 rma = ieee80211_rx_mgmt_assoc_resp(wk, mgmt,
816 skb->len, false);
817 break;
818 case IEEE80211_STYPE_REASSOC_RESP:
819 rma = ieee80211_rx_mgmt_assoc_resp(wk, mgmt,
820 skb->len, true);
821 break;
822 default:
823 WARN_ON(1);
Johannes Bergb8d92c92010-05-11 12:42:04 +0200824 rma = WORK_ACT_NONE;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100825 }
Johannes Bergb8d92c92010-05-11 12:42:04 +0200826
827 /*
828 * We've either received an unexpected frame, or we have
829 * multiple work items and need to match the frame to the
830 * right one.
831 */
832 if (rma == WORK_ACT_MISMATCH)
833 continue;
834
Johannes Bergaf6b6372009-12-23 13:15:35 +0100835 /*
836 * We've processed this frame for that work, so it can't
837 * belong to another work struct.
838 * NB: this is also required for correctness for 'rma'!
839 */
840 break;
841 }
842
843 switch (rma) {
Johannes Bergb8d92c92010-05-11 12:42:04 +0200844 case WORK_ACT_MISMATCH:
845 /* ignore this unmatched frame */
846 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100847 case WORK_ACT_NONE:
848 break;
849 case WORK_ACT_DONE:
850 list_del_rcu(&wk->list);
851 break;
852 default:
853 WARN(1, "unexpected: %d", rma);
854 }
855
Johannes Berga1699b72010-07-30 16:46:07 +0200856 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100857
858 if (rma != WORK_ACT_DONE)
859 goto out;
860
861 switch (wk->done(wk, skb)) {
862 case WORK_DONE_DESTROY:
863 free_work(wk);
864 break;
865 case WORK_DONE_REQUEUE:
866 synchronize_rcu();
Johannes Berge4da8c32009-12-23 13:15:43 +0100867 wk->started = false; /* restart */
Johannes Berga1699b72010-07-30 16:46:07 +0200868 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100869 list_add_tail(&wk->list, &local->work_list);
Johannes Berga1699b72010-07-30 16:46:07 +0200870 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100871 }
872
873 out:
874 kfree_skb(skb);
875}
876
Ben Greearda2fd1f2011-02-07 13:44:36 -0800877static bool ieee80211_work_ct_coexists(enum nl80211_channel_type wk_ct,
878 enum nl80211_channel_type oper_ct)
879{
880 switch (wk_ct) {
881 case NL80211_CHAN_NO_HT:
882 return true;
883 case NL80211_CHAN_HT20:
884 if (oper_ct != NL80211_CHAN_NO_HT)
885 return true;
886 return false;
887 case NL80211_CHAN_HT40MINUS:
888 case NL80211_CHAN_HT40PLUS:
889 return (wk_ct == oper_ct);
890 }
891 WARN_ON(1); /* shouldn't get here */
892 return false;
893}
894
895static enum nl80211_channel_type
896ieee80211_calc_ct(enum nl80211_channel_type wk_ct,
897 enum nl80211_channel_type oper_ct)
898{
899 switch (wk_ct) {
900 case NL80211_CHAN_NO_HT:
901 return oper_ct;
902 case NL80211_CHAN_HT20:
903 if (oper_ct != NL80211_CHAN_NO_HT)
904 return oper_ct;
905 return wk_ct;
906 case NL80211_CHAN_HT40MINUS:
907 case NL80211_CHAN_HT40PLUS:
908 return wk_ct;
909 }
910 WARN_ON(1); /* shouldn't get here */
911 return wk_ct;
912}
913
914
Johannes Bergaf6b6372009-12-23 13:15:35 +0100915static void ieee80211_work_timer(unsigned long data)
916{
917 struct ieee80211_local *local = (void *) data;
918
919 if (local->quiescing)
920 return;
921
922 ieee80211_queue_work(&local->hw, &local->work_work);
923}
924
925static void ieee80211_work_work(struct work_struct *work)
926{
927 struct ieee80211_local *local =
928 container_of(work, struct ieee80211_local, work_work);
929 struct sk_buff *skb;
930 struct ieee80211_work *wk, *tmp;
931 LIST_HEAD(free_work);
932 enum work_action rma;
Johannes Berge4da8c32009-12-23 13:15:43 +0100933 bool remain_off_channel = false;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100934
935 if (local->scanning)
936 return;
937
938 /*
939 * ieee80211_queue_work() should have picked up most cases,
Walter Goldens77c20612010-05-18 04:44:54 -0700940 * here we'll pick the rest.
Johannes Bergaf6b6372009-12-23 13:15:35 +0100941 */
942 if (WARN(local->suspended, "work scheduled while going to suspend\n"))
943 return;
944
945 /* first process frames to avoid timing out while a frame is pending */
946 while ((skb = skb_dequeue(&local->work_skb_queue)))
947 ieee80211_work_rx_queued_mgmt(local, skb);
948
Johannes Berga1699b72010-07-30 16:46:07 +0200949 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100950
Johannes Berg7da7cc12010-08-05 17:02:38 +0200951 ieee80211_recalc_idle(local);
952
Johannes Bergaf6b6372009-12-23 13:15:35 +0100953 list_for_each_entry_safe(wk, tmp, &local->work_list, list) {
Johannes Berg723bae72010-01-25 13:36:36 +0100954 bool started = wk->started;
955
Johannes Berge4da8c32009-12-23 13:15:43 +0100956 /* mark work as started if it's on the current off-channel */
Johannes Berg723bae72010-01-25 13:36:36 +0100957 if (!started && local->tmp_channel &&
Johannes Berge4da8c32009-12-23 13:15:43 +0100958 wk->chan == local->tmp_channel &&
959 wk->chan_type == local->tmp_channel_type) {
Johannes Berg723bae72010-01-25 13:36:36 +0100960 started = true;
Johannes Berg81ac3462010-01-06 15:30:58 +0100961 wk->timeout = jiffies;
Johannes Berge4da8c32009-12-23 13:15:43 +0100962 }
963
Johannes Berg723bae72010-01-25 13:36:36 +0100964 if (!started && !local->tmp_channel) {
Ben Greearb23b0252011-02-04 11:54:17 -0800965 bool on_oper_chan;
966 bool tmp_chan_changed = false;
967 bool on_oper_chan2;
Ben Greearda2fd1f2011-02-07 13:44:36 -0800968 enum nl80211_channel_type wk_ct;
Ben Greearb23b0252011-02-04 11:54:17 -0800969 on_oper_chan = ieee80211_cfg_on_oper_channel(local);
Ben Greearda2fd1f2011-02-07 13:44:36 -0800970
971 /* Work with existing channel type if possible. */
972 wk_ct = wk->chan_type;
973 if (wk->chan == local->hw.conf.channel)
974 wk_ct = ieee80211_calc_ct(wk->chan_type,
975 local->hw.conf.channel_type);
976
Ben Greearb23b0252011-02-04 11:54:17 -0800977 if (local->tmp_channel)
978 if ((local->tmp_channel != wk->chan) ||
Ben Greearda2fd1f2011-02-07 13:44:36 -0800979 (local->tmp_channel_type != wk_ct))
Ben Greearb23b0252011-02-04 11:54:17 -0800980 tmp_chan_changed = true;
Johannes Berge4da8c32009-12-23 13:15:43 +0100981
982 local->tmp_channel = wk->chan;
Ben Greearda2fd1f2011-02-07 13:44:36 -0800983 local->tmp_channel_type = wk_ct;
Ben Greearb23b0252011-02-04 11:54:17 -0800984 /*
985 * Leave the station vifs in awake mode if they
986 * happen to be on the same channel as
987 * the requested channel.
988 */
989 on_oper_chan2 = ieee80211_cfg_on_oper_channel(local);
990 if (on_oper_chan != on_oper_chan2) {
991 if (on_oper_chan2) {
992 /* going off oper channel, PS too */
993 ieee80211_offchannel_stop_vifs(local,
994 true);
995 ieee80211_hw_config(local, 0);
996 } else {
997 /* going on channel, but leave PS
998 * off-channel. */
999 ieee80211_hw_config(local, 0);
1000 ieee80211_offchannel_return(local,
1001 true,
1002 false);
1003 }
1004 } else if (tmp_chan_changed)
1005 /* Still off-channel, but on some other
1006 * channel, so update hardware.
1007 * PS should already be off-channel.
1008 */
1009 ieee80211_hw_config(local, 0);
1010
Johannes Berg723bae72010-01-25 13:36:36 +01001011 started = true;
Johannes Berge4da8c32009-12-23 13:15:43 +01001012 wk->timeout = jiffies;
1013 }
1014
1015 /* don't try to work with items that aren't started */
Johannes Berg723bae72010-01-25 13:36:36 +01001016 if (!started)
Johannes Berge4da8c32009-12-23 13:15:43 +01001017 continue;
1018
Johannes Bergaf6b6372009-12-23 13:15:35 +01001019 if (time_is_after_jiffies(wk->timeout)) {
1020 /*
1021 * This work item isn't supposed to be worked on
1022 * right now, but take care to adjust the timer
1023 * properly.
1024 */
1025 run_again(local, wk->timeout);
1026 continue;
1027 }
1028
1029 switch (wk->type) {
1030 default:
1031 WARN_ON(1);
1032 /* nothing */
1033 rma = WORK_ACT_NONE;
1034 break;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001035 case IEEE80211_WORK_ABORT:
1036 rma = WORK_ACT_TIMEOUT;
Juuso Oikarinen0e0a2282010-02-26 08:13:41 +02001037 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001038 case IEEE80211_WORK_DIRECT_PROBE:
1039 rma = ieee80211_direct_probe(wk);
1040 break;
1041 case IEEE80211_WORK_AUTH:
1042 rma = ieee80211_authenticate(wk);
1043 break;
1044 case IEEE80211_WORK_ASSOC:
1045 rma = ieee80211_associate(wk);
1046 break;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001047 case IEEE80211_WORK_REMAIN_ON_CHANNEL:
1048 rma = ieee80211_remain_on_channel_timeout(wk);
1049 break;
Johannes Bergf30221e2010-11-25 10:02:30 +01001050 case IEEE80211_WORK_OFFCHANNEL_TX:
1051 rma = ieee80211_offchannel_tx(wk);
1052 break;
Johannes Berge5b900d2010-07-29 16:08:55 +02001053 case IEEE80211_WORK_ASSOC_BEACON_WAIT:
1054 rma = ieee80211_assoc_beacon_wait(wk);
1055 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001056 }
1057
Johannes Berg723bae72010-01-25 13:36:36 +01001058 wk->started = started;
1059
Johannes Bergaf6b6372009-12-23 13:15:35 +01001060 switch (rma) {
1061 case WORK_ACT_NONE:
Johannes Berge4da8c32009-12-23 13:15:43 +01001062 /* might have changed the timeout */
1063 run_again(local, wk->timeout);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001064 break;
1065 case WORK_ACT_TIMEOUT:
1066 list_del_rcu(&wk->list);
1067 synchronize_rcu();
1068 list_add(&wk->list, &free_work);
1069 break;
1070 default:
1071 WARN(1, "unexpected: %d", rma);
1072 }
1073 }
1074
Johannes Berge4da8c32009-12-23 13:15:43 +01001075 list_for_each_entry(wk, &local->work_list, list) {
1076 if (!wk->started)
1077 continue;
1078 if (wk->chan != local->tmp_channel)
1079 continue;
Ben Greearda2fd1f2011-02-07 13:44:36 -08001080 if (ieee80211_work_ct_coexists(wk->chan_type,
1081 local->tmp_channel_type))
Johannes Berge4da8c32009-12-23 13:15:43 +01001082 continue;
1083 remain_off_channel = true;
1084 }
1085
1086 if (!remain_off_channel && local->tmp_channel) {
Ben Greearb23b0252011-02-04 11:54:17 -08001087 bool on_oper_chan = ieee80211_cfg_on_oper_channel(local);
Johannes Berge4da8c32009-12-23 13:15:43 +01001088 local->tmp_channel = NULL;
Ben Greearb23b0252011-02-04 11:54:17 -08001089 /* If tmp_channel wasn't operating channel, then
1090 * we need to go back on-channel.
1091 * NOTE: If we can ever be here while scannning,
1092 * or if the hw_config() channel config logic changes,
1093 * then we may need to do a more thorough check to see if
1094 * we still need to do a hardware config. Currently,
1095 * we cannot be here while scanning, however.
1096 */
1097 if (ieee80211_cfg_on_oper_channel(local) && !on_oper_chan)
1098 ieee80211_hw_config(local, 0);
1099
1100 /* At the least, we need to disable offchannel_ps,
1101 * so just go ahead and run the entire offchannel
1102 * return logic here. We *could* skip enabling
1103 * beaconing if we were already on-oper-channel
1104 * as a future optimization.
1105 */
1106 ieee80211_offchannel_return(local, true, true);
1107
Johannes Berge4da8c32009-12-23 13:15:43 +01001108 /* give connection some time to breathe */
1109 run_again(local, jiffies + HZ/2);
1110 }
1111
Teemu Paasikivi68dd5b72010-04-09 13:07:55 +03001112 if (list_empty(&local->work_list) && local->scan_req &&
1113 !local->scanning)
Johannes Bergaf6b6372009-12-23 13:15:35 +01001114 ieee80211_queue_delayed_work(&local->hw,
1115 &local->scan_work,
1116 round_jiffies_relative(0));
1117
Johannes Berge4da8c32009-12-23 13:15:43 +01001118 ieee80211_recalc_idle(local);
1119
Johannes Berg7da7cc12010-08-05 17:02:38 +02001120 mutex_unlock(&local->mtx);
1121
Johannes Bergaf6b6372009-12-23 13:15:35 +01001122 list_for_each_entry_safe(wk, tmp, &free_work, list) {
1123 wk->done(wk, NULL);
1124 list_del(&wk->list);
1125 kfree(wk);
1126 }
1127}
1128
1129void ieee80211_add_work(struct ieee80211_work *wk)
1130{
1131 struct ieee80211_local *local;
1132
1133 if (WARN_ON(!wk->chan))
1134 return;
1135
1136 if (WARN_ON(!wk->sdata))
1137 return;
1138
1139 if (WARN_ON(!wk->done))
1140 return;
1141
Johannes Berg81ac3462010-01-06 15:30:58 +01001142 if (WARN_ON(!ieee80211_sdata_running(wk->sdata)))
1143 return;
1144
Johannes Berge4da8c32009-12-23 13:15:43 +01001145 wk->started = false;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001146
1147 local = wk->sdata->local;
Johannes Berga1699b72010-07-30 16:46:07 +02001148 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001149 list_add_tail(&wk->list, &local->work_list);
Johannes Berga1699b72010-07-30 16:46:07 +02001150 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001151
1152 ieee80211_queue_work(&local->hw, &local->work_work);
1153}
1154
1155void ieee80211_work_init(struct ieee80211_local *local)
1156{
Johannes Bergaf6b6372009-12-23 13:15:35 +01001157 INIT_LIST_HEAD(&local->work_list);
1158 setup_timer(&local->work_timer, ieee80211_work_timer,
1159 (unsigned long)local);
1160 INIT_WORK(&local->work_work, ieee80211_work_work);
1161 skb_queue_head_init(&local->work_skb_queue);
1162}
1163
1164void ieee80211_work_purge(struct ieee80211_sub_if_data *sdata)
1165{
1166 struct ieee80211_local *local = sdata->local;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001167 struct ieee80211_work *wk;
Herton Ronaldo Krzesinski8808f642010-12-13 11:43:51 -02001168 bool cleanup = false;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001169
Johannes Berga1699b72010-07-30 16:46:07 +02001170 mutex_lock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001171 list_for_each_entry(wk, &local->work_list, list) {
Johannes Bergaf6b6372009-12-23 13:15:35 +01001172 if (wk->sdata != sdata)
1173 continue;
Herton Ronaldo Krzesinski8808f642010-12-13 11:43:51 -02001174 cleanup = true;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001175 wk->type = IEEE80211_WORK_ABORT;
Johannes Berge4da8c32009-12-23 13:15:43 +01001176 wk->started = true;
1177 wk->timeout = jiffies;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001178 }
Johannes Berga1699b72010-07-30 16:46:07 +02001179 mutex_unlock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001180
1181 /* run cleanups etc. */
Herton Ronaldo Krzesinski8808f642010-12-13 11:43:51 -02001182 if (cleanup)
1183 ieee80211_work_work(&local->work_work);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001184
Johannes Berga1699b72010-07-30 16:46:07 +02001185 mutex_lock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001186 list_for_each_entry(wk, &local->work_list, list) {
1187 if (wk->sdata != sdata)
1188 continue;
1189 WARN_ON(1);
1190 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001191 }
Johannes Berga1699b72010-07-30 16:46:07 +02001192 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001193}
1194
1195ieee80211_rx_result ieee80211_work_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1196 struct sk_buff *skb)
1197{
1198 struct ieee80211_local *local = sdata->local;
1199 struct ieee80211_mgmt *mgmt;
1200 struct ieee80211_work *wk;
1201 u16 fc;
1202
1203 if (skb->len < 24)
1204 return RX_DROP_MONITOR;
1205
1206 mgmt = (struct ieee80211_mgmt *) skb->data;
1207 fc = le16_to_cpu(mgmt->frame_control);
1208
1209 list_for_each_entry_rcu(wk, &local->work_list, list) {
1210 if (sdata != wk->sdata)
1211 continue;
1212 if (compare_ether_addr(wk->filter_ta, mgmt->sa))
1213 continue;
1214 if (compare_ether_addr(wk->filter_ta, mgmt->bssid))
1215 continue;
1216
1217 switch (fc & IEEE80211_FCTL_STYPE) {
1218 case IEEE80211_STYPE_AUTH:
1219 case IEEE80211_STYPE_PROBE_RESP:
1220 case IEEE80211_STYPE_ASSOC_RESP:
1221 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berge5b900d2010-07-29 16:08:55 +02001222 case IEEE80211_STYPE_BEACON:
Johannes Bergaf6b6372009-12-23 13:15:35 +01001223 skb_queue_tail(&local->work_skb_queue, skb);
1224 ieee80211_queue_work(&local->hw, &local->work_work);
1225 return RX_QUEUED;
1226 }
1227 }
1228
1229 return RX_CONTINUE;
1230}
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001231
Johannes Berge4da8c32009-12-23 13:15:43 +01001232static enum work_done_result ieee80211_remain_done(struct ieee80211_work *wk,
1233 struct sk_buff *skb)
1234{
1235 /*
1236 * We are done serving the remain-on-channel command.
1237 */
Kalle Valo1990ca62009-12-30 14:42:20 +02001238 cfg80211_remain_on_channel_expired(wk->sdata->dev, (unsigned long) wk,
Johannes Berge4da8c32009-12-23 13:15:43 +01001239 wk->chan, wk->chan_type,
1240 GFP_KERNEL);
1241
1242 return WORK_DONE_DESTROY;
1243}
1244
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001245int ieee80211_wk_remain_on_channel(struct ieee80211_sub_if_data *sdata,
1246 struct ieee80211_channel *chan,
1247 enum nl80211_channel_type channel_type,
1248 unsigned int duration, u64 *cookie)
1249{
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001250 struct ieee80211_work *wk;
1251
1252 wk = kzalloc(sizeof(*wk), GFP_KERNEL);
1253 if (!wk)
1254 return -ENOMEM;
1255
1256 wk->type = IEEE80211_WORK_REMAIN_ON_CHANNEL;
1257 wk->chan = chan;
Johannes Berge4da8c32009-12-23 13:15:43 +01001258 wk->chan_type = channel_type;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001259 wk->sdata = sdata;
Johannes Berge4da8c32009-12-23 13:15:43 +01001260 wk->done = ieee80211_remain_done;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001261
Johannes Berge4da8c32009-12-23 13:15:43 +01001262 wk->remain.duration = duration;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001263
Kalle Valo1990ca62009-12-30 14:42:20 +02001264 *cookie = (unsigned long) wk;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001265
1266 ieee80211_add_work(wk);
1267
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001268 return 0;
1269}
1270
1271int ieee80211_wk_cancel_remain_on_channel(struct ieee80211_sub_if_data *sdata,
1272 u64 cookie)
1273{
1274 struct ieee80211_local *local = sdata->local;
1275 struct ieee80211_work *wk, *tmp;
1276 bool found = false;
1277
Johannes Berga1699b72010-07-30 16:46:07 +02001278 mutex_lock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001279 list_for_each_entry_safe(wk, tmp, &local->work_list, list) {
Kalle Valo1990ca62009-12-30 14:42:20 +02001280 if ((unsigned long) wk == cookie) {
Johannes Berge4da8c32009-12-23 13:15:43 +01001281 wk->timeout = jiffies;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001282 found = true;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001283 break;
1284 }
1285 }
Johannes Berga1699b72010-07-30 16:46:07 +02001286 mutex_unlock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001287
1288 if (!found)
1289 return -ENOENT;
1290
Johannes Berge4da8c32009-12-23 13:15:43 +01001291 ieee80211_queue_work(&local->hw, &local->work_work);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001292
1293 return 0;
1294}