blob: de7519eb2b5d8ce91d48958937fbe38f60f1b6cf [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * 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
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Johannes Berg10f644a2009-04-16 13:17:25 +020020#include <linux/pm_qos_params.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020021#include <linux/crc32.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070022#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020023#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020024
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020026#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "rate.h"
28#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
Maxim Levitskya43abf22009-07-31 18:54:12 +030030#define IEEE80211_MAX_PROBE_TRIES 5
Johannes Bergb291ba12009-07-10 15:29:03 +020031
32/*
33 * beacon loss detection timeout
34 * XXX: should depend on beacon interval
35 */
36#define IEEE80211_BEACON_LOSS_TIME (2 * HZ)
37/*
38 * Time the connection can be idle before we probe
39 * it to see if we can still talk to the AP.
40 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030041#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020042/*
43 * Time we wait for a probe response after sending
44 * a probe request because of beacon loss or for
45 * checking the connection still works.
46 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030047#define IEEE80211_PROBE_WAIT (HZ / 2)
Jiri Bencf0706e82007-05-05 11:45:53 -070048
Jouni Malinen17e4ec12010-03-29 23:28:30 -070049/*
50 * Weight given to the latest Beacon frame when calculating average signal
51 * strength for Beacon frames received in the current BSS. This must be
52 * between 1 and 15.
53 */
54#define IEEE80211_SIGNAL_AVE_WEIGHT 3
55
Johannes Berg5bb644a2009-05-17 11:40:42 +020056#define TMR_RUNNING_TIMER 0
57#define TMR_RUNNING_CHANSW 1
58
Johannes Berg77fdaa12009-07-07 03:45:17 +020059/*
60 * All cfg80211 functions have to be called outside a locked
61 * section so that they can acquire a lock themselves... This
62 * is much simpler than queuing up things in cfg80211, but we
63 * do need some indirection for that here.
64 */
65enum rx_mgmt_action {
66 /* no action required */
67 RX_MGMT_NONE,
68
69 /* caller must call cfg80211_send_rx_auth() */
70 RX_MGMT_CFG80211_AUTH,
71
72 /* caller must call cfg80211_send_rx_assoc() */
73 RX_MGMT_CFG80211_ASSOC,
74
75 /* caller must call cfg80211_send_deauth() */
76 RX_MGMT_CFG80211_DEAUTH,
77
78 /* caller must call cfg80211_send_disassoc() */
79 RX_MGMT_CFG80211_DISASSOC,
80
Johannes Berg5d1ec852009-12-02 12:43:43 +010081 /* caller must tell cfg80211 about internal error */
82 RX_MGMT_CFG80211_ASSOC_ERROR,
Johannes Berg77fdaa12009-07-07 03:45:17 +020083};
84
Johannes Berg5484e232008-09-08 17:44:27 +020085/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +020086static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
87{
88 WARN_ON(!mutex_is_locked(&ifmgd->mtx));
89}
90
Johannes Bergca386f32009-07-10 02:39:48 +020091/*
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 */
101static 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
Johannes Bergb291ba12009-07-10 15:29:03 +0200111static 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
Johannes Berg5484e232008-09-08 17:44:27 +0200120static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200121{
Johannes Berg5484e232008-09-08 17:44:27 +0200122 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200123}
124
Johannes Bergd5522e02009-03-30 13:23:35 +0200125/*
126 * ieee80211_enable_ht should be called only after the operating band
127 * has been determined as ht configuration depends on the hw's
128 * HT abilities for a specific band.
129 */
130static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
131 struct ieee80211_ht_info *hti,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200132 const u8 *bssid, u16 ap_ht_cap_flags)
Johannes Bergd5522e02009-03-30 13:23:35 +0200133{
134 struct ieee80211_local *local = sdata->local;
135 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200136 struct sta_info *sta;
137 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200138 u16 ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200139 bool enable_ht = true, ht_changed;
140 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
141
142 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
143
Johannes Bergd5522e02009-03-30 13:23:35 +0200144 /* HT is not supported */
145 if (!sband->ht_cap.ht_supported)
146 enable_ht = false;
147
148 /* check that channel matches the right operating channel */
149 if (local->hw.conf.channel->center_freq !=
150 ieee80211_channel_to_frequency(hti->control_chan))
151 enable_ht = false;
152
153 if (enable_ht) {
154 channel_type = NL80211_CHAN_HT20;
155
156 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
157 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
158 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
159 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
160 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400161 if (!(local->hw.conf.channel->flags &
162 IEEE80211_CHAN_NO_HT40PLUS))
163 channel_type = NL80211_CHAN_HT40PLUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200164 break;
165 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400166 if (!(local->hw.conf.channel->flags &
167 IEEE80211_CHAN_NO_HT40MINUS))
168 channel_type = NL80211_CHAN_HT40MINUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200169 break;
170 }
171 }
172 }
173
174 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
175 channel_type != local->hw.conf.channel_type;
176
177 local->oper_channel_type = channel_type;
178
179 if (ht_changed) {
180 /* channel_type change automatically detected */
181 ieee80211_hw_config(local, 0);
182
183 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100184 sta = sta_info_get(sdata, bssid);
Johannes Bergd5522e02009-03-30 13:23:35 +0200185 if (sta)
186 rate_control_rate_update(local, sband, sta,
Sujith4fa00432010-03-01 14:42:57 +0530187 IEEE80211_RC_HT_CHANGED,
188 local->oper_channel_type);
Johannes Bergd5522e02009-03-30 13:23:35 +0200189 rcu_read_unlock();
Johannes Bergd5522e02009-03-30 13:23:35 +0200190 }
191
192 /* disable HT */
193 if (!enable_ht)
194 return 0;
195
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200196 ht_opmode = le16_to_cpu(hti->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200197
198 /* if bss configuration changed store the new one */
Johannes Berg413ad502009-05-08 21:21:06 +0200199 if (!sdata->ht_opmode_valid ||
200 sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200201 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200202 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Berg413ad502009-05-08 21:21:06 +0200203 sdata->ht_opmode_valid = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200204 }
205
206 return changed;
207}
208
Johannes Berg9c6bd792008-09-11 00:01:52 +0200209/* frame sending functions */
210
Johannes Bergef422bc2008-09-09 10:58:25 +0200211static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +0200212 const u8 *bssid, u16 stype, u16 reason,
213 void *cookie)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200214{
215 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100216 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200217 struct sk_buff *skb;
218 struct ieee80211_mgmt *mgmt;
219
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200220 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200221 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200222 printk(KERN_DEBUG "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100223 "deauth/disassoc frame\n", sdata->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200224 return;
225 }
226 skb_reserve(skb, local->hw.extra_tx_headroom);
227
228 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
229 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200230 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100231 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200232 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200233 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200234 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200235 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200236 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
237
Jouni Malinen53b46b82009-03-27 20:53:56 +0200238 if (stype == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +0200239 if (cookie)
240 __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
241 else
242 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Jouni Malinen53b46b82009-03-27 20:53:56 +0200243 else
Holger Schurigce470612009-10-13 13:28:13 +0200244 if (cookie)
245 __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
246 else
247 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg62ae67b2009-11-18 18:42:05 +0100248 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
249 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
250 ieee80211_tx_skb(sdata, skb);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200251}
252
Kalle Valo572e0012009-02-10 17:09:31 +0200253void ieee80211_send_pspoll(struct ieee80211_local *local,
254 struct ieee80211_sub_if_data *sdata)
255{
Kalle Valo572e0012009-02-10 17:09:31 +0200256 struct ieee80211_pspoll *pspoll;
257 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200258
Kalle Valod8cd1892010-01-05 20:16:26 +0200259 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
260 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200261 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200262
Kalle Valod8cd1892010-01-05 20:16:26 +0200263 pspoll = (struct ieee80211_pspoll *) skb->data;
264 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200265
Johannes Berg62ae67b2009-11-18 18:42:05 +0100266 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
267 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200268}
269
Johannes Berg965beda2009-04-16 13:17:24 +0200270void ieee80211_send_nullfunc(struct ieee80211_local *local,
271 struct ieee80211_sub_if_data *sdata,
272 int powersave)
273{
274 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200275 struct ieee80211_hdr_3addr *nullfunc;
Johannes Berg965beda2009-04-16 13:17:24 +0200276
Kalle Valod8cd1892010-01-05 20:16:26 +0200277 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
278 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200279 return;
280
Kalle Valod8cd1892010-01-05 20:16:26 +0200281 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200282 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200283 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200284
Johannes Berg62ae67b2009-11-18 18:42:05 +0100285 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
286 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200287}
288
Felix Fietkaud5242152010-01-08 18:06:26 +0100289static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
290 struct ieee80211_sub_if_data *sdata)
291{
292 struct sk_buff *skb;
293 struct ieee80211_hdr *nullfunc;
294 __le16 fc;
295
296 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
297 return;
298
299 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
300 if (!skb) {
301 printk(KERN_DEBUG "%s: failed to allocate buffer for 4addr "
302 "nullfunc frame\n", sdata->name);
303 return;
304 }
305 skb_reserve(skb, local->hw.extra_tx_headroom);
306
307 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
308 memset(nullfunc, 0, 30);
309 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
310 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
311 nullfunc->frame_control = fc;
312 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
313 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
314 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
315 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
316
317 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
318 ieee80211_tx_skb(sdata, skb);
319}
320
Johannes Bergcc32abd2009-05-15 11:52:31 +0200321/* spectrum management related things */
322static void ieee80211_chswitch_work(struct work_struct *work)
323{
324 struct ieee80211_sub_if_data *sdata =
325 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200326 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
327
Johannes Berg9607e6b2009-12-23 13:15:31 +0100328 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200329 return;
330
Johannes Berg77fdaa12009-07-07 03:45:17 +0200331 mutex_lock(&ifmgd->mtx);
332 if (!ifmgd->associated)
333 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200334
335 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200336 ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200337
Johannes Berg77fdaa12009-07-07 03:45:17 +0200338 /* XXX: shouldn't really modify cfg80211-owned data! */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100339 ifmgd->associated->channel = sdata->local->oper_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200340
Johannes Bergcc32abd2009-05-15 11:52:31 +0200341 ieee80211_wake_queues_by_reason(&sdata->local->hw,
342 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200343 out:
344 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
345 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200346}
347
348static void ieee80211_chswitch_timer(unsigned long data)
349{
350 struct ieee80211_sub_if_data *sdata =
351 (struct ieee80211_sub_if_data *) data;
352 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
353
Johannes Berg5bb644a2009-05-17 11:40:42 +0200354 if (sdata->local->quiescing) {
355 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
356 return;
357 }
358
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400359 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200360}
361
362void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
363 struct ieee80211_channel_sw_ie *sw_elem,
364 struct ieee80211_bss *bss)
365{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100366 struct cfg80211_bss *cbss =
367 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200368 struct ieee80211_channel *new_ch;
369 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
370 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
371
Johannes Berg77fdaa12009-07-07 03:45:17 +0200372 ASSERT_MGD_MTX(ifmgd);
373
374 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200375 return;
376
Helmut Schaafbe9c422009-07-23 12:14:04 +0200377 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200378 return;
379
380 /* Disregard subsequent beacons if we are already running a timer
381 processing a CSA */
382
383 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
384 return;
385
386 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
387 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
388 return;
389
390 sdata->local->csa_channel = new_ch;
391
392 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400393 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200394 } else {
395 ieee80211_stop_queues_by_reason(&sdata->local->hw,
396 IEEE80211_QUEUE_STOP_REASON_CSA);
397 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
398 mod_timer(&ifmgd->chswitch_timer,
399 jiffies +
400 msecs_to_jiffies(sw_elem->count *
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100401 cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +0200402 }
403}
404
405static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
406 u16 capab_info, u8 *pwr_constr_elem,
407 u8 pwr_constr_elem_len)
408{
409 struct ieee80211_conf *conf = &sdata->local->hw.conf;
410
411 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
412 return;
413
414 /* Power constraint IE length should be 1 octet */
415 if (pwr_constr_elem_len != 1)
416 return;
417
418 if ((*pwr_constr_elem <= conf->channel->max_power) &&
419 (*pwr_constr_elem != sdata->local->power_constr_level)) {
420 sdata->local->power_constr_level = *pwr_constr_elem;
421 ieee80211_hw_config(sdata->local, 0);
422 }
423}
424
Johannes Berg965beda2009-04-16 13:17:24 +0200425/* powersave */
426static void ieee80211_enable_ps(struct ieee80211_local *local,
427 struct ieee80211_sub_if_data *sdata)
428{
429 struct ieee80211_conf *conf = &local->hw.conf;
430
Johannes Bergd5edaed2009-04-22 23:02:51 +0200431 /*
432 * If we are scanning right now then the parameters will
433 * take effect when scan finishes.
434 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200435 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200436 return;
437
Johannes Berg965beda2009-04-16 13:17:24 +0200438 if (conf->dynamic_ps_timeout > 0 &&
439 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
440 mod_timer(&local->dynamic_ps_timer, jiffies +
441 msecs_to_jiffies(conf->dynamic_ps_timeout));
442 } else {
443 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
444 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +0530445
446 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
447 conf->flags |= IEEE80211_CONF_PS;
448 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
449 }
Johannes Berg965beda2009-04-16 13:17:24 +0200450 }
451}
452
453static void ieee80211_change_ps(struct ieee80211_local *local)
454{
455 struct ieee80211_conf *conf = &local->hw.conf;
456
457 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200458 ieee80211_enable_ps(local, local->ps_sdata);
459 } else if (conf->flags & IEEE80211_CONF_PS) {
460 conf->flags &= ~IEEE80211_CONF_PS;
461 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
462 del_timer_sync(&local->dynamic_ps_timer);
463 cancel_work_sync(&local->dynamic_ps_enable_work);
464 }
465}
466
467/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200468void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200469{
470 struct ieee80211_sub_if_data *sdata, *found = NULL;
471 int count = 0;
472
473 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
474 local->ps_sdata = NULL;
475 return;
476 }
477
Johannes Bergaf6b6372009-12-23 13:15:35 +0100478 if (!list_empty(&local->work_list)) {
479 local->ps_sdata = NULL;
480 goto change;
481 }
482
Johannes Berg965beda2009-04-16 13:17:24 +0200483 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +0100484 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +0200485 continue;
486 if (sdata->vif.type != NL80211_IFTYPE_STATION)
487 continue;
488 found = sdata;
489 count++;
490 }
491
Luis R. Rodriguez43f78532009-06-10 15:16:15 +0200492 if (count == 1 && found->u.mgd.powersave &&
Johannes Bergaf6b6372009-12-23 13:15:35 +0100493 found->u.mgd.associated &&
Johannes Berg56007a02010-01-26 14:19:52 +0100494 found->u.mgd.associated->beacon_ies &&
Johannes Bergb291ba12009-07-10 15:29:03 +0200495 !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
496 IEEE80211_STA_CONNECTION_POLL))) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200497 s32 beaconint_us;
498
499 if (latency < 0)
500 latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
501
502 beaconint_us = ieee80211_tu_to_usec(
503 found->vif.bss_conf.beacon_int);
504
Johannes Berg04fe2032009-04-22 18:44:37 +0200505 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200506 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +0200507 } else {
Johannes Berg56007a02010-01-26 14:19:52 +0100508 struct ieee80211_bss *bss;
Johannes Berg04fe2032009-04-22 18:44:37 +0200509 int maxslp = 1;
Johannes Berg56007a02010-01-26 14:19:52 +0100510 u8 dtimper;
Johannes Berg04fe2032009-04-22 18:44:37 +0200511
Johannes Berg56007a02010-01-26 14:19:52 +0100512 bss = (void *)found->u.mgd.associated->priv;
513 dtimper = bss->dtim_period;
514
515 /* If the TIM IE is invalid, pretend the value is 1 */
516 if (!dtimper)
517 dtimper = 1;
518 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +0200519 maxslp = min_t(int, dtimper,
520 latency / beaconint_us);
521
Johannes Berg9ccebe62009-04-23 10:32:36 +0200522 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +0100523 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +0200524 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +0200525 }
Johannes Berg10f644a2009-04-16 13:17:25 +0200526 } else {
Johannes Berg965beda2009-04-16 13:17:24 +0200527 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +0200528 }
Johannes Berg965beda2009-04-16 13:17:24 +0200529
Johannes Bergaf6b6372009-12-23 13:15:35 +0100530 change:
Johannes Berg965beda2009-04-16 13:17:24 +0200531 ieee80211_change_ps(local);
532}
533
534void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
535{
536 struct ieee80211_local *local =
537 container_of(work, struct ieee80211_local,
538 dynamic_ps_disable_work);
539
540 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
541 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
542 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
543 }
544
545 ieee80211_wake_queues_by_reason(&local->hw,
546 IEEE80211_QUEUE_STOP_REASON_PS);
547}
548
549void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
550{
551 struct ieee80211_local *local =
552 container_of(work, struct ieee80211_local,
553 dynamic_ps_enable_work);
554 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Vivek Natarajan375177b2010-02-09 14:50:28 +0530555 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200556
557 /* can only happen when PS was just disabled anyway */
558 if (!sdata)
559 return;
560
561 if (local->hw.conf.flags & IEEE80211_CONF_PS)
562 return;
563
Vivek Natarajan375177b2010-02-09 14:50:28 +0530564 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
565 (!(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)))
Johannes Berg965beda2009-04-16 13:17:24 +0200566 ieee80211_send_nullfunc(local, sdata, 1);
567
Vivek Natarajan375177b2010-02-09 14:50:28 +0530568 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) ||
569 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
570 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
571 local->hw.conf.flags |= IEEE80211_CONF_PS;
572 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
573 }
Johannes Berg965beda2009-04-16 13:17:24 +0200574}
575
576void ieee80211_dynamic_ps_timer(unsigned long data)
577{
578 struct ieee80211_local *local = (void *) data;
579
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -0700580 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200581 return;
582
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400583 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +0200584}
585
Johannes Berg60f8b392008-09-08 17:44:22 +0200586/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200587static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100588 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e82007-05-05 11:45:53 -0700589 u8 *wmm_param, size_t wmm_param_len)
590{
Jiri Bencf0706e82007-05-05 11:45:53 -0700591 struct ieee80211_tx_queue_params params;
592 size_t left;
593 int count;
Kalle Valoab133152010-01-12 10:42:31 +0200594 u8 *pos, uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700595
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200596 if (!local->ops->conf_tx)
597 return;
598
Johannes Bergaf6b6372009-12-23 13:15:35 +0100599 if (local->hw.queues < 4)
Johannes Berg3434fbd2008-05-03 00:59:37 +0200600 return;
601
602 if (!wmm_param)
603 return;
604
Jiri Bencf0706e82007-05-05 11:45:53 -0700605 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
606 return;
Kalle Valoab133152010-01-12 10:42:31 +0200607
608 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Kalle Valo50ae0cf2010-01-12 10:42:39 +0200609 uapsd_queues = local->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +0200610
Jiri Bencf0706e82007-05-05 11:45:53 -0700611 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100612 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e82007-05-05 11:45:53 -0700613 return;
Johannes Berg46900292009-02-15 12:44:28 +0100614 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700615
616 pos = wmm_param + 8;
617 left = wmm_param_len - 8;
618
619 memset(&params, 0, sizeof(params));
620
Jiri Bencf0706e82007-05-05 11:45:53 -0700621 local->wmm_acm = 0;
622 for (; left >= 4; left -= 4, pos += 4) {
623 int aci = (pos[0] >> 5) & 0x03;
624 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +0200625 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700626 int queue;
627
628 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200629 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200630 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200631 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200632 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +0200633 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
634 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700635 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200636 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200637 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200638 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200639 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +0200640 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
641 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700642 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200643 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200644 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200645 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200646 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +0200647 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
648 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700649 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200650 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700651 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200652 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200653 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200654 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +0200655 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
656 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700657 break;
658 }
659
660 params.aifs = pos[0] & 0x0f;
661 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
662 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200663 params.txop = get_unaligned_le16(pos + 2);
Kalle Valoab133152010-01-12 10:42:31 +0200664 params.uapsd = uapsd;
665
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200666#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700667 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Kalle Valoab133152010-01-12 10:42:31 +0200668 "cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
Johannes Berg0bffe402009-06-09 16:18:32 +0200669 wiphy_name(local->hw.wiphy), queue, aci, acm,
Kalle Valoab133152010-01-12 10:42:31 +0200670 params.aifs, params.cw_min, params.cw_max, params.txop,
671 params.uapsd);
Johannes Berg3330d7b2008-02-10 16:49:38 +0100672#endif
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200673 if (drv_conf_tx(local, queue, &params))
Jiri Bencf0706e82007-05-05 11:45:53 -0700674 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +0200675 "parameters for queue %d\n",
676 wiphy_name(local->hw.wiphy), queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700677 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200678
679 /* enable WMM or activate new settings */
680 local->hw.conf.flags |= IEEE80211_CONF_QOS;
681 drv_config(local, IEEE80211_CONF_CHANGE_QOS);
Jiri Bencf0706e82007-05-05 11:45:53 -0700682}
683
Johannes Berg7a5158e2008-10-08 10:59:33 +0200684static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
685 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200686{
Johannes Bergbda39332008-10-11 01:51:51 +0200687 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100688 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200689 bool use_protection;
690 bool use_short_preamble;
691 bool use_short_slot;
692
693 if (erp_valid) {
694 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
695 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
696 } else {
697 use_protection = false;
698 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
699 }
700
701 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Felix Fietkau43d35342010-01-15 03:00:48 +0100702 if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
703 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +0200704
Johannes Berg471b3ef2007-12-28 14:32:58 +0100705 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +0100706 bss_conf->use_cts_prot = use_protection;
707 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200708 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200709
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200710 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200711 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100712 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200713 }
Daniel Draked9430a32007-07-27 15:43:24 +0200714
Johannes Berg7a5158e2008-10-08 10:59:33 +0200715 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +0200716 bss_conf->use_short_slot = use_short_slot;
717 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400718 }
719
720 return changed;
721}
722
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200723static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100724 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +0200725 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700726{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100727 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100728 struct ieee80211_local *local = sdata->local;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400729
Johannes Bergae5eb022008-10-14 16:58:37 +0200730 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200731 /* set timing information */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100732 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
733 sdata->vif.bss_conf.timestamp = cbss->tsf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400734
Johannes Berg77fdaa12009-07-07 03:45:17 +0200735 bss_info_changed |= BSS_CHANGED_BEACON_INT;
736 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100737 cbss->capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700738
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100739 sdata->u.mgd.associated = cbss;
740 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100741
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700742 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
743
Johannes Bergb291ba12009-07-10 15:29:03 +0200744 /* just to be sure */
745 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
746 IEEE80211_STA_BEACON_POLL);
747
Johannes Berg01838262009-12-17 16:16:53 +0100748 /*
749 * Always handle WMM once after association regardless
750 * of the first value the AP uses. Setting -1 here has
751 * that effect because the AP values is an unsigned
752 * 4-bit value.
753 */
754 sdata->u.mgd.wmm_last_param_set = -1;
755
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200756 ieee80211_led_assoc(local, 1);
757
Johannes Bergbda39332008-10-11 01:51:51 +0200758 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200759 /*
760 * For now just always ask the driver to update the basic rateset
761 * when we have associated, we aren't checking whether it actually
762 * changed or not.
763 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200764 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
Johannes Berg9cef8732009-05-14 13:10:14 +0200765
766 /* And the BSSID changed - we're associated now */
767 bss_info_changed |= BSS_CHANGED_BSSID;
768
Juuso Oikarinena97c13c2010-03-23 09:02:34 +0200769 /* Tell the driver to monitor connection quality (if supported) */
770 if ((local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI) &&
771 sdata->vif.bss_conf.cqm_rssi_thold)
772 bss_info_changed |= BSS_CHANGED_CQM;
773
Johannes Bergae5eb022008-10-14 16:58:37 +0200774 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300775
Johannes Berg056508d2009-07-30 21:43:55 +0200776 mutex_lock(&local->iflist_mtx);
777 ieee80211_recalc_ps(local, -1);
Johannes Berg0f782312009-12-01 13:37:02 +0100778 ieee80211_recalc_smps(local, sdata);
Johannes Berg056508d2009-07-30 21:43:55 +0200779 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +0200780
John W. Linville8a5b33f2010-01-06 15:39:39 -0500781 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200782 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700783}
784
Johannes Berg63f170e2009-12-23 13:15:33 +0100785static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300786{
Johannes Berg46900292009-02-15 12:44:28 +0100787 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300788 struct ieee80211_local *local = sdata->local;
789 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200790 u32 changed = 0, config_changed = 0;
Johannes Bergb291ba12009-07-10 15:29:03 +0200791 u8 bssid[ETH_ALEN];
Tomas Winkleraa458d12008-09-09 00:32:12 +0300792
Johannes Berg77fdaa12009-07-07 03:45:17 +0200793 ASSERT_MGD_MTX(ifmgd);
794
Johannes Bergb291ba12009-07-10 15:29:03 +0200795 if (WARN_ON(!ifmgd->associated))
796 return;
797
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100798 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +0200799
Johannes Berg77fdaa12009-07-07 03:45:17 +0200800 ifmgd->associated = NULL;
801 memset(ifmgd->bssid, 0, ETH_ALEN);
802
803 /*
804 * we need to commit the associated = NULL change because the
805 * scan code uses that to determine whether this iface should
806 * go to/wake up from powersave or not -- and could otherwise
807 * wake the queues erroneously.
808 */
809 smp_mb();
810
811 /*
812 * Thus, we can only afterwards stop the queues -- to account
813 * for the case where another CPU is finishing a scan at this
814 * time -- we don't want the scan code to enable queues.
815 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300816
John W. Linville8a5b33f2010-01-06 15:39:39 -0500817 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300818 netif_carrier_off(sdata->dev);
819
Johannes Berg1fa6f4a2009-06-15 18:13:58 +0200820 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100821 sta = sta_info_get(sdata, bssid);
Sujith4cad6c72010-02-10 14:52:21 +0530822 if (sta) {
823 set_sta_flags(sta, WLAN_STA_DISASSOC);
Johannes Berg1fa6f4a2009-06-15 18:13:58 +0200824 ieee80211_sta_tear_down_BA_sessions(sta);
Sujith4cad6c72010-02-10 14:52:21 +0530825 }
Johannes Berg1fa6f4a2009-06-15 18:13:58 +0200826 rcu_read_unlock();
Tomas Winkleraa458d12008-09-09 00:32:12 +0300827
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200828 changed |= ieee80211_reset_erp_info(sdata);
829
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200830 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200831 changed |= BSS_CHANGED_ASSOC;
832 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200833
Johannes Bergaa837e12009-05-07 16:16:24 +0200834 ieee80211_set_wmm_default(sdata);
835
Johannes Berg47979382009-01-07 10:13:27 +0100836 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +0530837 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200838
Johannes Berg413ad502009-05-08 21:21:06 +0200839 /* on the next assoc, re-program HT parameters */
840 sdata->ht_opmode_valid = false;
841
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530842 local->power_constr_level = 0;
843
Kalle Valo520eb822008-12-18 23:35:27 +0200844 del_timer_sync(&local->dynamic_ps_timer);
845 cancel_work_sync(&local->dynamic_ps_enable_work);
846
Kalle Valoe0cb6862008-12-18 23:35:13 +0200847 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
848 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
849 config_changed |= IEEE80211_CONF_CHANGE_PS;
850 }
851
852 ieee80211_hw_config(local, config_changed);
Johannes Berg9cef8732009-05-14 13:10:14 +0200853
854 /* And the BSSID changed -- not very interesting here */
855 changed |= BSS_CHANGED_BSSID;
Johannes Bergae5eb022008-10-14 16:58:37 +0200856 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200857
Johannes Berg34e89502010-02-03 13:59:58 +0100858 sta_info_destroy_addr(sdata, bssid);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300859}
Jiri Bencf0706e82007-05-05 11:45:53 -0700860
Kalle Valo3cf335d2009-03-22 21:57:06 +0200861void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
862 struct ieee80211_hdr *hdr)
863{
864 /*
865 * We can postpone the mgd.timer whenever receiving unicast frames
866 * from AP because we know that the connection is working both ways
867 * at that time. But multicast frames (and hence also beacons) must
868 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +0200869 * data idle periods for sending the periodic probe request to the
870 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +0200871 */
Johannes Bergb291ba12009-07-10 15:29:03 +0200872 if (is_multicast_ether_addr(hdr->addr1))
873 return;
874
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200875 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
876 return;
877
Johannes Bergb291ba12009-07-10 15:29:03 +0200878 mod_timer(&sdata->u.mgd.conn_mon_timer,
879 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Kalle Valo3cf335d2009-03-22 21:57:06 +0200880}
Jiri Bencf0706e82007-05-05 11:45:53 -0700881
Maxim Levitskya43abf22009-07-31 18:54:12 +0300882static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
883{
884 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
885 const u8 *ssid;
886
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100887 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
888 ieee80211_send_probe_req(sdata, ifmgd->associated->bssid,
Maxim Levitskya43abf22009-07-31 18:54:12 +0300889 ssid + 2, ssid[1], NULL, 0);
890
891 ifmgd->probe_send_count++;
892 ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
893 run_again(ifmgd, ifmgd->probe_timeout);
894}
895
Johannes Bergb291ba12009-07-10 15:29:03 +0200896static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
897 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +0200898{
Kalle Valo04de8382009-03-22 21:57:35 +0200899 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +0200900 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +0200901
Johannes Berg9607e6b2009-12-23 13:15:31 +0100902 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +0200903 return;
904
Luis R. Rodriguez91a3bd72009-07-23 16:37:47 -0700905 if (sdata->local->scanning)
906 return;
907
Johannes Bergb8bc4b02009-12-23 13:15:42 +0100908 if (sdata->local->tmp_channel)
909 return;
910
Johannes Berg77fdaa12009-07-07 03:45:17 +0200911 mutex_lock(&ifmgd->mtx);
912
913 if (!ifmgd->associated)
914 goto out;
915
Michael Buescha8604022009-04-15 14:41:22 -0400916#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergb291ba12009-07-10 15:29:03 +0200917 if (beacon && net_ratelimit())
918 printk(KERN_DEBUG "%s: detected beacon loss from AP "
Johannes Berg47846c92009-11-25 17:46:19 +0100919 "- sending probe request\n", sdata->name);
Michael Buescha8604022009-04-15 14:41:22 -0400920#endif
Kalle Valo04de8382009-03-22 21:57:35 +0200921
Johannes Bergb291ba12009-07-10 15:29:03 +0200922 /*
923 * The driver/our work has already reported this event or the
924 * connection monitoring has kicked in and we have already sent
925 * a probe request. Or maybe the AP died and the driver keeps
926 * reporting until we disassociate...
927 *
928 * In either case we have to ignore the current call to this
929 * function (except for setting the correct probe reason bit)
930 * because otherwise we would reset the timer every time and
931 * never check whether we received a probe response!
932 */
933 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
934 IEEE80211_STA_CONNECTION_POLL))
935 already = true;
936
937 if (beacon)
938 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
939 else
940 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
941
942 if (already)
943 goto out;
944
Johannes Berg4e751842009-06-10 15:16:52 +0200945 mutex_lock(&sdata->local->iflist_mtx);
946 ieee80211_recalc_ps(sdata->local, -1);
947 mutex_unlock(&sdata->local->iflist_mtx);
948
Maxim Levitskya43abf22009-07-31 18:54:12 +0300949 ifmgd->probe_send_count = 0;
950 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200951 out:
952 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +0200953}
954
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200955static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata)
956{
957 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
958 struct ieee80211_local *local = sdata->local;
959 u8 bssid[ETH_ALEN];
960
961 mutex_lock(&ifmgd->mtx);
962 if (!ifmgd->associated) {
963 mutex_unlock(&ifmgd->mtx);
964 return;
965 }
966
967 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
968
969 printk(KERN_DEBUG "Connection to AP %pM lost.\n", bssid);
970
971 ieee80211_set_disassoc(sdata);
972 ieee80211_recalc_idle(local);
973 mutex_unlock(&ifmgd->mtx);
974 /*
975 * must be outside lock due to cfg80211,
976 * but that's not a problem.
977 */
978 ieee80211_send_deauth_disassoc(sdata, bssid,
979 IEEE80211_STYPE_DEAUTH,
980 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
981 NULL);
982}
983
984void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +0200985{
986 struct ieee80211_sub_if_data *sdata =
987 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200988 u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +0200989
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200990 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
991 __ieee80211_connection_loss(sdata);
992 else
993 ieee80211_mgd_probe_ap(sdata, true);
Johannes Bergb291ba12009-07-10 15:29:03 +0200994}
995
Kalle Valo04de8382009-03-22 21:57:35 +0200996void ieee80211_beacon_loss(struct ieee80211_vif *vif)
997{
998 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +0200999 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02001000
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001001 WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
1002 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001003}
1004EXPORT_SYMBOL(ieee80211_beacon_loss);
1005
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001006void ieee80211_connection_loss(struct ieee80211_vif *vif)
1007{
1008 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1009 struct ieee80211_hw *hw = &sdata->local->hw;
1010
1011 WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
1012 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1013}
1014EXPORT_SYMBOL(ieee80211_connection_loss);
1015
1016
Johannes Berg77fdaa12009-07-07 03:45:17 +02001017static enum rx_mgmt_action __must_check
1018ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001019 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001020{
Johannes Berg46900292009-02-15 12:44:28 +01001021 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001022 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001023 u16 reason_code;
1024
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001025 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001026 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001027
Johannes Berg77fdaa12009-07-07 03:45:17 +02001028 ASSERT_MGD_MTX(ifmgd);
1029
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001030 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001031
1032 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1033
Johannes Berg77fdaa12009-07-07 03:45:17 +02001034 printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001035 sdata->name, bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001036
Johannes Berg63f170e2009-12-23 13:15:33 +01001037 ieee80211_set_disassoc(sdata);
1038 ieee80211_recalc_idle(sdata->local);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001039
1040 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001041}
1042
1043
Johannes Berg77fdaa12009-07-07 03:45:17 +02001044static enum rx_mgmt_action __must_check
1045ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1046 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001047{
Johannes Berg46900292009-02-15 12:44:28 +01001048 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001049 u16 reason_code;
1050
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001051 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001052 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001053
Johannes Berg77fdaa12009-07-07 03:45:17 +02001054 ASSERT_MGD_MTX(ifmgd);
1055
1056 if (WARN_ON(!ifmgd->associated))
1057 return RX_MGMT_NONE;
1058
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001059 if (WARN_ON(memcmp(ifmgd->associated->bssid, mgmt->sa, ETH_ALEN)))
Johannes Berg77fdaa12009-07-07 03:45:17 +02001060 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001061
1062 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1063
Johannes Berg0ff71612009-09-26 14:45:41 +02001064 printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001065 sdata->name, mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001066
Johannes Berg63f170e2009-12-23 13:15:33 +01001067 ieee80211_set_disassoc(sdata);
Johannes Bergbc83b682009-11-29 12:19:06 +01001068 ieee80211_recalc_idle(sdata->local);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001069 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001070}
1071
1072
Johannes Bergaf6b6372009-12-23 13:15:35 +01001073static bool ieee80211_assoc_success(struct ieee80211_work *wk,
1074 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001075{
Johannes Bergaf6b6372009-12-23 13:15:35 +01001076 struct ieee80211_sub_if_data *sdata = wk->sdata;
Johannes Berg46900292009-02-15 12:44:28 +01001077 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001078 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001079 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001080 struct sta_info *sta;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001081 struct cfg80211_bss *cbss = wk->assoc.bss;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001082 u8 *pos;
Johannes Berg881d9482009-01-21 15:13:48 +01001083 u32 rates, basic_rates;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001084 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001085 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001086 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Bergae5eb022008-10-14 16:58:37 +02001087 u32 changed = 0;
Johannes Berg5d1ec852009-12-02 12:43:43 +01001088 int i, j, err;
1089 bool have_higher_than_11mbit = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001090 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001091
Johannes Bergaf6b6372009-12-23 13:15:35 +01001092 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07001093
Jiri Bencf0706e82007-05-05 11:45:53 -07001094 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001095 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07001096
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001097 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1098 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Johannes Berg47846c92009-11-25 17:46:19 +01001099 "set\n", sdata->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001100 aid &= ~(BIT(15) | BIT(14));
1101
Johannes Bergaf6b6372009-12-23 13:15:35 +01001102 pos = mgmt->u.assoc_resp.variable;
1103 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1104
Jiri Bencf0706e82007-05-05 11:45:53 -07001105 if (!elems.supp_rates) {
1106 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001107 sdata->name);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001108 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001109 }
1110
Johannes Berg46900292009-02-15 12:44:28 +01001111 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001112
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001113 sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001114 if (!sta) {
Johannes Berg5d1ec852009-12-02 12:43:43 +01001115 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
1116 " the AP\n", sdata->name);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001117 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001118 }
1119
Johannes Berg5d1ec852009-12-02 12:43:43 +01001120 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1121 WLAN_STA_ASSOC_AP);
1122 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1123 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1124
Jiri Bencf0706e82007-05-05 11:45:53 -07001125 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001126 basic_rates = 0;
1127 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1128
Jiri Bencf0706e82007-05-05 11:45:53 -07001129 for (i = 0; i < elems.supp_rates_len; i++) {
1130 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001131 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001132
1133 if (rate > 110)
1134 have_higher_than_11mbit = true;
1135
1136 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001137 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001138 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001139 if (is_basic)
1140 basic_rates |= BIT(j);
1141 break;
1142 }
Johannes Berg8318d782008-01-24 19:38:38 +01001143 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001144 }
Johannes Berg8318d782008-01-24 19:38:38 +01001145
Jiri Bencf0706e82007-05-05 11:45:53 -07001146 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1147 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001148 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001149
1150 if (rate > 110)
1151 have_higher_than_11mbit = true;
1152
1153 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001154 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001155 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001156 if (is_basic)
1157 basic_rates |= BIT(j);
1158 break;
1159 }
Johannes Berg8318d782008-01-24 19:38:38 +01001160 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001161 }
Johannes Berg8318d782008-01-24 19:38:38 +01001162
Johannes Berg323ce792008-09-11 02:45:11 +02001163 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001164 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001165
1166 /* cf. IEEE 802.11 9.2.12 */
1167 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1168 have_higher_than_11mbit)
1169 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1170 else
1171 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001172
Johannes Bergab1faea2009-07-01 21:41:17 +02001173 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001174 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001175 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001176
1177 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001178
Johannes Berg4b7679a2008-09-18 18:14:18 +02001179 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001180
Johannes Berg46900292009-02-15 12:44:28 +01001181 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001182 set_sta_flags(sta, WLAN_STA_MFP);
1183
Johannes Bergddf4ac52008-10-22 11:41:38 +02001184 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001185 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001186
Johannes Berg5d1ec852009-12-02 12:43:43 +01001187 err = sta_info_insert(sta);
1188 sta = NULL;
1189 if (err) {
1190 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1191 " the AP (error %d)\n", sdata->name, err);
Johannes Berg90be5612010-01-08 19:01:07 +01001192 return false;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001193 }
1194
Johannes Bergddf4ac52008-10-22 11:41:38 +02001195 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001196 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001197 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02001198 else
1199 ieee80211_set_wmm_default(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07001200
Johannes Berge4da8c32009-12-23 13:15:43 +01001201 local->oper_channel = wk->chan;
1202
Johannes Bergae5eb022008-10-14 16:58:37 +02001203 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Bergaf6b6372009-12-23 13:15:35 +01001204 (sdata->local->hw.queues >= 4) &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001205 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001206 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001207 cbss->bssid, ap_ht_cap_flags);
Johannes Bergae5eb022008-10-14 16:58:37 +02001208
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001209 /* set AID and assoc capability,
1210 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001211 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001212 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001213 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001214
Kalle Valo15b7b062009-03-22 21:57:14 +02001215 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01001216 * If we're using 4-addr mode, let the AP know that we're
1217 * doing so, so that it can create the STA VLAN on its side
1218 */
1219 if (ifmgd->use_4addr)
1220 ieee80211_send_4addr_nullfunc(local, sdata);
1221
1222 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02001223 * Start timer to probe the connection to the AP now.
1224 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02001225 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001226 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1227 mod_beacon_timer(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02001228
Johannes Bergaf6b6372009-12-23 13:15:35 +01001229 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001230}
1231
1232
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001233static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001234 struct ieee80211_mgmt *mgmt,
1235 size_t len,
1236 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001237 struct ieee802_11_elems *elems,
1238 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001239{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001240 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001241 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001242 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001243 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01001244 bool need_ps = false;
1245
1246 if (sdata->u.mgd.associated) {
1247 bss = (void *)sdata->u.mgd.associated->priv;
1248 /* not previously set so we may need to recalc */
1249 need_ps = !bss->dtim_period;
1250 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001251
Johannes Berg5bda6172008-09-08 11:05:10 +02001252 if (elems->ds_params && elems->ds_params_len == 1)
1253 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1254 else
1255 freq = rx_status->freq;
1256
1257 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1258
1259 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1260 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001261
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001262 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001263 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001264 if (bss)
1265 ieee80211_rx_bss_put(local, bss);
1266
1267 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001268 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001269
Johannes Berg56007a02010-01-26 14:19:52 +01001270 if (need_ps) {
1271 mutex_lock(&local->iflist_mtx);
1272 ieee80211_recalc_ps(local, -1);
1273 mutex_unlock(&local->iflist_mtx);
1274 }
1275
Sujithc481ec92009-01-06 09:28:37 +05301276 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001277 (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001278 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301279 struct ieee80211_channel_sw_ie *sw_elem =
1280 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001281 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
Sujithc481ec92009-01-06 09:28:37 +05301282 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001283}
1284
1285
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001286static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01001287 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001288{
Johannes Bergaf6b6372009-12-23 13:15:35 +01001289 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02001290 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001291 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
1292 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001293 struct ieee802_11_elems elems;
1294
Kalle Valo15b7b062009-03-22 21:57:14 +02001295 ifmgd = &sdata->u.mgd;
1296
Johannes Berg77fdaa12009-07-07 03:45:17 +02001297 ASSERT_MGD_MTX(ifmgd);
1298
Johannes Berg47846c92009-11-25 17:46:19 +01001299 if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001300 return; /* ignore ProbeResp to foreign address */
1301
Ester Kummerae6a44e2008-06-27 18:54:48 +03001302 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1303 if (baselen > len)
1304 return;
1305
1306 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1307 &elems);
1308
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001309 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001310
Johannes Berg77fdaa12009-07-07 03:45:17 +02001311 if (ifmgd->associated &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001312 memcmp(mgmt->bssid, ifmgd->associated->bssid, ETH_ALEN) == 0 &&
Johannes Bergb291ba12009-07-10 15:29:03 +02001313 ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1314 IEEE80211_STA_CONNECTION_POLL)) {
1315 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1316 IEEE80211_STA_BEACON_POLL);
Johannes Berg4e751842009-06-10 15:16:52 +02001317 mutex_lock(&sdata->local->iflist_mtx);
1318 ieee80211_recalc_ps(sdata->local, -1);
1319 mutex_unlock(&sdata->local->iflist_mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02001320 /*
1321 * We've received a probe response, but are not sure whether
1322 * we have or will be receiving any beacons or data, so let's
1323 * schedule the timers again, just in case.
1324 */
1325 mod_beacon_timer(sdata);
1326 mod_timer(&ifmgd->conn_mon_timer,
1327 round_jiffies_up(jiffies +
1328 IEEE80211_CONNECTION_IDLE_TIME));
Johannes Berg4e751842009-06-10 15:16:52 +02001329 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001330}
1331
Johannes Bergd91f36d2009-04-16 13:17:26 +02001332/*
1333 * This is the canonical list of information elements we care about,
1334 * the filter code also gives us all changes to the Microsoft OUI
1335 * (00:50:F2) vendor IE which is used for WMM which we need to track.
1336 *
1337 * We implement beacon filtering in software since that means we can
1338 * avoid processing the frame here and in cfg80211, and userspace
1339 * will not be able to tell whether the hardware supports it or not.
1340 *
1341 * XXX: This list needs to be dynamic -- userspace needs to be able to
1342 * add items it requires. It also needs to be able to tell us to
1343 * look out for other vendor IEs.
1344 */
1345static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02001346 (1ULL << WLAN_EID_COUNTRY) |
1347 (1ULL << WLAN_EID_ERP_INFO) |
1348 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1349 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1350 (1ULL << WLAN_EID_HT_CAPABILITY) |
1351 (1ULL << WLAN_EID_HT_INFORMATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001352
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001353static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001354 struct ieee80211_mgmt *mgmt,
1355 size_t len,
1356 struct ieee80211_rx_status *rx_status)
1357{
Johannes Bergd91f36d2009-04-16 13:17:26 +02001358 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001359 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001360 size_t baselen;
1361 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001362 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001363 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001364 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001365 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001366 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001367 u8 *bssid;
1368
1369 ASSERT_MGD_MTX(ifmgd);
Jiri Bencf0706e82007-05-05 11:45:53 -07001370
Ester Kummerae6a44e2008-06-27 18:54:48 +03001371 /* Process beacon from the current BSS */
1372 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1373 if (baselen > len)
1374 return;
1375
Johannes Bergd91f36d2009-04-16 13:17:26 +02001376 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e82007-05-05 11:45:53 -07001377 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001378
Johannes Bergb291ba12009-07-10 15:29:03 +02001379 /*
1380 * We might have received a number of frames, among them a
1381 * disassoc frame and a beacon...
1382 */
1383 if (!ifmgd->associated)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001384 return;
1385
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001386 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001387
Johannes Bergb291ba12009-07-10 15:29:03 +02001388 /*
1389 * And in theory even frames from a different AP we were just
1390 * associated to a split-second ago!
1391 */
1392 if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001393 return;
1394
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001395 /* Track average RSSI from the Beacon frames of the current AP */
1396 ifmgd->last_beacon_signal = rx_status->signal;
1397 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
1398 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
1399 ifmgd->ave_beacon_signal = rx_status->signal;
1400 ifmgd->last_cqm_event_signal = 0;
1401 } else {
1402 ifmgd->ave_beacon_signal =
1403 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
1404 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
1405 ifmgd->ave_beacon_signal) / 16;
1406 }
1407 if (bss_conf->cqm_rssi_thold &&
1408 !(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1409 int sig = ifmgd->ave_beacon_signal / 16;
1410 int last_event = ifmgd->last_cqm_event_signal;
1411 int thold = bss_conf->cqm_rssi_thold;
1412 int hyst = bss_conf->cqm_rssi_hyst;
1413 if (sig < thold &&
1414 (last_event == 0 || sig < last_event - hyst)) {
1415 ifmgd->last_cqm_event_signal = sig;
1416 ieee80211_cqm_rssi_notify(
1417 &sdata->vif,
1418 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
1419 GFP_KERNEL);
1420 } else if (sig > thold &&
1421 (last_event == 0 || sig > last_event + hyst)) {
1422 ifmgd->last_cqm_event_signal = sig;
1423 ieee80211_cqm_rssi_notify(
1424 &sdata->vif,
1425 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
1426 GFP_KERNEL);
1427 }
1428 }
1429
Johannes Bergb291ba12009-07-10 15:29:03 +02001430 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Jouni Malinen92778182009-05-14 21:15:36 +03001431#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1432 if (net_ratelimit()) {
1433 printk(KERN_DEBUG "%s: cancelling probereq poll due "
Johannes Berg47846c92009-11-25 17:46:19 +01001434 "to a received beacon\n", sdata->name);
Jouni Malinen92778182009-05-14 21:15:36 +03001435 }
1436#endif
Johannes Bergb291ba12009-07-10 15:29:03 +02001437 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Johannes Berg4e751842009-06-10 15:16:52 +02001438 mutex_lock(&local->iflist_mtx);
1439 ieee80211_recalc_ps(local, -1);
1440 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03001441 }
1442
Johannes Bergb291ba12009-07-10 15:29:03 +02001443 /*
1444 * Push the beacon loss detection into the future since
1445 * we are processing a beacon from the AP just now.
1446 */
1447 mod_beacon_timer(sdata);
1448
Johannes Bergd91f36d2009-04-16 13:17:26 +02001449 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1450 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1451 len - baselen, &elems,
1452 care_about_ies, ncrc);
1453
1454 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02001455 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1456 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001457
Jouni Malinen30196672009-05-19 17:01:43 +03001458 if (ncrc != ifmgd->beacon_crc) {
1459 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1460 true);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001461
Jouni Malinen30196672009-05-19 17:01:43 +03001462 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1463 elems.wmm_param_len);
1464 }
Johannes Bergfe3fa822008-09-08 11:05:09 +02001465
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301466 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001467 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001468 if (local->hw.conf.dynamic_ps_timeout > 0) {
1469 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1470 ieee80211_hw_config(local,
1471 IEEE80211_CONF_CHANGE_PS);
1472 ieee80211_send_nullfunc(local, sdata, 0);
1473 } else {
1474 local->pspolling = true;
1475
1476 /*
1477 * Here is assumed that the driver will be
1478 * able to send ps-poll frame and receive a
1479 * response even though power save mode is
1480 * enabled, but some drivers might require
1481 * to disable power save here. This needs
1482 * to be investigated.
1483 */
1484 ieee80211_send_pspoll(local, sdata);
1485 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001486 }
1487 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001488
Jouni Malinen30196672009-05-19 17:01:43 +03001489 if (ncrc == ifmgd->beacon_crc)
1490 return;
1491 ifmgd->beacon_crc = ncrc;
1492
Johannes Berg7a5158e2008-10-08 10:59:33 +02001493 if (elems.erp_info && elems.erp_info_len >= 1) {
1494 erp_valid = true;
1495 erp_value = elems.erp_info[0];
1496 } else {
1497 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001498 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001499 changed |= ieee80211_handle_bss_capability(sdata,
1500 le16_to_cpu(mgmt->u.beacon.capab_info),
1501 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001502
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001503
Vasanthakumar Thiagarajan53d6f81c2009-02-11 22:18:49 +05301504 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001505 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001506 struct sta_info *sta;
1507 struct ieee80211_supported_band *sband;
1508 u16 ap_ht_cap_flags;
1509
1510 rcu_read_lock();
1511
Johannes Bergabe60632009-11-25 17:46:18 +01001512 sta = sta_info_get(sdata, bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001513 if (WARN_ON(!sta)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001514 rcu_read_unlock();
1515 return;
1516 }
1517
1518 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1519
1520 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1521 elems.ht_cap_elem, &sta->sta.ht_cap);
1522
1523 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1524
1525 rcu_read_unlock();
1526
1527 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001528 bssid, ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001529 }
1530
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001531 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001532 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301533 /* TODO: IBSS also needs this */
1534 if (elems.pwr_constr_elem)
1535 ieee80211_handle_pwr_constr(sdata,
1536 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1537 elems.pwr_constr_elem,
1538 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001539 }
1540
Johannes Berg471b3ef2007-12-28 14:32:58 +01001541 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001542}
1543
Johannes Berg46900292009-02-15 12:44:28 +01001544ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
Johannes Bergf1d58c22009-06-17 13:13:00 +02001545 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001546{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001547 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001548 struct ieee80211_mgmt *mgmt;
1549 u16 fc;
1550
1551 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001552 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001553
1554 mgmt = (struct ieee80211_mgmt *) skb->data;
1555 fc = le16_to_cpu(mgmt->frame_control);
1556
1557 switch (fc & IEEE80211_FCTL_STYPE) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001558 case IEEE80211_STYPE_PROBE_RESP:
1559 case IEEE80211_STYPE_BEACON:
Jiri Bencf0706e82007-05-05 11:45:53 -07001560 case IEEE80211_STYPE_DEAUTH:
1561 case IEEE80211_STYPE_DISASSOC:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001562 case IEEE80211_STYPE_ACTION:
Johannes Berg46900292009-02-15 12:44:28 +01001563 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001564 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
Johannes Berg46900292009-02-15 12:44:28 +01001565 return RX_QUEUED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001566 }
1567
Johannes Berg46900292009-02-15 12:44:28 +01001568 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001569}
1570
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001571static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001572 struct sk_buff *skb)
1573{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001574 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001575 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001576 struct ieee80211_mgmt *mgmt;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001577 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001578 u16 fc;
1579
Jiri Bencf0706e82007-05-05 11:45:53 -07001580 rx_status = (struct ieee80211_rx_status *) skb->cb;
1581 mgmt = (struct ieee80211_mgmt *) skb->data;
1582 fc = le16_to_cpu(mgmt->frame_control);
1583
Johannes Berg77fdaa12009-07-07 03:45:17 +02001584 mutex_lock(&ifmgd->mtx);
1585
1586 if (ifmgd->associated &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001587 memcmp(ifmgd->associated->bssid, mgmt->bssid, ETH_ALEN) == 0) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02001588 switch (fc & IEEE80211_FCTL_STYPE) {
1589 case IEEE80211_STYPE_BEACON:
1590 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1591 rx_status);
1592 break;
1593 case IEEE80211_STYPE_PROBE_RESP:
Johannes Bergaf6b6372009-12-23 13:15:35 +01001594 ieee80211_rx_mgmt_probe_resp(sdata, skb);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001595 break;
1596 case IEEE80211_STYPE_DEAUTH:
Johannes Berg63f170e2009-12-23 13:15:33 +01001597 rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001598 break;
1599 case IEEE80211_STYPE_DISASSOC:
1600 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1601 break;
1602 case IEEE80211_STYPE_ACTION:
Felix Fietkaud7907442010-01-07 20:23:53 +01001603 if (mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
1604 break;
1605
Johannes Berg77fdaa12009-07-07 03:45:17 +02001606 ieee80211_sta_process_chanswitch(sdata,
1607 &mgmt->u.action.u.chan_switch.sw_elem,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001608 (void *)ifmgd->associated->priv);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001609 break;
1610 }
1611 mutex_unlock(&ifmgd->mtx);
1612
1613 switch (rma) {
1614 case RX_MGMT_NONE:
1615 /* no action */
1616 break;
1617 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02001618 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001619 break;
1620 case RX_MGMT_CFG80211_DISASSOC:
Holger Schurigce470612009-10-13 13:28:13 +02001621 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001622 break;
1623 default:
1624 WARN(1, "unexpected: %d", rma);
1625 }
1626 goto out;
1627 }
1628
Johannes Berg77fdaa12009-07-07 03:45:17 +02001629 mutex_unlock(&ifmgd->mtx);
1630
Johannes Berg63f170e2009-12-23 13:15:33 +01001631 if (skb->len >= 24 + 2 /* mgmt + deauth reason */ &&
Johannes Bergaf6b6372009-12-23 13:15:35 +01001632 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +02001633 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001634
1635 out:
Jiri Bencf0706e82007-05-05 11:45:53 -07001636 kfree_skb(skb);
1637}
1638
Johannes Berg9c6bd792008-09-11 00:01:52 +02001639static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07001640{
1641 struct ieee80211_sub_if_data *sdata =
1642 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01001643 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001644 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001645
Johannes Berg5bb644a2009-05-17 11:40:42 +02001646 if (local->quiescing) {
1647 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
1648 return;
1649 }
1650
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001651 ieee80211_queue_work(&local->hw, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07001652}
1653
Johannes Berg9c6bd792008-09-11 00:01:52 +02001654static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02001655{
1656 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01001657 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02001658 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001659 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001660 struct sk_buff *skb;
1661
Johannes Berg9607e6b2009-12-23 13:15:31 +01001662 if (!ieee80211_sdata_running(sdata))
Johannes Berg60f8b392008-09-08 17:44:22 +02001663 return;
1664
Helmut Schaafbe9c422009-07-23 12:14:04 +02001665 if (local->scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02001666 return;
1667
Johannes Berg46900292009-02-15 12:44:28 +01001668 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02001669 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001670
1671 /*
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001672 * ieee80211_queue_work() should have picked up most cases,
1673 * here we'll pick the the rest.
Johannes Berg5bb644a2009-05-17 11:40:42 +02001674 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001675 if (WARN(local->suspended, "STA MLME work scheduled while "
1676 "going to suspend\n"))
Johannes Berg5bb644a2009-05-17 11:40:42 +02001677 return;
1678
Johannes Berg46900292009-02-15 12:44:28 +01001679 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001680
Johannes Berg77fdaa12009-07-07 03:45:17 +02001681 /* first process frames to avoid timing out while a frame is pending */
Johannes Berg46900292009-02-15 12:44:28 +01001682 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02001683 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1684
Johannes Berg77fdaa12009-07-07 03:45:17 +02001685 /* then process the rest of the work */
1686 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02001687
Johannes Bergb291ba12009-07-10 15:29:03 +02001688 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1689 IEEE80211_STA_CONNECTION_POLL) &&
1690 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03001691 u8 bssid[ETH_ALEN];
1692
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001693 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +02001694 if (time_is_after_jiffies(ifmgd->probe_timeout))
1695 run_again(ifmgd, ifmgd->probe_timeout);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001696
1697 else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) {
1698#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1699 printk(KERN_DEBUG "No probe response from AP %pM"
1700 " after %dms, try %d\n", bssid,
1701 (1000 * IEEE80211_PROBE_WAIT)/HZ,
1702 ifmgd->probe_send_count);
1703#endif
1704 ieee80211_mgd_probe_ap_send(sdata);
1705 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02001706 /*
1707 * We actually lost the connection ... or did we?
1708 * Let's make sure!
1709 */
1710 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1711 IEEE80211_STA_BEACON_POLL);
Johannes Bergb291ba12009-07-10 15:29:03 +02001712 printk(KERN_DEBUG "No probe response from AP %pM"
1713 " after %dms, disconnecting.\n",
1714 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
Johannes Berg63f170e2009-12-23 13:15:33 +01001715 ieee80211_set_disassoc(sdata);
Johannes Bergbc83b682009-11-29 12:19:06 +01001716 ieee80211_recalc_idle(local);
Johannes Bergb291ba12009-07-10 15:29:03 +02001717 mutex_unlock(&ifmgd->mtx);
1718 /*
1719 * must be outside lock due to cfg80211,
1720 * but that's not a problem.
1721 */
1722 ieee80211_send_deauth_disassoc(sdata, bssid,
1723 IEEE80211_STYPE_DEAUTH,
1724 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
1725 NULL);
1726 mutex_lock(&ifmgd->mtx);
1727 }
1728 }
1729
Johannes Berg77fdaa12009-07-07 03:45:17 +02001730 mutex_unlock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02001731}
Johannes Berg0a51b272008-09-08 17:44:25 +02001732
Johannes Bergb291ba12009-07-10 15:29:03 +02001733static void ieee80211_sta_bcn_mon_timer(unsigned long data)
1734{
1735 struct ieee80211_sub_if_data *sdata =
1736 (struct ieee80211_sub_if_data *) data;
1737 struct ieee80211_local *local = sdata->local;
1738
1739 if (local->quiescing)
1740 return;
1741
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001742 ieee80211_queue_work(&sdata->local->hw,
1743 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001744}
1745
1746static void ieee80211_sta_conn_mon_timer(unsigned long data)
1747{
1748 struct ieee80211_sub_if_data *sdata =
1749 (struct ieee80211_sub_if_data *) data;
1750 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1751 struct ieee80211_local *local = sdata->local;
1752
1753 if (local->quiescing)
1754 return;
1755
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001756 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001757}
1758
1759static void ieee80211_sta_monitor_work(struct work_struct *work)
1760{
1761 struct ieee80211_sub_if_data *sdata =
1762 container_of(work, struct ieee80211_sub_if_data,
1763 u.mgd.monitor_work);
1764
1765 ieee80211_mgd_probe_ap(sdata, false);
1766}
1767
Johannes Berga1678f82008-09-11 00:01:47 +02001768static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
1769{
Kalle Vaload935682009-04-19 08:47:19 +03001770 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergb291ba12009-07-10 15:29:03 +02001771 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
1772 IEEE80211_STA_CONNECTION_POLL);
Kalle Vaload935682009-04-19 08:47:19 +03001773
Johannes Bergb291ba12009-07-10 15:29:03 +02001774 /* let's probe the connection once */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001775 ieee80211_queue_work(&sdata->local->hw,
Johannes Bergb291ba12009-07-10 15:29:03 +02001776 &sdata->u.mgd.monitor_work);
1777 /* and do all the other regular work too */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001778 ieee80211_queue_work(&sdata->local->hw,
Johannes Berg46900292009-02-15 12:44:28 +01001779 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03001780 }
Johannes Berga1678f82008-09-11 00:01:47 +02001781}
1782
Johannes Berg5bb644a2009-05-17 11:40:42 +02001783#ifdef CONFIG_PM
1784void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
1785{
1786 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1787
1788 /*
1789 * we need to use atomic bitops for the running bits
1790 * only because both timers might fire at the same
1791 * time -- the code here is properly synchronised.
1792 */
1793
1794 cancel_work_sync(&ifmgd->work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001795 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001796 if (del_timer_sync(&ifmgd->timer))
1797 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
1798
1799 cancel_work_sync(&ifmgd->chswitch_work);
1800 if (del_timer_sync(&ifmgd->chswitch_timer))
1801 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02001802
1803 cancel_work_sync(&ifmgd->monitor_work);
1804 /* these will just be re-established on connection */
1805 del_timer_sync(&ifmgd->conn_mon_timer);
1806 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001807}
1808
1809void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
1810{
1811 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1812
1813 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
1814 add_timer(&ifmgd->timer);
1815 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
1816 add_timer(&ifmgd->chswitch_timer);
1817}
1818#endif
1819
Johannes Berg9c6bd792008-09-11 00:01:52 +02001820/* interface setup */
1821void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
1822{
Johannes Berg46900292009-02-15 12:44:28 +01001823 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001824
Johannes Berg46900292009-02-15 12:44:28 +01001825 ifmgd = &sdata->u.mgd;
1826 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02001827 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01001828 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001829 INIT_WORK(&ifmgd->beacon_connection_loss_work,
1830 ieee80211_beacon_connection_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01001831 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02001832 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001833 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
1834 (unsigned long) sdata);
1835 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
1836 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001837 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05301838 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001839 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001840
Johannes Bergab1faea2009-07-01 21:41:17 +02001841 ifmgd->flags = 0;
Johannes Bergbbbdff92009-04-16 13:27:42 +02001842
Johannes Berg77fdaa12009-07-07 03:45:17 +02001843 mutex_init(&ifmgd->mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01001844
1845 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
1846 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
1847 else
1848 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001849}
1850
1851/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02001852void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
1853{
1854 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02001855
1856 /* Restart STA timers */
1857 rcu_read_lock();
1858 list_for_each_entry_rcu(sdata, &local->interfaces, list)
1859 ieee80211_restart_sta_timer(sdata);
1860 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02001861}
Johannes Berg10f644a2009-04-16 13:17:25 +02001862
1863int ieee80211_max_network_latency(struct notifier_block *nb,
1864 unsigned long data, void *dummy)
1865{
1866 s32 latency_usec = (s32) data;
1867 struct ieee80211_local *local =
1868 container_of(nb, struct ieee80211_local,
1869 network_latency_notifier);
1870
1871 mutex_lock(&local->iflist_mtx);
1872 ieee80211_recalc_ps(local, latency_usec);
1873 mutex_unlock(&local->iflist_mtx);
1874
1875 return 0;
1876}
Johannes Berg77fdaa12009-07-07 03:45:17 +02001877
1878/* config hooks */
Johannes Bergaf6b6372009-12-23 13:15:35 +01001879static enum work_done_result
1880ieee80211_probe_auth_done(struct ieee80211_work *wk,
1881 struct sk_buff *skb)
1882{
1883 if (!skb) {
1884 cfg80211_send_auth_timeout(wk->sdata->dev, wk->filter_ta);
1885 return WORK_DONE_DESTROY;
1886 }
1887
1888 if (wk->type == IEEE80211_WORK_AUTH) {
1889 cfg80211_send_rx_auth(wk->sdata->dev, skb->data, skb->len);
1890 return WORK_DONE_DESTROY;
1891 }
1892
1893 mutex_lock(&wk->sdata->u.mgd.mtx);
1894 ieee80211_rx_mgmt_probe_resp(wk->sdata, skb);
1895 mutex_unlock(&wk->sdata->u.mgd.mtx);
1896
1897 wk->type = IEEE80211_WORK_AUTH;
1898 wk->probe_auth.tries = 0;
1899 return WORK_DONE_REQUEUE;
1900}
1901
Johannes Berg77fdaa12009-07-07 03:45:17 +02001902int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
1903 struct cfg80211_auth_request *req)
1904{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001905 const u8 *ssid;
Johannes Bergf679f652009-12-23 13:15:34 +01001906 struct ieee80211_work *wk;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001907 u16 auth_alg;
1908
1909 switch (req->auth_type) {
1910 case NL80211_AUTHTYPE_OPEN_SYSTEM:
1911 auth_alg = WLAN_AUTH_OPEN;
1912 break;
1913 case NL80211_AUTHTYPE_SHARED_KEY:
1914 auth_alg = WLAN_AUTH_SHARED_KEY;
1915 break;
1916 case NL80211_AUTHTYPE_FT:
1917 auth_alg = WLAN_AUTH_FT;
1918 break;
1919 case NL80211_AUTHTYPE_NETWORK_EAP:
1920 auth_alg = WLAN_AUTH_LEAP;
1921 break;
1922 default:
1923 return -EOPNOTSUPP;
1924 }
1925
1926 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
1927 if (!wk)
1928 return -ENOMEM;
1929
Joe Perches5e124bd2010-01-08 22:33:38 -08001930 memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001931
1932 if (req->ie && req->ie_len) {
1933 memcpy(wk->ie, req->ie, req->ie_len);
1934 wk->ie_len = req->ie_len;
1935 }
1936
Johannes Bergfffd0932009-07-08 14:22:54 +02001937 if (req->key && req->key_len) {
Johannes Bergaf6b6372009-12-23 13:15:35 +01001938 wk->probe_auth.key_len = req->key_len;
1939 wk->probe_auth.key_idx = req->key_idx;
1940 memcpy(wk->probe_auth.key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02001941 }
1942
Johannes Berg77fdaa12009-07-07 03:45:17 +02001943 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
Johannes Bergaf6b6372009-12-23 13:15:35 +01001944 memcpy(wk->probe_auth.ssid, ssid + 2, ssid[1]);
1945 wk->probe_auth.ssid_len = ssid[1];
Johannes Berg77fdaa12009-07-07 03:45:17 +02001946
Johannes Bergaf6b6372009-12-23 13:15:35 +01001947 wk->probe_auth.algorithm = auth_alg;
1948 wk->probe_auth.privacy = req->bss->capability & WLAN_CAPABILITY_PRIVACY;
Johannes Bergf679f652009-12-23 13:15:34 +01001949
Johannes Berg070bb542010-02-03 13:57:46 +01001950 /* if we already have a probe, don't probe again */
1951 if (req->bss->proberesp_ies)
1952 wk->type = IEEE80211_WORK_AUTH;
1953 else
1954 wk->type = IEEE80211_WORK_DIRECT_PROBE;
Johannes Bergf679f652009-12-23 13:15:34 +01001955 wk->chan = req->bss->channel;
Johannes Bergaf6b6372009-12-23 13:15:35 +01001956 wk->sdata = sdata;
1957 wk->done = ieee80211_probe_auth_done;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001958
Johannes Bergaf6b6372009-12-23 13:15:35 +01001959 ieee80211_add_work(wk);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001960 return 0;
1961}
1962
Johannes Bergaf6b6372009-12-23 13:15:35 +01001963static enum work_done_result ieee80211_assoc_done(struct ieee80211_work *wk,
1964 struct sk_buff *skb)
1965{
1966 struct ieee80211_mgmt *mgmt;
1967 u16 status;
1968
1969 if (!skb) {
1970 cfg80211_send_assoc_timeout(wk->sdata->dev, wk->filter_ta);
1971 return WORK_DONE_DESTROY;
1972 }
1973
1974 mgmt = (void *)skb->data;
1975 status = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1976
1977 if (status == WLAN_STATUS_SUCCESS) {
1978 mutex_lock(&wk->sdata->u.mgd.mtx);
1979 if (!ieee80211_assoc_success(wk, mgmt, skb->len)) {
1980 mutex_unlock(&wk->sdata->u.mgd.mtx);
1981 /* oops -- internal error -- send timeout for now */
1982 cfg80211_send_assoc_timeout(wk->sdata->dev,
1983 wk->filter_ta);
1984 return WORK_DONE_DESTROY;
1985 }
1986 mutex_unlock(&wk->sdata->u.mgd.mtx);
1987 }
1988
1989 cfg80211_send_rx_assoc(wk->sdata->dev, skb->data, skb->len);
1990 return WORK_DONE_DESTROY;
1991}
1992
Johannes Berg77fdaa12009-07-07 03:45:17 +02001993int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
1994 struct cfg80211_assoc_request *req)
1995{
1996 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001997 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Bergf679f652009-12-23 13:15:34 +01001998 struct ieee80211_work *wk;
Johannes Berg63f170e2009-12-23 13:15:33 +01001999 const u8 *ssid;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002000 int i;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002001
2002 mutex_lock(&ifmgd->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002003 if (ifmgd->associated) {
Jouni Malinen9c87ba62010-02-28 12:13:46 +02002004 if (!req->prev_bssid ||
2005 memcmp(req->prev_bssid, ifmgd->associated->bssid,
2006 ETH_ALEN)) {
2007 /*
2008 * We are already associated and the request was not a
2009 * reassociation request from the current BSS, so
2010 * reject it.
2011 */
2012 mutex_unlock(&ifmgd->mtx);
2013 return -EALREADY;
2014 }
2015
2016 /* Trying to reassociate - clear previous association state */
2017 ieee80211_set_disassoc(sdata);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002018 }
2019 mutex_unlock(&ifmgd->mtx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002020
Johannes Berg63f170e2009-12-23 13:15:33 +01002021 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002022 if (!wk)
2023 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002024
Johannes Berg77fdaa12009-07-07 03:45:17 +02002025 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
Vivek Natarajan375177b2010-02-09 14:50:28 +05302026 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002027
2028 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2029 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2030 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2031 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2032 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2033
Johannes Berg77fdaa12009-07-07 03:45:17 +02002034
2035 if (req->ie && req->ie_len) {
2036 memcpy(wk->ie, req->ie, req->ie_len);
2037 wk->ie_len = req->ie_len;
2038 } else
2039 wk->ie_len = 0;
2040
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002041 wk->assoc.bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01002042
Johannes Bergaf6b6372009-12-23 13:15:35 +01002043 memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
Johannes Bergf679f652009-12-23 13:15:34 +01002044
Johannes Bergaf6b6372009-12-23 13:15:35 +01002045 /* new association always uses requested smps mode */
2046 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
2047 if (ifmgd->powersave)
2048 ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
2049 else
2050 ifmgd->ap_smps = IEEE80211_SMPS_OFF;
2051 } else
2052 ifmgd->ap_smps = ifmgd->req_smps;
2053
2054 wk->assoc.smps = ifmgd->ap_smps;
Johannes Berg77c81442009-12-23 13:15:37 +01002055 /*
2056 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
2057 * We still associate in non-HT mode (11a/b/g) if any one of these
2058 * ciphers is configured as pairwise.
2059 * We can set this to true for non-11n hardware, that'll be checked
2060 * separately along with the peer capabilities.
2061 */
Johannes Bergaf6b6372009-12-23 13:15:35 +01002062 wk->assoc.use_11n = !(ifmgd->flags & IEEE80211_STA_DISABLE_11N);
Johannes Bergf679f652009-12-23 13:15:34 +01002063 wk->assoc.capability = req->bss->capability;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002064 wk->assoc.wmm_used = bss->wmm_used;
2065 wk->assoc.supp_rates = bss->supp_rates;
2066 wk->assoc.supp_rates_len = bss->supp_rates_len;
Johannes Bergf679f652009-12-23 13:15:34 +01002067 wk->assoc.ht_information_ie =
2068 ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_INFORMATION);
Johannes Berg63f170e2009-12-23 13:15:33 +01002069
Kalle Valoab133152010-01-12 10:42:31 +02002070 if (bss->wmm_used && bss->uapsd_supported &&
2071 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
2072 wk->assoc.uapsd_used = true;
2073 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
2074 } else {
2075 wk->assoc.uapsd_used = false;
2076 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
2077 }
2078
Johannes Berg63f170e2009-12-23 13:15:33 +01002079 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
Johannes Bergf679f652009-12-23 13:15:34 +01002080 memcpy(wk->assoc.ssid, ssid + 2, ssid[1]);
2081 wk->assoc.ssid_len = ssid[1];
Johannes Berg63f170e2009-12-23 13:15:33 +01002082
Johannes Berg77fdaa12009-07-07 03:45:17 +02002083 if (req->prev_bssid)
Johannes Bergf679f652009-12-23 13:15:34 +01002084 memcpy(wk->assoc.prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002085
Johannes Bergf679f652009-12-23 13:15:34 +01002086 wk->type = IEEE80211_WORK_ASSOC;
Johannes Bergf679f652009-12-23 13:15:34 +01002087 wk->chan = req->bss->channel;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002088 wk->sdata = sdata;
2089 wk->done = ieee80211_assoc_done;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002090
2091 if (req->use_mfp) {
2092 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2093 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2094 } else {
2095 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2096 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2097 }
2098
2099 if (req->crypto.control_port)
2100 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2101 else
2102 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2103
Johannes Bergaf6b6372009-12-23 13:15:35 +01002104 ieee80211_add_work(wk);
2105 return 0;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002106}
2107
2108int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002109 struct cfg80211_deauth_request *req,
2110 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002111{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002112 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002113 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergf679f652009-12-23 13:15:34 +01002114 struct ieee80211_work *wk;
Johannes Berg63f170e2009-12-23 13:15:33 +01002115 const u8 *bssid = req->bss->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002116
Johannes Berg77fdaa12009-07-07 03:45:17 +02002117 mutex_lock(&ifmgd->mtx);
2118
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002119 if (ifmgd->associated == req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002120 bssid = req->bss->bssid;
Johannes Berg63f170e2009-12-23 13:15:33 +01002121 ieee80211_set_disassoc(sdata);
Johannes Berga58ce432009-11-19 12:45:42 +01002122 mutex_unlock(&ifmgd->mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002123 } else {
2124 bool not_auth_yet = false;
Johannes Berga58ce432009-11-19 12:45:42 +01002125
Johannes Bergaf6b6372009-12-23 13:15:35 +01002126 mutex_unlock(&ifmgd->mtx);
2127
2128 mutex_lock(&local->work_mtx);
2129 list_for_each_entry(wk, &local->work_list, list) {
Johannes Berg29165e42010-02-06 15:20:13 +01002130 if (wk->sdata != sdata)
Johannes Bergaf6b6372009-12-23 13:15:35 +01002131 continue;
Johannes Berg29165e42010-02-06 15:20:13 +01002132
2133 if (wk->type != IEEE80211_WORK_DIRECT_PROBE &&
2134 wk->type != IEEE80211_WORK_AUTH)
2135 continue;
2136
Johannes Bergaf6b6372009-12-23 13:15:35 +01002137 if (memcmp(req->bss->bssid, wk->filter_ta, ETH_ALEN))
2138 continue;
Johannes Berg29165e42010-02-06 15:20:13 +01002139
2140 not_auth_yet = wk->type == IEEE80211_WORK_DIRECT_PROBE;
2141 list_del_rcu(&wk->list);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002142 free_work(wk);
2143 break;
2144 }
2145 mutex_unlock(&local->work_mtx);
2146
2147 /*
2148 * If somebody requests authentication and we haven't
2149 * sent out an auth frame yet there's no need to send
2150 * out a deauth frame either. If the state was PROBE,
2151 * then this is the case. If it's AUTH we have sent a
2152 * frame, and if it's IDLE we have completed the auth
2153 * process already.
2154 */
2155 if (not_auth_yet) {
2156 __cfg80211_auth_canceled(sdata->dev, bssid);
2157 return 0;
2158 }
2159 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002160
Johannes Berg0ff71612009-09-26 14:45:41 +02002161 printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01002162 sdata->name, bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02002163
Johannes Berg77fdaa12009-07-07 03:45:17 +02002164 ieee80211_send_deauth_disassoc(sdata, bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002165 IEEE80211_STYPE_DEAUTH, req->reason_code,
2166 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002167
Johannes Bergbc83b682009-11-29 12:19:06 +01002168 ieee80211_recalc_idle(sdata->local);
2169
Johannes Berg77fdaa12009-07-07 03:45:17 +02002170 return 0;
2171}
2172
2173int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002174 struct cfg80211_disassoc_request *req,
2175 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002176{
2177 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2178
Johannes Berg77fdaa12009-07-07 03:45:17 +02002179 mutex_lock(&ifmgd->mtx);
2180
Johannes Berg8d8b2612009-07-25 11:58:36 +02002181 /*
2182 * cfg80211 should catch this ... but it's racy since
2183 * we can receive a disassoc frame, process it, hand it
2184 * to cfg80211 while that's in a locked section already
2185 * trying to tell us that the user wants to disconnect.
2186 */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002187 if (ifmgd->associated != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002188 mutex_unlock(&ifmgd->mtx);
2189 return -ENOLINK;
2190 }
2191
Johannes Berg0ff71612009-09-26 14:45:41 +02002192 printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01002193 sdata->name, req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02002194
Johannes Berg63f170e2009-12-23 13:15:33 +01002195 ieee80211_set_disassoc(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002196
2197 mutex_unlock(&ifmgd->mtx);
2198
2199 ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002200 IEEE80211_STYPE_DISASSOC, req->reason_code,
2201 cookie);
Johannes Bergbc83b682009-11-29 12:19:06 +01002202
2203 ieee80211_recalc_idle(sdata->local);
2204
Johannes Berg77fdaa12009-07-07 03:45:17 +02002205 return 0;
2206}
Jouni Malinen026331c2010-02-15 12:53:10 +02002207
2208int ieee80211_mgd_action(struct ieee80211_sub_if_data *sdata,
2209 struct ieee80211_channel *chan,
2210 enum nl80211_channel_type channel_type,
2211 const u8 *buf, size_t len, u64 *cookie)
2212{
2213 struct ieee80211_local *local = sdata->local;
2214 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2215 struct sk_buff *skb;
2216
2217 /* Check that we are on the requested channel for transmission */
2218 if ((chan != local->tmp_channel ||
2219 channel_type != local->tmp_channel_type) &&
2220 (chan != local->oper_channel ||
2221 channel_type != local->oper_channel_type))
2222 return -EBUSY;
2223
2224 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
2225 if (!skb)
2226 return -ENOMEM;
2227 skb_reserve(skb, local->hw.extra_tx_headroom);
2228
2229 memcpy(skb_put(skb, len), buf, len);
2230
2231 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
2232 IEEE80211_SKB_CB(skb)->flags |=
2233 IEEE80211_TX_INTFL_DONT_ENCRYPT;
2234 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX |
2235 IEEE80211_TX_CTL_REQ_TX_STATUS;
2236 skb->dev = sdata->dev;
2237 ieee80211_tx_skb(sdata, skb);
2238
2239 *cookie = (unsigned long) skb;
2240 return 0;
2241}
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002242
2243void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
2244 enum nl80211_cqm_rssi_threshold_event rssi_event,
2245 gfp_t gfp)
2246{
2247 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2248
2249 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
2250}
2251EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);