blob: 91cc8281e266cbfb7c51ea23c36e046e5f3c008a [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>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040019#include <linux/moduleparam.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010020#include <linux/rtnetlink.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020021#include <linux/pm_qos.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020022#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020026#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020027
Jiri Bencf0706e82007-05-05 11:45:53 -070028#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
31#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070032
Johannes Berg1672c0e32013-01-29 15:02:27 +010033#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020034#define IEEE80211_AUTH_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010035#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
36#define IEEE80211_AUTH_MAX_TRIES 3
37#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
38#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020039#define IEEE80211_ASSOC_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010040#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
41#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Berg66e67e42012-01-20 13:55:27 +010042
Ben Greear180205b2011-02-04 15:30:24 -080043static int max_nullfunc_tries = 2;
44module_param(max_nullfunc_tries, int, 0644);
45MODULE_PARM_DESC(max_nullfunc_tries,
46 "Maximum nullfunc tx tries before disconnecting (reason 4).");
47
48static int max_probe_tries = 5;
49module_param(max_probe_tries, int, 0644);
50MODULE_PARM_DESC(max_probe_tries,
51 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020052
53/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010054 * Beacon loss timeout is calculated as N frames times the
55 * advertised beacon interval. This may need to be somewhat
56 * higher than what hardware might detect to account for
57 * delays in the host processing frames. But since we also
58 * probe on beacon miss before declaring the connection lost
59 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020060 */
Ben Greear59c1ec22013-03-19 14:19:56 -070061static int beacon_loss_count = 7;
62module_param(beacon_loss_count, int, 0644);
63MODULE_PARM_DESC(beacon_loss_count,
64 "Number of beacon intervals before we decide beacon was lost.");
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010065
Johannes Bergb291ba12009-07-10 15:29:03 +020066/*
67 * Time the connection can be idle before we probe
68 * it to see if we can still talk to the AP.
69 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030070#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020071/*
72 * Time we wait for a probe response after sending
73 * a probe request because of beacon loss or for
74 * checking the connection still works.
75 */
Ben Greear180205b2011-02-04 15:30:24 -080076static int probe_wait_ms = 500;
77module_param(probe_wait_ms, int, 0644);
78MODULE_PARM_DESC(probe_wait_ms,
79 "Maximum time(ms) to wait for probe response"
80 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070081
Jouni Malinen17e4ec12010-03-29 23:28:30 -070082/*
83 * Weight given to the latest Beacon frame when calculating average signal
84 * strength for Beacon frames received in the current BSS. This must be
85 * between 1 and 15.
86 */
87#define IEEE80211_SIGNAL_AVE_WEIGHT 3
88
Jouni Malinen391a2002010-08-27 22:22:00 +030089/*
90 * How many Beacon frames need to have been used in average signal strength
91 * before starting to indicate signal change events.
92 */
93#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
94
Johannes Berg77fdaa12009-07-07 03:45:17 +020095/*
Johannes Bergca386f32009-07-10 02:39:48 +020096 * We can have multiple work items (and connection probing)
97 * scheduling this timer, but we need to take care to only
98 * reschedule it when it should fire _earlier_ than it was
99 * asked for before, or if it's not pending right now. This
100 * function ensures that. Note that it then is required to
101 * run this function for all timeouts after the first one
102 * has happened -- the work that runs from this timer will
103 * do that.
104 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200105static void run_again(struct ieee80211_sub_if_data *sdata,
106 unsigned long timeout)
Johannes Bergca386f32009-07-10 02:39:48 +0200107{
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200108 sdata_assert_lock(sdata);
Johannes Bergca386f32009-07-10 02:39:48 +0200109
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200110 if (!timer_pending(&sdata->u.mgd.timer) ||
111 time_before(timeout, sdata->u.mgd.timer.expires))
112 mod_timer(&sdata->u.mgd.timer, timeout);
Johannes Bergca386f32009-07-10 02:39:48 +0200113}
114
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -0400115void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
Johannes Bergb291ba12009-07-10 15:29:03 +0200116{
Johannes Bergc1288b12012-01-19 09:29:57 +0100117 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
Johannes Bergb291ba12009-07-10 15:29:03 +0200118 return;
119
Johannes Berg7eeff742012-07-18 10:27:27 +0200120 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
121 return;
122
Johannes Bergb291ba12009-07-10 15:29:03 +0200123 mod_timer(&sdata->u.mgd.bcn_mon_timer,
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +0100124 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
Johannes Bergb291ba12009-07-10 15:29:03 +0200125}
126
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400127void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
128{
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400129 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
130
Stanislaw Gruszka86281722011-02-25 14:46:02 +0100131 if (unlikely(!sdata->u.mgd.associated))
132 return;
133
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400134 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
135 return;
136
137 mod_timer(&sdata->u.mgd.conn_mon_timer,
138 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400139
140 ifmgd->probe_send_count = 0;
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400141}
142
Johannes Berg5484e232008-09-08 17:44:27 +0200143static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200144{
Johannes Berg5484e232008-09-08 17:44:27 +0200145 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200146}
147
Johannes Berg6565ec92013-02-08 14:52:32 +0100148static u32
149ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
150 struct ieee80211_supported_band *sband,
151 struct ieee80211_channel *channel,
152 const struct ieee80211_ht_operation *ht_oper,
153 const struct ieee80211_vht_operation *vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200154 struct cfg80211_chan_def *chandef, bool tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100155{
Johannes Berg5cdaed12013-07-31 11:23:06 +0200156 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg6565ec92013-02-08 14:52:32 +0100157 struct cfg80211_chan_def vht_chandef;
158 u32 ht_cfreq, ret;
159
160 chandef->chan = channel;
161 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
162 chandef->center_freq1 = channel->center_freq;
163 chandef->center_freq2 = 0;
164
165 if (!ht_oper || !sband->ht_cap.ht_supported) {
166 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
167 goto out;
168 }
169
170 chandef->width = NL80211_CHAN_WIDTH_20;
171
172 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
173 channel->band);
174 /* check that channel matches the right operating channel */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200175 if (!tracking && channel->center_freq != ht_cfreq) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100176 /*
177 * It's possible that some APs are confused here;
178 * Netgear WNDR3700 sometimes reports 4 higher than
179 * the actual channel in association responses, but
180 * since we look at probe response/beacon data here
181 * it should be OK.
182 */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200183 sdata_info(sdata,
184 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
185 channel->center_freq, ht_cfreq,
186 ht_oper->primary_chan, channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100187 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
188 goto out;
189 }
190
191 /* check 40 MHz support, if we have it */
192 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
193 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
194 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
195 chandef->width = NL80211_CHAN_WIDTH_40;
196 chandef->center_freq1 += 10;
197 break;
198 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
199 chandef->width = NL80211_CHAN_WIDTH_40;
200 chandef->center_freq1 -= 10;
201 break;
202 }
203 } else {
204 /* 40 MHz (and 80 MHz) must be supported for VHT */
205 ret = IEEE80211_STA_DISABLE_VHT;
Johannes Berg85220d72013-03-25 18:29:27 +0100206 /* also mark 40 MHz disabled */
207 ret |= IEEE80211_STA_DISABLE_40MHZ;
Johannes Berg6565ec92013-02-08 14:52:32 +0100208 goto out;
209 }
210
211 if (!vht_oper || !sband->vht_cap.vht_supported) {
212 ret = IEEE80211_STA_DISABLE_VHT;
213 goto out;
214 }
215
216 vht_chandef.chan = channel;
217 vht_chandef.center_freq1 =
218 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
219 channel->band);
220 vht_chandef.center_freq2 = 0;
221
Johannes Berg6565ec92013-02-08 14:52:32 +0100222 switch (vht_oper->chan_width) {
223 case IEEE80211_VHT_CHANWIDTH_USE_HT:
224 vht_chandef.width = chandef->width;
225 break;
226 case IEEE80211_VHT_CHANWIDTH_80MHZ:
227 vht_chandef.width = NL80211_CHAN_WIDTH_80;
228 break;
229 case IEEE80211_VHT_CHANWIDTH_160MHZ:
230 vht_chandef.width = NL80211_CHAN_WIDTH_160;
231 break;
232 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
233 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
Johannes Berg6553bf042013-03-28 10:26:17 +0100234 vht_chandef.center_freq2 =
235 ieee80211_channel_to_frequency(
236 vht_oper->center_freq_seg2_idx,
237 channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100238 break;
239 default:
Johannes Berg5cdaed12013-07-31 11:23:06 +0200240 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100241 sdata_info(sdata,
242 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
243 vht_oper->chan_width);
Johannes Berg6565ec92013-02-08 14:52:32 +0100244 ret = IEEE80211_STA_DISABLE_VHT;
245 goto out;
246 }
247
248 if (!cfg80211_chandef_valid(&vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200249 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100250 sdata_info(sdata,
251 "AP VHT information is invalid, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100252 ret = IEEE80211_STA_DISABLE_VHT;
253 goto out;
254 }
255
256 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
257 ret = 0;
258 goto out;
259 }
260
261 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200262 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100263 sdata_info(sdata,
264 "AP VHT information doesn't match HT, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100265 ret = IEEE80211_STA_DISABLE_VHT;
266 goto out;
267 }
268
269 *chandef = vht_chandef;
270
271 ret = 0;
272
273out:
Johannes Berg586e01e2013-02-14 12:13:53 +0100274 /* don't print the message below for VHT mismatch if VHT is disabled */
275 if (ret & IEEE80211_STA_DISABLE_VHT)
276 vht_chandef = *chandef;
277
Johannes Bergddfe49b2013-07-31 20:52:03 +0200278 /*
279 * Ignore the DISABLED flag when we're already connected and only
280 * tracking the APs beacon for bandwidth changes - otherwise we
281 * might get disconnected here if we connect to an AP, update our
282 * regulatory information based on the AP's country IE and the
283 * information we have is wrong/outdated and disables the channel
284 * that we're actually using for the connection to the AP.
285 */
Johannes Berg6565ec92013-02-08 14:52:32 +0100286 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
Johannes Bergddfe49b2013-07-31 20:52:03 +0200287 tracking ? 0 :
288 IEEE80211_CHAN_DISABLED)) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100289 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
290 ret = IEEE80211_STA_DISABLE_HT |
291 IEEE80211_STA_DISABLE_VHT;
Chris Wrightb56e4b82013-07-31 12:12:24 -0700292 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100293 }
294
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200295 ret |= ieee80211_chandef_downgrade(chandef);
Johannes Berg6565ec92013-02-08 14:52:32 +0100296 }
297
Johannes Berg5cdaed12013-07-31 11:23:06 +0200298 if (chandef->width != vht_chandef.width && !tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100299 sdata_info(sdata,
300 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
301
302 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
303 return ret;
304}
305
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100306static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
307 struct sta_info *sta,
308 const struct ieee80211_ht_operation *ht_oper,
309 const struct ieee80211_vht_operation *vht_oper,
310 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200311{
312 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100313 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200314 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200315 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100316 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200317 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100318 u32 flags;
319 enum ieee80211_sta_rx_bandwidth new_sta_bw;
320 int ret;
321
322 /* if HT was/is disabled, don't track any bandwidth changes */
323 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
324 return 0;
325
326 /* don't check VHT if we associated as non-VHT station */
327 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
328 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200329
Johannes Berg11289582013-02-07 17:36:12 +0100330 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100331 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100332
Johannes Bergf2d93302013-02-08 13:15:55 +0100333 chan = sdata->vif.bss_conf.chandef.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200334 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200335
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100336 /* calculate new channel (type) based on HT/VHT operation IEs */
337 flags = ieee80211_determine_chantype(sdata, sband, chan, ht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200338 vht_oper, &chandef, true);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100339
340 /*
341 * Downgrade the new channel if we associated with restricted
342 * capabilities. For example, if we associated as a 20 MHz STA
343 * to a 40 MHz AP (due to regulatory, capabilities or config
344 * reasons) then switching to a 40 MHz channel now won't do us
345 * any good -- we couldn't use it with the AP.
346 */
347 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
348 chandef.width == NL80211_CHAN_WIDTH_80P80)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200349 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100350 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
351 chandef.width == NL80211_CHAN_WIDTH_160)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200352 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100353 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
354 chandef.width > NL80211_CHAN_WIDTH_20)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200355 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100356
357 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
358 return 0;
359
360 sdata_info(sdata,
361 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
362 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
363 chandef.center_freq1, chandef.center_freq2);
364
365 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
366 IEEE80211_STA_DISABLE_VHT |
367 IEEE80211_STA_DISABLE_40MHZ |
368 IEEE80211_STA_DISABLE_80P80MHZ |
369 IEEE80211_STA_DISABLE_160MHZ)) ||
370 !cfg80211_chandef_valid(&chandef)) {
371 sdata_info(sdata,
372 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
373 ifmgd->bssid);
374 return -EINVAL;
Johannes Berg64f68e52012-03-28 10:58:37 +0200375 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200376
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100377 switch (chandef.width) {
378 case NL80211_CHAN_WIDTH_20_NOHT:
379 case NL80211_CHAN_WIDTH_20:
380 new_sta_bw = IEEE80211_STA_RX_BW_20;
381 break;
382 case NL80211_CHAN_WIDTH_40:
383 new_sta_bw = IEEE80211_STA_RX_BW_40;
384 break;
385 case NL80211_CHAN_WIDTH_80:
386 new_sta_bw = IEEE80211_STA_RX_BW_80;
387 break;
388 case NL80211_CHAN_WIDTH_80P80:
389 case NL80211_CHAN_WIDTH_160:
390 new_sta_bw = IEEE80211_STA_RX_BW_160;
391 break;
392 default:
393 return -EINVAL;
394 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200395
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100396 if (new_sta_bw > sta->cur_max_bandwidth)
397 new_sta_bw = sta->cur_max_bandwidth;
Johannes Berg64f68e52012-03-28 10:58:37 +0200398
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100399 if (new_sta_bw < sta->sta.bandwidth) {
400 sta->sta.bandwidth = new_sta_bw;
401 rate_control_rate_update(local, sband, sta,
402 IEEE80211_RC_BW_CHANGED);
403 }
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530404
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100405 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
406 if (ret) {
407 sdata_info(sdata,
408 "AP %pM changed bandwidth to incompatible one - disconnect\n",
409 ifmgd->bssid);
410 return ret;
411 }
412
413 if (new_sta_bw > sta->sta.bandwidth) {
414 sta->sta.bandwidth = new_sta_bw;
415 rate_control_rate_update(local, sband, sta,
416 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200417 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200418
Johannes Berg074d46d2012-03-15 19:45:16 +0100419 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200420
421 /* if bss configuration changed store the new one */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100422 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
423 *changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200424 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200425 }
426
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100427 return 0;
Johannes Bergd5522e02009-03-30 13:23:35 +0200428}
429
Johannes Berg9c6bd792008-09-11 00:01:52 +0200430/* frame sending functions */
431
Johannes Berg66e67e42012-01-20 13:55:27 +0100432static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200433 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100434 struct ieee80211_supported_band *sband,
435 struct ieee80211_channel *channel,
436 enum ieee80211_smps_mode smps)
437{
Johannes Berg66e67e42012-01-20 13:55:27 +0100438 u8 *pos;
439 u32 flags = channel->flags;
440 u16 cap;
441 struct ieee80211_sta_ht_cap ht_cap;
442
443 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
444
Johannes Berg66e67e42012-01-20 13:55:27 +0100445 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
446 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
447
Johannes Berg66e67e42012-01-20 13:55:27 +0100448 /* determine capability flags */
449 cap = ht_cap.cap;
450
Johannes Berg9dde6422012-05-16 23:43:19 +0200451 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100452 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
453 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
454 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
455 cap &= ~IEEE80211_HT_CAP_SGI_40;
456 }
457 break;
458 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
459 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
460 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
461 cap &= ~IEEE80211_HT_CAP_SGI_40;
462 }
463 break;
464 }
465
Johannes Berg24398e32012-03-28 10:58:36 +0200466 /*
467 * If 40 MHz was disabled associate as though we weren't
468 * capable of 40 MHz -- some broken APs will never fall
469 * back to trying to transmit in 20 MHz.
470 */
471 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
472 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
473 cap &= ~IEEE80211_HT_CAP_SGI_40;
474 }
475
Johannes Berg66e67e42012-01-20 13:55:27 +0100476 /* set SM PS mode properly */
477 cap &= ~IEEE80211_HT_CAP_SM_PS;
478 switch (smps) {
479 case IEEE80211_SMPS_AUTOMATIC:
480 case IEEE80211_SMPS_NUM_MODES:
481 WARN_ON(1);
482 case IEEE80211_SMPS_OFF:
483 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
484 IEEE80211_HT_CAP_SM_PS_SHIFT;
485 break;
486 case IEEE80211_SMPS_STATIC:
487 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
488 IEEE80211_HT_CAP_SM_PS_SHIFT;
489 break;
490 case IEEE80211_SMPS_DYNAMIC:
491 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
492 IEEE80211_HT_CAP_SM_PS_SHIFT;
493 break;
494 }
495
496 /* reserve and fill IE */
497 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
498 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
499}
500
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000501static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
502 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100503 struct ieee80211_supported_band *sband,
504 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000505{
506 u8 *pos;
507 u32 cap;
508 struct ieee80211_sta_vht_cap vht_cap;
509
510 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
511
512 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100513 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000514
515 /* determine capability flags */
516 cap = vht_cap.cap;
517
Johannes Bergf2d9d272012-11-22 14:11:39 +0100518 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
519 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
520 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
521 }
522
523 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
524 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
525 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
526 }
527
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100528 /*
529 * Some APs apparently get confused if our capabilities are better
530 * than theirs, so restrict what we advertise in the assoc request.
531 */
532 if (!(ap_vht_cap->vht_cap_info &
533 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
534 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
535
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000536 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000537 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000538 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
539}
540
Johannes Berg66e67e42012-01-20 13:55:27 +0100541static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
542{
543 struct ieee80211_local *local = sdata->local;
544 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
545 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
546 struct sk_buff *skb;
547 struct ieee80211_mgmt *mgmt;
548 u8 *pos, qos_info;
549 size_t offset = 0, noffset;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200550 int i, count, rates_len, supp_rates_len, shift;
Johannes Berg66e67e42012-01-20 13:55:27 +0100551 u16 capab;
552 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200553 struct ieee80211_chanctx_conf *chanctx_conf;
554 struct ieee80211_channel *chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200555 u32 rate_flags, rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100556
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200557 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100558
Johannes Berg55de9082012-07-26 17:24:39 +0200559 rcu_read_lock();
560 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
561 if (WARN_ON(!chanctx_conf)) {
562 rcu_read_unlock();
563 return;
564 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100565 chan = chanctx_conf->def.chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200566 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
Johannes Berg55de9082012-07-26 17:24:39 +0200567 rcu_read_unlock();
568 sband = local->hw.wiphy->bands[chan->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200569 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg66e67e42012-01-20 13:55:27 +0100570
571 if (assoc_data->supp_rates_len) {
572 /*
573 * Get all rates supported by the device and the AP as
574 * some APs don't like getting a superset of their rates
575 * in the association request (e.g. D-Link DAP 1353 in
576 * b-only mode)...
577 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200578 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
579 assoc_data->supp_rates,
580 assoc_data->supp_rates_len,
581 &rates);
Johannes Berg66e67e42012-01-20 13:55:27 +0100582 } else {
583 /*
584 * In case AP not provide any supported rates information
585 * before association, we send information element(s) with
586 * all rates that we support.
587 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200588 rates_len = 0;
589 for (i = 0; i < sband->n_bitrates; i++) {
590 if ((rate_flags & sband->bitrates[i].flags)
591 != rate_flags)
592 continue;
593 rates |= BIT(i);
594 rates_len++;
595 }
Johannes Berg66e67e42012-01-20 13:55:27 +0100596 }
597
598 skb = alloc_skb(local->hw.extra_tx_headroom +
599 sizeof(*mgmt) + /* bit too much but doesn't matter */
600 2 + assoc_data->ssid_len + /* SSID */
601 4 + rates_len + /* (extended) rates */
602 4 + /* power capability */
603 2 + 2 * sband->n_channels + /* supported channels */
604 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000605 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100606 assoc_data->ie_len + /* extra IEs */
607 9, /* WMM */
608 GFP_KERNEL);
609 if (!skb)
610 return;
611
612 skb_reserve(skb, local->hw.extra_tx_headroom);
613
614 capab = WLAN_CAPABILITY_ESS;
615
616 if (sband->band == IEEE80211_BAND_2GHZ) {
617 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
618 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
619 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
620 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
621 }
622
623 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
624 capab |= WLAN_CAPABILITY_PRIVACY;
625
626 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
627 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
628 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
629
630 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
631 memset(mgmt, 0, 24);
632 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
633 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
634 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
635
636 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
637 skb_put(skb, 10);
638 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
639 IEEE80211_STYPE_REASSOC_REQ);
640 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
641 mgmt->u.reassoc_req.listen_interval =
642 cpu_to_le16(local->hw.conf.listen_interval);
643 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
644 ETH_ALEN);
645 } else {
646 skb_put(skb, 4);
647 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
648 IEEE80211_STYPE_ASSOC_REQ);
649 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
650 mgmt->u.assoc_req.listen_interval =
651 cpu_to_le16(local->hw.conf.listen_interval);
652 }
653
654 /* SSID */
655 pos = skb_put(skb, 2 + assoc_data->ssid_len);
656 *pos++ = WLAN_EID_SSID;
657 *pos++ = assoc_data->ssid_len;
658 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
659
660 /* add all rates which were marked to be used above */
661 supp_rates_len = rates_len;
662 if (supp_rates_len > 8)
663 supp_rates_len = 8;
664
665 pos = skb_put(skb, supp_rates_len + 2);
666 *pos++ = WLAN_EID_SUPP_RATES;
667 *pos++ = supp_rates_len;
668
669 count = 0;
670 for (i = 0; i < sband->n_bitrates; i++) {
671 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200672 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
673 5 * (1 << shift));
674 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100675 if (++count == 8)
676 break;
677 }
678 }
679
680 if (rates_len > count) {
681 pos = skb_put(skb, rates_len - count + 2);
682 *pos++ = WLAN_EID_EXT_SUPP_RATES;
683 *pos++ = rates_len - count;
684
685 for (i++; i < sband->n_bitrates; i++) {
686 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200687 int rate;
688 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
689 5 * (1 << shift));
690 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100691 }
692 }
693 }
694
695 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
696 /* 1. power capabilities */
697 pos = skb_put(skb, 4);
698 *pos++ = WLAN_EID_PWR_CAPABILITY;
699 *pos++ = 2;
700 *pos++ = 0; /* min tx power */
Simon Wunderlich0430c882013-07-08 16:55:55 +0200701 /* max tx power */
702 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg66e67e42012-01-20 13:55:27 +0100703
704 /* 2. supported channels */
705 /* TODO: get this in reg domain format */
706 pos = skb_put(skb, 2 * sband->n_channels + 2);
707 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
708 *pos++ = 2 * sband->n_channels;
709 for (i = 0; i < sband->n_channels; i++) {
710 *pos++ = ieee80211_frequency_to_channel(
711 sband->channels[i].center_freq);
712 *pos++ = 1; /* one channel in the subband*/
713 }
714 }
715
716 /* if present, add any custom IEs that go before HT */
717 if (assoc_data->ie_len && assoc_data->ie) {
718 static const u8 before_ht[] = {
719 WLAN_EID_SSID,
720 WLAN_EID_SUPP_RATES,
721 WLAN_EID_EXT_SUPP_RATES,
722 WLAN_EID_PWR_CAPABILITY,
723 WLAN_EID_SUPPORTED_CHANNELS,
724 WLAN_EID_RSN,
725 WLAN_EID_QOS_CAPA,
726 WLAN_EID_RRM_ENABLED_CAPABILITIES,
727 WLAN_EID_MOBILITY_DOMAIN,
728 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
729 };
730 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
731 before_ht, ARRAY_SIZE(before_ht),
732 offset);
733 pos = skb_put(skb, noffset - offset);
734 memcpy(pos, assoc_data->ie + offset, noffset - offset);
735 offset = noffset;
736 }
737
Johannes Bergf2d9d272012-11-22 14:11:39 +0100738 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
739 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
740 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
741
Johannes Berga8243b72012-11-22 14:32:09 +0100742 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200743 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200744 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100745
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000746 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100747 ieee80211_add_vht_ie(sdata, skb, sband,
748 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000749
Johannes Berg66e67e42012-01-20 13:55:27 +0100750 /* if present, add any custom non-vendor IEs that go after HT */
751 if (assoc_data->ie_len && assoc_data->ie) {
752 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
753 assoc_data->ie_len,
754 offset);
755 pos = skb_put(skb, noffset - offset);
756 memcpy(pos, assoc_data->ie + offset, noffset - offset);
757 offset = noffset;
758 }
759
Johannes Berg76f03032012-03-08 15:02:05 +0100760 if (assoc_data->wmm) {
761 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200762 qos_info = ifmgd->uapsd_queues;
763 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100764 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
765 } else {
766 qos_info = 0;
767 }
768
769 pos = skb_put(skb, 9);
770 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
771 *pos++ = 7; /* len */
772 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
773 *pos++ = 0x50;
774 *pos++ = 0xf2;
775 *pos++ = 2; /* WME */
776 *pos++ = 0; /* WME info */
777 *pos++ = 1; /* WME ver */
778 *pos++ = qos_info;
779 }
780
781 /* add any remaining custom (i.e. vendor specific here) IEs */
782 if (assoc_data->ie_len && assoc_data->ie) {
783 noffset = assoc_data->ie_len;
784 pos = skb_put(skb, noffset - offset);
785 memcpy(pos, assoc_data->ie + offset, noffset - offset);
786 }
787
Johannes Berga1845fc2012-06-27 13:18:36 +0200788 drv_mgd_prepare_tx(local, sdata);
789
Johannes Berg66e67e42012-01-20 13:55:27 +0100790 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100791 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
792 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
793 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100794 ieee80211_tx_skb(sdata, skb);
795}
796
Kalle Valo572e0012009-02-10 17:09:31 +0200797void ieee80211_send_pspoll(struct ieee80211_local *local,
798 struct ieee80211_sub_if_data *sdata)
799{
Kalle Valo572e0012009-02-10 17:09:31 +0200800 struct ieee80211_pspoll *pspoll;
801 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200802
Kalle Valod8cd1892010-01-05 20:16:26 +0200803 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
804 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200805 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200806
Kalle Valod8cd1892010-01-05 20:16:26 +0200807 pspoll = (struct ieee80211_pspoll *) skb->data;
808 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200809
Johannes Berg62ae67b2009-11-18 18:42:05 +0100810 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
811 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200812}
813
Johannes Berg965beda2009-04-16 13:17:24 +0200814void ieee80211_send_nullfunc(struct ieee80211_local *local,
815 struct ieee80211_sub_if_data *sdata,
816 int powersave)
817{
818 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200819 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530820 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200821
Kalle Valod8cd1892010-01-05 20:16:26 +0200822 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
823 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200824 return;
825
Kalle Valod8cd1892010-01-05 20:16:26 +0200826 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200827 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200828 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200829
Seth Forshee6c17b772013-02-11 11:21:07 -0600830 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
831 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200832
833 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
834 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
835
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +0200836 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530837 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
838
Johannes Berg62ae67b2009-11-18 18:42:05 +0100839 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200840}
841
Felix Fietkaud5242152010-01-08 18:06:26 +0100842static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
843 struct ieee80211_sub_if_data *sdata)
844{
845 struct sk_buff *skb;
846 struct ieee80211_hdr *nullfunc;
847 __le16 fc;
848
849 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
850 return;
851
852 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700853 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100854 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700855
Felix Fietkaud5242152010-01-08 18:06:26 +0100856 skb_reserve(skb, local->hw.extra_tx_headroom);
857
858 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
859 memset(nullfunc, 0, 30);
860 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
861 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
862 nullfunc->frame_control = fc;
863 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
864 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
865 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
866 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
867
868 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
869 ieee80211_tx_skb(sdata, skb);
870}
871
Johannes Bergcc32abd2009-05-15 11:52:31 +0200872/* spectrum management related things */
873static void ieee80211_chswitch_work(struct work_struct *work)
874{
875 struct ieee80211_sub_if_data *sdata =
876 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100877 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200878 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Arik Nemtsov7578d572013-09-01 17:15:51 +0300879 u32 changed = 0;
880 int ret;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200881
Johannes Berg9607e6b2009-12-23 13:15:31 +0100882 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200883 return;
884
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200885 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200886 if (!ifmgd->associated)
887 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200888
Arik Nemtsov7578d572013-09-01 17:15:51 +0300889 ret = ieee80211_vif_change_channel(sdata, &local->csa_chandef,
890 &changed);
891 if (ret) {
892 sdata_info(sdata,
893 "vif channel switch failed, disconnecting\n");
894 ieee80211_queue_work(&sdata->local->hw,
895 &ifmgd->csa_connection_drop_work);
896 goto out;
897 }
Karl Beldan675a0b02013-03-25 16:26:57 +0100898
Arik Nemtsov7578d572013-09-01 17:15:51 +0300899 if (!local->use_chanctx) {
900 local->_oper_chandef = local->csa_chandef;
901 /* Call "hw_config" only if doing sw channel switch.
902 * Otherwise update the channel directly
903 */
904 if (!local->ops->channel_switch)
905 ieee80211_hw_config(local, 0);
906 else
907 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200908 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200909
Johannes Berg77fdaa12009-07-07 03:45:17 +0200910 /* XXX: shouldn't really modify cfg80211-owned data! */
Arik Nemtsov7578d572013-09-01 17:15:51 +0300911 ifmgd->associated->channel = local->csa_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200912
Johannes Berg57eebdf2012-08-01 15:50:46 +0200913 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100914 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100915 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200916 IEEE80211_QUEUE_STOP_REASON_CSA);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300917
918 ieee80211_bss_info_change_notify(sdata, changed);
919
Johannes Berg77fdaa12009-07-07 03:45:17 +0200920 out:
Arik Nemtsov7578d572013-09-01 17:15:51 +0300921 sdata->vif.csa_active = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200922 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200923 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200924}
925
Johannes Berg5ce6e432010-05-11 16:20:57 +0200926void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
927{
Johannes Berg55de9082012-07-26 17:24:39 +0200928 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
929 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200930
931 trace_api_chswitch_done(sdata, success);
932 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200933 sdata_info(sdata,
934 "driver channel switch failed, disconnecting\n");
935 ieee80211_queue_work(&sdata->local->hw,
936 &ifmgd->csa_connection_drop_work);
937 } else {
938 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200939 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200940}
941EXPORT_SYMBOL(ieee80211_chswitch_done);
942
Johannes Bergcc32abd2009-05-15 11:52:31 +0200943static void ieee80211_chswitch_timer(unsigned long data)
944{
945 struct ieee80211_sub_if_data *sdata =
946 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200947
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100948 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200949}
950
Johannes Berg37799e52013-03-26 14:02:26 +0100951static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100952ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200953 u64 timestamp, struct ieee802_11_elems *elems,
954 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200955{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100956 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200957 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +0100958 struct cfg80211_bss *cbss = ifmgd->associated;
Johannes Berg55de9082012-07-26 17:24:39 +0200959 struct ieee80211_chanctx *chanctx;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200960 enum ieee80211_band current_band;
Johannes Bergb4f286a12013-03-26 14:13:58 +0100961 u8 count;
962 u8 mode;
Johannes Berg85220d72013-03-25 18:29:27 +0100963 struct cfg80211_chan_def new_chandef = {};
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200964 int res;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200965
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200966 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200967
Johannes Berg37799e52013-03-26 14:02:26 +0100968 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200969 return;
970
Johannes Bergb4f286a12013-03-26 14:13:58 +0100971 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200972 return;
973
Johannes Berg37799e52013-03-26 14:02:26 +0100974 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +0200975 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
976 return;
977
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200978 current_band = cbss->channel->band;
979 res = ieee80211_parse_ch_switch_ie(sdata, elems, beacon, current_band,
980 ifmgd->flags,
981 ifmgd->associated->bssid, &count,
982 &mode, &new_chandef);
983 if (res < 0)
Johannes Bergb4f286a12013-03-26 14:13:58 +0100984 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +0200985 &ifmgd->csa_connection_drop_work);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200986 if (res)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200987 return;
Johannes Bergcd64f2a2013-03-28 10:44:18 +0100988
Johannes Berg85220d72013-03-25 18:29:27 +0100989 if (!cfg80211_chandef_usable(local->hw.wiphy, &new_chandef,
990 IEEE80211_CHAN_DISABLED)) {
991 sdata_info(sdata,
992 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200993 ifmgd->associated->bssid,
994 new_chandef.chan->center_freq,
Johannes Berg85220d72013-03-25 18:29:27 +0100995 new_chandef.width, new_chandef.center_freq1,
996 new_chandef.center_freq2);
997 ieee80211_queue_work(&local->hw,
998 &ifmgd->csa_connection_drop_work);
999 return;
1000 }
1001
Johannes Berg57eebdf2012-08-01 15:50:46 +02001002 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03001003 sdata->vif.csa_active = true;
Johannes Berg55de9082012-07-26 17:24:39 +02001004
Johannes Bergb4f286a12013-03-26 14:13:58 +01001005 mutex_lock(&local->chanctx_mtx);
Arik Nemtsov7578d572013-09-01 17:15:51 +03001006 if (local->use_chanctx) {
1007 u32 num_chanctx = 0;
1008 list_for_each_entry(chanctx, &local->chanctx_list, list)
1009 num_chanctx++;
1010
1011 if (num_chanctx > 1 ||
1012 !(local->hw.flags & IEEE80211_HW_CHANCTX_STA_CSA)) {
1013 sdata_info(sdata,
1014 "not handling chan-switch with channel contexts\n");
1015 ieee80211_queue_work(&local->hw,
1016 &ifmgd->csa_connection_drop_work);
1017 mutex_unlock(&local->chanctx_mtx);
1018 return;
1019 }
1020 }
1021
Johannes Berg55de9082012-07-26 17:24:39 +02001022 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Arik Nemtsov7578d572013-09-01 17:15:51 +03001023 ieee80211_queue_work(&local->hw,
1024 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001025 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001026 return;
1027 }
1028 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1029 struct ieee80211_chanctx, conf);
1030 if (chanctx->refcount > 1) {
1031 sdata_info(sdata,
1032 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001033 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001034 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001035 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001036 return;
1037 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001038 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001039
Johannes Berg85220d72013-03-25 18:29:27 +01001040 local->csa_chandef = new_chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001041
Johannes Bergb4f286a12013-03-26 14:13:58 +01001042 if (mode)
1043 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001044 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001045 IEEE80211_QUEUE_STOP_REASON_CSA);
1046
Johannes Bergb4f286a12013-03-26 14:13:58 +01001047 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001048 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001049 struct ieee80211_channel_switch ch_switch = {
1050 .timestamp = timestamp,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001051 .block_tx = mode,
Johannes Berg85220d72013-03-25 18:29:27 +01001052 .chandef = new_chandef,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001053 .count = count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001054 };
1055
Johannes Bergb4f286a12013-03-26 14:13:58 +01001056 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001057 return;
1058 }
1059
1060 /* channel switch handled in software */
Johannes Bergb4f286a12013-03-26 14:13:58 +01001061 if (count <= 1)
1062 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001063 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001064 mod_timer(&ifmgd->chswitch_timer,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001065 TU_TO_EXP_TIME(count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001066}
1067
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001068static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1069 struct ieee80211_channel *channel,
1070 const u8 *country_ie, u8 country_ie_len,
1071 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001072{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001073 struct ieee80211_country_ie_triplet *triplet;
1074 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1075 int i, chan_pwr, chan_increment, new_ap_level;
1076 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001077
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001078 /* Invalid IE */
1079 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001080 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001081
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001082 triplet = (void *)(country_ie + 3);
1083 country_ie_len -= 3;
1084
1085 switch (channel->band) {
1086 default:
1087 WARN_ON_ONCE(1);
1088 /* fall through */
1089 case IEEE80211_BAND_2GHZ:
1090 case IEEE80211_BAND_60GHZ:
1091 chan_increment = 1;
1092 break;
1093 case IEEE80211_BAND_5GHZ:
1094 chan_increment = 4;
1095 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001096 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001097
1098 /* find channel */
1099 while (country_ie_len >= 3) {
1100 u8 first_channel = triplet->chans.first_channel;
1101
1102 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1103 goto next;
1104
1105 for (i = 0; i < triplet->chans.num_channels; i++) {
1106 if (first_channel + i * chan_increment == chan) {
1107 have_chan_pwr = true;
1108 chan_pwr = triplet->chans.max_power;
1109 break;
1110 }
1111 }
1112 if (have_chan_pwr)
1113 break;
1114
1115 next:
1116 triplet++;
1117 country_ie_len -= 3;
1118 }
1119
1120 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001121 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001122
1123 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1124
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001125 if (sdata->ap_power_level == new_ap_level)
1126 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001127
1128 sdata_info(sdata,
1129 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1130 new_ap_level, chan_pwr, *pwr_constr_elem,
1131 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001132 sdata->ap_power_level = new_ap_level;
1133 if (__ieee80211_recalc_txpower(sdata))
1134 return BSS_CHANGED_TXPOWER;
1135 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001136}
1137
Johannes Berg965beda2009-04-16 13:17:24 +02001138/* powersave */
1139static void ieee80211_enable_ps(struct ieee80211_local *local,
1140 struct ieee80211_sub_if_data *sdata)
1141{
1142 struct ieee80211_conf *conf = &local->hw.conf;
1143
Johannes Bergd5edaed2009-04-22 23:02:51 +02001144 /*
1145 * If we are scanning right now then the parameters will
1146 * take effect when scan finishes.
1147 */
Helmut Schaafbe9c422009-07-23 12:14:04 +02001148 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001149 return;
1150
Johannes Berg965beda2009-04-16 13:17:24 +02001151 if (conf->dynamic_ps_timeout > 0 &&
1152 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1153 mod_timer(&local->dynamic_ps_timer, jiffies +
1154 msecs_to_jiffies(conf->dynamic_ps_timeout));
1155 } else {
1156 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1157 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301158
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001159 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1160 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1161 return;
1162
1163 conf->flags |= IEEE80211_CONF_PS;
1164 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001165 }
1166}
1167
1168static void ieee80211_change_ps(struct ieee80211_local *local)
1169{
1170 struct ieee80211_conf *conf = &local->hw.conf;
1171
1172 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001173 ieee80211_enable_ps(local, local->ps_sdata);
1174 } else if (conf->flags & IEEE80211_CONF_PS) {
1175 conf->flags &= ~IEEE80211_CONF_PS;
1176 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1177 del_timer_sync(&local->dynamic_ps_timer);
1178 cancel_work_sync(&local->dynamic_ps_enable_work);
1179 }
1180}
1181
Jason Young808118c2011-03-10 16:43:19 -08001182static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1183{
1184 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1185 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001186 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001187
1188 if (!mgd->powersave)
1189 return false;
1190
Johannes Berg05cb9102011-10-28 11:59:47 +02001191 if (mgd->broken_ap)
1192 return false;
1193
Jason Young808118c2011-03-10 16:43:19 -08001194 if (!mgd->associated)
1195 return false;
1196
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001197 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
Jason Young808118c2011-03-10 16:43:19 -08001198 return false;
1199
Alexander Bondar989c6502013-05-16 17:34:17 +03001200 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001201 return false;
1202
Jason Young808118c2011-03-10 16:43:19 -08001203 rcu_read_lock();
1204 sta = sta_info_get(sdata, mgd->bssid);
1205 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001206 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001207 rcu_read_unlock();
1208
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001209 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001210}
1211
Johannes Berg965beda2009-04-16 13:17:24 +02001212/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001213void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001214{
1215 struct ieee80211_sub_if_data *sdata, *found = NULL;
1216 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001217 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001218
1219 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1220 local->ps_sdata = NULL;
1221 return;
1222 }
1223
1224 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001225 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001226 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301227 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1228 /* If an AP vif is found, then disable PS
1229 * by setting the count to zero thereby setting
1230 * ps_sdata to NULL.
1231 */
1232 count = 0;
1233 break;
1234 }
Johannes Berg965beda2009-04-16 13:17:24 +02001235 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1236 continue;
1237 found = sdata;
1238 count++;
1239 }
1240
Jason Young808118c2011-03-10 16:43:19 -08001241 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001242 s32 beaconint_us;
1243
1244 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001245 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001246
1247 beaconint_us = ieee80211_tu_to_usec(
1248 found->vif.bss_conf.beacon_int);
1249
Juuso Oikarinenff616382010-06-09 09:51:52 +03001250 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001251 if (timeout < 0) {
1252 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001253 * Go to full PSM if the user configures a very low
1254 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001255 * The 2000 second value is there for compatibility
1256 * until the PM_QOS_NETWORK_LATENCY is configured
1257 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001258 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001259 if (latency > (1900 * USEC_PER_MSEC) &&
1260 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001261 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001262 else
1263 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001264 }
Johannes Berg09b85562013-02-06 23:07:41 +01001265 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001266
Johannes Berg04fe2032009-04-22 18:44:37 +02001267 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001268 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001269 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001270 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001271 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001272
1273 /* If the TIM IE is invalid, pretend the value is 1 */
1274 if (!dtimper)
1275 dtimper = 1;
1276 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001277 maxslp = min_t(int, dtimper,
1278 latency / beaconint_us);
1279
Johannes Berg9ccebe62009-04-23 10:32:36 +02001280 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001281 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001282 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001283 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001284 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001285 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001286 }
Johannes Berg965beda2009-04-16 13:17:24 +02001287
1288 ieee80211_change_ps(local);
1289}
1290
Eliad Pellerab095872012-07-27 12:33:22 +03001291void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1292{
1293 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1294
1295 if (sdata->vif.bss_conf.ps != ps_allowed) {
1296 sdata->vif.bss_conf.ps = ps_allowed;
1297 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1298 }
1299}
1300
Johannes Berg965beda2009-04-16 13:17:24 +02001301void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1302{
1303 struct ieee80211_local *local =
1304 container_of(work, struct ieee80211_local,
1305 dynamic_ps_disable_work);
1306
1307 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1308 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1309 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1310 }
1311
1312 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001313 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001314 IEEE80211_QUEUE_STOP_REASON_PS);
1315}
1316
1317void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1318{
1319 struct ieee80211_local *local =
1320 container_of(work, struct ieee80211_local,
1321 dynamic_ps_enable_work);
1322 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001323 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301324 unsigned long flags;
1325 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001326
1327 /* can only happen when PS was just disabled anyway */
1328 if (!sdata)
1329 return;
1330
Christian Lamparter5e340692011-06-30 21:08:43 +02001331 ifmgd = &sdata->u.mgd;
1332
Johannes Berg965beda2009-04-16 13:17:24 +02001333 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1334 return;
1335
Johannes Berg09b85562013-02-06 23:07:41 +01001336 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001337 /* don't enter PS if TX frames are pending */
1338 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301339 mod_timer(&local->dynamic_ps_timer, jiffies +
1340 msecs_to_jiffies(
1341 local->hw.conf.dynamic_ps_timeout));
1342 return;
1343 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001344
1345 /*
1346 * transmission can be stopped by others which leads to
1347 * dynamic_ps_timer expiry. Postpone the ps timer if it
1348 * is not the actual idle state.
1349 */
1350 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1351 for (q = 0; q < local->hw.queues; q++) {
1352 if (local->queue_stop_reasons[q]) {
1353 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1354 flags);
1355 mod_timer(&local->dynamic_ps_timer, jiffies +
1356 msecs_to_jiffies(
1357 local->hw.conf.dynamic_ps_timeout));
1358 return;
1359 }
1360 }
1361 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301362 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301363
Vivek Natarajan375177b2010-02-09 14:50:28 +05301364 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301365 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001366 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301367 mod_timer(&local->dynamic_ps_timer, jiffies +
1368 msecs_to_jiffies(
1369 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001370 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301371 ieee80211_send_nullfunc(local, sdata, 1);
1372 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001373 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301374 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301375 }
1376
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001377 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1378 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301379 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1380 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1381 local->hw.conf.flags |= IEEE80211_CONF_PS;
1382 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1383 }
Johannes Berg965beda2009-04-16 13:17:24 +02001384}
1385
1386void ieee80211_dynamic_ps_timer(unsigned long data)
1387{
1388 struct ieee80211_local *local = (void *) data;
1389
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001390 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001391 return;
1392
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001393 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001394}
1395
Simon Wunderlich164eb022013-02-08 18:16:20 +01001396void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1397{
1398 struct delayed_work *delayed_work =
1399 container_of(work, struct delayed_work, work);
1400 struct ieee80211_sub_if_data *sdata =
1401 container_of(delayed_work, struct ieee80211_sub_if_data,
1402 dfs_cac_timer_work);
1403
1404 ieee80211_vif_release_channel(sdata);
1405
1406 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_FINISHED, GFP_KERNEL);
1407}
1408
Johannes Berg60f8b392008-09-08 17:44:22 +02001409/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001410static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001411 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001412 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001413{
Jiri Bencf0706e82007-05-05 11:45:53 -07001414 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001415 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001416 size_t left;
1417 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001418 const u8 *pos;
1419 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001420
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001421 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001422 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001423
Johannes Berg32c50572012-03-28 11:04:29 +02001424 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001425 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001426
1427 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001428 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001429
Jiri Bencf0706e82007-05-05 11:45:53 -07001430 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001431 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001432
1433 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001434 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001435
Jiri Bencf0706e82007-05-05 11:45:53 -07001436 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001437 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001438 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001439 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001440
1441 pos = wmm_param + 8;
1442 left = wmm_param_len - 8;
1443
1444 memset(&params, 0, sizeof(params));
1445
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001446 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001447 for (; left >= 4; left -= 4, pos += 4) {
1448 int aci = (pos[0] >> 5) & 0x03;
1449 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001450 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001451 int queue;
1452
1453 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001454 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001455 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001456 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001457 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001458 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1459 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001460 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001461 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001462 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001463 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001464 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001465 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1466 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001467 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001468 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001469 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001470 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001471 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001472 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1473 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001474 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001475 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001476 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001477 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001478 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001479 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001480 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1481 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001482 break;
1483 }
1484
1485 params.aifs = pos[0] & 0x0f;
1486 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1487 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001488 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001489 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001490 params.uapsd = uapsd;
1491
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001492 mlme_dbg(sdata,
1493 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1494 queue, aci, acm,
1495 params.aifs, params.cw_min, params.cw_max,
1496 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001497 sdata->tx_conf[queue] = params;
1498 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001499 sdata_err(sdata,
1500 "failed to set TX queue parameters for queue %d\n",
1501 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001502 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001503
1504 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001505 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001506 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001507}
1508
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001509static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1510{
1511 lockdep_assert_held(&sdata->local->mtx);
1512
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001513 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001514 ieee80211_run_deferred_scan(sdata->local);
1515}
1516
1517static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1518{
1519 mutex_lock(&sdata->local->mtx);
1520 __ieee80211_stop_poll(sdata);
1521 mutex_unlock(&sdata->local->mtx);
1522}
1523
Johannes Berg7a5158e2008-10-08 10:59:33 +02001524static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1525 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001526{
Johannes Bergbda39332008-10-11 01:51:51 +02001527 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001528 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001529 bool use_protection;
1530 bool use_short_preamble;
1531 bool use_short_slot;
1532
1533 if (erp_valid) {
1534 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1535 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1536 } else {
1537 use_protection = false;
1538 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1539 }
1540
1541 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001542 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001543 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001544
Johannes Berg471b3ef2007-12-28 14:32:58 +01001545 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001546 bss_conf->use_cts_prot = use_protection;
1547 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001548 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001549
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001550 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001551 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001552 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001553 }
Daniel Draked9430a32007-07-27 15:43:24 +02001554
Johannes Berg7a5158e2008-10-08 10:59:33 +02001555 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001556 bss_conf->use_short_slot = use_short_slot;
1557 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001558 }
1559
1560 return changed;
1561}
1562
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001563static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001564 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001565 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001566{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001567 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001568 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001569 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001570
Johannes Bergae5eb022008-10-14 16:58:37 +02001571 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001572 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001573 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001574
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001575 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001576 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001577
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001578 sdata->u.mgd.associated = cbss;
1579 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001580
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001581 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1582
Johannes Berg488dd7b2012-10-29 20:08:01 +01001583 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001584 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001585
Johannes Berg9caf0362012-11-29 01:25:20 +01001586 rcu_read_lock();
1587 ies = rcu_dereference(cbss->ies);
1588 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001589 int ret;
1590
1591 ret = cfg80211_get_p2p_attr(
1592 ies->data, ies->len,
1593 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001594 (u8 *) &bss_conf->p2p_noa_attr,
1595 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001596 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001597 sdata->u.mgd.p2p_noa_index =
1598 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001599 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001600 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001601 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001602 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001603 }
1604
Johannes Bergb291ba12009-07-10 15:29:03 +02001605 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001606 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001607
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001608 ieee80211_led_assoc(local, 1);
1609
Alexander Bondar989c6502013-05-16 17:34:17 +03001610 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001611 /*
1612 * If the AP is buggy we may get here with no DTIM period
1613 * known, so assume it's 1 which is the only safe assumption
1614 * in that case, although if the TIM IE is broken powersave
1615 * probably just won't work at all.
1616 */
1617 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001618 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001619 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001620 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001621 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001622 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001623 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001624
Juuso Oikarinen68542962010-06-09 13:43:26 +03001625 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001626
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001627 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001628 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001629 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001630 bss_info_changed |= BSS_CHANGED_CQM;
1631
Juuso Oikarinen68542962010-06-09 13:43:26 +03001632 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001633 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001634 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001635
Johannes Bergae5eb022008-10-14 16:58:37 +02001636 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001637
Johannes Berg056508d2009-07-30 21:43:55 +02001638 mutex_lock(&local->iflist_mtx);
1639 ieee80211_recalc_ps(local, -1);
1640 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001641
Johannes Berg04ecd252012-09-11 14:34:12 +02001642 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001643 ieee80211_recalc_ps_vif(sdata);
1644
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001645 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001646}
1647
Jouni Malinene69e95d2010-03-29 23:29:31 -07001648static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001649 u16 stype, u16 reason, bool tx,
1650 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001651{
Johannes Berg46900292009-02-15 12:44:28 +01001652 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001653 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001654 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001655
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001656 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001657
Johannes Berg37ad3882012-02-24 13:50:54 +01001658 if (WARN_ON_ONCE(tx && !frame_buf))
1659 return;
1660
Johannes Bergb291ba12009-07-10 15:29:03 +02001661 if (WARN_ON(!ifmgd->associated))
1662 return;
1663
David Spinadel79543d82012-06-12 09:59:45 +03001664 ieee80211_stop_poll(sdata);
1665
Johannes Berg77fdaa12009-07-07 03:45:17 +02001666 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001667 netif_carrier_off(sdata->dev);
1668
Eliad Peller88bc40e2012-07-12 17:35:33 +03001669 /*
1670 * if we want to get out of ps before disassoc (why?) we have
1671 * to do it before sending disassoc, as otherwise the null-packet
1672 * won't be valid.
1673 */
1674 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1675 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1676 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1677 }
1678 local->ps_sdata = NULL;
1679
Eliad Pellerab095872012-07-27 12:33:22 +03001680 /* disable per-vif ps */
1681 ieee80211_recalc_ps_vif(sdata);
1682
Eliad Pellerf8239812012-06-27 14:18:22 +03001683 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1684 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001685 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001686
Johannes Berg37ad3882012-02-24 13:50:54 +01001687 /* deauthenticate/disassociate now */
1688 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001689 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1690 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001691
1692 /* flush out frame */
1693 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001694 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001695
Eliad Peller88a9e312012-06-01 11:14:03 +03001696 /* clear bssid only after building the needed mgmt frames */
1697 memset(ifmgd->bssid, 0, ETH_ALEN);
1698
Johannes Berg37ad3882012-02-24 13:50:54 +01001699 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001700 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001701
1702 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001703 changed |= ieee80211_reset_erp_info(sdata);
1704
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001705 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001706 changed |= BSS_CHANGED_ASSOC;
1707 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001708
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001709 ifmgd->p2p_noa_index = -1;
1710 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1711 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001712
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001713 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001714 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1715 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001716 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1717 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001718
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001719 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301720
Kalle Valo520eb822008-12-18 23:35:27 +02001721 del_timer_sync(&local->dynamic_ps_timer);
1722 cancel_work_sync(&local->dynamic_ps_enable_work);
1723
Juuso Oikarinen68542962010-06-09 13:43:26 +03001724 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001725 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001726 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001727
Johannes Berg3abead52012-03-02 15:56:59 +01001728 sdata->vif.bss_conf.qos = false;
1729 changed |= BSS_CHANGED_QOS;
1730
Johannes Berg0aaffa92010-05-05 15:28:27 +02001731 /* The BSSID (not really interesting) and HT changed */
1732 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001733 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001734
Johannes Berg3abead52012-03-02 15:56:59 +01001735 /* disassociated - set to defaults now */
1736 ieee80211_set_wmm_default(sdata, false);
1737
Johannes Bergb9dcf712010-08-27 12:35:54 +02001738 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1739 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1740 del_timer_sync(&sdata->u.mgd.timer);
1741 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001742
Johannes Berg826262c2012-12-10 16:38:14 +02001743 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001744 sdata->vif.bss_conf.beacon_rate = NULL;
1745
Alexander Bondar989c6502013-05-16 17:34:17 +03001746 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001747
Johannes Berg028e8da02012-11-26 11:57:41 +01001748 ifmgd->flags = 0;
1749 ieee80211_vif_release_channel(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001750}
Jiri Bencf0706e82007-05-05 11:45:53 -07001751
Kalle Valo3cf335d2009-03-22 21:57:06 +02001752void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1753 struct ieee80211_hdr *hdr)
1754{
1755 /*
1756 * We can postpone the mgd.timer whenever receiving unicast frames
1757 * from AP because we know that the connection is working both ways
1758 * at that time. But multicast frames (and hence also beacons) must
1759 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001760 * data idle periods for sending the periodic probe request to the
1761 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001762 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001763 if (is_multicast_ether_addr(hdr->addr1))
1764 return;
1765
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001766 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001767}
Jiri Bencf0706e82007-05-05 11:45:53 -07001768
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001769static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1770{
1771 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001772 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001773
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001774 mutex_lock(&local->mtx);
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001775 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
1776 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001777
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001778 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001779
1780 mutex_lock(&local->iflist_mtx);
1781 ieee80211_recalc_ps(local, -1);
1782 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001783
1784 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001785 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001786
1787 /*
1788 * We've received a probe response, but are not sure whether
1789 * we have or will be receiving any beacons or data, so let's
1790 * schedule the timers again, just in case.
1791 */
1792 ieee80211_sta_reset_beacon_monitor(sdata);
1793
1794 mod_timer(&ifmgd->conn_mon_timer,
1795 round_jiffies_up(jiffies +
1796 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001797out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001798 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001799}
1800
1801void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001802 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001803{
Felix Fietkau75706d02010-12-02 21:01:07 +01001804 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001805 return;
1806
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001807 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1808 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001809 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001810 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001811 else
1812 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001813 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001814 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001815 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001816
1817 if (ack)
1818 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001819}
1820
Maxim Levitskya43abf22009-07-31 18:54:12 +03001821static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1822{
1823 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1824 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001825 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001826 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001827
1828 /*
1829 * Try sending broadcast probe requests for the last three
1830 * probe requests after the first ones failed since some
1831 * buggy APs only support broadcast probe requests.
1832 */
1833 if (ifmgd->probe_send_count >= unicast_limit)
1834 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001835
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001836 /*
1837 * When the hardware reports an accurate Tx ACK status, it's
1838 * better to send a nullfunc frame instead of a probe request,
1839 * as it will kick us off the AP quickly if we aren't associated
1840 * anymore. The timeout will be reset if the frame is ACKed by
1841 * the AP.
1842 */
Soumik Das992e68b2012-05-20 15:31:13 +05301843 ifmgd->probe_send_count++;
1844
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001845 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1846 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001847 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001848 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001849 int ssid_len;
1850
Johannes Berg9caf0362012-11-29 01:25:20 +01001851 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001852 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001853 if (WARN_ON_ONCE(ssid == NULL))
1854 ssid_len = 0;
1855 else
1856 ssid_len = ssid[1];
1857
1858 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001859 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02001860 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01001861 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001862 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001863
Ben Greear180205b2011-02-04 15:30:24 -08001864 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001865 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301866 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01001867 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001868}
1869
Johannes Bergb291ba12009-07-10 15:29:03 +02001870static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1871 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001872{
Kalle Valo04de8382009-03-22 21:57:35 +02001873 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001874 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001875
Johannes Berg9607e6b2009-12-23 13:15:31 +01001876 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001877 return;
1878
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001879 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001880
1881 if (!ifmgd->associated)
1882 goto out;
1883
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001884 mutex_lock(&sdata->local->mtx);
1885
1886 if (sdata->local->tmp_channel || sdata->local->scanning) {
1887 mutex_unlock(&sdata->local->mtx);
1888 goto out;
1889 }
1890
Ben Greeara13fbe52013-03-25 11:19:35 -07001891 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001892 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07001893 "detected beacon loss from AP (missed %d beacons) - probing\n",
1894 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001895
Ben Greeara13fbe52013-03-25 11:19:35 -07001896 ieee80211_cqm_rssi_notify(&sdata->vif,
1897 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
1898 GFP_KERNEL);
1899 }
Kalle Valo04de8382009-03-22 21:57:35 +02001900
Johannes Bergb291ba12009-07-10 15:29:03 +02001901 /*
1902 * The driver/our work has already reported this event or the
1903 * connection monitoring has kicked in and we have already sent
1904 * a probe request. Or maybe the AP died and the driver keeps
1905 * reporting until we disassociate...
1906 *
1907 * In either case we have to ignore the current call to this
1908 * function (except for setting the correct probe reason bit)
1909 * because otherwise we would reset the timer every time and
1910 * never check whether we received a probe response!
1911 */
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001912 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Johannes Bergb291ba12009-07-10 15:29:03 +02001913 already = true;
1914
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001915 mutex_unlock(&sdata->local->mtx);
1916
Johannes Bergb291ba12009-07-10 15:29:03 +02001917 if (already)
1918 goto out;
1919
Johannes Berg4e751842009-06-10 15:16:52 +02001920 mutex_lock(&sdata->local->iflist_mtx);
1921 ieee80211_recalc_ps(sdata->local, -1);
1922 mutex_unlock(&sdata->local->iflist_mtx);
1923
Maxim Levitskya43abf22009-07-31 18:54:12 +03001924 ifmgd->probe_send_count = 0;
1925 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001926 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001927 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02001928}
1929
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001930struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1931 struct ieee80211_vif *vif)
1932{
1933 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1934 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001935 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001936 struct sk_buff *skb;
1937 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001938 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001939
1940 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1941 return NULL;
1942
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001943 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001944
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001945 if (ifmgd->associated)
1946 cbss = ifmgd->associated;
1947 else if (ifmgd->auth_data)
1948 cbss = ifmgd->auth_data->bss;
1949 else if (ifmgd->assoc_data)
1950 cbss = ifmgd->assoc_data->bss;
1951 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001952 return NULL;
1953
Johannes Berg9caf0362012-11-29 01:25:20 +01001954 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001955 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001956 if (WARN_ON_ONCE(ssid == NULL))
1957 ssid_len = 0;
1958 else
1959 ssid_len = ssid[1];
1960
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001961 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02001962 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02001963 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001964 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01001965 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001966
1967 return skb;
1968}
1969EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1970
Johannes Bergeef9e542013-01-29 13:09:34 +01001971static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001972{
1973 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001974 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001975
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001976 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001977 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001978 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001979 return;
1980 }
1981
Johannes Berg37ad3882012-02-24 13:50:54 +01001982 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1983 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01001984 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02001985 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03001986 sdata->vif.csa_active = false;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001987 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001988 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001989 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001990
Johannes Berg6ff57cf2013-05-16 00:55:00 +02001991 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
1992 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001993 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001994}
1995
Johannes Bergcc74c0c2012-08-01 16:49:34 +02001996static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02001997{
1998 struct ieee80211_sub_if_data *sdata =
1999 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002000 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002001 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2002 struct sta_info *sta;
2003
2004 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302005 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002006 sta = sta_info_get(sdata, ifmgd->bssid);
2007 if (sta)
2008 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302009 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002010 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002011
Johannes Berg682bd382013-01-29 13:13:50 +01002012 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002013 sdata_info(sdata, "Connection to AP %pM lost\n",
2014 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002015 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002016 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002017 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002018 }
2019}
2020
2021static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2022{
2023 struct ieee80211_sub_if_data *sdata =
2024 container_of(work, struct ieee80211_sub_if_data,
2025 u.mgd.csa_connection_drop_work);
2026
Johannes Bergeef9e542013-01-29 13:09:34 +01002027 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002028}
2029
Kalle Valo04de8382009-03-22 21:57:35 +02002030void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2031{
2032 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002033 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002034
Johannes Bergb5878a22010-04-07 16:48:40 +02002035 trace_api_beacon_loss(sdata);
2036
Johannes Berg682bd382013-01-29 13:13:50 +01002037 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002038 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002039}
2040EXPORT_SYMBOL(ieee80211_beacon_loss);
2041
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002042void ieee80211_connection_loss(struct ieee80211_vif *vif)
2043{
2044 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2045 struct ieee80211_hw *hw = &sdata->local->hw;
2046
Johannes Bergb5878a22010-04-07 16:48:40 +02002047 trace_api_connection_loss(sdata);
2048
Johannes Berg682bd382013-01-29 13:13:50 +01002049 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002050 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2051}
2052EXPORT_SYMBOL(ieee80211_connection_loss);
2053
2054
Johannes Berg66e67e42012-01-20 13:55:27 +01002055static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2056 bool assoc)
2057{
2058 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2059
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002060 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002061
Johannes Berg66e67e42012-01-20 13:55:27 +01002062 if (!assoc) {
2063 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2064
2065 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2066 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002067 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002068 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002069 }
2070
Johannes Berg5b112d32013-02-01 01:49:58 +01002071 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002072 kfree(auth_data);
2073 sdata->u.mgd.auth_data = NULL;
2074}
2075
2076static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2077 struct ieee80211_mgmt *mgmt, size_t len)
2078{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002079 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002080 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2081 u8 *pos;
2082 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002083 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002084
2085 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002086 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002087 if (!elems.challenge)
2088 return;
2089 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002090 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002091 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2092 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2093 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002094 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002095 elems.challenge - 2, elems.challenge_len + 2,
2096 auth_data->bss->bssid, auth_data->bss->bssid,
2097 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002098 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002099}
2100
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002101static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2102 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002103{
2104 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2105 u8 bssid[ETH_ALEN];
2106 u16 auth_alg, auth_transaction, status_code;
2107 struct sta_info *sta;
2108
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002109 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002110
2111 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002112 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002113
2114 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002115 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002116
2117 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2118
Joe Perchesb203ca32012-05-08 18:56:52 +00002119 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002120 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002121
2122 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2123 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2124 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2125
2126 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002127 auth_transaction != ifmgd->auth_data->expected_transaction) {
2128 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2129 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2130 auth_transaction,
2131 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002132 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002133 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002134
2135 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002136 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2137 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002138 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002139 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002140 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002141 }
2142
2143 switch (ifmgd->auth_data->algorithm) {
2144 case WLAN_AUTH_OPEN:
2145 case WLAN_AUTH_LEAP:
2146 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002147 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002148 break;
2149 case WLAN_AUTH_SHARED_KEY:
2150 if (ifmgd->auth_data->expected_transaction != 4) {
2151 ieee80211_auth_challenge(sdata, mgmt, len);
2152 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002153 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002154 }
2155 break;
2156 default:
2157 WARN_ONCE(1, "invalid auth alg %d",
2158 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002159 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002160 }
2161
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002162 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002163 ifmgd->auth_data->done = true;
2164 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002165 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002166 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002167
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002168 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2169 ifmgd->auth_data->expected_transaction != 2) {
2170 /*
2171 * Report auth frame to user space for processing since another
2172 * round of Authentication frames is still needed.
2173 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002174 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002175 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002176 }
2177
Johannes Berg66e67e42012-01-20 13:55:27 +01002178 /* move station state to auth */
2179 mutex_lock(&sdata->local->sta_mtx);
2180 sta = sta_info_get(sdata, bssid);
2181 if (!sta) {
2182 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2183 goto out_err;
2184 }
2185 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002186 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002187 goto out_err;
2188 }
2189 mutex_unlock(&sdata->local->sta_mtx);
2190
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002191 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002192 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002193 out_err:
2194 mutex_unlock(&sdata->local->sta_mtx);
2195 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002196}
2197
2198
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002199static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2200 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002201{
Johannes Berg46900292009-02-15 12:44:28 +01002202 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002203 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002204 u16 reason_code;
2205
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002206 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002207
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002208 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002209 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002210
Johannes Berg66e67e42012-01-20 13:55:27 +01002211 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002212 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002213 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002214
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002215 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002216
2217 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2218
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002219 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2220 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002221
Johannes Berg37ad3882012-02-24 13:50:54 +01002222 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2223
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002224 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002225}
2226
2227
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002228static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2229 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002230{
Johannes Berg46900292009-02-15 12:44:28 +01002231 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002232 u16 reason_code;
2233
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002234 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002235
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002236 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002237 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002238
Johannes Berg66e67e42012-01-20 13:55:27 +01002239 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002240 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002241 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002242
2243 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2244
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002245 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2246 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002247
Johannes Berg37ad3882012-02-24 13:50:54 +01002248 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2249
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002250 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002251}
2252
Christian Lamparterc74d0842011-10-15 00:14:49 +02002253static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2254 u8 *supp_rates, unsigned int supp_rates_len,
2255 u32 *rates, u32 *basic_rates,
2256 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002257 int *min_rate, int *min_rate_index,
2258 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002259{
2260 int i, j;
2261
2262 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002263 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002264 bool is_basic = !!(supp_rates[i] & 0x80);
2265
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002266 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002267 *have_higher_than_11mbit = true;
2268
2269 /*
2270 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2271 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2272 *
2273 * Note: Even through the membership selector and the basic
2274 * rate flag share the same bit, they are not exactly
2275 * the same.
2276 */
2277 if (!!(supp_rates[i] & 0x80) &&
2278 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2279 continue;
2280
2281 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002282 struct ieee80211_rate *br;
2283 int brate;
2284
2285 br = &sband->bitrates[j];
2286 if ((rate_flags & br->flags) != rate_flags)
2287 continue;
2288
2289 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2290 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002291 *rates |= BIT(j);
2292 if (is_basic)
2293 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002294 if ((rate * 5) < *min_rate) {
2295 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002296 *min_rate_index = j;
2297 }
2298 break;
2299 }
2300 }
2301 }
2302}
Jiri Bencf0706e82007-05-05 11:45:53 -07002303
Johannes Berg66e67e42012-01-20 13:55:27 +01002304static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2305 bool assoc)
2306{
2307 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2308
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002309 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002310
Johannes Berg66e67e42012-01-20 13:55:27 +01002311 if (!assoc) {
2312 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2313
2314 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2315 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002316 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002317 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002318 }
2319
2320 kfree(assoc_data);
2321 sdata->u.mgd.assoc_data = NULL;
2322}
2323
2324static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2325 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002326 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002327{
Johannes Berg46900292009-02-15 12:44:28 +01002328 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002329 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002330 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002331 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002332 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002333 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002334 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002335 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002336 const struct cfg80211_bss_ies *bss_ies = NULL;
2337 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002338 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002339 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002340 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002341
Johannes Bergaf6b6372009-12-23 13:15:35 +01002342 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002343
Jiri Bencf0706e82007-05-05 11:45:53 -07002344 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002345 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002346
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002347 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002348 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2349 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002350 aid &= ~(BIT(15) | BIT(14));
2351
Johannes Berg05cb9102011-10-28 11:59:47 +02002352 ifmgd->broken_ap = false;
2353
2354 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002355 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2356 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002357 aid = 0;
2358 ifmgd->broken_ap = true;
2359 }
2360
Johannes Bergaf6b6372009-12-23 13:15:35 +01002361 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002362 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002363
Jiri Bencf0706e82007-05-05 11:45:53 -07002364 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002365 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002366 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002367 }
2368
Johannes Berg46900292009-02-15 12:44:28 +01002369 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002370
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002371 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002372 * Some APs are erroneously not including some information in their
2373 * (re)association response frames. Try to recover by using the data
2374 * from the beacon or probe response. This seems to afflict mobile
2375 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2376 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2377 */
2378 if ((assoc_data->wmm && !elems.wmm_param) ||
2379 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2380 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2381 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2382 (!elems.vht_cap_elem || !elems.vht_operation))) {
2383 const struct cfg80211_bss_ies *ies;
2384 struct ieee802_11_elems bss_elems;
2385
2386 rcu_read_lock();
2387 ies = rcu_dereference(cbss->ies);
2388 if (ies)
2389 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2390 GFP_ATOMIC);
2391 rcu_read_unlock();
2392 if (!bss_ies)
2393 return false;
2394
2395 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2396 false, &bss_elems);
2397 if (assoc_data->wmm &&
2398 !elems.wmm_param && bss_elems.wmm_param) {
2399 elems.wmm_param = bss_elems.wmm_param;
2400 sdata_info(sdata,
2401 "AP bug: WMM param missing from AssocResp\n");
2402 }
2403
2404 /*
2405 * Also check if we requested HT/VHT, otherwise the AP doesn't
2406 * have to include the IEs in the (re)association response.
2407 */
2408 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2409 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2410 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2411 sdata_info(sdata,
2412 "AP bug: HT capability missing from AssocResp\n");
2413 }
2414 if (!elems.ht_operation && bss_elems.ht_operation &&
2415 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2416 elems.ht_operation = bss_elems.ht_operation;
2417 sdata_info(sdata,
2418 "AP bug: HT operation missing from AssocResp\n");
2419 }
2420 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2421 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2422 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2423 sdata_info(sdata,
2424 "AP bug: VHT capa missing from AssocResp\n");
2425 }
2426 if (!elems.vht_operation && bss_elems.vht_operation &&
2427 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2428 elems.vht_operation = bss_elems.vht_operation;
2429 sdata_info(sdata,
2430 "AP bug: VHT operation missing from AssocResp\n");
2431 }
2432 }
2433
2434 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002435 * We previously checked these in the beacon/probe response, so
2436 * they should be present here. This is just a safety net.
2437 */
2438 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2439 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2440 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002441 "HT AP is missing WMM params or HT capability/operation\n");
2442 ret = false;
2443 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002444 }
2445
2446 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2447 (!elems.vht_cap_elem || !elems.vht_operation)) {
2448 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002449 "VHT AP is missing VHT capability/operation\n");
2450 ret = false;
2451 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002452 }
2453
Guy Eilam2a33bee2011-08-17 15:18:15 +03002454 mutex_lock(&sdata->local->sta_mtx);
2455 /*
2456 * station info was already allocated and inserted before
2457 * the association and should be available to us
2458 */
Johannes Berg7852e362012-01-20 13:55:24 +01002459 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002460 if (WARN_ON(!sta)) {
2461 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002462 ret = false;
2463 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002464 }
2465
Johannes Berg55de9082012-07-26 17:24:39 +02002466 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002467
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002468 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002469 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002470 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002471 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002472
Mahesh Palivela818255e2012-10-10 11:33:04 +00002473 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2474 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002475 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002476
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002477 /*
2478 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2479 * in their association response, so ignore that data for our own
2480 * configuration. If it changed since the last beacon, we'll get the
2481 * next beacon and update then.
2482 */
Johannes Berg11289582013-02-07 17:36:12 +01002483
Johannes Bergbee7f582013-02-07 22:24:55 +01002484 /*
2485 * If an operating mode notification IE is present, override the
2486 * NSS calculation (that would be done in rate_control_rate_init())
2487 * and use the # of streams from that element.
2488 */
2489 if (elems.opmode_notif &&
2490 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2491 u8 nss;
2492
2493 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2494 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2495 nss += 1;
2496 sta->sta.rx_nss = nss;
2497 }
2498
Johannes Berg4b7679a2008-09-18 18:14:18 +02002499 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002500
Johannes Berg46900292009-02-15 12:44:28 +01002501 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002502 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002503
Johannes Bergddf4ac52008-10-22 11:41:38 +02002504 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002505 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002506
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002507 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002508 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2509 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2510 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002511 sdata_info(sdata,
2512 "failed to move station %pM to desired state\n",
2513 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002514 WARN_ON(__sta_info_destroy(sta));
2515 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002516 ret = false;
2517 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002518 }
2519
Johannes Berg7852e362012-01-20 13:55:24 +01002520 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002521
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002522 /*
2523 * Always handle WMM once after association regardless
2524 * of the first value the AP uses. Setting -1 here has
2525 * that effect because the AP values is an unsigned
2526 * 4-bit value.
2527 */
2528 ifmgd->wmm_last_param_set = -1;
2529
Johannes Bergddf4ac52008-10-22 11:41:38 +02002530 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002531 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002532 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002533 else
Johannes Berg3abead52012-03-02 15:56:59 +01002534 ieee80211_set_wmm_default(sdata, false);
2535 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002536
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002537 /* set AID and assoc capability,
2538 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002539 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002540 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002541 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002542
Kalle Valo15b7b062009-03-22 21:57:14 +02002543 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002544 * If we're using 4-addr mode, let the AP know that we're
2545 * doing so, so that it can create the STA VLAN on its side
2546 */
2547 if (ifmgd->use_4addr)
2548 ieee80211_send_4addr_nullfunc(local, sdata);
2549
2550 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002551 * Start timer to probe the connection to the AP now.
2552 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002553 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002554 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002555 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002556
Johannes Berg35d865a2013-05-28 10:54:03 +02002557 ret = true;
2558 out:
2559 kfree(bss_ies);
2560 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002561}
2562
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002563static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2564 struct ieee80211_mgmt *mgmt,
2565 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002566{
2567 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2568 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2569 u16 capab_info, status_code, aid;
2570 struct ieee802_11_elems elems;
2571 u8 *pos;
2572 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002573 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002574
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002575 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002576
2577 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002578 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002579 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002580 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002581
2582 /*
2583 * AssocResp and ReassocResp have identical structure, so process both
2584 * of them in this function.
2585 */
2586
2587 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002588 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002589
2590 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2591 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2592 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2593 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2594
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002595 sdata_info(sdata,
2596 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2597 reassoc ? "Rea" : "A", mgmt->sa,
2598 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002599
2600 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002601 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002602
2603 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002604 elems.timeout_int &&
2605 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002606 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002607 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002608 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002609 sdata_info(sdata,
2610 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2611 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002612 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002613 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002614 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002615 run_again(sdata, assoc_data->timeout);
2616 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002617 }
2618
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002619 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002620
2621 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002622 sdata_info(sdata, "%pM denied association (code=%d)\n",
2623 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002624 ieee80211_destroy_assoc_data(sdata, false);
2625 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002626 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002627 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002628 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002629 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002630 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002631 }
John W. Linville635d9992012-07-09 16:34:34 -04002632 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002633
2634 /*
2635 * destroy assoc_data afterwards, as otherwise an idle
2636 * recalc after assoc_data is NULL but before associated
2637 * is set can cause the interface to go idle
2638 */
2639 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002640 }
2641
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002642 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002643}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002644
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002645static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002646 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002647 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002648 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002649{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002650 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002651 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002652 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002653 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002654
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002655 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002656
Johannes Berg1cd8e882013-03-27 14:30:12 +01002657 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002658 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2659 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002660 else
2661 freq = rx_status->freq;
2662
2663 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2664
2665 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2666 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002667
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002668 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002669 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002670 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002671 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002672 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2673 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002674}
2675
2676
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002677static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002678 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002679{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002680 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002681 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002682 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2683 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002684 struct ieee802_11_elems elems;
2685
Kalle Valo15b7b062009-03-22 21:57:14 +02002686 ifmgd = &sdata->u.mgd;
2687
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002688 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002689
Joe Perchesb203ca32012-05-08 18:56:52 +00002690 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002691 return; /* ignore ProbeResp to foreign address */
2692
Ester Kummerae6a44e2008-06-27 18:54:48 +03002693 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2694 if (baselen > len)
2695 return;
2696
2697 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002698 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002699
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002700 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002701
Johannes Berg77fdaa12009-07-07 03:45:17 +02002702 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002703 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002704 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002705
2706 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002707 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002708 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002709 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002710 ifmgd->auth_data->tries = 0;
2711 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002712 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002713 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002714 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002715}
2716
Johannes Bergd91f36d2009-04-16 13:17:26 +02002717/*
2718 * This is the canonical list of information elements we care about,
2719 * the filter code also gives us all changes to the Microsoft OUI
2720 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2721 *
2722 * We implement beacon filtering in software since that means we can
2723 * avoid processing the frame here and in cfg80211, and userspace
2724 * will not be able to tell whether the hardware supports it or not.
2725 *
2726 * XXX: This list needs to be dynamic -- userspace needs to be able to
2727 * add items it requires. It also needs to be able to tell us to
2728 * look out for other vendor IEs.
2729 */
2730static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002731 (1ULL << WLAN_EID_COUNTRY) |
2732 (1ULL << WLAN_EID_ERP_INFO) |
2733 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2734 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2735 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002736 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002737
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002738static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2739 struct ieee80211_mgmt *mgmt, size_t len,
2740 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002741{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002742 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002743 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002744 size_t baselen;
2745 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002746 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002747 struct ieee80211_chanctx_conf *chanctx_conf;
2748 struct ieee80211_channel *chan;
Johannes Bergbee7f582013-02-07 22:24:55 +01002749 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002750 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002751 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002752 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002753 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002754 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002755 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002756
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002757 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002758
Ester Kummerae6a44e2008-06-27 18:54:48 +03002759 /* Process beacon from the current BSS */
2760 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2761 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002762 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002763
Johannes Berg55de9082012-07-26 17:24:39 +02002764 rcu_read_lock();
2765 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2766 if (!chanctx_conf) {
2767 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002768 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002769 }
2770
Johannes Berg4bf88532012-11-09 11:39:59 +01002771 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002772 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002773 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002774 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002775 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002776 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002777
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002778 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002779 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002780 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002781 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002782
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002783 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002784 if (elems.tim && !elems.parse_error) {
2785 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2786 ifmgd->dtim_period = tim_ie->dtim_period;
2787 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002788 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002789 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002790 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2791 sdata->vif.bss_conf.sync_tsf =
2792 le64_to_cpu(mgmt->u.beacon.timestamp);
2793 sdata->vif.bss_conf.sync_device_ts =
2794 rx_status->device_timestamp;
2795 if (elems.tim)
2796 sdata->vif.bss_conf.sync_dtim_count =
2797 elems.tim->dtim_count;
2798 else
2799 sdata->vif.bss_conf.sync_dtim_count = 0;
2800 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002801 /* continue assoc process */
2802 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002803 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002804 run_again(sdata, ifmgd->assoc_data->timeout);
2805 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002806 }
2807
2808 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002809 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002810 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002811 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002812
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002813 /* Track average RSSI from the Beacon frames of the current AP */
2814 ifmgd->last_beacon_signal = rx_status->signal;
2815 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2816 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002817 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002818 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002819 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002820 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002821 } else {
2822 ifmgd->ave_beacon_signal =
2823 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2824 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2825 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002826 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002827 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002828
2829 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2830 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2831 int sig = ifmgd->ave_beacon_signal;
2832 int last_sig = ifmgd->last_ave_beacon_signal;
2833
2834 /*
2835 * if signal crosses either of the boundaries, invoke callback
2836 * with appropriate parameters
2837 */
2838 if (sig > ifmgd->rssi_max_thold &&
2839 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2840 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002841 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002842 } else if (sig < ifmgd->rssi_min_thold &&
2843 (last_sig >= ifmgd->rssi_max_thold ||
2844 last_sig == 0)) {
2845 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002846 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002847 }
2848 }
2849
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002850 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002851 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002852 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002853 int sig = ifmgd->ave_beacon_signal / 16;
2854 int last_event = ifmgd->last_cqm_event_signal;
2855 int thold = bss_conf->cqm_rssi_thold;
2856 int hyst = bss_conf->cqm_rssi_hyst;
2857 if (sig < thold &&
2858 (last_event == 0 || sig < last_event - hyst)) {
2859 ifmgd->last_cqm_event_signal = sig;
2860 ieee80211_cqm_rssi_notify(
2861 &sdata->vif,
2862 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2863 GFP_KERNEL);
2864 } else if (sig > thold &&
2865 (last_event == 0 || sig > last_event + hyst)) {
2866 ifmgd->last_cqm_event_signal = sig;
2867 ieee80211_cqm_rssi_notify(
2868 &sdata->vif,
2869 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2870 GFP_KERNEL);
2871 }
2872 }
2873
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002874 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002875 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01002876 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002877 ieee80211_reset_ap_probe(sdata);
Jouni Malinen92778182009-05-14 21:15:36 +03002878 }
2879
Johannes Bergb291ba12009-07-10 15:29:03 +02002880 /*
2881 * Push the beacon loss detection into the future since
2882 * we are processing a beacon from the AP just now.
2883 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002884 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002885
Johannes Bergd91f36d2009-04-16 13:17:26 +02002886 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2887 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002888 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02002889 care_about_ies, ncrc);
2890
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302891 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02002892 bool directed_tim = ieee80211_check_tim(elems.tim,
2893 elems.tim_len,
2894 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02002895 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002896 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002897 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2898 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2899 ieee80211_hw_config(local,
2900 IEEE80211_CONF_CHANGE_PS);
2901 }
Kalle Valo572e0012009-02-10 17:09:31 +02002902 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302903 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002904 local->pspolling = true;
2905
2906 /*
2907 * Here is assumed that the driver will be
2908 * able to send ps-poll frame and receive a
2909 * response even though power save mode is
2910 * enabled, but some drivers might require
2911 * to disable power save here. This needs
2912 * to be investigated.
2913 */
2914 ieee80211_send_pspoll(local, sdata);
2915 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002916 }
2917 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002918
Johannes Berg488dd7b2012-10-29 20:08:01 +01002919 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002920 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01002921 int ret;
2922
2923 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2924 len - baselen,
2925 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01002926 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002927 if (ret >= 2) {
2928 if (sdata->u.mgd.p2p_noa_index != noa.index) {
2929 /* valid noa_attr and index changed */
2930 sdata->u.mgd.p2p_noa_index = noa.index;
2931 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
2932 changed |= BSS_CHANGED_P2P_PS;
2933 /*
2934 * make sure we update all information, the CRC
2935 * mechanism doesn't look at P2P attributes.
2936 */
2937 ifmgd->beacon_crc_valid = false;
2938 }
2939 } else if (sdata->u.mgd.p2p_noa_index != -1) {
2940 /* noa_attr not found and we had valid noa_attr before */
2941 sdata->u.mgd.p2p_noa_index = -1;
2942 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01002943 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01002944 ifmgd->beacon_crc_valid = false;
2945 }
2946 }
2947
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002948 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002949 return;
Jouni Malinen30196672009-05-19 17:01:43 +03002950 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002951 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03002952
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002953 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02002954
Johannes Bergd70b7612013-08-23 15:48:48 +02002955 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2956 &elems, true);
2957
Johannes Berg7d257452012-07-06 17:37:43 +02002958 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
2959 elems.wmm_param_len))
2960 changed |= BSS_CHANGED_QOS;
2961
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002962 /*
2963 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01002964 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002965 */
Alexander Bondar989c6502013-05-16 17:34:17 +03002966 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002967 /* a few bogus AP send dtim_period = 0 or no TIM IE */
2968 if (elems.tim)
2969 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
2970 else
2971 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01002972
2973 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2974 sdata->vif.bss_conf.sync_tsf =
2975 le64_to_cpu(mgmt->u.beacon.timestamp);
2976 sdata->vif.bss_conf.sync_device_ts =
2977 rx_status->device_timestamp;
2978 if (elems.tim)
2979 sdata->vif.bss_conf.sync_dtim_count =
2980 elems.tim->dtim_count;
2981 else
2982 sdata->vif.bss_conf.sync_dtim_count = 0;
2983 }
2984
Alexander Bondar989c6502013-05-16 17:34:17 +03002985 changed |= BSS_CHANGED_BEACON_INFO;
2986 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03002987
2988 mutex_lock(&local->iflist_mtx);
2989 ieee80211_recalc_ps(local, -1);
2990 mutex_unlock(&local->iflist_mtx);
2991
Alexander Bondarce857882013-05-06 17:17:04 +03002992 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002993 }
2994
Johannes Berg1946bed2013-03-27 14:31:53 +01002995 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02002996 erp_valid = true;
2997 erp_value = elems.erp_info[0];
2998 } else {
2999 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003000 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003001 changed |= ieee80211_handle_bss_capability(sdata,
3002 le16_to_cpu(mgmt->u.beacon.capab_info),
3003 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003004
Johannes Berg11289582013-02-07 17:36:12 +01003005 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f582013-02-07 22:24:55 +01003006 sta = sta_info_get(sdata, bssid);
3007
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003008 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3009 elems.vht_operation, bssid, &changed)) {
3010 mutex_unlock(&local->sta_mtx);
3011 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3012 WLAN_REASON_DEAUTH_LEAVING,
3013 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003014 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3015 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003016 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003017 }
Johannes Bergbee7f582013-02-07 22:24:55 +01003018
3019 if (sta && elems.opmode_notif)
3020 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3021 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003022 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003023
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003024 if (elems.country_elem && elems.pwr_constr_elem &&
3025 mgmt->u.probe_resp.capab_info &
3026 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003027 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3028 elems.country_elem,
3029 elems.country_elem_len,
3030 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003031
Johannes Berg471b3ef2007-12-28 14:32:58 +01003032 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003033}
3034
Johannes Berg1fa57d02010-06-10 10:21:32 +02003035void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3036 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003037{
3038 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003039 struct ieee80211_mgmt *mgmt;
3040 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003041 struct ieee802_11_elems elems;
3042 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003043
Jiri Bencf0706e82007-05-05 11:45:53 -07003044 rx_status = (struct ieee80211_rx_status *) skb->cb;
3045 mgmt = (struct ieee80211_mgmt *) skb->data;
3046 fc = le16_to_cpu(mgmt->frame_control);
3047
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003048 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003049
Johannes Berg66e67e42012-01-20 13:55:27 +01003050 switch (fc & IEEE80211_FCTL_STYPE) {
3051 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003052 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003053 break;
3054 case IEEE80211_STYPE_PROBE_RESP:
3055 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3056 break;
3057 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003058 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003059 break;
3060 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003061 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003062 break;
3063 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003064 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003065 break;
3066 case IEEE80211_STYPE_ASSOC_RESP:
3067 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003068 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003069 break;
3070 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003071 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003072 ies_len = skb->len -
3073 offsetof(struct ieee80211_mgmt,
3074 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003075
3076 if (ies_len < 0)
3077 break;
3078
3079 ieee802_11_parse_elems(
3080 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003081 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003082
3083 if (elems.parse_error)
3084 break;
3085
Johannes Berg66e67e42012-01-20 13:55:27 +01003086 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003087 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003088 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003089 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3090 ies_len = skb->len -
3091 offsetof(struct ieee80211_mgmt,
3092 u.action.u.ext_chan_switch.variable);
3093
3094 if (ies_len < 0)
3095 break;
3096
3097 ieee802_11_parse_elems(
3098 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003099 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003100
3101 if (elems.parse_error)
3102 break;
3103
3104 /* for the handling code pretend this was also an IE */
3105 elems.ext_chansw_ie =
3106 &mgmt->u.action.u.ext_chan_switch.data;
3107
3108 ieee80211_sta_process_chanswitch(sdata,
3109 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003110 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003111 }
Johannes Berg37799e52013-03-26 14:02:26 +01003112 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003113 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003114 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003115}
3116
Johannes Berg9c6bd792008-09-11 00:01:52 +02003117static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003118{
3119 struct ieee80211_sub_if_data *sdata =
3120 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003121
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003122 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003123}
3124
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003125static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003126 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003127{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003128 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003129
Johannes Berg37ad3882012-02-24 13:50:54 +01003130 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003131 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003132
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003133 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3134 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003135}
3136
Johannes Berg66e67e42012-01-20 13:55:27 +01003137static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3138{
3139 struct ieee80211_local *local = sdata->local;
3140 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3141 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003142 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003143
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003144 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003145
3146 if (WARN_ON_ONCE(!auth_data))
3147 return -EINVAL;
3148
Johannes Berg66e67e42012-01-20 13:55:27 +01003149 auth_data->tries++;
3150
3151 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003152 sdata_info(sdata, "authentication with %pM timed out\n",
3153 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003154
3155 /*
3156 * Most likely AP is not in the range so remove the
3157 * bss struct for that AP.
3158 */
3159 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3160
3161 return -ETIMEDOUT;
3162 }
3163
Johannes Berga1845fc2012-06-27 13:18:36 +02003164 drv_mgd_prepare_tx(local, sdata);
3165
Johannes Berg66e67e42012-01-20 13:55:27 +01003166 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003167 u16 trans = 1;
3168 u16 status = 0;
3169
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003170 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3171 auth_data->bss->bssid, auth_data->tries,
3172 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003173
3174 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003175
3176 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3177 trans = auth_data->sae_trans;
3178 status = auth_data->sae_status;
3179 auth_data->expected_transaction = trans;
3180 }
3181
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003182 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3183 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3184 IEEE80211_TX_INTFL_MLME_CONN_TX;
3185
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003186 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3187 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003188 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003189 auth_data->bss->bssid, NULL, 0, 0,
3190 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003191 } else {
3192 const u8 *ssidie;
3193
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003194 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3195 auth_data->bss->bssid, auth_data->tries,
3196 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003197
Johannes Berg9caf0362012-11-29 01:25:20 +01003198 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003199 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003200 if (!ssidie) {
3201 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003202 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003203 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003204 /*
3205 * Direct probe is sent to broadcast address as some APs
3206 * will not answer to direct packet in unassociated state.
3207 */
3208 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003209 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003210 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003211 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003212 }
3213
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003214 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003215 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003216 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003217 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003218 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003219 auth_data->timeout =
3220 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3221 auth_data->timeout_started = true;
3222 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003223 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003224
3225 return 0;
3226}
3227
3228static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3229{
3230 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3231 struct ieee80211_local *local = sdata->local;
3232
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003233 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003234
Johannes Berg66e67e42012-01-20 13:55:27 +01003235 assoc_data->tries++;
3236 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003237 sdata_info(sdata, "association with %pM timed out\n",
3238 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003239
3240 /*
3241 * Most likely AP is not in the range so remove the
3242 * bss struct for that AP.
3243 */
3244 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3245
3246 return -ETIMEDOUT;
3247 }
3248
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003249 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3250 assoc_data->bss->bssid, assoc_data->tries,
3251 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003252 ieee80211_send_assoc(sdata);
3253
Johannes Berg1672c0e32013-01-29 15:02:27 +01003254 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3255 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003256 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003257 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003258 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003259 assoc_data->timeout =
3260 round_jiffies_up(jiffies +
3261 IEEE80211_ASSOC_TIMEOUT_LONG);
3262 assoc_data->timeout_started = true;
3263 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003264 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003265
3266 return 0;
3267}
3268
Johannes Berg1672c0e32013-01-29 15:02:27 +01003269void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3270 __le16 fc, bool acked)
3271{
3272 struct ieee80211_local *local = sdata->local;
3273
3274 sdata->u.mgd.status_fc = fc;
3275 sdata->u.mgd.status_acked = acked;
3276 sdata->u.mgd.status_received = true;
3277
3278 ieee80211_queue_work(&local->hw, &sdata->work);
3279}
3280
Johannes Berg1fa57d02010-06-10 10:21:32 +02003281void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02003282{
Johannes Berg60f8b392008-09-08 17:44:22 +02003283 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003284 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003285
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003286 sdata_lock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003287
Johannes Berg1672c0e32013-01-29 15:02:27 +01003288 if (ifmgd->status_received) {
3289 __le16 fc = ifmgd->status_fc;
3290 bool status_acked = ifmgd->status_acked;
3291
3292 ifmgd->status_received = false;
3293 if (ifmgd->auth_data &&
3294 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3295 if (status_acked) {
3296 ifmgd->auth_data->timeout =
3297 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003298 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003299 } else {
3300 ifmgd->auth_data->timeout = jiffies - 1;
3301 }
Johannes Berg89afe612013-02-13 15:39:57 +01003302 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003303 } else if (ifmgd->assoc_data &&
3304 (ieee80211_is_assoc_req(fc) ||
3305 ieee80211_is_reassoc_req(fc))) {
3306 if (status_acked) {
3307 ifmgd->assoc_data->timeout =
3308 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003309 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003310 } else {
3311 ifmgd->assoc_data->timeout = jiffies - 1;
3312 }
Johannes Berg89afe612013-02-13 15:39:57 +01003313 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003314 }
3315 }
3316
Johannes Berg89afe612013-02-13 15:39:57 +01003317 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003318 time_after(jiffies, ifmgd->auth_data->timeout)) {
3319 if (ifmgd->auth_data->done) {
3320 /*
3321 * ok ... we waited for assoc but userspace didn't,
3322 * so let's just kill the auth data
3323 */
3324 ieee80211_destroy_auth_data(sdata, false);
3325 } else if (ieee80211_probe_auth(sdata)) {
3326 u8 bssid[ETH_ALEN];
3327
3328 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3329
3330 ieee80211_destroy_auth_data(sdata, false);
3331
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003332 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003333 }
Johannes Berg89afe612013-02-13 15:39:57 +01003334 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003335 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003336
Johannes Berg89afe612013-02-13 15:39:57 +01003337 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003338 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003339 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003340 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003341 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003342
3343 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003344 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003345 }
Johannes Berg89afe612013-02-13 15:39:57 +01003346 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003347 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003348
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02003349 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
Johannes Bergb291ba12009-07-10 15:29:03 +02003350 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003351 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003352 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003353
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003354 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003355
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003356 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003357 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003358 else
Ben Greear180205b2011-02-04 15:30:24 -08003359 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003360
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003361 /* ACK received for nullfunc probing frame */
3362 if (!ifmgd->probe_send_count)
3363 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003364 else if (ifmgd->nullfunc_failed) {
3365 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003366 mlme_dbg(sdata,
3367 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3368 bssid, ifmgd->probe_send_count,
3369 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003370 ieee80211_mgd_probe_ap_send(sdata);
3371 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003372 mlme_dbg(sdata,
3373 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3374 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003375 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003376 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3377 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003378 }
3379 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003380 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003381 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003382 mlme_dbg(sdata,
3383 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3384 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003385 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003386 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003387 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003388 mlme_dbg(sdata,
3389 "No probe response from AP %pM after %dms, try %d/%i\n",
3390 bssid, probe_wait_ms,
3391 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003392 ieee80211_mgd_probe_ap_send(sdata);
3393 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003394 /*
3395 * We actually lost the connection ... or did we?
3396 * Let's make sure!
3397 */
Ben Greearb38afa82010-10-07 16:12:06 -07003398 wiphy_debug(local->hw.wiphy,
3399 "%s: No probe response from AP %pM"
3400 " after %dms, disconnecting.\n",
3401 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003402 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003403
Johannes Berg95acac62011-07-12 12:30:59 +02003404 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003405 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003406 }
3407 }
3408
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003409 sdata_unlock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003410}
Johannes Berg0a51b272008-09-08 17:44:25 +02003411
Johannes Bergb291ba12009-07-10 15:29:03 +02003412static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3413{
3414 struct ieee80211_sub_if_data *sdata =
3415 (struct ieee80211_sub_if_data *) data;
3416 struct ieee80211_local *local = sdata->local;
3417
3418 if (local->quiescing)
3419 return;
3420
Johannes Berg682bd382013-01-29 13:13:50 +01003421 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003422 ieee80211_queue_work(&sdata->local->hw,
3423 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003424}
3425
3426static void ieee80211_sta_conn_mon_timer(unsigned long data)
3427{
3428 struct ieee80211_sub_if_data *sdata =
3429 (struct ieee80211_sub_if_data *) data;
3430 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3431 struct ieee80211_local *local = sdata->local;
3432
3433 if (local->quiescing)
3434 return;
3435
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003436 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003437}
3438
3439static void ieee80211_sta_monitor_work(struct work_struct *work)
3440{
3441 struct ieee80211_sub_if_data *sdata =
3442 container_of(work, struct ieee80211_sub_if_data,
3443 u.mgd.monitor_work);
3444
3445 ieee80211_mgd_probe_ap(sdata, false);
3446}
3447
Johannes Berga1678f82008-09-11 00:01:47 +02003448static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3449{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003450 u32 flags;
3451
Kalle Vaload935682009-04-19 08:47:19 +03003452 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003453 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003454
Johannes Bergb291ba12009-07-10 15:29:03 +02003455 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003456 flags = sdata->local->hw.flags;
3457 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3458 ieee80211_queue_work(&sdata->local->hw,
3459 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003460 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003461 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003462 }
Johannes Berga1678f82008-09-11 00:01:47 +02003463}
3464
Johannes Bergb8360ab2013-04-29 14:57:44 +02003465#ifdef CONFIG_PM
3466void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3467{
3468 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3469
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003470 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003471 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003472 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003473 return;
3474 }
3475
3476 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3477 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3478 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3479 ieee80211_sta_connection_lost(sdata,
3480 ifmgd->associated->bssid,
3481 WLAN_REASON_UNSPECIFIED,
3482 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003483 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003484 return;
3485 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003486 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003487}
3488#endif
3489
Johannes Berg9c6bd792008-09-11 00:01:52 +02003490/* interface setup */
3491void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3492{
Johannes Berg46900292009-02-15 12:44:28 +01003493 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003494
Johannes Berg46900292009-02-15 12:44:28 +01003495 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003496 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003497 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003498 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3499 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003500 INIT_WORK(&ifmgd->csa_connection_drop_work,
3501 ieee80211_csa_connection_drop_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003502 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01003503 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003504 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003505 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3506 (unsigned long) sdata);
3507 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3508 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003509 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303510 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003511
Johannes Bergab1faea2009-07-01 21:41:17 +02003512 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303513 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003514 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3515 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003516 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003517
Johannes Berg0f782312009-12-01 13:37:02 +01003518 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3519 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3520 else
3521 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003522}
3523
3524/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003525void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3526{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003527 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003528
3529 /* Restart STA timers */
3530 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003531 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3532 if (ieee80211_sdata_running(sdata))
3533 ieee80211_restart_sta_timer(sdata);
3534 }
Johannes Berga1678f82008-09-11 00:01:47 +02003535 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003536}
Johannes Berg10f644a2009-04-16 13:17:25 +02003537
3538int ieee80211_max_network_latency(struct notifier_block *nb,
3539 unsigned long data, void *dummy)
3540{
3541 s32 latency_usec = (s32) data;
3542 struct ieee80211_local *local =
3543 container_of(nb, struct ieee80211_local,
3544 network_latency_notifier);
3545
3546 mutex_lock(&local->iflist_mtx);
3547 ieee80211_recalc_ps(local, latency_usec);
3548 mutex_unlock(&local->iflist_mtx);
3549
3550 return 0;
3551}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003552
Johannes Bergf2d9d272012-11-22 14:11:39 +01003553static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3554 struct cfg80211_bss *cbss)
3555{
3556 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3557 const u8 *ht_cap_ie, *vht_cap_ie;
3558 const struct ieee80211_ht_cap *ht_cap;
3559 const struct ieee80211_vht_cap *vht_cap;
3560 u8 chains = 1;
3561
3562 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3563 return chains;
3564
Johannes Berg9caf0362012-11-29 01:25:20 +01003565 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003566 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3567 ht_cap = (void *)(ht_cap_ie + 2);
3568 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3569 /*
3570 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3571 * "Tx Unequal Modulation Supported" fields.
3572 */
3573 }
3574
3575 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3576 return chains;
3577
Johannes Berg9caf0362012-11-29 01:25:20 +01003578 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003579 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3580 u8 nss;
3581 u16 tx_mcs_map;
3582
3583 vht_cap = (void *)(vht_cap_ie + 2);
3584 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3585 for (nss = 8; nss > 0; nss--) {
3586 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3587 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3588 break;
3589 }
3590 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3591 chains = max(chains, nss);
3592 }
3593
3594 return chains;
3595}
3596
Johannes Bergb17166a2012-07-27 11:41:27 +02003597static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3598 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003599{
3600 struct ieee80211_local *local = sdata->local;
3601 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003602 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003603 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003604 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003605 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003606 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003607
Johannes Berg24398e32012-03-28 10:58:36 +02003608 sband = local->hw.wiphy->bands[cbss->channel->band];
3609
Johannes Bergf2d9d272012-11-22 14:11:39 +01003610 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3611 IEEE80211_STA_DISABLE_80P80MHZ |
3612 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003613
Johannes Berg9caf0362012-11-29 01:25:20 +01003614 rcu_read_lock();
3615
Johannes Bergf2d9d272012-11-22 14:11:39 +01003616 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3617 sband->ht_cap.ht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003618 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003619
Johannes Berg9caf0362012-11-29 01:25:20 +01003620 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003621 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3622 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6eff2013-02-07 23:33:32 +01003623
3624 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3625 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3626 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3627 ht_oper = NULL;
3628 }
Johannes Berg24398e32012-03-28 10:58:36 +02003629 }
3630
Johannes Bergf2d9d272012-11-22 14:11:39 +01003631 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3632 sband->vht_cap.vht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003633 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003634
Johannes Berg9caf0362012-11-29 01:25:20 +01003635 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3636 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003637 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3638 vht_oper = (void *)(vht_oper_ie + 2);
3639 if (vht_oper && !ht_oper) {
3640 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003641 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003642 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003643 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3644 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003645 }
Johannes Berg08e6eff2013-02-07 23:33:32 +01003646
3647 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3648 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3649 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3650 vht_oper = NULL;
3651 }
Johannes Berg24398e32012-03-28 10:58:36 +02003652 }
3653
Johannes Bergf2d9d272012-11-22 14:11:39 +01003654 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3655 cbss->channel,
3656 ht_oper, vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +02003657 &chandef, false);
Johannes Berg04ecd252012-09-11 14:34:12 +02003658
Johannes Bergf2d9d272012-11-22 14:11:39 +01003659 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3660 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003661
Johannes Berg9caf0362012-11-29 01:25:20 +01003662 rcu_read_unlock();
3663
Johannes Berg04ecd252012-09-11 14:34:12 +02003664 /* will change later if needed */
3665 sdata->smps_mode = IEEE80211_SMPS_OFF;
3666
Johannes Bergf2d9d272012-11-22 14:11:39 +01003667 /*
3668 * If this fails (possibly due to channel context sharing
3669 * on incompatible channels, e.g. 80+80 and 160 sharing the
3670 * same control channel) try to use a smaller bandwidth.
3671 */
3672 ret = ieee80211_vif_use_channel(sdata, &chandef,
3673 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003674
3675 /* don't downgrade for 5 and 10 MHz channels, though. */
3676 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3677 chandef.width == NL80211_CHAN_WIDTH_10)
3678 return ret;
3679
Johannes Bergd601cd82013-02-07 20:54:51 +01003680 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02003681 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003682 ret = ieee80211_vif_use_channel(sdata, &chandef,
3683 IEEE80211_CHANCTX_SHARED);
3684 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003685 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003686}
3687
3688static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3689 struct cfg80211_bss *cbss, bool assoc)
3690{
3691 struct ieee80211_local *local = sdata->local;
3692 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3693 struct ieee80211_bss *bss = (void *)cbss->priv;
3694 struct sta_info *new_sta = NULL;
3695 bool have_sta = false;
3696 int err;
3697
3698 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3699 return -EINVAL;
3700
3701 if (assoc) {
3702 rcu_read_lock();
3703 have_sta = sta_info_get(sdata, cbss->bssid);
3704 rcu_read_unlock();
3705 }
3706
3707 if (!have_sta) {
3708 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3709 if (!new_sta)
3710 return -ENOMEM;
3711 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003712 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003713 u32 rates = 0, basic_rates = 0;
3714 bool have_higher_than_11mbit;
3715 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003716 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003717 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003718 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003719 int shift;
3720 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003721
3722 sband = local->hw.wiphy->bands[cbss->channel->band];
3723
3724 err = ieee80211_prep_channel(sdata, cbss);
3725 if (err) {
3726 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003727 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003728 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003729 shift = ieee80211_vif_get_shift(&sdata->vif);
3730
3731 rcu_read_lock();
3732 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3733 if (WARN_ON(!chanctx_conf)) {
3734 rcu_read_unlock();
3735 return -EINVAL;
3736 }
3737 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3738 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003739
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003740 ieee80211_get_rates(sband, bss->supp_rates,
3741 bss->supp_rates_len,
3742 &rates, &basic_rates,
3743 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003744 &min_rate, &min_rate_index,
3745 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003746
3747 /*
3748 * This used to be a workaround for basic rates missing
3749 * in the association response frame. Now that we no
3750 * longer use the basic rates from there, it probably
3751 * doesn't happen any more, but keep the workaround so
3752 * in case some *other* APs are buggy in different ways
3753 * we can connect -- with a warning.
3754 */
3755 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003756 sdata_info(sdata,
3757 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003758 basic_rates = BIT(min_rate_index);
3759 }
3760
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003761 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003762 sdata->vif.bss_conf.basic_rates = basic_rates;
3763
3764 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003765 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003766 have_higher_than_11mbit)
3767 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3768 else
3769 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3770
3771 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3772
Johannes Berg8c358bc2012-05-22 22:13:05 +02003773 /* set timing information */
3774 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003775 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003776 ies = rcu_dereference(cbss->beacon_ies);
3777 if (ies) {
3778 const u8 *tim_ie;
3779
3780 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3781 sdata->vif.bss_conf.sync_device_ts =
3782 bss->device_ts_beacon;
3783 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3784 ies->data, ies->len);
3785 if (tim_ie && tim_ie[1] >= 2)
3786 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3787 else
3788 sdata->vif.bss_conf.sync_dtim_count = 0;
3789 } else if (!(local->hw.flags &
3790 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3791 ies = rcu_dereference(cbss->proberesp_ies);
3792 /* must be non-NULL since beacon IEs were NULL */
3793 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3794 sdata->vif.bss_conf.sync_device_ts =
3795 bss->device_ts_presp;
3796 sdata->vif.bss_conf.sync_dtim_count = 0;
3797 } else {
3798 sdata->vif.bss_conf.sync_tsf = 0;
3799 sdata->vif.bss_conf.sync_device_ts = 0;
3800 sdata->vif.bss_conf.sync_dtim_count = 0;
3801 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003802 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003803
3804 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003805 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003806 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3807 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003808
3809 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003810 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003811
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003812 err = sta_info_insert(new_sta);
3813 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003814 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003815 sdata_info(sdata,
3816 "failed to insert STA entry for the AP (error %d)\n",
3817 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003818 return err;
3819 }
3820 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003821 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003822
3823 return 0;
3824}
3825
Johannes Berg77fdaa12009-07-07 03:45:17 +02003826/* config hooks */
3827int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3828 struct cfg80211_auth_request *req)
3829{
Johannes Berg66e67e42012-01-20 13:55:27 +01003830 struct ieee80211_local *local = sdata->local;
3831 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3832 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003833 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003834 int err;
3835
3836 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003837
3838 switch (req->auth_type) {
3839 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3840 auth_alg = WLAN_AUTH_OPEN;
3841 break;
3842 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003843 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003844 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003845 auth_alg = WLAN_AUTH_SHARED_KEY;
3846 break;
3847 case NL80211_AUTHTYPE_FT:
3848 auth_alg = WLAN_AUTH_FT;
3849 break;
3850 case NL80211_AUTHTYPE_NETWORK_EAP:
3851 auth_alg = WLAN_AUTH_LEAP;
3852 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003853 case NL80211_AUTHTYPE_SAE:
3854 auth_alg = WLAN_AUTH_SAE;
3855 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003856 default:
3857 return -EOPNOTSUPP;
3858 }
3859
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003860 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3861 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003862 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003863 return -ENOMEM;
3864
Johannes Berg66e67e42012-01-20 13:55:27 +01003865 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003866
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003867 if (req->sae_data_len >= 4) {
3868 __le16 *pos = (__le16 *) req->sae_data;
3869 auth_data->sae_trans = le16_to_cpu(pos[0]);
3870 auth_data->sae_status = le16_to_cpu(pos[1]);
3871 memcpy(auth_data->data, req->sae_data + 4,
3872 req->sae_data_len - 4);
3873 auth_data->data_len += req->sae_data_len - 4;
3874 }
3875
Johannes Berg77fdaa12009-07-07 03:45:17 +02003876 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003877 memcpy(&auth_data->data[auth_data->data_len],
3878 req->ie, req->ie_len);
3879 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003880 }
3881
Johannes Bergfffd0932009-07-08 14:22:54 +02003882 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003883 auth_data->key_len = req->key_len;
3884 auth_data->key_idx = req->key_idx;
3885 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003886 }
3887
Johannes Berg66e67e42012-01-20 13:55:27 +01003888 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003889
Johannes Berg66e67e42012-01-20 13:55:27 +01003890 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003891
Johannes Berg66e67e42012-01-20 13:55:27 +01003892 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3893 ifmgd->assoc_data) {
3894 err = -EBUSY;
3895 goto err_free;
3896 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003897
Johannes Berg66e67e42012-01-20 13:55:27 +01003898 if (ifmgd->auth_data)
3899 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003900
Johannes Berg66e67e42012-01-20 13:55:27 +01003901 /* prep auth_data so we don't go into idle on disassoc */
3902 ifmgd->auth_data = auth_data;
3903
Johannes Berg7b119dc2013-04-10 21:38:36 +02003904 if (ifmgd->associated) {
3905 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3906
3907 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3908 WLAN_REASON_UNSPECIFIED,
3909 false, frame_buf);
3910
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003911 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3912 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003913 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003914
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003915 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003916
Johannes Berga1cf7752012-03-08 15:02:07 +01003917 err = ieee80211_prep_connection(sdata, req->bss, false);
3918 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003919 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003920
Johannes Berg66e67e42012-01-20 13:55:27 +01003921 err = ieee80211_probe_auth(sdata);
3922 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003923 sta_info_destroy_addr(sdata, req->bss->bssid);
3924 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003925 }
3926
Johannes Berg66e67e42012-01-20 13:55:27 +01003927 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01003928 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003929 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02003930
Johannes Berg66e67e42012-01-20 13:55:27 +01003931 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03003932 memset(ifmgd->bssid, 0, ETH_ALEN);
3933 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01003934 ifmgd->auth_data = NULL;
3935 err_free:
3936 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01003937 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003938}
3939
Johannes Berg77fdaa12009-07-07 03:45:17 +02003940int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3941 struct cfg80211_assoc_request *req)
3942{
Johannes Berg66e67e42012-01-20 13:55:27 +01003943 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003944 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003945 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01003946 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003947 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003948 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01003949 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003950 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003951
Johannes Berg66e67e42012-01-20 13:55:27 +01003952 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
3953 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01003954 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003955
Johannes Berg9caf0362012-11-29 01:25:20 +01003956 rcu_read_lock();
3957 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
3958 if (!ssidie) {
3959 rcu_read_unlock();
3960 kfree(assoc_data);
3961 return -EINVAL;
3962 }
3963 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
3964 assoc_data->ssid_len = ssidie[1];
3965 rcu_read_unlock();
3966
Johannes Berg7b119dc2013-04-10 21:38:36 +02003967 if (ifmgd->associated) {
3968 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3969
3970 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3971 WLAN_REASON_UNSPECIFIED,
3972 false, frame_buf);
3973
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003974 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3975 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003976 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003977
3978 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
3979 err = -EBUSY;
3980 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003981 }
3982
Johannes Berg66e67e42012-01-20 13:55:27 +01003983 if (ifmgd->assoc_data) {
3984 err = -EBUSY;
3985 goto err_free;
3986 }
3987
3988 if (ifmgd->auth_data) {
3989 bool match;
3990
3991 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00003992 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003993 ieee80211_destroy_auth_data(sdata, match);
3994 }
3995
3996 /* prepare assoc data */
Johannes Berg19c3b832012-08-01 20:13:36 +02003997
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003998 ifmgd->beacon_crc_valid = false;
3999
Johannes Bergde5036a2012-03-08 15:02:03 +01004000 /*
4001 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4002 * We still associate in non-HT mode (11a/b/g) if any one of these
4003 * ciphers is configured as pairwise.
4004 * We can set this to true for non-11n hardware, that'll be checked
4005 * separately along with the peer capabilities.
4006 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004007 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004008 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4009 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004010 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004011 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004012 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004013 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004014 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004015 }
4016 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004017
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004018 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004019 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004020 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4021 }
Ben Greearef96a8422011-11-18 11:32:00 -08004022
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004023 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4024 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4025
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004026 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4027 sband = local->hw.wiphy->bands[req->bss->channel->band];
4028 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004029 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berga8243b72012-11-22 14:32:09 +01004030 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004031 if (!bss->wmm_used)
4032 netdev_info(sdata->dev,
4033 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004034 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004035
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004036 /* disable VHT if we don't support it or the AP doesn't use WMM */
4037 if (!sband->vht_cap.vht_supported ||
4038 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
4039 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004040 if (!bss->wmm_used)
4041 netdev_info(sdata->dev,
4042 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004043 }
4044
Ben Greearef96a8422011-11-18 11:32:00 -08004045 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4046 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4047 sizeof(ifmgd->ht_capa_mask));
4048
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004049 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4050 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4051 sizeof(ifmgd->vht_capa_mask));
4052
Johannes Berg77fdaa12009-07-07 03:45:17 +02004053 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004054 memcpy(assoc_data->ie, req->ie, req->ie_len);
4055 assoc_data->ie_len = req->ie_len;
4056 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004057
Johannes Berg66e67e42012-01-20 13:55:27 +01004058 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004059
Johannes Bergaf6b6372009-12-23 13:15:35 +01004060 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4061 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004062 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004063 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004064 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004065 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004066 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004067
Johannes Berg66e67e42012-01-20 13:55:27 +01004068 assoc_data->capability = req->bss->capability;
Johannes Berg32c50572012-03-28 11:04:29 +02004069 assoc_data->wmm = bss->wmm_used &&
4070 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01004071 assoc_data->supp_rates = bss->supp_rates;
4072 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004073
Johannes Berg9caf0362012-11-29 01:25:20 +01004074 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004075 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4076 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4077 assoc_data->ap_ht_param =
4078 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4079 else
Johannes Berga8243b72012-11-22 14:32:09 +01004080 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004081 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4082 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4083 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4084 sizeof(struct ieee80211_vht_cap));
4085 else
4086 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004087 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004088
Kalle Valoab133152010-01-12 10:42:31 +02004089 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004090 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4091 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004092 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004093 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4094 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004095 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004096 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4097 }
4098
Johannes Berg77fdaa12009-07-07 03:45:17 +02004099 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004100 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004101
4102 if (req->use_mfp) {
4103 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4104 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4105 } else {
4106 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4107 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4108 }
4109
4110 if (req->crypto.control_port)
4111 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4112 else
4113 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4114
Johannes Berga621fa42010-08-27 14:26:54 +03004115 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4116 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
4117
Johannes Berg66e67e42012-01-20 13:55:27 +01004118 /* kick off associate process */
4119
4120 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004121 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004122 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004123
Johannes Berga1cf7752012-03-08 15:02:07 +01004124 err = ieee80211_prep_connection(sdata, req->bss, true);
4125 if (err)
4126 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004127
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004128 rcu_read_lock();
4129 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004130
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004131 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4132 !beacon_ies) {
4133 /*
4134 * Wait up to one beacon interval ...
4135 * should this be more if we miss one?
4136 */
4137 sdata_info(sdata, "waiting for beacon from %pM\n",
4138 ifmgd->bssid);
4139 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004140 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004141 assoc_data->need_beacon = true;
4142 } else if (beacon_ies) {
4143 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4144 beacon_ies->data,
4145 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004146 u8 dtim_count = 0;
4147
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004148 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4149 const struct ieee80211_tim_ie *tim;
4150 tim = (void *)(tim_ie + 2);
4151 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004152 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004153 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004154 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004155 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004156 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004157
4158 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4159 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4160 sdata->vif.bss_conf.sync_device_ts =
4161 bss->device_ts_beacon;
4162 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4163 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004164 } else {
4165 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004166 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004167 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004168 rcu_read_unlock();
4169
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004170 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004171
Paul Stewartfcff4f12012-02-23 17:59:53 -08004172 if (bss->corrupt_data) {
4173 char *corrupt_type = "data";
4174 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4175 if (bss->corrupt_data &
4176 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4177 corrupt_type = "beacon and probe response";
4178 else
4179 corrupt_type = "beacon";
4180 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4181 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004182 sdata_info(sdata, "associating with AP with corrupt %s\n",
4183 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004184 }
4185
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004186 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004187 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004188 memset(ifmgd->bssid, 0, ETH_ALEN);
4189 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004190 ifmgd->assoc_data = NULL;
4191 err_free:
4192 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004193 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004194}
4195
4196int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004197 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004198{
4199 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004200 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004201 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004202 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004203
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004204 sdata_info(sdata,
4205 "deauthenticating from %pM by local choice (reason=%d)\n",
4206 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004207
Johannes Berg86552012012-10-29 09:46:31 +01004208 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004209 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004210 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4211 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004212 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004213 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004214 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004215
Johannes Bergde3d43a2013-05-14 09:39:02 +02004216 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004217 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004218 }
4219
Johannes Berg86552012012-10-29 09:46:31 +01004220 if (ifmgd->associated &&
4221 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4222 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4223 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004224 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004225 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004226
Johannes Berg86552012012-10-29 09:46:31 +01004227 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004228 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004229 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4230 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004231
Johannes Berg77fdaa12009-07-07 03:45:17 +02004232 return 0;
4233}
4234
4235int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004236 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004237{
4238 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004239 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004240 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004241
Johannes Berg8d8b2612009-07-25 11:58:36 +02004242 /*
4243 * cfg80211 should catch this ... but it's racy since
4244 * we can receive a disassoc frame, process it, hand it
4245 * to cfg80211 while that's in a locked section already
4246 * trying to tell us that the user wants to disconnect.
4247 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004248 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004249 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004250
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004251 sdata_info(sdata,
4252 "disassociating from %pM by local choice (reason=%d)\n",
4253 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004254
Jouni Malinene69e95d2010-03-29 23:29:31 -07004255 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004256 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4257 req->reason_code, !req->local_state_change,
4258 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004259
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004260 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4261 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004262
Johannes Berg77fdaa12009-07-07 03:45:17 +02004263 return 0;
4264}
Jouni Malinen026331c2010-02-15 12:53:10 +02004265
Eliad Pellerafa762f2012-04-23 14:45:15 +03004266void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004267{
4268 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4269
Ben Greear49921852013-02-20 09:41:09 -08004270 /*
4271 * Make sure some work items will not run after this,
4272 * they will not do anything but might not have been
4273 * cancelled when disconnecting.
4274 */
4275 cancel_work_sync(&ifmgd->monitor_work);
4276 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4277 cancel_work_sync(&ifmgd->request_smps_work);
4278 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4279 cancel_work_sync(&ifmgd->chswitch_work);
4280
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004281 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004282 if (ifmgd->assoc_data) {
4283 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004284 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004285 cfg80211_assoc_timeout(sdata->dev, bss);
4286 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004287 if (ifmgd->auth_data)
4288 ieee80211_destroy_auth_data(sdata, false);
4289 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004290 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004291}
4292
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004293void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4294 enum nl80211_cqm_rssi_threshold_event rssi_event,
4295 gfp_t gfp)
4296{
4297 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4298
Johannes Bergb5878a22010-04-07 16:48:40 +02004299 trace_api_cqm_rssi_notify(sdata, rssi_event);
4300
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004301 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4302}
4303EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);