]>
Commit | Line | Data |
---|---|---|
f0706e82 JB |
1 | /* |
2 | * BSS client mode implementation | |
5394af4d | 3 | * Copyright 2003-2008, Jouni Malinen <j@w1.fi> |
f0706e82 JB |
4 | * Copyright 2004, Instant802 Networks, Inc. |
5 | * Copyright 2005, Devicescape Software, Inc. | |
6 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> | |
7 | * Copyright 2007, Michael Wu <flamingice@sourmilk.net> | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or modify | |
10 | * it under the terms of the GNU General Public License version 2 as | |
11 | * published by the Free Software Foundation. | |
12 | */ | |
13 | ||
5b323edb | 14 | #include <linux/delay.h> |
f0706e82 JB |
15 | #include <linux/if_ether.h> |
16 | #include <linux/skbuff.h> | |
f0706e82 | 17 | #include <linux/if_arp.h> |
f0706e82 | 18 | #include <linux/etherdevice.h> |
d0709a65 | 19 | #include <linux/rtnetlink.h> |
10f644a4 | 20 | #include <linux/pm_qos_params.h> |
d91f36db | 21 | #include <linux/crc32.h> |
f0706e82 | 22 | #include <net/mac80211.h> |
472dbc45 | 23 | #include <asm/unaligned.h> |
60f8b39c | 24 | |
f0706e82 | 25 | #include "ieee80211_i.h" |
24487981 | 26 | #include "driver-ops.h" |
2c8dccc7 JB |
27 | #include "rate.h" |
28 | #include "led.h" | |
f0706e82 | 29 | |
a43abf29 | 30 | #define IEEE80211_MAX_PROBE_TRIES 5 |
b291ba11 JB |
31 | |
32 | /* | |
33 | * beacon loss detection timeout | |
34 | * XXX: should depend on beacon interval | |
35 | */ | |
36 | #define IEEE80211_BEACON_LOSS_TIME (2 * HZ) | |
37 | /* | |
38 | * Time the connection can be idle before we probe | |
39 | * it to see if we can still talk to the AP. | |
40 | */ | |
d1c5091f | 41 | #define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ) |
b291ba11 JB |
42 | /* |
43 | * Time we wait for a probe response after sending | |
44 | * a probe request because of beacon loss or for | |
45 | * checking the connection still works. | |
46 | */ | |
d1c5091f | 47 | #define IEEE80211_PROBE_WAIT (HZ / 2) |
f0706e82 | 48 | |
17e4ec14 JM |
49 | /* |
50 | * Weight given to the latest Beacon frame when calculating average signal | |
51 | * strength for Beacon frames received in the current BSS. This must be | |
52 | * between 1 and 15. | |
53 | */ | |
54 | #define IEEE80211_SIGNAL_AVE_WEIGHT 3 | |
55 | ||
5bb644a0 JB |
56 | #define TMR_RUNNING_TIMER 0 |
57 | #define TMR_RUNNING_CHANSW 1 | |
58 | ||
77fdaa12 JB |
59 | /* |
60 | * All cfg80211 functions have to be called outside a locked | |
61 | * section so that they can acquire a lock themselves... This | |
62 | * is much simpler than queuing up things in cfg80211, but we | |
63 | * do need some indirection for that here. | |
64 | */ | |
65 | enum rx_mgmt_action { | |
66 | /* no action required */ | |
67 | RX_MGMT_NONE, | |
68 | ||
69 | /* caller must call cfg80211_send_rx_auth() */ | |
70 | RX_MGMT_CFG80211_AUTH, | |
71 | ||
72 | /* caller must call cfg80211_send_rx_assoc() */ | |
73 | RX_MGMT_CFG80211_ASSOC, | |
74 | ||
75 | /* caller must call cfg80211_send_deauth() */ | |
76 | RX_MGMT_CFG80211_DEAUTH, | |
77 | ||
78 | /* caller must call cfg80211_send_disassoc() */ | |
79 | RX_MGMT_CFG80211_DISASSOC, | |
80 | ||
5d1ec85f JB |
81 | /* caller must tell cfg80211 about internal error */ |
82 | RX_MGMT_CFG80211_ASSOC_ERROR, | |
77fdaa12 JB |
83 | }; |
84 | ||
5484e237 | 85 | /* utils */ |
77fdaa12 JB |
86 | static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd) |
87 | { | |
88 | WARN_ON(!mutex_is_locked(&ifmgd->mtx)); | |
89 | } | |
90 | ||
ca386f31 JB |
91 | /* |
92 | * We can have multiple work items (and connection probing) | |
93 | * scheduling this timer, but we need to take care to only | |
94 | * reschedule it when it should fire _earlier_ than it was | |
95 | * asked for before, or if it's not pending right now. This | |
96 | * function ensures that. Note that it then is required to | |
97 | * run this function for all timeouts after the first one | |
98 | * has happened -- the work that runs from this timer will | |
99 | * do that. | |
100 | */ | |
101 | static void run_again(struct ieee80211_if_managed *ifmgd, | |
102 | unsigned long timeout) | |
103 | { | |
104 | ASSERT_MGD_MTX(ifmgd); | |
105 | ||
106 | if (!timer_pending(&ifmgd->timer) || | |
107 | time_before(timeout, ifmgd->timer.expires)) | |
108 | mod_timer(&ifmgd->timer, timeout); | |
109 | } | |
110 | ||
b291ba11 JB |
111 | static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata) |
112 | { | |
113 | if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER) | |
114 | return; | |
115 | ||
116 | mod_timer(&sdata->u.mgd.bcn_mon_timer, | |
117 | round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME)); | |
118 | } | |
119 | ||
5484e237 | 120 | static int ecw2cw(int ecw) |
60f8b39c | 121 | { |
5484e237 | 122 | return (1 << ecw) - 1; |
60f8b39c JB |
123 | } |
124 | ||
d5522e03 JB |
125 | /* |
126 | * ieee80211_enable_ht should be called only after the operating band | |
127 | * has been determined as ht configuration depends on the hw's | |
128 | * HT abilities for a specific band. | |
129 | */ | |
130 | static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata, | |
131 | struct ieee80211_ht_info *hti, | |
77fdaa12 | 132 | const u8 *bssid, u16 ap_ht_cap_flags) |
d5522e03 JB |
133 | { |
134 | struct ieee80211_local *local = sdata->local; | |
135 | struct ieee80211_supported_band *sband; | |
d5522e03 JB |
136 | struct sta_info *sta; |
137 | u32 changed = 0; | |
9ed6bcce | 138 | u16 ht_opmode; |
0aaffa9b JB |
139 | bool enable_ht = true; |
140 | enum nl80211_channel_type prev_chantype; | |
d5522e03 JB |
141 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; |
142 | ||
143 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; | |
144 | ||
0aaffa9b JB |
145 | prev_chantype = sdata->vif.bss_conf.channel_type; |
146 | ||
d5522e03 JB |
147 | /* HT is not supported */ |
148 | if (!sband->ht_cap.ht_supported) | |
149 | enable_ht = false; | |
150 | ||
151 | /* check that channel matches the right operating channel */ | |
152 | if (local->hw.conf.channel->center_freq != | |
153 | ieee80211_channel_to_frequency(hti->control_chan)) | |
154 | enable_ht = false; | |
155 | ||
156 | if (enable_ht) { | |
157 | channel_type = NL80211_CHAN_HT20; | |
158 | ||
159 | if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) && | |
160 | (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) && | |
161 | (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) { | |
162 | switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) { | |
163 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: | |
768777ea LR |
164 | if (!(local->hw.conf.channel->flags & |
165 | IEEE80211_CHAN_NO_HT40PLUS)) | |
166 | channel_type = NL80211_CHAN_HT40PLUS; | |
d5522e03 JB |
167 | break; |
168 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: | |
768777ea LR |
169 | if (!(local->hw.conf.channel->flags & |
170 | IEEE80211_CHAN_NO_HT40MINUS)) | |
171 | channel_type = NL80211_CHAN_HT40MINUS; | |
d5522e03 JB |
172 | break; |
173 | } | |
174 | } | |
175 | } | |
176 | ||
fe6f212c RC |
177 | if (local->tmp_channel) |
178 | local->tmp_channel_type = channel_type; | |
d5522e03 | 179 | |
0aaffa9b JB |
180 | if (!ieee80211_set_channel_type(local, sdata, channel_type)) { |
181 | /* can only fail due to HT40+/- mismatch */ | |
182 | channel_type = NL80211_CHAN_HT20; | |
183 | WARN_ON(!ieee80211_set_channel_type(local, sdata, channel_type)); | |
184 | } | |
d5522e03 | 185 | |
0aaffa9b JB |
186 | /* channel_type change automatically detected */ |
187 | ieee80211_hw_config(local, 0); | |
188 | ||
189 | if (prev_chantype != channel_type) { | |
d5522e03 | 190 | rcu_read_lock(); |
abe60632 | 191 | sta = sta_info_get(sdata, bssid); |
d5522e03 JB |
192 | if (sta) |
193 | rate_control_rate_update(local, sband, sta, | |
4fa00437 | 194 | IEEE80211_RC_HT_CHANGED, |
0aaffa9b | 195 | channel_type); |
d5522e03 | 196 | rcu_read_unlock(); |
0aaffa9b | 197 | } |
d5522e03 | 198 | |
9ed6bcce | 199 | ht_opmode = le16_to_cpu(hti->operation_mode); |
d5522e03 JB |
200 | |
201 | /* if bss configuration changed store the new one */ | |
0aaffa9b JB |
202 | if (sdata->ht_opmode_valid != enable_ht || |
203 | sdata->vif.bss_conf.ht_operation_mode != ht_opmode || | |
204 | prev_chantype != channel_type) { | |
d5522e03 | 205 | changed |= BSS_CHANGED_HT; |
9ed6bcce | 206 | sdata->vif.bss_conf.ht_operation_mode = ht_opmode; |
0aaffa9b | 207 | sdata->ht_opmode_valid = enable_ht; |
d5522e03 JB |
208 | } |
209 | ||
210 | return changed; | |
211 | } | |
212 | ||
9c6bd790 JB |
213 | /* frame sending functions */ |
214 | ||
ef422bc0 | 215 | static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata, |
667503dd | 216 | const u8 *bssid, u16 stype, u16 reason, |
d5cdfacb | 217 | void *cookie, bool send_frame) |
9ac19a90 JB |
218 | { |
219 | struct ieee80211_local *local = sdata->local; | |
46900298 | 220 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
9ac19a90 JB |
221 | struct sk_buff *skb; |
222 | struct ieee80211_mgmt *mgmt; | |
9aed3cc1 | 223 | |
65fc73ac | 224 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt)); |
9ac19a90 | 225 | if (!skb) { |
ef422bc0 | 226 | printk(KERN_DEBUG "%s: failed to allocate buffer for " |
47846c9b | 227 | "deauth/disassoc frame\n", sdata->name); |
9ac19a90 JB |
228 | return; |
229 | } | |
230 | skb_reserve(skb, local->hw.extra_tx_headroom); | |
231 | ||
232 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); | |
233 | memset(mgmt, 0, 24); | |
77fdaa12 | 234 | memcpy(mgmt->da, bssid, ETH_ALEN); |
47846c9b | 235 | memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN); |
77fdaa12 | 236 | memcpy(mgmt->bssid, bssid, ETH_ALEN); |
ef422bc0 | 237 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype); |
9ac19a90 | 238 | skb_put(skb, 2); |
ef422bc0 | 239 | /* u.deauth.reason_code == u.disassoc.reason_code */ |
9ac19a90 JB |
240 | mgmt->u.deauth.reason_code = cpu_to_le16(reason); |
241 | ||
53b46b84 | 242 | if (stype == IEEE80211_STYPE_DEAUTH) |
ce470613 HS |
243 | if (cookie) |
244 | __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); | |
245 | else | |
246 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); | |
53b46b84 | 247 | else |
ce470613 HS |
248 | if (cookie) |
249 | __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); | |
250 | else | |
251 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); | |
62ae67be JB |
252 | if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED)) |
253 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; | |
d5cdfacb JM |
254 | |
255 | if (send_frame) | |
256 | ieee80211_tx_skb(sdata, skb); | |
257 | else | |
258 | kfree_skb(skb); | |
9ac19a90 JB |
259 | } |
260 | ||
572e0012 KV |
261 | void ieee80211_send_pspoll(struct ieee80211_local *local, |
262 | struct ieee80211_sub_if_data *sdata) | |
263 | { | |
572e0012 KV |
264 | struct ieee80211_pspoll *pspoll; |
265 | struct sk_buff *skb; | |
572e0012 | 266 | |
d8cd189e KV |
267 | skb = ieee80211_pspoll_get(&local->hw, &sdata->vif); |
268 | if (!skb) | |
572e0012 | 269 | return; |
572e0012 | 270 | |
d8cd189e KV |
271 | pspoll = (struct ieee80211_pspoll *) skb->data; |
272 | pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); | |
572e0012 | 273 | |
62ae67be JB |
274 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
275 | ieee80211_tx_skb(sdata, skb); | |
572e0012 KV |
276 | } |
277 | ||
965bedad JB |
278 | void ieee80211_send_nullfunc(struct ieee80211_local *local, |
279 | struct ieee80211_sub_if_data *sdata, | |
280 | int powersave) | |
281 | { | |
282 | struct sk_buff *skb; | |
d8cd189e | 283 | struct ieee80211_hdr_3addr *nullfunc; |
965bedad | 284 | |
d8cd189e KV |
285 | skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif); |
286 | if (!skb) | |
965bedad | 287 | return; |
965bedad | 288 | |
d8cd189e | 289 | nullfunc = (struct ieee80211_hdr_3addr *) skb->data; |
965bedad | 290 | if (powersave) |
d8cd189e | 291 | nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); |
965bedad | 292 | |
62ae67be JB |
293 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
294 | ieee80211_tx_skb(sdata, skb); | |
965bedad JB |
295 | } |
296 | ||
d524215f FF |
297 | static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local, |
298 | struct ieee80211_sub_if_data *sdata) | |
299 | { | |
300 | struct sk_buff *skb; | |
301 | struct ieee80211_hdr *nullfunc; | |
302 | __le16 fc; | |
303 | ||
304 | if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION)) | |
305 | return; | |
306 | ||
307 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30); | |
308 | if (!skb) { | |
309 | printk(KERN_DEBUG "%s: failed to allocate buffer for 4addr " | |
310 | "nullfunc frame\n", sdata->name); | |
311 | return; | |
312 | } | |
313 | skb_reserve(skb, local->hw.extra_tx_headroom); | |
314 | ||
315 | nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30); | |
316 | memset(nullfunc, 0, 30); | |
317 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC | | |
318 | IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS); | |
319 | nullfunc->frame_control = fc; | |
320 | memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN); | |
321 | memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN); | |
322 | memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN); | |
323 | memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN); | |
324 | ||
325 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; | |
326 | ieee80211_tx_skb(sdata, skb); | |
327 | } | |
328 | ||
cc32abd4 JB |
329 | /* spectrum management related things */ |
330 | static void ieee80211_chswitch_work(struct work_struct *work) | |
331 | { | |
332 | struct ieee80211_sub_if_data *sdata = | |
333 | container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work); | |
cc32abd4 JB |
334 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
335 | ||
9607e6b6 | 336 | if (!ieee80211_sdata_running(sdata)) |
cc32abd4 JB |
337 | return; |
338 | ||
77fdaa12 JB |
339 | mutex_lock(&ifmgd->mtx); |
340 | if (!ifmgd->associated) | |
341 | goto out; | |
cc32abd4 JB |
342 | |
343 | sdata->local->oper_channel = sdata->local->csa_channel; | |
77fdaa12 JB |
344 | ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL); |
345 | ||
cc32abd4 | 346 | /* XXX: shouldn't really modify cfg80211-owned data! */ |
0c1ad2ca | 347 | ifmgd->associated->channel = sdata->local->oper_channel; |
cc32abd4 | 348 | |
cc32abd4 JB |
349 | ieee80211_wake_queues_by_reason(&sdata->local->hw, |
350 | IEEE80211_QUEUE_STOP_REASON_CSA); | |
77fdaa12 JB |
351 | out: |
352 | ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED; | |
353 | mutex_unlock(&ifmgd->mtx); | |
cc32abd4 JB |
354 | } |
355 | ||
356 | static void ieee80211_chswitch_timer(unsigned long data) | |
357 | { | |
358 | struct ieee80211_sub_if_data *sdata = | |
359 | (struct ieee80211_sub_if_data *) data; | |
360 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
361 | ||
5bb644a0 JB |
362 | if (sdata->local->quiescing) { |
363 | set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running); | |
364 | return; | |
365 | } | |
366 | ||
42935eca | 367 | ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work); |
cc32abd4 JB |
368 | } |
369 | ||
370 | void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, | |
371 | struct ieee80211_channel_sw_ie *sw_elem, | |
372 | struct ieee80211_bss *bss) | |
373 | { | |
0c1ad2ca JB |
374 | struct cfg80211_bss *cbss = |
375 | container_of((void *)bss, struct cfg80211_bss, priv); | |
cc32abd4 JB |
376 | struct ieee80211_channel *new_ch; |
377 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
378 | int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num); | |
379 | ||
77fdaa12 JB |
380 | ASSERT_MGD_MTX(ifmgd); |
381 | ||
382 | if (!ifmgd->associated) | |
cc32abd4 JB |
383 | return; |
384 | ||
fbe9c429 | 385 | if (sdata->local->scanning) |
cc32abd4 JB |
386 | return; |
387 | ||
388 | /* Disregard subsequent beacons if we are already running a timer | |
389 | processing a CSA */ | |
390 | ||
391 | if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED) | |
392 | return; | |
393 | ||
394 | new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq); | |
395 | if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED) | |
396 | return; | |
397 | ||
398 | sdata->local->csa_channel = new_ch; | |
399 | ||
400 | if (sw_elem->count <= 1) { | |
42935eca | 401 | ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work); |
cc32abd4 JB |
402 | } else { |
403 | ieee80211_stop_queues_by_reason(&sdata->local->hw, | |
404 | IEEE80211_QUEUE_STOP_REASON_CSA); | |
405 | ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED; | |
406 | mod_timer(&ifmgd->chswitch_timer, | |
407 | jiffies + | |
408 | msecs_to_jiffies(sw_elem->count * | |
0c1ad2ca | 409 | cbss->beacon_interval)); |
cc32abd4 JB |
410 | } |
411 | } | |
412 | ||
413 | static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata, | |
414 | u16 capab_info, u8 *pwr_constr_elem, | |
415 | u8 pwr_constr_elem_len) | |
416 | { | |
417 | struct ieee80211_conf *conf = &sdata->local->hw.conf; | |
418 | ||
419 | if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT)) | |
420 | return; | |
421 | ||
422 | /* Power constraint IE length should be 1 octet */ | |
423 | if (pwr_constr_elem_len != 1) | |
424 | return; | |
425 | ||
426 | if ((*pwr_constr_elem <= conf->channel->max_power) && | |
427 | (*pwr_constr_elem != sdata->local->power_constr_level)) { | |
428 | sdata->local->power_constr_level = *pwr_constr_elem; | |
429 | ieee80211_hw_config(sdata->local, 0); | |
430 | } | |
431 | } | |
432 | ||
965bedad JB |
433 | /* powersave */ |
434 | static void ieee80211_enable_ps(struct ieee80211_local *local, | |
435 | struct ieee80211_sub_if_data *sdata) | |
436 | { | |
437 | struct ieee80211_conf *conf = &local->hw.conf; | |
438 | ||
d5edaedc JB |
439 | /* |
440 | * If we are scanning right now then the parameters will | |
441 | * take effect when scan finishes. | |
442 | */ | |
fbe9c429 | 443 | if (local->scanning) |
d5edaedc JB |
444 | return; |
445 | ||
965bedad JB |
446 | if (conf->dynamic_ps_timeout > 0 && |
447 | !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) { | |
448 | mod_timer(&local->dynamic_ps_timer, jiffies + | |
449 | msecs_to_jiffies(conf->dynamic_ps_timeout)); | |
450 | } else { | |
451 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) | |
452 | ieee80211_send_nullfunc(local, sdata, 1); | |
375177bf | 453 | |
2a13052f JO |
454 | if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) && |
455 | (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) | |
456 | return; | |
457 | ||
458 | conf->flags |= IEEE80211_CONF_PS; | |
459 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); | |
965bedad JB |
460 | } |
461 | } | |
462 | ||
463 | static void ieee80211_change_ps(struct ieee80211_local *local) | |
464 | { | |
465 | struct ieee80211_conf *conf = &local->hw.conf; | |
466 | ||
467 | if (local->ps_sdata) { | |
965bedad JB |
468 | ieee80211_enable_ps(local, local->ps_sdata); |
469 | } else if (conf->flags & IEEE80211_CONF_PS) { | |
470 | conf->flags &= ~IEEE80211_CONF_PS; | |
471 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); | |
472 | del_timer_sync(&local->dynamic_ps_timer); | |
473 | cancel_work_sync(&local->dynamic_ps_enable_work); | |
474 | } | |
475 | } | |
476 | ||
477 | /* need to hold RTNL or interface lock */ | |
10f644a4 | 478 | void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency) |
965bedad JB |
479 | { |
480 | struct ieee80211_sub_if_data *sdata, *found = NULL; | |
481 | int count = 0; | |
195e294d | 482 | int timeout; |
965bedad JB |
483 | |
484 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) { | |
485 | local->ps_sdata = NULL; | |
486 | return; | |
487 | } | |
488 | ||
af6b6374 JB |
489 | if (!list_empty(&local->work_list)) { |
490 | local->ps_sdata = NULL; | |
491 | goto change; | |
492 | } | |
493 | ||
965bedad | 494 | list_for_each_entry(sdata, &local->interfaces, list) { |
9607e6b6 | 495 | if (!ieee80211_sdata_running(sdata)) |
965bedad JB |
496 | continue; |
497 | if (sdata->vif.type != NL80211_IFTYPE_STATION) | |
498 | continue; | |
499 | found = sdata; | |
500 | count++; | |
501 | } | |
502 | ||
43f78531 | 503 | if (count == 1 && found->u.mgd.powersave && |
af6b6374 | 504 | found->u.mgd.associated && |
56007a02 | 505 | found->u.mgd.associated->beacon_ies && |
b291ba11 JB |
506 | !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL | |
507 | IEEE80211_STA_CONNECTION_POLL))) { | |
10f644a4 JB |
508 | s32 beaconint_us; |
509 | ||
510 | if (latency < 0) | |
511 | latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY); | |
512 | ||
513 | beaconint_us = ieee80211_tu_to_usec( | |
514 | found->vif.bss_conf.beacon_int); | |
515 | ||
195e294d JO |
516 | timeout = local->hw.conf.dynamic_ps_forced_timeout; |
517 | if (timeout < 0) { | |
518 | /* | |
519 | * The 2 second value is there for compatibility until | |
520 | * the PM_QOS_NETWORK_LATENCY is configured with real | |
521 | * values. | |
522 | */ | |
523 | if (latency == 2000000000) | |
524 | timeout = 100; | |
525 | else if (latency <= 50000) | |
526 | timeout = 300; | |
527 | else if (latency <= 100000) | |
528 | timeout = 100; | |
529 | else if (latency <= 500000) | |
530 | timeout = 50; | |
531 | else | |
532 | timeout = 0; | |
533 | } | |
534 | local->hw.conf.dynamic_ps_timeout = timeout; | |
535 | ||
04fe2037 | 536 | if (beaconint_us > latency) { |
10f644a4 | 537 | local->ps_sdata = NULL; |
04fe2037 | 538 | } else { |
56007a02 | 539 | struct ieee80211_bss *bss; |
04fe2037 | 540 | int maxslp = 1; |
56007a02 | 541 | u8 dtimper; |
04fe2037 | 542 | |
56007a02 JB |
543 | bss = (void *)found->u.mgd.associated->priv; |
544 | dtimper = bss->dtim_period; | |
545 | ||
546 | /* If the TIM IE is invalid, pretend the value is 1 */ | |
547 | if (!dtimper) | |
548 | dtimper = 1; | |
549 | else if (dtimper > 1) | |
04fe2037 JB |
550 | maxslp = min_t(int, dtimper, |
551 | latency / beaconint_us); | |
552 | ||
9ccebe61 | 553 | local->hw.conf.max_sleep_period = maxslp; |
56007a02 | 554 | local->hw.conf.ps_dtim_period = dtimper; |
10f644a4 | 555 | local->ps_sdata = found; |
04fe2037 | 556 | } |
10f644a4 | 557 | } else { |
965bedad | 558 | local->ps_sdata = NULL; |
10f644a4 | 559 | } |
965bedad | 560 | |
af6b6374 | 561 | change: |
965bedad JB |
562 | ieee80211_change_ps(local); |
563 | } | |
564 | ||
565 | void ieee80211_dynamic_ps_disable_work(struct work_struct *work) | |
566 | { | |
567 | struct ieee80211_local *local = | |
568 | container_of(work, struct ieee80211_local, | |
569 | dynamic_ps_disable_work); | |
570 | ||
571 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { | |
572 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; | |
573 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); | |
574 | } | |
575 | ||
576 | ieee80211_wake_queues_by_reason(&local->hw, | |
577 | IEEE80211_QUEUE_STOP_REASON_PS); | |
578 | } | |
579 | ||
580 | void ieee80211_dynamic_ps_enable_work(struct work_struct *work) | |
581 | { | |
582 | struct ieee80211_local *local = | |
583 | container_of(work, struct ieee80211_local, | |
584 | dynamic_ps_enable_work); | |
585 | struct ieee80211_sub_if_data *sdata = local->ps_sdata; | |
375177bf | 586 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
965bedad JB |
587 | |
588 | /* can only happen when PS was just disabled anyway */ | |
589 | if (!sdata) | |
590 | return; | |
591 | ||
592 | if (local->hw.conf.flags & IEEE80211_CONF_PS) | |
593 | return; | |
594 | ||
375177bf VN |
595 | if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) && |
596 | (!(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED))) | |
965bedad JB |
597 | ieee80211_send_nullfunc(local, sdata, 1); |
598 | ||
2a13052f JO |
599 | if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) && |
600 | (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) || | |
375177bf VN |
601 | (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) { |
602 | ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED; | |
603 | local->hw.conf.flags |= IEEE80211_CONF_PS; | |
604 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); | |
605 | } | |
965bedad JB |
606 | } |
607 | ||
608 | void ieee80211_dynamic_ps_timer(unsigned long data) | |
609 | { | |
610 | struct ieee80211_local *local = (void *) data; | |
611 | ||
78f1a8b7 | 612 | if (local->quiescing || local->suspended) |
5bb644a0 JB |
613 | return; |
614 | ||
42935eca | 615 | ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work); |
965bedad JB |
616 | } |
617 | ||
60f8b39c | 618 | /* MLME */ |
f698d856 | 619 | static void ieee80211_sta_wmm_params(struct ieee80211_local *local, |
46900298 | 620 | struct ieee80211_if_managed *ifmgd, |
f0706e82 JB |
621 | u8 *wmm_param, size_t wmm_param_len) |
622 | { | |
f0706e82 JB |
623 | struct ieee80211_tx_queue_params params; |
624 | size_t left; | |
625 | int count; | |
ab13315a | 626 | u8 *pos, uapsd_queues = 0; |
f0706e82 | 627 | |
e1b3ec1a SG |
628 | if (!local->ops->conf_tx) |
629 | return; | |
630 | ||
af6b6374 | 631 | if (local->hw.queues < 4) |
3434fbd3 JB |
632 | return; |
633 | ||
634 | if (!wmm_param) | |
635 | return; | |
636 | ||
f0706e82 JB |
637 | if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1) |
638 | return; | |
ab13315a KV |
639 | |
640 | if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) | |
50ae0cf1 | 641 | uapsd_queues = local->uapsd_queues; |
ab13315a | 642 | |
f0706e82 | 643 | count = wmm_param[6] & 0x0f; |
46900298 | 644 | if (count == ifmgd->wmm_last_param_set) |
f0706e82 | 645 | return; |
46900298 | 646 | ifmgd->wmm_last_param_set = count; |
f0706e82 JB |
647 | |
648 | pos = wmm_param + 8; | |
649 | left = wmm_param_len - 8; | |
650 | ||
651 | memset(¶ms, 0, sizeof(params)); | |
652 | ||
f0706e82 JB |
653 | local->wmm_acm = 0; |
654 | for (; left >= 4; left -= 4, pos += 4) { | |
655 | int aci = (pos[0] >> 5) & 0x03; | |
656 | int acm = (pos[0] >> 4) & 0x01; | |
ab13315a | 657 | bool uapsd = false; |
f0706e82 JB |
658 | int queue; |
659 | ||
660 | switch (aci) { | |
0eeb59fe | 661 | case 1: /* AC_BK */ |
e100bb64 | 662 | queue = 3; |
988c0f72 | 663 | if (acm) |
0eeb59fe | 664 | local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */ |
ab13315a KV |
665 | if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK) |
666 | uapsd = true; | |
f0706e82 | 667 | break; |
0eeb59fe | 668 | case 2: /* AC_VI */ |
e100bb64 | 669 | queue = 1; |
988c0f72 | 670 | if (acm) |
0eeb59fe | 671 | local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */ |
ab13315a KV |
672 | if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI) |
673 | uapsd = true; | |
f0706e82 | 674 | break; |
0eeb59fe | 675 | case 3: /* AC_VO */ |
e100bb64 | 676 | queue = 0; |
988c0f72 | 677 | if (acm) |
0eeb59fe | 678 | local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */ |
ab13315a KV |
679 | if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) |
680 | uapsd = true; | |
f0706e82 | 681 | break; |
0eeb59fe | 682 | case 0: /* AC_BE */ |
f0706e82 | 683 | default: |
e100bb64 | 684 | queue = 2; |
988c0f72 | 685 | if (acm) |
0eeb59fe | 686 | local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */ |
ab13315a KV |
687 | if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE) |
688 | uapsd = true; | |
f0706e82 JB |
689 | break; |
690 | } | |
691 | ||
692 | params.aifs = pos[0] & 0x0f; | |
693 | params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4); | |
694 | params.cw_min = ecw2cw(pos[1] & 0x0f); | |
f434b2d1 | 695 | params.txop = get_unaligned_le16(pos + 2); |
ab13315a KV |
696 | params.uapsd = uapsd; |
697 | ||
f4ea83dd | 698 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
f0706e82 | 699 | printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d " |
ab13315a | 700 | "cWmin=%d cWmax=%d txop=%d uapsd=%d\n", |
0bffe40f | 701 | wiphy_name(local->hw.wiphy), queue, aci, acm, |
ab13315a KV |
702 | params.aifs, params.cw_min, params.cw_max, params.txop, |
703 | params.uapsd); | |
3330d7be | 704 | #endif |
e1b3ec1a | 705 | if (drv_conf_tx(local, queue, ¶ms)) |
f0706e82 | 706 | printk(KERN_DEBUG "%s: failed to set TX queue " |
0bffe40f JB |
707 | "parameters for queue %d\n", |
708 | wiphy_name(local->hw.wiphy), queue); | |
f0706e82 | 709 | } |
e1b3ec1a SG |
710 | |
711 | /* enable WMM or activate new settings */ | |
712 | local->hw.conf.flags |= IEEE80211_CONF_QOS; | |
713 | drv_config(local, IEEE80211_CONF_CHANGE_QOS); | |
f0706e82 JB |
714 | } |
715 | ||
7a5158ef JB |
716 | static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata, |
717 | u16 capab, bool erp_valid, u8 erp) | |
5628221c | 718 | { |
bda3933a | 719 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
471b3efd | 720 | u32 changed = 0; |
7a5158ef JB |
721 | bool use_protection; |
722 | bool use_short_preamble; | |
723 | bool use_short_slot; | |
724 | ||
725 | if (erp_valid) { | |
726 | use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0; | |
727 | use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0; | |
728 | } else { | |
729 | use_protection = false; | |
730 | use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE); | |
731 | } | |
732 | ||
733 | use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME); | |
43d35343 FF |
734 | if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) |
735 | use_short_slot = true; | |
5628221c | 736 | |
471b3efd | 737 | if (use_protection != bss_conf->use_cts_prot) { |
471b3efd JB |
738 | bss_conf->use_cts_prot = use_protection; |
739 | changed |= BSS_CHANGED_ERP_CTS_PROT; | |
5628221c | 740 | } |
7e9ed188 | 741 | |
d43c7b37 | 742 | if (use_short_preamble != bss_conf->use_short_preamble) { |
d43c7b37 | 743 | bss_conf->use_short_preamble = use_short_preamble; |
471b3efd | 744 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
7e9ed188 | 745 | } |
d9430a32 | 746 | |
7a5158ef | 747 | if (use_short_slot != bss_conf->use_short_slot) { |
7a5158ef JB |
748 | bss_conf->use_short_slot = use_short_slot; |
749 | changed |= BSS_CHANGED_ERP_SLOT; | |
50c4afb9 JL |
750 | } |
751 | ||
752 | return changed; | |
753 | } | |
754 | ||
f698d856 | 755 | static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata, |
0c1ad2ca | 756 | struct cfg80211_bss *cbss, |
ae5eb026 | 757 | u32 bss_info_changed) |
f0706e82 | 758 | { |
0c1ad2ca | 759 | struct ieee80211_bss *bss = (void *)cbss->priv; |
471b3efd | 760 | struct ieee80211_local *local = sdata->local; |
d6f2da5b | 761 | |
ae5eb026 | 762 | bss_info_changed |= BSS_CHANGED_ASSOC; |
77fdaa12 | 763 | /* set timing information */ |
0c1ad2ca JB |
764 | sdata->vif.bss_conf.beacon_int = cbss->beacon_interval; |
765 | sdata->vif.bss_conf.timestamp = cbss->tsf; | |
5628221c | 766 | |
77fdaa12 JB |
767 | bss_info_changed |= BSS_CHANGED_BEACON_INT; |
768 | bss_info_changed |= ieee80211_handle_bss_capability(sdata, | |
0c1ad2ca | 769 | cbss->capability, bss->has_erp_value, bss->erp_value); |
21c0cbe7 | 770 | |
0c1ad2ca JB |
771 | sdata->u.mgd.associated = cbss; |
772 | memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN); | |
f0706e82 | 773 | |
17e4ec14 JM |
774 | sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE; |
775 | ||
b291ba11 JB |
776 | /* just to be sure */ |
777 | sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL | | |
778 | IEEE80211_STA_BEACON_POLL); | |
779 | ||
0183826b JB |
780 | /* |
781 | * Always handle WMM once after association regardless | |
782 | * of the first value the AP uses. Setting -1 here has | |
783 | * that effect because the AP values is an unsigned | |
784 | * 4-bit value. | |
785 | */ | |
786 | sdata->u.mgd.wmm_last_param_set = -1; | |
787 | ||
9ac19a90 | 788 | ieee80211_led_assoc(local, 1); |
9306102e | 789 | |
bda3933a | 790 | sdata->vif.bss_conf.assoc = 1; |
96dd22ac JB |
791 | /* |
792 | * For now just always ask the driver to update the basic rateset | |
793 | * when we have associated, we aren't checking whether it actually | |
794 | * changed or not. | |
795 | */ | |
ae5eb026 | 796 | bss_info_changed |= BSS_CHANGED_BASIC_RATES; |
9cef8737 JB |
797 | |
798 | /* And the BSSID changed - we're associated now */ | |
799 | bss_info_changed |= BSS_CHANGED_BSSID; | |
800 | ||
a97c13c3 JO |
801 | /* Tell the driver to monitor connection quality (if supported) */ |
802 | if ((local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI) && | |
803 | sdata->vif.bss_conf.cqm_rssi_thold) | |
804 | bss_info_changed |= BSS_CHANGED_CQM; | |
805 | ||
ae5eb026 | 806 | ieee80211_bss_info_change_notify(sdata, bss_info_changed); |
f0706e82 | 807 | |
056508dc JB |
808 | mutex_lock(&local->iflist_mtx); |
809 | ieee80211_recalc_ps(local, -1); | |
0f78231b | 810 | ieee80211_recalc_smps(local, sdata); |
056508dc | 811 | mutex_unlock(&local->iflist_mtx); |
e0cb686f | 812 | |
8a5b33f5 | 813 | netif_tx_start_all_queues(sdata->dev); |
9ac19a90 | 814 | netif_carrier_on(sdata->dev); |
f0706e82 JB |
815 | } |
816 | ||
e69e95db JM |
817 | static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, |
818 | bool remove_sta) | |
aa458d17 | 819 | { |
46900298 | 820 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
aa458d17 TW |
821 | struct ieee80211_local *local = sdata->local; |
822 | struct sta_info *sta; | |
e0cb686f | 823 | u32 changed = 0, config_changed = 0; |
b291ba11 | 824 | u8 bssid[ETH_ALEN]; |
aa458d17 | 825 | |
77fdaa12 JB |
826 | ASSERT_MGD_MTX(ifmgd); |
827 | ||
b291ba11 JB |
828 | if (WARN_ON(!ifmgd->associated)) |
829 | return; | |
830 | ||
0c1ad2ca | 831 | memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN); |
b291ba11 | 832 | |
77fdaa12 JB |
833 | ifmgd->associated = NULL; |
834 | memset(ifmgd->bssid, 0, ETH_ALEN); | |
835 | ||
836 | /* | |
837 | * we need to commit the associated = NULL change because the | |
838 | * scan code uses that to determine whether this iface should | |
839 | * go to/wake up from powersave or not -- and could otherwise | |
840 | * wake the queues erroneously. | |
841 | */ | |
842 | smp_mb(); | |
843 | ||
844 | /* | |
845 | * Thus, we can only afterwards stop the queues -- to account | |
846 | * for the case where another CPU is finishing a scan at this | |
847 | * time -- we don't want the scan code to enable queues. | |
848 | */ | |
aa458d17 | 849 | |
8a5b33f5 | 850 | netif_tx_stop_all_queues(sdata->dev); |
aa458d17 TW |
851 | netif_carrier_off(sdata->dev); |
852 | ||
1fa6f4af | 853 | rcu_read_lock(); |
abe60632 | 854 | sta = sta_info_get(sdata, bssid); |
4cad6c7c S |
855 | if (sta) { |
856 | set_sta_flags(sta, WLAN_STA_DISASSOC); | |
1fa6f4af | 857 | ieee80211_sta_tear_down_BA_sessions(sta); |
4cad6c7c | 858 | } |
1fa6f4af | 859 | rcu_read_unlock(); |
aa458d17 | 860 | |
f5e5bf25 TW |
861 | changed |= ieee80211_reset_erp_info(sdata); |
862 | ||
f5e5bf25 | 863 | ieee80211_led_assoc(local, 0); |
ae5eb026 JB |
864 | changed |= BSS_CHANGED_ASSOC; |
865 | sdata->vif.bss_conf.assoc = false; | |
f5e5bf25 | 866 | |
aa837e1d JB |
867 | ieee80211_set_wmm_default(sdata); |
868 | ||
4797938c | 869 | /* channel(_type) changes are handled by ieee80211_hw_config */ |
0aaffa9b | 870 | WARN_ON(!ieee80211_set_channel_type(local, sdata, NL80211_CHAN_NO_HT)); |
e0cb686f | 871 | |
413ad50a JB |
872 | /* on the next assoc, re-program HT parameters */ |
873 | sdata->ht_opmode_valid = false; | |
874 | ||
a8302de9 VT |
875 | local->power_constr_level = 0; |
876 | ||
520eb820 KV |
877 | del_timer_sync(&local->dynamic_ps_timer); |
878 | cancel_work_sync(&local->dynamic_ps_enable_work); | |
879 | ||
e0cb686f KV |
880 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
881 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; | |
882 | config_changed |= IEEE80211_CONF_CHANGE_PS; | |
883 | } | |
ae5eb026 | 884 | |
e0cb686f | 885 | ieee80211_hw_config(local, config_changed); |
9cef8737 | 886 | |
0aaffa9b JB |
887 | /* The BSSID (not really interesting) and HT changed */ |
888 | changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT; | |
ae5eb026 | 889 | ieee80211_bss_info_change_notify(sdata, changed); |
8e268e47 | 890 | |
e69e95db JM |
891 | if (remove_sta) |
892 | sta_info_destroy_addr(sdata, bssid); | |
aa458d17 | 893 | } |
f0706e82 | 894 | |
3cf335d5 KV |
895 | void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata, |
896 | struct ieee80211_hdr *hdr) | |
897 | { | |
898 | /* | |
899 | * We can postpone the mgd.timer whenever receiving unicast frames | |
900 | * from AP because we know that the connection is working both ways | |
901 | * at that time. But multicast frames (and hence also beacons) must | |
902 | * be ignored here, because we need to trigger the timer during | |
b291ba11 JB |
903 | * data idle periods for sending the periodic probe request to the |
904 | * AP we're connected to. | |
3cf335d5 | 905 | */ |
b291ba11 JB |
906 | if (is_multicast_ether_addr(hdr->addr1)) |
907 | return; | |
908 | ||
1e4dcd01 JO |
909 | if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR) |
910 | return; | |
911 | ||
b291ba11 JB |
912 | mod_timer(&sdata->u.mgd.conn_mon_timer, |
913 | round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME)); | |
3cf335d5 | 914 | } |
f0706e82 | 915 | |
a43abf29 ML |
916 | static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata) |
917 | { | |
918 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
919 | const u8 *ssid; | |
920 | ||
0c1ad2ca JB |
921 | ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID); |
922 | ieee80211_send_probe_req(sdata, ifmgd->associated->bssid, | |
a43abf29 ML |
923 | ssid + 2, ssid[1], NULL, 0); |
924 | ||
925 | ifmgd->probe_send_count++; | |
926 | ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT; | |
927 | run_again(ifmgd, ifmgd->probe_timeout); | |
928 | } | |
929 | ||
b291ba11 JB |
930 | static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata, |
931 | bool beacon) | |
04de8381 | 932 | { |
04de8381 | 933 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
b291ba11 | 934 | bool already = false; |
34bfc411 | 935 | |
9607e6b6 | 936 | if (!ieee80211_sdata_running(sdata)) |
0e2b6286 JB |
937 | return; |
938 | ||
91a3bd76 LR |
939 | if (sdata->local->scanning) |
940 | return; | |
941 | ||
b8bc4b0a JB |
942 | if (sdata->local->tmp_channel) |
943 | return; | |
944 | ||
77fdaa12 JB |
945 | mutex_lock(&ifmgd->mtx); |
946 | ||
947 | if (!ifmgd->associated) | |
948 | goto out; | |
949 | ||
a860402d | 950 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
b291ba11 JB |
951 | if (beacon && net_ratelimit()) |
952 | printk(KERN_DEBUG "%s: detected beacon loss from AP " | |
47846c9b | 953 | "- sending probe request\n", sdata->name); |
a860402d | 954 | #endif |
04de8381 | 955 | |
b291ba11 JB |
956 | /* |
957 | * The driver/our work has already reported this event or the | |
958 | * connection monitoring has kicked in and we have already sent | |
959 | * a probe request. Or maybe the AP died and the driver keeps | |
960 | * reporting until we disassociate... | |
961 | * | |
962 | * In either case we have to ignore the current call to this | |
963 | * function (except for setting the correct probe reason bit) | |
964 | * because otherwise we would reset the timer every time and | |
965 | * never check whether we received a probe response! | |
966 | */ | |
967 | if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL | | |
968 | IEEE80211_STA_CONNECTION_POLL)) | |
969 | already = true; | |
970 | ||
971 | if (beacon) | |
972 | ifmgd->flags |= IEEE80211_STA_BEACON_POLL; | |
973 | else | |
974 | ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL; | |
975 | ||
976 | if (already) | |
977 | goto out; | |
978 | ||
4e751843 JB |
979 | mutex_lock(&sdata->local->iflist_mtx); |
980 | ieee80211_recalc_ps(sdata->local, -1); | |
981 | mutex_unlock(&sdata->local->iflist_mtx); | |
982 | ||
a43abf29 ML |
983 | ifmgd->probe_send_count = 0; |
984 | ieee80211_mgd_probe_ap_send(sdata); | |
77fdaa12 JB |
985 | out: |
986 | mutex_unlock(&ifmgd->mtx); | |
04de8381 KV |
987 | } |
988 | ||
1e4dcd01 JO |
989 | static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata) |
990 | { | |
991 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
992 | struct ieee80211_local *local = sdata->local; | |
993 | u8 bssid[ETH_ALEN]; | |
994 | ||
995 | mutex_lock(&ifmgd->mtx); | |
996 | if (!ifmgd->associated) { | |
997 | mutex_unlock(&ifmgd->mtx); | |
998 | return; | |
999 | } | |
1000 | ||
1001 | memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN); | |
1002 | ||
1003 | printk(KERN_DEBUG "Connection to AP %pM lost.\n", bssid); | |
1004 | ||
e69e95db | 1005 | ieee80211_set_disassoc(sdata, true); |
1e4dcd01 JO |
1006 | ieee80211_recalc_idle(local); |
1007 | mutex_unlock(&ifmgd->mtx); | |
1008 | /* | |
1009 | * must be outside lock due to cfg80211, | |
1010 | * but that's not a problem. | |
1011 | */ | |
1012 | ieee80211_send_deauth_disassoc(sdata, bssid, | |
1013 | IEEE80211_STYPE_DEAUTH, | |
1014 | WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, | |
d5cdfacb | 1015 | NULL, true); |
1e4dcd01 JO |
1016 | } |
1017 | ||
1018 | void ieee80211_beacon_connection_loss_work(struct work_struct *work) | |
b291ba11 JB |
1019 | { |
1020 | struct ieee80211_sub_if_data *sdata = | |
1021 | container_of(work, struct ieee80211_sub_if_data, | |
1e4dcd01 | 1022 | u.mgd.beacon_connection_loss_work); |
b291ba11 | 1023 | |
1e4dcd01 JO |
1024 | if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR) |
1025 | __ieee80211_connection_loss(sdata); | |
1026 | else | |
1027 | ieee80211_mgd_probe_ap(sdata, true); | |
b291ba11 JB |
1028 | } |
1029 | ||
04de8381 KV |
1030 | void ieee80211_beacon_loss(struct ieee80211_vif *vif) |
1031 | { | |
1032 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); | |
1e4dcd01 | 1033 | struct ieee80211_hw *hw = &sdata->local->hw; |
04de8381 | 1034 | |
b5878a2d JB |
1035 | trace_api_beacon_loss(sdata); |
1036 | ||
1e4dcd01 JO |
1037 | WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR); |
1038 | ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work); | |
04de8381 KV |
1039 | } |
1040 | EXPORT_SYMBOL(ieee80211_beacon_loss); | |
1041 | ||
1e4dcd01 JO |
1042 | void ieee80211_connection_loss(struct ieee80211_vif *vif) |
1043 | { | |
1044 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); | |
1045 | struct ieee80211_hw *hw = &sdata->local->hw; | |
1046 | ||
b5878a2d JB |
1047 | trace_api_connection_loss(sdata); |
1048 | ||
1e4dcd01 JO |
1049 | WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR)); |
1050 | ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work); | |
1051 | } | |
1052 | EXPORT_SYMBOL(ieee80211_connection_loss); | |
1053 | ||
1054 | ||
77fdaa12 JB |
1055 | static enum rx_mgmt_action __must_check |
1056 | ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata, | |
77fdaa12 | 1057 | struct ieee80211_mgmt *mgmt, size_t len) |
f0706e82 | 1058 | { |
46900298 | 1059 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
77fdaa12 | 1060 | const u8 *bssid = NULL; |
f0706e82 JB |
1061 | u16 reason_code; |
1062 | ||
f4ea83dd | 1063 | if (len < 24 + 2) |
77fdaa12 | 1064 | return RX_MGMT_NONE; |
f0706e82 | 1065 | |
77fdaa12 JB |
1066 | ASSERT_MGD_MTX(ifmgd); |
1067 | ||
0c1ad2ca | 1068 | bssid = ifmgd->associated->bssid; |
f0706e82 JB |
1069 | |
1070 | reason_code = le16_to_cpu(mgmt->u.deauth.reason_code); | |
1071 | ||
77fdaa12 | 1072 | printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n", |
47846c9b | 1073 | sdata->name, bssid, reason_code); |
77fdaa12 | 1074 | |
e69e95db | 1075 | ieee80211_set_disassoc(sdata, true); |
63f170e0 | 1076 | ieee80211_recalc_idle(sdata->local); |
f0706e82 | 1077 | |
77fdaa12 | 1078 | return RX_MGMT_CFG80211_DEAUTH; |
f0706e82 JB |
1079 | } |
1080 | ||
1081 | ||
77fdaa12 JB |
1082 | static enum rx_mgmt_action __must_check |
1083 | ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata, | |
1084 | struct ieee80211_mgmt *mgmt, size_t len) | |
f0706e82 | 1085 | { |
46900298 | 1086 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
f0706e82 JB |
1087 | u16 reason_code; |
1088 | ||
f4ea83dd | 1089 | if (len < 24 + 2) |
77fdaa12 | 1090 | return RX_MGMT_NONE; |
f0706e82 | 1091 | |
77fdaa12 JB |
1092 | ASSERT_MGD_MTX(ifmgd); |
1093 | ||
1094 | if (WARN_ON(!ifmgd->associated)) | |
1095 | return RX_MGMT_NONE; | |
1096 | ||
0c1ad2ca | 1097 | if (WARN_ON(memcmp(ifmgd->associated->bssid, mgmt->sa, ETH_ALEN))) |
77fdaa12 | 1098 | return RX_MGMT_NONE; |
f0706e82 JB |
1099 | |
1100 | reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code); | |
1101 | ||
0ff71613 | 1102 | printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n", |
47846c9b | 1103 | sdata->name, mgmt->sa, reason_code); |
f0706e82 | 1104 | |
e69e95db | 1105 | ieee80211_set_disassoc(sdata, true); |
bc83b681 | 1106 | ieee80211_recalc_idle(sdata->local); |
77fdaa12 | 1107 | return RX_MGMT_CFG80211_DISASSOC; |
f0706e82 JB |
1108 | } |
1109 | ||
1110 | ||
af6b6374 JB |
1111 | static bool ieee80211_assoc_success(struct ieee80211_work *wk, |
1112 | struct ieee80211_mgmt *mgmt, size_t len) | |
f0706e82 | 1113 | { |
af6b6374 | 1114 | struct ieee80211_sub_if_data *sdata = wk->sdata; |
46900298 | 1115 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
471b3efd | 1116 | struct ieee80211_local *local = sdata->local; |
8318d78a | 1117 | struct ieee80211_supported_band *sband; |
f0706e82 | 1118 | struct sta_info *sta; |
0c1ad2ca | 1119 | struct cfg80211_bss *cbss = wk->assoc.bss; |
af6b6374 | 1120 | u8 *pos; |
881d948c | 1121 | u32 rates, basic_rates; |
af6b6374 | 1122 | u16 capab_info, aid; |
f0706e82 | 1123 | struct ieee802_11_elems elems; |
bda3933a | 1124 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
ae5eb026 | 1125 | u32 changed = 0; |
5d1ec85f JB |
1126 | int i, j, err; |
1127 | bool have_higher_than_11mbit = false; | |
ae5eb026 | 1128 | u16 ap_ht_cap_flags; |
f0706e82 | 1129 | |
af6b6374 | 1130 | /* AssocResp and ReassocResp have identical structure */ |
f0706e82 | 1131 | |
f0706e82 | 1132 | aid = le16_to_cpu(mgmt->u.assoc_resp.aid); |
af6b6374 | 1133 | capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info); |
f0706e82 | 1134 | |
1dd84aa2 JB |
1135 | if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14))) |
1136 | printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not " | |
47846c9b | 1137 | "set\n", sdata->name, aid); |
1dd84aa2 JB |
1138 | aid &= ~(BIT(15) | BIT(14)); |
1139 | ||
af6b6374 JB |
1140 | pos = mgmt->u.assoc_resp.variable; |
1141 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); | |
1142 | ||
f0706e82 JB |
1143 | if (!elems.supp_rates) { |
1144 | printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n", | |
47846c9b | 1145 | sdata->name); |
af6b6374 | 1146 | return false; |
f0706e82 JB |
1147 | } |
1148 | ||
46900298 | 1149 | ifmgd->aid = aid; |
f0706e82 | 1150 | |
0c1ad2ca | 1151 | sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL); |
f0706e82 | 1152 | if (!sta) { |
5d1ec85f JB |
1153 | printk(KERN_DEBUG "%s: failed to alloc STA entry for" |
1154 | " the AP\n", sdata->name); | |
af6b6374 | 1155 | return false; |
77fdaa12 | 1156 | } |
05e5e883 | 1157 | |
5d1ec85f JB |
1158 | set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | |
1159 | WLAN_STA_ASSOC_AP); | |
1160 | if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT)) | |
1161 | set_sta_flags(sta, WLAN_STA_AUTHORIZED); | |
1162 | ||
60f8b39c JB |
1163 | rates = 0; |
1164 | basic_rates = 0; | |
1165 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; | |
f709fc69 | 1166 | |
60f8b39c JB |
1167 | for (i = 0; i < elems.supp_rates_len; i++) { |
1168 | int rate = (elems.supp_rates[i] & 0x7f) * 5; | |
d61272cb | 1169 | bool is_basic = !!(elems.supp_rates[i] & 0x80); |
f709fc69 | 1170 | |
60f8b39c JB |
1171 | if (rate > 110) |
1172 | have_higher_than_11mbit = true; | |
1173 | ||
1174 | for (j = 0; j < sband->n_bitrates; j++) { | |
d61272cb | 1175 | if (sband->bitrates[j].bitrate == rate) { |
60f8b39c | 1176 | rates |= BIT(j); |
d61272cb TW |
1177 | if (is_basic) |
1178 | basic_rates |= BIT(j); | |
1179 | break; | |
1180 | } | |
f709fc69 | 1181 | } |
f709fc69 LCC |
1182 | } |
1183 | ||
60f8b39c JB |
1184 | for (i = 0; i < elems.ext_supp_rates_len; i++) { |
1185 | int rate = (elems.ext_supp_rates[i] & 0x7f) * 5; | |
7e0986c1 | 1186 | bool is_basic = !!(elems.ext_supp_rates[i] & 0x80); |
f0706e82 | 1187 | |
60f8b39c JB |
1188 | if (rate > 110) |
1189 | have_higher_than_11mbit = true; | |
f0706e82 | 1190 | |
60f8b39c | 1191 | for (j = 0; j < sband->n_bitrates; j++) { |
d61272cb | 1192 | if (sband->bitrates[j].bitrate == rate) { |
60f8b39c | 1193 | rates |= BIT(j); |
d61272cb TW |
1194 | if (is_basic) |
1195 | basic_rates |= BIT(j); | |
1196 | break; | |
1197 | } | |
60f8b39c | 1198 | } |
1ebebea8 | 1199 | } |
f0706e82 | 1200 | |
323ce79a | 1201 | sta->sta.supp_rates[local->hw.conf.channel->band] = rates; |
bda3933a | 1202 | sdata->vif.bss_conf.basic_rates = basic_rates; |
60f8b39c JB |
1203 | |
1204 | /* cf. IEEE 802.11 9.2.12 */ | |
1205 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && | |
1206 | have_higher_than_11mbit) | |
1207 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; | |
1208 | else | |
1209 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; | |
f0706e82 | 1210 | |
ab1faead | 1211 | if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) |
ae5eb026 | 1212 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
d9fe60de | 1213 | elems.ht_cap_elem, &sta->sta.ht_cap); |
ae5eb026 JB |
1214 | |
1215 | ap_ht_cap_flags = sta->sta.ht_cap.cap; | |
f0706e82 | 1216 | |
4b7679a5 | 1217 | rate_control_rate_init(sta); |
f0706e82 | 1218 | |
46900298 | 1219 | if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED) |
5394af4d JM |
1220 | set_sta_flags(sta, WLAN_STA_MFP); |
1221 | ||
ddf4ac53 | 1222 | if (elems.wmm_param) |
60f8b39c | 1223 | set_sta_flags(sta, WLAN_STA_WME); |
ddf4ac53 | 1224 | |
5d1ec85f JB |
1225 | err = sta_info_insert(sta); |
1226 | sta = NULL; | |
1227 | if (err) { | |
1228 | printk(KERN_DEBUG "%s: failed to insert STA entry for" | |
1229 | " the AP (error %d)\n", sdata->name, err); | |
90be561b | 1230 | return false; |
ddf4ac53 JB |
1231 | } |
1232 | ||
ddf4ac53 | 1233 | if (elems.wmm_param) |
46900298 | 1234 | ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param, |
60f8b39c | 1235 | elems.wmm_param_len); |
aa837e1d JB |
1236 | else |
1237 | ieee80211_set_wmm_default(sdata); | |
f0706e82 | 1238 | |
e4da8c37 JB |
1239 | local->oper_channel = wk->chan; |
1240 | ||
ae5eb026 | 1241 | if (elems.ht_info_elem && elems.wmm_param && |
af6b6374 | 1242 | (sdata->local->hw.queues >= 4) && |
ab1faead | 1243 | !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) |
ae5eb026 | 1244 | changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem, |
0c1ad2ca | 1245 | cbss->bssid, ap_ht_cap_flags); |
ae5eb026 | 1246 | |
60f8b39c JB |
1247 | /* set AID and assoc capability, |
1248 | * ieee80211_set_associated() will tell the driver */ | |
1249 | bss_conf->aid = aid; | |
1250 | bss_conf->assoc_capability = capab_info; | |
0c1ad2ca | 1251 | ieee80211_set_associated(sdata, cbss, changed); |
f0706e82 | 1252 | |
d524215f FF |
1253 | /* |
1254 | * If we're using 4-addr mode, let the AP know that we're | |
1255 | * doing so, so that it can create the STA VLAN on its side | |
1256 | */ | |
1257 | if (ifmgd->use_4addr) | |
1258 | ieee80211_send_4addr_nullfunc(local, sdata); | |
1259 | ||
15b7b062 | 1260 | /* |
b291ba11 JB |
1261 | * Start timer to probe the connection to the AP now. |
1262 | * Also start the timer that will detect beacon loss. | |
15b7b062 | 1263 | */ |
b291ba11 JB |
1264 | ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt); |
1265 | mod_beacon_timer(sdata); | |
15b7b062 | 1266 | |
af6b6374 | 1267 | return true; |
f0706e82 JB |
1268 | } |
1269 | ||
1270 | ||
98c8fccf JB |
1271 | static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata, |
1272 | struct ieee80211_mgmt *mgmt, | |
1273 | size_t len, | |
1274 | struct ieee80211_rx_status *rx_status, | |
1275 | struct ieee802_11_elems *elems, | |
1276 | bool beacon) | |
1277 | { | |
1278 | struct ieee80211_local *local = sdata->local; | |
1279 | int freq; | |
c2b13452 | 1280 | struct ieee80211_bss *bss; |
98c8fccf | 1281 | struct ieee80211_channel *channel; |
56007a02 JB |
1282 | bool need_ps = false; |
1283 | ||
1284 | if (sdata->u.mgd.associated) { | |
1285 | bss = (void *)sdata->u.mgd.associated->priv; | |
1286 | /* not previously set so we may need to recalc */ | |
1287 | need_ps = !bss->dtim_period; | |
1288 | } | |
98c8fccf JB |
1289 | |
1290 | if (elems->ds_params && elems->ds_params_len == 1) | |
1291 | freq = ieee80211_channel_to_frequency(elems->ds_params[0]); | |
1292 | else | |
1293 | freq = rx_status->freq; | |
1294 | ||
1295 | channel = ieee80211_get_channel(local->hw.wiphy, freq); | |
1296 | ||
1297 | if (!channel || channel->flags & IEEE80211_CHAN_DISABLED) | |
1298 | return; | |
1299 | ||
98c8fccf | 1300 | bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems, |
2a519311 | 1301 | channel, beacon); |
77fdaa12 JB |
1302 | if (bss) |
1303 | ieee80211_rx_bss_put(local, bss); | |
1304 | ||
1305 | if (!sdata->u.mgd.associated) | |
98c8fccf JB |
1306 | return; |
1307 | ||
56007a02 JB |
1308 | if (need_ps) { |
1309 | mutex_lock(&local->iflist_mtx); | |
1310 | ieee80211_recalc_ps(local, -1); | |
1311 | mutex_unlock(&local->iflist_mtx); | |
1312 | } | |
1313 | ||
c481ec97 | 1314 | if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) && |
0c1ad2ca | 1315 | (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid, |
77fdaa12 | 1316 | ETH_ALEN) == 0)) { |
c481ec97 S |
1317 | struct ieee80211_channel_sw_ie *sw_elem = |
1318 | (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem; | |
cc32abd4 | 1319 | ieee80211_sta_process_chanswitch(sdata, sw_elem, bss); |
c481ec97 | 1320 | } |
f0706e82 JB |
1321 | } |
1322 | ||
1323 | ||
f698d856 | 1324 | static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata, |
af6b6374 | 1325 | struct sk_buff *skb) |
f0706e82 | 1326 | { |
af6b6374 | 1327 | struct ieee80211_mgmt *mgmt = (void *)skb->data; |
15b7b062 | 1328 | struct ieee80211_if_managed *ifmgd; |
af6b6374 JB |
1329 | struct ieee80211_rx_status *rx_status = (void *) skb->cb; |
1330 | size_t baselen, len = skb->len; | |
ae6a44e3 EK |
1331 | struct ieee802_11_elems elems; |
1332 | ||
15b7b062 KV |
1333 | ifmgd = &sdata->u.mgd; |
1334 | ||
77fdaa12 JB |
1335 | ASSERT_MGD_MTX(ifmgd); |
1336 | ||
47846c9b | 1337 | if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN)) |
8e7cdbb6 TW |
1338 | return; /* ignore ProbeResp to foreign address */ |
1339 | ||
ae6a44e3 EK |
1340 | baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt; |
1341 | if (baselen > len) | |
1342 | return; | |
1343 | ||
1344 | ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen, | |
1345 | &elems); | |
1346 | ||
98c8fccf | 1347 | ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false); |
9859b81e | 1348 | |
77fdaa12 | 1349 | if (ifmgd->associated && |
0c1ad2ca | 1350 | memcmp(mgmt->bssid, ifmgd->associated->bssid, ETH_ALEN) == 0 && |
b291ba11 JB |
1351 | ifmgd->flags & (IEEE80211_STA_BEACON_POLL | |
1352 | IEEE80211_STA_CONNECTION_POLL)) { | |
1353 | ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL | | |
1354 | IEEE80211_STA_BEACON_POLL); | |
4e751843 JB |
1355 | mutex_lock(&sdata->local->iflist_mtx); |
1356 | ieee80211_recalc_ps(sdata->local, -1); | |
1357 | mutex_unlock(&sdata->local->iflist_mtx); | |
7bdfcaaf JO |
1358 | |
1359 | if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR) | |
1360 | return; | |
1361 | ||
b291ba11 JB |
1362 | /* |
1363 | * We've received a probe response, but are not sure whether | |
1364 | * we have or will be receiving any beacons or data, so let's | |
1365 | * schedule the timers again, just in case. | |
1366 | */ | |
1367 | mod_beacon_timer(sdata); | |
7bdfcaaf | 1368 | |
b291ba11 JB |
1369 | mod_timer(&ifmgd->conn_mon_timer, |
1370 | round_jiffies_up(jiffies + | |
1371 | IEEE80211_CONNECTION_IDLE_TIME)); | |
4e751843 | 1372 | } |
f0706e82 JB |
1373 | } |
1374 | ||
d91f36db JB |
1375 | /* |
1376 | * This is the canonical list of information elements we care about, | |
1377 | * the filter code also gives us all changes to the Microsoft OUI | |
1378 | * (00:50:F2) vendor IE which is used for WMM which we need to track. | |
1379 | * | |
1380 | * We implement beacon filtering in software since that means we can | |
1381 | * avoid processing the frame here and in cfg80211, and userspace | |
1382 | * will not be able to tell whether the hardware supports it or not. | |
1383 | * | |
1384 | * XXX: This list needs to be dynamic -- userspace needs to be able to | |
1385 | * add items it requires. It also needs to be able to tell us to | |
1386 | * look out for other vendor IEs. | |
1387 | */ | |
1388 | static const u64 care_about_ies = | |
1d4df3a5 JB |
1389 | (1ULL << WLAN_EID_COUNTRY) | |
1390 | (1ULL << WLAN_EID_ERP_INFO) | | |
1391 | (1ULL << WLAN_EID_CHANNEL_SWITCH) | | |
1392 | (1ULL << WLAN_EID_PWR_CONSTRAINT) | | |
1393 | (1ULL << WLAN_EID_HT_CAPABILITY) | | |
1394 | (1ULL << WLAN_EID_HT_INFORMATION); | |
d91f36db | 1395 | |
f698d856 | 1396 | static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata, |
f0706e82 JB |
1397 | struct ieee80211_mgmt *mgmt, |
1398 | size_t len, | |
1399 | struct ieee80211_rx_status *rx_status) | |
1400 | { | |
d91f36db | 1401 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
17e4ec14 | 1402 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
f0706e82 JB |
1403 | size_t baselen; |
1404 | struct ieee802_11_elems elems; | |
f698d856 | 1405 | struct ieee80211_local *local = sdata->local; |
471b3efd | 1406 | u32 changed = 0; |
d91f36db | 1407 | bool erp_valid, directed_tim = false; |
7a5158ef | 1408 | u8 erp_value = 0; |
d91f36db | 1409 | u32 ncrc; |
77fdaa12 JB |
1410 | u8 *bssid; |
1411 | ||
1412 | ASSERT_MGD_MTX(ifmgd); | |
f0706e82 | 1413 | |
ae6a44e3 EK |
1414 | /* Process beacon from the current BSS */ |
1415 | baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt; | |
1416 | if (baselen > len) | |
1417 | return; | |
1418 | ||
d91f36db | 1419 | if (rx_status->freq != local->hw.conf.channel->center_freq) |
f0706e82 | 1420 | return; |
f0706e82 | 1421 | |
b291ba11 JB |
1422 | /* |
1423 | * We might have received a number of frames, among them a | |
1424 | * disassoc frame and a beacon... | |
1425 | */ | |
1426 | if (!ifmgd->associated) | |
77fdaa12 JB |
1427 | return; |
1428 | ||
0c1ad2ca | 1429 | bssid = ifmgd->associated->bssid; |
77fdaa12 | 1430 | |
b291ba11 JB |
1431 | /* |
1432 | * And in theory even frames from a different AP we were just | |
1433 | * associated to a split-second ago! | |
1434 | */ | |
1435 | if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0) | |
f0706e82 JB |
1436 | return; |
1437 | ||
17e4ec14 JM |
1438 | /* Track average RSSI from the Beacon frames of the current AP */ |
1439 | ifmgd->last_beacon_signal = rx_status->signal; | |
1440 | if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) { | |
1441 | ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE; | |
1442 | ifmgd->ave_beacon_signal = rx_status->signal; | |
1443 | ifmgd->last_cqm_event_signal = 0; | |
1444 | } else { | |
1445 | ifmgd->ave_beacon_signal = | |
1446 | (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 + | |
1447 | (16 - IEEE80211_SIGNAL_AVE_WEIGHT) * | |
1448 | ifmgd->ave_beacon_signal) / 16; | |
1449 | } | |
1450 | if (bss_conf->cqm_rssi_thold && | |
1451 | !(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) { | |
1452 | int sig = ifmgd->ave_beacon_signal / 16; | |
1453 | int last_event = ifmgd->last_cqm_event_signal; | |
1454 | int thold = bss_conf->cqm_rssi_thold; | |
1455 | int hyst = bss_conf->cqm_rssi_hyst; | |
1456 | if (sig < thold && | |
1457 | (last_event == 0 || sig < last_event - hyst)) { | |
1458 | ifmgd->last_cqm_event_signal = sig; | |
1459 | ieee80211_cqm_rssi_notify( | |
1460 | &sdata->vif, | |
1461 | NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW, | |
1462 | GFP_KERNEL); | |
1463 | } else if (sig > thold && | |
1464 | (last_event == 0 || sig > last_event + hyst)) { | |
1465 | ifmgd->last_cqm_event_signal = sig; | |
1466 | ieee80211_cqm_rssi_notify( | |
1467 | &sdata->vif, | |
1468 | NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH, | |
1469 | GFP_KERNEL); | |
1470 | } | |
1471 | } | |
1472 | ||
b291ba11 | 1473 | if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) { |
92778180 JM |
1474 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
1475 | if (net_ratelimit()) { | |
1476 | printk(KERN_DEBUG "%s: cancelling probereq poll due " | |
47846c9b | 1477 | "to a received beacon\n", sdata->name); |
92778180 JM |
1478 | } |
1479 | #endif | |
b291ba11 | 1480 | ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL; |
4e751843 JB |
1481 | mutex_lock(&local->iflist_mtx); |
1482 | ieee80211_recalc_ps(local, -1); | |
1483 | mutex_unlock(&local->iflist_mtx); | |
92778180 JM |
1484 | } |
1485 | ||
b291ba11 JB |
1486 | /* |
1487 | * Push the beacon loss detection into the future since | |
1488 | * we are processing a beacon from the AP just now. | |
1489 | */ | |
1490 | mod_beacon_timer(sdata); | |
1491 | ||
d91f36db JB |
1492 | ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4); |
1493 | ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable, | |
1494 | len - baselen, &elems, | |
1495 | care_about_ies, ncrc); | |
1496 | ||
1497 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) | |
e7ec86f5 JB |
1498 | directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len, |
1499 | ifmgd->aid); | |
d91f36db | 1500 | |
30196673 JM |
1501 | if (ncrc != ifmgd->beacon_crc) { |
1502 | ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, | |
1503 | true); | |
d91f36db | 1504 | |
30196673 JM |
1505 | ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param, |
1506 | elems.wmm_param_len); | |
1507 | } | |
fe3fa827 | 1508 | |
25c9c875 | 1509 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) { |
1fb3606b | 1510 | if (directed_tim) { |
572e0012 KV |
1511 | if (local->hw.conf.dynamic_ps_timeout > 0) { |
1512 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; | |
1513 | ieee80211_hw_config(local, | |
1514 | IEEE80211_CONF_CHANGE_PS); | |
1515 | ieee80211_send_nullfunc(local, sdata, 0); | |
1516 | } else { | |
1517 | local->pspolling = true; | |
1518 | ||
1519 | /* | |
1520 | * Here is assumed that the driver will be | |
1521 | * able to send ps-poll frame and receive a | |
1522 | * response even though power save mode is | |
1523 | * enabled, but some drivers might require | |
1524 | * to disable power save here. This needs | |
1525 | * to be investigated. | |
1526 | */ | |
1527 | ieee80211_send_pspoll(local, sdata); | |
1528 | } | |
a97b77b9 VN |
1529 | } |
1530 | } | |
7a5158ef | 1531 | |
30196673 JM |
1532 | if (ncrc == ifmgd->beacon_crc) |
1533 | return; | |
1534 | ifmgd->beacon_crc = ncrc; | |
1535 | ||
7a5158ef JB |
1536 | if (elems.erp_info && elems.erp_info_len >= 1) { |
1537 | erp_valid = true; | |
1538 | erp_value = elems.erp_info[0]; | |
1539 | } else { | |
1540 | erp_valid = false; | |
50c4afb9 | 1541 | } |
7a5158ef JB |
1542 | changed |= ieee80211_handle_bss_capability(sdata, |
1543 | le16_to_cpu(mgmt->u.beacon.capab_info), | |
1544 | erp_valid, erp_value); | |
f0706e82 | 1545 | |
d3c990fb | 1546 | |
53d6f81c | 1547 | if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param && |
ab1faead | 1548 | !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) { |
ae5eb026 JB |
1549 | struct sta_info *sta; |
1550 | struct ieee80211_supported_band *sband; | |
1551 | u16 ap_ht_cap_flags; | |
1552 | ||
1553 | rcu_read_lock(); | |
1554 | ||
abe60632 | 1555 | sta = sta_info_get(sdata, bssid); |
77fdaa12 | 1556 | if (WARN_ON(!sta)) { |
ae5eb026 JB |
1557 | rcu_read_unlock(); |
1558 | return; | |
1559 | } | |
1560 | ||
1561 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; | |
1562 | ||
1563 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, | |
1564 | elems.ht_cap_elem, &sta->sta.ht_cap); | |
1565 | ||
1566 | ap_ht_cap_flags = sta->sta.ht_cap.cap; | |
1567 | ||
1568 | rcu_read_unlock(); | |
1569 | ||
1570 | changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem, | |
77fdaa12 | 1571 | bssid, ap_ht_cap_flags); |
d3c990fb RR |
1572 | } |
1573 | ||
8b19e6ca | 1574 | /* Note: country IE parsing is done for us by cfg80211 */ |
3f2355cb | 1575 | if (elems.country_elem) { |
a8302de9 VT |
1576 | /* TODO: IBSS also needs this */ |
1577 | if (elems.pwr_constr_elem) | |
1578 | ieee80211_handle_pwr_constr(sdata, | |
1579 | le16_to_cpu(mgmt->u.probe_resp.capab_info), | |
1580 | elems.pwr_constr_elem, | |
1581 | elems.pwr_constr_elem_len); | |
3f2355cb LR |
1582 | } |
1583 | ||
471b3efd | 1584 | ieee80211_bss_info_change_notify(sdata, changed); |
f0706e82 JB |
1585 | } |
1586 | ||
46900298 | 1587 | ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, |
f1d58c25 | 1588 | struct sk_buff *skb) |
f0706e82 | 1589 | { |
f698d856 | 1590 | struct ieee80211_local *local = sdata->local; |
f0706e82 JB |
1591 | struct ieee80211_mgmt *mgmt; |
1592 | u16 fc; | |
1593 | ||
1594 | if (skb->len < 24) | |
46900298 | 1595 | return RX_DROP_MONITOR; |
f0706e82 JB |
1596 | |
1597 | mgmt = (struct ieee80211_mgmt *) skb->data; | |
1598 | fc = le16_to_cpu(mgmt->frame_control); | |
1599 | ||
1600 | switch (fc & IEEE80211_FCTL_STYPE) { | |
f0706e82 JB |
1601 | case IEEE80211_STYPE_PROBE_RESP: |
1602 | case IEEE80211_STYPE_BEACON: | |
f0706e82 JB |
1603 | case IEEE80211_STYPE_DEAUTH: |
1604 | case IEEE80211_STYPE_DISASSOC: | |
77fdaa12 | 1605 | case IEEE80211_STYPE_ACTION: |
46900298 | 1606 | skb_queue_tail(&sdata->u.mgd.skb_queue, skb); |
42935eca | 1607 | ieee80211_queue_work(&local->hw, &sdata->u.mgd.work); |
46900298 | 1608 | return RX_QUEUED; |
f0706e82 JB |
1609 | } |
1610 | ||
46900298 | 1611 | return RX_DROP_MONITOR; |
f0706e82 JB |
1612 | } |
1613 | ||
f698d856 | 1614 | static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, |
f0706e82 JB |
1615 | struct sk_buff *skb) |
1616 | { | |
77fdaa12 | 1617 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
f0706e82 | 1618 | struct ieee80211_rx_status *rx_status; |
f0706e82 | 1619 | struct ieee80211_mgmt *mgmt; |
77fdaa12 | 1620 | enum rx_mgmt_action rma = RX_MGMT_NONE; |
f0706e82 JB |
1621 | u16 fc; |
1622 | ||
f0706e82 JB |
1623 | rx_status = (struct ieee80211_rx_status *) skb->cb; |
1624 | mgmt = (struct ieee80211_mgmt *) skb->data; | |
1625 | fc = le16_to_cpu(mgmt->frame_control); | |
1626 | ||
77fdaa12 JB |
1627 | mutex_lock(&ifmgd->mtx); |
1628 | ||
1629 | if (ifmgd->associated && | |
0c1ad2ca | 1630 | memcmp(ifmgd->associated->bssid, mgmt->bssid, ETH_ALEN) == 0) { |
77fdaa12 JB |
1631 | switch (fc & IEEE80211_FCTL_STYPE) { |
1632 | case IEEE80211_STYPE_BEACON: | |
1633 | ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, | |
1634 | rx_status); | |
1635 | break; | |
1636 | case IEEE80211_STYPE_PROBE_RESP: | |
af6b6374 | 1637 | ieee80211_rx_mgmt_probe_resp(sdata, skb); |
77fdaa12 JB |
1638 | break; |
1639 | case IEEE80211_STYPE_DEAUTH: | |
63f170e0 | 1640 | rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len); |
77fdaa12 JB |
1641 | break; |
1642 | case IEEE80211_STYPE_DISASSOC: | |
1643 | rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len); | |
1644 | break; | |
1645 | case IEEE80211_STYPE_ACTION: | |
d7907448 FF |
1646 | if (mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT) |
1647 | break; | |
1648 | ||
77fdaa12 JB |
1649 | ieee80211_sta_process_chanswitch(sdata, |
1650 | &mgmt->u.action.u.chan_switch.sw_elem, | |
0c1ad2ca | 1651 | (void *)ifmgd->associated->priv); |
77fdaa12 JB |
1652 | break; |
1653 | } | |
1654 | mutex_unlock(&ifmgd->mtx); | |
1655 | ||
1656 | switch (rma) { | |
1657 | case RX_MGMT_NONE: | |
1658 | /* no action */ | |
1659 | break; | |
1660 | case RX_MGMT_CFG80211_DEAUTH: | |
ce470613 | 1661 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
77fdaa12 JB |
1662 | break; |
1663 | case RX_MGMT_CFG80211_DISASSOC: | |
ce470613 | 1664 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); |
77fdaa12 JB |
1665 | break; |
1666 | default: | |
1667 | WARN(1, "unexpected: %d", rma); | |
1668 | } | |
1669 | goto out; | |
1670 | } | |
1671 | ||
77fdaa12 JB |
1672 | mutex_unlock(&ifmgd->mtx); |
1673 | ||
63f170e0 | 1674 | if (skb->len >= 24 + 2 /* mgmt + deauth reason */ && |
af6b6374 | 1675 | (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_DEAUTH) |
ce470613 | 1676 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
f0706e82 | 1677 | |
77fdaa12 | 1678 | out: |
f0706e82 JB |
1679 | kfree_skb(skb); |
1680 | } | |
1681 | ||
9c6bd790 | 1682 | static void ieee80211_sta_timer(unsigned long data) |
f0706e82 | 1683 | { |
60f8b39c JB |
1684 | struct ieee80211_sub_if_data *sdata = |
1685 | (struct ieee80211_sub_if_data *) data; | |
46900298 | 1686 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
60f8b39c | 1687 | struct ieee80211_local *local = sdata->local; |
f0706e82 | 1688 | |
5bb644a0 JB |
1689 | if (local->quiescing) { |
1690 | set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running); | |
1691 | return; | |
1692 | } | |
1693 | ||
42935eca | 1694 | ieee80211_queue_work(&local->hw, &ifmgd->work); |
f0706e82 JB |
1695 | } |
1696 | ||
9c6bd790 JB |
1697 | static void ieee80211_sta_work(struct work_struct *work) |
1698 | { | |
1699 | struct ieee80211_sub_if_data *sdata = | |
46900298 | 1700 | container_of(work, struct ieee80211_sub_if_data, u.mgd.work); |
9c6bd790 | 1701 | struct ieee80211_local *local = sdata->local; |
46900298 | 1702 | struct ieee80211_if_managed *ifmgd; |
9c6bd790 JB |
1703 | struct sk_buff *skb; |
1704 | ||
9607e6b6 | 1705 | if (!ieee80211_sdata_running(sdata)) |
9c6bd790 JB |
1706 | return; |
1707 | ||
fbe9c429 | 1708 | if (local->scanning) |
9c6bd790 JB |
1709 | return; |
1710 | ||
46900298 | 1711 | if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION)) |
9c6bd790 | 1712 | return; |
5bb644a0 JB |
1713 | |
1714 | /* | |
42935eca LR |
1715 | * ieee80211_queue_work() should have picked up most cases, |
1716 | * here we'll pick the the rest. | |
5bb644a0 | 1717 | */ |
42935eca LR |
1718 | if (WARN(local->suspended, "STA MLME work scheduled while " |
1719 | "going to suspend\n")) | |
5bb644a0 JB |
1720 | return; |
1721 | ||
46900298 | 1722 | ifmgd = &sdata->u.mgd; |
f0706e82 | 1723 | |
77fdaa12 | 1724 | /* first process frames to avoid timing out while a frame is pending */ |
46900298 | 1725 | while ((skb = skb_dequeue(&ifmgd->skb_queue))) |
9c6bd790 JB |
1726 | ieee80211_sta_rx_queued_mgmt(sdata, skb); |
1727 | ||
77fdaa12 JB |
1728 | /* then process the rest of the work */ |
1729 | mutex_lock(&ifmgd->mtx); | |
1730 | ||
b291ba11 JB |
1731 | if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL | |
1732 | IEEE80211_STA_CONNECTION_POLL) && | |
1733 | ifmgd->associated) { | |
a43abf29 ML |
1734 | u8 bssid[ETH_ALEN]; |
1735 | ||
0c1ad2ca | 1736 | memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN); |
b291ba11 JB |
1737 | if (time_is_after_jiffies(ifmgd->probe_timeout)) |
1738 | run_again(ifmgd, ifmgd->probe_timeout); | |
a43abf29 ML |
1739 | |
1740 | else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) { | |
1741 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG | |
1742 | printk(KERN_DEBUG "No probe response from AP %pM" | |
1743 | " after %dms, try %d\n", bssid, | |
1744 | (1000 * IEEE80211_PROBE_WAIT)/HZ, | |
1745 | ifmgd->probe_send_count); | |
1746 | #endif | |
1747 | ieee80211_mgd_probe_ap_send(sdata); | |
1748 | } else { | |
b291ba11 JB |
1749 | /* |
1750 | * We actually lost the connection ... or did we? | |
1751 | * Let's make sure! | |
1752 | */ | |
1753 | ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL | | |
1754 | IEEE80211_STA_BEACON_POLL); | |
b291ba11 JB |
1755 | printk(KERN_DEBUG "No probe response from AP %pM" |
1756 | " after %dms, disconnecting.\n", | |
1757 | bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ); | |
e69e95db | 1758 | ieee80211_set_disassoc(sdata, true); |
bc83b681 | 1759 | ieee80211_recalc_idle(local); |
b291ba11 JB |
1760 | mutex_unlock(&ifmgd->mtx); |
1761 | /* | |
1762 | * must be outside lock due to cfg80211, | |
1763 | * but that's not a problem. | |
1764 | */ | |
1765 | ieee80211_send_deauth_disassoc(sdata, bssid, | |
1766 | IEEE80211_STYPE_DEAUTH, | |
1767 | WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, | |
d5cdfacb | 1768 | NULL, true); |
b291ba11 JB |
1769 | mutex_lock(&ifmgd->mtx); |
1770 | } | |
1771 | } | |
1772 | ||
77fdaa12 | 1773 | mutex_unlock(&ifmgd->mtx); |
f0706e82 JB |
1774 | } |
1775 | ||
b291ba11 JB |
1776 | static void ieee80211_sta_bcn_mon_timer(unsigned long data) |
1777 | { | |
1778 | struct ieee80211_sub_if_data *sdata = | |
1779 | (struct ieee80211_sub_if_data *) data; | |
1780 | struct ieee80211_local *local = sdata->local; | |
1781 | ||
1782 | if (local->quiescing) | |
1783 | return; | |
1784 | ||
1e4dcd01 JO |
1785 | ieee80211_queue_work(&sdata->local->hw, |
1786 | &sdata->u.mgd.beacon_connection_loss_work); | |
b291ba11 JB |
1787 | } |
1788 | ||
1789 | static void ieee80211_sta_conn_mon_timer(unsigned long data) | |
1790 | { | |
1791 | struct ieee80211_sub_if_data *sdata = | |
1792 | (struct ieee80211_sub_if_data *) data; | |
1793 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
1794 | struct ieee80211_local *local = sdata->local; | |
1795 | ||
1796 | if (local->quiescing) | |
1797 | return; | |
1798 | ||
42935eca | 1799 | ieee80211_queue_work(&local->hw, &ifmgd->monitor_work); |
b291ba11 JB |
1800 | } |
1801 | ||
1802 | static void ieee80211_sta_monitor_work(struct work_struct *work) | |
1803 | { | |
1804 | struct ieee80211_sub_if_data *sdata = | |
1805 | container_of(work, struct ieee80211_sub_if_data, | |
1806 | u.mgd.monitor_work); | |
1807 | ||
1808 | ieee80211_mgd_probe_ap(sdata, false); | |
1809 | } | |
1810 | ||
9c6bd790 JB |
1811 | static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) |
1812 | { | |
ad935687 | 1813 | if (sdata->vif.type == NL80211_IFTYPE_STATION) { |
b291ba11 JB |
1814 | sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL | |
1815 | IEEE80211_STA_CONNECTION_POLL); | |
ad935687 | 1816 | |
b291ba11 | 1817 | /* let's probe the connection once */ |
42935eca | 1818 | ieee80211_queue_work(&sdata->local->hw, |
b291ba11 JB |
1819 | &sdata->u.mgd.monitor_work); |
1820 | /* and do all the other regular work too */ | |
42935eca | 1821 | ieee80211_queue_work(&sdata->local->hw, |
46900298 | 1822 | &sdata->u.mgd.work); |
ad935687 | 1823 | } |
9c6bd790 | 1824 | } |
f0706e82 | 1825 | |
5bb644a0 JB |
1826 | #ifdef CONFIG_PM |
1827 | void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata) | |
1828 | { | |
1829 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
1830 | ||
1831 | /* | |
1832 | * we need to use atomic bitops for the running bits | |
1833 | * only because both timers might fire at the same | |
1834 | * time -- the code here is properly synchronised. | |
1835 | */ | |
1836 | ||
1837 | cancel_work_sync(&ifmgd->work); | |
1e4dcd01 | 1838 | cancel_work_sync(&ifmgd->beacon_connection_loss_work); |
5bb644a0 JB |
1839 | if (del_timer_sync(&ifmgd->timer)) |
1840 | set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running); | |
1841 | ||
1842 | cancel_work_sync(&ifmgd->chswitch_work); | |
1843 | if (del_timer_sync(&ifmgd->chswitch_timer)) | |
1844 | set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running); | |
b291ba11 JB |
1845 | |
1846 | cancel_work_sync(&ifmgd->monitor_work); | |
1847 | /* these will just be re-established on connection */ | |
1848 | del_timer_sync(&ifmgd->conn_mon_timer); | |
1849 | del_timer_sync(&ifmgd->bcn_mon_timer); | |
5bb644a0 JB |
1850 | } |
1851 | ||
1852 | void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata) | |
1853 | { | |
1854 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
1855 | ||
1856 | if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running)) | |
1857 | add_timer(&ifmgd->timer); | |
1858 | if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running)) | |
1859 | add_timer(&ifmgd->chswitch_timer); | |
1860 | } | |
1861 | #endif | |
1862 | ||
9c6bd790 JB |
1863 | /* interface setup */ |
1864 | void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata) | |
f0706e82 | 1865 | { |
46900298 | 1866 | struct ieee80211_if_managed *ifmgd; |
988c0f72 | 1867 | |
46900298 JB |
1868 | ifmgd = &sdata->u.mgd; |
1869 | INIT_WORK(&ifmgd->work, ieee80211_sta_work); | |
b291ba11 | 1870 | INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work); |
46900298 | 1871 | INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work); |
1e4dcd01 JO |
1872 | INIT_WORK(&ifmgd->beacon_connection_loss_work, |
1873 | ieee80211_beacon_connection_loss_work); | |
46900298 | 1874 | setup_timer(&ifmgd->timer, ieee80211_sta_timer, |
c481ec97 | 1875 | (unsigned long) sdata); |
b291ba11 JB |
1876 | setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer, |
1877 | (unsigned long) sdata); | |
1878 | setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer, | |
1879 | (unsigned long) sdata); | |
46900298 | 1880 | setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer, |
9c6bd790 | 1881 | (unsigned long) sdata); |
46900298 | 1882 | skb_queue_head_init(&ifmgd->skb_queue); |
9c6bd790 | 1883 | |
ab1faead | 1884 | ifmgd->flags = 0; |
bbbdff9e | 1885 | |
77fdaa12 | 1886 | mutex_init(&ifmgd->mtx); |
0f78231b JB |
1887 | |
1888 | if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) | |
1889 | ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC; | |
1890 | else | |
1891 | ifmgd->req_smps = IEEE80211_SMPS_OFF; | |
f0706e82 JB |
1892 | } |
1893 | ||
77fdaa12 JB |
1894 | /* scan finished notification */ |
1895 | void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local) | |
60f8b39c | 1896 | { |
77fdaa12 | 1897 | struct ieee80211_sub_if_data *sdata = local->scan_sdata; |
60f8b39c | 1898 | |
77fdaa12 JB |
1899 | /* Restart STA timers */ |
1900 | rcu_read_lock(); | |
1901 | list_for_each_entry_rcu(sdata, &local->interfaces, list) | |
1902 | ieee80211_restart_sta_timer(sdata); | |
1903 | rcu_read_unlock(); | |
1904 | } | |
60f8b39c | 1905 | |
77fdaa12 JB |
1906 | int ieee80211_max_network_latency(struct notifier_block *nb, |
1907 | unsigned long data, void *dummy) | |
1908 | { | |
1909 | s32 latency_usec = (s32) data; | |
1910 | struct ieee80211_local *local = | |
1911 | container_of(nb, struct ieee80211_local, | |
1912 | network_latency_notifier); | |
1fa6f4af | 1913 | |
77fdaa12 JB |
1914 | mutex_lock(&local->iflist_mtx); |
1915 | ieee80211_recalc_ps(local, latency_usec); | |
1916 | mutex_unlock(&local->iflist_mtx); | |
dfe67012 | 1917 | |
77fdaa12 | 1918 | return 0; |
9c6bd790 JB |
1919 | } |
1920 | ||
77fdaa12 | 1921 | /* config hooks */ |
af6b6374 JB |
1922 | static enum work_done_result |
1923 | ieee80211_probe_auth_done(struct ieee80211_work *wk, | |
1924 | struct sk_buff *skb) | |
1925 | { | |
1926 | if (!skb) { | |
1927 | cfg80211_send_auth_timeout(wk->sdata->dev, wk->filter_ta); | |
1928 | return WORK_DONE_DESTROY; | |
1929 | } | |
1930 | ||
1931 | if (wk->type == IEEE80211_WORK_AUTH) { | |
1932 | cfg80211_send_rx_auth(wk->sdata->dev, skb->data, skb->len); | |
1933 | return WORK_DONE_DESTROY; | |
1934 | } | |
1935 | ||
1936 | mutex_lock(&wk->sdata->u.mgd.mtx); | |
1937 | ieee80211_rx_mgmt_probe_resp(wk->sdata, skb); | |
1938 | mutex_unlock(&wk->sdata->u.mgd.mtx); | |
1939 | ||
1940 | wk->type = IEEE80211_WORK_AUTH; | |
1941 | wk->probe_auth.tries = 0; | |
1942 | return WORK_DONE_REQUEUE; | |
1943 | } | |
1944 | ||
77fdaa12 JB |
1945 | int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata, |
1946 | struct cfg80211_auth_request *req) | |
9c6bd790 | 1947 | { |
77fdaa12 | 1948 | const u8 *ssid; |
f679f65d | 1949 | struct ieee80211_work *wk; |
77fdaa12 | 1950 | u16 auth_alg; |
9c6bd790 | 1951 | |
d5cdfacb JM |
1952 | if (req->local_state_change) |
1953 | return 0; /* no need to update mac80211 state */ | |
1954 | ||
77fdaa12 JB |
1955 | switch (req->auth_type) { |
1956 | case NL80211_AUTHTYPE_OPEN_SYSTEM: | |
1957 | auth_alg = WLAN_AUTH_OPEN; | |
1958 | break; | |
1959 | case NL80211_AUTHTYPE_SHARED_KEY: | |
1960 | auth_alg = WLAN_AUTH_SHARED_KEY; | |
1961 | break; | |
1962 | case NL80211_AUTHTYPE_FT: | |
1963 | auth_alg = WLAN_AUTH_FT; | |
1964 | break; | |
1965 | case NL80211_AUTHTYPE_NETWORK_EAP: | |
1966 | auth_alg = WLAN_AUTH_LEAP; | |
1967 | break; | |
1968 | default: | |
1969 | return -EOPNOTSUPP; | |
60f8b39c | 1970 | } |
77fdaa12 JB |
1971 | |
1972 | wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL); | |
1973 | if (!wk) | |
9c6bd790 | 1974 | return -ENOMEM; |
77fdaa12 | 1975 | |
5e124bd5 | 1976 | memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN); |
77fdaa12 JB |
1977 | |
1978 | if (req->ie && req->ie_len) { | |
1979 | memcpy(wk->ie, req->ie, req->ie_len); | |
1980 | wk->ie_len = req->ie_len; | |
9c6bd790 | 1981 | } |
77fdaa12 | 1982 | |
fffd0934 | 1983 | if (req->key && req->key_len) { |
af6b6374 JB |
1984 | wk->probe_auth.key_len = req->key_len; |
1985 | wk->probe_auth.key_idx = req->key_idx; | |
1986 | memcpy(wk->probe_auth.key, req->key, req->key_len); | |
fffd0934 JB |
1987 | } |
1988 | ||
77fdaa12 | 1989 | ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID); |
af6b6374 JB |
1990 | memcpy(wk->probe_auth.ssid, ssid + 2, ssid[1]); |
1991 | wk->probe_auth.ssid_len = ssid[1]; | |
f679f65d | 1992 | |
af6b6374 JB |
1993 | wk->probe_auth.algorithm = auth_alg; |
1994 | wk->probe_auth.privacy = req->bss->capability & WLAN_CAPABILITY_PRIVACY; | |
77fdaa12 | 1995 | |
070bb547 JB |
1996 | /* if we already have a probe, don't probe again */ |
1997 | if (req->bss->proberesp_ies) | |
1998 | wk->type = IEEE80211_WORK_AUTH; | |
1999 | else | |
2000 | wk->type = IEEE80211_WORK_DIRECT_PROBE; | |
f679f65d | 2001 | wk->chan = req->bss->channel; |
af6b6374 JB |
2002 | wk->sdata = sdata; |
2003 | wk->done = ieee80211_probe_auth_done; | |
77fdaa12 | 2004 | |
af6b6374 | 2005 | ieee80211_add_work(wk); |
9c6bd790 | 2006 | return 0; |
60f8b39c JB |
2007 | } |
2008 | ||
af6b6374 JB |
2009 | static enum work_done_result ieee80211_assoc_done(struct ieee80211_work *wk, |
2010 | struct sk_buff *skb) | |
2011 | { | |
2012 | struct ieee80211_mgmt *mgmt; | |
2013 | u16 status; | |
2014 | ||
2015 | if (!skb) { | |
2016 | cfg80211_send_assoc_timeout(wk->sdata->dev, wk->filter_ta); | |
2017 | return WORK_DONE_DESTROY; | |
2018 | } | |
2019 | ||
2020 | mgmt = (void *)skb->data; | |
2021 | status = le16_to_cpu(mgmt->u.assoc_resp.status_code); | |
2022 | ||
2023 | if (status == WLAN_STATUS_SUCCESS) { | |
2024 | mutex_lock(&wk->sdata->u.mgd.mtx); | |
2025 | if (!ieee80211_assoc_success(wk, mgmt, skb->len)) { | |
2026 | mutex_unlock(&wk->sdata->u.mgd.mtx); | |
2027 | /* oops -- internal error -- send timeout for now */ | |
2028 | cfg80211_send_assoc_timeout(wk->sdata->dev, | |
2029 | wk->filter_ta); | |
2030 | return WORK_DONE_DESTROY; | |
2031 | } | |
2032 | mutex_unlock(&wk->sdata->u.mgd.mtx); | |
2033 | } | |
2034 | ||
2035 | cfg80211_send_rx_assoc(wk->sdata->dev, skb->data, skb->len); | |
2036 | return WORK_DONE_DESTROY; | |
2037 | } | |
2038 | ||
77fdaa12 JB |
2039 | int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata, |
2040 | struct cfg80211_assoc_request *req) | |
f0706e82 | 2041 | { |
77fdaa12 | 2042 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
0c1ad2ca | 2043 | struct ieee80211_bss *bss = (void *)req->bss->priv; |
f679f65d | 2044 | struct ieee80211_work *wk; |
63f170e0 | 2045 | const u8 *ssid; |
af6b6374 | 2046 | int i; |
f0706e82 | 2047 | |
77fdaa12 | 2048 | mutex_lock(&ifmgd->mtx); |
af6b6374 | 2049 | if (ifmgd->associated) { |
9c87ba67 JM |
2050 | if (!req->prev_bssid || |
2051 | memcmp(req->prev_bssid, ifmgd->associated->bssid, | |
2052 | ETH_ALEN)) { | |
2053 | /* | |
2054 | * We are already associated and the request was not a | |
2055 | * reassociation request from the current BSS, so | |
2056 | * reject it. | |
2057 | */ | |
2058 | mutex_unlock(&ifmgd->mtx); | |
2059 | return -EALREADY; | |
2060 | } | |
2061 | ||
2062 | /* Trying to reassociate - clear previous association state */ | |
e69e95db | 2063 | ieee80211_set_disassoc(sdata, true); |
af6b6374 JB |
2064 | } |
2065 | mutex_unlock(&ifmgd->mtx); | |
77fdaa12 | 2066 | |
63f170e0 | 2067 | wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL); |
af6b6374 JB |
2068 | if (!wk) |
2069 | return -ENOMEM; | |
77fdaa12 | 2070 | |
77fdaa12 | 2071 | ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N; |
375177bf | 2072 | ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED; |
77fdaa12 JB |
2073 | |
2074 | for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) | |
2075 | if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 || | |
2076 | req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP || | |
2077 | req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) | |
2078 | ifmgd->flags |= IEEE80211_STA_DISABLE_11N; | |
2079 | ||
77fdaa12 JB |
2080 | |
2081 | if (req->ie && req->ie_len) { | |
2082 | memcpy(wk->ie, req->ie, req->ie_len); | |
2083 | wk->ie_len = req->ie_len; | |
2084 | } else | |
2085 | wk->ie_len = 0; | |
2086 | ||
0c1ad2ca | 2087 | wk->assoc.bss = req->bss; |
f679f65d | 2088 | |
af6b6374 | 2089 | memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN); |
f679f65d | 2090 | |
af6b6374 JB |
2091 | /* new association always uses requested smps mode */ |
2092 | if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) { | |
2093 | if (ifmgd->powersave) | |
2094 | ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC; | |
2095 | else | |
2096 | ifmgd->ap_smps = IEEE80211_SMPS_OFF; | |
2097 | } else | |
2098 | ifmgd->ap_smps = ifmgd->req_smps; | |
2099 | ||
2100 | wk->assoc.smps = ifmgd->ap_smps; | |
77c8144a JB |
2101 | /* |
2102 | * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode. | |
2103 | * We still associate in non-HT mode (11a/b/g) if any one of these | |
2104 | * ciphers is configured as pairwise. | |
2105 | * We can set this to true for non-11n hardware, that'll be checked | |
2106 | * separately along with the peer capabilities. | |
2107 | */ | |
af6b6374 | 2108 | wk->assoc.use_11n = !(ifmgd->flags & IEEE80211_STA_DISABLE_11N); |
f679f65d | 2109 | wk->assoc.capability = req->bss->capability; |
0c1ad2ca JB |
2110 | wk->assoc.wmm_used = bss->wmm_used; |
2111 | wk->assoc.supp_rates = bss->supp_rates; | |
2112 | wk->assoc.supp_rates_len = bss->supp_rates_len; | |
f679f65d JB |
2113 | wk->assoc.ht_information_ie = |
2114 | ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_INFORMATION); | |
63f170e0 | 2115 | |
ab13315a KV |
2116 | if (bss->wmm_used && bss->uapsd_supported && |
2117 | (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) { | |
2118 | wk->assoc.uapsd_used = true; | |
2119 | ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED; | |
2120 | } else { | |
2121 | wk->assoc.uapsd_used = false; | |
2122 | ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED; | |
2123 | } | |
2124 | ||
63f170e0 | 2125 | ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID); |
f679f65d JB |
2126 | memcpy(wk->assoc.ssid, ssid + 2, ssid[1]); |
2127 | wk->assoc.ssid_len = ssid[1]; | |
63f170e0 | 2128 | |
77fdaa12 | 2129 | if (req->prev_bssid) |
f679f65d | 2130 | memcpy(wk->assoc.prev_bssid, req->prev_bssid, ETH_ALEN); |
77fdaa12 | 2131 | |
f679f65d | 2132 | wk->type = IEEE80211_WORK_ASSOC; |
f679f65d | 2133 | wk->chan = req->bss->channel; |
af6b6374 JB |
2134 | wk->sdata = sdata; |
2135 | wk->done = ieee80211_assoc_done; | |
77fdaa12 JB |
2136 | |
2137 | if (req->use_mfp) { | |
2138 | ifmgd->mfp = IEEE80211_MFP_REQUIRED; | |
2139 | ifmgd->flags |= IEEE80211_STA_MFP_ENABLED; | |
2140 | } else { | |
2141 | ifmgd->mfp = IEEE80211_MFP_DISABLED; | |
2142 | ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED; | |
2143 | } | |
2144 | ||
2145 | if (req->crypto.control_port) | |
2146 | ifmgd->flags |= IEEE80211_STA_CONTROL_PORT; | |
2147 | else | |
2148 | ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT; | |
2149 | ||
af6b6374 JB |
2150 | ieee80211_add_work(wk); |
2151 | return 0; | |
f0706e82 JB |
2152 | } |
2153 | ||
77fdaa12 | 2154 | int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, |
667503dd JB |
2155 | struct cfg80211_deauth_request *req, |
2156 | void *cookie) | |
f0706e82 | 2157 | { |
af6b6374 | 2158 | struct ieee80211_local *local = sdata->local; |
46900298 | 2159 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
f679f65d | 2160 | struct ieee80211_work *wk; |
63f170e0 | 2161 | const u8 *bssid = req->bss->bssid; |
f0706e82 | 2162 | |
77fdaa12 JB |
2163 | mutex_lock(&ifmgd->mtx); |
2164 | ||
0c1ad2ca | 2165 | if (ifmgd->associated == req->bss) { |
77fdaa12 | 2166 | bssid = req->bss->bssid; |
e69e95db | 2167 | ieee80211_set_disassoc(sdata, true); |
af6b6374 JB |
2168 | mutex_unlock(&ifmgd->mtx); |
2169 | } else { | |
2170 | bool not_auth_yet = false; | |
f0706e82 | 2171 | |
a58ce43f | 2172 | mutex_unlock(&ifmgd->mtx); |
a58ce43f | 2173 | |
af6b6374 JB |
2174 | mutex_lock(&local->work_mtx); |
2175 | list_for_each_entry(wk, &local->work_list, list) { | |
29165e4c | 2176 | if (wk->sdata != sdata) |
af6b6374 | 2177 | continue; |
29165e4c JB |
2178 | |
2179 | if (wk->type != IEEE80211_WORK_DIRECT_PROBE && | |
79733a86 RC |
2180 | wk->type != IEEE80211_WORK_AUTH && |
2181 | wk->type != IEEE80211_WORK_ASSOC) | |
29165e4c JB |
2182 | continue; |
2183 | ||
af6b6374 JB |
2184 | if (memcmp(req->bss->bssid, wk->filter_ta, ETH_ALEN)) |
2185 | continue; | |
29165e4c JB |
2186 | |
2187 | not_auth_yet = wk->type == IEEE80211_WORK_DIRECT_PROBE; | |
2188 | list_del_rcu(&wk->list); | |
af6b6374 JB |
2189 | free_work(wk); |
2190 | break; | |
2191 | } | |
2192 | mutex_unlock(&local->work_mtx); | |
2193 | ||
2194 | /* | |
2195 | * If somebody requests authentication and we haven't | |
2196 | * sent out an auth frame yet there's no need to send | |
2197 | * out a deauth frame either. If the state was PROBE, | |
2198 | * then this is the case. If it's AUTH we have sent a | |
2199 | * frame, and if it's IDLE we have completed the auth | |
2200 | * process already. | |
2201 | */ | |
2202 | if (not_auth_yet) { | |
2203 | __cfg80211_auth_canceled(sdata->dev, bssid); | |
2204 | return 0; | |
2205 | } | |
2206 | } | |
77fdaa12 | 2207 | |
0ff71613 | 2208 | printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n", |
47846c9b | 2209 | sdata->name, bssid, req->reason_code); |
0ff71613 | 2210 | |
d5cdfacb JM |
2211 | ieee80211_send_deauth_disassoc(sdata, bssid, IEEE80211_STYPE_DEAUTH, |
2212 | req->reason_code, cookie, | |
2213 | !req->local_state_change); | |
f0706e82 | 2214 | |
bc83b681 JB |
2215 | ieee80211_recalc_idle(sdata->local); |
2216 | ||
f0706e82 JB |
2217 | return 0; |
2218 | } | |
84363e6e | 2219 | |
77fdaa12 | 2220 | int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata, |
667503dd JB |
2221 | struct cfg80211_disassoc_request *req, |
2222 | void *cookie) | |
9c6bd790 | 2223 | { |
77fdaa12 | 2224 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
e69e95db | 2225 | u8 bssid[ETH_ALEN]; |
9c6bd790 | 2226 | |
77fdaa12 | 2227 | mutex_lock(&ifmgd->mtx); |
10f644a4 | 2228 | |
8d8b261a JB |
2229 | /* |
2230 | * cfg80211 should catch this ... but it's racy since | |
2231 | * we can receive a disassoc frame, process it, hand it | |
2232 | * to cfg80211 while that's in a locked section already | |
2233 | * trying to tell us that the user wants to disconnect. | |
2234 | */ | |
0c1ad2ca | 2235 | if (ifmgd->associated != req->bss) { |
77fdaa12 JB |
2236 | mutex_unlock(&ifmgd->mtx); |
2237 | return -ENOLINK; | |
2238 | } | |
2239 | ||
0ff71613 | 2240 | printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n", |
47846c9b | 2241 | sdata->name, req->bss->bssid, req->reason_code); |
0ff71613 | 2242 | |
e69e95db JM |
2243 | memcpy(bssid, req->bss->bssid, ETH_ALEN); |
2244 | ieee80211_set_disassoc(sdata, false); | |
77fdaa12 JB |
2245 | |
2246 | mutex_unlock(&ifmgd->mtx); | |
10f644a4 | 2247 | |
77fdaa12 | 2248 | ieee80211_send_deauth_disassoc(sdata, req->bss->bssid, |
667503dd | 2249 | IEEE80211_STYPE_DISASSOC, req->reason_code, |
d5cdfacb | 2250 | cookie, !req->local_state_change); |
e69e95db | 2251 | sta_info_destroy_addr(sdata, bssid); |
bc83b681 JB |
2252 | |
2253 | ieee80211_recalc_idle(sdata->local); | |
2254 | ||
10f644a4 JB |
2255 | return 0; |
2256 | } | |
026331c4 JM |
2257 | |
2258 | int ieee80211_mgd_action(struct ieee80211_sub_if_data *sdata, | |
2259 | struct ieee80211_channel *chan, | |
2260 | enum nl80211_channel_type channel_type, | |
2261 | const u8 *buf, size_t len, u64 *cookie) | |
2262 | { | |
2263 | struct ieee80211_local *local = sdata->local; | |
2264 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | |
2265 | struct sk_buff *skb; | |
2266 | ||
2267 | /* Check that we are on the requested channel for transmission */ | |
2268 | if ((chan != local->tmp_channel || | |
2269 | channel_type != local->tmp_channel_type) && | |
2270 | (chan != local->oper_channel || | |
0aaffa9b | 2271 | channel_type != local->_oper_channel_type)) |
026331c4 JM |
2272 | return -EBUSY; |
2273 | ||
2274 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + len); | |
2275 | if (!skb) | |
2276 | return -ENOMEM; | |
2277 | skb_reserve(skb, local->hw.extra_tx_headroom); | |
2278 | ||
2279 | memcpy(skb_put(skb, len), buf, len); | |
2280 | ||
2281 | if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED)) | |
2282 | IEEE80211_SKB_CB(skb)->flags |= | |
2283 | IEEE80211_TX_INTFL_DONT_ENCRYPT; | |
2284 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX | | |
2285 | IEEE80211_TX_CTL_REQ_TX_STATUS; | |
2286 | skb->dev = sdata->dev; | |
2287 | ieee80211_tx_skb(sdata, skb); | |
2288 | ||
2289 | *cookie = (unsigned long) skb; | |
2290 | return 0; | |
2291 | } | |
a97c13c3 JO |
2292 | |
2293 | void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif, | |
2294 | enum nl80211_cqm_rssi_threshold_event rssi_event, | |
2295 | gfp_t gfp) | |
2296 | { | |
2297 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); | |
2298 | ||
b5878a2d JB |
2299 | trace_api_cqm_rssi_notify(sdata, rssi_event); |
2300 | ||
a97c13c3 JO |
2301 | cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp); |
2302 | } | |
2303 | EXPORT_SYMBOL(ieee80211_cqm_rssi_notify); |