blob: e5c3cf405060a11b186c9ff8eb0a6741d4f4bcf9 [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 chandef_downgrade(struct cfg80211_chan_def *c)
149{
150 u32 ret;
151 int tmp;
152
153 switch (c->width) {
154 case NL80211_CHAN_WIDTH_20:
155 c->width = NL80211_CHAN_WIDTH_20_NOHT;
156 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
157 break;
158 case NL80211_CHAN_WIDTH_40:
159 c->width = NL80211_CHAN_WIDTH_20;
160 c->center_freq1 = c->chan->center_freq;
161 ret = IEEE80211_STA_DISABLE_40MHZ |
162 IEEE80211_STA_DISABLE_VHT;
163 break;
164 case NL80211_CHAN_WIDTH_80:
165 tmp = (30 + c->chan->center_freq - c->center_freq1)/20;
166 /* n_P40 */
167 tmp /= 2;
168 /* freq_P40 */
169 c->center_freq1 = c->center_freq1 - 20 + 40 * tmp;
170 c->width = NL80211_CHAN_WIDTH_40;
171 ret = IEEE80211_STA_DISABLE_VHT;
172 break;
173 case NL80211_CHAN_WIDTH_80P80:
174 c->center_freq2 = 0;
175 c->width = NL80211_CHAN_WIDTH_80;
176 ret = IEEE80211_STA_DISABLE_80P80MHZ |
177 IEEE80211_STA_DISABLE_160MHZ;
178 break;
179 case NL80211_CHAN_WIDTH_160:
180 /* n_P20 */
181 tmp = (70 + c->chan->center_freq - c->center_freq1)/20;
182 /* n_P80 */
183 tmp /= 4;
184 c->center_freq1 = c->center_freq1 - 40 + 80 * tmp;
185 c->width = NL80211_CHAN_WIDTH_80;
186 ret = IEEE80211_STA_DISABLE_80P80MHZ |
187 IEEE80211_STA_DISABLE_160MHZ;
188 break;
189 default:
190 case NL80211_CHAN_WIDTH_20_NOHT:
191 WARN_ON_ONCE(1);
192 c->width = NL80211_CHAN_WIDTH_20_NOHT;
193 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
194 break;
Simon Wunderlich0418a442013-05-16 13:00:31 +0200195 case NL80211_CHAN_WIDTH_5:
196 case NL80211_CHAN_WIDTH_10:
197 WARN_ON_ONCE(1);
198 /* keep c->width */
199 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
200 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100201 }
202
203 WARN_ON_ONCE(!cfg80211_chandef_valid(c));
204
205 return ret;
206}
207
208static u32
209ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
210 struct ieee80211_supported_band *sband,
211 struct ieee80211_channel *channel,
212 const struct ieee80211_ht_operation *ht_oper,
213 const struct ieee80211_vht_operation *vht_oper,
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100214 struct cfg80211_chan_def *chandef, bool verbose)
Johannes Berg6565ec92013-02-08 14:52:32 +0100215{
216 struct cfg80211_chan_def vht_chandef;
217 u32 ht_cfreq, ret;
218
219 chandef->chan = channel;
220 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
221 chandef->center_freq1 = channel->center_freq;
222 chandef->center_freq2 = 0;
223
224 if (!ht_oper || !sband->ht_cap.ht_supported) {
225 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
226 goto out;
227 }
228
229 chandef->width = NL80211_CHAN_WIDTH_20;
230
231 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
232 channel->band);
233 /* check that channel matches the right operating channel */
234 if (channel->center_freq != ht_cfreq) {
235 /*
236 * It's possible that some APs are confused here;
237 * Netgear WNDR3700 sometimes reports 4 higher than
238 * the actual channel in association responses, but
239 * since we look at probe response/beacon data here
240 * it should be OK.
241 */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100242 if (verbose)
243 sdata_info(sdata,
244 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
245 channel->center_freq, ht_cfreq,
246 ht_oper->primary_chan, channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100247 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
248 goto out;
249 }
250
251 /* check 40 MHz support, if we have it */
252 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
253 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
254 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
255 chandef->width = NL80211_CHAN_WIDTH_40;
256 chandef->center_freq1 += 10;
257 break;
258 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
259 chandef->width = NL80211_CHAN_WIDTH_40;
260 chandef->center_freq1 -= 10;
261 break;
262 }
263 } else {
264 /* 40 MHz (and 80 MHz) must be supported for VHT */
265 ret = IEEE80211_STA_DISABLE_VHT;
Johannes Berg85220d72013-03-25 18:29:27 +0100266 /* also mark 40 MHz disabled */
267 ret |= IEEE80211_STA_DISABLE_40MHZ;
Johannes Berg6565ec92013-02-08 14:52:32 +0100268 goto out;
269 }
270
271 if (!vht_oper || !sband->vht_cap.vht_supported) {
272 ret = IEEE80211_STA_DISABLE_VHT;
273 goto out;
274 }
275
276 vht_chandef.chan = channel;
277 vht_chandef.center_freq1 =
278 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
279 channel->band);
280 vht_chandef.center_freq2 = 0;
281
Johannes Berg6565ec92013-02-08 14:52:32 +0100282 switch (vht_oper->chan_width) {
283 case IEEE80211_VHT_CHANWIDTH_USE_HT:
284 vht_chandef.width = chandef->width;
285 break;
286 case IEEE80211_VHT_CHANWIDTH_80MHZ:
287 vht_chandef.width = NL80211_CHAN_WIDTH_80;
288 break;
289 case IEEE80211_VHT_CHANWIDTH_160MHZ:
290 vht_chandef.width = NL80211_CHAN_WIDTH_160;
291 break;
292 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
293 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
Johannes Berg6553bf042013-03-28 10:26:17 +0100294 vht_chandef.center_freq2 =
295 ieee80211_channel_to_frequency(
296 vht_oper->center_freq_seg2_idx,
297 channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100298 break;
299 default:
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100300 if (verbose)
301 sdata_info(sdata,
302 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
303 vht_oper->chan_width);
Johannes Berg6565ec92013-02-08 14:52:32 +0100304 ret = IEEE80211_STA_DISABLE_VHT;
305 goto out;
306 }
307
308 if (!cfg80211_chandef_valid(&vht_chandef)) {
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100309 if (verbose)
310 sdata_info(sdata,
311 "AP VHT information is invalid, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100312 ret = IEEE80211_STA_DISABLE_VHT;
313 goto out;
314 }
315
316 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
317 ret = 0;
318 goto out;
319 }
320
321 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100322 if (verbose)
323 sdata_info(sdata,
324 "AP VHT information doesn't match HT, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100325 ret = IEEE80211_STA_DISABLE_VHT;
326 goto out;
327 }
328
329 *chandef = vht_chandef;
330
331 ret = 0;
332
333out:
Johannes Berg586e01e2013-02-14 12:13:53 +0100334 /* don't print the message below for VHT mismatch if VHT is disabled */
335 if (ret & IEEE80211_STA_DISABLE_VHT)
336 vht_chandef = *chandef;
337
Johannes Berg6565ec92013-02-08 14:52:32 +0100338 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
339 IEEE80211_CHAN_DISABLED)) {
340 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
341 ret = IEEE80211_STA_DISABLE_HT |
342 IEEE80211_STA_DISABLE_VHT;
Chris Wrightb56e4b82013-07-31 12:12:24 -0700343 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100344 }
345
346 ret |= chandef_downgrade(chandef);
347 }
348
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100349 if (chandef->width != vht_chandef.width && verbose)
Johannes Berg6565ec92013-02-08 14:52:32 +0100350 sdata_info(sdata,
351 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
352
353 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
354 return ret;
355}
356
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100357static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
358 struct sta_info *sta,
359 const struct ieee80211_ht_operation *ht_oper,
360 const struct ieee80211_vht_operation *vht_oper,
361 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200362{
363 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100364 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200365 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200366 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100367 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200368 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100369 u32 flags;
370 enum ieee80211_sta_rx_bandwidth new_sta_bw;
371 int ret;
372
373 /* if HT was/is disabled, don't track any bandwidth changes */
374 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
375 return 0;
376
377 /* don't check VHT if we associated as non-VHT station */
378 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
379 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200380
Johannes Berg11289582013-02-07 17:36:12 +0100381 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100382 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100383
Johannes Bergf2d93302013-02-08 13:15:55 +0100384 chan = sdata->vif.bss_conf.chandef.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200385 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200386
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100387 /* calculate new channel (type) based on HT/VHT operation IEs */
388 flags = ieee80211_determine_chantype(sdata, sband, chan, ht_oper,
389 vht_oper, &chandef, false);
390
391 /*
392 * Downgrade the new channel if we associated with restricted
393 * capabilities. For example, if we associated as a 20 MHz STA
394 * to a 40 MHz AP (due to regulatory, capabilities or config
395 * reasons) then switching to a 40 MHz channel now won't do us
396 * any good -- we couldn't use it with the AP.
397 */
398 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
399 chandef.width == NL80211_CHAN_WIDTH_80P80)
400 flags |= chandef_downgrade(&chandef);
401 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
402 chandef.width == NL80211_CHAN_WIDTH_160)
403 flags |= chandef_downgrade(&chandef);
404 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
405 chandef.width > NL80211_CHAN_WIDTH_20)
406 flags |= chandef_downgrade(&chandef);
407
408 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
409 return 0;
410
411 sdata_info(sdata,
412 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
413 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
414 chandef.center_freq1, chandef.center_freq2);
415
416 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
417 IEEE80211_STA_DISABLE_VHT |
418 IEEE80211_STA_DISABLE_40MHZ |
419 IEEE80211_STA_DISABLE_80P80MHZ |
420 IEEE80211_STA_DISABLE_160MHZ)) ||
421 !cfg80211_chandef_valid(&chandef)) {
422 sdata_info(sdata,
423 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
424 ifmgd->bssid);
425 return -EINVAL;
Johannes Berg64f68e52012-03-28 10:58:37 +0200426 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200427
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100428 switch (chandef.width) {
429 case NL80211_CHAN_WIDTH_20_NOHT:
430 case NL80211_CHAN_WIDTH_20:
431 new_sta_bw = IEEE80211_STA_RX_BW_20;
432 break;
433 case NL80211_CHAN_WIDTH_40:
434 new_sta_bw = IEEE80211_STA_RX_BW_40;
435 break;
436 case NL80211_CHAN_WIDTH_80:
437 new_sta_bw = IEEE80211_STA_RX_BW_80;
438 break;
439 case NL80211_CHAN_WIDTH_80P80:
440 case NL80211_CHAN_WIDTH_160:
441 new_sta_bw = IEEE80211_STA_RX_BW_160;
442 break;
443 default:
444 return -EINVAL;
445 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200446
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100447 if (new_sta_bw > sta->cur_max_bandwidth)
448 new_sta_bw = sta->cur_max_bandwidth;
Johannes Berg64f68e52012-03-28 10:58:37 +0200449
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100450 if (new_sta_bw < sta->sta.bandwidth) {
451 sta->sta.bandwidth = new_sta_bw;
452 rate_control_rate_update(local, sband, sta,
453 IEEE80211_RC_BW_CHANGED);
454 }
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530455
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100456 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
457 if (ret) {
458 sdata_info(sdata,
459 "AP %pM changed bandwidth to incompatible one - disconnect\n",
460 ifmgd->bssid);
461 return ret;
462 }
463
464 if (new_sta_bw > sta->sta.bandwidth) {
465 sta->sta.bandwidth = new_sta_bw;
466 rate_control_rate_update(local, sband, sta,
467 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200468 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200469
Johannes Berg074d46d2012-03-15 19:45:16 +0100470 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200471
472 /* if bss configuration changed store the new one */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100473 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
474 *changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200475 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200476 }
477
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100478 return 0;
Johannes Bergd5522e02009-03-30 13:23:35 +0200479}
480
Johannes Berg9c6bd792008-09-11 00:01:52 +0200481/* frame sending functions */
482
Johannes Berg66e67e42012-01-20 13:55:27 +0100483static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
484 struct ieee80211_supported_band *sband,
485 u32 *rates)
486{
487 int i, j, count;
488 *rates = 0;
489 count = 0;
490 for (i = 0; i < supp_rates_len; i++) {
491 int rate = (supp_rates[i] & 0x7F) * 5;
492
493 for (j = 0; j < sband->n_bitrates; j++)
494 if (sband->bitrates[j].bitrate == rate) {
495 *rates |= BIT(j);
496 count++;
497 break;
498 }
499 }
500
501 return count;
502}
503
504static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200505 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100506 struct ieee80211_supported_band *sband,
507 struct ieee80211_channel *channel,
508 enum ieee80211_smps_mode smps)
509{
Johannes Berg66e67e42012-01-20 13:55:27 +0100510 u8 *pos;
511 u32 flags = channel->flags;
512 u16 cap;
513 struct ieee80211_sta_ht_cap ht_cap;
514
515 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
516
Johannes Berg66e67e42012-01-20 13:55:27 +0100517 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
518 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
519
Johannes Berg66e67e42012-01-20 13:55:27 +0100520 /* determine capability flags */
521 cap = ht_cap.cap;
522
Johannes Berg9dde6422012-05-16 23:43:19 +0200523 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100524 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
525 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
526 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
527 cap &= ~IEEE80211_HT_CAP_SGI_40;
528 }
529 break;
530 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
531 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
532 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
533 cap &= ~IEEE80211_HT_CAP_SGI_40;
534 }
535 break;
536 }
537
Johannes Berg24398e32012-03-28 10:58:36 +0200538 /*
539 * If 40 MHz was disabled associate as though we weren't
540 * capable of 40 MHz -- some broken APs will never fall
541 * back to trying to transmit in 20 MHz.
542 */
543 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
544 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
545 cap &= ~IEEE80211_HT_CAP_SGI_40;
546 }
547
Johannes Berg66e67e42012-01-20 13:55:27 +0100548 /* set SM PS mode properly */
549 cap &= ~IEEE80211_HT_CAP_SM_PS;
550 switch (smps) {
551 case IEEE80211_SMPS_AUTOMATIC:
552 case IEEE80211_SMPS_NUM_MODES:
553 WARN_ON(1);
554 case IEEE80211_SMPS_OFF:
555 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
556 IEEE80211_HT_CAP_SM_PS_SHIFT;
557 break;
558 case IEEE80211_SMPS_STATIC:
559 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
560 IEEE80211_HT_CAP_SM_PS_SHIFT;
561 break;
562 case IEEE80211_SMPS_DYNAMIC:
563 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
564 IEEE80211_HT_CAP_SM_PS_SHIFT;
565 break;
566 }
567
568 /* reserve and fill IE */
569 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
570 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
571}
572
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000573static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
574 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100575 struct ieee80211_supported_band *sband,
576 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000577{
578 u8 *pos;
579 u32 cap;
580 struct ieee80211_sta_vht_cap vht_cap;
581
582 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
583
584 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100585 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000586
587 /* determine capability flags */
588 cap = vht_cap.cap;
589
Johannes Bergf2d9d272012-11-22 14:11:39 +0100590 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
591 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
592 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
593 }
594
595 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
596 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
597 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
598 }
599
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100600 /*
601 * Some APs apparently get confused if our capabilities are better
602 * than theirs, so restrict what we advertise in the assoc request.
603 */
604 if (!(ap_vht_cap->vht_cap_info &
605 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
606 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
607
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000608 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000609 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000610 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
611}
612
Johannes Berg66e67e42012-01-20 13:55:27 +0100613static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
614{
615 struct ieee80211_local *local = sdata->local;
616 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
617 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
618 struct sk_buff *skb;
619 struct ieee80211_mgmt *mgmt;
620 u8 *pos, qos_info;
621 size_t offset = 0, noffset;
622 int i, count, rates_len, supp_rates_len;
623 u16 capab;
624 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200625 struct ieee80211_chanctx_conf *chanctx_conf;
626 struct ieee80211_channel *chan;
Johannes Berg66e67e42012-01-20 13:55:27 +0100627 u32 rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100628
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200629 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100630
Johannes Berg55de9082012-07-26 17:24:39 +0200631 rcu_read_lock();
632 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
633 if (WARN_ON(!chanctx_conf)) {
634 rcu_read_unlock();
635 return;
636 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100637 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200638 rcu_read_unlock();
639 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg66e67e42012-01-20 13:55:27 +0100640
641 if (assoc_data->supp_rates_len) {
642 /*
643 * Get all rates supported by the device and the AP as
644 * some APs don't like getting a superset of their rates
645 * in the association request (e.g. D-Link DAP 1353 in
646 * b-only mode)...
647 */
648 rates_len = ieee80211_compatible_rates(assoc_data->supp_rates,
649 assoc_data->supp_rates_len,
650 sband, &rates);
651 } else {
652 /*
653 * In case AP not provide any supported rates information
654 * before association, we send information element(s) with
655 * all rates that we support.
656 */
657 rates = ~0;
658 rates_len = sband->n_bitrates;
659 }
660
661 skb = alloc_skb(local->hw.extra_tx_headroom +
662 sizeof(*mgmt) + /* bit too much but doesn't matter */
663 2 + assoc_data->ssid_len + /* SSID */
664 4 + rates_len + /* (extended) rates */
665 4 + /* power capability */
666 2 + 2 * sband->n_channels + /* supported channels */
667 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000668 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100669 assoc_data->ie_len + /* extra IEs */
670 9, /* WMM */
671 GFP_KERNEL);
672 if (!skb)
673 return;
674
675 skb_reserve(skb, local->hw.extra_tx_headroom);
676
677 capab = WLAN_CAPABILITY_ESS;
678
679 if (sband->band == IEEE80211_BAND_2GHZ) {
680 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
681 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
682 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
683 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
684 }
685
686 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
687 capab |= WLAN_CAPABILITY_PRIVACY;
688
689 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
690 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
691 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
692
693 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
694 memset(mgmt, 0, 24);
695 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
696 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
697 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
698
699 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
700 skb_put(skb, 10);
701 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
702 IEEE80211_STYPE_REASSOC_REQ);
703 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
704 mgmt->u.reassoc_req.listen_interval =
705 cpu_to_le16(local->hw.conf.listen_interval);
706 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
707 ETH_ALEN);
708 } else {
709 skb_put(skb, 4);
710 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
711 IEEE80211_STYPE_ASSOC_REQ);
712 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
713 mgmt->u.assoc_req.listen_interval =
714 cpu_to_le16(local->hw.conf.listen_interval);
715 }
716
717 /* SSID */
718 pos = skb_put(skb, 2 + assoc_data->ssid_len);
719 *pos++ = WLAN_EID_SSID;
720 *pos++ = assoc_data->ssid_len;
721 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
722
723 /* add all rates which were marked to be used above */
724 supp_rates_len = rates_len;
725 if (supp_rates_len > 8)
726 supp_rates_len = 8;
727
728 pos = skb_put(skb, supp_rates_len + 2);
729 *pos++ = WLAN_EID_SUPP_RATES;
730 *pos++ = supp_rates_len;
731
732 count = 0;
733 for (i = 0; i < sband->n_bitrates; i++) {
734 if (BIT(i) & rates) {
735 int rate = sband->bitrates[i].bitrate;
736 *pos++ = (u8) (rate / 5);
737 if (++count == 8)
738 break;
739 }
740 }
741
742 if (rates_len > count) {
743 pos = skb_put(skb, rates_len - count + 2);
744 *pos++ = WLAN_EID_EXT_SUPP_RATES;
745 *pos++ = rates_len - count;
746
747 for (i++; i < sband->n_bitrates; i++) {
748 if (BIT(i) & rates) {
749 int rate = sband->bitrates[i].bitrate;
750 *pos++ = (u8) (rate / 5);
751 }
752 }
753 }
754
755 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
756 /* 1. power capabilities */
757 pos = skb_put(skb, 4);
758 *pos++ = WLAN_EID_PWR_CAPABILITY;
759 *pos++ = 2;
760 *pos++ = 0; /* min tx power */
Johannes Berg55de9082012-07-26 17:24:39 +0200761 *pos++ = chan->max_power; /* max tx power */
Johannes Berg66e67e42012-01-20 13:55:27 +0100762
763 /* 2. supported channels */
764 /* TODO: get this in reg domain format */
765 pos = skb_put(skb, 2 * sband->n_channels + 2);
766 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
767 *pos++ = 2 * sband->n_channels;
768 for (i = 0; i < sband->n_channels; i++) {
769 *pos++ = ieee80211_frequency_to_channel(
770 sband->channels[i].center_freq);
771 *pos++ = 1; /* one channel in the subband*/
772 }
773 }
774
775 /* if present, add any custom IEs that go before HT */
776 if (assoc_data->ie_len && assoc_data->ie) {
777 static const u8 before_ht[] = {
778 WLAN_EID_SSID,
779 WLAN_EID_SUPP_RATES,
780 WLAN_EID_EXT_SUPP_RATES,
781 WLAN_EID_PWR_CAPABILITY,
782 WLAN_EID_SUPPORTED_CHANNELS,
783 WLAN_EID_RSN,
784 WLAN_EID_QOS_CAPA,
785 WLAN_EID_RRM_ENABLED_CAPABILITIES,
786 WLAN_EID_MOBILITY_DOMAIN,
787 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
788 };
789 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
790 before_ht, ARRAY_SIZE(before_ht),
791 offset);
792 pos = skb_put(skb, noffset - offset);
793 memcpy(pos, assoc_data->ie + offset, noffset - offset);
794 offset = noffset;
795 }
796
Johannes Bergf2d9d272012-11-22 14:11:39 +0100797 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
798 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
799 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
800
Johannes Berga8243b72012-11-22 14:32:09 +0100801 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200802 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200803 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100804
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000805 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100806 ieee80211_add_vht_ie(sdata, skb, sband,
807 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000808
Johannes Berg66e67e42012-01-20 13:55:27 +0100809 /* if present, add any custom non-vendor IEs that go after HT */
810 if (assoc_data->ie_len && assoc_data->ie) {
811 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
812 assoc_data->ie_len,
813 offset);
814 pos = skb_put(skb, noffset - offset);
815 memcpy(pos, assoc_data->ie + offset, noffset - offset);
816 offset = noffset;
817 }
818
Johannes Berg76f03032012-03-08 15:02:05 +0100819 if (assoc_data->wmm) {
820 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200821 qos_info = ifmgd->uapsd_queues;
822 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100823 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
824 } else {
825 qos_info = 0;
826 }
827
828 pos = skb_put(skb, 9);
829 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
830 *pos++ = 7; /* len */
831 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
832 *pos++ = 0x50;
833 *pos++ = 0xf2;
834 *pos++ = 2; /* WME */
835 *pos++ = 0; /* WME info */
836 *pos++ = 1; /* WME ver */
837 *pos++ = qos_info;
838 }
839
840 /* add any remaining custom (i.e. vendor specific here) IEs */
841 if (assoc_data->ie_len && assoc_data->ie) {
842 noffset = assoc_data->ie_len;
843 pos = skb_put(skb, noffset - offset);
844 memcpy(pos, assoc_data->ie + offset, noffset - offset);
845 }
846
Johannes Berga1845fc2012-06-27 13:18:36 +0200847 drv_mgd_prepare_tx(local, sdata);
848
Johannes Berg66e67e42012-01-20 13:55:27 +0100849 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100850 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
851 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
852 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100853 ieee80211_tx_skb(sdata, skb);
854}
855
Kalle Valo572e0012009-02-10 17:09:31 +0200856void ieee80211_send_pspoll(struct ieee80211_local *local,
857 struct ieee80211_sub_if_data *sdata)
858{
Kalle Valo572e0012009-02-10 17:09:31 +0200859 struct ieee80211_pspoll *pspoll;
860 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200861
Kalle Valod8cd1892010-01-05 20:16:26 +0200862 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
863 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200864 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200865
Kalle Valod8cd1892010-01-05 20:16:26 +0200866 pspoll = (struct ieee80211_pspoll *) skb->data;
867 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200868
Johannes Berg62ae67b2009-11-18 18:42:05 +0100869 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
870 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200871}
872
Johannes Berg965beda2009-04-16 13:17:24 +0200873void ieee80211_send_nullfunc(struct ieee80211_local *local,
874 struct ieee80211_sub_if_data *sdata,
875 int powersave)
876{
877 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200878 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530879 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200880
Kalle Valod8cd1892010-01-05 20:16:26 +0200881 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
882 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200883 return;
884
Kalle Valod8cd1892010-01-05 20:16:26 +0200885 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200886 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200887 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200888
Seth Forshee6c17b772013-02-11 11:21:07 -0600889 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
890 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200891
892 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
893 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
894
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530895 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
896 IEEE80211_STA_CONNECTION_POLL))
897 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
898
Johannes Berg62ae67b2009-11-18 18:42:05 +0100899 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200900}
901
Felix Fietkaud5242152010-01-08 18:06:26 +0100902static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
903 struct ieee80211_sub_if_data *sdata)
904{
905 struct sk_buff *skb;
906 struct ieee80211_hdr *nullfunc;
907 __le16 fc;
908
909 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
910 return;
911
912 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700913 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100914 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700915
Felix Fietkaud5242152010-01-08 18:06:26 +0100916 skb_reserve(skb, local->hw.extra_tx_headroom);
917
918 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
919 memset(nullfunc, 0, 30);
920 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
921 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
922 nullfunc->frame_control = fc;
923 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
924 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
925 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
926 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
927
928 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
929 ieee80211_tx_skb(sdata, skb);
930}
931
Johannes Bergcc32abd2009-05-15 11:52:31 +0200932/* spectrum management related things */
933static void ieee80211_chswitch_work(struct work_struct *work)
934{
935 struct ieee80211_sub_if_data *sdata =
936 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100937 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200938 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
939
Johannes Berg9607e6b2009-12-23 13:15:31 +0100940 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200941 return;
942
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200943 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200944 if (!ifmgd->associated)
945 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200946
Johannes Berg85220d72013-03-25 18:29:27 +0100947 local->_oper_chandef = local->csa_chandef;
Karl Beldan675a0b02013-03-25 16:26:57 +0100948
949 if (!local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +0200950 /* call "hw_config" only if doing sw channel switch */
Karl Beldan675a0b02013-03-25 16:26:57 +0100951 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Shahar Levi1ea57b12011-09-08 08:44:05 +0300952 } else {
953 /* update the device channel directly */
Karl Beldan675a0b02013-03-25 16:26:57 +0100954 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200955 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200956
Johannes Berg77fdaa12009-07-07 03:45:17 +0200957 /* XXX: shouldn't really modify cfg80211-owned data! */
Karl Beldan675a0b02013-03-25 16:26:57 +0100958 ifmgd->associated->channel = local->_oper_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200959
Johannes Berg57eebdf2012-08-01 15:50:46 +0200960 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100961 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100962 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200963 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200964 out:
965 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200966 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200967}
968
Johannes Berg5ce6e432010-05-11 16:20:57 +0200969void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
970{
Johannes Berg55de9082012-07-26 17:24:39 +0200971 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
972 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200973
974 trace_api_chswitch_done(sdata, success);
975 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200976 sdata_info(sdata,
977 "driver channel switch failed, disconnecting\n");
978 ieee80211_queue_work(&sdata->local->hw,
979 &ifmgd->csa_connection_drop_work);
980 } else {
981 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200982 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200983}
984EXPORT_SYMBOL(ieee80211_chswitch_done);
985
Johannes Bergcc32abd2009-05-15 11:52:31 +0200986static void ieee80211_chswitch_timer(unsigned long data)
987{
988 struct ieee80211_sub_if_data *sdata =
989 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200990
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100991 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200992}
993
Johannes Berg37799e52013-03-26 14:02:26 +0100994static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100995ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200996 u64 timestamp, struct ieee802_11_elems *elems,
997 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200998{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100999 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001000 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +01001001 struct cfg80211_bss *cbss = ifmgd->associated;
1002 struct ieee80211_bss *bss;
Johannes Berg55de9082012-07-26 17:24:39 +02001003 struct ieee80211_chanctx *chanctx;
Johannes Bergb4f286a12013-03-26 14:13:58 +01001004 enum ieee80211_band new_band;
1005 int new_freq;
1006 u8 new_chan_no;
1007 u8 count;
1008 u8 mode;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001009 struct ieee80211_channel *new_chan;
Johannes Berg85220d72013-03-25 18:29:27 +01001010 struct cfg80211_chan_def new_chandef = {};
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001011 struct cfg80211_chan_def new_vht_chandef = {};
1012 const struct ieee80211_sec_chan_offs_ie *sec_chan_offs;
1013 const struct ieee80211_wide_bw_chansw_ie *wide_bw_chansw_ie;
Johannes Berg04a161f2013-05-03 09:35:35 +02001014 const struct ieee80211_ht_operation *ht_oper;
Johannes Berg85220d72013-03-25 18:29:27 +01001015 int secondary_channel_offset = -1;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001016
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001017 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001018
Johannes Berg37799e52013-03-26 14:02:26 +01001019 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001020 return;
1021
Johannes Bergb4f286a12013-03-26 14:13:58 +01001022 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001023 return;
1024
Johannes Berg37799e52013-03-26 14:02:26 +01001025 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +02001026 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
1027 return;
1028
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001029 sec_chan_offs = elems->sec_chan_offs;
1030 wide_bw_chansw_ie = elems->wide_bw_chansw_ie;
Johannes Berg04a161f2013-05-03 09:35:35 +02001031 ht_oper = elems->ht_operation;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001032
1033 if (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
1034 IEEE80211_STA_DISABLE_40MHZ)) {
1035 sec_chan_offs = NULL;
1036 wide_bw_chansw_ie = NULL;
Johannes Berg04a161f2013-05-03 09:35:35 +02001037 /* only used for bandwidth here */
1038 ht_oper = NULL;
Johannes Berg85220d72013-03-25 18:29:27 +01001039 }
1040
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001041 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
1042 wide_bw_chansw_ie = NULL;
Johannes Berg85220d72013-03-25 18:29:27 +01001043
Johannes Bergb4f286a12013-03-26 14:13:58 +01001044 if (elems->ext_chansw_ie) {
1045 if (!ieee80211_operating_class_to_band(
1046 elems->ext_chansw_ie->new_operating_class,
1047 &new_band)) {
1048 sdata_info(sdata,
1049 "cannot understand ECSA IE operating class %d, disconnecting\n",
1050 elems->ext_chansw_ie->new_operating_class);
1051 ieee80211_queue_work(&local->hw,
1052 &ifmgd->csa_connection_drop_work);
1053 }
1054 new_chan_no = elems->ext_chansw_ie->new_ch_num;
1055 count = elems->ext_chansw_ie->count;
1056 mode = elems->ext_chansw_ie->mode;
1057 } else if (elems->ch_switch_ie) {
1058 new_band = cbss->channel->band;
1059 new_chan_no = elems->ch_switch_ie->new_ch_num;
1060 count = elems->ch_switch_ie->count;
1061 mode = elems->ch_switch_ie->mode;
1062 } else {
1063 /* nothing here we understand */
Johannes Berg37799e52013-03-26 14:02:26 +01001064 return;
Johannes Bergb4f286a12013-03-26 14:13:58 +01001065 }
Johannes Berg37799e52013-03-26 14:02:26 +01001066
1067 bss = (void *)cbss->priv;
1068
Johannes Bergb4f286a12013-03-26 14:13:58 +01001069 new_freq = ieee80211_channel_to_frequency(new_chan_no, new_band);
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001070 new_chan = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
1071 if (!new_chan || new_chan->flags & IEEE80211_CHAN_DISABLED) {
Johannes Berg882a7c62012-08-01 22:32:45 +02001072 sdata_info(sdata,
1073 "AP %pM switches to unsupported channel (%d MHz), disconnecting\n",
1074 ifmgd->associated->bssid, new_freq);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001075 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +02001076 &ifmgd->csa_connection_drop_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +02001077 return;
Johannes Berg882a7c62012-08-01 22:32:45 +02001078 }
Johannes Bergcc32abd2009-05-15 11:52:31 +02001079
Johannes Berg04a161f2013-05-03 09:35:35 +02001080 if (!beacon && sec_chan_offs) {
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001081 secondary_channel_offset = sec_chan_offs->sec_chan_offs;
Johannes Berg04a161f2013-05-03 09:35:35 +02001082 } else if (beacon && ht_oper) {
1083 secondary_channel_offset =
1084 ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001085 } else if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
Johannes Berg04a161f2013-05-03 09:35:35 +02001086 /*
1087 * If it's not a beacon, HT is enabled and the IE not present,
1088 * it's 20 MHz, 802.11-2012 8.5.2.6:
1089 * This element [the Secondary Channel Offset Element] is
1090 * present when switching to a 40 MHz channel. It may be
1091 * present when switching to a 20 MHz channel (in which
1092 * case the secondary channel offset is set to SCN).
1093 */
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001094 secondary_channel_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
1095 }
1096
Johannes Berg85220d72013-03-25 18:29:27 +01001097 switch (secondary_channel_offset) {
1098 default:
1099 /* secondary_channel_offset was present but is invalid */
1100 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001101 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001102 NL80211_CHAN_HT20);
1103 break;
1104 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001105 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001106 NL80211_CHAN_HT40PLUS);
1107 break;
1108 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001109 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001110 NL80211_CHAN_HT40MINUS);
1111 break;
1112 case -1:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001113 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001114 NL80211_CHAN_NO_HT);
1115 break;
1116 }
1117
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001118 if (wide_bw_chansw_ie) {
1119 new_vht_chandef.chan = new_chan;
1120 new_vht_chandef.center_freq1 =
1121 ieee80211_channel_to_frequency(
1122 wide_bw_chansw_ie->new_center_freq_seg0,
1123 new_band);
1124
1125 switch (wide_bw_chansw_ie->new_channel_width) {
1126 default:
1127 /* hmmm, ignore VHT and use HT if present */
1128 case IEEE80211_VHT_CHANWIDTH_USE_HT:
1129 new_vht_chandef.chan = NULL;
1130 break;
1131 case IEEE80211_VHT_CHANWIDTH_80MHZ:
1132 new_vht_chandef.width = NL80211_CHAN_WIDTH_80;
1133 break;
1134 case IEEE80211_VHT_CHANWIDTH_160MHZ:
1135 new_vht_chandef.width = NL80211_CHAN_WIDTH_160;
1136 break;
1137 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
1138 /* field is otherwise reserved */
1139 new_vht_chandef.center_freq2 =
1140 ieee80211_channel_to_frequency(
1141 wide_bw_chansw_ie->new_center_freq_seg1,
1142 new_band);
1143 new_vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
1144 break;
1145 }
1146 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
1147 new_vht_chandef.width == NL80211_CHAN_WIDTH_80P80)
1148 chandef_downgrade(&new_vht_chandef);
1149 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
1150 new_vht_chandef.width == NL80211_CHAN_WIDTH_160)
1151 chandef_downgrade(&new_vht_chandef);
1152 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
1153 new_vht_chandef.width > NL80211_CHAN_WIDTH_20)
1154 chandef_downgrade(&new_vht_chandef);
1155 }
1156
1157 /* if VHT data is there validate & use it */
1158 if (new_vht_chandef.chan) {
1159 if (!cfg80211_chandef_compatible(&new_vht_chandef,
1160 &new_chandef)) {
1161 sdata_info(sdata,
1162 "AP %pM CSA has inconsistent channel data, disconnecting\n",
1163 ifmgd->associated->bssid);
1164 ieee80211_queue_work(&local->hw,
1165 &ifmgd->csa_connection_drop_work);
1166 return;
1167 }
1168 new_chandef = new_vht_chandef;
1169 }
1170
Johannes Berg85220d72013-03-25 18:29:27 +01001171 if (!cfg80211_chandef_usable(local->hw.wiphy, &new_chandef,
1172 IEEE80211_CHAN_DISABLED)) {
1173 sdata_info(sdata,
1174 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
1175 ifmgd->associated->bssid, new_freq,
1176 new_chandef.width, new_chandef.center_freq1,
1177 new_chandef.center_freq2);
1178 ieee80211_queue_work(&local->hw,
1179 &ifmgd->csa_connection_drop_work);
1180 return;
1181 }
1182
Johannes Berg57eebdf2012-08-01 15:50:46 +02001183 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
1184
Johannes Bergb4f286a12013-03-26 14:13:58 +01001185 if (local->use_chanctx) {
Johannes Berg55de9082012-07-26 17:24:39 +02001186 sdata_info(sdata,
1187 "not handling channel switch with channel contexts\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001188 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001189 &ifmgd->csa_connection_drop_work);
Simon Wunderlich246dc3f2012-11-30 19:17:27 +01001190 return;
Johannes Berg55de9082012-07-26 17:24:39 +02001191 }
1192
Johannes Bergb4f286a12013-03-26 14:13:58 +01001193 mutex_lock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001194 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Johannes Bergb4f286a12013-03-26 14:13:58 +01001195 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001196 return;
1197 }
1198 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1199 struct ieee80211_chanctx, conf);
1200 if (chanctx->refcount > 1) {
1201 sdata_info(sdata,
1202 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001203 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001204 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001205 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001206 return;
1207 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001208 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001209
Johannes Berg85220d72013-03-25 18:29:27 +01001210 local->csa_chandef = new_chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001211
Johannes Bergb4f286a12013-03-26 14:13:58 +01001212 if (mode)
1213 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001214 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001215 IEEE80211_QUEUE_STOP_REASON_CSA);
1216
Johannes Bergb4f286a12013-03-26 14:13:58 +01001217 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001218 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001219 struct ieee80211_channel_switch ch_switch = {
1220 .timestamp = timestamp,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001221 .block_tx = mode,
Johannes Berg85220d72013-03-25 18:29:27 +01001222 .chandef = new_chandef,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001223 .count = count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001224 };
1225
Johannes Bergb4f286a12013-03-26 14:13:58 +01001226 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001227 return;
1228 }
1229
1230 /* channel switch handled in software */
Johannes Bergb4f286a12013-03-26 14:13:58 +01001231 if (count <= 1)
1232 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001233 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001234 mod_timer(&ifmgd->chswitch_timer,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001235 TU_TO_EXP_TIME(count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001236}
1237
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001238static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1239 struct ieee80211_channel *channel,
1240 const u8 *country_ie, u8 country_ie_len,
1241 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001242{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001243 struct ieee80211_country_ie_triplet *triplet;
1244 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1245 int i, chan_pwr, chan_increment, new_ap_level;
1246 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001247
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001248 /* Invalid IE */
1249 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001250 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001251
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001252 triplet = (void *)(country_ie + 3);
1253 country_ie_len -= 3;
1254
1255 switch (channel->band) {
1256 default:
1257 WARN_ON_ONCE(1);
1258 /* fall through */
1259 case IEEE80211_BAND_2GHZ:
1260 case IEEE80211_BAND_60GHZ:
1261 chan_increment = 1;
1262 break;
1263 case IEEE80211_BAND_5GHZ:
1264 chan_increment = 4;
1265 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001266 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001267
1268 /* find channel */
1269 while (country_ie_len >= 3) {
1270 u8 first_channel = triplet->chans.first_channel;
1271
1272 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1273 goto next;
1274
1275 for (i = 0; i < triplet->chans.num_channels; i++) {
1276 if (first_channel + i * chan_increment == chan) {
1277 have_chan_pwr = true;
1278 chan_pwr = triplet->chans.max_power;
1279 break;
1280 }
1281 }
1282 if (have_chan_pwr)
1283 break;
1284
1285 next:
1286 triplet++;
1287 country_ie_len -= 3;
1288 }
1289
1290 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001291 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001292
1293 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1294
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001295 if (sdata->ap_power_level == new_ap_level)
1296 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001297
1298 sdata_info(sdata,
1299 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1300 new_ap_level, chan_pwr, *pwr_constr_elem,
1301 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001302 sdata->ap_power_level = new_ap_level;
1303 if (__ieee80211_recalc_txpower(sdata))
1304 return BSS_CHANGED_TXPOWER;
1305 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001306}
1307
Johannes Berg965beda2009-04-16 13:17:24 +02001308/* powersave */
1309static void ieee80211_enable_ps(struct ieee80211_local *local,
1310 struct ieee80211_sub_if_data *sdata)
1311{
1312 struct ieee80211_conf *conf = &local->hw.conf;
1313
Johannes Bergd5edaed2009-04-22 23:02:51 +02001314 /*
1315 * If we are scanning right now then the parameters will
1316 * take effect when scan finishes.
1317 */
Helmut Schaafbe9c422009-07-23 12:14:04 +02001318 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001319 return;
1320
Johannes Berg965beda2009-04-16 13:17:24 +02001321 if (conf->dynamic_ps_timeout > 0 &&
1322 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1323 mod_timer(&local->dynamic_ps_timer, jiffies +
1324 msecs_to_jiffies(conf->dynamic_ps_timeout));
1325 } else {
1326 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1327 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301328
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001329 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1330 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1331 return;
1332
1333 conf->flags |= IEEE80211_CONF_PS;
1334 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001335 }
1336}
1337
1338static void ieee80211_change_ps(struct ieee80211_local *local)
1339{
1340 struct ieee80211_conf *conf = &local->hw.conf;
1341
1342 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001343 ieee80211_enable_ps(local, local->ps_sdata);
1344 } else if (conf->flags & IEEE80211_CONF_PS) {
1345 conf->flags &= ~IEEE80211_CONF_PS;
1346 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1347 del_timer_sync(&local->dynamic_ps_timer);
1348 cancel_work_sync(&local->dynamic_ps_enable_work);
1349 }
1350}
1351
Jason Young808118c2011-03-10 16:43:19 -08001352static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1353{
1354 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1355 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001356 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001357
1358 if (!mgd->powersave)
1359 return false;
1360
Johannes Berg05cb9102011-10-28 11:59:47 +02001361 if (mgd->broken_ap)
1362 return false;
1363
Jason Young808118c2011-03-10 16:43:19 -08001364 if (!mgd->associated)
1365 return false;
1366
Jason Young808118c2011-03-10 16:43:19 -08001367 if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
1368 IEEE80211_STA_CONNECTION_POLL))
1369 return false;
1370
Alexander Bondar989c6502013-05-16 17:34:17 +03001371 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001372 return false;
1373
Jason Young808118c2011-03-10 16:43:19 -08001374 rcu_read_lock();
1375 sta = sta_info_get(sdata, mgd->bssid);
1376 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001377 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001378 rcu_read_unlock();
1379
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001380 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001381}
1382
Johannes Berg965beda2009-04-16 13:17:24 +02001383/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001384void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001385{
1386 struct ieee80211_sub_if_data *sdata, *found = NULL;
1387 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001388 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001389
1390 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1391 local->ps_sdata = NULL;
1392 return;
1393 }
1394
1395 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001396 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001397 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301398 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1399 /* If an AP vif is found, then disable PS
1400 * by setting the count to zero thereby setting
1401 * ps_sdata to NULL.
1402 */
1403 count = 0;
1404 break;
1405 }
Johannes Berg965beda2009-04-16 13:17:24 +02001406 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1407 continue;
1408 found = sdata;
1409 count++;
1410 }
1411
Jason Young808118c2011-03-10 16:43:19 -08001412 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001413 s32 beaconint_us;
1414
1415 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001416 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001417
1418 beaconint_us = ieee80211_tu_to_usec(
1419 found->vif.bss_conf.beacon_int);
1420
Juuso Oikarinenff616382010-06-09 09:51:52 +03001421 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001422 if (timeout < 0) {
1423 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001424 * Go to full PSM if the user configures a very low
1425 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001426 * The 2000 second value is there for compatibility
1427 * until the PM_QOS_NETWORK_LATENCY is configured
1428 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001429 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001430 if (latency > (1900 * USEC_PER_MSEC) &&
1431 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001432 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001433 else
1434 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001435 }
Johannes Berg09b85562013-02-06 23:07:41 +01001436 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001437
Johannes Berg04fe2032009-04-22 18:44:37 +02001438 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001439 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001440 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001441 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001442 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001443
1444 /* If the TIM IE is invalid, pretend the value is 1 */
1445 if (!dtimper)
1446 dtimper = 1;
1447 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001448 maxslp = min_t(int, dtimper,
1449 latency / beaconint_us);
1450
Johannes Berg9ccebe62009-04-23 10:32:36 +02001451 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001452 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001453 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001454 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001455 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001456 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001457 }
Johannes Berg965beda2009-04-16 13:17:24 +02001458
1459 ieee80211_change_ps(local);
1460}
1461
Eliad Pellerab095872012-07-27 12:33:22 +03001462void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1463{
1464 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1465
1466 if (sdata->vif.bss_conf.ps != ps_allowed) {
1467 sdata->vif.bss_conf.ps = ps_allowed;
1468 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1469 }
1470}
1471
Johannes Berg965beda2009-04-16 13:17:24 +02001472void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1473{
1474 struct ieee80211_local *local =
1475 container_of(work, struct ieee80211_local,
1476 dynamic_ps_disable_work);
1477
1478 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1479 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1480 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1481 }
1482
1483 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001484 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001485 IEEE80211_QUEUE_STOP_REASON_PS);
1486}
1487
1488void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1489{
1490 struct ieee80211_local *local =
1491 container_of(work, struct ieee80211_local,
1492 dynamic_ps_enable_work);
1493 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001494 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301495 unsigned long flags;
1496 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001497
1498 /* can only happen when PS was just disabled anyway */
1499 if (!sdata)
1500 return;
1501
Christian Lamparter5e340692011-06-30 21:08:43 +02001502 ifmgd = &sdata->u.mgd;
1503
Johannes Berg965beda2009-04-16 13:17:24 +02001504 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1505 return;
1506
Johannes Berg09b85562013-02-06 23:07:41 +01001507 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001508 /* don't enter PS if TX frames are pending */
1509 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301510 mod_timer(&local->dynamic_ps_timer, jiffies +
1511 msecs_to_jiffies(
1512 local->hw.conf.dynamic_ps_timeout));
1513 return;
1514 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001515
1516 /*
1517 * transmission can be stopped by others which leads to
1518 * dynamic_ps_timer expiry. Postpone the ps timer if it
1519 * is not the actual idle state.
1520 */
1521 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1522 for (q = 0; q < local->hw.queues; q++) {
1523 if (local->queue_stop_reasons[q]) {
1524 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1525 flags);
1526 mod_timer(&local->dynamic_ps_timer, jiffies +
1527 msecs_to_jiffies(
1528 local->hw.conf.dynamic_ps_timeout));
1529 return;
1530 }
1531 }
1532 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301533 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301534
Vivek Natarajan375177b2010-02-09 14:50:28 +05301535 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301536 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001537 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301538 mod_timer(&local->dynamic_ps_timer, jiffies +
1539 msecs_to_jiffies(
1540 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001541 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301542 ieee80211_send_nullfunc(local, sdata, 1);
1543 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001544 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301545 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301546 }
1547
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001548 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1549 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301550 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1551 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1552 local->hw.conf.flags |= IEEE80211_CONF_PS;
1553 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1554 }
Johannes Berg965beda2009-04-16 13:17:24 +02001555}
1556
1557void ieee80211_dynamic_ps_timer(unsigned long data)
1558{
1559 struct ieee80211_local *local = (void *) data;
1560
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001561 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001562 return;
1563
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001564 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001565}
1566
Simon Wunderlich164eb022013-02-08 18:16:20 +01001567void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1568{
1569 struct delayed_work *delayed_work =
1570 container_of(work, struct delayed_work, work);
1571 struct ieee80211_sub_if_data *sdata =
1572 container_of(delayed_work, struct ieee80211_sub_if_data,
1573 dfs_cac_timer_work);
1574
1575 ieee80211_vif_release_channel(sdata);
1576
1577 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_FINISHED, GFP_KERNEL);
1578}
1579
Johannes Berg60f8b392008-09-08 17:44:22 +02001580/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001581static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001582 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001583 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001584{
Jiri Bencf0706e82007-05-05 11:45:53 -07001585 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001586 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001587 size_t left;
1588 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001589 const u8 *pos;
1590 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001591
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001592 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001593 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001594
Johannes Berg32c50572012-03-28 11:04:29 +02001595 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001596 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001597
1598 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001599 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001600
Jiri Bencf0706e82007-05-05 11:45:53 -07001601 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001602 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001603
1604 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001605 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001606
Jiri Bencf0706e82007-05-05 11:45:53 -07001607 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001608 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001609 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001610 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001611
1612 pos = wmm_param + 8;
1613 left = wmm_param_len - 8;
1614
1615 memset(&params, 0, sizeof(params));
1616
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001617 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001618 for (; left >= 4; left -= 4, pos += 4) {
1619 int aci = (pos[0] >> 5) & 0x03;
1620 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001621 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001622 int queue;
1623
1624 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001625 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001626 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001627 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001628 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001629 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1630 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001631 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001632 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001633 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001634 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001635 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001636 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1637 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001638 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001639 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001640 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001641 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001642 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001643 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1644 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001645 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001646 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001647 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001648 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001649 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001650 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001651 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1652 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001653 break;
1654 }
1655
1656 params.aifs = pos[0] & 0x0f;
1657 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1658 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001659 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001660 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001661 params.uapsd = uapsd;
1662
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001663 mlme_dbg(sdata,
1664 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1665 queue, aci, acm,
1666 params.aifs, params.cw_min, params.cw_max,
1667 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001668 sdata->tx_conf[queue] = params;
1669 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001670 sdata_err(sdata,
1671 "failed to set TX queue parameters for queue %d\n",
1672 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001673 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001674
1675 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001676 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001677 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001678}
1679
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001680static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1681{
1682 lockdep_assert_held(&sdata->local->mtx);
1683
1684 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1685 IEEE80211_STA_BEACON_POLL);
1686 ieee80211_run_deferred_scan(sdata->local);
1687}
1688
1689static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1690{
1691 mutex_lock(&sdata->local->mtx);
1692 __ieee80211_stop_poll(sdata);
1693 mutex_unlock(&sdata->local->mtx);
1694}
1695
Johannes Berg7a5158e2008-10-08 10:59:33 +02001696static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1697 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001698{
Johannes Bergbda39332008-10-11 01:51:51 +02001699 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001700 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001701 bool use_protection;
1702 bool use_short_preamble;
1703 bool use_short_slot;
1704
1705 if (erp_valid) {
1706 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1707 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1708 } else {
1709 use_protection = false;
1710 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1711 }
1712
1713 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001714 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001715 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001716
Johannes Berg471b3ef2007-12-28 14:32:58 +01001717 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001718 bss_conf->use_cts_prot = use_protection;
1719 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001720 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001721
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001722 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001723 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001724 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001725 }
Daniel Draked9430a32007-07-27 15:43:24 +02001726
Johannes Berg7a5158e2008-10-08 10:59:33 +02001727 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001728 bss_conf->use_short_slot = use_short_slot;
1729 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001730 }
1731
1732 return changed;
1733}
1734
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001735static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001736 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001737 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001738{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001739 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001740 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001741 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001742
Johannes Bergae5eb022008-10-14 16:58:37 +02001743 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001744 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001745 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001746
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001747 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001748 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001749
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001750 sdata->u.mgd.associated = cbss;
1751 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001752
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001753 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1754
Johannes Berg488dd7b2012-10-29 20:08:01 +01001755 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001756 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001757
Johannes Berg9caf0362012-11-29 01:25:20 +01001758 rcu_read_lock();
1759 ies = rcu_dereference(cbss->ies);
1760 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001761 int ret;
1762
1763 ret = cfg80211_get_p2p_attr(
1764 ies->data, ies->len,
1765 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001766 (u8 *) &bss_conf->p2p_noa_attr,
1767 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001768 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001769 sdata->u.mgd.p2p_noa_index =
1770 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001771 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001772 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001773 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001774 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001775 }
1776
Johannes Bergb291ba12009-07-10 15:29:03 +02001777 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001778 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001779
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001780 ieee80211_led_assoc(local, 1);
1781
Alexander Bondar989c6502013-05-16 17:34:17 +03001782 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001783 /*
1784 * If the AP is buggy we may get here with no DTIM period
1785 * known, so assume it's 1 which is the only safe assumption
1786 * in that case, although if the TIM IE is broken powersave
1787 * probably just won't work at all.
1788 */
1789 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001790 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001791 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001792 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001793 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001794 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001795 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001796
Juuso Oikarinen68542962010-06-09 13:43:26 +03001797 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001798
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001799 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001800 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001801 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001802 bss_info_changed |= BSS_CHANGED_CQM;
1803
Juuso Oikarinen68542962010-06-09 13:43:26 +03001804 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001805 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001806 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001807
Johannes Bergae5eb022008-10-14 16:58:37 +02001808 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001809
Johannes Berg056508d2009-07-30 21:43:55 +02001810 mutex_lock(&local->iflist_mtx);
1811 ieee80211_recalc_ps(local, -1);
1812 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001813
Johannes Berg04ecd252012-09-11 14:34:12 +02001814 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001815 ieee80211_recalc_ps_vif(sdata);
1816
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001817 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001818}
1819
Jouni Malinene69e95d2010-03-29 23:29:31 -07001820static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001821 u16 stype, u16 reason, bool tx,
1822 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001823{
Johannes Berg46900292009-02-15 12:44:28 +01001824 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001825 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001826 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001827
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001828 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001829
Johannes Berg37ad3882012-02-24 13:50:54 +01001830 if (WARN_ON_ONCE(tx && !frame_buf))
1831 return;
1832
Johannes Bergb291ba12009-07-10 15:29:03 +02001833 if (WARN_ON(!ifmgd->associated))
1834 return;
1835
David Spinadel79543d82012-06-12 09:59:45 +03001836 ieee80211_stop_poll(sdata);
1837
Johannes Berg77fdaa12009-07-07 03:45:17 +02001838 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001839 netif_carrier_off(sdata->dev);
1840
Eliad Peller88bc40e2012-07-12 17:35:33 +03001841 /*
1842 * if we want to get out of ps before disassoc (why?) we have
1843 * to do it before sending disassoc, as otherwise the null-packet
1844 * won't be valid.
1845 */
1846 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1847 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1848 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1849 }
1850 local->ps_sdata = NULL;
1851
Eliad Pellerab095872012-07-27 12:33:22 +03001852 /* disable per-vif ps */
1853 ieee80211_recalc_ps_vif(sdata);
1854
Eliad Pellerf8239812012-06-27 14:18:22 +03001855 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1856 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001857 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001858
Johannes Berg37ad3882012-02-24 13:50:54 +01001859 /* deauthenticate/disassociate now */
1860 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001861 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1862 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001863
1864 /* flush out frame */
1865 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001866 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001867
Eliad Peller88a9e312012-06-01 11:14:03 +03001868 /* clear bssid only after building the needed mgmt frames */
1869 memset(ifmgd->bssid, 0, ETH_ALEN);
1870
Johannes Berg37ad3882012-02-24 13:50:54 +01001871 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001872 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001873
1874 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001875 changed |= ieee80211_reset_erp_info(sdata);
1876
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001877 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001878 changed |= BSS_CHANGED_ASSOC;
1879 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001880
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001881 ifmgd->p2p_noa_index = -1;
1882 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1883 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001884
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001885 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001886 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1887 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001888 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1889 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001890
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001891 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301892
Kalle Valo520eb822008-12-18 23:35:27 +02001893 del_timer_sync(&local->dynamic_ps_timer);
1894 cancel_work_sync(&local->dynamic_ps_enable_work);
1895
Juuso Oikarinen68542962010-06-09 13:43:26 +03001896 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001897 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001898 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001899
Johannes Berg3abead52012-03-02 15:56:59 +01001900 sdata->vif.bss_conf.qos = false;
1901 changed |= BSS_CHANGED_QOS;
1902
Johannes Berg0aaffa92010-05-05 15:28:27 +02001903 /* The BSSID (not really interesting) and HT changed */
1904 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001905 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001906
Johannes Berg3abead52012-03-02 15:56:59 +01001907 /* disassociated - set to defaults now */
1908 ieee80211_set_wmm_default(sdata, false);
1909
Johannes Bergb9dcf712010-08-27 12:35:54 +02001910 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1911 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1912 del_timer_sync(&sdata->u.mgd.timer);
1913 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001914
Johannes Berg826262c2012-12-10 16:38:14 +02001915 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001916 sdata->vif.bss_conf.beacon_rate = NULL;
1917
Alexander Bondar989c6502013-05-16 17:34:17 +03001918 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001919
Johannes Berg028e8da02012-11-26 11:57:41 +01001920 ifmgd->flags = 0;
1921 ieee80211_vif_release_channel(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001922}
Jiri Bencf0706e82007-05-05 11:45:53 -07001923
Kalle Valo3cf335d2009-03-22 21:57:06 +02001924void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1925 struct ieee80211_hdr *hdr)
1926{
1927 /*
1928 * We can postpone the mgd.timer whenever receiving unicast frames
1929 * from AP because we know that the connection is working both ways
1930 * at that time. But multicast frames (and hence also beacons) must
1931 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001932 * data idle periods for sending the periodic probe request to the
1933 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001934 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001935 if (is_multicast_ether_addr(hdr->addr1))
1936 return;
1937
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001938 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001939}
Jiri Bencf0706e82007-05-05 11:45:53 -07001940
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001941static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1942{
1943 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001944 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001945
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001946 mutex_lock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001947 if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001948 IEEE80211_STA_CONNECTION_POLL))) {
1949 mutex_unlock(&local->mtx);
1950 return;
1951 }
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001952
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001953 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001954
1955 mutex_lock(&local->iflist_mtx);
1956 ieee80211_recalc_ps(local, -1);
1957 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001958
1959 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001960 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001961
1962 /*
1963 * We've received a probe response, but are not sure whether
1964 * we have or will be receiving any beacons or data, so let's
1965 * schedule the timers again, just in case.
1966 */
1967 ieee80211_sta_reset_beacon_monitor(sdata);
1968
1969 mod_timer(&ifmgd->conn_mon_timer,
1970 round_jiffies_up(jiffies +
1971 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001972out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001973 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001974}
1975
1976void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001977 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001978{
Felix Fietkau75706d02010-12-02 21:01:07 +01001979 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001980 return;
1981
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001982 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1983 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001984 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001985 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001986 else
1987 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001988 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001989 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001990 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001991
1992 if (ack)
1993 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001994}
1995
Maxim Levitskya43abf22009-07-31 18:54:12 +03001996static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1997{
1998 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1999 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04002000 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08002001 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04002002
2003 /*
2004 * Try sending broadcast probe requests for the last three
2005 * probe requests after the first ones failed since some
2006 * buggy APs only support broadcast probe requests.
2007 */
2008 if (ifmgd->probe_send_count >= unicast_limit)
2009 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03002010
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002011 /*
2012 * When the hardware reports an accurate Tx ACK status, it's
2013 * better to send a nullfunc frame instead of a probe request,
2014 * as it will kick us off the AP quickly if we aren't associated
2015 * anymore. The timeout will be reset if the frame is ACKed by
2016 * the AP.
2017 */
Soumik Das992e68b2012-05-20 15:31:13 +05302018 ifmgd->probe_send_count++;
2019
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002020 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
2021 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002022 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002023 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002024 int ssid_len;
2025
Johannes Berg9caf0362012-11-29 01:25:20 +01002026 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002027 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002028 if (WARN_ON_ONCE(ssid == NULL))
2029 ssid_len = 0;
2030 else
2031 ssid_len = ssid[1];
2032
2033 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002034 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02002035 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01002036 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002037 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03002038
Ben Greear180205b2011-02-04 15:30:24 -08002039 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002040 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05302041 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01002042 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002043}
2044
Johannes Bergb291ba12009-07-10 15:29:03 +02002045static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
2046 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02002047{
Kalle Valo04de8382009-03-22 21:57:35 +02002048 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02002049 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02002050
Johannes Berg9607e6b2009-12-23 13:15:31 +01002051 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02002052 return;
2053
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002054 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002055
2056 if (!ifmgd->associated)
2057 goto out;
2058
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02002059 mutex_lock(&sdata->local->mtx);
2060
2061 if (sdata->local->tmp_channel || sdata->local->scanning) {
2062 mutex_unlock(&sdata->local->mtx);
2063 goto out;
2064 }
2065
Ben Greeara13fbe52013-03-25 11:19:35 -07002066 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002067 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07002068 "detected beacon loss from AP (missed %d beacons) - probing\n",
2069 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002070
Ben Greeara13fbe52013-03-25 11:19:35 -07002071 ieee80211_cqm_rssi_notify(&sdata->vif,
2072 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
2073 GFP_KERNEL);
2074 }
Kalle Valo04de8382009-03-22 21:57:35 +02002075
Johannes Bergb291ba12009-07-10 15:29:03 +02002076 /*
2077 * The driver/our work has already reported this event or the
2078 * connection monitoring has kicked in and we have already sent
2079 * a probe request. Or maybe the AP died and the driver keeps
2080 * reporting until we disassociate...
2081 *
2082 * In either case we have to ignore the current call to this
2083 * function (except for setting the correct probe reason bit)
2084 * because otherwise we would reset the timer every time and
2085 * never check whether we received a probe response!
2086 */
2087 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2088 IEEE80211_STA_CONNECTION_POLL))
2089 already = true;
2090
2091 if (beacon)
2092 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
2093 else
2094 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
2095
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02002096 mutex_unlock(&sdata->local->mtx);
2097
Johannes Bergb291ba12009-07-10 15:29:03 +02002098 if (already)
2099 goto out;
2100
Johannes Berg4e751842009-06-10 15:16:52 +02002101 mutex_lock(&sdata->local->iflist_mtx);
2102 ieee80211_recalc_ps(sdata->local, -1);
2103 mutex_unlock(&sdata->local->iflist_mtx);
2104
Maxim Levitskya43abf22009-07-31 18:54:12 +03002105 ifmgd->probe_send_count = 0;
2106 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002107 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002108 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02002109}
2110
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002111struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
2112 struct ieee80211_vif *vif)
2113{
2114 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2115 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002116 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002117 struct sk_buff *skb;
2118 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002119 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002120
2121 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2122 return NULL;
2123
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002124 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002125
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002126 if (ifmgd->associated)
2127 cbss = ifmgd->associated;
2128 else if (ifmgd->auth_data)
2129 cbss = ifmgd->auth_data->bss;
2130 else if (ifmgd->assoc_data)
2131 cbss = ifmgd->assoc_data->bss;
2132 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002133 return NULL;
2134
Johannes Berg9caf0362012-11-29 01:25:20 +01002135 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002136 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002137 if (WARN_ON_ONCE(ssid == NULL))
2138 ssid_len = 0;
2139 else
2140 ssid_len = ssid[1];
2141
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002142 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02002143 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02002144 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02002145 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01002146 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002147
2148 return skb;
2149}
2150EXPORT_SYMBOL(ieee80211_ap_probereq_get);
2151
Johannes Bergeef9e542013-01-29 13:09:34 +01002152static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002153{
2154 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02002155 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002156
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002157 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002158 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002159 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002160 return;
2161 }
2162
Johannes Berg37ad3882012-02-24 13:50:54 +01002163 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2164 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01002165 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02002166 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002167 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01002168 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002169 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02002170
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002171 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
2172 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002173 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002174}
2175
Johannes Bergcc74c0c2012-08-01 16:49:34 +02002176static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02002177{
2178 struct ieee80211_sub_if_data *sdata =
2179 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002180 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002181 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2182 struct sta_info *sta;
2183
2184 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302185 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002186 sta = sta_info_get(sdata, ifmgd->bssid);
2187 if (sta)
2188 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302189 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002190 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002191
Johannes Berg682bd382013-01-29 13:13:50 +01002192 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002193 sdata_info(sdata, "Connection to AP %pM lost\n",
2194 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002195 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002196 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002197 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002198 }
2199}
2200
2201static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2202{
2203 struct ieee80211_sub_if_data *sdata =
2204 container_of(work, struct ieee80211_sub_if_data,
2205 u.mgd.csa_connection_drop_work);
2206
Johannes Bergeef9e542013-01-29 13:09:34 +01002207 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002208}
2209
Kalle Valo04de8382009-03-22 21:57:35 +02002210void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2211{
2212 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002213 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002214
Johannes Bergb5878a22010-04-07 16:48:40 +02002215 trace_api_beacon_loss(sdata);
2216
Johannes Berg682bd382013-01-29 13:13:50 +01002217 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002218 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002219}
2220EXPORT_SYMBOL(ieee80211_beacon_loss);
2221
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002222void ieee80211_connection_loss(struct ieee80211_vif *vif)
2223{
2224 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2225 struct ieee80211_hw *hw = &sdata->local->hw;
2226
Johannes Bergb5878a22010-04-07 16:48:40 +02002227 trace_api_connection_loss(sdata);
2228
Johannes Berg682bd382013-01-29 13:13:50 +01002229 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002230 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2231}
2232EXPORT_SYMBOL(ieee80211_connection_loss);
2233
2234
Johannes Berg66e67e42012-01-20 13:55:27 +01002235static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2236 bool assoc)
2237{
2238 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2239
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002240 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002241
Johannes Berg66e67e42012-01-20 13:55:27 +01002242 if (!assoc) {
2243 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2244
2245 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2246 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002247 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002248 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002249 }
2250
Johannes Berg5b112d32013-02-01 01:49:58 +01002251 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002252 kfree(auth_data);
2253 sdata->u.mgd.auth_data = NULL;
2254}
2255
2256static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2257 struct ieee80211_mgmt *mgmt, size_t len)
2258{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002259 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002260 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2261 u8 *pos;
2262 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002263 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002264
2265 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002266 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002267 if (!elems.challenge)
2268 return;
2269 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002270 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002271 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2272 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2273 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002274 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002275 elems.challenge - 2, elems.challenge_len + 2,
2276 auth_data->bss->bssid, auth_data->bss->bssid,
2277 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002278 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002279}
2280
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002281static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2282 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002283{
2284 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2285 u8 bssid[ETH_ALEN];
2286 u16 auth_alg, auth_transaction, status_code;
2287 struct sta_info *sta;
2288
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002289 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002290
2291 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002292 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002293
2294 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002295 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002296
2297 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2298
Joe Perchesb203ca32012-05-08 18:56:52 +00002299 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002300 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002301
2302 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2303 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2304 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2305
2306 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002307 auth_transaction != ifmgd->auth_data->expected_transaction) {
2308 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2309 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2310 auth_transaction,
2311 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002312 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002313 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002314
2315 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002316 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2317 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002318 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002319 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002320 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002321 }
2322
2323 switch (ifmgd->auth_data->algorithm) {
2324 case WLAN_AUTH_OPEN:
2325 case WLAN_AUTH_LEAP:
2326 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002327 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002328 break;
2329 case WLAN_AUTH_SHARED_KEY:
2330 if (ifmgd->auth_data->expected_transaction != 4) {
2331 ieee80211_auth_challenge(sdata, mgmt, len);
2332 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002333 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002334 }
2335 break;
2336 default:
2337 WARN_ONCE(1, "invalid auth alg %d",
2338 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002339 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002340 }
2341
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002342 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002343 ifmgd->auth_data->done = true;
2344 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002345 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002346 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002347
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002348 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2349 ifmgd->auth_data->expected_transaction != 2) {
2350 /*
2351 * Report auth frame to user space for processing since another
2352 * round of Authentication frames is still needed.
2353 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002354 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002355 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002356 }
2357
Johannes Berg66e67e42012-01-20 13:55:27 +01002358 /* move station state to auth */
2359 mutex_lock(&sdata->local->sta_mtx);
2360 sta = sta_info_get(sdata, bssid);
2361 if (!sta) {
2362 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2363 goto out_err;
2364 }
2365 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002366 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002367 goto out_err;
2368 }
2369 mutex_unlock(&sdata->local->sta_mtx);
2370
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002371 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002372 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002373 out_err:
2374 mutex_unlock(&sdata->local->sta_mtx);
2375 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002376}
2377
2378
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002379static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2380 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002381{
Johannes Berg46900292009-02-15 12:44:28 +01002382 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002383 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002384 u16 reason_code;
2385
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002386 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002387
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002388 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002389 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002390
Johannes Berg66e67e42012-01-20 13:55:27 +01002391 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002392 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002393 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002394
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002395 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002396
2397 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2398
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002399 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2400 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002401
Johannes Berg37ad3882012-02-24 13:50:54 +01002402 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2403
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002404 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002405}
2406
2407
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002408static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2409 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002410{
Johannes Berg46900292009-02-15 12:44:28 +01002411 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002412 u16 reason_code;
2413
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002414 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002415
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002416 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002417 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002418
Johannes Berg66e67e42012-01-20 13:55:27 +01002419 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002420 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002421 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002422
2423 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2424
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002425 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2426 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002427
Johannes Berg37ad3882012-02-24 13:50:54 +01002428 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2429
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002430 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002431}
2432
Christian Lamparterc74d0842011-10-15 00:14:49 +02002433static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2434 u8 *supp_rates, unsigned int supp_rates_len,
2435 u32 *rates, u32 *basic_rates,
2436 bool *have_higher_than_11mbit,
2437 int *min_rate, int *min_rate_index)
2438{
2439 int i, j;
2440
2441 for (i = 0; i < supp_rates_len; i++) {
2442 int rate = (supp_rates[i] & 0x7f) * 5;
2443 bool is_basic = !!(supp_rates[i] & 0x80);
2444
2445 if (rate > 110)
2446 *have_higher_than_11mbit = true;
2447
2448 /*
2449 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2450 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2451 *
2452 * Note: Even through the membership selector and the basic
2453 * rate flag share the same bit, they are not exactly
2454 * the same.
2455 */
2456 if (!!(supp_rates[i] & 0x80) &&
2457 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2458 continue;
2459
2460 for (j = 0; j < sband->n_bitrates; j++) {
2461 if (sband->bitrates[j].bitrate == rate) {
2462 *rates |= BIT(j);
2463 if (is_basic)
2464 *basic_rates |= BIT(j);
2465 if (rate < *min_rate) {
2466 *min_rate = rate;
2467 *min_rate_index = j;
2468 }
2469 break;
2470 }
2471 }
2472 }
2473}
Jiri Bencf0706e82007-05-05 11:45:53 -07002474
Johannes Berg66e67e42012-01-20 13:55:27 +01002475static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2476 bool assoc)
2477{
2478 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2479
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002480 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002481
Johannes Berg66e67e42012-01-20 13:55:27 +01002482 if (!assoc) {
2483 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2484
2485 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2486 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002487 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002488 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002489 }
2490
2491 kfree(assoc_data);
2492 sdata->u.mgd.assoc_data = NULL;
2493}
2494
2495static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2496 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002497 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002498{
Johannes Berg46900292009-02-15 12:44:28 +01002499 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002500 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002501 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002502 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002503 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002504 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002505 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002506 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002507 const struct cfg80211_bss_ies *bss_ies = NULL;
2508 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002509 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002510 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002511 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002512
Johannes Bergaf6b6372009-12-23 13:15:35 +01002513 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002514
Jiri Bencf0706e82007-05-05 11:45:53 -07002515 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002516 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002517
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002518 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002519 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2520 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002521 aid &= ~(BIT(15) | BIT(14));
2522
Johannes Berg05cb9102011-10-28 11:59:47 +02002523 ifmgd->broken_ap = false;
2524
2525 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002526 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2527 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002528 aid = 0;
2529 ifmgd->broken_ap = true;
2530 }
2531
Johannes Bergaf6b6372009-12-23 13:15:35 +01002532 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002533 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002534
Jiri Bencf0706e82007-05-05 11:45:53 -07002535 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002536 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002537 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002538 }
2539
Johannes Berg46900292009-02-15 12:44:28 +01002540 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002541
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002542 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002543 * Some APs are erroneously not including some information in their
2544 * (re)association response frames. Try to recover by using the data
2545 * from the beacon or probe response. This seems to afflict mobile
2546 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2547 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2548 */
2549 if ((assoc_data->wmm && !elems.wmm_param) ||
2550 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2551 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2552 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2553 (!elems.vht_cap_elem || !elems.vht_operation))) {
2554 const struct cfg80211_bss_ies *ies;
2555 struct ieee802_11_elems bss_elems;
2556
2557 rcu_read_lock();
2558 ies = rcu_dereference(cbss->ies);
2559 if (ies)
2560 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2561 GFP_ATOMIC);
2562 rcu_read_unlock();
2563 if (!bss_ies)
2564 return false;
2565
2566 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2567 false, &bss_elems);
2568 if (assoc_data->wmm &&
2569 !elems.wmm_param && bss_elems.wmm_param) {
2570 elems.wmm_param = bss_elems.wmm_param;
2571 sdata_info(sdata,
2572 "AP bug: WMM param missing from AssocResp\n");
2573 }
2574
2575 /*
2576 * Also check if we requested HT/VHT, otherwise the AP doesn't
2577 * have to include the IEs in the (re)association response.
2578 */
2579 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2580 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2581 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2582 sdata_info(sdata,
2583 "AP bug: HT capability missing from AssocResp\n");
2584 }
2585 if (!elems.ht_operation && bss_elems.ht_operation &&
2586 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2587 elems.ht_operation = bss_elems.ht_operation;
2588 sdata_info(sdata,
2589 "AP bug: HT operation missing from AssocResp\n");
2590 }
2591 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2592 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2593 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2594 sdata_info(sdata,
2595 "AP bug: VHT capa missing from AssocResp\n");
2596 }
2597 if (!elems.vht_operation && bss_elems.vht_operation &&
2598 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2599 elems.vht_operation = bss_elems.vht_operation;
2600 sdata_info(sdata,
2601 "AP bug: VHT operation missing from AssocResp\n");
2602 }
2603 }
2604
2605 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002606 * We previously checked these in the beacon/probe response, so
2607 * they should be present here. This is just a safety net.
2608 */
2609 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2610 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2611 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002612 "HT AP is missing WMM params or HT capability/operation\n");
2613 ret = false;
2614 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002615 }
2616
2617 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2618 (!elems.vht_cap_elem || !elems.vht_operation)) {
2619 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002620 "VHT AP is missing VHT capability/operation\n");
2621 ret = false;
2622 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002623 }
2624
Guy Eilam2a33bee2011-08-17 15:18:15 +03002625 mutex_lock(&sdata->local->sta_mtx);
2626 /*
2627 * station info was already allocated and inserted before
2628 * the association and should be available to us
2629 */
Johannes Berg7852e362012-01-20 13:55:24 +01002630 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002631 if (WARN_ON(!sta)) {
2632 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002633 ret = false;
2634 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002635 }
2636
Johannes Berg55de9082012-07-26 17:24:39 +02002637 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002638
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002639 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002640 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002641 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002642 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002643
Mahesh Palivela818255e2012-10-10 11:33:04 +00002644 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2645 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002646 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002647
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002648 /*
2649 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2650 * in their association response, so ignore that data for our own
2651 * configuration. If it changed since the last beacon, we'll get the
2652 * next beacon and update then.
2653 */
Johannes Berg11289582013-02-07 17:36:12 +01002654
Johannes Bergbee7f582013-02-07 22:24:55 +01002655 /*
2656 * If an operating mode notification IE is present, override the
2657 * NSS calculation (that would be done in rate_control_rate_init())
2658 * and use the # of streams from that element.
2659 */
2660 if (elems.opmode_notif &&
2661 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2662 u8 nss;
2663
2664 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2665 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2666 nss += 1;
2667 sta->sta.rx_nss = nss;
2668 }
2669
Johannes Berg4b7679a2008-09-18 18:14:18 +02002670 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002671
Johannes Berg46900292009-02-15 12:44:28 +01002672 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002673 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002674
Johannes Bergddf4ac52008-10-22 11:41:38 +02002675 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002676 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002677
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002678 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002679 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2680 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2681 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002682 sdata_info(sdata,
2683 "failed to move station %pM to desired state\n",
2684 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002685 WARN_ON(__sta_info_destroy(sta));
2686 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002687 ret = false;
2688 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002689 }
2690
Johannes Berg7852e362012-01-20 13:55:24 +01002691 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002692
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002693 /*
2694 * Always handle WMM once after association regardless
2695 * of the first value the AP uses. Setting -1 here has
2696 * that effect because the AP values is an unsigned
2697 * 4-bit value.
2698 */
2699 ifmgd->wmm_last_param_set = -1;
2700
Johannes Bergddf4ac52008-10-22 11:41:38 +02002701 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002702 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002703 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002704 else
Johannes Berg3abead52012-03-02 15:56:59 +01002705 ieee80211_set_wmm_default(sdata, false);
2706 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002707
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002708 /* set AID and assoc capability,
2709 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002710 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002711 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002712 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002713
Kalle Valo15b7b062009-03-22 21:57:14 +02002714 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002715 * If we're using 4-addr mode, let the AP know that we're
2716 * doing so, so that it can create the STA VLAN on its side
2717 */
2718 if (ifmgd->use_4addr)
2719 ieee80211_send_4addr_nullfunc(local, sdata);
2720
2721 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002722 * Start timer to probe the connection to the AP now.
2723 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002724 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002725 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002726 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002727
Johannes Berg35d865a2013-05-28 10:54:03 +02002728 ret = true;
2729 out:
2730 kfree(bss_ies);
2731 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002732}
2733
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002734static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2735 struct ieee80211_mgmt *mgmt,
2736 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002737{
2738 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2739 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2740 u16 capab_info, status_code, aid;
2741 struct ieee802_11_elems elems;
2742 u8 *pos;
2743 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002744 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002745
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002746 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002747
2748 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002749 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002750 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002751 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002752
2753 /*
2754 * AssocResp and ReassocResp have identical structure, so process both
2755 * of them in this function.
2756 */
2757
2758 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002759 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002760
2761 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2762 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2763 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2764 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2765
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002766 sdata_info(sdata,
2767 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2768 reassoc ? "Rea" : "A", mgmt->sa,
2769 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002770
2771 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002772 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002773
2774 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002775 elems.timeout_int &&
2776 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002777 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002778 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002779 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002780 sdata_info(sdata,
2781 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2782 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002783 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002784 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002785 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002786 run_again(sdata, assoc_data->timeout);
2787 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002788 }
2789
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002790 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002791
2792 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002793 sdata_info(sdata, "%pM denied association (code=%d)\n",
2794 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002795 ieee80211_destroy_assoc_data(sdata, false);
2796 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002797 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002798 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002799 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002800 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002801 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002802 }
John W. Linville635d9992012-07-09 16:34:34 -04002803 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002804
2805 /*
2806 * destroy assoc_data afterwards, as otherwise an idle
2807 * recalc after assoc_data is NULL but before associated
2808 * is set can cause the interface to go idle
2809 */
2810 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002811 }
2812
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002813 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002814}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002815
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002816static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002817 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002818 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002819 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002820{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002821 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002822 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002823 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002824 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002825
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002826 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002827
Johannes Berg1cd8e882013-03-27 14:30:12 +01002828 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002829 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2830 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002831 else
2832 freq = rx_status->freq;
2833
2834 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2835
2836 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2837 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002838
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002839 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002840 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002841 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002842 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002843 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2844 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002845
Johannes Berg37799e52013-03-26 14:02:26 +01002846 if (!sdata->u.mgd.associated ||
2847 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.associated->bssid))
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002848 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002849
Johannes Berg04a161f2013-05-03 09:35:35 +02002850 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2851 elems, true);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002852
Jiri Bencf0706e82007-05-05 11:45:53 -07002853}
2854
2855
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002856static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002857 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002858{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002859 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002860 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002861 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2862 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002863 struct ieee802_11_elems elems;
2864
Kalle Valo15b7b062009-03-22 21:57:14 +02002865 ifmgd = &sdata->u.mgd;
2866
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002867 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002868
Joe Perchesb203ca32012-05-08 18:56:52 +00002869 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002870 return; /* ignore ProbeResp to foreign address */
2871
Ester Kummerae6a44e2008-06-27 18:54:48 +03002872 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2873 if (baselen > len)
2874 return;
2875
2876 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002877 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002878
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002879 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002880
Johannes Berg77fdaa12009-07-07 03:45:17 +02002881 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002882 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002883 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002884
2885 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002886 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002887 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002888 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002889 ifmgd->auth_data->tries = 0;
2890 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002891 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002892 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002893 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002894}
2895
Johannes Bergd91f36d2009-04-16 13:17:26 +02002896/*
2897 * This is the canonical list of information elements we care about,
2898 * the filter code also gives us all changes to the Microsoft OUI
2899 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2900 *
2901 * We implement beacon filtering in software since that means we can
2902 * avoid processing the frame here and in cfg80211, and userspace
2903 * will not be able to tell whether the hardware supports it or not.
2904 *
2905 * XXX: This list needs to be dynamic -- userspace needs to be able to
2906 * add items it requires. It also needs to be able to tell us to
2907 * look out for other vendor IEs.
2908 */
2909static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002910 (1ULL << WLAN_EID_COUNTRY) |
2911 (1ULL << WLAN_EID_ERP_INFO) |
2912 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2913 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2914 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002915 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002916
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002917static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2918 struct ieee80211_mgmt *mgmt, size_t len,
2919 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002920{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002921 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002922 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002923 size_t baselen;
2924 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002925 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002926 struct ieee80211_chanctx_conf *chanctx_conf;
2927 struct ieee80211_channel *chan;
Johannes Bergbee7f582013-02-07 22:24:55 +01002928 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002929 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002930 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002931 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002932 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002933 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002934 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002935
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002936 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002937
Ester Kummerae6a44e2008-06-27 18:54:48 +03002938 /* Process beacon from the current BSS */
2939 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2940 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002941 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002942
Johannes Berg55de9082012-07-26 17:24:39 +02002943 rcu_read_lock();
2944 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2945 if (!chanctx_conf) {
2946 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002947 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002948 }
2949
Johannes Berg4bf88532012-11-09 11:39:59 +01002950 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002951 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002952 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002953 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002954 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002955 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002956
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002957 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002958 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002959 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002960 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002961
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002962 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002963 if (elems.tim && !elems.parse_error) {
2964 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2965 ifmgd->dtim_period = tim_ie->dtim_period;
2966 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002967 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002968 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002969 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2970 sdata->vif.bss_conf.sync_tsf =
2971 le64_to_cpu(mgmt->u.beacon.timestamp);
2972 sdata->vif.bss_conf.sync_device_ts =
2973 rx_status->device_timestamp;
2974 if (elems.tim)
2975 sdata->vif.bss_conf.sync_dtim_count =
2976 elems.tim->dtim_count;
2977 else
2978 sdata->vif.bss_conf.sync_dtim_count = 0;
2979 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002980 /* continue assoc process */
2981 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002982 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002983 run_again(sdata, ifmgd->assoc_data->timeout);
2984 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002985 }
2986
2987 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002988 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002989 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002990 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002991
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002992 /* Track average RSSI from the Beacon frames of the current AP */
2993 ifmgd->last_beacon_signal = rx_status->signal;
2994 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2995 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002996 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002997 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002998 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002999 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003000 } else {
3001 ifmgd->ave_beacon_signal =
3002 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
3003 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
3004 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03003005 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003006 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003007
3008 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
3009 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
3010 int sig = ifmgd->ave_beacon_signal;
3011 int last_sig = ifmgd->last_ave_beacon_signal;
3012
3013 /*
3014 * if signal crosses either of the boundaries, invoke callback
3015 * with appropriate parameters
3016 */
3017 if (sig > ifmgd->rssi_max_thold &&
3018 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
3019 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02003020 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003021 } else if (sig < ifmgd->rssi_min_thold &&
3022 (last_sig >= ifmgd->rssi_max_thold ||
3023 last_sig == 0)) {
3024 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02003025 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003026 }
3027 }
3028
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003029 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03003030 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01003031 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003032 int sig = ifmgd->ave_beacon_signal / 16;
3033 int last_event = ifmgd->last_cqm_event_signal;
3034 int thold = bss_conf->cqm_rssi_thold;
3035 int hyst = bss_conf->cqm_rssi_hyst;
3036 if (sig < thold &&
3037 (last_event == 0 || sig < last_event - hyst)) {
3038 ifmgd->last_cqm_event_signal = sig;
3039 ieee80211_cqm_rssi_notify(
3040 &sdata->vif,
3041 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
3042 GFP_KERNEL);
3043 } else if (sig > thold &&
3044 (last_event == 0 || sig > last_event + hyst)) {
3045 ifmgd->last_cqm_event_signal = sig;
3046 ieee80211_cqm_rssi_notify(
3047 &sdata->vif,
3048 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
3049 GFP_KERNEL);
3050 }
3051 }
3052
Johannes Bergb291ba12009-07-10 15:29:03 +02003053 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003054 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01003055 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003056 mutex_lock(&local->mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02003057 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003058 ieee80211_run_deferred_scan(local);
3059 mutex_unlock(&local->mtx);
3060
Johannes Berg4e751842009-06-10 15:16:52 +02003061 mutex_lock(&local->iflist_mtx);
3062 ieee80211_recalc_ps(local, -1);
3063 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03003064 }
3065
Johannes Bergb291ba12009-07-10 15:29:03 +02003066 /*
3067 * Push the beacon loss detection into the future since
3068 * we are processing a beacon from the AP just now.
3069 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04003070 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003071
Johannes Bergd91f36d2009-04-16 13:17:26 +02003072 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
3073 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003074 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02003075 care_about_ies, ncrc);
3076
Vivek Natarajan25c9c872009-03-02 20:20:30 +05303077 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02003078 bool directed_tim = ieee80211_check_tim(elems.tim,
3079 elems.tim_len,
3080 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02003081 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02003082 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01003083 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
3084 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
3085 ieee80211_hw_config(local,
3086 IEEE80211_CONF_CHANGE_PS);
3087 }
Kalle Valo572e0012009-02-10 17:09:31 +02003088 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05303089 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02003090 local->pspolling = true;
3091
3092 /*
3093 * Here is assumed that the driver will be
3094 * able to send ps-poll frame and receive a
3095 * response even though power save mode is
3096 * enabled, but some drivers might require
3097 * to disable power save here. This needs
3098 * to be investigated.
3099 */
3100 ieee80211_send_pspoll(local, sdata);
3101 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08003102 }
3103 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003104
Johannes Berg488dd7b2012-10-29 20:08:01 +01003105 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003106 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01003107 int ret;
3108
3109 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
3110 len - baselen,
3111 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01003112 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003113 if (ret >= 2) {
3114 if (sdata->u.mgd.p2p_noa_index != noa.index) {
3115 /* valid noa_attr and index changed */
3116 sdata->u.mgd.p2p_noa_index = noa.index;
3117 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
3118 changed |= BSS_CHANGED_P2P_PS;
3119 /*
3120 * make sure we update all information, the CRC
3121 * mechanism doesn't look at P2P attributes.
3122 */
3123 ifmgd->beacon_crc_valid = false;
3124 }
3125 } else if (sdata->u.mgd.p2p_noa_index != -1) {
3126 /* noa_attr not found and we had valid noa_attr before */
3127 sdata->u.mgd.p2p_noa_index = -1;
3128 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01003129 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01003130 ifmgd->beacon_crc_valid = false;
3131 }
3132 }
3133
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003134 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003135 return;
Jouni Malinen30196672009-05-19 17:01:43 +03003136 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003137 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03003138
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02003139 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02003140
3141 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
3142 elems.wmm_param_len))
3143 changed |= BSS_CHANGED_QOS;
3144
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003145 /*
3146 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01003147 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003148 */
Alexander Bondar989c6502013-05-16 17:34:17 +03003149 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003150 /* a few bogus AP send dtim_period = 0 or no TIM IE */
3151 if (elems.tim)
3152 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
3153 else
3154 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01003155
3156 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
3157 sdata->vif.bss_conf.sync_tsf =
3158 le64_to_cpu(mgmt->u.beacon.timestamp);
3159 sdata->vif.bss_conf.sync_device_ts =
3160 rx_status->device_timestamp;
3161 if (elems.tim)
3162 sdata->vif.bss_conf.sync_dtim_count =
3163 elems.tim->dtim_count;
3164 else
3165 sdata->vif.bss_conf.sync_dtim_count = 0;
3166 }
3167
Alexander Bondar989c6502013-05-16 17:34:17 +03003168 changed |= BSS_CHANGED_BEACON_INFO;
3169 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03003170
3171 mutex_lock(&local->iflist_mtx);
3172 ieee80211_recalc_ps(local, -1);
3173 mutex_unlock(&local->iflist_mtx);
3174
Alexander Bondarce857882013-05-06 17:17:04 +03003175 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003176 }
3177
Johannes Berg1946bed2013-03-27 14:31:53 +01003178 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02003179 erp_valid = true;
3180 erp_value = elems.erp_info[0];
3181 } else {
3182 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003183 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003184 changed |= ieee80211_handle_bss_capability(sdata,
3185 le16_to_cpu(mgmt->u.beacon.capab_info),
3186 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003187
Johannes Berg11289582013-02-07 17:36:12 +01003188 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f582013-02-07 22:24:55 +01003189 sta = sta_info_get(sdata, bssid);
3190
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003191 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3192 elems.vht_operation, bssid, &changed)) {
3193 mutex_unlock(&local->sta_mtx);
3194 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3195 WLAN_REASON_DEAUTH_LEAVING,
3196 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003197 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3198 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003199 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003200 }
Johannes Bergbee7f582013-02-07 22:24:55 +01003201
3202 if (sta && elems.opmode_notif)
3203 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3204 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003205 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003206
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003207 if (elems.country_elem && elems.pwr_constr_elem &&
3208 mgmt->u.probe_resp.capab_info &
3209 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003210 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3211 elems.country_elem,
3212 elems.country_elem_len,
3213 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003214
Johannes Berg471b3ef2007-12-28 14:32:58 +01003215 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003216}
3217
Johannes Berg1fa57d02010-06-10 10:21:32 +02003218void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3219 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003220{
3221 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003222 struct ieee80211_mgmt *mgmt;
3223 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003224 struct ieee802_11_elems elems;
3225 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003226
Jiri Bencf0706e82007-05-05 11:45:53 -07003227 rx_status = (struct ieee80211_rx_status *) skb->cb;
3228 mgmt = (struct ieee80211_mgmt *) skb->data;
3229 fc = le16_to_cpu(mgmt->frame_control);
3230
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003231 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003232
Johannes Berg66e67e42012-01-20 13:55:27 +01003233 switch (fc & IEEE80211_FCTL_STYPE) {
3234 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003235 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003236 break;
3237 case IEEE80211_STYPE_PROBE_RESP:
3238 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3239 break;
3240 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003241 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003242 break;
3243 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003244 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003245 break;
3246 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003247 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003248 break;
3249 case IEEE80211_STYPE_ASSOC_RESP:
3250 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003251 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003252 break;
3253 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003254 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003255 ies_len = skb->len -
3256 offsetof(struct ieee80211_mgmt,
3257 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003258
3259 if (ies_len < 0)
3260 break;
3261
3262 ieee802_11_parse_elems(
3263 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003264 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003265
3266 if (elems.parse_error)
3267 break;
3268
Johannes Berg66e67e42012-01-20 13:55:27 +01003269 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003270 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003271 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003272 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3273 ies_len = skb->len -
3274 offsetof(struct ieee80211_mgmt,
3275 u.action.u.ext_chan_switch.variable);
3276
3277 if (ies_len < 0)
3278 break;
3279
3280 ieee802_11_parse_elems(
3281 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003282 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003283
3284 if (elems.parse_error)
3285 break;
3286
3287 /* for the handling code pretend this was also an IE */
3288 elems.ext_chansw_ie =
3289 &mgmt->u.action.u.ext_chan_switch.data;
3290
3291 ieee80211_sta_process_chanswitch(sdata,
3292 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003293 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003294 }
Johannes Berg37799e52013-03-26 14:02:26 +01003295 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003296 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003297 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003298}
3299
Johannes Berg9c6bd792008-09-11 00:01:52 +02003300static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003301{
3302 struct ieee80211_sub_if_data *sdata =
3303 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003304
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003305 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003306}
3307
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003308static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003309 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003310{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003311 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003312
Johannes Berg37ad3882012-02-24 13:50:54 +01003313 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003314 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003315
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003316 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3317 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003318}
3319
Johannes Berg66e67e42012-01-20 13:55:27 +01003320static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3321{
3322 struct ieee80211_local *local = sdata->local;
3323 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3324 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003325 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003326
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003327 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003328
3329 if (WARN_ON_ONCE(!auth_data))
3330 return -EINVAL;
3331
Johannes Berg66e67e42012-01-20 13:55:27 +01003332 auth_data->tries++;
3333
3334 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003335 sdata_info(sdata, "authentication with %pM timed out\n",
3336 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003337
3338 /*
3339 * Most likely AP is not in the range so remove the
3340 * bss struct for that AP.
3341 */
3342 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3343
3344 return -ETIMEDOUT;
3345 }
3346
Johannes Berga1845fc2012-06-27 13:18:36 +02003347 drv_mgd_prepare_tx(local, sdata);
3348
Johannes Berg66e67e42012-01-20 13:55:27 +01003349 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003350 u16 trans = 1;
3351 u16 status = 0;
3352
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003353 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3354 auth_data->bss->bssid, auth_data->tries,
3355 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003356
3357 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003358
3359 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3360 trans = auth_data->sae_trans;
3361 status = auth_data->sae_status;
3362 auth_data->expected_transaction = trans;
3363 }
3364
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003365 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3366 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3367 IEEE80211_TX_INTFL_MLME_CONN_TX;
3368
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003369 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3370 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003371 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003372 auth_data->bss->bssid, NULL, 0, 0,
3373 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003374 } else {
3375 const u8 *ssidie;
3376
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003377 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3378 auth_data->bss->bssid, auth_data->tries,
3379 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003380
Johannes Berg9caf0362012-11-29 01:25:20 +01003381 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003382 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003383 if (!ssidie) {
3384 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003385 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003386 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003387 /*
3388 * Direct probe is sent to broadcast address as some APs
3389 * will not answer to direct packet in unassociated state.
3390 */
3391 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003392 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003393 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003394 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003395 }
3396
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003397 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003398 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003399 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003400 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003401 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003402 auth_data->timeout =
3403 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3404 auth_data->timeout_started = true;
3405 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003406 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003407
3408 return 0;
3409}
3410
3411static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3412{
3413 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3414 struct ieee80211_local *local = sdata->local;
3415
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003416 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003417
Johannes Berg66e67e42012-01-20 13:55:27 +01003418 assoc_data->tries++;
3419 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003420 sdata_info(sdata, "association with %pM timed out\n",
3421 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003422
3423 /*
3424 * Most likely AP is not in the range so remove the
3425 * bss struct for that AP.
3426 */
3427 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3428
3429 return -ETIMEDOUT;
3430 }
3431
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003432 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3433 assoc_data->bss->bssid, assoc_data->tries,
3434 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003435 ieee80211_send_assoc(sdata);
3436
Johannes Berg1672c0e32013-01-29 15:02:27 +01003437 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3438 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003439 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003440 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003441 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003442 assoc_data->timeout =
3443 round_jiffies_up(jiffies +
3444 IEEE80211_ASSOC_TIMEOUT_LONG);
3445 assoc_data->timeout_started = true;
3446 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003447 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003448
3449 return 0;
3450}
3451
Johannes Berg1672c0e32013-01-29 15:02:27 +01003452void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3453 __le16 fc, bool acked)
3454{
3455 struct ieee80211_local *local = sdata->local;
3456
3457 sdata->u.mgd.status_fc = fc;
3458 sdata->u.mgd.status_acked = acked;
3459 sdata->u.mgd.status_received = true;
3460
3461 ieee80211_queue_work(&local->hw, &sdata->work);
3462}
3463
Johannes Berg1fa57d02010-06-10 10:21:32 +02003464void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02003465{
Johannes Berg60f8b392008-09-08 17:44:22 +02003466 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003467 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003468
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003469 sdata_lock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003470
Johannes Berg1672c0e32013-01-29 15:02:27 +01003471 if (ifmgd->status_received) {
3472 __le16 fc = ifmgd->status_fc;
3473 bool status_acked = ifmgd->status_acked;
3474
3475 ifmgd->status_received = false;
3476 if (ifmgd->auth_data &&
3477 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3478 if (status_acked) {
3479 ifmgd->auth_data->timeout =
3480 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003481 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003482 } else {
3483 ifmgd->auth_data->timeout = jiffies - 1;
3484 }
Johannes Berg89afe612013-02-13 15:39:57 +01003485 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003486 } else if (ifmgd->assoc_data &&
3487 (ieee80211_is_assoc_req(fc) ||
3488 ieee80211_is_reassoc_req(fc))) {
3489 if (status_acked) {
3490 ifmgd->assoc_data->timeout =
3491 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003492 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003493 } else {
3494 ifmgd->assoc_data->timeout = jiffies - 1;
3495 }
Johannes Berg89afe612013-02-13 15:39:57 +01003496 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003497 }
3498 }
3499
Johannes Berg89afe612013-02-13 15:39:57 +01003500 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003501 time_after(jiffies, ifmgd->auth_data->timeout)) {
3502 if (ifmgd->auth_data->done) {
3503 /*
3504 * ok ... we waited for assoc but userspace didn't,
3505 * so let's just kill the auth data
3506 */
3507 ieee80211_destroy_auth_data(sdata, false);
3508 } else if (ieee80211_probe_auth(sdata)) {
3509 u8 bssid[ETH_ALEN];
3510
3511 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3512
3513 ieee80211_destroy_auth_data(sdata, false);
3514
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003515 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003516 }
Johannes Berg89afe612013-02-13 15:39:57 +01003517 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003518 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003519
Johannes Berg89afe612013-02-13 15:39:57 +01003520 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003521 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003522 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003523 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003524 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003525
3526 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003527 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003528 }
Johannes Berg89afe612013-02-13 15:39:57 +01003529 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003530 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003531
Johannes Bergb291ba12009-07-10 15:29:03 +02003532 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
3533 IEEE80211_STA_CONNECTION_POLL) &&
3534 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003535 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003536 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003537
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003538 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003539
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003540 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003541 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003542 else
Ben Greear180205b2011-02-04 15:30:24 -08003543 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003544
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003545 /* ACK received for nullfunc probing frame */
3546 if (!ifmgd->probe_send_count)
3547 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003548 else if (ifmgd->nullfunc_failed) {
3549 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003550 mlme_dbg(sdata,
3551 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3552 bssid, ifmgd->probe_send_count,
3553 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003554 ieee80211_mgd_probe_ap_send(sdata);
3555 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003556 mlme_dbg(sdata,
3557 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3558 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003559 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003560 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3561 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003562 }
3563 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003564 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003565 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003566 mlme_dbg(sdata,
3567 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3568 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003569 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003570 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003571 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003572 mlme_dbg(sdata,
3573 "No probe response from AP %pM after %dms, try %d/%i\n",
3574 bssid, probe_wait_ms,
3575 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003576 ieee80211_mgd_probe_ap_send(sdata);
3577 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003578 /*
3579 * We actually lost the connection ... or did we?
3580 * Let's make sure!
3581 */
Ben Greearb38afa82010-10-07 16:12:06 -07003582 wiphy_debug(local->hw.wiphy,
3583 "%s: No probe response from AP %pM"
3584 " after %dms, disconnecting.\n",
3585 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003586 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003587
Johannes Berg95acac62011-07-12 12:30:59 +02003588 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003589 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003590 }
3591 }
3592
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003593 sdata_unlock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003594}
Johannes Berg0a51b272008-09-08 17:44:25 +02003595
Johannes Bergb291ba12009-07-10 15:29:03 +02003596static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3597{
3598 struct ieee80211_sub_if_data *sdata =
3599 (struct ieee80211_sub_if_data *) data;
3600 struct ieee80211_local *local = sdata->local;
3601
3602 if (local->quiescing)
3603 return;
3604
Johannes Berg682bd382013-01-29 13:13:50 +01003605 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003606 ieee80211_queue_work(&sdata->local->hw,
3607 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003608}
3609
3610static void ieee80211_sta_conn_mon_timer(unsigned long data)
3611{
3612 struct ieee80211_sub_if_data *sdata =
3613 (struct ieee80211_sub_if_data *) data;
3614 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3615 struct ieee80211_local *local = sdata->local;
3616
3617 if (local->quiescing)
3618 return;
3619
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003620 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003621}
3622
3623static void ieee80211_sta_monitor_work(struct work_struct *work)
3624{
3625 struct ieee80211_sub_if_data *sdata =
3626 container_of(work, struct ieee80211_sub_if_data,
3627 u.mgd.monitor_work);
3628
3629 ieee80211_mgd_probe_ap(sdata, false);
3630}
3631
Johannes Berga1678f82008-09-11 00:01:47 +02003632static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3633{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003634 u32 flags;
3635
Kalle Vaload935682009-04-19 08:47:19 +03003636 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003637 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003638
Johannes Bergb291ba12009-07-10 15:29:03 +02003639 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003640 flags = sdata->local->hw.flags;
3641 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3642 ieee80211_queue_work(&sdata->local->hw,
3643 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003644 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003645 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003646 }
Johannes Berga1678f82008-09-11 00:01:47 +02003647}
3648
Johannes Bergb8360ab2013-04-29 14:57:44 +02003649#ifdef CONFIG_PM
3650void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3651{
3652 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3653
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003654 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003655 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003656 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003657 return;
3658 }
3659
3660 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3661 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3662 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3663 ieee80211_sta_connection_lost(sdata,
3664 ifmgd->associated->bssid,
3665 WLAN_REASON_UNSPECIFIED,
3666 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003667 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003668 return;
3669 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003670 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003671}
3672#endif
3673
Johannes Berg9c6bd792008-09-11 00:01:52 +02003674/* interface setup */
3675void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3676{
Johannes Berg46900292009-02-15 12:44:28 +01003677 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003678
Johannes Berg46900292009-02-15 12:44:28 +01003679 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003680 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003681 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003682 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3683 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003684 INIT_WORK(&ifmgd->csa_connection_drop_work,
3685 ieee80211_csa_connection_drop_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003686 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01003687 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003688 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003689 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3690 (unsigned long) sdata);
3691 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3692 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003693 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303694 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003695
Johannes Bergab1faea2009-07-01 21:41:17 +02003696 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303697 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003698 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3699 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003700 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003701
Johannes Berg0f782312009-12-01 13:37:02 +01003702 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3703 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3704 else
3705 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003706}
3707
3708/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003709void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3710{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003711 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003712
3713 /* Restart STA timers */
3714 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003715 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3716 if (ieee80211_sdata_running(sdata))
3717 ieee80211_restart_sta_timer(sdata);
3718 }
Johannes Berga1678f82008-09-11 00:01:47 +02003719 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003720}
Johannes Berg10f644a2009-04-16 13:17:25 +02003721
3722int ieee80211_max_network_latency(struct notifier_block *nb,
3723 unsigned long data, void *dummy)
3724{
3725 s32 latency_usec = (s32) data;
3726 struct ieee80211_local *local =
3727 container_of(nb, struct ieee80211_local,
3728 network_latency_notifier);
3729
3730 mutex_lock(&local->iflist_mtx);
3731 ieee80211_recalc_ps(local, latency_usec);
3732 mutex_unlock(&local->iflist_mtx);
3733
3734 return 0;
3735}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003736
Johannes Bergf2d9d272012-11-22 14:11:39 +01003737static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3738 struct cfg80211_bss *cbss)
3739{
3740 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3741 const u8 *ht_cap_ie, *vht_cap_ie;
3742 const struct ieee80211_ht_cap *ht_cap;
3743 const struct ieee80211_vht_cap *vht_cap;
3744 u8 chains = 1;
3745
3746 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3747 return chains;
3748
Johannes Berg9caf0362012-11-29 01:25:20 +01003749 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003750 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3751 ht_cap = (void *)(ht_cap_ie + 2);
3752 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3753 /*
3754 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3755 * "Tx Unequal Modulation Supported" fields.
3756 */
3757 }
3758
3759 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3760 return chains;
3761
Johannes Berg9caf0362012-11-29 01:25:20 +01003762 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003763 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3764 u8 nss;
3765 u16 tx_mcs_map;
3766
3767 vht_cap = (void *)(vht_cap_ie + 2);
3768 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3769 for (nss = 8; nss > 0; nss--) {
3770 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3771 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3772 break;
3773 }
3774 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3775 chains = max(chains, nss);
3776 }
3777
3778 return chains;
3779}
3780
Johannes Bergb17166a2012-07-27 11:41:27 +02003781static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3782 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003783{
3784 struct ieee80211_local *local = sdata->local;
3785 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003786 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003787 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003788 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003789 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003790 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003791
Johannes Berg24398e32012-03-28 10:58:36 +02003792 sband = local->hw.wiphy->bands[cbss->channel->band];
3793
Johannes Bergf2d9d272012-11-22 14:11:39 +01003794 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3795 IEEE80211_STA_DISABLE_80P80MHZ |
3796 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003797
Johannes Berg9caf0362012-11-29 01:25:20 +01003798 rcu_read_lock();
3799
Johannes Bergf2d9d272012-11-22 14:11:39 +01003800 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3801 sband->ht_cap.ht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003802 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003803
Johannes Berg9caf0362012-11-29 01:25:20 +01003804 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003805 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3806 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6eff2013-02-07 23:33:32 +01003807
3808 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3809 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3810 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3811 ht_oper = NULL;
3812 }
Johannes Berg24398e32012-03-28 10:58:36 +02003813 }
3814
Johannes Bergf2d9d272012-11-22 14:11:39 +01003815 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3816 sband->vht_cap.vht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003817 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003818
Johannes Berg9caf0362012-11-29 01:25:20 +01003819 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3820 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003821 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3822 vht_oper = (void *)(vht_oper_ie + 2);
3823 if (vht_oper && !ht_oper) {
3824 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003825 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003826 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003827 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3828 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003829 }
Johannes Berg08e6eff2013-02-07 23:33:32 +01003830
3831 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3832 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3833 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3834 vht_oper = NULL;
3835 }
Johannes Berg24398e32012-03-28 10:58:36 +02003836 }
3837
Johannes Bergf2d9d272012-11-22 14:11:39 +01003838 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3839 cbss->channel,
3840 ht_oper, vht_oper,
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003841 &chandef, true);
Johannes Berg04ecd252012-09-11 14:34:12 +02003842
Johannes Bergf2d9d272012-11-22 14:11:39 +01003843 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3844 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003845
Johannes Berg9caf0362012-11-29 01:25:20 +01003846 rcu_read_unlock();
3847
Johannes Berg04ecd252012-09-11 14:34:12 +02003848 /* will change later if needed */
3849 sdata->smps_mode = IEEE80211_SMPS_OFF;
3850
Johannes Bergf2d9d272012-11-22 14:11:39 +01003851 /*
3852 * If this fails (possibly due to channel context sharing
3853 * on incompatible channels, e.g. 80+80 and 160 sharing the
3854 * same control channel) try to use a smaller bandwidth.
3855 */
3856 ret = ieee80211_vif_use_channel(sdata, &chandef,
3857 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003858
3859 /* don't downgrade for 5 and 10 MHz channels, though. */
3860 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3861 chandef.width == NL80211_CHAN_WIDTH_10)
3862 return ret;
3863
Johannes Bergd601cd82013-02-07 20:54:51 +01003864 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Johannes Bergf2d9d272012-11-22 14:11:39 +01003865 ifmgd->flags |= chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003866 ret = ieee80211_vif_use_channel(sdata, &chandef,
3867 IEEE80211_CHANCTX_SHARED);
3868 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003869 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003870}
3871
3872static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3873 struct cfg80211_bss *cbss, bool assoc)
3874{
3875 struct ieee80211_local *local = sdata->local;
3876 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3877 struct ieee80211_bss *bss = (void *)cbss->priv;
3878 struct sta_info *new_sta = NULL;
3879 bool have_sta = false;
3880 int err;
3881
3882 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3883 return -EINVAL;
3884
3885 if (assoc) {
3886 rcu_read_lock();
3887 have_sta = sta_info_get(sdata, cbss->bssid);
3888 rcu_read_unlock();
3889 }
3890
3891 if (!have_sta) {
3892 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3893 if (!new_sta)
3894 return -ENOMEM;
3895 }
3896
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003897 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003898 u32 rates = 0, basic_rates = 0;
3899 bool have_higher_than_11mbit;
3900 int min_rate = INT_MAX, min_rate_index = -1;
Johannes Bergb17166a2012-07-27 11:41:27 +02003901 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003902 const struct cfg80211_bss_ies *ies;
Johannes Bergb17166a2012-07-27 11:41:27 +02003903
3904 sband = local->hw.wiphy->bands[cbss->channel->band];
3905
3906 err = ieee80211_prep_channel(sdata, cbss);
3907 if (err) {
3908 sta_info_free(local, new_sta);
3909 return err;
3910 }
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003911
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003912 ieee80211_get_rates(sband, bss->supp_rates,
3913 bss->supp_rates_len,
3914 &rates, &basic_rates,
3915 &have_higher_than_11mbit,
3916 &min_rate, &min_rate_index);
3917
3918 /*
3919 * This used to be a workaround for basic rates missing
3920 * in the association response frame. Now that we no
3921 * longer use the basic rates from there, it probably
3922 * doesn't happen any more, but keep the workaround so
3923 * in case some *other* APs are buggy in different ways
3924 * we can connect -- with a warning.
3925 */
3926 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003927 sdata_info(sdata,
3928 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003929 basic_rates = BIT(min_rate_index);
3930 }
3931
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003932 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003933 sdata->vif.bss_conf.basic_rates = basic_rates;
3934
3935 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003936 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003937 have_higher_than_11mbit)
3938 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3939 else
3940 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3941
3942 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3943
Johannes Berg8c358bc2012-05-22 22:13:05 +02003944 /* set timing information */
3945 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003946 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003947 ies = rcu_dereference(cbss->beacon_ies);
3948 if (ies) {
3949 const u8 *tim_ie;
3950
3951 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3952 sdata->vif.bss_conf.sync_device_ts =
3953 bss->device_ts_beacon;
3954 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3955 ies->data, ies->len);
3956 if (tim_ie && tim_ie[1] >= 2)
3957 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3958 else
3959 sdata->vif.bss_conf.sync_dtim_count = 0;
3960 } else if (!(local->hw.flags &
3961 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3962 ies = rcu_dereference(cbss->proberesp_ies);
3963 /* must be non-NULL since beacon IEs were NULL */
3964 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3965 sdata->vif.bss_conf.sync_device_ts =
3966 bss->device_ts_presp;
3967 sdata->vif.bss_conf.sync_dtim_count = 0;
3968 } else {
3969 sdata->vif.bss_conf.sync_tsf = 0;
3970 sdata->vif.bss_conf.sync_device_ts = 0;
3971 sdata->vif.bss_conf.sync_dtim_count = 0;
3972 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003973 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003974
3975 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003976 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003977 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3978 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003979
3980 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003981 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003982
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003983 err = sta_info_insert(new_sta);
3984 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003985 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003986 sdata_info(sdata,
3987 "failed to insert STA entry for the AP (error %d)\n",
3988 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003989 return err;
3990 }
3991 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003992 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003993
3994 return 0;
3995}
3996
Johannes Berg77fdaa12009-07-07 03:45:17 +02003997/* config hooks */
3998int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3999 struct cfg80211_auth_request *req)
4000{
Johannes Berg66e67e42012-01-20 13:55:27 +01004001 struct ieee80211_local *local = sdata->local;
4002 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4003 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004004 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01004005 int err;
4006
4007 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02004008
4009 switch (req->auth_type) {
4010 case NL80211_AUTHTYPE_OPEN_SYSTEM:
4011 auth_alg = WLAN_AUTH_OPEN;
4012 break;
4013 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01004014 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02004015 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004016 auth_alg = WLAN_AUTH_SHARED_KEY;
4017 break;
4018 case NL80211_AUTHTYPE_FT:
4019 auth_alg = WLAN_AUTH_FT;
4020 break;
4021 case NL80211_AUTHTYPE_NETWORK_EAP:
4022 auth_alg = WLAN_AUTH_LEAP;
4023 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004024 case NL80211_AUTHTYPE_SAE:
4025 auth_alg = WLAN_AUTH_SAE;
4026 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004027 default:
4028 return -EOPNOTSUPP;
4029 }
4030
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004031 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
4032 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01004033 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004034 return -ENOMEM;
4035
Johannes Berg66e67e42012-01-20 13:55:27 +01004036 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004037
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004038 if (req->sae_data_len >= 4) {
4039 __le16 *pos = (__le16 *) req->sae_data;
4040 auth_data->sae_trans = le16_to_cpu(pos[0]);
4041 auth_data->sae_status = le16_to_cpu(pos[1]);
4042 memcpy(auth_data->data, req->sae_data + 4,
4043 req->sae_data_len - 4);
4044 auth_data->data_len += req->sae_data_len - 4;
4045 }
4046
Johannes Berg77fdaa12009-07-07 03:45:17 +02004047 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004048 memcpy(&auth_data->data[auth_data->data_len],
4049 req->ie, req->ie_len);
4050 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004051 }
4052
Johannes Bergfffd0932009-07-08 14:22:54 +02004053 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004054 auth_data->key_len = req->key_len;
4055 auth_data->key_idx = req->key_idx;
4056 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02004057 }
4058
Johannes Berg66e67e42012-01-20 13:55:27 +01004059 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004060
Johannes Berg66e67e42012-01-20 13:55:27 +01004061 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01004062
Johannes Berg66e67e42012-01-20 13:55:27 +01004063 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
4064 ifmgd->assoc_data) {
4065 err = -EBUSY;
4066 goto err_free;
4067 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004068
Johannes Berg66e67e42012-01-20 13:55:27 +01004069 if (ifmgd->auth_data)
4070 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03004071
Johannes Berg66e67e42012-01-20 13:55:27 +01004072 /* prep auth_data so we don't go into idle on disassoc */
4073 ifmgd->auth_data = auth_data;
4074
Johannes Berg7b119dc2013-04-10 21:38:36 +02004075 if (ifmgd->associated) {
4076 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4077
4078 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4079 WLAN_REASON_UNSPECIFIED,
4080 false, frame_buf);
4081
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004082 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4083 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004084 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004085
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004086 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004087
Johannes Berga1cf7752012-03-08 15:02:07 +01004088 err = ieee80211_prep_connection(sdata, req->bss, false);
4089 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01004090 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004091
Johannes Berg66e67e42012-01-20 13:55:27 +01004092 err = ieee80211_probe_auth(sdata);
4093 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004094 sta_info_destroy_addr(sdata, req->bss->bssid);
4095 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004096 }
4097
Johannes Berg66e67e42012-01-20 13:55:27 +01004098 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01004099 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004100 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02004101
Johannes Berg66e67e42012-01-20 13:55:27 +01004102 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004103 memset(ifmgd->bssid, 0, ETH_ALEN);
4104 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004105 ifmgd->auth_data = NULL;
4106 err_free:
4107 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004108 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004109}
4110
Johannes Berg77fdaa12009-07-07 03:45:17 +02004111int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4112 struct cfg80211_assoc_request *req)
4113{
Johannes Berg66e67e42012-01-20 13:55:27 +01004114 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004115 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01004116 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01004117 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004118 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004119 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004120 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004121 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004122
Johannes Berg66e67e42012-01-20 13:55:27 +01004123 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
4124 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01004125 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004126
Johannes Berg9caf0362012-11-29 01:25:20 +01004127 rcu_read_lock();
4128 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4129 if (!ssidie) {
4130 rcu_read_unlock();
4131 kfree(assoc_data);
4132 return -EINVAL;
4133 }
4134 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4135 assoc_data->ssid_len = ssidie[1];
4136 rcu_read_unlock();
4137
Johannes Berg7b119dc2013-04-10 21:38:36 +02004138 if (ifmgd->associated) {
4139 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4140
4141 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4142 WLAN_REASON_UNSPECIFIED,
4143 false, frame_buf);
4144
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004145 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4146 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004147 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004148
4149 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4150 err = -EBUSY;
4151 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004152 }
4153
Johannes Berg66e67e42012-01-20 13:55:27 +01004154 if (ifmgd->assoc_data) {
4155 err = -EBUSY;
4156 goto err_free;
4157 }
4158
4159 if (ifmgd->auth_data) {
4160 bool match;
4161
4162 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00004163 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004164 ieee80211_destroy_auth_data(sdata, match);
4165 }
4166
4167 /* prepare assoc data */
Johannes Berg19c3b832012-08-01 20:13:36 +02004168
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03004169 ifmgd->beacon_crc_valid = false;
4170
Johannes Bergde5036a2012-03-08 15:02:03 +01004171 /*
4172 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4173 * We still associate in non-HT mode (11a/b/g) if any one of these
4174 * ciphers is configured as pairwise.
4175 * We can set this to true for non-11n hardware, that'll be checked
4176 * separately along with the peer capabilities.
4177 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004178 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004179 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4180 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004181 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004182 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004183 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004184 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004185 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004186 }
4187 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004188
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004189 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004190 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004191 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4192 }
Ben Greearef96a8422011-11-18 11:32:00 -08004193
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004194 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4195 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4196
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004197 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4198 sband = local->hw.wiphy->bands[req->bss->channel->band];
4199 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004200 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berga8243b72012-11-22 14:32:09 +01004201 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004202 if (!bss->wmm_used)
4203 netdev_info(sdata->dev,
4204 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004205 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004206
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004207 /* disable VHT if we don't support it or the AP doesn't use WMM */
4208 if (!sband->vht_cap.vht_supported ||
4209 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
4210 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004211 if (!bss->wmm_used)
4212 netdev_info(sdata->dev,
4213 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004214 }
4215
Ben Greearef96a8422011-11-18 11:32:00 -08004216 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4217 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4218 sizeof(ifmgd->ht_capa_mask));
4219
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004220 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4221 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4222 sizeof(ifmgd->vht_capa_mask));
4223
Johannes Berg77fdaa12009-07-07 03:45:17 +02004224 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004225 memcpy(assoc_data->ie, req->ie, req->ie_len);
4226 assoc_data->ie_len = req->ie_len;
4227 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004228
Johannes Berg66e67e42012-01-20 13:55:27 +01004229 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004230
Johannes Bergaf6b6372009-12-23 13:15:35 +01004231 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4232 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004233 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004234 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004235 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004236 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004237 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004238
Johannes Berg66e67e42012-01-20 13:55:27 +01004239 assoc_data->capability = req->bss->capability;
Johannes Berg32c50572012-03-28 11:04:29 +02004240 assoc_data->wmm = bss->wmm_used &&
4241 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01004242 assoc_data->supp_rates = bss->supp_rates;
4243 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004244
Johannes Berg9caf0362012-11-29 01:25:20 +01004245 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004246 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4247 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4248 assoc_data->ap_ht_param =
4249 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4250 else
Johannes Berga8243b72012-11-22 14:32:09 +01004251 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004252 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4253 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4254 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4255 sizeof(struct ieee80211_vht_cap));
4256 else
4257 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004258 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004259
Kalle Valoab133152010-01-12 10:42:31 +02004260 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004261 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4262 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004263 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004264 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4265 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004266 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004267 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4268 }
4269
Johannes Berg77fdaa12009-07-07 03:45:17 +02004270 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004271 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004272
4273 if (req->use_mfp) {
4274 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4275 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4276 } else {
4277 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4278 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4279 }
4280
4281 if (req->crypto.control_port)
4282 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4283 else
4284 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4285
Johannes Berga621fa42010-08-27 14:26:54 +03004286 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4287 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
4288
Johannes Berg66e67e42012-01-20 13:55:27 +01004289 /* kick off associate process */
4290
4291 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004292 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004293 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004294
Johannes Berga1cf7752012-03-08 15:02:07 +01004295 err = ieee80211_prep_connection(sdata, req->bss, true);
4296 if (err)
4297 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004298
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004299 rcu_read_lock();
4300 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004301
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004302 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4303 !beacon_ies) {
4304 /*
4305 * Wait up to one beacon interval ...
4306 * should this be more if we miss one?
4307 */
4308 sdata_info(sdata, "waiting for beacon from %pM\n",
4309 ifmgd->bssid);
4310 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004311 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004312 assoc_data->need_beacon = true;
4313 } else if (beacon_ies) {
4314 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4315 beacon_ies->data,
4316 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004317 u8 dtim_count = 0;
4318
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004319 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4320 const struct ieee80211_tim_ie *tim;
4321 tim = (void *)(tim_ie + 2);
4322 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004323 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004324 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004325 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004326 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004327 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004328
4329 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4330 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4331 sdata->vif.bss_conf.sync_device_ts =
4332 bss->device_ts_beacon;
4333 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4334 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004335 } else {
4336 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004337 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004338 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004339 rcu_read_unlock();
4340
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004341 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004342
Paul Stewartfcff4f12012-02-23 17:59:53 -08004343 if (bss->corrupt_data) {
4344 char *corrupt_type = "data";
4345 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4346 if (bss->corrupt_data &
4347 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4348 corrupt_type = "beacon and probe response";
4349 else
4350 corrupt_type = "beacon";
4351 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4352 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004353 sdata_info(sdata, "associating with AP with corrupt %s\n",
4354 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004355 }
4356
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004357 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004358 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004359 memset(ifmgd->bssid, 0, ETH_ALEN);
4360 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004361 ifmgd->assoc_data = NULL;
4362 err_free:
4363 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004364 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004365}
4366
4367int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004368 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004369{
4370 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004371 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004372 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004373 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004374
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004375 sdata_info(sdata,
4376 "deauthenticating from %pM by local choice (reason=%d)\n",
4377 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004378
Johannes Berg86552012012-10-29 09:46:31 +01004379 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004380 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004381 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4382 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004383 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004384 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004385 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004386
Johannes Bergde3d43a2013-05-14 09:39:02 +02004387 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004388 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004389 }
4390
Johannes Berg86552012012-10-29 09:46:31 +01004391 if (ifmgd->associated &&
4392 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4393 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4394 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004395 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004396 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004397
Johannes Berg86552012012-10-29 09:46:31 +01004398 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004399 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004400 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4401 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004402
Johannes Berg77fdaa12009-07-07 03:45:17 +02004403 return 0;
4404}
4405
4406int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004407 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004408{
4409 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004410 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004411 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004412
Johannes Berg8d8b2612009-07-25 11:58:36 +02004413 /*
4414 * cfg80211 should catch this ... but it's racy since
4415 * we can receive a disassoc frame, process it, hand it
4416 * to cfg80211 while that's in a locked section already
4417 * trying to tell us that the user wants to disconnect.
4418 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004419 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004420 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004421
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004422 sdata_info(sdata,
4423 "disassociating from %pM by local choice (reason=%d)\n",
4424 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004425
Jouni Malinene69e95d2010-03-29 23:29:31 -07004426 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004427 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4428 req->reason_code, !req->local_state_change,
4429 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004430
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004431 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4432 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004433
Johannes Berg77fdaa12009-07-07 03:45:17 +02004434 return 0;
4435}
Jouni Malinen026331c2010-02-15 12:53:10 +02004436
Eliad Pellerafa762f2012-04-23 14:45:15 +03004437void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004438{
4439 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4440
Ben Greear49921852013-02-20 09:41:09 -08004441 /*
4442 * Make sure some work items will not run after this,
4443 * they will not do anything but might not have been
4444 * cancelled when disconnecting.
4445 */
4446 cancel_work_sync(&ifmgd->monitor_work);
4447 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4448 cancel_work_sync(&ifmgd->request_smps_work);
4449 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4450 cancel_work_sync(&ifmgd->chswitch_work);
4451
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004452 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004453 if (ifmgd->assoc_data) {
4454 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004455 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004456 cfg80211_assoc_timeout(sdata->dev, bss);
4457 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004458 if (ifmgd->auth_data)
4459 ieee80211_destroy_auth_data(sdata, false);
4460 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004461 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004462}
4463
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004464void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4465 enum nl80211_cqm_rssi_threshold_event rssi_event,
4466 gfp_t gfp)
4467{
4468 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4469
Johannes Bergb5878a22010-04-07 16:48:40 +02004470 trace_api_cqm_rssi_notify(sdata, rssi_event);
4471
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004472 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4473}
4474EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);