2 * mac80211 work implementation
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>
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.
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>
22 #include <linux/slab.h>
23 #include <net/mac80211.h>
24 #include <asm/unaligned.h>
26 #include "ieee80211_i.h"
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
43 static inline void ASSERT_WORK_MTX(struct ieee80211_local
*local
)
45 lockdep_assert_held(&local
->mtx
);
49 * We can have multiple work items (and connection probing)
50 * scheduling this timer, but we need to take care to only
51 * reschedule it when it should fire _earlier_ than it was
52 * asked for before, or if it's not pending right now. This
53 * function ensures that. Note that it then is required to
54 * run this function for all timeouts after the first one
55 * has happened -- the work that runs from this timer will
58 static void run_again(struct ieee80211_local
*local
,
59 unsigned long timeout
)
61 ASSERT_WORK_MTX(local
);
63 if (!timer_pending(&local
->work_timer
) ||
64 time_before(timeout
, local
->work_timer
.expires
))
65 mod_timer(&local
->work_timer
, timeout
);
68 void free_work(struct ieee80211_work
*wk
)
70 kfree_rcu(wk
, rcu_head
);
73 static int ieee80211_compatible_rates(const u8
*supp_rates
, int supp_rates_len
,
74 struct ieee80211_supported_band
*sband
,
80 for (i
= 0; i
< supp_rates_len
; i
++) {
81 int rate
= (supp_rates
[i
] & 0x7F) * 5;
83 for (j
= 0; j
< sband
->n_bitrates
; j
++)
84 if (sband
->bitrates
[j
].bitrate
== rate
) {
94 /* frame sending functions */
96 static void ieee80211_add_ht_ie(struct sk_buff
*skb
, const u8
*ht_info_ie
,
97 struct ieee80211_supported_band
*sband
,
98 struct ieee80211_channel
*channel
,
99 enum ieee80211_smps_mode smps
)
101 struct ieee80211_ht_info
*ht_info
;
103 u32 flags
= channel
->flags
;
104 u16 cap
= sband
->ht_cap
.cap
;
107 if (!sband
->ht_cap
.ht_supported
)
113 if (ht_info_ie
[1] < sizeof(struct ieee80211_ht_info
))
116 ht_info
= (struct ieee80211_ht_info
*)(ht_info_ie
+ 2);
118 /* determine capability flags */
120 switch (ht_info
->ht_param
& IEEE80211_HT_PARAM_CHA_SEC_OFFSET
) {
121 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE
:
122 if (flags
& IEEE80211_CHAN_NO_HT40PLUS
) {
123 cap
&= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
124 cap
&= ~IEEE80211_HT_CAP_SGI_40
;
127 case IEEE80211_HT_PARAM_CHA_SEC_BELOW
:
128 if (flags
& IEEE80211_CHAN_NO_HT40MINUS
) {
129 cap
&= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
130 cap
&= ~IEEE80211_HT_CAP_SGI_40
;
135 /* set SM PS mode properly */
136 cap
&= ~IEEE80211_HT_CAP_SM_PS
;
138 case IEEE80211_SMPS_AUTOMATIC
:
139 case IEEE80211_SMPS_NUM_MODES
:
141 case IEEE80211_SMPS_OFF
:
142 cap
|= WLAN_HT_CAP_SM_PS_DISABLED
<<
143 IEEE80211_HT_CAP_SM_PS_SHIFT
;
145 case IEEE80211_SMPS_STATIC
:
146 cap
|= WLAN_HT_CAP_SM_PS_STATIC
<<
147 IEEE80211_HT_CAP_SM_PS_SHIFT
;
149 case IEEE80211_SMPS_DYNAMIC
:
150 cap
|= WLAN_HT_CAP_SM_PS_DYNAMIC
<<
151 IEEE80211_HT_CAP_SM_PS_SHIFT
;
155 /* reserve and fill IE */
157 pos
= skb_put(skb
, sizeof(struct ieee80211_ht_cap
) + 2);
158 *pos
++ = WLAN_EID_HT_CAPABILITY
;
159 *pos
++ = sizeof(struct ieee80211_ht_cap
);
160 memset(pos
, 0, sizeof(struct ieee80211_ht_cap
));
162 /* capability flags */
163 tmp
= cpu_to_le16(cap
);
164 memcpy(pos
, &tmp
, sizeof(u16
));
167 /* AMPDU parameters */
168 *pos
++ = sband
->ht_cap
.ampdu_factor
|
169 (sband
->ht_cap
.ampdu_density
<<
170 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT
);
173 memcpy(pos
, &sband
->ht_cap
.mcs
, sizeof(sband
->ht_cap
.mcs
));
174 pos
+= sizeof(sband
->ht_cap
.mcs
);
176 /* extended capabilities */
177 pos
+= sizeof(__le16
);
179 /* BF capabilities */
180 pos
+= sizeof(__le32
);
182 /* antenna selection */
186 static void ieee80211_send_assoc(struct ieee80211_sub_if_data
*sdata
,
187 struct ieee80211_work
*wk
)
189 struct ieee80211_local
*local
= sdata
->local
;
191 struct ieee80211_mgmt
*mgmt
;
193 size_t offset
= 0, noffset
;
194 int i
, count
, rates_len
, supp_rates_len
;
196 struct ieee80211_supported_band
*sband
;
199 sband
= local
->hw
.wiphy
->bands
[wk
->chan
->band
];
201 if (wk
->assoc
.supp_rates_len
) {
203 * Get all rates supported by the device and the AP as
204 * some APs don't like getting a superset of their rates
205 * in the association request (e.g. D-Link DAP 1353 in
208 rates_len
= ieee80211_compatible_rates(wk
->assoc
.supp_rates
,
209 wk
->assoc
.supp_rates_len
,
213 * In case AP not provide any supported rates information
214 * before association, we send information element(s) with
215 * all rates that we support.
218 rates_len
= sband
->n_bitrates
;
221 skb
= alloc_skb(local
->hw
.extra_tx_headroom
+
222 sizeof(*mgmt
) + /* bit too much but doesn't matter */
223 2 + wk
->assoc
.ssid_len
+ /* SSID */
224 4 + rates_len
+ /* (extended) rates */
225 4 + /* power capability */
226 2 + 2 * sband
->n_channels
+ /* supported channels */
227 2 + sizeof(struct ieee80211_ht_cap
) + /* HT */
228 wk
->ie_len
+ /* extra IEs */
232 printk(KERN_DEBUG
"%s: failed to allocate buffer for assoc "
233 "frame\n", sdata
->name
);
236 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
238 capab
= WLAN_CAPABILITY_ESS
;
240 if (sband
->band
== IEEE80211_BAND_2GHZ
) {
241 if (!(local
->hw
.flags
& IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE
))
242 capab
|= WLAN_CAPABILITY_SHORT_SLOT_TIME
;
243 if (!(local
->hw
.flags
& IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE
))
244 capab
|= WLAN_CAPABILITY_SHORT_PREAMBLE
;
247 if (wk
->assoc
.capability
& WLAN_CAPABILITY_PRIVACY
)
248 capab
|= WLAN_CAPABILITY_PRIVACY
;
250 if ((wk
->assoc
.capability
& WLAN_CAPABILITY_SPECTRUM_MGMT
) &&
251 (local
->hw
.flags
& IEEE80211_HW_SPECTRUM_MGMT
))
252 capab
|= WLAN_CAPABILITY_SPECTRUM_MGMT
;
254 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 24);
256 memcpy(mgmt
->da
, wk
->filter_ta
, ETH_ALEN
);
257 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
258 memcpy(mgmt
->bssid
, wk
->filter_ta
, ETH_ALEN
);
260 if (!is_zero_ether_addr(wk
->assoc
.prev_bssid
)) {
262 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
263 IEEE80211_STYPE_REASSOC_REQ
);
264 mgmt
->u
.reassoc_req
.capab_info
= cpu_to_le16(capab
);
265 mgmt
->u
.reassoc_req
.listen_interval
=
266 cpu_to_le16(local
->hw
.conf
.listen_interval
);
267 memcpy(mgmt
->u
.reassoc_req
.current_ap
, wk
->assoc
.prev_bssid
,
271 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
272 IEEE80211_STYPE_ASSOC_REQ
);
273 mgmt
->u
.assoc_req
.capab_info
= cpu_to_le16(capab
);
274 mgmt
->u
.assoc_req
.listen_interval
=
275 cpu_to_le16(local
->hw
.conf
.listen_interval
);
279 pos
= skb_put(skb
, 2 + wk
->assoc
.ssid_len
);
280 *pos
++ = WLAN_EID_SSID
;
281 *pos
++ = wk
->assoc
.ssid_len
;
282 memcpy(pos
, wk
->assoc
.ssid
, wk
->assoc
.ssid_len
);
284 /* add all rates which were marked to be used above */
285 supp_rates_len
= rates_len
;
286 if (supp_rates_len
> 8)
289 pos
= skb_put(skb
, supp_rates_len
+ 2);
290 *pos
++ = WLAN_EID_SUPP_RATES
;
291 *pos
++ = supp_rates_len
;
294 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
295 if (BIT(i
) & rates
) {
296 int rate
= sband
->bitrates
[i
].bitrate
;
297 *pos
++ = (u8
) (rate
/ 5);
303 if (rates_len
> count
) {
304 pos
= skb_put(skb
, rates_len
- count
+ 2);
305 *pos
++ = WLAN_EID_EXT_SUPP_RATES
;
306 *pos
++ = rates_len
- count
;
308 for (i
++; i
< sband
->n_bitrates
; i
++) {
309 if (BIT(i
) & rates
) {
310 int rate
= sband
->bitrates
[i
].bitrate
;
311 *pos
++ = (u8
) (rate
/ 5);
316 if (capab
& WLAN_CAPABILITY_SPECTRUM_MGMT
) {
317 /* 1. power capabilities */
318 pos
= skb_put(skb
, 4);
319 *pos
++ = WLAN_EID_PWR_CAPABILITY
;
321 *pos
++ = 0; /* min tx power */
322 *pos
++ = wk
->chan
->max_power
; /* max tx power */
324 /* 2. supported channels */
325 /* TODO: get this in reg domain format */
326 pos
= skb_put(skb
, 2 * sband
->n_channels
+ 2);
327 *pos
++ = WLAN_EID_SUPPORTED_CHANNELS
;
328 *pos
++ = 2 * sband
->n_channels
;
329 for (i
= 0; i
< sband
->n_channels
; i
++) {
330 *pos
++ = ieee80211_frequency_to_channel(
331 sband
->channels
[i
].center_freq
);
332 *pos
++ = 1; /* one channel in the subband*/
336 /* if present, add any custom IEs that go before HT */
337 if (wk
->ie_len
&& wk
->ie
) {
338 static const u8 before_ht
[] = {
341 WLAN_EID_EXT_SUPP_RATES
,
342 WLAN_EID_PWR_CAPABILITY
,
343 WLAN_EID_SUPPORTED_CHANNELS
,
346 WLAN_EID_RRM_ENABLED_CAPABILITIES
,
347 WLAN_EID_MOBILITY_DOMAIN
,
348 WLAN_EID_SUPPORTED_REGULATORY_CLASSES
,
350 noffset
= ieee80211_ie_split(wk
->ie
, wk
->ie_len
,
351 before_ht
, ARRAY_SIZE(before_ht
),
353 pos
= skb_put(skb
, noffset
- offset
);
354 memcpy(pos
, wk
->ie
+ offset
, noffset
- offset
);
358 if (wk
->assoc
.use_11n
&& wk
->assoc
.wmm_used
&&
359 local
->hw
.queues
>= 4)
360 ieee80211_add_ht_ie(skb
, wk
->assoc
.ht_information_ie
,
361 sband
, wk
->chan
, wk
->assoc
.smps
);
363 /* if present, add any custom non-vendor IEs that go after HT */
364 if (wk
->ie_len
&& wk
->ie
) {
365 noffset
= ieee80211_ie_split_vendor(wk
->ie
, wk
->ie_len
,
367 pos
= skb_put(skb
, noffset
- offset
);
368 memcpy(pos
, wk
->ie
+ offset
, noffset
- offset
);
372 if (wk
->assoc
.wmm_used
&& local
->hw
.queues
>= 4) {
373 if (wk
->assoc
.uapsd_used
) {
374 qos_info
= local
->uapsd_queues
;
375 qos_info
|= (local
->uapsd_max_sp_len
<<
376 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT
);
381 pos
= skb_put(skb
, 9);
382 *pos
++ = WLAN_EID_VENDOR_SPECIFIC
;
383 *pos
++ = 7; /* len */
384 *pos
++ = 0x00; /* Microsoft OUI 00:50:F2 */
387 *pos
++ = 2; /* WME */
388 *pos
++ = 0; /* WME info */
389 *pos
++ = 1; /* WME ver */
393 /* add any remaining custom (i.e. vendor specific here) IEs */
394 if (wk
->ie_len
&& wk
->ie
) {
395 noffset
= wk
->ie_len
;
396 pos
= skb_put(skb
, noffset
- offset
);
397 memcpy(pos
, wk
->ie
+ offset
, noffset
- offset
);
400 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
401 ieee80211_tx_skb(sdata
, skb
);
404 static void ieee80211_remove_auth_bss(struct ieee80211_local
*local
,
405 struct ieee80211_work
*wk
)
407 struct cfg80211_bss
*cbss
;
408 u16 capa_val
= WLAN_CAPABILITY_ESS
;
410 if (wk
->probe_auth
.privacy
)
411 capa_val
|= WLAN_CAPABILITY_PRIVACY
;
413 cbss
= cfg80211_get_bss(local
->hw
.wiphy
, wk
->chan
, wk
->filter_ta
,
414 wk
->probe_auth
.ssid
, wk
->probe_auth
.ssid_len
,
415 WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_PRIVACY
,
420 cfg80211_unlink_bss(local
->hw
.wiphy
, cbss
);
421 cfg80211_put_bss(cbss
);
424 static enum work_action __must_check
425 ieee80211_direct_probe(struct ieee80211_work
*wk
)
427 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
428 struct ieee80211_local
*local
= sdata
->local
;
430 wk
->probe_auth
.tries
++;
431 if (wk
->probe_auth
.tries
> IEEE80211_AUTH_MAX_TRIES
) {
432 printk(KERN_DEBUG
"%s: direct probe to %pM timed out\n",
433 sdata
->name
, wk
->filter_ta
);
436 * Most likely AP is not in the range so remove the
437 * bss struct for that AP.
439 ieee80211_remove_auth_bss(local
, wk
);
441 return WORK_ACT_TIMEOUT
;
444 printk(KERN_DEBUG
"%s: direct probe to %pM (try %d/%i)\n",
445 sdata
->name
, wk
->filter_ta
, wk
->probe_auth
.tries
,
446 IEEE80211_AUTH_MAX_TRIES
);
449 * Direct probe is sent to broadcast address as some APs
450 * will not answer to direct packet in unassociated state.
452 ieee80211_send_probe_req(sdata
, NULL
, wk
->probe_auth
.ssid
,
453 wk
->probe_auth
.ssid_len
, NULL
, 0);
455 wk
->timeout
= jiffies
+ IEEE80211_AUTH_TIMEOUT
;
456 run_again(local
, wk
->timeout
);
458 return WORK_ACT_NONE
;
462 static enum work_action __must_check
463 ieee80211_authenticate(struct ieee80211_work
*wk
)
465 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
466 struct ieee80211_local
*local
= sdata
->local
;
468 wk
->probe_auth
.tries
++;
469 if (wk
->probe_auth
.tries
> IEEE80211_AUTH_MAX_TRIES
) {
470 printk(KERN_DEBUG
"%s: authentication with %pM"
471 " timed out\n", sdata
->name
, wk
->filter_ta
);
474 * Most likely AP is not in the range so remove the
475 * bss struct for that AP.
477 ieee80211_remove_auth_bss(local
, wk
);
479 return WORK_ACT_TIMEOUT
;
482 printk(KERN_DEBUG
"%s: authenticate with %pM (try %d)\n",
483 sdata
->name
, wk
->filter_ta
, wk
->probe_auth
.tries
);
485 ieee80211_send_auth(sdata
, 1, wk
->probe_auth
.algorithm
, wk
->ie
,
486 wk
->ie_len
, wk
->filter_ta
, NULL
, 0, 0);
487 wk
->probe_auth
.transaction
= 2;
489 wk
->timeout
= jiffies
+ IEEE80211_AUTH_TIMEOUT
;
490 run_again(local
, wk
->timeout
);
492 return WORK_ACT_NONE
;
495 static enum work_action __must_check
496 ieee80211_associate(struct ieee80211_work
*wk
)
498 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
499 struct ieee80211_local
*local
= sdata
->local
;
502 if (wk
->assoc
.tries
> IEEE80211_ASSOC_MAX_TRIES
) {
503 printk(KERN_DEBUG
"%s: association with %pM"
505 sdata
->name
, wk
->filter_ta
);
508 * Most likely AP is not in the range so remove the
509 * bss struct for that AP.
512 cfg80211_unlink_bss(local
->hw
.wiphy
, wk
->assoc
.bss
);
514 return WORK_ACT_TIMEOUT
;
517 printk(KERN_DEBUG
"%s: associate with %pM (try %d)\n",
518 sdata
->name
, wk
->filter_ta
, wk
->assoc
.tries
);
519 ieee80211_send_assoc(sdata
, wk
);
521 wk
->timeout
= jiffies
+ IEEE80211_ASSOC_TIMEOUT
;
522 run_again(local
, wk
->timeout
);
524 return WORK_ACT_NONE
;
527 static enum work_action __must_check
528 ieee80211_remain_on_channel_timeout(struct ieee80211_work
*wk
)
531 * First time we run, do nothing -- the generic code will
532 * have switched to the right channel etc.
535 wk
->timeout
= jiffies
+ msecs_to_jiffies(wk
->remain
.duration
);
537 cfg80211_ready_on_channel(wk
->sdata
->dev
, (unsigned long) wk
,
538 wk
->chan
, wk
->chan_type
,
539 wk
->remain
.duration
, GFP_KERNEL
);
541 return WORK_ACT_NONE
;
544 return WORK_ACT_TIMEOUT
;
547 static enum work_action __must_check
548 ieee80211_offchannel_tx(struct ieee80211_work
*wk
)
551 wk
->timeout
= jiffies
+ msecs_to_jiffies(wk
->offchan_tx
.wait
);
554 * After this, offchan_tx.frame remains but now is no
555 * longer a valid pointer -- we still need it as the
556 * cookie for canceling this work.
558 ieee80211_tx_skb(wk
->sdata
, wk
->offchan_tx
.frame
);
560 return WORK_ACT_NONE
;
563 return WORK_ACT_TIMEOUT
;
566 static enum work_action __must_check
567 ieee80211_assoc_beacon_wait(struct ieee80211_work
*wk
)
570 return WORK_ACT_TIMEOUT
;
573 * Wait up to one beacon interval ...
574 * should this be more if we miss one?
576 printk(KERN_DEBUG
"%s: waiting for beacon from %pM\n",
577 wk
->sdata
->name
, wk
->filter_ta
);
578 wk
->timeout
= TU_TO_EXP_TIME(wk
->assoc
.bss
->beacon_interval
);
579 return WORK_ACT_NONE
;
582 static void ieee80211_auth_challenge(struct ieee80211_work
*wk
,
583 struct ieee80211_mgmt
*mgmt
,
586 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
588 struct ieee802_11_elems elems
;
590 pos
= mgmt
->u
.auth
.variable
;
591 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
592 if (!elems
.challenge
)
594 ieee80211_send_auth(sdata
, 3, wk
->probe_auth
.algorithm
,
595 elems
.challenge
- 2, elems
.challenge_len
+ 2,
596 wk
->filter_ta
, wk
->probe_auth
.key
,
597 wk
->probe_auth
.key_len
, wk
->probe_auth
.key_idx
);
598 wk
->probe_auth
.transaction
= 4;
601 static enum work_action __must_check
602 ieee80211_rx_mgmt_auth(struct ieee80211_work
*wk
,
603 struct ieee80211_mgmt
*mgmt
, size_t len
)
605 u16 auth_alg
, auth_transaction
, status_code
;
607 if (wk
->type
!= IEEE80211_WORK_AUTH
)
608 return WORK_ACT_MISMATCH
;
611 return WORK_ACT_NONE
;
613 auth_alg
= le16_to_cpu(mgmt
->u
.auth
.auth_alg
);
614 auth_transaction
= le16_to_cpu(mgmt
->u
.auth
.auth_transaction
);
615 status_code
= le16_to_cpu(mgmt
->u
.auth
.status_code
);
617 if (auth_alg
!= wk
->probe_auth
.algorithm
||
618 auth_transaction
!= wk
->probe_auth
.transaction
)
619 return WORK_ACT_NONE
;
621 if (status_code
!= WLAN_STATUS_SUCCESS
) {
622 printk(KERN_DEBUG
"%s: %pM denied authentication (status %d)\n",
623 wk
->sdata
->name
, mgmt
->sa
, status_code
);
624 return WORK_ACT_DONE
;
627 switch (wk
->probe_auth
.algorithm
) {
632 case WLAN_AUTH_SHARED_KEY
:
633 if (wk
->probe_auth
.transaction
!= 4) {
634 ieee80211_auth_challenge(wk
, mgmt
, len
);
635 /* need another frame */
636 return WORK_ACT_NONE
;
641 return WORK_ACT_NONE
;
644 printk(KERN_DEBUG
"%s: authenticated\n", wk
->sdata
->name
);
645 return WORK_ACT_DONE
;
648 static enum work_action __must_check
649 ieee80211_rx_mgmt_assoc_resp(struct ieee80211_work
*wk
,
650 struct ieee80211_mgmt
*mgmt
, size_t len
,
653 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
654 struct ieee80211_local
*local
= sdata
->local
;
655 u16 capab_info
, status_code
, aid
;
656 struct ieee802_11_elems elems
;
659 if (wk
->type
!= IEEE80211_WORK_ASSOC
)
660 return WORK_ACT_MISMATCH
;
663 * AssocResp and ReassocResp have identical structure, so process both
664 * of them in this function.
668 return WORK_ACT_NONE
;
670 capab_info
= le16_to_cpu(mgmt
->u
.assoc_resp
.capab_info
);
671 status_code
= le16_to_cpu(mgmt
->u
.assoc_resp
.status_code
);
672 aid
= le16_to_cpu(mgmt
->u
.assoc_resp
.aid
);
674 printk(KERN_DEBUG
"%s: RX %sssocResp from %pM (capab=0x%x "
675 "status=%d aid=%d)\n",
676 sdata
->name
, reassoc
? "Rea" : "A", mgmt
->sa
,
677 capab_info
, status_code
, (u16
)(aid
& ~(BIT(15) | BIT(14))));
679 pos
= mgmt
->u
.assoc_resp
.variable
;
680 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
682 if (status_code
== WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY
&&
683 elems
.timeout_int
&& elems
.timeout_int_len
== 5 &&
684 elems
.timeout_int
[0] == WLAN_TIMEOUT_ASSOC_COMEBACK
) {
686 tu
= get_unaligned_le32(elems
.timeout_int
+ 1);
687 ms
= tu
* 1024 / 1000;
688 printk(KERN_DEBUG
"%s: %pM rejected association temporarily; "
689 "comeback duration %u TU (%u ms)\n",
690 sdata
->name
, mgmt
->sa
, tu
, ms
);
691 wk
->timeout
= jiffies
+ msecs_to_jiffies(ms
);
692 if (ms
> IEEE80211_ASSOC_TIMEOUT
)
693 run_again(local
, wk
->timeout
);
694 return WORK_ACT_NONE
;
697 if (status_code
!= WLAN_STATUS_SUCCESS
)
698 printk(KERN_DEBUG
"%s: %pM denied association (code=%d)\n",
699 sdata
->name
, mgmt
->sa
, status_code
);
701 printk(KERN_DEBUG
"%s: associated\n", sdata
->name
);
703 return WORK_ACT_DONE
;
706 static enum work_action __must_check
707 ieee80211_rx_mgmt_probe_resp(struct ieee80211_work
*wk
,
708 struct ieee80211_mgmt
*mgmt
, size_t len
,
709 struct ieee80211_rx_status
*rx_status
)
711 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
712 struct ieee80211_local
*local
= sdata
->local
;
715 ASSERT_WORK_MTX(local
);
717 if (wk
->type
!= IEEE80211_WORK_DIRECT_PROBE
)
718 return WORK_ACT_MISMATCH
;
721 return WORK_ACT_NONE
;
723 baselen
= (u8
*) mgmt
->u
.probe_resp
.variable
- (u8
*) mgmt
;
725 return WORK_ACT_NONE
;
727 printk(KERN_DEBUG
"%s: direct probe responded\n", sdata
->name
);
728 return WORK_ACT_DONE
;
731 static enum work_action __must_check
732 ieee80211_rx_mgmt_beacon(struct ieee80211_work
*wk
,
733 struct ieee80211_mgmt
*mgmt
, size_t len
)
735 struct ieee80211_sub_if_data
*sdata
= wk
->sdata
;
736 struct ieee80211_local
*local
= sdata
->local
;
738 ASSERT_WORK_MTX(local
);
740 if (wk
->type
!= IEEE80211_WORK_ASSOC_BEACON_WAIT
)
741 return WORK_ACT_MISMATCH
;
744 return WORK_ACT_NONE
;
746 printk(KERN_DEBUG
"%s: beacon received\n", sdata
->name
);
747 return WORK_ACT_DONE
;
750 static void ieee80211_work_rx_queued_mgmt(struct ieee80211_local
*local
,
753 struct ieee80211_rx_status
*rx_status
;
754 struct ieee80211_mgmt
*mgmt
;
755 struct ieee80211_work
*wk
;
756 enum work_action rma
= WORK_ACT_NONE
;
759 rx_status
= (struct ieee80211_rx_status
*) skb
->cb
;
760 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
761 fc
= le16_to_cpu(mgmt
->frame_control
);
763 mutex_lock(&local
->mtx
);
765 list_for_each_entry(wk
, &local
->work_list
, list
) {
766 const u8
*bssid
= NULL
;
769 case IEEE80211_WORK_DIRECT_PROBE
:
770 case IEEE80211_WORK_AUTH
:
771 case IEEE80211_WORK_ASSOC
:
772 case IEEE80211_WORK_ASSOC_BEACON_WAIT
:
773 bssid
= wk
->filter_ta
;
780 * Before queuing, we already verified mgmt->sa,
781 * so this is needed just for matching.
783 if (compare_ether_addr(bssid
, mgmt
->bssid
))
786 switch (fc
& IEEE80211_FCTL_STYPE
) {
787 case IEEE80211_STYPE_BEACON
:
788 rma
= ieee80211_rx_mgmt_beacon(wk
, mgmt
, skb
->len
);
790 case IEEE80211_STYPE_PROBE_RESP
:
791 rma
= ieee80211_rx_mgmt_probe_resp(wk
, mgmt
, skb
->len
,
794 case IEEE80211_STYPE_AUTH
:
795 rma
= ieee80211_rx_mgmt_auth(wk
, mgmt
, skb
->len
);
797 case IEEE80211_STYPE_ASSOC_RESP
:
798 rma
= ieee80211_rx_mgmt_assoc_resp(wk
, mgmt
,
801 case IEEE80211_STYPE_REASSOC_RESP
:
802 rma
= ieee80211_rx_mgmt_assoc_resp(wk
, mgmt
,
811 * We've either received an unexpected frame, or we have
812 * multiple work items and need to match the frame to the
815 if (rma
== WORK_ACT_MISMATCH
)
819 * We've processed this frame for that work, so it can't
820 * belong to another work struct.
821 * NB: this is also required for correctness for 'rma'!
827 case WORK_ACT_MISMATCH
:
828 /* ignore this unmatched frame */
833 list_del_rcu(&wk
->list
);
836 WARN(1, "unexpected: %d", rma
);
839 mutex_unlock(&local
->mtx
);
841 if (rma
!= WORK_ACT_DONE
)
844 switch (wk
->done(wk
, skb
)) {
845 case WORK_DONE_DESTROY
:
848 case WORK_DONE_REQUEUE
:
850 wk
->started
= false; /* restart */
851 mutex_lock(&local
->mtx
);
852 list_add_tail(&wk
->list
, &local
->work_list
);
853 mutex_unlock(&local
->mtx
);
860 static bool ieee80211_work_ct_coexists(enum nl80211_channel_type wk_ct
,
861 enum nl80211_channel_type oper_ct
)
864 case NL80211_CHAN_NO_HT
:
866 case NL80211_CHAN_HT20
:
867 if (oper_ct
!= NL80211_CHAN_NO_HT
)
870 case NL80211_CHAN_HT40MINUS
:
871 case NL80211_CHAN_HT40PLUS
:
872 return (wk_ct
== oper_ct
);
874 WARN_ON(1); /* shouldn't get here */
878 static enum nl80211_channel_type
879 ieee80211_calc_ct(enum nl80211_channel_type wk_ct
,
880 enum nl80211_channel_type oper_ct
)
883 case NL80211_CHAN_NO_HT
:
885 case NL80211_CHAN_HT20
:
886 if (oper_ct
!= NL80211_CHAN_NO_HT
)
889 case NL80211_CHAN_HT40MINUS
:
890 case NL80211_CHAN_HT40PLUS
:
893 WARN_ON(1); /* shouldn't get here */
898 static void ieee80211_work_timer(unsigned long data
)
900 struct ieee80211_local
*local
= (void *) data
;
902 if (local
->quiescing
)
905 ieee80211_queue_work(&local
->hw
, &local
->work_work
);
908 static void ieee80211_work_work(struct work_struct
*work
)
910 struct ieee80211_local
*local
=
911 container_of(work
, struct ieee80211_local
, work_work
);
913 struct ieee80211_work
*wk
, *tmp
;
914 LIST_HEAD(free_work
);
915 enum work_action rma
;
916 bool remain_off_channel
= false;
922 * ieee80211_queue_work() should have picked up most cases,
923 * here we'll pick the rest.
925 if (WARN(local
->suspended
, "work scheduled while going to suspend\n"))
928 /* first process frames to avoid timing out while a frame is pending */
929 while ((skb
= skb_dequeue(&local
->work_skb_queue
)))
930 ieee80211_work_rx_queued_mgmt(local
, skb
);
932 mutex_lock(&local
->mtx
);
934 ieee80211_recalc_idle(local
);
936 list_for_each_entry_safe(wk
, tmp
, &local
->work_list
, list
) {
937 bool started
= wk
->started
;
939 /* mark work as started if it's on the current off-channel */
940 if (!started
&& local
->tmp_channel
&&
941 wk
->chan
== local
->tmp_channel
&&
942 wk
->chan_type
== local
->tmp_channel_type
) {
944 wk
->timeout
= jiffies
;
947 if (!started
&& !local
->tmp_channel
) {
949 bool tmp_chan_changed
= false;
951 enum nl80211_channel_type wk_ct
;
952 on_oper_chan
= ieee80211_cfg_on_oper_channel(local
);
954 /* Work with existing channel type if possible. */
955 wk_ct
= wk
->chan_type
;
956 if (wk
->chan
== local
->hw
.conf
.channel
)
957 wk_ct
= ieee80211_calc_ct(wk
->chan_type
,
958 local
->hw
.conf
.channel_type
);
960 if (local
->tmp_channel
)
961 if ((local
->tmp_channel
!= wk
->chan
) ||
962 (local
->tmp_channel_type
!= wk_ct
))
963 tmp_chan_changed
= true;
965 local
->tmp_channel
= wk
->chan
;
966 local
->tmp_channel_type
= wk_ct
;
968 * Leave the station vifs in awake mode if they
969 * happen to be on the same channel as
970 * the requested channel.
972 on_oper_chan2
= ieee80211_cfg_on_oper_channel(local
);
973 if (on_oper_chan
!= on_oper_chan2
) {
975 /* going off oper channel, PS too */
976 ieee80211_offchannel_stop_vifs(local
,
978 ieee80211_hw_config(local
, 0);
980 /* going on channel, but leave PS
982 ieee80211_hw_config(local
, 0);
983 ieee80211_offchannel_return(local
,
987 } else if (tmp_chan_changed
)
988 /* Still off-channel, but on some other
989 * channel, so update hardware.
990 * PS should already be off-channel.
992 ieee80211_hw_config(local
, 0);
995 wk
->timeout
= jiffies
;
998 /* don't try to work with items that aren't started */
1002 if (time_is_after_jiffies(wk
->timeout
)) {
1004 * This work item isn't supposed to be worked on
1005 * right now, but take care to adjust the timer
1008 run_again(local
, wk
->timeout
);
1016 rma
= WORK_ACT_NONE
;
1018 case IEEE80211_WORK_ABORT
:
1019 rma
= WORK_ACT_TIMEOUT
;
1021 case IEEE80211_WORK_DIRECT_PROBE
:
1022 rma
= ieee80211_direct_probe(wk
);
1024 case IEEE80211_WORK_AUTH
:
1025 rma
= ieee80211_authenticate(wk
);
1027 case IEEE80211_WORK_ASSOC
:
1028 rma
= ieee80211_associate(wk
);
1030 case IEEE80211_WORK_REMAIN_ON_CHANNEL
:
1031 rma
= ieee80211_remain_on_channel_timeout(wk
);
1033 case IEEE80211_WORK_OFFCHANNEL_TX
:
1034 rma
= ieee80211_offchannel_tx(wk
);
1036 case IEEE80211_WORK_ASSOC_BEACON_WAIT
:
1037 rma
= ieee80211_assoc_beacon_wait(wk
);
1041 wk
->started
= started
;
1045 /* might have changed the timeout */
1046 run_again(local
, wk
->timeout
);
1048 case WORK_ACT_TIMEOUT
:
1049 list_del_rcu(&wk
->list
);
1051 list_add(&wk
->list
, &free_work
);
1054 WARN(1, "unexpected: %d", rma
);
1058 list_for_each_entry(wk
, &local
->work_list
, list
) {
1061 if (wk
->chan
!= local
->tmp_channel
)
1063 if (ieee80211_work_ct_coexists(wk
->chan_type
,
1064 local
->tmp_channel_type
))
1066 remain_off_channel
= true;
1069 if (!remain_off_channel
&& local
->tmp_channel
) {
1070 bool on_oper_chan
= ieee80211_cfg_on_oper_channel(local
);
1071 local
->tmp_channel
= NULL
;
1072 /* If tmp_channel wasn't operating channel, then
1073 * we need to go back on-channel.
1074 * NOTE: If we can ever be here while scannning,
1075 * or if the hw_config() channel config logic changes,
1076 * then we may need to do a more thorough check to see if
1077 * we still need to do a hardware config. Currently,
1078 * we cannot be here while scanning, however.
1080 if (ieee80211_cfg_on_oper_channel(local
) && !on_oper_chan
)
1081 ieee80211_hw_config(local
, 0);
1083 /* At the least, we need to disable offchannel_ps,
1084 * so just go ahead and run the entire offchannel
1085 * return logic here. We *could* skip enabling
1086 * beaconing if we were already on-oper-channel
1087 * as a future optimization.
1089 ieee80211_offchannel_return(local
, true, true);
1091 /* give connection some time to breathe */
1092 run_again(local
, jiffies
+ HZ
/2);
1095 if (list_empty(&local
->work_list
) && local
->scan_req
&&
1097 ieee80211_queue_delayed_work(&local
->hw
,
1099 round_jiffies_relative(0));
1101 ieee80211_recalc_idle(local
);
1103 mutex_unlock(&local
->mtx
);
1105 list_for_each_entry_safe(wk
, tmp
, &free_work
, list
) {
1107 list_del(&wk
->list
);
1112 void ieee80211_add_work(struct ieee80211_work
*wk
)
1114 struct ieee80211_local
*local
;
1116 if (WARN_ON(!wk
->chan
))
1119 if (WARN_ON(!wk
->sdata
))
1122 if (WARN_ON(!wk
->done
))
1125 if (WARN_ON(!ieee80211_sdata_running(wk
->sdata
)))
1128 wk
->started
= false;
1130 local
= wk
->sdata
->local
;
1131 mutex_lock(&local
->mtx
);
1132 list_add_tail(&wk
->list
, &local
->work_list
);
1133 mutex_unlock(&local
->mtx
);
1135 ieee80211_queue_work(&local
->hw
, &local
->work_work
);
1138 void ieee80211_work_init(struct ieee80211_local
*local
)
1140 INIT_LIST_HEAD(&local
->work_list
);
1141 setup_timer(&local
->work_timer
, ieee80211_work_timer
,
1142 (unsigned long)local
);
1143 INIT_WORK(&local
->work_work
, ieee80211_work_work
);
1144 skb_queue_head_init(&local
->work_skb_queue
);
1147 void ieee80211_work_purge(struct ieee80211_sub_if_data
*sdata
)
1149 struct ieee80211_local
*local
= sdata
->local
;
1150 struct ieee80211_work
*wk
;
1151 bool cleanup
= false;
1153 mutex_lock(&local
->mtx
);
1154 list_for_each_entry(wk
, &local
->work_list
, list
) {
1155 if (wk
->sdata
!= sdata
)
1158 wk
->type
= IEEE80211_WORK_ABORT
;
1160 wk
->timeout
= jiffies
;
1162 mutex_unlock(&local
->mtx
);
1164 /* run cleanups etc. */
1166 ieee80211_work_work(&local
->work_work
);
1168 mutex_lock(&local
->mtx
);
1169 list_for_each_entry(wk
, &local
->work_list
, list
) {
1170 if (wk
->sdata
!= sdata
)
1175 mutex_unlock(&local
->mtx
);
1178 ieee80211_rx_result
ieee80211_work_rx_mgmt(struct ieee80211_sub_if_data
*sdata
,
1179 struct sk_buff
*skb
)
1181 struct ieee80211_local
*local
= sdata
->local
;
1182 struct ieee80211_mgmt
*mgmt
;
1183 struct ieee80211_work
*wk
;
1187 return RX_DROP_MONITOR
;
1189 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
1190 fc
= le16_to_cpu(mgmt
->frame_control
);
1192 list_for_each_entry_rcu(wk
, &local
->work_list
, list
) {
1193 if (sdata
!= wk
->sdata
)
1195 if (compare_ether_addr(wk
->filter_ta
, mgmt
->sa
))
1197 if (compare_ether_addr(wk
->filter_ta
, mgmt
->bssid
))
1200 switch (fc
& IEEE80211_FCTL_STYPE
) {
1201 case IEEE80211_STYPE_AUTH
:
1202 case IEEE80211_STYPE_PROBE_RESP
:
1203 case IEEE80211_STYPE_ASSOC_RESP
:
1204 case IEEE80211_STYPE_REASSOC_RESP
:
1205 case IEEE80211_STYPE_BEACON
:
1206 skb_queue_tail(&local
->work_skb_queue
, skb
);
1207 ieee80211_queue_work(&local
->hw
, &local
->work_work
);
1215 static enum work_done_result
ieee80211_remain_done(struct ieee80211_work
*wk
,
1216 struct sk_buff
*skb
)
1219 * We are done serving the remain-on-channel command.
1221 cfg80211_remain_on_channel_expired(wk
->sdata
->dev
, (unsigned long) wk
,
1222 wk
->chan
, wk
->chan_type
,
1225 return WORK_DONE_DESTROY
;
1228 int ieee80211_wk_remain_on_channel(struct ieee80211_sub_if_data
*sdata
,
1229 struct ieee80211_channel
*chan
,
1230 enum nl80211_channel_type channel_type
,
1231 unsigned int duration
, u64
*cookie
)
1233 struct ieee80211_work
*wk
;
1235 wk
= kzalloc(sizeof(*wk
), GFP_KERNEL
);
1239 wk
->type
= IEEE80211_WORK_REMAIN_ON_CHANNEL
;
1241 wk
->chan_type
= channel_type
;
1243 wk
->done
= ieee80211_remain_done
;
1245 wk
->remain
.duration
= duration
;
1247 *cookie
= (unsigned long) wk
;
1249 ieee80211_add_work(wk
);
1254 int ieee80211_wk_cancel_remain_on_channel(struct ieee80211_sub_if_data
*sdata
,
1257 struct ieee80211_local
*local
= sdata
->local
;
1258 struct ieee80211_work
*wk
, *tmp
;
1261 mutex_lock(&local
->mtx
);
1262 list_for_each_entry_safe(wk
, tmp
, &local
->work_list
, list
) {
1263 if ((unsigned long) wk
== cookie
) {
1264 wk
->timeout
= jiffies
;
1269 mutex_unlock(&local
->mtx
);
1274 ieee80211_queue_work(&local
->hw
, &local
->work_work
);