blob: c6dd01a05291e25865bac897a67353785131a4fa [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"
Johannes Bergb2abb6e2011-07-19 10:39:53 +020028#include "driver-ops.h"
Johannes Bergaf6b6372009-12-23 13:15:35 +010029
30#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
31#define IEEE80211_AUTH_MAX_TRIES 3
32#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
33#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Bergaf6b6372009-12-23 13:15:35 +010034
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
Johannes Bergaf6b6372009-12-23 13:15:35 +010069void free_work(struct ieee80211_work *wk)
70{
Lai Jiangshana74ce142011-03-18 12:14:15 +080071 kfree_rcu(wk, rcu_head);
Johannes Bergaf6b6372009-12-23 13:15:35 +010072}
73
74static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
75 struct ieee80211_supported_band *sband,
76 u32 *rates)
77{
78 int i, j, count;
79 *rates = 0;
80 count = 0;
81 for (i = 0; i < supp_rates_len; i++) {
82 int rate = (supp_rates[i] & 0x7F) * 5;
83
84 for (j = 0; j < sband->n_bitrates; j++)
85 if (sband->bitrates[j].bitrate == rate) {
86 *rates |= BIT(j);
87 count++;
88 break;
89 }
90 }
91
92 return count;
93}
94
95/* frame sending functions */
96
Ben Greearef96a8422011-11-18 11:32:00 -080097static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
98 struct sk_buff *skb, const u8 *ht_info_ie,
Johannes Berg77c81442009-12-23 13:15:37 +010099 struct ieee80211_supported_band *sband,
100 struct ieee80211_channel *channel,
101 enum ieee80211_smps_mode smps)
102{
103 struct ieee80211_ht_info *ht_info;
104 u8 *pos;
105 u32 flags = channel->flags;
Ben Greearef96a8422011-11-18 11:32:00 -0800106 u16 cap;
107 struct ieee80211_sta_ht_cap ht_cap;
108
109 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
Johannes Berg77c81442009-12-23 13:15:37 +0100110
111 if (!sband->ht_cap.ht_supported)
112 return;
113
114 if (!ht_info_ie)
115 return;
116
117 if (ht_info_ie[1] < sizeof(struct ieee80211_ht_info))
118 return;
119
Ben Greearef96a8422011-11-18 11:32:00 -0800120 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
121 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
122
Johannes Berg77c81442009-12-23 13:15:37 +0100123 ht_info = (struct ieee80211_ht_info *)(ht_info_ie + 2);
124
125 /* determine capability flags */
Ben Greearef96a8422011-11-18 11:32:00 -0800126 cap = ht_cap.cap;
Johannes Berg77c81442009-12-23 13:15:37 +0100127
Johannes Berg77c81442009-12-23 13:15:37 +0100128 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
129 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
130 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
131 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
132 cap &= ~IEEE80211_HT_CAP_SGI_40;
133 }
134 break;
135 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
136 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
137 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
138 cap &= ~IEEE80211_HT_CAP_SGI_40;
139 }
140 break;
141 }
142
143 /* set SM PS mode properly */
144 cap &= ~IEEE80211_HT_CAP_SM_PS;
145 switch (smps) {
146 case IEEE80211_SMPS_AUTOMATIC:
147 case IEEE80211_SMPS_NUM_MODES:
148 WARN_ON(1);
149 case IEEE80211_SMPS_OFF:
150 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
151 IEEE80211_HT_CAP_SM_PS_SHIFT;
152 break;
153 case IEEE80211_SMPS_STATIC:
154 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
155 IEEE80211_HT_CAP_SM_PS_SHIFT;
156 break;
157 case IEEE80211_SMPS_DYNAMIC:
158 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
159 IEEE80211_HT_CAP_SM_PS_SHIFT;
160 break;
161 }
162
163 /* reserve and fill IE */
Johannes Berg77c81442009-12-23 13:15:37 +0100164 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
Ben Greearef96a8422011-11-18 11:32:00 -0800165 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
Johannes Berg77c81442009-12-23 13:15:37 +0100166}
167
Johannes Bergaf6b6372009-12-23 13:15:35 +0100168static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
169 struct ieee80211_work *wk)
170{
171 struct ieee80211_local *local = sdata->local;
172 struct sk_buff *skb;
173 struct ieee80211_mgmt *mgmt;
Kalle Valoab133152010-01-12 10:42:31 +0200174 u8 *pos, qos_info;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100175 size_t offset = 0, noffset;
Rajkumar Manoharan0915cba2011-04-25 15:56:17 +0530176 int i, count, rates_len, supp_rates_len;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100177 u16 capab;
178 struct ieee80211_supported_band *sband;
179 u32 rates = 0;
180
Johannes Berg77c81442009-12-23 13:15:37 +0100181 sband = local->hw.wiphy->bands[wk->chan->band];
182
Stanislaw Gruszka76f27362010-04-28 17:03:15 +0200183 if (wk->assoc.supp_rates_len) {
184 /*
185 * Get all rates supported by the device and the AP as
186 * some APs don't like getting a superset of their rates
187 * in the association request (e.g. D-Link DAP 1353 in
188 * b-only mode)...
189 */
190 rates_len = ieee80211_compatible_rates(wk->assoc.supp_rates,
191 wk->assoc.supp_rates_len,
192 sband, &rates);
193 } else {
194 /*
195 * In case AP not provide any supported rates information
196 * before association, we send information element(s) with
197 * all rates that we support.
198 */
199 rates = ~0;
200 rates_len = sband->n_bitrates;
201 }
Johannes Berg77c81442009-12-23 13:15:37 +0100202
203 skb = alloc_skb(local->hw.extra_tx_headroom +
204 sizeof(*mgmt) + /* bit too much but doesn't matter */
205 2 + wk->assoc.ssid_len + /* SSID */
206 4 + rates_len + /* (extended) rates */
207 4 + /* power capability */
208 2 + 2 * sband->n_channels + /* supported channels */
209 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
210 wk->ie_len + /* extra IEs */
211 9, /* WMM */
212 GFP_KERNEL);
Joe Perchesd15b8452011-08-29 14:17:31 -0700213 if (!skb)
Johannes Bergaf6b6372009-12-23 13:15:35 +0100214 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700215
Johannes Bergaf6b6372009-12-23 13:15:35 +0100216 skb_reserve(skb, local->hw.extra_tx_headroom);
217
Johannes Bergaf6b6372009-12-23 13:15:35 +0100218 capab = WLAN_CAPABILITY_ESS;
219
220 if (sband->band == IEEE80211_BAND_2GHZ) {
221 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
222 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
223 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
224 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
225 }
226
227 if (wk->assoc.capability & WLAN_CAPABILITY_PRIVACY)
228 capab |= WLAN_CAPABILITY_PRIVACY;
229
Johannes Bergaf6b6372009-12-23 13:15:35 +0100230 if ((wk->assoc.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
231 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
232 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
233
234 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
235 memset(mgmt, 0, 24);
236 memcpy(mgmt->da, wk->filter_ta, ETH_ALEN);
237 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
238 memcpy(mgmt->bssid, wk->filter_ta, ETH_ALEN);
239
240 if (!is_zero_ether_addr(wk->assoc.prev_bssid)) {
241 skb_put(skb, 10);
242 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
243 IEEE80211_STYPE_REASSOC_REQ);
244 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
245 mgmt->u.reassoc_req.listen_interval =
246 cpu_to_le16(local->hw.conf.listen_interval);
247 memcpy(mgmt->u.reassoc_req.current_ap, wk->assoc.prev_bssid,
248 ETH_ALEN);
249 } else {
250 skb_put(skb, 4);
251 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
252 IEEE80211_STYPE_ASSOC_REQ);
253 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
254 mgmt->u.assoc_req.listen_interval =
255 cpu_to_le16(local->hw.conf.listen_interval);
256 }
257
258 /* SSID */
Rajkumar Manoharan0915cba2011-04-25 15:56:17 +0530259 pos = skb_put(skb, 2 + wk->assoc.ssid_len);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100260 *pos++ = WLAN_EID_SSID;
261 *pos++ = wk->assoc.ssid_len;
262 memcpy(pos, wk->assoc.ssid, wk->assoc.ssid_len);
263
264 /* add all rates which were marked to be used above */
265 supp_rates_len = rates_len;
266 if (supp_rates_len > 8)
267 supp_rates_len = 8;
268
Johannes Bergaf6b6372009-12-23 13:15:35 +0100269 pos = skb_put(skb, supp_rates_len + 2);
270 *pos++ = WLAN_EID_SUPP_RATES;
271 *pos++ = supp_rates_len;
272
273 count = 0;
274 for (i = 0; i < sband->n_bitrates; i++) {
275 if (BIT(i) & rates) {
276 int rate = sband->bitrates[i].bitrate;
277 *pos++ = (u8) (rate / 5);
278 if (++count == 8)
279 break;
280 }
281 }
282
283 if (rates_len > count) {
284 pos = skb_put(skb, rates_len - count + 2);
285 *pos++ = WLAN_EID_EXT_SUPP_RATES;
286 *pos++ = rates_len - count;
287
288 for (i++; i < sband->n_bitrates; i++) {
289 if (BIT(i) & rates) {
290 int rate = sband->bitrates[i].bitrate;
291 *pos++ = (u8) (rate / 5);
292 }
293 }
294 }
295
296 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
297 /* 1. power capabilities */
298 pos = skb_put(skb, 4);
299 *pos++ = WLAN_EID_PWR_CAPABILITY;
300 *pos++ = 2;
301 *pos++ = 0; /* min tx power */
Johannes Berg77c81442009-12-23 13:15:37 +0100302 *pos++ = wk->chan->max_power; /* max tx power */
Johannes Bergaf6b6372009-12-23 13:15:35 +0100303
304 /* 2. supported channels */
305 /* TODO: get this in reg domain format */
306 pos = skb_put(skb, 2 * sband->n_channels + 2);
307 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
308 *pos++ = 2 * sband->n_channels;
309 for (i = 0; i < sband->n_channels; i++) {
310 *pos++ = ieee80211_frequency_to_channel(
311 sband->channels[i].center_freq);
312 *pos++ = 1; /* one channel in the subband*/
313 }
314 }
315
Johannes Berg8e664fb2009-12-23 13:15:38 +0100316 /* if present, add any custom IEs that go before HT */
Johannes Bergaf6b6372009-12-23 13:15:35 +0100317 if (wk->ie_len && wk->ie) {
Johannes Berg8e664fb2009-12-23 13:15:38 +0100318 static const u8 before_ht[] = {
319 WLAN_EID_SSID,
320 WLAN_EID_SUPP_RATES,
321 WLAN_EID_EXT_SUPP_RATES,
322 WLAN_EID_PWR_CAPABILITY,
323 WLAN_EID_SUPPORTED_CHANNELS,
324 WLAN_EID_RSN,
325 WLAN_EID_QOS_CAPA,
326 WLAN_EID_RRM_ENABLED_CAPABILITIES,
327 WLAN_EID_MOBILITY_DOMAIN,
328 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
329 };
330 noffset = ieee80211_ie_split(wk->ie, wk->ie_len,
331 before_ht, ARRAY_SIZE(before_ht),
332 offset);
333 pos = skb_put(skb, noffset - offset);
334 memcpy(pos, wk->ie + offset, noffset - offset);
335 offset = noffset;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100336 }
337
Johannes Berg77c81442009-12-23 13:15:37 +0100338 if (wk->assoc.use_11n && wk->assoc.wmm_used &&
339 local->hw.queues >= 4)
Ben Greearef96a8422011-11-18 11:32:00 -0800340 ieee80211_add_ht_ie(sdata, skb, wk->assoc.ht_information_ie,
Johannes Berg77c81442009-12-23 13:15:37 +0100341 sband, wk->chan, wk->assoc.smps);
342
Johannes Berg8e664fb2009-12-23 13:15:38 +0100343 /* if present, add any custom non-vendor IEs that go after HT */
344 if (wk->ie_len && wk->ie) {
345 noffset = ieee80211_ie_split_vendor(wk->ie, wk->ie_len,
346 offset);
347 pos = skb_put(skb, noffset - offset);
348 memcpy(pos, wk->ie + offset, noffset - offset);
349 offset = noffset;
350 }
351
Johannes Bergaf6b6372009-12-23 13:15:35 +0100352 if (wk->assoc.wmm_used && local->hw.queues >= 4) {
Kalle Valoab133152010-01-12 10:42:31 +0200353 if (wk->assoc.uapsd_used) {
Kalle Valo50ae0cf2010-01-12 10:42:39 +0200354 qos_info = local->uapsd_queues;
355 qos_info |= (local->uapsd_max_sp_len <<
Kalle Valoab133152010-01-12 10:42:31 +0200356 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
357 } else {
358 qos_info = 0;
359 }
360
Johannes Bergaf6b6372009-12-23 13:15:35 +0100361 pos = skb_put(skb, 9);
362 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
363 *pos++ = 7; /* len */
364 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
365 *pos++ = 0x50;
366 *pos++ = 0xf2;
367 *pos++ = 2; /* WME */
368 *pos++ = 0; /* WME info */
369 *pos++ = 1; /* WME ver */
Kalle Valoab133152010-01-12 10:42:31 +0200370 *pos++ = qos_info;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100371 }
372
Johannes Berg8e664fb2009-12-23 13:15:38 +0100373 /* add any remaining custom (i.e. vendor specific here) IEs */
374 if (wk->ie_len && wk->ie) {
375 noffset = wk->ie_len;
376 pos = skb_put(skb, noffset - offset);
377 memcpy(pos, wk->ie + offset, noffset - offset);
378 }
379
Johannes Bergaf6b6372009-12-23 13:15:35 +0100380 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
381 ieee80211_tx_skb(sdata, skb);
382}
383
384static void ieee80211_remove_auth_bss(struct ieee80211_local *local,
385 struct ieee80211_work *wk)
386{
387 struct cfg80211_bss *cbss;
388 u16 capa_val = WLAN_CAPABILITY_ESS;
389
390 if (wk->probe_auth.privacy)
391 capa_val |= WLAN_CAPABILITY_PRIVACY;
392
393 cbss = cfg80211_get_bss(local->hw.wiphy, wk->chan, wk->filter_ta,
394 wk->probe_auth.ssid, wk->probe_auth.ssid_len,
395 WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_PRIVACY,
396 capa_val);
397 if (!cbss)
398 return;
399
400 cfg80211_unlink_bss(local->hw.wiphy, cbss);
401 cfg80211_put_bss(cbss);
402}
403
404static enum work_action __must_check
405ieee80211_direct_probe(struct ieee80211_work *wk)
406{
407 struct ieee80211_sub_if_data *sdata = wk->sdata;
408 struct ieee80211_local *local = sdata->local;
409
Johannes Bergb2abb6e2011-07-19 10:39:53 +0200410 if (!wk->probe_auth.synced) {
411 int ret = drv_tx_sync(local, sdata, wk->filter_ta,
412 IEEE80211_TX_SYNC_AUTH);
413 if (ret)
414 return WORK_ACT_TIMEOUT;
415 }
416 wk->probe_auth.synced = true;
417
Johannes Bergaf6b6372009-12-23 13:15:35 +0100418 wk->probe_auth.tries++;
419 if (wk->probe_auth.tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100420 printk(KERN_DEBUG "%s: direct probe to %pM timed out\n",
Johannes Bergaf6b6372009-12-23 13:15:35 +0100421 sdata->name, wk->filter_ta);
422
423 /*
424 * Most likely AP is not in the range so remove the
425 * bss struct for that AP.
426 */
427 ieee80211_remove_auth_bss(local, wk);
428
Johannes Bergaf6b6372009-12-23 13:15:35 +0100429 return WORK_ACT_TIMEOUT;
430 }
431
Ben Greear2f886752010-12-07 11:27:01 -0800432 printk(KERN_DEBUG "%s: direct probe to %pM (try %d/%i)\n",
433 sdata->name, wk->filter_ta, wk->probe_auth.tries,
434 IEEE80211_AUTH_MAX_TRIES);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100435
436 /*
437 * Direct probe is sent to broadcast address as some APs
438 * will not answer to direct packet in unassociated state.
439 */
440 ieee80211_send_probe_req(sdata, NULL, wk->probe_auth.ssid,
Johannes Berg85a237f2011-07-18 18:08:36 +0200441 wk->probe_auth.ssid_len, NULL, 0,
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +0530442 (u32) -1, true, false);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100443
444 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
445 run_again(local, wk->timeout);
446
447 return WORK_ACT_NONE;
448}
449
450
451static enum work_action __must_check
452ieee80211_authenticate(struct ieee80211_work *wk)
453{
454 struct ieee80211_sub_if_data *sdata = wk->sdata;
455 struct ieee80211_local *local = sdata->local;
456
Johannes Bergb2abb6e2011-07-19 10:39:53 +0200457 if (!wk->probe_auth.synced) {
458 int ret = drv_tx_sync(local, sdata, wk->filter_ta,
459 IEEE80211_TX_SYNC_AUTH);
460 if (ret)
461 return WORK_ACT_TIMEOUT;
462 }
463 wk->probe_auth.synced = true;
464
Johannes Bergaf6b6372009-12-23 13:15:35 +0100465 wk->probe_auth.tries++;
466 if (wk->probe_auth.tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100467 printk(KERN_DEBUG "%s: authentication with %pM"
Johannes Bergaf6b6372009-12-23 13:15:35 +0100468 " timed out\n", sdata->name, wk->filter_ta);
469
470 /*
471 * Most likely AP is not in the range so remove the
472 * bss struct for that AP.
473 */
474 ieee80211_remove_auth_bss(local, wk);
475
Johannes Bergaf6b6372009-12-23 13:15:35 +0100476 return WORK_ACT_TIMEOUT;
477 }
478
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100479 printk(KERN_DEBUG "%s: authenticate with %pM (try %d)\n",
Johannes Bergaf6b6372009-12-23 13:15:35 +0100480 sdata->name, wk->filter_ta, wk->probe_auth.tries);
481
482 ieee80211_send_auth(sdata, 1, wk->probe_auth.algorithm, wk->ie,
483 wk->ie_len, wk->filter_ta, NULL, 0, 0);
484 wk->probe_auth.transaction = 2;
485
486 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
487 run_again(local, wk->timeout);
488
489 return WORK_ACT_NONE;
490}
491
492static enum work_action __must_check
493ieee80211_associate(struct ieee80211_work *wk)
494{
495 struct ieee80211_sub_if_data *sdata = wk->sdata;
496 struct ieee80211_local *local = sdata->local;
497
Johannes Bergb2abb6e2011-07-19 10:39:53 +0200498 if (!wk->assoc.synced) {
499 int ret = drv_tx_sync(local, sdata, wk->filter_ta,
500 IEEE80211_TX_SYNC_ASSOC);
501 if (ret)
502 return WORK_ACT_TIMEOUT;
503 }
504 wk->assoc.synced = true;
505
Johannes Bergaf6b6372009-12-23 13:15:35 +0100506 wk->assoc.tries++;
507 if (wk->assoc.tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100508 printk(KERN_DEBUG "%s: association with %pM"
Johannes Bergaf6b6372009-12-23 13:15:35 +0100509 " timed out\n",
510 sdata->name, wk->filter_ta);
511
512 /*
513 * Most likely AP is not in the range so remove the
514 * bss struct for that AP.
515 */
516 if (wk->assoc.bss)
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100517 cfg80211_unlink_bss(local->hw.wiphy, wk->assoc.bss);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100518
Johannes Bergaf6b6372009-12-23 13:15:35 +0100519 return WORK_ACT_TIMEOUT;
520 }
521
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100522 printk(KERN_DEBUG "%s: associate with %pM (try %d)\n",
Johannes Bergaf6b6372009-12-23 13:15:35 +0100523 sdata->name, wk->filter_ta, wk->assoc.tries);
524 ieee80211_send_assoc(sdata, wk);
525
526 wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
527 run_again(local, wk->timeout);
528
529 return WORK_ACT_NONE;
530}
531
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100532static enum work_action __must_check
533ieee80211_remain_on_channel_timeout(struct ieee80211_work *wk)
534{
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100535 /*
536 * First time we run, do nothing -- the generic code will
537 * have switched to the right channel etc.
538 */
Johannes Berg723bae72010-01-25 13:36:36 +0100539 if (!wk->started) {
Johannes Berge4da8c32009-12-23 13:15:43 +0100540 wk->timeout = jiffies + msecs_to_jiffies(wk->remain.duration);
541
Kalle Valo1990ca62009-12-30 14:42:20 +0200542 cfg80211_ready_on_channel(wk->sdata->dev, (unsigned long) wk,
543 wk->chan, wk->chan_type,
544 wk->remain.duration, GFP_KERNEL);
Johannes Berge4da8c32009-12-23 13:15:43 +0100545
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100546 return WORK_ACT_NONE;
547 }
548
Johannes Berge4da8c32009-12-23 13:15:43 +0100549 return WORK_ACT_TIMEOUT;
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100550}
551
Johannes Berge5b900d2010-07-29 16:08:55 +0200552static enum work_action __must_check
Johannes Bergf30221e2010-11-25 10:02:30 +0100553ieee80211_offchannel_tx(struct ieee80211_work *wk)
554{
555 if (!wk->started) {
556 wk->timeout = jiffies + msecs_to_jiffies(wk->offchan_tx.wait);
557
558 /*
559 * After this, offchan_tx.frame remains but now is no
560 * longer a valid pointer -- we still need it as the
Johannes Berg28a1bcd2011-10-04 18:27:10 +0200561 * cookie for canceling this work/status matching.
Johannes Bergf30221e2010-11-25 10:02:30 +0100562 */
563 ieee80211_tx_skb(wk->sdata, wk->offchan_tx.frame);
564
565 return WORK_ACT_NONE;
566 }
567
568 return WORK_ACT_TIMEOUT;
569}
570
571static enum work_action __must_check
Johannes Berge5b900d2010-07-29 16:08:55 +0200572ieee80211_assoc_beacon_wait(struct ieee80211_work *wk)
573{
574 if (wk->started)
575 return WORK_ACT_TIMEOUT;
576
577 /*
578 * Wait up to one beacon interval ...
579 * should this be more if we miss one?
580 */
581 printk(KERN_DEBUG "%s: waiting for beacon from %pM\n",
582 wk->sdata->name, wk->filter_ta);
583 wk->timeout = TU_TO_EXP_TIME(wk->assoc.bss->beacon_interval);
584 return WORK_ACT_NONE;
585}
586
Johannes Bergaf6b6372009-12-23 13:15:35 +0100587static void ieee80211_auth_challenge(struct ieee80211_work *wk,
588 struct ieee80211_mgmt *mgmt,
589 size_t len)
590{
591 struct ieee80211_sub_if_data *sdata = wk->sdata;
592 u8 *pos;
593 struct ieee802_11_elems elems;
594
595 pos = mgmt->u.auth.variable;
596 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
597 if (!elems.challenge)
598 return;
599 ieee80211_send_auth(sdata, 3, wk->probe_auth.algorithm,
600 elems.challenge - 2, elems.challenge_len + 2,
601 wk->filter_ta, wk->probe_auth.key,
602 wk->probe_auth.key_len, wk->probe_auth.key_idx);
603 wk->probe_auth.transaction = 4;
604}
605
606static enum work_action __must_check
607ieee80211_rx_mgmt_auth(struct ieee80211_work *wk,
608 struct ieee80211_mgmt *mgmt, size_t len)
609{
610 u16 auth_alg, auth_transaction, status_code;
611
612 if (wk->type != IEEE80211_WORK_AUTH)
Johannes Bergb8d92c92010-05-11 12:42:04 +0200613 return WORK_ACT_MISMATCH;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100614
615 if (len < 24 + 6)
616 return WORK_ACT_NONE;
617
618 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
619 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
620 status_code = le16_to_cpu(mgmt->u.auth.status_code);
621
622 if (auth_alg != wk->probe_auth.algorithm ||
623 auth_transaction != wk->probe_auth.transaction)
624 return WORK_ACT_NONE;
625
626 if (status_code != WLAN_STATUS_SUCCESS) {
627 printk(KERN_DEBUG "%s: %pM denied authentication (status %d)\n",
628 wk->sdata->name, mgmt->sa, status_code);
629 return WORK_ACT_DONE;
630 }
631
632 switch (wk->probe_auth.algorithm) {
633 case WLAN_AUTH_OPEN:
634 case WLAN_AUTH_LEAP:
635 case WLAN_AUTH_FT:
636 break;
637 case WLAN_AUTH_SHARED_KEY:
638 if (wk->probe_auth.transaction != 4) {
639 ieee80211_auth_challenge(wk, mgmt, len);
640 /* need another frame */
641 return WORK_ACT_NONE;
642 }
643 break;
644 default:
645 WARN_ON(1);
646 return WORK_ACT_NONE;
647 }
648
649 printk(KERN_DEBUG "%s: authenticated\n", wk->sdata->name);
650 return WORK_ACT_DONE;
651}
652
653static enum work_action __must_check
654ieee80211_rx_mgmt_assoc_resp(struct ieee80211_work *wk,
655 struct ieee80211_mgmt *mgmt, size_t len,
656 bool reassoc)
657{
658 struct ieee80211_sub_if_data *sdata = wk->sdata;
659 struct ieee80211_local *local = sdata->local;
660 u16 capab_info, status_code, aid;
661 struct ieee802_11_elems elems;
662 u8 *pos;
663
Johannes Bergb8d92c92010-05-11 12:42:04 +0200664 if (wk->type != IEEE80211_WORK_ASSOC)
665 return WORK_ACT_MISMATCH;
666
Johannes Bergaf6b6372009-12-23 13:15:35 +0100667 /*
668 * AssocResp and ReassocResp have identical structure, so process both
669 * of them in this function.
670 */
671
672 if (len < 24 + 6)
673 return WORK_ACT_NONE;
674
675 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
676 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
677 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
678
679 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
680 "status=%d aid=%d)\n",
681 sdata->name, reassoc ? "Rea" : "A", mgmt->sa,
682 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
683
684 pos = mgmt->u.assoc_resp.variable;
685 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
686
687 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
688 elems.timeout_int && elems.timeout_int_len == 5 &&
689 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
690 u32 tu, ms;
691 tu = get_unaligned_le32(elems.timeout_int + 1);
692 ms = tu * 1024 / 1000;
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100693 printk(KERN_DEBUG "%s: %pM rejected association temporarily; "
Johannes Bergaf6b6372009-12-23 13:15:35 +0100694 "comeback duration %u TU (%u ms)\n",
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100695 sdata->name, mgmt->sa, tu, ms);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100696 wk->timeout = jiffies + msecs_to_jiffies(ms);
697 if (ms > IEEE80211_ASSOC_TIMEOUT)
698 run_again(local, wk->timeout);
699 return WORK_ACT_NONE;
700 }
701
702 if (status_code != WLAN_STATUS_SUCCESS)
Johannes Berg7d3a1c32009-12-23 13:15:36 +0100703 printk(KERN_DEBUG "%s: %pM denied association (code=%d)\n",
704 sdata->name, mgmt->sa, status_code);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100705 else
706 printk(KERN_DEBUG "%s: associated\n", sdata->name);
707
708 return WORK_ACT_DONE;
709}
710
711static enum work_action __must_check
712ieee80211_rx_mgmt_probe_resp(struct ieee80211_work *wk,
713 struct ieee80211_mgmt *mgmt, size_t len,
714 struct ieee80211_rx_status *rx_status)
715{
716 struct ieee80211_sub_if_data *sdata = wk->sdata;
717 struct ieee80211_local *local = sdata->local;
718 size_t baselen;
719
720 ASSERT_WORK_MTX(local);
721
Johannes Bergb8d92c92010-05-11 12:42:04 +0200722 if (wk->type != IEEE80211_WORK_DIRECT_PROBE)
723 return WORK_ACT_MISMATCH;
724
725 if (len < 24 + 12)
726 return WORK_ACT_NONE;
727
Johannes Bergaf6b6372009-12-23 13:15:35 +0100728 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
729 if (baselen > len)
730 return WORK_ACT_NONE;
731
732 printk(KERN_DEBUG "%s: direct probe responded\n", sdata->name);
733 return WORK_ACT_DONE;
734}
735
Johannes Berge5b900d2010-07-29 16:08:55 +0200736static enum work_action __must_check
737ieee80211_rx_mgmt_beacon(struct ieee80211_work *wk,
738 struct ieee80211_mgmt *mgmt, size_t len)
739{
740 struct ieee80211_sub_if_data *sdata = wk->sdata;
741 struct ieee80211_local *local = sdata->local;
742
743 ASSERT_WORK_MTX(local);
744
745 if (wk->type != IEEE80211_WORK_ASSOC_BEACON_WAIT)
746 return WORK_ACT_MISMATCH;
747
748 if (len < 24 + 12)
749 return WORK_ACT_NONE;
750
751 printk(KERN_DEBUG "%s: beacon received\n", sdata->name);
752 return WORK_ACT_DONE;
753}
754
Johannes Bergaf6b6372009-12-23 13:15:35 +0100755static void ieee80211_work_rx_queued_mgmt(struct ieee80211_local *local,
756 struct sk_buff *skb)
757{
758 struct ieee80211_rx_status *rx_status;
759 struct ieee80211_mgmt *mgmt;
760 struct ieee80211_work *wk;
Christoph Fritz021570e2010-06-16 16:37:34 +0200761 enum work_action rma = WORK_ACT_NONE;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100762 u16 fc;
763
764 rx_status = (struct ieee80211_rx_status *) skb->cb;
765 mgmt = (struct ieee80211_mgmt *) skb->data;
766 fc = le16_to_cpu(mgmt->frame_control);
767
Johannes Berga1699b72010-07-30 16:46:07 +0200768 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100769
770 list_for_each_entry(wk, &local->work_list, list) {
771 const u8 *bssid = NULL;
772
773 switch (wk->type) {
774 case IEEE80211_WORK_DIRECT_PROBE:
775 case IEEE80211_WORK_AUTH:
776 case IEEE80211_WORK_ASSOC:
Johannes Berge5b900d2010-07-29 16:08:55 +0200777 case IEEE80211_WORK_ASSOC_BEACON_WAIT:
Johannes Bergaf6b6372009-12-23 13:15:35 +0100778 bssid = wk->filter_ta;
779 break;
780 default:
781 continue;
782 }
783
784 /*
785 * Before queuing, we already verified mgmt->sa,
786 * so this is needed just for matching.
787 */
788 if (compare_ether_addr(bssid, mgmt->bssid))
789 continue;
790
791 switch (fc & IEEE80211_FCTL_STYPE) {
Johannes Berge5b900d2010-07-29 16:08:55 +0200792 case IEEE80211_STYPE_BEACON:
793 rma = ieee80211_rx_mgmt_beacon(wk, mgmt, skb->len);
794 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100795 case IEEE80211_STYPE_PROBE_RESP:
796 rma = ieee80211_rx_mgmt_probe_resp(wk, mgmt, skb->len,
797 rx_status);
798 break;
799 case IEEE80211_STYPE_AUTH:
800 rma = ieee80211_rx_mgmt_auth(wk, mgmt, skb->len);
801 break;
802 case IEEE80211_STYPE_ASSOC_RESP:
803 rma = ieee80211_rx_mgmt_assoc_resp(wk, mgmt,
804 skb->len, false);
805 break;
806 case IEEE80211_STYPE_REASSOC_RESP:
807 rma = ieee80211_rx_mgmt_assoc_resp(wk, mgmt,
808 skb->len, true);
809 break;
810 default:
811 WARN_ON(1);
Johannes Bergb8d92c92010-05-11 12:42:04 +0200812 rma = WORK_ACT_NONE;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100813 }
Johannes Bergb8d92c92010-05-11 12:42:04 +0200814
815 /*
816 * We've either received an unexpected frame, or we have
817 * multiple work items and need to match the frame to the
818 * right one.
819 */
820 if (rma == WORK_ACT_MISMATCH)
821 continue;
822
Johannes Bergaf6b6372009-12-23 13:15:35 +0100823 /*
824 * We've processed this frame for that work, so it can't
825 * belong to another work struct.
826 * NB: this is also required for correctness for 'rma'!
827 */
828 break;
829 }
830
831 switch (rma) {
Johannes Bergb8d92c92010-05-11 12:42:04 +0200832 case WORK_ACT_MISMATCH:
833 /* ignore this unmatched frame */
834 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100835 case WORK_ACT_NONE:
836 break;
837 case WORK_ACT_DONE:
838 list_del_rcu(&wk->list);
839 break;
840 default:
841 WARN(1, "unexpected: %d", rma);
842 }
843
Johannes Berga1699b72010-07-30 16:46:07 +0200844 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100845
846 if (rma != WORK_ACT_DONE)
847 goto out;
848
849 switch (wk->done(wk, skb)) {
850 case WORK_DONE_DESTROY:
851 free_work(wk);
852 break;
853 case WORK_DONE_REQUEUE:
854 synchronize_rcu();
Johannes Berge4da8c32009-12-23 13:15:43 +0100855 wk->started = false; /* restart */
Johannes Berga1699b72010-07-30 16:46:07 +0200856 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100857 list_add_tail(&wk->list, &local->work_list);
Johannes Berga1699b72010-07-30 16:46:07 +0200858 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100859 }
860
861 out:
862 kfree_skb(skb);
863}
864
865static void ieee80211_work_timer(unsigned long data)
866{
867 struct ieee80211_local *local = (void *) data;
868
869 if (local->quiescing)
870 return;
871
872 ieee80211_queue_work(&local->hw, &local->work_work);
873}
874
875static void ieee80211_work_work(struct work_struct *work)
876{
877 struct ieee80211_local *local =
878 container_of(work, struct ieee80211_local, work_work);
879 struct sk_buff *skb;
880 struct ieee80211_work *wk, *tmp;
881 LIST_HEAD(free_work);
882 enum work_action rma;
Johannes Berge4da8c32009-12-23 13:15:43 +0100883 bool remain_off_channel = false;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100884
885 if (local->scanning)
886 return;
887
888 /*
889 * ieee80211_queue_work() should have picked up most cases,
Walter Goldens77c20612010-05-18 04:44:54 -0700890 * here we'll pick the rest.
Johannes Bergaf6b6372009-12-23 13:15:35 +0100891 */
892 if (WARN(local->suspended, "work scheduled while going to suspend\n"))
893 return;
894
895 /* first process frames to avoid timing out while a frame is pending */
896 while ((skb = skb_dequeue(&local->work_skb_queue)))
897 ieee80211_work_rx_queued_mgmt(local, skb);
898
Johannes Berga1699b72010-07-30 16:46:07 +0200899 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100900
Johannes Berg7da7cc12010-08-05 17:02:38 +0200901 ieee80211_recalc_idle(local);
902
Johannes Bergaf6b6372009-12-23 13:15:35 +0100903 list_for_each_entry_safe(wk, tmp, &local->work_list, list) {
Johannes Berg723bae72010-01-25 13:36:36 +0100904 bool started = wk->started;
905
Johannes Berge4da8c32009-12-23 13:15:43 +0100906 /* mark work as started if it's on the current off-channel */
Johannes Berg723bae72010-01-25 13:36:36 +0100907 if (!started && local->tmp_channel &&
Johannes Berge4da8c32009-12-23 13:15:43 +0100908 wk->chan == local->tmp_channel &&
909 wk->chan_type == local->tmp_channel_type) {
Johannes Berg723bae72010-01-25 13:36:36 +0100910 started = true;
Johannes Berg81ac3462010-01-06 15:30:58 +0100911 wk->timeout = jiffies;
Johannes Berge4da8c32009-12-23 13:15:43 +0100912 }
913
Johannes Berg723bae72010-01-25 13:36:36 +0100914 if (!started && !local->tmp_channel) {
Johannes Berge76aadc2011-11-29 10:20:02 +0100915 ieee80211_offchannel_stop_vifs(local, true);
Ben Greearda2fd1f2011-02-07 13:44:36 -0800916
Johannes Berge4da8c32009-12-23 13:15:43 +0100917 local->tmp_channel = wk->chan;
Johannes Berge76aadc2011-11-29 10:20:02 +0100918 local->tmp_channel_type = wk->chan_type;
919
920 ieee80211_hw_config(local, 0);
Ben Greearb23b0252011-02-04 11:54:17 -0800921
Johannes Berg723bae72010-01-25 13:36:36 +0100922 started = true;
Johannes Berge4da8c32009-12-23 13:15:43 +0100923 wk->timeout = jiffies;
924 }
925
926 /* don't try to work with items that aren't started */
Johannes Berg723bae72010-01-25 13:36:36 +0100927 if (!started)
Johannes Berge4da8c32009-12-23 13:15:43 +0100928 continue;
929
Johannes Bergaf6b6372009-12-23 13:15:35 +0100930 if (time_is_after_jiffies(wk->timeout)) {
931 /*
932 * This work item isn't supposed to be worked on
933 * right now, but take care to adjust the timer
934 * properly.
935 */
936 run_again(local, wk->timeout);
937 continue;
938 }
939
940 switch (wk->type) {
941 default:
942 WARN_ON(1);
943 /* nothing */
944 rma = WORK_ACT_NONE;
945 break;
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100946 case IEEE80211_WORK_ABORT:
947 rma = WORK_ACT_TIMEOUT;
Juuso Oikarinen0e0a2282010-02-26 08:13:41 +0200948 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100949 case IEEE80211_WORK_DIRECT_PROBE:
950 rma = ieee80211_direct_probe(wk);
951 break;
952 case IEEE80211_WORK_AUTH:
953 rma = ieee80211_authenticate(wk);
954 break;
955 case IEEE80211_WORK_ASSOC:
956 rma = ieee80211_associate(wk);
957 break;
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100958 case IEEE80211_WORK_REMAIN_ON_CHANNEL:
959 rma = ieee80211_remain_on_channel_timeout(wk);
960 break;
Johannes Bergf30221e2010-11-25 10:02:30 +0100961 case IEEE80211_WORK_OFFCHANNEL_TX:
962 rma = ieee80211_offchannel_tx(wk);
963 break;
Johannes Berge5b900d2010-07-29 16:08:55 +0200964 case IEEE80211_WORK_ASSOC_BEACON_WAIT:
965 rma = ieee80211_assoc_beacon_wait(wk);
966 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +0100967 }
968
Johannes Berg723bae72010-01-25 13:36:36 +0100969 wk->started = started;
970
Johannes Bergaf6b6372009-12-23 13:15:35 +0100971 switch (rma) {
972 case WORK_ACT_NONE:
Johannes Berge4da8c32009-12-23 13:15:43 +0100973 /* might have changed the timeout */
974 run_again(local, wk->timeout);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100975 break;
976 case WORK_ACT_TIMEOUT:
977 list_del_rcu(&wk->list);
978 synchronize_rcu();
979 list_add(&wk->list, &free_work);
980 break;
981 default:
982 WARN(1, "unexpected: %d", rma);
983 }
984 }
985
Johannes Berge4da8c32009-12-23 13:15:43 +0100986 list_for_each_entry(wk, &local->work_list, list) {
987 if (!wk->started)
988 continue;
Johannes Berge76aadc2011-11-29 10:20:02 +0100989 if (wk->chan != local->tmp_channel ||
990 wk->chan_type != local->tmp_channel_type)
Johannes Berge4da8c32009-12-23 13:15:43 +0100991 continue;
992 remain_off_channel = true;
993 }
994
995 if (!remain_off_channel && local->tmp_channel) {
996 local->tmp_channel = NULL;
Johannes Berge76aadc2011-11-29 10:20:02 +0100997 ieee80211_hw_config(local, 0);
Ben Greearb23b0252011-02-04 11:54:17 -0800998
Johannes Berge76aadc2011-11-29 10:20:02 +0100999 ieee80211_offchannel_return(local, true);
Ben Greearb23b0252011-02-04 11:54:17 -08001000
Johannes Berge4da8c32009-12-23 13:15:43 +01001001 /* give connection some time to breathe */
1002 run_again(local, jiffies + HZ/2);
1003 }
1004
Teemu Paasikivi68dd5b72010-04-09 13:07:55 +03001005 if (list_empty(&local->work_list) && local->scan_req &&
1006 !local->scanning)
Johannes Bergaf6b6372009-12-23 13:15:35 +01001007 ieee80211_queue_delayed_work(&local->hw,
1008 &local->scan_work,
1009 round_jiffies_relative(0));
1010
Johannes Berge4da8c32009-12-23 13:15:43 +01001011 ieee80211_recalc_idle(local);
1012
Johannes Berg7da7cc12010-08-05 17:02:38 +02001013 mutex_unlock(&local->mtx);
1014
Johannes Bergaf6b6372009-12-23 13:15:35 +01001015 list_for_each_entry_safe(wk, tmp, &free_work, list) {
1016 wk->done(wk, NULL);
1017 list_del(&wk->list);
1018 kfree(wk);
1019 }
1020}
1021
1022void ieee80211_add_work(struct ieee80211_work *wk)
1023{
1024 struct ieee80211_local *local;
1025
1026 if (WARN_ON(!wk->chan))
1027 return;
1028
1029 if (WARN_ON(!wk->sdata))
1030 return;
1031
1032 if (WARN_ON(!wk->done))
1033 return;
1034
Johannes Berg81ac3462010-01-06 15:30:58 +01001035 if (WARN_ON(!ieee80211_sdata_running(wk->sdata)))
1036 return;
1037
Johannes Berge4da8c32009-12-23 13:15:43 +01001038 wk->started = false;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001039
1040 local = wk->sdata->local;
Johannes Berga1699b72010-07-30 16:46:07 +02001041 mutex_lock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001042 list_add_tail(&wk->list, &local->work_list);
Johannes Berga1699b72010-07-30 16:46:07 +02001043 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001044
1045 ieee80211_queue_work(&local->hw, &local->work_work);
1046}
1047
1048void ieee80211_work_init(struct ieee80211_local *local)
1049{
Johannes Bergaf6b6372009-12-23 13:15:35 +01001050 INIT_LIST_HEAD(&local->work_list);
1051 setup_timer(&local->work_timer, ieee80211_work_timer,
1052 (unsigned long)local);
1053 INIT_WORK(&local->work_work, ieee80211_work_work);
1054 skb_queue_head_init(&local->work_skb_queue);
1055}
1056
1057void ieee80211_work_purge(struct ieee80211_sub_if_data *sdata)
1058{
1059 struct ieee80211_local *local = sdata->local;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001060 struct ieee80211_work *wk;
Herton Ronaldo Krzesinski8808f642010-12-13 11:43:51 -02001061 bool cleanup = false;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001062
Johannes Berga1699b72010-07-30 16:46:07 +02001063 mutex_lock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001064 list_for_each_entry(wk, &local->work_list, list) {
Johannes Bergaf6b6372009-12-23 13:15:35 +01001065 if (wk->sdata != sdata)
1066 continue;
Herton Ronaldo Krzesinski8808f642010-12-13 11:43:51 -02001067 cleanup = true;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001068 wk->type = IEEE80211_WORK_ABORT;
Johannes Berge4da8c32009-12-23 13:15:43 +01001069 wk->started = true;
1070 wk->timeout = jiffies;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001071 }
Johannes Berga1699b72010-07-30 16:46:07 +02001072 mutex_unlock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001073
1074 /* run cleanups etc. */
Herton Ronaldo Krzesinski8808f642010-12-13 11:43:51 -02001075 if (cleanup)
1076 ieee80211_work_work(&local->work_work);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001077
Johannes Berga1699b72010-07-30 16:46:07 +02001078 mutex_lock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001079 list_for_each_entry(wk, &local->work_list, list) {
1080 if (wk->sdata != sdata)
1081 continue;
1082 WARN_ON(1);
1083 break;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001084 }
Johannes Berga1699b72010-07-30 16:46:07 +02001085 mutex_unlock(&local->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001086}
1087
1088ieee80211_rx_result ieee80211_work_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1089 struct sk_buff *skb)
1090{
1091 struct ieee80211_local *local = sdata->local;
1092 struct ieee80211_mgmt *mgmt;
1093 struct ieee80211_work *wk;
1094 u16 fc;
1095
1096 if (skb->len < 24)
1097 return RX_DROP_MONITOR;
1098
1099 mgmt = (struct ieee80211_mgmt *) skb->data;
1100 fc = le16_to_cpu(mgmt->frame_control);
1101
1102 list_for_each_entry_rcu(wk, &local->work_list, list) {
1103 if (sdata != wk->sdata)
1104 continue;
1105 if (compare_ether_addr(wk->filter_ta, mgmt->sa))
1106 continue;
1107 if (compare_ether_addr(wk->filter_ta, mgmt->bssid))
1108 continue;
1109
1110 switch (fc & IEEE80211_FCTL_STYPE) {
1111 case IEEE80211_STYPE_AUTH:
1112 case IEEE80211_STYPE_PROBE_RESP:
1113 case IEEE80211_STYPE_ASSOC_RESP:
1114 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berge5b900d2010-07-29 16:08:55 +02001115 case IEEE80211_STYPE_BEACON:
Johannes Bergaf6b6372009-12-23 13:15:35 +01001116 skb_queue_tail(&local->work_skb_queue, skb);
1117 ieee80211_queue_work(&local->hw, &local->work_work);
1118 return RX_QUEUED;
1119 }
1120 }
1121
1122 return RX_CONTINUE;
1123}
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001124
Johannes Berge4da8c32009-12-23 13:15:43 +01001125static enum work_done_result ieee80211_remain_done(struct ieee80211_work *wk,
1126 struct sk_buff *skb)
1127{
1128 /*
1129 * We are done serving the remain-on-channel command.
1130 */
Kalle Valo1990ca62009-12-30 14:42:20 +02001131 cfg80211_remain_on_channel_expired(wk->sdata->dev, (unsigned long) wk,
Johannes Berge4da8c32009-12-23 13:15:43 +01001132 wk->chan, wk->chan_type,
1133 GFP_KERNEL);
1134
1135 return WORK_DONE_DESTROY;
1136}
1137
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001138int ieee80211_wk_remain_on_channel(struct ieee80211_sub_if_data *sdata,
1139 struct ieee80211_channel *chan,
1140 enum nl80211_channel_type channel_type,
1141 unsigned int duration, u64 *cookie)
1142{
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001143 struct ieee80211_work *wk;
1144
1145 wk = kzalloc(sizeof(*wk), GFP_KERNEL);
1146 if (!wk)
1147 return -ENOMEM;
1148
1149 wk->type = IEEE80211_WORK_REMAIN_ON_CHANNEL;
1150 wk->chan = chan;
Johannes Berge4da8c32009-12-23 13:15:43 +01001151 wk->chan_type = channel_type;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001152 wk->sdata = sdata;
Johannes Berge4da8c32009-12-23 13:15:43 +01001153 wk->done = ieee80211_remain_done;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001154
Johannes Berge4da8c32009-12-23 13:15:43 +01001155 wk->remain.duration = duration;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001156
Kalle Valo1990ca62009-12-30 14:42:20 +02001157 *cookie = (unsigned long) wk;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001158
1159 ieee80211_add_work(wk);
1160
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001161 return 0;
1162}
1163
1164int ieee80211_wk_cancel_remain_on_channel(struct ieee80211_sub_if_data *sdata,
1165 u64 cookie)
1166{
1167 struct ieee80211_local *local = sdata->local;
1168 struct ieee80211_work *wk, *tmp;
1169 bool found = false;
1170
Johannes Berga1699b72010-07-30 16:46:07 +02001171 mutex_lock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001172 list_for_each_entry_safe(wk, tmp, &local->work_list, list) {
Kalle Valo1990ca62009-12-30 14:42:20 +02001173 if ((unsigned long) wk == cookie) {
Johannes Berge4da8c32009-12-23 13:15:43 +01001174 wk->timeout = jiffies;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001175 found = true;
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001176 break;
1177 }
1178 }
Johannes Berga1699b72010-07-30 16:46:07 +02001179 mutex_unlock(&local->mtx);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001180
1181 if (!found)
1182 return -ENOENT;
1183
Johannes Berge4da8c32009-12-23 13:15:43 +01001184 ieee80211_queue_work(&local->hw, &local->work_work);
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001185
1186 return 0;
1187}