cfg80211: no cookies in cfg80211_send_XXX()
[safe/jmp/linux-2.6] / net / mac80211 / mlme.c
1 /*
2  * BSS client mode implementation
3  * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
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
14 #include <linux/delay.h>
15 #include <linux/if_ether.h>
16 #include <linux/skbuff.h>
17 #include <linux/if_arp.h>
18 #include <linux/etherdevice.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/pm_qos_params.h>
21 #include <linux/crc32.h>
22 #include <net/mac80211.h>
23 #include <asm/unaligned.h>
24
25 #include "ieee80211_i.h"
26 #include "driver-ops.h"
27 #include "rate.h"
28 #include "led.h"
29
30 #define IEEE80211_AUTH_TIMEOUT (HZ / 5)
31 #define IEEE80211_AUTH_MAX_TRIES 3
32 #define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
33 #define IEEE80211_ASSOC_MAX_TRIES 3
34 #define IEEE80211_MAX_PROBE_TRIES 5
35
36 /*
37  * beacon loss detection timeout
38  * XXX: should depend on beacon interval
39  */
40 #define IEEE80211_BEACON_LOSS_TIME      (2 * HZ)
41 /*
42  * Time the connection can be idle before we probe
43  * it to see if we can still talk to the AP.
44  */
45 #define IEEE80211_CONNECTION_IDLE_TIME  (30 * HZ)
46 /*
47  * Time we wait for a probe response after sending
48  * a probe request because of beacon loss or for
49  * checking the connection still works.
50  */
51 #define IEEE80211_PROBE_WAIT            (HZ / 2)
52
53 #define TMR_RUNNING_TIMER       0
54 #define TMR_RUNNING_CHANSW      1
55
56 /*
57  * All cfg80211 functions have to be called outside a locked
58  * section so that they can acquire a lock themselves... This
59  * is much simpler than queuing up things in cfg80211, but we
60  * do need some indirection for that here.
61  */
62 enum rx_mgmt_action {
63         /* no action required */
64         RX_MGMT_NONE,
65
66         /* caller must call cfg80211_send_rx_auth() */
67         RX_MGMT_CFG80211_AUTH,
68
69         /* caller must call cfg80211_send_rx_assoc() */
70         RX_MGMT_CFG80211_ASSOC,
71
72         /* caller must call cfg80211_send_deauth() */
73         RX_MGMT_CFG80211_DEAUTH,
74
75         /* caller must call cfg80211_send_disassoc() */
76         RX_MGMT_CFG80211_DISASSOC,
77
78         /* caller must call cfg80211_auth_timeout() & free work */
79         RX_MGMT_CFG80211_AUTH_TO,
80
81         /* caller must call cfg80211_assoc_timeout() & free work */
82         RX_MGMT_CFG80211_ASSOC_TO,
83 };
84
85 /* utils */
86 static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
87 {
88         WARN_ON(!mutex_is_locked(&ifmgd->mtx));
89 }
90
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
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
120 static int ecw2cw(int ecw)
121 {
122         return (1 << ecw) - 1;
123 }
124
125 static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
126                                       struct ieee80211_supported_band *sband,
127                                       u32 *rates)
128 {
129         int i, j, count;
130         *rates = 0;
131         count = 0;
132         for (i = 0; i < bss->supp_rates_len; i++) {
133                 int rate = (bss->supp_rates[i] & 0x7F) * 5;
134
135                 for (j = 0; j < sband->n_bitrates; j++)
136                         if (sband->bitrates[j].bitrate == rate) {
137                                 *rates |= BIT(j);
138                                 count++;
139                                 break;
140                         }
141         }
142
143         return count;
144 }
145
146 /*
147  * ieee80211_enable_ht should be called only after the operating band
148  * has been determined as ht configuration depends on the hw's
149  * HT abilities for a specific band.
150  */
151 static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
152                                struct ieee80211_ht_info *hti,
153                                const u8 *bssid, u16 ap_ht_cap_flags)
154 {
155         struct ieee80211_local *local = sdata->local;
156         struct ieee80211_supported_band *sband;
157         struct sta_info *sta;
158         u32 changed = 0;
159         u16 ht_opmode;
160         bool enable_ht = true, ht_changed;
161         enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
162
163         sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
164
165         /* HT is not supported */
166         if (!sband->ht_cap.ht_supported)
167                 enable_ht = false;
168
169         /* check that channel matches the right operating channel */
170         if (local->hw.conf.channel->center_freq !=
171             ieee80211_channel_to_frequency(hti->control_chan))
172                 enable_ht = false;
173
174         if (enable_ht) {
175                 channel_type = NL80211_CHAN_HT20;
176
177                 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
178                     (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
179                     (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
180                         switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
181                         case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
182                                 if (!(local->hw.conf.channel->flags &
183                                     IEEE80211_CHAN_NO_HT40PLUS))
184                                         channel_type = NL80211_CHAN_HT40PLUS;
185                                 break;
186                         case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
187                                 if (!(local->hw.conf.channel->flags &
188                                     IEEE80211_CHAN_NO_HT40MINUS))
189                                         channel_type = NL80211_CHAN_HT40MINUS;
190                                 break;
191                         }
192                 }
193         }
194
195         ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
196                      channel_type != local->hw.conf.channel_type;
197
198         local->oper_channel_type = channel_type;
199
200         if (ht_changed) {
201                 /* channel_type change automatically detected */
202                 ieee80211_hw_config(local, 0);
203
204                 rcu_read_lock();
205                 sta = sta_info_get(local, bssid);
206                 if (sta)
207                         rate_control_rate_update(local, sband, sta,
208                                                  IEEE80211_RC_HT_CHANGED);
209                 rcu_read_unlock();
210         }
211
212         /* disable HT */
213         if (!enable_ht)
214                 return 0;
215
216         ht_opmode = le16_to_cpu(hti->operation_mode);
217
218         /* if bss configuration changed store the new one */
219         if (!sdata->ht_opmode_valid ||
220             sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
221                 changed |= BSS_CHANGED_HT;
222                 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
223                 sdata->ht_opmode_valid = true;
224         }
225
226         return changed;
227 }
228
229 /* frame sending functions */
230
231 static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
232                                  struct ieee80211_mgd_work *wk)
233 {
234         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
235         struct ieee80211_local *local = sdata->local;
236         struct sk_buff *skb;
237         struct ieee80211_mgmt *mgmt;
238         u8 *pos;
239         const u8 *ies, *ht_ie;
240         int i, len, count, rates_len, supp_rates_len;
241         u16 capab;
242         int wmm = 0;
243         struct ieee80211_supported_band *sband;
244         u32 rates = 0;
245
246         skb = dev_alloc_skb(local->hw.extra_tx_headroom +
247                             sizeof(*mgmt) + 200 + wk->ie_len +
248                             wk->ssid_len);
249         if (!skb) {
250                 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
251                        "frame\n", sdata->dev->name);
252                 return;
253         }
254         skb_reserve(skb, local->hw.extra_tx_headroom);
255
256         sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
257
258         capab = ifmgd->capab;
259
260         if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
261                 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
262                         capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
263                 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
264                         capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
265         }
266
267         if (wk->bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
268                 capab |= WLAN_CAPABILITY_PRIVACY;
269         if (wk->bss->wmm_used)
270                 wmm = 1;
271
272         /* get all rates supported by the device and the AP as
273          * some APs don't like getting a superset of their rates
274          * in the association request (e.g. D-Link DAP 1353 in
275          * b-only mode) */
276         rates_len = ieee80211_compatible_rates(wk->bss, sband, &rates);
277
278         if ((wk->bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
279             (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
280                 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
281
282         mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
283         memset(mgmt, 0, 24);
284         memcpy(mgmt->da, wk->bss->cbss.bssid, ETH_ALEN);
285         memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
286         memcpy(mgmt->bssid, wk->bss->cbss.bssid, ETH_ALEN);
287
288         if (!is_zero_ether_addr(wk->prev_bssid)) {
289                 skb_put(skb, 10);
290                 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
291                                                   IEEE80211_STYPE_REASSOC_REQ);
292                 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
293                 mgmt->u.reassoc_req.listen_interval =
294                                 cpu_to_le16(local->hw.conf.listen_interval);
295                 memcpy(mgmt->u.reassoc_req.current_ap, wk->prev_bssid,
296                        ETH_ALEN);
297         } else {
298                 skb_put(skb, 4);
299                 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
300                                                   IEEE80211_STYPE_ASSOC_REQ);
301                 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
302                 mgmt->u.assoc_req.listen_interval =
303                                 cpu_to_le16(local->hw.conf.listen_interval);
304         }
305
306         /* SSID */
307         ies = pos = skb_put(skb, 2 + wk->ssid_len);
308         *pos++ = WLAN_EID_SSID;
309         *pos++ = wk->ssid_len;
310         memcpy(pos, wk->ssid, wk->ssid_len);
311
312         /* add all rates which were marked to be used above */
313         supp_rates_len = rates_len;
314         if (supp_rates_len > 8)
315                 supp_rates_len = 8;
316
317         len = sband->n_bitrates;
318         pos = skb_put(skb, supp_rates_len + 2);
319         *pos++ = WLAN_EID_SUPP_RATES;
320         *pos++ = supp_rates_len;
321
322         count = 0;
323         for (i = 0; i < sband->n_bitrates; i++) {
324                 if (BIT(i) & rates) {
325                         int rate = sband->bitrates[i].bitrate;
326                         *pos++ = (u8) (rate / 5);
327                         if (++count == 8)
328                                 break;
329                 }
330         }
331
332         if (rates_len > count) {
333                 pos = skb_put(skb, rates_len - count + 2);
334                 *pos++ = WLAN_EID_EXT_SUPP_RATES;
335                 *pos++ = rates_len - count;
336
337                 for (i++; i < sband->n_bitrates; i++) {
338                         if (BIT(i) & rates) {
339                                 int rate = sband->bitrates[i].bitrate;
340                                 *pos++ = (u8) (rate / 5);
341                         }
342                 }
343         }
344
345         if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
346                 /* 1. power capabilities */
347                 pos = skb_put(skb, 4);
348                 *pos++ = WLAN_EID_PWR_CAPABILITY;
349                 *pos++ = 2;
350                 *pos++ = 0; /* min tx power */
351                 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
352
353                 /* 2. supported channels */
354                 /* TODO: get this in reg domain format */
355                 pos = skb_put(skb, 2 * sband->n_channels + 2);
356                 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
357                 *pos++ = 2 * sband->n_channels;
358                 for (i = 0; i < sband->n_channels; i++) {
359                         *pos++ = ieee80211_frequency_to_channel(
360                                         sband->channels[i].center_freq);
361                         *pos++ = 1; /* one channel in the subband*/
362                 }
363         }
364
365         if (wk->ie_len && wk->ie) {
366                 pos = skb_put(skb, wk->ie_len);
367                 memcpy(pos, wk->ie, wk->ie_len);
368         }
369
370         if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
371                 pos = skb_put(skb, 9);
372                 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
373                 *pos++ = 7; /* len */
374                 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
375                 *pos++ = 0x50;
376                 *pos++ = 0xf2;
377                 *pos++ = 2; /* WME */
378                 *pos++ = 0; /* WME info */
379                 *pos++ = 1; /* WME ver */
380                 *pos++ = 0;
381         }
382
383         /* wmm support is a must to HT */
384         /*
385          * IEEE802.11n does not allow TKIP/WEP as pairwise
386          * ciphers in HT mode. We still associate in non-ht
387          * mode (11a/b/g) if any one of these ciphers is
388          * configured as pairwise.
389          */
390         if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
391             sband->ht_cap.ht_supported &&
392             (ht_ie = ieee80211_bss_get_ie(&wk->bss->cbss, WLAN_EID_HT_INFORMATION)) &&
393             ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
394             (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))) {
395                 struct ieee80211_ht_info *ht_info =
396                         (struct ieee80211_ht_info *)(ht_ie + 2);
397                 u16 cap = sband->ht_cap.cap;
398                 __le16 tmp;
399                 u32 flags = local->hw.conf.channel->flags;
400
401                 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
402                 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
403                         if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
404                                 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
405                                 cap &= ~IEEE80211_HT_CAP_SGI_40;
406                         }
407                         break;
408                 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
409                         if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
410                                 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
411                                 cap &= ~IEEE80211_HT_CAP_SGI_40;
412                         }
413                         break;
414                 }
415
416                 tmp = cpu_to_le16(cap);
417                 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
418                 *pos++ = WLAN_EID_HT_CAPABILITY;
419                 *pos++ = sizeof(struct ieee80211_ht_cap);
420                 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
421                 memcpy(pos, &tmp, sizeof(u16));
422                 pos += sizeof(u16);
423                 /* TODO: needs a define here for << 2 */
424                 *pos++ = sband->ht_cap.ampdu_factor |
425                          (sband->ht_cap.ampdu_density << 2);
426                 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
427         }
428
429         ieee80211_tx_skb(sdata, skb, 0);
430 }
431
432
433 static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
434                                            const u8 *bssid, u16 stype, u16 reason,
435                                            void *cookie)
436 {
437         struct ieee80211_local *local = sdata->local;
438         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
439         struct sk_buff *skb;
440         struct ieee80211_mgmt *mgmt;
441
442         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
443         if (!skb) {
444                 printk(KERN_DEBUG "%s: failed to allocate buffer for "
445                        "deauth/disassoc frame\n", sdata->dev->name);
446                 return;
447         }
448         skb_reserve(skb, local->hw.extra_tx_headroom);
449
450         mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
451         memset(mgmt, 0, 24);
452         memcpy(mgmt->da, bssid, ETH_ALEN);
453         memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
454         memcpy(mgmt->bssid, bssid, ETH_ALEN);
455         mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
456         skb_put(skb, 2);
457         /* u.deauth.reason_code == u.disassoc.reason_code */
458         mgmt->u.deauth.reason_code = cpu_to_le16(reason);
459
460         if (stype == IEEE80211_STYPE_DEAUTH)
461                 if (cookie)
462                         __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
463                 else
464                         cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
465         else
466                 if (cookie)
467                         __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
468                 else
469                         cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
470         ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
471 }
472
473 void ieee80211_send_pspoll(struct ieee80211_local *local,
474                            struct ieee80211_sub_if_data *sdata)
475 {
476         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
477         struct ieee80211_pspoll *pspoll;
478         struct sk_buff *skb;
479         u16 fc;
480
481         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
482         if (!skb) {
483                 printk(KERN_DEBUG "%s: failed to allocate buffer for "
484                        "pspoll frame\n", sdata->dev->name);
485                 return;
486         }
487         skb_reserve(skb, local->hw.extra_tx_headroom);
488
489         pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
490         memset(pspoll, 0, sizeof(*pspoll));
491         fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
492         pspoll->frame_control = cpu_to_le16(fc);
493         pspoll->aid = cpu_to_le16(ifmgd->aid);
494
495         /* aid in PS-Poll has its two MSBs each set to 1 */
496         pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
497
498         memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
499         memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
500
501         ieee80211_tx_skb(sdata, skb, 0);
502 }
503
504 void ieee80211_send_nullfunc(struct ieee80211_local *local,
505                              struct ieee80211_sub_if_data *sdata,
506                              int powersave)
507 {
508         struct sk_buff *skb;
509         struct ieee80211_hdr *nullfunc;
510         __le16 fc;
511
512         if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
513                 return;
514
515         skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
516         if (!skb) {
517                 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
518                        "frame\n", sdata->dev->name);
519                 return;
520         }
521         skb_reserve(skb, local->hw.extra_tx_headroom);
522
523         nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
524         memset(nullfunc, 0, 24);
525         fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
526                          IEEE80211_FCTL_TODS);
527         if (powersave)
528                 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
529         nullfunc->frame_control = fc;
530         memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
531         memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
532         memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
533
534         ieee80211_tx_skb(sdata, skb, 0);
535 }
536
537 /* spectrum management related things */
538 static void ieee80211_chswitch_work(struct work_struct *work)
539 {
540         struct ieee80211_sub_if_data *sdata =
541                 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
542         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
543
544         if (!netif_running(sdata->dev))
545                 return;
546
547         mutex_lock(&ifmgd->mtx);
548         if (!ifmgd->associated)
549                 goto out;
550
551         sdata->local->oper_channel = sdata->local->csa_channel;
552         ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
553
554         /* XXX: shouldn't really modify cfg80211-owned data! */
555         ifmgd->associated->cbss.channel = sdata->local->oper_channel;
556
557         ieee80211_wake_queues_by_reason(&sdata->local->hw,
558                                         IEEE80211_QUEUE_STOP_REASON_CSA);
559  out:
560         ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
561         mutex_unlock(&ifmgd->mtx);
562 }
563
564 static void ieee80211_chswitch_timer(unsigned long data)
565 {
566         struct ieee80211_sub_if_data *sdata =
567                 (struct ieee80211_sub_if_data *) data;
568         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
569
570         if (sdata->local->quiescing) {
571                 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
572                 return;
573         }
574
575         ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
576 }
577
578 void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
579                                       struct ieee80211_channel_sw_ie *sw_elem,
580                                       struct ieee80211_bss *bss)
581 {
582         struct ieee80211_channel *new_ch;
583         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
584         int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
585
586         ASSERT_MGD_MTX(ifmgd);
587
588         if (!ifmgd->associated)
589                 return;
590
591         if (sdata->local->scanning)
592                 return;
593
594         /* Disregard subsequent beacons if we are already running a timer
595            processing a CSA */
596
597         if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
598                 return;
599
600         new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
601         if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
602                 return;
603
604         sdata->local->csa_channel = new_ch;
605
606         if (sw_elem->count <= 1) {
607                 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
608         } else {
609                 ieee80211_stop_queues_by_reason(&sdata->local->hw,
610                                         IEEE80211_QUEUE_STOP_REASON_CSA);
611                 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
612                 mod_timer(&ifmgd->chswitch_timer,
613                           jiffies +
614                           msecs_to_jiffies(sw_elem->count *
615                                            bss->cbss.beacon_interval));
616         }
617 }
618
619 static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
620                                         u16 capab_info, u8 *pwr_constr_elem,
621                                         u8 pwr_constr_elem_len)
622 {
623         struct ieee80211_conf *conf = &sdata->local->hw.conf;
624
625         if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
626                 return;
627
628         /* Power constraint IE length should be 1 octet */
629         if (pwr_constr_elem_len != 1)
630                 return;
631
632         if ((*pwr_constr_elem <= conf->channel->max_power) &&
633             (*pwr_constr_elem != sdata->local->power_constr_level)) {
634                 sdata->local->power_constr_level = *pwr_constr_elem;
635                 ieee80211_hw_config(sdata->local, 0);
636         }
637 }
638
639 /* powersave */
640 static void ieee80211_enable_ps(struct ieee80211_local *local,
641                                 struct ieee80211_sub_if_data *sdata)
642 {
643         struct ieee80211_conf *conf = &local->hw.conf;
644
645         /*
646          * If we are scanning right now then the parameters will
647          * take effect when scan finishes.
648          */
649         if (local->scanning)
650                 return;
651
652         if (conf->dynamic_ps_timeout > 0 &&
653             !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
654                 mod_timer(&local->dynamic_ps_timer, jiffies +
655                           msecs_to_jiffies(conf->dynamic_ps_timeout));
656         } else {
657                 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
658                         ieee80211_send_nullfunc(local, sdata, 1);
659                 conf->flags |= IEEE80211_CONF_PS;
660                 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
661         }
662 }
663
664 static void ieee80211_change_ps(struct ieee80211_local *local)
665 {
666         struct ieee80211_conf *conf = &local->hw.conf;
667
668         if (local->ps_sdata) {
669                 ieee80211_enable_ps(local, local->ps_sdata);
670         } else if (conf->flags & IEEE80211_CONF_PS) {
671                 conf->flags &= ~IEEE80211_CONF_PS;
672                 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
673                 del_timer_sync(&local->dynamic_ps_timer);
674                 cancel_work_sync(&local->dynamic_ps_enable_work);
675         }
676 }
677
678 /* need to hold RTNL or interface lock */
679 void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
680 {
681         struct ieee80211_sub_if_data *sdata, *found = NULL;
682         int count = 0;
683
684         if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
685                 local->ps_sdata = NULL;
686                 return;
687         }
688
689         list_for_each_entry(sdata, &local->interfaces, list) {
690                 if (!netif_running(sdata->dev))
691                         continue;
692                 if (sdata->vif.type != NL80211_IFTYPE_STATION)
693                         continue;
694                 found = sdata;
695                 count++;
696         }
697
698         if (count == 1 && found->u.mgd.powersave &&
699             found->u.mgd.associated && list_empty(&found->u.mgd.work_list) &&
700             !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
701                                     IEEE80211_STA_CONNECTION_POLL))) {
702                 s32 beaconint_us;
703
704                 if (latency < 0)
705                         latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
706
707                 beaconint_us = ieee80211_tu_to_usec(
708                                         found->vif.bss_conf.beacon_int);
709
710                 if (beaconint_us > latency) {
711                         local->ps_sdata = NULL;
712                 } else {
713                         u8 dtimper = found->vif.bss_conf.dtim_period;
714                         int maxslp = 1;
715
716                         if (dtimper > 1)
717                                 maxslp = min_t(int, dtimper,
718                                                     latency / beaconint_us);
719
720                         local->hw.conf.max_sleep_period = maxslp;
721                         local->ps_sdata = found;
722                 }
723         } else {
724                 local->ps_sdata = NULL;
725         }
726
727         ieee80211_change_ps(local);
728 }
729
730 void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
731 {
732         struct ieee80211_local *local =
733                 container_of(work, struct ieee80211_local,
734                              dynamic_ps_disable_work);
735
736         if (local->hw.conf.flags & IEEE80211_CONF_PS) {
737                 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
738                 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
739         }
740
741         ieee80211_wake_queues_by_reason(&local->hw,
742                                         IEEE80211_QUEUE_STOP_REASON_PS);
743 }
744
745 void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
746 {
747         struct ieee80211_local *local =
748                 container_of(work, struct ieee80211_local,
749                              dynamic_ps_enable_work);
750         struct ieee80211_sub_if_data *sdata = local->ps_sdata;
751
752         /* can only happen when PS was just disabled anyway */
753         if (!sdata)
754                 return;
755
756         if (local->hw.conf.flags & IEEE80211_CONF_PS)
757                 return;
758
759         if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
760                 ieee80211_send_nullfunc(local, sdata, 1);
761
762         local->hw.conf.flags |= IEEE80211_CONF_PS;
763         ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
764 }
765
766 void ieee80211_dynamic_ps_timer(unsigned long data)
767 {
768         struct ieee80211_local *local = (void *) data;
769
770         if (local->quiescing || local->suspended)
771                 return;
772
773         ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
774 }
775
776 /* MLME */
777 static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
778                                      struct ieee80211_if_managed *ifmgd,
779                                      u8 *wmm_param, size_t wmm_param_len)
780 {
781         struct ieee80211_tx_queue_params params;
782         size_t left;
783         int count;
784         u8 *pos;
785
786         if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
787                 return;
788
789         if (!wmm_param)
790                 return;
791
792         if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
793                 return;
794         count = wmm_param[6] & 0x0f;
795         if (count == ifmgd->wmm_last_param_set)
796                 return;
797         ifmgd->wmm_last_param_set = count;
798
799         pos = wmm_param + 8;
800         left = wmm_param_len - 8;
801
802         memset(&params, 0, sizeof(params));
803
804         local->wmm_acm = 0;
805         for (; left >= 4; left -= 4, pos += 4) {
806                 int aci = (pos[0] >> 5) & 0x03;
807                 int acm = (pos[0] >> 4) & 0x01;
808                 int queue;
809
810                 switch (aci) {
811                 case 1: /* AC_BK */
812                         queue = 3;
813                         if (acm)
814                                 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
815                         break;
816                 case 2: /* AC_VI */
817                         queue = 1;
818                         if (acm)
819                                 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
820                         break;
821                 case 3: /* AC_VO */
822                         queue = 0;
823                         if (acm)
824                                 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
825                         break;
826                 case 0: /* AC_BE */
827                 default:
828                         queue = 2;
829                         if (acm)
830                                 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
831                         break;
832                 }
833
834                 params.aifs = pos[0] & 0x0f;
835                 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
836                 params.cw_min = ecw2cw(pos[1] & 0x0f);
837                 params.txop = get_unaligned_le16(pos + 2);
838 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
839                 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
840                        "cWmin=%d cWmax=%d txop=%d\n",
841                        wiphy_name(local->hw.wiphy), queue, aci, acm,
842                        params.aifs, params.cw_min, params.cw_max, params.txop);
843 #endif
844                 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
845                         printk(KERN_DEBUG "%s: failed to set TX queue "
846                                "parameters for queue %d\n",
847                                wiphy_name(local->hw.wiphy), queue);
848         }
849 }
850
851 static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
852                                            u16 capab, bool erp_valid, u8 erp)
853 {
854         struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
855         u32 changed = 0;
856         bool use_protection;
857         bool use_short_preamble;
858         bool use_short_slot;
859
860         if (erp_valid) {
861                 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
862                 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
863         } else {
864                 use_protection = false;
865                 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
866         }
867
868         use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
869
870         if (use_protection != bss_conf->use_cts_prot) {
871                 bss_conf->use_cts_prot = use_protection;
872                 changed |= BSS_CHANGED_ERP_CTS_PROT;
873         }
874
875         if (use_short_preamble != bss_conf->use_short_preamble) {
876                 bss_conf->use_short_preamble = use_short_preamble;
877                 changed |= BSS_CHANGED_ERP_PREAMBLE;
878         }
879
880         if (use_short_slot != bss_conf->use_short_slot) {
881                 bss_conf->use_short_slot = use_short_slot;
882                 changed |= BSS_CHANGED_ERP_SLOT;
883         }
884
885         return changed;
886 }
887
888 static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
889                                      struct ieee80211_mgd_work *wk,
890                                      u32 bss_info_changed)
891 {
892         struct ieee80211_local *local = sdata->local;
893         struct ieee80211_bss *bss = wk->bss;
894
895         bss_info_changed |= BSS_CHANGED_ASSOC;
896         /* set timing information */
897         sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
898         sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
899         sdata->vif.bss_conf.dtim_period = bss->dtim_period;
900
901         bss_info_changed |= BSS_CHANGED_BEACON_INT;
902         bss_info_changed |= ieee80211_handle_bss_capability(sdata,
903                 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
904
905         sdata->u.mgd.associated = bss;
906         sdata->u.mgd.old_associate_work = wk;
907         memcpy(sdata->u.mgd.bssid, bss->cbss.bssid, ETH_ALEN);
908
909         /* just to be sure */
910         sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
911                                 IEEE80211_STA_BEACON_POLL);
912
913         ieee80211_led_assoc(local, 1);
914
915         sdata->vif.bss_conf.assoc = 1;
916         /*
917          * For now just always ask the driver to update the basic rateset
918          * when we have associated, we aren't checking whether it actually
919          * changed or not.
920          */
921         bss_info_changed |= BSS_CHANGED_BASIC_RATES;
922
923         /* And the BSSID changed - we're associated now */
924         bss_info_changed |= BSS_CHANGED_BSSID;
925
926         ieee80211_bss_info_change_notify(sdata, bss_info_changed);
927
928         mutex_lock(&local->iflist_mtx);
929         ieee80211_recalc_ps(local, -1);
930         mutex_unlock(&local->iflist_mtx);
931
932         netif_tx_start_all_queues(sdata->dev);
933         netif_carrier_on(sdata->dev);
934 }
935
936 static enum rx_mgmt_action __must_check
937 ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
938                        struct ieee80211_mgd_work *wk)
939 {
940         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
941         struct ieee80211_local *local = sdata->local;
942
943         wk->tries++;
944         if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
945                 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
946                        sdata->dev->name, wk->bss->cbss.bssid);
947
948                 /*
949                  * Most likely AP is not in the range so remove the
950                  * bss struct for that AP.
951                  */
952                 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
953
954                 /*
955                  * We might have a pending scan which had no chance to run yet
956                  * due to work needing to be done. Hence, queue the STAs work
957                  * again for that.
958                  */
959                 ieee80211_queue_work(&local->hw, &ifmgd->work);
960                 return RX_MGMT_CFG80211_AUTH_TO;
961         }
962
963         printk(KERN_DEBUG "%s: direct probe to AP %pM (try %d)\n",
964                         sdata->dev->name, wk->bss->cbss.bssid,
965                         wk->tries);
966
967         /*
968          * Direct probe is sent to broadcast address as some APs
969          * will not answer to direct packet in unassociated state.
970          */
971         ieee80211_send_probe_req(sdata, NULL, wk->ssid, wk->ssid_len, NULL, 0);
972
973         wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
974         run_again(ifmgd, wk->timeout);
975
976         return RX_MGMT_NONE;
977 }
978
979
980 static enum rx_mgmt_action __must_check
981 ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
982                        struct ieee80211_mgd_work *wk)
983 {
984         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
985         struct ieee80211_local *local = sdata->local;
986
987         wk->tries++;
988         if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
989                 printk(KERN_DEBUG "%s: authentication with AP %pM"
990                        " timed out\n",
991                        sdata->dev->name, wk->bss->cbss.bssid);
992
993                 /*
994                  * Most likely AP is not in the range so remove the
995                  * bss struct for that AP.
996                  */
997                 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
998
999                 /*
1000                  * We might have a pending scan which had no chance to run yet
1001                  * due to work needing to be done. Hence, queue the STAs work
1002                  * again for that.
1003                  */
1004                 ieee80211_queue_work(&local->hw, &ifmgd->work);
1005                 return RX_MGMT_CFG80211_AUTH_TO;
1006         }
1007
1008         printk(KERN_DEBUG "%s: authenticate with AP %pM (try %d)\n",
1009                sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
1010
1011         ieee80211_send_auth(sdata, 1, wk->auth_alg, wk->ie, wk->ie_len,
1012                             wk->bss->cbss.bssid, NULL, 0, 0);
1013         wk->auth_transaction = 2;
1014
1015         wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
1016         run_again(ifmgd, wk->timeout);
1017
1018         return RX_MGMT_NONE;
1019 }
1020
1021 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
1022                                    bool deauth)
1023 {
1024         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1025         struct ieee80211_local *local = sdata->local;
1026         struct sta_info *sta;
1027         u32 changed = 0, config_changed = 0;
1028         u8 bssid[ETH_ALEN];
1029
1030         ASSERT_MGD_MTX(ifmgd);
1031
1032         if (WARN_ON(!ifmgd->associated))
1033                 return;
1034
1035         memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
1036
1037         ifmgd->associated = NULL;
1038         memset(ifmgd->bssid, 0, ETH_ALEN);
1039
1040         if (deauth) {
1041                 kfree(ifmgd->old_associate_work);
1042                 ifmgd->old_associate_work = NULL;
1043         } else {
1044                 struct ieee80211_mgd_work *wk = ifmgd->old_associate_work;
1045
1046                 wk->state = IEEE80211_MGD_STATE_IDLE;
1047                 list_add(&wk->list, &ifmgd->work_list);
1048         }
1049
1050         /*
1051          * we need to commit the associated = NULL change because the
1052          * scan code uses that to determine whether this iface should
1053          * go to/wake up from powersave or not -- and could otherwise
1054          * wake the queues erroneously.
1055          */
1056         smp_mb();
1057
1058         /*
1059          * Thus, we can only afterwards stop the queues -- to account
1060          * for the case where another CPU is finishing a scan at this
1061          * time -- we don't want the scan code to enable queues.
1062          */
1063
1064         netif_tx_stop_all_queues(sdata->dev);
1065         netif_carrier_off(sdata->dev);
1066
1067         rcu_read_lock();
1068         sta = sta_info_get(local, bssid);
1069         if (sta)
1070                 ieee80211_sta_tear_down_BA_sessions(sta);
1071         rcu_read_unlock();
1072
1073         changed |= ieee80211_reset_erp_info(sdata);
1074
1075         ieee80211_led_assoc(local, 0);
1076         changed |= BSS_CHANGED_ASSOC;
1077         sdata->vif.bss_conf.assoc = false;
1078
1079         ieee80211_set_wmm_default(sdata);
1080
1081         ieee80211_recalc_idle(local);
1082
1083         /* channel(_type) changes are handled by ieee80211_hw_config */
1084         local->oper_channel_type = NL80211_CHAN_NO_HT;
1085
1086         /* on the next assoc, re-program HT parameters */
1087         sdata->ht_opmode_valid = false;
1088
1089         local->power_constr_level = 0;
1090
1091         del_timer_sync(&local->dynamic_ps_timer);
1092         cancel_work_sync(&local->dynamic_ps_enable_work);
1093
1094         if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1095                 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1096                 config_changed |= IEEE80211_CONF_CHANGE_PS;
1097         }
1098
1099         ieee80211_hw_config(local, config_changed);
1100
1101         /* And the BSSID changed -- not very interesting here */
1102         changed |= BSS_CHANGED_BSSID;
1103         ieee80211_bss_info_change_notify(sdata, changed);
1104
1105         rcu_read_lock();
1106
1107         sta = sta_info_get(local, bssid);
1108         if (!sta) {
1109                 rcu_read_unlock();
1110                 return;
1111         }
1112
1113         sta_info_unlink(&sta);
1114
1115         rcu_read_unlock();
1116
1117         sta_info_destroy(sta);
1118 }
1119
1120 static enum rx_mgmt_action __must_check
1121 ieee80211_associate(struct ieee80211_sub_if_data *sdata,
1122                     struct ieee80211_mgd_work *wk)
1123 {
1124         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1125         struct ieee80211_local *local = sdata->local;
1126
1127         wk->tries++;
1128         if (wk->tries > IEEE80211_ASSOC_MAX_TRIES) {
1129                 printk(KERN_DEBUG "%s: association with AP %pM"
1130                        " timed out\n",
1131                        sdata->dev->name, wk->bss->cbss.bssid);
1132
1133                 /*
1134                  * Most likely AP is not in the range so remove the
1135                  * bss struct for that AP.
1136                  */
1137                 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
1138
1139                 /*
1140                  * We might have a pending scan which had no chance to run yet
1141                  * due to work needing to be done. Hence, queue the STAs work
1142                  * again for that.
1143                  */
1144                 ieee80211_queue_work(&local->hw, &ifmgd->work);
1145                 return RX_MGMT_CFG80211_ASSOC_TO;
1146         }
1147
1148         printk(KERN_DEBUG "%s: associate with AP %pM (try %d)\n",
1149                sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
1150         ieee80211_send_assoc(sdata, wk);
1151
1152         wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
1153         run_again(ifmgd, wk->timeout);
1154
1155         return RX_MGMT_NONE;
1156 }
1157
1158 void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1159                              struct ieee80211_hdr *hdr)
1160 {
1161         /*
1162          * We can postpone the mgd.timer whenever receiving unicast frames
1163          * from AP because we know that the connection is working both ways
1164          * at that time. But multicast frames (and hence also beacons) must
1165          * be ignored here, because we need to trigger the timer during
1166          * data idle periods for sending the periodic probe request to the
1167          * AP we're connected to.
1168          */
1169         if (is_multicast_ether_addr(hdr->addr1))
1170                 return;
1171
1172         mod_timer(&sdata->u.mgd.conn_mon_timer,
1173                   round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
1174 }
1175
1176 static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1177 {
1178         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1179         const u8 *ssid;
1180
1181         ssid = ieee80211_bss_get_ie(&ifmgd->associated->cbss, WLAN_EID_SSID);
1182         ieee80211_send_probe_req(sdata, ifmgd->associated->cbss.bssid,
1183                                  ssid + 2, ssid[1], NULL, 0);
1184
1185         ifmgd->probe_send_count++;
1186         ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
1187         run_again(ifmgd, ifmgd->probe_timeout);
1188 }
1189
1190 static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1191                                    bool beacon)
1192 {
1193         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1194         bool already = false;
1195
1196         if (!netif_running(sdata->dev))
1197                 return;
1198
1199         if (sdata->local->scanning)
1200                 return;
1201
1202         mutex_lock(&ifmgd->mtx);
1203
1204         if (!ifmgd->associated)
1205                 goto out;
1206
1207 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1208         if (beacon && net_ratelimit())
1209                 printk(KERN_DEBUG "%s: detected beacon loss from AP "
1210                        "- sending probe request\n", sdata->dev->name);
1211 #endif
1212
1213         /*
1214          * The driver/our work has already reported this event or the
1215          * connection monitoring has kicked in and we have already sent
1216          * a probe request. Or maybe the AP died and the driver keeps
1217          * reporting until we disassociate...
1218          *
1219          * In either case we have to ignore the current call to this
1220          * function (except for setting the correct probe reason bit)
1221          * because otherwise we would reset the timer every time and
1222          * never check whether we received a probe response!
1223          */
1224         if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1225                             IEEE80211_STA_CONNECTION_POLL))
1226                 already = true;
1227
1228         if (beacon)
1229                 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1230         else
1231                 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1232
1233         if (already)
1234                 goto out;
1235
1236         mutex_lock(&sdata->local->iflist_mtx);
1237         ieee80211_recalc_ps(sdata->local, -1);
1238         mutex_unlock(&sdata->local->iflist_mtx);
1239
1240         ifmgd->probe_send_count = 0;
1241         ieee80211_mgd_probe_ap_send(sdata);
1242  out:
1243         mutex_unlock(&ifmgd->mtx);
1244 }
1245
1246 void ieee80211_beacon_loss_work(struct work_struct *work)
1247 {
1248         struct ieee80211_sub_if_data *sdata =
1249                 container_of(work, struct ieee80211_sub_if_data,
1250                              u.mgd.beacon_loss_work);
1251
1252         ieee80211_mgd_probe_ap(sdata, true);
1253 }
1254
1255 void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1256 {
1257         struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1258
1259         ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
1260 }
1261 EXPORT_SYMBOL(ieee80211_beacon_loss);
1262
1263 static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
1264                                      struct ieee80211_mgd_work *wk)
1265 {
1266         wk->state = IEEE80211_MGD_STATE_IDLE;
1267         printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
1268 }
1269
1270
1271 static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
1272                                      struct ieee80211_mgd_work *wk,
1273                                      struct ieee80211_mgmt *mgmt,
1274                                      size_t len)
1275 {
1276         u8 *pos;
1277         struct ieee802_11_elems elems;
1278
1279         pos = mgmt->u.auth.variable;
1280         ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1281         if (!elems.challenge)
1282                 return;
1283         ieee80211_send_auth(sdata, 3, wk->auth_alg,
1284                             elems.challenge - 2, elems.challenge_len + 2,
1285                             wk->bss->cbss.bssid,
1286                             wk->key, wk->key_len, wk->key_idx);
1287         wk->auth_transaction = 4;
1288 }
1289
1290 static enum rx_mgmt_action __must_check
1291 ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1292                        struct ieee80211_mgd_work *wk,
1293                        struct ieee80211_mgmt *mgmt, size_t len)
1294 {
1295         u16 auth_alg, auth_transaction, status_code;
1296
1297         if (wk->state != IEEE80211_MGD_STATE_AUTH)
1298                 return RX_MGMT_NONE;
1299
1300         if (len < 24 + 6)
1301                 return RX_MGMT_NONE;
1302
1303         if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1304                 return RX_MGMT_NONE;
1305
1306         if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1307                 return RX_MGMT_NONE;
1308
1309         auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1310         auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1311         status_code = le16_to_cpu(mgmt->u.auth.status_code);
1312
1313         if (auth_alg != wk->auth_alg ||
1314             auth_transaction != wk->auth_transaction)
1315                 return RX_MGMT_NONE;
1316
1317         if (status_code != WLAN_STATUS_SUCCESS) {
1318                 list_del(&wk->list);
1319                 kfree(wk);
1320                 return RX_MGMT_CFG80211_AUTH;
1321         }
1322
1323         switch (wk->auth_alg) {
1324         case WLAN_AUTH_OPEN:
1325         case WLAN_AUTH_LEAP:
1326         case WLAN_AUTH_FT:
1327                 ieee80211_auth_completed(sdata, wk);
1328                 return RX_MGMT_CFG80211_AUTH;
1329         case WLAN_AUTH_SHARED_KEY:
1330                 if (wk->auth_transaction == 4) {
1331                         ieee80211_auth_completed(sdata, wk);
1332                         return RX_MGMT_CFG80211_AUTH;
1333                 } else
1334                         ieee80211_auth_challenge(sdata, wk, mgmt, len);
1335                 break;
1336         }
1337
1338         return RX_MGMT_NONE;
1339 }
1340
1341
1342 static enum rx_mgmt_action __must_check
1343 ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1344                          struct ieee80211_mgd_work *wk,
1345                          struct ieee80211_mgmt *mgmt, size_t len)
1346 {
1347         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1348         const u8 *bssid = NULL;
1349         u16 reason_code;
1350
1351         if (len < 24 + 2)
1352                 return RX_MGMT_NONE;
1353
1354         ASSERT_MGD_MTX(ifmgd);
1355
1356         if (wk)
1357                 bssid = wk->bss->cbss.bssid;
1358         else
1359                 bssid = ifmgd->associated->cbss.bssid;
1360
1361         reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1362
1363         printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
1364                         sdata->dev->name, bssid, reason_code);
1365
1366         if (!wk) {
1367                 ieee80211_set_disassoc(sdata, true);
1368         } else {
1369                 list_del(&wk->list);
1370                 kfree(wk);
1371         }
1372
1373         return RX_MGMT_CFG80211_DEAUTH;
1374 }
1375
1376
1377 static enum rx_mgmt_action __must_check
1378 ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1379                            struct ieee80211_mgmt *mgmt, size_t len)
1380 {
1381         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1382         u16 reason_code;
1383
1384         if (len < 24 + 2)
1385                 return RX_MGMT_NONE;
1386
1387         ASSERT_MGD_MTX(ifmgd);
1388
1389         if (WARN_ON(!ifmgd->associated))
1390                 return RX_MGMT_NONE;
1391
1392         if (WARN_ON(memcmp(ifmgd->associated->cbss.bssid, mgmt->sa, ETH_ALEN)))
1393                 return RX_MGMT_NONE;
1394
1395         reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1396
1397         printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
1398                         sdata->dev->name, mgmt->sa, reason_code);
1399
1400         ieee80211_set_disassoc(sdata, false);
1401         return RX_MGMT_CFG80211_DISASSOC;
1402 }
1403
1404
1405 static enum rx_mgmt_action __must_check
1406 ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1407                              struct ieee80211_mgd_work *wk,
1408                              struct ieee80211_mgmt *mgmt, size_t len,
1409                              bool reassoc)
1410 {
1411         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1412         struct ieee80211_local *local = sdata->local;
1413         struct ieee80211_supported_band *sband;
1414         struct sta_info *sta;
1415         u32 rates, basic_rates;
1416         u16 capab_info, status_code, aid;
1417         struct ieee802_11_elems elems;
1418         struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1419         u8 *pos;
1420         u32 changed = 0;
1421         int i, j;
1422         bool have_higher_than_11mbit = false, newsta = false;
1423         u16 ap_ht_cap_flags;
1424
1425         /*
1426          * AssocResp and ReassocResp have identical structure, so process both
1427          * of them in this function.
1428          */
1429
1430         if (len < 24 + 6)
1431                 return RX_MGMT_NONE;
1432
1433         if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1434                 return RX_MGMT_NONE;
1435
1436         capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1437         status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1438         aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
1439
1440         printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
1441                "status=%d aid=%d)\n",
1442                sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
1443                capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
1444
1445         pos = mgmt->u.assoc_resp.variable;
1446         ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1447
1448         if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
1449             elems.timeout_int && elems.timeout_int_len == 5 &&
1450             elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
1451                 u32 tu, ms;
1452                 tu = get_unaligned_le32(elems.timeout_int + 1);
1453                 ms = tu * 1024 / 1000;
1454                 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1455                        "comeback duration %u TU (%u ms)\n",
1456                        sdata->dev->name, tu, ms);
1457                 wk->timeout = jiffies + msecs_to_jiffies(ms);
1458                 if (ms > IEEE80211_ASSOC_TIMEOUT)
1459                         run_again(ifmgd, jiffies + msecs_to_jiffies(ms));
1460                 return RX_MGMT_NONE;
1461         }
1462
1463         if (status_code != WLAN_STATUS_SUCCESS) {
1464                 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
1465                        sdata->dev->name, status_code);
1466                 list_del(&wk->list);
1467                 kfree(wk);
1468                 return RX_MGMT_CFG80211_ASSOC;
1469         }
1470
1471         if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1472                 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
1473                        "set\n", sdata->dev->name, aid);
1474         aid &= ~(BIT(15) | BIT(14));
1475
1476         if (!elems.supp_rates) {
1477                 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
1478                        sdata->dev->name);
1479                 return RX_MGMT_NONE;
1480         }
1481
1482         printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
1483         ifmgd->aid = aid;
1484
1485         rcu_read_lock();
1486
1487         /* Add STA entry for the AP */
1488         sta = sta_info_get(local, wk->bss->cbss.bssid);
1489         if (!sta) {
1490                 newsta = true;
1491
1492                 rcu_read_unlock();
1493
1494                 sta = sta_info_alloc(sdata, wk->bss->cbss.bssid, GFP_KERNEL);
1495                 if (!sta) {
1496                         printk(KERN_DEBUG "%s: failed to alloc STA entry for"
1497                                " the AP\n", sdata->dev->name);
1498                         return RX_MGMT_NONE;
1499                 }
1500
1501                 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1502                                    WLAN_STA_ASSOC_AP);
1503                 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1504                         set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1505
1506                 rcu_read_lock();
1507         }
1508
1509         rates = 0;
1510         basic_rates = 0;
1511         sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1512
1513         for (i = 0; i < elems.supp_rates_len; i++) {
1514                 int rate = (elems.supp_rates[i] & 0x7f) * 5;
1515                 bool is_basic = !!(elems.supp_rates[i] & 0x80);
1516
1517                 if (rate > 110)
1518                         have_higher_than_11mbit = true;
1519
1520                 for (j = 0; j < sband->n_bitrates; j++) {
1521                         if (sband->bitrates[j].bitrate == rate) {
1522                                 rates |= BIT(j);
1523                                 if (is_basic)
1524                                         basic_rates |= BIT(j);
1525                                 break;
1526                         }
1527                 }
1528         }
1529
1530         for (i = 0; i < elems.ext_supp_rates_len; i++) {
1531                 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
1532                 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
1533
1534                 if (rate > 110)
1535                         have_higher_than_11mbit = true;
1536
1537                 for (j = 0; j < sband->n_bitrates; j++) {
1538                         if (sband->bitrates[j].bitrate == rate) {
1539                                 rates |= BIT(j);
1540                                 if (is_basic)
1541                                         basic_rates |= BIT(j);
1542                                 break;
1543                         }
1544                 }
1545         }
1546
1547         sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
1548         sdata->vif.bss_conf.basic_rates = basic_rates;
1549
1550         /* cf. IEEE 802.11 9.2.12 */
1551         if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1552             have_higher_than_11mbit)
1553                 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1554         else
1555                 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
1556
1557         if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
1558                 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1559                                 elems.ht_cap_elem, &sta->sta.ht_cap);
1560
1561         ap_ht_cap_flags = sta->sta.ht_cap.cap;
1562
1563         rate_control_rate_init(sta);
1564
1565         if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
1566                 set_sta_flags(sta, WLAN_STA_MFP);
1567
1568         if (elems.wmm_param)
1569                 set_sta_flags(sta, WLAN_STA_WME);
1570
1571         if (newsta) {
1572                 int err = sta_info_insert(sta);
1573                 if (err) {
1574                         printk(KERN_DEBUG "%s: failed to insert STA entry for"
1575                                " the AP (error %d)\n", sdata->dev->name, err);
1576                         rcu_read_unlock();
1577                         return RX_MGMT_NONE;
1578                 }
1579         }
1580
1581         rcu_read_unlock();
1582
1583         if (elems.wmm_param)
1584                 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1585                                          elems.wmm_param_len);
1586         else
1587                 ieee80211_set_wmm_default(sdata);
1588
1589         if (elems.ht_info_elem && elems.wmm_param &&
1590             (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
1591             !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
1592                 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1593                                                wk->bss->cbss.bssid,
1594                                                ap_ht_cap_flags);
1595
1596         /* delete work item -- must be before set_associated for PS */
1597         list_del(&wk->list);
1598
1599         /* set AID and assoc capability,
1600          * ieee80211_set_associated() will tell the driver */
1601         bss_conf->aid = aid;
1602         bss_conf->assoc_capability = capab_info;
1603         /* this will take ownership of wk */
1604         ieee80211_set_associated(sdata, wk, changed);
1605
1606         /*
1607          * Start timer to probe the connection to the AP now.
1608          * Also start the timer that will detect beacon loss.
1609          */
1610         ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1611         mod_beacon_timer(sdata);
1612
1613         return RX_MGMT_CFG80211_ASSOC;
1614 }
1615
1616
1617 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
1618                                   struct ieee80211_mgmt *mgmt,
1619                                   size_t len,
1620                                   struct ieee80211_rx_status *rx_status,
1621                                   struct ieee802_11_elems *elems,
1622                                   bool beacon)
1623 {
1624         struct ieee80211_local *local = sdata->local;
1625         int freq;
1626         struct ieee80211_bss *bss;
1627         struct ieee80211_channel *channel;
1628
1629         if (elems->ds_params && elems->ds_params_len == 1)
1630                 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1631         else
1632                 freq = rx_status->freq;
1633
1634         channel = ieee80211_get_channel(local->hw.wiphy, freq);
1635
1636         if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1637                 return;
1638
1639         bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1640                                         channel, beacon);
1641         if (bss)
1642                 ieee80211_rx_bss_put(local, bss);
1643
1644         if (!sdata->u.mgd.associated)
1645                 return;
1646
1647         if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1648             (memcmp(mgmt->bssid, sdata->u.mgd.associated->cbss.bssid,
1649                                                         ETH_ALEN) == 0)) {
1650                 struct ieee80211_channel_sw_ie *sw_elem =
1651                         (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1652                 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
1653         }
1654 }
1655
1656
1657 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
1658                                          struct ieee80211_mgd_work *wk,
1659                                          struct ieee80211_mgmt *mgmt, size_t len,
1660                                          struct ieee80211_rx_status *rx_status)
1661 {
1662         struct ieee80211_if_managed *ifmgd;
1663         size_t baselen;
1664         struct ieee802_11_elems elems;
1665
1666         ifmgd = &sdata->u.mgd;
1667
1668         ASSERT_MGD_MTX(ifmgd);
1669
1670         if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1671                 return; /* ignore ProbeResp to foreign address */
1672
1673         baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1674         if (baselen > len)
1675                 return;
1676
1677         ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1678                                 &elems);
1679
1680         ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
1681
1682         /* direct probe may be part of the association flow */
1683         if (wk && wk->state == IEEE80211_MGD_STATE_PROBE) {
1684                 printk(KERN_DEBUG "%s: direct probe responded\n",
1685                        sdata->dev->name);
1686                 wk->tries = 0;
1687                 wk->state = IEEE80211_MGD_STATE_AUTH;
1688                 WARN_ON(ieee80211_authenticate(sdata, wk) != RX_MGMT_NONE);
1689         }
1690
1691         if (ifmgd->associated &&
1692             memcmp(mgmt->bssid, ifmgd->associated->cbss.bssid, ETH_ALEN) == 0 &&
1693             ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1694                             IEEE80211_STA_CONNECTION_POLL)) {
1695                 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1696                                   IEEE80211_STA_BEACON_POLL);
1697                 mutex_lock(&sdata->local->iflist_mtx);
1698                 ieee80211_recalc_ps(sdata->local, -1);
1699                 mutex_unlock(&sdata->local->iflist_mtx);
1700                 /*
1701                  * We've received a probe response, but are not sure whether
1702                  * we have or will be receiving any beacons or data, so let's
1703                  * schedule the timers again, just in case.
1704                  */
1705                 mod_beacon_timer(sdata);
1706                 mod_timer(&ifmgd->conn_mon_timer,
1707                           round_jiffies_up(jiffies +
1708                                            IEEE80211_CONNECTION_IDLE_TIME));
1709         }
1710 }
1711
1712 /*
1713  * This is the canonical list of information elements we care about,
1714  * the filter code also gives us all changes to the Microsoft OUI
1715  * (00:50:F2) vendor IE which is used for WMM which we need to track.
1716  *
1717  * We implement beacon filtering in software since that means we can
1718  * avoid processing the frame here and in cfg80211, and userspace
1719  * will not be able to tell whether the hardware supports it or not.
1720  *
1721  * XXX: This list needs to be dynamic -- userspace needs to be able to
1722  *      add items it requires. It also needs to be able to tell us to
1723  *      look out for other vendor IEs.
1724  */
1725 static const u64 care_about_ies =
1726         (1ULL << WLAN_EID_COUNTRY) |
1727         (1ULL << WLAN_EID_ERP_INFO) |
1728         (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1729         (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1730         (1ULL << WLAN_EID_HT_CAPABILITY) |
1731         (1ULL << WLAN_EID_HT_INFORMATION);
1732
1733 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
1734                                      struct ieee80211_mgmt *mgmt,
1735                                      size_t len,
1736                                      struct ieee80211_rx_status *rx_status)
1737 {
1738         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1739         size_t baselen;
1740         struct ieee802_11_elems elems;
1741         struct ieee80211_local *local = sdata->local;
1742         u32 changed = 0;
1743         bool erp_valid, directed_tim = false;
1744         u8 erp_value = 0;
1745         u32 ncrc;
1746         u8 *bssid;
1747
1748         ASSERT_MGD_MTX(ifmgd);
1749
1750         /* Process beacon from the current BSS */
1751         baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1752         if (baselen > len)
1753                 return;
1754
1755         if (rx_status->freq != local->hw.conf.channel->center_freq)
1756                 return;
1757
1758         /*
1759          * We might have received a number of frames, among them a
1760          * disassoc frame and a beacon...
1761          */
1762         if (!ifmgd->associated)
1763                 return;
1764
1765         bssid = ifmgd->associated->cbss.bssid;
1766
1767         /*
1768          * And in theory even frames from a different AP we were just
1769          * associated to a split-second ago!
1770          */
1771         if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
1772                 return;
1773
1774         if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
1775 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1776                 if (net_ratelimit()) {
1777                         printk(KERN_DEBUG "%s: cancelling probereq poll due "
1778                                "to a received beacon\n", sdata->dev->name);
1779                 }
1780 #endif
1781                 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
1782                 mutex_lock(&local->iflist_mtx);
1783                 ieee80211_recalc_ps(local, -1);
1784                 mutex_unlock(&local->iflist_mtx);
1785         }
1786
1787         /*
1788          * Push the beacon loss detection into the future since
1789          * we are processing a beacon from the AP just now.
1790          */
1791         mod_beacon_timer(sdata);
1792
1793         ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1794         ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1795                                           len - baselen, &elems,
1796                                           care_about_ies, ncrc);
1797
1798         if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1799                 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1800                                                    ifmgd->aid);
1801
1802         if (ncrc != ifmgd->beacon_crc) {
1803                 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1804                                       true);
1805
1806                 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1807                                          elems.wmm_param_len);
1808         }
1809
1810         if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
1811                 if (directed_tim) {
1812                         if (local->hw.conf.dynamic_ps_timeout > 0) {
1813                                 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1814                                 ieee80211_hw_config(local,
1815                                                     IEEE80211_CONF_CHANGE_PS);
1816                                 ieee80211_send_nullfunc(local, sdata, 0);
1817                         } else {
1818                                 local->pspolling = true;
1819
1820                                 /*
1821                                  * Here is assumed that the driver will be
1822                                  * able to send ps-poll frame and receive a
1823                                  * response even though power save mode is
1824                                  * enabled, but some drivers might require
1825                                  * to disable power save here. This needs
1826                                  * to be investigated.
1827                                  */
1828                                 ieee80211_send_pspoll(local, sdata);
1829                         }
1830                 }
1831         }
1832
1833         if (ncrc == ifmgd->beacon_crc)
1834                 return;
1835         ifmgd->beacon_crc = ncrc;
1836
1837         if (elems.erp_info && elems.erp_info_len >= 1) {
1838                 erp_valid = true;
1839                 erp_value = elems.erp_info[0];
1840         } else {
1841                 erp_valid = false;
1842         }
1843         changed |= ieee80211_handle_bss_capability(sdata,
1844                         le16_to_cpu(mgmt->u.beacon.capab_info),
1845                         erp_valid, erp_value);
1846
1847
1848         if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
1849             !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
1850                 struct sta_info *sta;
1851                 struct ieee80211_supported_band *sband;
1852                 u16 ap_ht_cap_flags;
1853
1854                 rcu_read_lock();
1855
1856                 sta = sta_info_get(local, bssid);
1857                 if (WARN_ON(!sta)) {
1858                         rcu_read_unlock();
1859                         return;
1860                 }
1861
1862                 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1863
1864                 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1865                                 elems.ht_cap_elem, &sta->sta.ht_cap);
1866
1867                 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1868
1869                 rcu_read_unlock();
1870
1871                 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1872                                                bssid, ap_ht_cap_flags);
1873         }
1874
1875         /* Note: country IE parsing is done for us by cfg80211 */
1876         if (elems.country_elem) {
1877                 /* TODO: IBSS also needs this */
1878                 if (elems.pwr_constr_elem)
1879                         ieee80211_handle_pwr_constr(sdata,
1880                                 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1881                                 elems.pwr_constr_elem,
1882                                 elems.pwr_constr_elem_len);
1883         }
1884
1885         ieee80211_bss_info_change_notify(sdata, changed);
1886 }
1887
1888 ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1889                                           struct sk_buff *skb)
1890 {
1891         struct ieee80211_local *local = sdata->local;
1892         struct ieee80211_mgmt *mgmt;
1893         u16 fc;
1894
1895         if (skb->len < 24)
1896                 return RX_DROP_MONITOR;
1897
1898         mgmt = (struct ieee80211_mgmt *) skb->data;
1899         fc = le16_to_cpu(mgmt->frame_control);
1900
1901         switch (fc & IEEE80211_FCTL_STYPE) {
1902         case IEEE80211_STYPE_PROBE_REQ:
1903         case IEEE80211_STYPE_PROBE_RESP:
1904         case IEEE80211_STYPE_BEACON:
1905         case IEEE80211_STYPE_AUTH:
1906         case IEEE80211_STYPE_ASSOC_RESP:
1907         case IEEE80211_STYPE_REASSOC_RESP:
1908         case IEEE80211_STYPE_DEAUTH:
1909         case IEEE80211_STYPE_DISASSOC:
1910         case IEEE80211_STYPE_ACTION:
1911                 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
1912                 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
1913                 return RX_QUEUED;
1914         }
1915
1916         return RX_DROP_MONITOR;
1917 }
1918
1919 static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1920                                          struct sk_buff *skb)
1921 {
1922         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1923         struct ieee80211_rx_status *rx_status;
1924         struct ieee80211_mgmt *mgmt;
1925         struct ieee80211_mgd_work *wk;
1926         enum rx_mgmt_action rma = RX_MGMT_NONE;
1927         u16 fc;
1928
1929         rx_status = (struct ieee80211_rx_status *) skb->cb;
1930         mgmt = (struct ieee80211_mgmt *) skb->data;
1931         fc = le16_to_cpu(mgmt->frame_control);
1932
1933         mutex_lock(&ifmgd->mtx);
1934
1935         if (ifmgd->associated &&
1936             memcmp(ifmgd->associated->cbss.bssid, mgmt->bssid,
1937                                                         ETH_ALEN) == 0) {
1938                 switch (fc & IEEE80211_FCTL_STYPE) {
1939                 case IEEE80211_STYPE_BEACON:
1940                         ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1941                                                  rx_status);
1942                         break;
1943                 case IEEE80211_STYPE_PROBE_RESP:
1944                         ieee80211_rx_mgmt_probe_resp(sdata, NULL, mgmt,
1945                                                      skb->len, rx_status);
1946                         break;
1947                 case IEEE80211_STYPE_DEAUTH:
1948                         rma = ieee80211_rx_mgmt_deauth(sdata, NULL,
1949                                                        mgmt, skb->len);
1950                         break;
1951                 case IEEE80211_STYPE_DISASSOC:
1952                         rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1953                         break;
1954                 case IEEE80211_STYPE_ACTION:
1955                         /* XXX: differentiate, can only happen for CSA now! */
1956                         ieee80211_sta_process_chanswitch(sdata,
1957                                         &mgmt->u.action.u.chan_switch.sw_elem,
1958                                         ifmgd->associated);
1959                         break;
1960                 }
1961                 mutex_unlock(&ifmgd->mtx);
1962
1963                 switch (rma) {
1964                 case RX_MGMT_NONE:
1965                         /* no action */
1966                         break;
1967                 case RX_MGMT_CFG80211_DEAUTH:
1968                         cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
1969                         break;
1970                 case RX_MGMT_CFG80211_DISASSOC:
1971                         cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
1972                         break;
1973                 default:
1974                         WARN(1, "unexpected: %d", rma);
1975                 }
1976                 goto out;
1977         }
1978
1979         list_for_each_entry(wk, &ifmgd->work_list, list) {
1980                 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1981                         continue;
1982
1983                 switch (fc & IEEE80211_FCTL_STYPE) {
1984                 case IEEE80211_STYPE_PROBE_RESP:
1985                         ieee80211_rx_mgmt_probe_resp(sdata, wk, mgmt, skb->len,
1986                                                      rx_status);
1987                         break;
1988                 case IEEE80211_STYPE_AUTH:
1989                         rma = ieee80211_rx_mgmt_auth(sdata, wk, mgmt, skb->len);
1990                         break;
1991                 case IEEE80211_STYPE_ASSOC_RESP:
1992                         rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
1993                                                            skb->len, false);
1994                         break;
1995                 case IEEE80211_STYPE_REASSOC_RESP:
1996                         rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
1997                                                            skb->len, true);
1998                         break;
1999                 case IEEE80211_STYPE_DEAUTH:
2000                         rma = ieee80211_rx_mgmt_deauth(sdata, wk, mgmt,
2001                                                        skb->len);
2002                         break;
2003                 }
2004                 /*
2005                  * We've processed this frame for that work, so it can't
2006                  * belong to another work struct.
2007                  * NB: this is also required for correctness because the
2008                  * called functions can free 'wk', and for 'rma'!
2009                  */
2010                 break;
2011         }
2012
2013         mutex_unlock(&ifmgd->mtx);
2014
2015         switch (rma) {
2016         case RX_MGMT_NONE:
2017                 /* no action */
2018                 break;
2019         case RX_MGMT_CFG80211_AUTH:
2020                 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, skb->len);
2021                 break;
2022         case RX_MGMT_CFG80211_ASSOC:
2023                 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len);
2024                 break;
2025         case RX_MGMT_CFG80211_DEAUTH:
2026                 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
2027                 break;
2028         default:
2029                 WARN(1, "unexpected: %d", rma);
2030         }
2031
2032  out:
2033         kfree_skb(skb);
2034 }
2035
2036 static void ieee80211_sta_timer(unsigned long data)
2037 {
2038         struct ieee80211_sub_if_data *sdata =
2039                 (struct ieee80211_sub_if_data *) data;
2040         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2041         struct ieee80211_local *local = sdata->local;
2042
2043         if (local->quiescing) {
2044                 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2045                 return;
2046         }
2047
2048         ieee80211_queue_work(&local->hw, &ifmgd->work);
2049 }
2050
2051 static void ieee80211_sta_work(struct work_struct *work)
2052 {
2053         struct ieee80211_sub_if_data *sdata =
2054                 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
2055         struct ieee80211_local *local = sdata->local;
2056         struct ieee80211_if_managed *ifmgd;
2057         struct sk_buff *skb;
2058         struct ieee80211_mgd_work *wk, *tmp;
2059         LIST_HEAD(free_work);
2060         enum rx_mgmt_action rma;
2061         bool anybusy = false;
2062
2063         if (!netif_running(sdata->dev))
2064                 return;
2065
2066         if (local->scanning)
2067                 return;
2068
2069         if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2070                 return;
2071
2072         /*
2073          * ieee80211_queue_work() should have picked up most cases,
2074          * here we'll pick the the rest.
2075          */
2076         if (WARN(local->suspended, "STA MLME work scheduled while "
2077                  "going to suspend\n"))
2078                 return;
2079
2080         ifmgd = &sdata->u.mgd;
2081
2082         /* first process frames to avoid timing out while a frame is pending */
2083         while ((skb = skb_dequeue(&ifmgd->skb_queue)))
2084                 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2085
2086         /* then process the rest of the work */
2087         mutex_lock(&ifmgd->mtx);
2088
2089         if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2090                             IEEE80211_STA_CONNECTION_POLL) &&
2091             ifmgd->associated) {
2092                 u8 bssid[ETH_ALEN];
2093
2094                 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
2095                 if (time_is_after_jiffies(ifmgd->probe_timeout))
2096                         run_again(ifmgd, ifmgd->probe_timeout);
2097
2098                 else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) {
2099 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2100                         printk(KERN_DEBUG "No probe response from AP %pM"
2101                                 " after %dms, try %d\n", bssid,
2102                                 (1000 * IEEE80211_PROBE_WAIT)/HZ,
2103                                 ifmgd->probe_send_count);
2104 #endif
2105                         ieee80211_mgd_probe_ap_send(sdata);
2106                 } else {
2107                         /*
2108                          * We actually lost the connection ... or did we?
2109                          * Let's make sure!
2110                          */
2111                         ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
2112                                           IEEE80211_STA_BEACON_POLL);
2113                         printk(KERN_DEBUG "No probe response from AP %pM"
2114                                 " after %dms, disconnecting.\n",
2115                                 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
2116                         ieee80211_set_disassoc(sdata, true);
2117                         mutex_unlock(&ifmgd->mtx);
2118                         /*
2119                          * must be outside lock due to cfg80211,
2120                          * but that's not a problem.
2121                          */
2122                         ieee80211_send_deauth_disassoc(sdata, bssid,
2123                                         IEEE80211_STYPE_DEAUTH,
2124                                         WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
2125                                         NULL);
2126                         mutex_lock(&ifmgd->mtx);
2127                 }
2128         }
2129
2130
2131         ieee80211_recalc_idle(local);
2132
2133         list_for_each_entry_safe(wk, tmp, &ifmgd->work_list, list) {
2134                 if (time_is_after_jiffies(wk->timeout)) {
2135                         /*
2136                          * This work item isn't supposed to be worked on
2137                          * right now, but take care to adjust the timer
2138                          * properly.
2139                          */
2140                         run_again(ifmgd, wk->timeout);
2141                         continue;
2142                 }
2143
2144                 switch (wk->state) {
2145                 default:
2146                         WARN_ON(1);
2147                         /* fall through */
2148                 case IEEE80211_MGD_STATE_IDLE:
2149                         /* nothing */
2150                         rma = RX_MGMT_NONE;
2151                         break;
2152                 case IEEE80211_MGD_STATE_PROBE:
2153                         rma = ieee80211_direct_probe(sdata, wk);
2154                         break;
2155                 case IEEE80211_MGD_STATE_AUTH:
2156                         rma = ieee80211_authenticate(sdata, wk);
2157                         break;
2158                 case IEEE80211_MGD_STATE_ASSOC:
2159                         rma = ieee80211_associate(sdata, wk);
2160                         break;
2161                 }
2162
2163                 switch (rma) {
2164                 case RX_MGMT_NONE:
2165                         /* no action required */
2166                         break;
2167                 case RX_MGMT_CFG80211_AUTH_TO:
2168                 case RX_MGMT_CFG80211_ASSOC_TO:
2169                         list_del(&wk->list);
2170                         list_add(&wk->list, &free_work);
2171                         wk->tries = rma; /* small abuse but only local */
2172                         break;
2173                 default:
2174                         WARN(1, "unexpected: %d", rma);
2175                 }
2176         }
2177
2178         list_for_each_entry(wk, &ifmgd->work_list, list) {
2179                 if (wk->state != IEEE80211_MGD_STATE_IDLE) {
2180                         anybusy = true;
2181                         break;
2182                 }
2183         }
2184         if (!anybusy &&
2185             test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request))
2186                 ieee80211_queue_delayed_work(&local->hw,
2187                                              &local->scan_work,
2188                                              round_jiffies_relative(0));
2189
2190         mutex_unlock(&ifmgd->mtx);
2191
2192         list_for_each_entry_safe(wk, tmp, &free_work, list) {
2193                 switch (wk->tries) {
2194                 case RX_MGMT_CFG80211_AUTH_TO:
2195                         cfg80211_send_auth_timeout(sdata->dev,
2196                                                    wk->bss->cbss.bssid);
2197                         break;
2198                 case RX_MGMT_CFG80211_ASSOC_TO:
2199                         cfg80211_send_assoc_timeout(sdata->dev,
2200                                                     wk->bss->cbss.bssid);
2201                         break;
2202                 default:
2203                         WARN(1, "unexpected: %d", wk->tries);
2204                 }
2205
2206                 list_del(&wk->list);
2207                 kfree(wk);
2208         }
2209
2210         ieee80211_recalc_idle(local);
2211 }
2212
2213 static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2214 {
2215         struct ieee80211_sub_if_data *sdata =
2216                 (struct ieee80211_sub_if_data *) data;
2217         struct ieee80211_local *local = sdata->local;
2218
2219         if (local->quiescing)
2220                 return;
2221
2222         ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
2223 }
2224
2225 static void ieee80211_sta_conn_mon_timer(unsigned long data)
2226 {
2227         struct ieee80211_sub_if_data *sdata =
2228                 (struct ieee80211_sub_if_data *) data;
2229         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2230         struct ieee80211_local *local = sdata->local;
2231
2232         if (local->quiescing)
2233                 return;
2234
2235         ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
2236 }
2237
2238 static void ieee80211_sta_monitor_work(struct work_struct *work)
2239 {
2240         struct ieee80211_sub_if_data *sdata =
2241                 container_of(work, struct ieee80211_sub_if_data,
2242                              u.mgd.monitor_work);
2243
2244         ieee80211_mgd_probe_ap(sdata, false);
2245 }
2246
2247 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2248 {
2249         if (sdata->vif.type == NL80211_IFTYPE_STATION) {
2250                 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
2251                                         IEEE80211_STA_CONNECTION_POLL);
2252
2253                 /* let's probe the connection once */
2254                 ieee80211_queue_work(&sdata->local->hw,
2255                            &sdata->u.mgd.monitor_work);
2256                 /* and do all the other regular work too */
2257                 ieee80211_queue_work(&sdata->local->hw,
2258                            &sdata->u.mgd.work);
2259         }
2260 }
2261
2262 #ifdef CONFIG_PM
2263 void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2264 {
2265         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2266
2267         /*
2268          * we need to use atomic bitops for the running bits
2269          * only because both timers might fire at the same
2270          * time -- the code here is properly synchronised.
2271          */
2272
2273         cancel_work_sync(&ifmgd->work);
2274         cancel_work_sync(&ifmgd->beacon_loss_work);
2275         if (del_timer_sync(&ifmgd->timer))
2276                 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2277
2278         cancel_work_sync(&ifmgd->chswitch_work);
2279         if (del_timer_sync(&ifmgd->chswitch_timer))
2280                 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
2281
2282         cancel_work_sync(&ifmgd->monitor_work);
2283         /* these will just be re-established on connection */
2284         del_timer_sync(&ifmgd->conn_mon_timer);
2285         del_timer_sync(&ifmgd->bcn_mon_timer);
2286 }
2287
2288 void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2289 {
2290         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2291
2292         if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2293                 add_timer(&ifmgd->timer);
2294         if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2295                 add_timer(&ifmgd->chswitch_timer);
2296 }
2297 #endif
2298
2299 /* interface setup */
2300 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2301 {
2302         struct ieee80211_if_managed *ifmgd;
2303
2304         ifmgd = &sdata->u.mgd;
2305         INIT_WORK(&ifmgd->work, ieee80211_sta_work);
2306         INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
2307         INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
2308         INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
2309         setup_timer(&ifmgd->timer, ieee80211_sta_timer,
2310                     (unsigned long) sdata);
2311         setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2312                     (unsigned long) sdata);
2313         setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2314                     (unsigned long) sdata);
2315         setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
2316                     (unsigned long) sdata);
2317         skb_queue_head_init(&ifmgd->skb_queue);
2318
2319         INIT_LIST_HEAD(&ifmgd->work_list);
2320
2321         ifmgd->capab = WLAN_CAPABILITY_ESS;
2322         ifmgd->flags = 0;
2323         if (sdata->local->hw.queues >= 4)
2324                 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
2325
2326         mutex_init(&ifmgd->mtx);
2327 }
2328
2329 /* scan finished notification */
2330 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2331 {
2332         struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2333
2334         /* Restart STA timers */
2335         rcu_read_lock();
2336         list_for_each_entry_rcu(sdata, &local->interfaces, list)
2337                 ieee80211_restart_sta_timer(sdata);
2338         rcu_read_unlock();
2339 }
2340
2341 int ieee80211_max_network_latency(struct notifier_block *nb,
2342                                   unsigned long data, void *dummy)
2343 {
2344         s32 latency_usec = (s32) data;
2345         struct ieee80211_local *local =
2346                 container_of(nb, struct ieee80211_local,
2347                              network_latency_notifier);
2348
2349         mutex_lock(&local->iflist_mtx);
2350         ieee80211_recalc_ps(local, latency_usec);
2351         mutex_unlock(&local->iflist_mtx);
2352
2353         return 0;
2354 }
2355
2356 /* config hooks */
2357 int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
2358                        struct cfg80211_auth_request *req)
2359 {
2360         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2361         const u8 *ssid;
2362         struct ieee80211_mgd_work *wk;
2363         u16 auth_alg;
2364
2365         switch (req->auth_type) {
2366         case NL80211_AUTHTYPE_OPEN_SYSTEM:
2367                 auth_alg = WLAN_AUTH_OPEN;
2368                 break;
2369         case NL80211_AUTHTYPE_SHARED_KEY:
2370                 auth_alg = WLAN_AUTH_SHARED_KEY;
2371                 break;
2372         case NL80211_AUTHTYPE_FT:
2373                 auth_alg = WLAN_AUTH_FT;
2374                 break;
2375         case NL80211_AUTHTYPE_NETWORK_EAP:
2376                 auth_alg = WLAN_AUTH_LEAP;
2377                 break;
2378         default:
2379                 return -EOPNOTSUPP;
2380         }
2381
2382         wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2383         if (!wk)
2384                 return -ENOMEM;
2385
2386         wk->bss = (void *)req->bss;
2387
2388         if (req->ie && req->ie_len) {
2389                 memcpy(wk->ie, req->ie, req->ie_len);
2390                 wk->ie_len = req->ie_len;
2391         }
2392
2393         if (req->key && req->key_len) {
2394                 wk->key_len = req->key_len;
2395                 wk->key_idx = req->key_idx;
2396                 memcpy(wk->key, req->key, req->key_len);
2397         }
2398
2399         ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2400         memcpy(wk->ssid, ssid + 2, ssid[1]);
2401         wk->ssid_len = ssid[1];
2402
2403         wk->state = IEEE80211_MGD_STATE_PROBE;
2404         wk->auth_alg = auth_alg;
2405         wk->timeout = jiffies; /* run right away */
2406
2407         /*
2408          * XXX: if still associated need to tell AP that we're going
2409          *      to sleep and then change channel etc.
2410          */
2411         sdata->local->oper_channel = req->bss->channel;
2412         ieee80211_hw_config(sdata->local, 0);
2413
2414         mutex_lock(&ifmgd->mtx);
2415         list_add(&wk->list, &sdata->u.mgd.work_list);
2416         mutex_unlock(&ifmgd->mtx);
2417
2418         ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
2419         return 0;
2420 }
2421
2422 int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2423                         struct cfg80211_assoc_request *req)
2424 {
2425         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2426         struct ieee80211_mgd_work *wk, *found = NULL;
2427         int i, err;
2428
2429         mutex_lock(&ifmgd->mtx);
2430
2431         list_for_each_entry(wk, &ifmgd->work_list, list) {
2432                 if (&wk->bss->cbss == req->bss &&
2433                     wk->state == IEEE80211_MGD_STATE_IDLE) {
2434                         found = wk;
2435                         break;
2436                 }
2437         }
2438
2439         if (!found) {
2440                 err = -ENOLINK;
2441                 goto out;
2442         }
2443
2444         list_del(&found->list);
2445
2446         wk = krealloc(found, sizeof(*wk) + req->ie_len, GFP_KERNEL);
2447         if (!wk) {
2448                 list_add(&found->list, &ifmgd->work_list);
2449                 err = -ENOMEM;
2450                 goto out;
2451         }
2452
2453         list_add(&wk->list, &ifmgd->work_list);
2454
2455         ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
2456
2457         for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2458                 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2459                     req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2460                     req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2461                         ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2462
2463         sdata->local->oper_channel = req->bss->channel;
2464         ieee80211_hw_config(sdata->local, 0);
2465
2466         if (req->ie && req->ie_len) {
2467                 memcpy(wk->ie, req->ie, req->ie_len);
2468                 wk->ie_len = req->ie_len;
2469         } else
2470                 wk->ie_len = 0;
2471
2472         if (req->prev_bssid)
2473                 memcpy(wk->prev_bssid, req->prev_bssid, ETH_ALEN);
2474
2475         wk->state = IEEE80211_MGD_STATE_ASSOC;
2476         wk->tries = 0;
2477         wk->timeout = jiffies; /* run right away */
2478
2479         if (req->use_mfp) {
2480                 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2481                 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2482         } else {
2483                 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2484                 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2485         }
2486
2487         if (req->crypto.control_port)
2488                 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2489         else
2490                 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2491
2492         ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
2493
2494         err = 0;
2495
2496  out:
2497         mutex_unlock(&ifmgd->mtx);
2498         return err;
2499 }
2500
2501 int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
2502                          struct cfg80211_deauth_request *req,
2503                          void *cookie)
2504 {
2505         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2506         struct ieee80211_mgd_work *wk;
2507         const u8 *bssid = NULL;
2508
2509         mutex_lock(&ifmgd->mtx);
2510
2511         if (ifmgd->associated && &ifmgd->associated->cbss == req->bss) {
2512                 bssid = req->bss->bssid;
2513                 ieee80211_set_disassoc(sdata, true);
2514         } else list_for_each_entry(wk, &ifmgd->work_list, list) {
2515                 if (&wk->bss->cbss == req->bss) {
2516                         bssid = req->bss->bssid;
2517                         list_del(&wk->list);
2518                         kfree(wk);
2519                         break;
2520                 }
2521         }
2522
2523         /*
2524          * cfg80211 should catch this ... but it's racy since
2525          * we can receive a deauth frame, process it, hand it
2526          * to cfg80211 while that's in a locked section already
2527          * trying to tell us that the user wants to disconnect.
2528          */
2529         if (!bssid) {
2530                 mutex_unlock(&ifmgd->mtx);
2531                 return -ENOLINK;
2532         }
2533
2534         mutex_unlock(&ifmgd->mtx);
2535
2536         printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
2537                sdata->dev->name, bssid, req->reason_code);
2538
2539         ieee80211_send_deauth_disassoc(sdata, bssid,
2540                         IEEE80211_STYPE_DEAUTH, req->reason_code,
2541                         cookie);
2542
2543         return 0;
2544 }
2545
2546 int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
2547                            struct cfg80211_disassoc_request *req,
2548                            void *cookie)
2549 {
2550         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2551
2552         mutex_lock(&ifmgd->mtx);
2553
2554         /*
2555          * cfg80211 should catch this ... but it's racy since
2556          * we can receive a disassoc frame, process it, hand it
2557          * to cfg80211 while that's in a locked section already
2558          * trying to tell us that the user wants to disconnect.
2559          */
2560         if (&ifmgd->associated->cbss != req->bss) {
2561                 mutex_unlock(&ifmgd->mtx);
2562                 return -ENOLINK;
2563         }
2564
2565         printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
2566                sdata->dev->name, req->bss->bssid, req->reason_code);
2567
2568         ieee80211_set_disassoc(sdata, false);
2569
2570         mutex_unlock(&ifmgd->mtx);
2571
2572         ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
2573                         IEEE80211_STYPE_DISASSOC, req->reason_code,
2574                         cookie);
2575         return 0;
2576 }