blob: 21bccd849b3fb531952d2040f79ed303a9267ab9 [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 Berg1672c0e2013-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 Berg1672c0e2013-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 Berg1672c0e2013-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 Berg5cdaed12013-07-31 11:23:06 +0200214 struct cfg80211_chan_def *chandef, bool tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100215{
Johannes Berg5cdaed12013-07-31 11:23:06 +0200216 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg6565ec92013-02-08 14:52:32 +0100217 struct cfg80211_chan_def vht_chandef;
218 u32 ht_cfreq, ret;
219
220 chandef->chan = channel;
221 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
222 chandef->center_freq1 = channel->center_freq;
223 chandef->center_freq2 = 0;
224
225 if (!ht_oper || !sband->ht_cap.ht_supported) {
226 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
227 goto out;
228 }
229
230 chandef->width = NL80211_CHAN_WIDTH_20;
231
232 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
233 channel->band);
234 /* check that channel matches the right operating channel */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200235 if (!tracking && channel->center_freq != ht_cfreq) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100236 /*
237 * It's possible that some APs are confused here;
238 * Netgear WNDR3700 sometimes reports 4 higher than
239 * the actual channel in association responses, but
240 * since we look at probe response/beacon data here
241 * it should be OK.
242 */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200243 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 Berg6553bf02013-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 Berg5cdaed12013-07-31 11:23:06 +0200300 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100301 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 Berg5cdaed12013-07-31 11:23:06 +0200309 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100310 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 Berg5cdaed12013-07-31 11:23:06 +0200322 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100323 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 Bergddfe49b2013-07-31 20:52:03 +0200338 /*
339 * Ignore the DISABLED flag when we're already connected and only
340 * tracking the APs beacon for bandwidth changes - otherwise we
341 * might get disconnected here if we connect to an AP, update our
342 * regulatory information based on the AP's country IE and the
343 * information we have is wrong/outdated and disables the channel
344 * that we're actually using for the connection to the AP.
345 */
Johannes Berg6565ec92013-02-08 14:52:32 +0100346 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
Johannes Bergddfe49b2013-07-31 20:52:03 +0200347 tracking ? 0 :
348 IEEE80211_CHAN_DISABLED)) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100349 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
350 ret = IEEE80211_STA_DISABLE_HT |
351 IEEE80211_STA_DISABLE_VHT;
Chris Wrightb56e4b82013-07-31 12:12:24 -0700352 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100353 }
354
355 ret |= chandef_downgrade(chandef);
356 }
357
Johannes Berg5cdaed12013-07-31 11:23:06 +0200358 if (chandef->width != vht_chandef.width && !tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100359 sdata_info(sdata,
360 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
361
362 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
363 return ret;
364}
365
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100366static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
367 struct sta_info *sta,
368 const struct ieee80211_ht_operation *ht_oper,
369 const struct ieee80211_vht_operation *vht_oper,
370 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200371{
372 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100373 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200374 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200375 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100376 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200377 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100378 u32 flags;
379 enum ieee80211_sta_rx_bandwidth new_sta_bw;
380 int ret;
381
382 /* if HT was/is disabled, don't track any bandwidth changes */
383 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
384 return 0;
385
386 /* don't check VHT if we associated as non-VHT station */
387 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
388 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200389
Johannes Berg11289582013-02-07 17:36:12 +0100390 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100391 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100392
Johannes Bergf2d93302013-02-08 13:15:55 +0100393 chan = sdata->vif.bss_conf.chandef.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200394 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200395
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100396 /* calculate new channel (type) based on HT/VHT operation IEs */
397 flags = ieee80211_determine_chantype(sdata, sband, chan, ht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200398 vht_oper, &chandef, true);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100399
400 /*
401 * Downgrade the new channel if we associated with restricted
402 * capabilities. For example, if we associated as a 20 MHz STA
403 * to a 40 MHz AP (due to regulatory, capabilities or config
404 * reasons) then switching to a 40 MHz channel now won't do us
405 * any good -- we couldn't use it with the AP.
406 */
407 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
408 chandef.width == NL80211_CHAN_WIDTH_80P80)
409 flags |= chandef_downgrade(&chandef);
410 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
411 chandef.width == NL80211_CHAN_WIDTH_160)
412 flags |= chandef_downgrade(&chandef);
413 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
414 chandef.width > NL80211_CHAN_WIDTH_20)
415 flags |= chandef_downgrade(&chandef);
416
417 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
418 return 0;
419
420 sdata_info(sdata,
421 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
422 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
423 chandef.center_freq1, chandef.center_freq2);
424
425 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
426 IEEE80211_STA_DISABLE_VHT |
427 IEEE80211_STA_DISABLE_40MHZ |
428 IEEE80211_STA_DISABLE_80P80MHZ |
429 IEEE80211_STA_DISABLE_160MHZ)) ||
430 !cfg80211_chandef_valid(&chandef)) {
431 sdata_info(sdata,
432 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
433 ifmgd->bssid);
434 return -EINVAL;
Johannes Berg64f68e52012-03-28 10:58:37 +0200435 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200436
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100437 switch (chandef.width) {
438 case NL80211_CHAN_WIDTH_20_NOHT:
439 case NL80211_CHAN_WIDTH_20:
440 new_sta_bw = IEEE80211_STA_RX_BW_20;
441 break;
442 case NL80211_CHAN_WIDTH_40:
443 new_sta_bw = IEEE80211_STA_RX_BW_40;
444 break;
445 case NL80211_CHAN_WIDTH_80:
446 new_sta_bw = IEEE80211_STA_RX_BW_80;
447 break;
448 case NL80211_CHAN_WIDTH_80P80:
449 case NL80211_CHAN_WIDTH_160:
450 new_sta_bw = IEEE80211_STA_RX_BW_160;
451 break;
452 default:
453 return -EINVAL;
454 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200455
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100456 if (new_sta_bw > sta->cur_max_bandwidth)
457 new_sta_bw = sta->cur_max_bandwidth;
Johannes Berg64f68e52012-03-28 10:58:37 +0200458
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100459 if (new_sta_bw < sta->sta.bandwidth) {
460 sta->sta.bandwidth = new_sta_bw;
461 rate_control_rate_update(local, sband, sta,
462 IEEE80211_RC_BW_CHANGED);
463 }
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530464
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100465 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
466 if (ret) {
467 sdata_info(sdata,
468 "AP %pM changed bandwidth to incompatible one - disconnect\n",
469 ifmgd->bssid);
470 return ret;
471 }
472
473 if (new_sta_bw > sta->sta.bandwidth) {
474 sta->sta.bandwidth = new_sta_bw;
475 rate_control_rate_update(local, sband, sta,
476 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200477 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200478
Johannes Berg074d46d2012-03-15 19:45:16 +0100479 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200480
481 /* if bss configuration changed store the new one */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100482 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
483 *changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200484 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200485 }
486
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100487 return 0;
Johannes Bergd5522e02009-03-30 13:23:35 +0200488}
489
Johannes Berg9c6bd792008-09-11 00:01:52 +0200490/* frame sending functions */
491
Johannes Berg66e67e42012-01-20 13:55:27 +0100492static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200493 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100494 struct ieee80211_supported_band *sband,
495 struct ieee80211_channel *channel,
496 enum ieee80211_smps_mode smps)
497{
Johannes Berg66e67e42012-01-20 13:55:27 +0100498 u8 *pos;
499 u32 flags = channel->flags;
500 u16 cap;
501 struct ieee80211_sta_ht_cap ht_cap;
502
503 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
504
Johannes Berg66e67e42012-01-20 13:55:27 +0100505 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
506 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
507
Johannes Berg66e67e42012-01-20 13:55:27 +0100508 /* determine capability flags */
509 cap = ht_cap.cap;
510
Johannes Berg9dde6422012-05-16 23:43:19 +0200511 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100512 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
513 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
514 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
515 cap &= ~IEEE80211_HT_CAP_SGI_40;
516 }
517 break;
518 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
519 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
520 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
521 cap &= ~IEEE80211_HT_CAP_SGI_40;
522 }
523 break;
524 }
525
Johannes Berg24398e32012-03-28 10:58:36 +0200526 /*
527 * If 40 MHz was disabled associate as though we weren't
528 * capable of 40 MHz -- some broken APs will never fall
529 * back to trying to transmit in 20 MHz.
530 */
531 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
532 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
533 cap &= ~IEEE80211_HT_CAP_SGI_40;
534 }
535
Johannes Berg66e67e42012-01-20 13:55:27 +0100536 /* set SM PS mode properly */
537 cap &= ~IEEE80211_HT_CAP_SM_PS;
538 switch (smps) {
539 case IEEE80211_SMPS_AUTOMATIC:
540 case IEEE80211_SMPS_NUM_MODES:
541 WARN_ON(1);
542 case IEEE80211_SMPS_OFF:
543 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
544 IEEE80211_HT_CAP_SM_PS_SHIFT;
545 break;
546 case IEEE80211_SMPS_STATIC:
547 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
548 IEEE80211_HT_CAP_SM_PS_SHIFT;
549 break;
550 case IEEE80211_SMPS_DYNAMIC:
551 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
552 IEEE80211_HT_CAP_SM_PS_SHIFT;
553 break;
554 }
555
556 /* reserve and fill IE */
557 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
558 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
559}
560
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000561static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
562 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100563 struct ieee80211_supported_band *sband,
564 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000565{
566 u8 *pos;
567 u32 cap;
568 struct ieee80211_sta_vht_cap vht_cap;
569
570 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
571
572 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100573 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000574
575 /* determine capability flags */
576 cap = vht_cap.cap;
577
Johannes Bergf2d9d272012-11-22 14:11:39 +0100578 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
579 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
580 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
581 }
582
583 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
584 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
585 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
586 }
587
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100588 /*
589 * Some APs apparently get confused if our capabilities are better
590 * than theirs, so restrict what we advertise in the assoc request.
591 */
592 if (!(ap_vht_cap->vht_cap_info &
593 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
594 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
595
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000596 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000597 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000598 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
599}
600
Johannes Berg66e67e42012-01-20 13:55:27 +0100601static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
602{
603 struct ieee80211_local *local = sdata->local;
604 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
605 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
606 struct sk_buff *skb;
607 struct ieee80211_mgmt *mgmt;
608 u8 *pos, qos_info;
609 size_t offset = 0, noffset;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200610 int i, count, rates_len, supp_rates_len, shift;
Johannes Berg66e67e42012-01-20 13:55:27 +0100611 u16 capab;
612 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200613 struct ieee80211_chanctx_conf *chanctx_conf;
614 struct ieee80211_channel *chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200615 u32 rate_flags, rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100616
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200617 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100618
Johannes Berg55de9082012-07-26 17:24:39 +0200619 rcu_read_lock();
620 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
621 if (WARN_ON(!chanctx_conf)) {
622 rcu_read_unlock();
623 return;
624 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100625 chan = chanctx_conf->def.chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200626 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
Johannes Berg55de9082012-07-26 17:24:39 +0200627 rcu_read_unlock();
628 sband = local->hw.wiphy->bands[chan->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200629 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg66e67e42012-01-20 13:55:27 +0100630
631 if (assoc_data->supp_rates_len) {
632 /*
633 * Get all rates supported by the device and the AP as
634 * some APs don't like getting a superset of their rates
635 * in the association request (e.g. D-Link DAP 1353 in
636 * b-only mode)...
637 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200638 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
639 assoc_data->supp_rates,
640 assoc_data->supp_rates_len,
641 &rates);
Johannes Berg66e67e42012-01-20 13:55:27 +0100642 } else {
643 /*
644 * In case AP not provide any supported rates information
645 * before association, we send information element(s) with
646 * all rates that we support.
647 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200648 rates_len = 0;
649 for (i = 0; i < sband->n_bitrates; i++) {
650 if ((rate_flags & sband->bitrates[i].flags)
651 != rate_flags)
652 continue;
653 rates |= BIT(i);
654 rates_len++;
655 }
Johannes Berg66e67e42012-01-20 13:55:27 +0100656 }
657
658 skb = alloc_skb(local->hw.extra_tx_headroom +
659 sizeof(*mgmt) + /* bit too much but doesn't matter */
660 2 + assoc_data->ssid_len + /* SSID */
661 4 + rates_len + /* (extended) rates */
662 4 + /* power capability */
663 2 + 2 * sband->n_channels + /* supported channels */
664 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000665 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100666 assoc_data->ie_len + /* extra IEs */
667 9, /* WMM */
668 GFP_KERNEL);
669 if (!skb)
670 return;
671
672 skb_reserve(skb, local->hw.extra_tx_headroom);
673
674 capab = WLAN_CAPABILITY_ESS;
675
676 if (sband->band == IEEE80211_BAND_2GHZ) {
677 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
678 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
679 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
680 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
681 }
682
683 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
684 capab |= WLAN_CAPABILITY_PRIVACY;
685
686 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
687 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
688 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
689
690 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
691 memset(mgmt, 0, 24);
692 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
693 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
694 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
695
696 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
697 skb_put(skb, 10);
698 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
699 IEEE80211_STYPE_REASSOC_REQ);
700 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
701 mgmt->u.reassoc_req.listen_interval =
702 cpu_to_le16(local->hw.conf.listen_interval);
703 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
704 ETH_ALEN);
705 } else {
706 skb_put(skb, 4);
707 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
708 IEEE80211_STYPE_ASSOC_REQ);
709 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
710 mgmt->u.assoc_req.listen_interval =
711 cpu_to_le16(local->hw.conf.listen_interval);
712 }
713
714 /* SSID */
715 pos = skb_put(skb, 2 + assoc_data->ssid_len);
716 *pos++ = WLAN_EID_SSID;
717 *pos++ = assoc_data->ssid_len;
718 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
719
720 /* add all rates which were marked to be used above */
721 supp_rates_len = rates_len;
722 if (supp_rates_len > 8)
723 supp_rates_len = 8;
724
725 pos = skb_put(skb, supp_rates_len + 2);
726 *pos++ = WLAN_EID_SUPP_RATES;
727 *pos++ = supp_rates_len;
728
729 count = 0;
730 for (i = 0; i < sband->n_bitrates; i++) {
731 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200732 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
733 5 * (1 << shift));
734 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100735 if (++count == 8)
736 break;
737 }
738 }
739
740 if (rates_len > count) {
741 pos = skb_put(skb, rates_len - count + 2);
742 *pos++ = WLAN_EID_EXT_SUPP_RATES;
743 *pos++ = rates_len - count;
744
745 for (i++; i < sband->n_bitrates; i++) {
746 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200747 int rate;
748 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
749 5 * (1 << shift));
750 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100751 }
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 */
Simon Wunderlich0430c882013-07-08 16:55:55 +0200761 /* max tx power */
762 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg66e67e42012-01-20 13:55:27 +0100763
764 /* 2. supported channels */
765 /* TODO: get this in reg domain format */
766 pos = skb_put(skb, 2 * sband->n_channels + 2);
767 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
768 *pos++ = 2 * sband->n_channels;
769 for (i = 0; i < sband->n_channels; i++) {
770 *pos++ = ieee80211_frequency_to_channel(
771 sband->channels[i].center_freq);
772 *pos++ = 1; /* one channel in the subband*/
773 }
774 }
775
776 /* if present, add any custom IEs that go before HT */
777 if (assoc_data->ie_len && assoc_data->ie) {
778 static const u8 before_ht[] = {
779 WLAN_EID_SSID,
780 WLAN_EID_SUPP_RATES,
781 WLAN_EID_EXT_SUPP_RATES,
782 WLAN_EID_PWR_CAPABILITY,
783 WLAN_EID_SUPPORTED_CHANNELS,
784 WLAN_EID_RSN,
785 WLAN_EID_QOS_CAPA,
786 WLAN_EID_RRM_ENABLED_CAPABILITIES,
787 WLAN_EID_MOBILITY_DOMAIN,
788 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
789 };
790 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
791 before_ht, ARRAY_SIZE(before_ht),
792 offset);
793 pos = skb_put(skb, noffset - offset);
794 memcpy(pos, assoc_data->ie + offset, noffset - offset);
795 offset = noffset;
796 }
797
Johannes Bergf2d9d272012-11-22 14:11:39 +0100798 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
799 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
800 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
801
Johannes Berga8243b72012-11-22 14:32:09 +0100802 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200803 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200804 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100805
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000806 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100807 ieee80211_add_vht_ie(sdata, skb, sband,
808 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000809
Johannes Berg66e67e42012-01-20 13:55:27 +0100810 /* if present, add any custom non-vendor IEs that go after HT */
811 if (assoc_data->ie_len && assoc_data->ie) {
812 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
813 assoc_data->ie_len,
814 offset);
815 pos = skb_put(skb, noffset - offset);
816 memcpy(pos, assoc_data->ie + offset, noffset - offset);
817 offset = noffset;
818 }
819
Johannes Berg76f03032012-03-08 15:02:05 +0100820 if (assoc_data->wmm) {
821 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200822 qos_info = ifmgd->uapsd_queues;
823 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100824 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
825 } else {
826 qos_info = 0;
827 }
828
829 pos = skb_put(skb, 9);
830 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
831 *pos++ = 7; /* len */
832 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
833 *pos++ = 0x50;
834 *pos++ = 0xf2;
835 *pos++ = 2; /* WME */
836 *pos++ = 0; /* WME info */
837 *pos++ = 1; /* WME ver */
838 *pos++ = qos_info;
839 }
840
841 /* add any remaining custom (i.e. vendor specific here) IEs */
842 if (assoc_data->ie_len && assoc_data->ie) {
843 noffset = assoc_data->ie_len;
844 pos = skb_put(skb, noffset - offset);
845 memcpy(pos, assoc_data->ie + offset, noffset - offset);
846 }
847
Johannes Berga1845fc2012-06-27 13:18:36 +0200848 drv_mgd_prepare_tx(local, sdata);
849
Johannes Berg66e67e42012-01-20 13:55:27 +0100850 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e2013-01-29 15:02:27 +0100851 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
852 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
853 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100854 ieee80211_tx_skb(sdata, skb);
855}
856
Kalle Valo572e0012009-02-10 17:09:31 +0200857void ieee80211_send_pspoll(struct ieee80211_local *local,
858 struct ieee80211_sub_if_data *sdata)
859{
Kalle Valo572e0012009-02-10 17:09:31 +0200860 struct ieee80211_pspoll *pspoll;
861 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200862
Kalle Valod8cd1892010-01-05 20:16:26 +0200863 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
864 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200865 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200866
Kalle Valod8cd1892010-01-05 20:16:26 +0200867 pspoll = (struct ieee80211_pspoll *) skb->data;
868 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200869
Johannes Berg62ae67b2009-11-18 18:42:05 +0100870 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
871 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200872}
873
Johannes Berg965beda2009-04-16 13:17:24 +0200874void ieee80211_send_nullfunc(struct ieee80211_local *local,
875 struct ieee80211_sub_if_data *sdata,
876 int powersave)
877{
878 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200879 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530880 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200881
Kalle Valod8cd1892010-01-05 20:16:26 +0200882 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
883 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200884 return;
885
Kalle Valod8cd1892010-01-05 20:16:26 +0200886 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200887 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200888 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200889
Seth Forshee6c17b772013-02-11 11:21:07 -0600890 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
891 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200892
893 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
894 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
895
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530896 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
897 IEEE80211_STA_CONNECTION_POLL))
898 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
899
Johannes Berg62ae67b2009-11-18 18:42:05 +0100900 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200901}
902
Felix Fietkaud5242152010-01-08 18:06:26 +0100903static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
904 struct ieee80211_sub_if_data *sdata)
905{
906 struct sk_buff *skb;
907 struct ieee80211_hdr *nullfunc;
908 __le16 fc;
909
910 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
911 return;
912
913 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700914 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100915 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700916
Felix Fietkaud5242152010-01-08 18:06:26 +0100917 skb_reserve(skb, local->hw.extra_tx_headroom);
918
919 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
920 memset(nullfunc, 0, 30);
921 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
922 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
923 nullfunc->frame_control = fc;
924 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
925 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
926 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
927 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
928
929 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
930 ieee80211_tx_skb(sdata, skb);
931}
932
Johannes Bergcc32abd2009-05-15 11:52:31 +0200933/* spectrum management related things */
934static void ieee80211_chswitch_work(struct work_struct *work)
935{
936 struct ieee80211_sub_if_data *sdata =
937 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100938 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200939 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
940
Johannes Berg9607e6b2009-12-23 13:15:31 +0100941 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200942 return;
943
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200944 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200945 if (!ifmgd->associated)
946 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200947
Johannes Berg85220d72013-03-25 18:29:27 +0100948 local->_oper_chandef = local->csa_chandef;
Karl Beldan675a0b02013-03-25 16:26:57 +0100949
950 if (!local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +0200951 /* call "hw_config" only if doing sw channel switch */
Karl Beldan675a0b02013-03-25 16:26:57 +0100952 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Shahar Levi1ea57b12011-09-08 08:44:05 +0300953 } else {
954 /* update the device channel directly */
Karl Beldan675a0b02013-03-25 16:26:57 +0100955 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200956 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200957
Johannes Berg77fdaa12009-07-07 03:45:17 +0200958 /* XXX: shouldn't really modify cfg80211-owned data! */
Karl Beldan675a0b02013-03-25 16:26:57 +0100959 ifmgd->associated->channel = local->_oper_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200960
Johannes Berg57eebdf2012-08-01 15:50:46 +0200961 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100962 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100963 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200964 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200965 out:
966 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200967 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200968}
969
Johannes Berg5ce6e432010-05-11 16:20:57 +0200970void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
971{
Johannes Berg55de9082012-07-26 17:24:39 +0200972 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
973 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200974
975 trace_api_chswitch_done(sdata, success);
976 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200977 sdata_info(sdata,
978 "driver channel switch failed, disconnecting\n");
979 ieee80211_queue_work(&sdata->local->hw,
980 &ifmgd->csa_connection_drop_work);
981 } else {
982 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200983 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200984}
985EXPORT_SYMBOL(ieee80211_chswitch_done);
986
Johannes Bergcc32abd2009-05-15 11:52:31 +0200987static void ieee80211_chswitch_timer(unsigned long data)
988{
989 struct ieee80211_sub_if_data *sdata =
990 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200991
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100992 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200993}
994
Johannes Berg37799e52013-03-26 14:02:26 +0100995static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100996ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200997 u64 timestamp, struct ieee802_11_elems *elems,
998 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200999{
Johannes Bergb4f286a2013-03-26 14:13:58 +01001000 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001001 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +01001002 struct cfg80211_bss *cbss = ifmgd->associated;
1003 struct ieee80211_bss *bss;
Johannes Berg55de9082012-07-26 17:24:39 +02001004 struct ieee80211_chanctx *chanctx;
Johannes Bergb4f286a2013-03-26 14:13:58 +01001005 enum ieee80211_band new_band;
1006 int new_freq;
1007 u8 new_chan_no;
1008 u8 count;
1009 u8 mode;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001010 struct ieee80211_channel *new_chan;
Johannes Berg85220d72013-03-25 18:29:27 +01001011 struct cfg80211_chan_def new_chandef = {};
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001012 struct cfg80211_chan_def new_vht_chandef = {};
1013 const struct ieee80211_sec_chan_offs_ie *sec_chan_offs;
1014 const struct ieee80211_wide_bw_chansw_ie *wide_bw_chansw_ie;
Johannes Berg04a161f2013-05-03 09:35:35 +02001015 const struct ieee80211_ht_operation *ht_oper;
Johannes Berg85220d72013-03-25 18:29:27 +01001016 int secondary_channel_offset = -1;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001017
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001018 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001019
Johannes Berg37799e52013-03-26 14:02:26 +01001020 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001021 return;
1022
Johannes Bergb4f286a2013-03-26 14:13:58 +01001023 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001024 return;
1025
Johannes Berg37799e52013-03-26 14:02:26 +01001026 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +02001027 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
1028 return;
1029
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001030 sec_chan_offs = elems->sec_chan_offs;
1031 wide_bw_chansw_ie = elems->wide_bw_chansw_ie;
Johannes Berg04a161f2013-05-03 09:35:35 +02001032 ht_oper = elems->ht_operation;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001033
1034 if (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
1035 IEEE80211_STA_DISABLE_40MHZ)) {
1036 sec_chan_offs = NULL;
1037 wide_bw_chansw_ie = NULL;
Johannes Berg04a161f2013-05-03 09:35:35 +02001038 /* only used for bandwidth here */
1039 ht_oper = NULL;
Johannes Berg85220d72013-03-25 18:29:27 +01001040 }
1041
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001042 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
1043 wide_bw_chansw_ie = NULL;
Johannes Berg85220d72013-03-25 18:29:27 +01001044
Johannes Bergb4f286a2013-03-26 14:13:58 +01001045 if (elems->ext_chansw_ie) {
1046 if (!ieee80211_operating_class_to_band(
1047 elems->ext_chansw_ie->new_operating_class,
1048 &new_band)) {
1049 sdata_info(sdata,
1050 "cannot understand ECSA IE operating class %d, disconnecting\n",
1051 elems->ext_chansw_ie->new_operating_class);
1052 ieee80211_queue_work(&local->hw,
1053 &ifmgd->csa_connection_drop_work);
1054 }
1055 new_chan_no = elems->ext_chansw_ie->new_ch_num;
1056 count = elems->ext_chansw_ie->count;
1057 mode = elems->ext_chansw_ie->mode;
1058 } else if (elems->ch_switch_ie) {
1059 new_band = cbss->channel->band;
1060 new_chan_no = elems->ch_switch_ie->new_ch_num;
1061 count = elems->ch_switch_ie->count;
1062 mode = elems->ch_switch_ie->mode;
1063 } else {
1064 /* nothing here we understand */
Johannes Berg37799e52013-03-26 14:02:26 +01001065 return;
Johannes Bergb4f286a2013-03-26 14:13:58 +01001066 }
Johannes Berg37799e52013-03-26 14:02:26 +01001067
1068 bss = (void *)cbss->priv;
1069
Johannes Bergb4f286a2013-03-26 14:13:58 +01001070 new_freq = ieee80211_channel_to_frequency(new_chan_no, new_band);
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001071 new_chan = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
1072 if (!new_chan || new_chan->flags & IEEE80211_CHAN_DISABLED) {
Johannes Berg882a7c62012-08-01 22:32:45 +02001073 sdata_info(sdata,
1074 "AP %pM switches to unsupported channel (%d MHz), disconnecting\n",
1075 ifmgd->associated->bssid, new_freq);
Johannes Bergb4f286a2013-03-26 14:13:58 +01001076 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +02001077 &ifmgd->csa_connection_drop_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +02001078 return;
Johannes Berg882a7c62012-08-01 22:32:45 +02001079 }
Johannes Bergcc32abd2009-05-15 11:52:31 +02001080
Johannes Berg04a161f2013-05-03 09:35:35 +02001081 if (!beacon && sec_chan_offs) {
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001082 secondary_channel_offset = sec_chan_offs->sec_chan_offs;
Johannes Berg04a161f2013-05-03 09:35:35 +02001083 } else if (beacon && ht_oper) {
1084 secondary_channel_offset =
1085 ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001086 } else if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
Johannes Berg04a161f2013-05-03 09:35:35 +02001087 /*
1088 * If it's not a beacon, HT is enabled and the IE not present,
1089 * it's 20 MHz, 802.11-2012 8.5.2.6:
1090 * This element [the Secondary Channel Offset Element] is
1091 * present when switching to a 40 MHz channel. It may be
1092 * present when switching to a 20 MHz channel (in which
1093 * case the secondary channel offset is set to SCN).
1094 */
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001095 secondary_channel_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
1096 }
1097
Johannes Berg85220d72013-03-25 18:29:27 +01001098 switch (secondary_channel_offset) {
1099 default:
1100 /* secondary_channel_offset was present but is invalid */
1101 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001102 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001103 NL80211_CHAN_HT20);
1104 break;
1105 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001106 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001107 NL80211_CHAN_HT40PLUS);
1108 break;
1109 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001110 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001111 NL80211_CHAN_HT40MINUS);
1112 break;
1113 case -1:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001114 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001115 NL80211_CHAN_NO_HT);
1116 break;
1117 }
1118
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001119 if (wide_bw_chansw_ie) {
1120 new_vht_chandef.chan = new_chan;
1121 new_vht_chandef.center_freq1 =
1122 ieee80211_channel_to_frequency(
1123 wide_bw_chansw_ie->new_center_freq_seg0,
1124 new_band);
1125
1126 switch (wide_bw_chansw_ie->new_channel_width) {
1127 default:
1128 /* hmmm, ignore VHT and use HT if present */
1129 case IEEE80211_VHT_CHANWIDTH_USE_HT:
1130 new_vht_chandef.chan = NULL;
1131 break;
1132 case IEEE80211_VHT_CHANWIDTH_80MHZ:
1133 new_vht_chandef.width = NL80211_CHAN_WIDTH_80;
1134 break;
1135 case IEEE80211_VHT_CHANWIDTH_160MHZ:
1136 new_vht_chandef.width = NL80211_CHAN_WIDTH_160;
1137 break;
1138 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
1139 /* field is otherwise reserved */
1140 new_vht_chandef.center_freq2 =
1141 ieee80211_channel_to_frequency(
1142 wide_bw_chansw_ie->new_center_freq_seg1,
1143 new_band);
1144 new_vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
1145 break;
1146 }
1147 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
1148 new_vht_chandef.width == NL80211_CHAN_WIDTH_80P80)
1149 chandef_downgrade(&new_vht_chandef);
1150 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
1151 new_vht_chandef.width == NL80211_CHAN_WIDTH_160)
1152 chandef_downgrade(&new_vht_chandef);
1153 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
1154 new_vht_chandef.width > NL80211_CHAN_WIDTH_20)
1155 chandef_downgrade(&new_vht_chandef);
1156 }
1157
1158 /* if VHT data is there validate & use it */
1159 if (new_vht_chandef.chan) {
1160 if (!cfg80211_chandef_compatible(&new_vht_chandef,
1161 &new_chandef)) {
1162 sdata_info(sdata,
1163 "AP %pM CSA has inconsistent channel data, disconnecting\n",
1164 ifmgd->associated->bssid);
1165 ieee80211_queue_work(&local->hw,
1166 &ifmgd->csa_connection_drop_work);
1167 return;
1168 }
1169 new_chandef = new_vht_chandef;
1170 }
1171
Johannes Berg85220d72013-03-25 18:29:27 +01001172 if (!cfg80211_chandef_usable(local->hw.wiphy, &new_chandef,
1173 IEEE80211_CHAN_DISABLED)) {
1174 sdata_info(sdata,
1175 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
1176 ifmgd->associated->bssid, new_freq,
1177 new_chandef.width, new_chandef.center_freq1,
1178 new_chandef.center_freq2);
1179 ieee80211_queue_work(&local->hw,
1180 &ifmgd->csa_connection_drop_work);
1181 return;
1182 }
1183
Johannes Berg57eebdf2012-08-01 15:50:46 +02001184 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
1185
Johannes Bergb4f286a2013-03-26 14:13:58 +01001186 if (local->use_chanctx) {
Johannes Berg55de9082012-07-26 17:24:39 +02001187 sdata_info(sdata,
1188 "not handling channel switch with channel contexts\n");
Johannes Bergb4f286a2013-03-26 14:13:58 +01001189 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001190 &ifmgd->csa_connection_drop_work);
Simon Wunderlich246dc3f2012-11-30 19:17:27 +01001191 return;
Johannes Berg55de9082012-07-26 17:24:39 +02001192 }
1193
Johannes Bergb4f286a2013-03-26 14:13:58 +01001194 mutex_lock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001195 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Johannes Bergb4f286a2013-03-26 14:13:58 +01001196 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001197 return;
1198 }
1199 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1200 struct ieee80211_chanctx, conf);
1201 if (chanctx->refcount > 1) {
1202 sdata_info(sdata,
1203 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a2013-03-26 14:13:58 +01001204 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001205 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a2013-03-26 14:13:58 +01001206 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001207 return;
1208 }
Johannes Bergb4f286a2013-03-26 14:13:58 +01001209 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001210
Johannes Berg85220d72013-03-25 18:29:27 +01001211 local->csa_chandef = new_chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001212
Johannes Bergb4f286a2013-03-26 14:13:58 +01001213 if (mode)
1214 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001215 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001216 IEEE80211_QUEUE_STOP_REASON_CSA);
1217
Johannes Bergb4f286a2013-03-26 14:13:58 +01001218 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001219 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001220 struct ieee80211_channel_switch ch_switch = {
1221 .timestamp = timestamp,
Johannes Bergb4f286a2013-03-26 14:13:58 +01001222 .block_tx = mode,
Johannes Berg85220d72013-03-25 18:29:27 +01001223 .chandef = new_chandef,
Johannes Bergb4f286a2013-03-26 14:13:58 +01001224 .count = count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001225 };
1226
Johannes Bergb4f286a2013-03-26 14:13:58 +01001227 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001228 return;
1229 }
1230
1231 /* channel switch handled in software */
Johannes Bergb4f286a2013-03-26 14:13:58 +01001232 if (count <= 1)
1233 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001234 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001235 mod_timer(&ifmgd->chswitch_timer,
Johannes Bergb4f286a2013-03-26 14:13:58 +01001236 TU_TO_EXP_TIME(count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001237}
1238
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001239static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1240 struct ieee80211_channel *channel,
1241 const u8 *country_ie, u8 country_ie_len,
1242 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001243{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001244 struct ieee80211_country_ie_triplet *triplet;
1245 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1246 int i, chan_pwr, chan_increment, new_ap_level;
1247 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001248
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001249 /* Invalid IE */
1250 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001251 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001252
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001253 triplet = (void *)(country_ie + 3);
1254 country_ie_len -= 3;
1255
1256 switch (channel->band) {
1257 default:
1258 WARN_ON_ONCE(1);
1259 /* fall through */
1260 case IEEE80211_BAND_2GHZ:
1261 case IEEE80211_BAND_60GHZ:
1262 chan_increment = 1;
1263 break;
1264 case IEEE80211_BAND_5GHZ:
1265 chan_increment = 4;
1266 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001267 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001268
1269 /* find channel */
1270 while (country_ie_len >= 3) {
1271 u8 first_channel = triplet->chans.first_channel;
1272
1273 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1274 goto next;
1275
1276 for (i = 0; i < triplet->chans.num_channels; i++) {
1277 if (first_channel + i * chan_increment == chan) {
1278 have_chan_pwr = true;
1279 chan_pwr = triplet->chans.max_power;
1280 break;
1281 }
1282 }
1283 if (have_chan_pwr)
1284 break;
1285
1286 next:
1287 triplet++;
1288 country_ie_len -= 3;
1289 }
1290
1291 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001292 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001293
1294 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1295
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001296 if (sdata->ap_power_level == new_ap_level)
1297 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001298
1299 sdata_info(sdata,
1300 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1301 new_ap_level, chan_pwr, *pwr_constr_elem,
1302 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001303 sdata->ap_power_level = new_ap_level;
1304 if (__ieee80211_recalc_txpower(sdata))
1305 return BSS_CHANGED_TXPOWER;
1306 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001307}
1308
Johannes Berg965beda2009-04-16 13:17:24 +02001309/* powersave */
1310static void ieee80211_enable_ps(struct ieee80211_local *local,
1311 struct ieee80211_sub_if_data *sdata)
1312{
1313 struct ieee80211_conf *conf = &local->hw.conf;
1314
Johannes Bergd5edaed2009-04-22 23:02:51 +02001315 /*
1316 * If we are scanning right now then the parameters will
1317 * take effect when scan finishes.
1318 */
Helmut Schaafbe9c422009-07-23 12:14:04 +02001319 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001320 return;
1321
Johannes Berg965beda2009-04-16 13:17:24 +02001322 if (conf->dynamic_ps_timeout > 0 &&
1323 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1324 mod_timer(&local->dynamic_ps_timer, jiffies +
1325 msecs_to_jiffies(conf->dynamic_ps_timeout));
1326 } else {
1327 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1328 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301329
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001330 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1331 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1332 return;
1333
1334 conf->flags |= IEEE80211_CONF_PS;
1335 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001336 }
1337}
1338
1339static void ieee80211_change_ps(struct ieee80211_local *local)
1340{
1341 struct ieee80211_conf *conf = &local->hw.conf;
1342
1343 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001344 ieee80211_enable_ps(local, local->ps_sdata);
1345 } else if (conf->flags & IEEE80211_CONF_PS) {
1346 conf->flags &= ~IEEE80211_CONF_PS;
1347 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1348 del_timer_sync(&local->dynamic_ps_timer);
1349 cancel_work_sync(&local->dynamic_ps_enable_work);
1350 }
1351}
1352
Jason Young808118c2011-03-10 16:43:19 -08001353static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1354{
1355 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1356 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001357 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001358
1359 if (!mgd->powersave)
1360 return false;
1361
Johannes Berg05cb9102011-10-28 11:59:47 +02001362 if (mgd->broken_ap)
1363 return false;
1364
Jason Young808118c2011-03-10 16:43:19 -08001365 if (!mgd->associated)
1366 return false;
1367
Jason Young808118c2011-03-10 16:43:19 -08001368 if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
1369 IEEE80211_STA_CONNECTION_POLL))
1370 return false;
1371
Alexander Bondar989c6502013-05-16 17:34:17 +03001372 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001373 return false;
1374
Jason Young808118c2011-03-10 16:43:19 -08001375 rcu_read_lock();
1376 sta = sta_info_get(sdata, mgd->bssid);
1377 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001378 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001379 rcu_read_unlock();
1380
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001381 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001382}
1383
Johannes Berg965beda2009-04-16 13:17:24 +02001384/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001385void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001386{
1387 struct ieee80211_sub_if_data *sdata, *found = NULL;
1388 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001389 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001390
1391 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1392 local->ps_sdata = NULL;
1393 return;
1394 }
1395
1396 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001397 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001398 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301399 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1400 /* If an AP vif is found, then disable PS
1401 * by setting the count to zero thereby setting
1402 * ps_sdata to NULL.
1403 */
1404 count = 0;
1405 break;
1406 }
Johannes Berg965beda2009-04-16 13:17:24 +02001407 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1408 continue;
1409 found = sdata;
1410 count++;
1411 }
1412
Jason Young808118c2011-03-10 16:43:19 -08001413 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001414 s32 beaconint_us;
1415
1416 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001417 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001418
1419 beaconint_us = ieee80211_tu_to_usec(
1420 found->vif.bss_conf.beacon_int);
1421
Juuso Oikarinenff616382010-06-09 09:51:52 +03001422 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001423 if (timeout < 0) {
1424 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001425 * Go to full PSM if the user configures a very low
1426 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001427 * The 2000 second value is there for compatibility
1428 * until the PM_QOS_NETWORK_LATENCY is configured
1429 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001430 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001431 if (latency > (1900 * USEC_PER_MSEC) &&
1432 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001433 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001434 else
1435 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001436 }
Johannes Berg09b85562013-02-06 23:07:41 +01001437 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001438
Johannes Berg04fe2032009-04-22 18:44:37 +02001439 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001440 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001441 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001442 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001443 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001444
1445 /* If the TIM IE is invalid, pretend the value is 1 */
1446 if (!dtimper)
1447 dtimper = 1;
1448 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001449 maxslp = min_t(int, dtimper,
1450 latency / beaconint_us);
1451
Johannes Berg9ccebe62009-04-23 10:32:36 +02001452 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001453 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001454 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001455 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001456 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001457 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001458 }
Johannes Berg965beda2009-04-16 13:17:24 +02001459
1460 ieee80211_change_ps(local);
1461}
1462
Eliad Pellerab095872012-07-27 12:33:22 +03001463void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1464{
1465 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1466
1467 if (sdata->vif.bss_conf.ps != ps_allowed) {
1468 sdata->vif.bss_conf.ps = ps_allowed;
1469 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1470 }
1471}
1472
Johannes Berg965beda2009-04-16 13:17:24 +02001473void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1474{
1475 struct ieee80211_local *local =
1476 container_of(work, struct ieee80211_local,
1477 dynamic_ps_disable_work);
1478
1479 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1480 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1481 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1482 }
1483
1484 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001485 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001486 IEEE80211_QUEUE_STOP_REASON_PS);
1487}
1488
1489void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1490{
1491 struct ieee80211_local *local =
1492 container_of(work, struct ieee80211_local,
1493 dynamic_ps_enable_work);
1494 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001495 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301496 unsigned long flags;
1497 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001498
1499 /* can only happen when PS was just disabled anyway */
1500 if (!sdata)
1501 return;
1502
Christian Lamparter5e340692011-06-30 21:08:43 +02001503 ifmgd = &sdata->u.mgd;
1504
Johannes Berg965beda2009-04-16 13:17:24 +02001505 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1506 return;
1507
Johannes Berg09b85562013-02-06 23:07:41 +01001508 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001509 /* don't enter PS if TX frames are pending */
1510 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301511 mod_timer(&local->dynamic_ps_timer, jiffies +
1512 msecs_to_jiffies(
1513 local->hw.conf.dynamic_ps_timeout));
1514 return;
1515 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001516
1517 /*
1518 * transmission can be stopped by others which leads to
1519 * dynamic_ps_timer expiry. Postpone the ps timer if it
1520 * is not the actual idle state.
1521 */
1522 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1523 for (q = 0; q < local->hw.queues; q++) {
1524 if (local->queue_stop_reasons[q]) {
1525 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1526 flags);
1527 mod_timer(&local->dynamic_ps_timer, jiffies +
1528 msecs_to_jiffies(
1529 local->hw.conf.dynamic_ps_timeout));
1530 return;
1531 }
1532 }
1533 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301534 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301535
Vivek Natarajan375177b2010-02-09 14:50:28 +05301536 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301537 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001538 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301539 mod_timer(&local->dynamic_ps_timer, jiffies +
1540 msecs_to_jiffies(
1541 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001542 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301543 ieee80211_send_nullfunc(local, sdata, 1);
1544 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001545 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301546 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301547 }
1548
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001549 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1550 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301551 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1552 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1553 local->hw.conf.flags |= IEEE80211_CONF_PS;
1554 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1555 }
Johannes Berg965beda2009-04-16 13:17:24 +02001556}
1557
1558void ieee80211_dynamic_ps_timer(unsigned long data)
1559{
1560 struct ieee80211_local *local = (void *) data;
1561
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001562 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001563 return;
1564
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001565 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001566}
1567
Simon Wunderlich164eb022013-02-08 18:16:20 +01001568void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1569{
1570 struct delayed_work *delayed_work =
1571 container_of(work, struct delayed_work, work);
1572 struct ieee80211_sub_if_data *sdata =
1573 container_of(delayed_work, struct ieee80211_sub_if_data,
1574 dfs_cac_timer_work);
1575
1576 ieee80211_vif_release_channel(sdata);
1577
1578 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_FINISHED, GFP_KERNEL);
1579}
1580
Johannes Berg60f8b392008-09-08 17:44:22 +02001581/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001582static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001583 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001584 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001585{
Jiri Bencf0706e82007-05-05 11:45:53 -07001586 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001587 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001588 size_t left;
1589 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001590 const u8 *pos;
1591 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001592
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001593 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001594 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001595
Johannes Berg32c5057b2012-03-28 11:04:29 +02001596 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001597 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001598
1599 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001600 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001601
Jiri Bencf0706e82007-05-05 11:45:53 -07001602 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001603 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001604
1605 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001606 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001607
Jiri Bencf0706e82007-05-05 11:45:53 -07001608 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001609 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001610 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001611 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001612
1613 pos = wmm_param + 8;
1614 left = wmm_param_len - 8;
1615
1616 memset(&params, 0, sizeof(params));
1617
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001618 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001619 for (; left >= 4; left -= 4, pos += 4) {
1620 int aci = (pos[0] >> 5) & 0x03;
1621 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001622 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001623 int queue;
1624
1625 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001626 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001627 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001628 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001629 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001630 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1631 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001632 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001633 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001634 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001635 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001636 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001637 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1638 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001639 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001640 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001641 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001642 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001643 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001644 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1645 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001646 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001647 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001648 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001649 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001650 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001651 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001652 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1653 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001654 break;
1655 }
1656
1657 params.aifs = pos[0] & 0x0f;
1658 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1659 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001660 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001661 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001662 params.uapsd = uapsd;
1663
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001664 mlme_dbg(sdata,
1665 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1666 queue, aci, acm,
1667 params.aifs, params.cw_min, params.cw_max,
1668 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001669 sdata->tx_conf[queue] = params;
1670 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001671 sdata_err(sdata,
1672 "failed to set TX queue parameters for queue %d\n",
1673 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001674 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001675
1676 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001677 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001678 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001679}
1680
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001681static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1682{
1683 lockdep_assert_held(&sdata->local->mtx);
1684
1685 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1686 IEEE80211_STA_BEACON_POLL);
1687 ieee80211_run_deferred_scan(sdata->local);
1688}
1689
1690static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1691{
1692 mutex_lock(&sdata->local->mtx);
1693 __ieee80211_stop_poll(sdata);
1694 mutex_unlock(&sdata->local->mtx);
1695}
1696
Johannes Berg7a5158e2008-10-08 10:59:33 +02001697static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1698 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001699{
Johannes Bergbda39332008-10-11 01:51:51 +02001700 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001701 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001702 bool use_protection;
1703 bool use_short_preamble;
1704 bool use_short_slot;
1705
1706 if (erp_valid) {
1707 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1708 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1709 } else {
1710 use_protection = false;
1711 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1712 }
1713
1714 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001715 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001716 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001717
Johannes Berg471b3ef2007-12-28 14:32:58 +01001718 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001719 bss_conf->use_cts_prot = use_protection;
1720 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001721 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001722
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001723 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001724 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001725 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001726 }
Daniel Draked9430a32007-07-27 15:43:24 +02001727
Johannes Berg7a5158e2008-10-08 10:59:33 +02001728 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001729 bss_conf->use_short_slot = use_short_slot;
1730 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001731 }
1732
1733 return changed;
1734}
1735
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001736static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001737 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001738 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001739{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001740 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001741 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001742 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001743
Johannes Bergae5eb022008-10-14 16:58:37 +02001744 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001745 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001746 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001747
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001748 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001749 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001750
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001751 sdata->u.mgd.associated = cbss;
1752 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001753
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001754 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1755
Johannes Berg488dd7b2012-10-29 20:08:01 +01001756 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001757 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001758
Johannes Berg9caf0362012-11-29 01:25:20 +01001759 rcu_read_lock();
1760 ies = rcu_dereference(cbss->ies);
1761 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001762 int ret;
1763
1764 ret = cfg80211_get_p2p_attr(
1765 ies->data, ies->len,
1766 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001767 (u8 *) &bss_conf->p2p_noa_attr,
1768 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001769 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001770 sdata->u.mgd.p2p_noa_index =
1771 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001772 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001773 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001774 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001775 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001776 }
1777
Johannes Bergb291ba12009-07-10 15:29:03 +02001778 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001779 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001780
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001781 ieee80211_led_assoc(local, 1);
1782
Alexander Bondar989c6502013-05-16 17:34:17 +03001783 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001784 /*
1785 * If the AP is buggy we may get here with no DTIM period
1786 * known, so assume it's 1 which is the only safe assumption
1787 * in that case, although if the TIM IE is broken powersave
1788 * probably just won't work at all.
1789 */
1790 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001791 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001792 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001793 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001794 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001795 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001796 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001797
Juuso Oikarinen68542962010-06-09 13:43:26 +03001798 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001799
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001800 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001801 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001802 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001803 bss_info_changed |= BSS_CHANGED_CQM;
1804
Juuso Oikarinen68542962010-06-09 13:43:26 +03001805 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001806 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001807 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001808
Johannes Bergae5eb022008-10-14 16:58:37 +02001809 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001810
Johannes Berg056508d2009-07-30 21:43:55 +02001811 mutex_lock(&local->iflist_mtx);
1812 ieee80211_recalc_ps(local, -1);
1813 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001814
Johannes Berg04ecd252012-09-11 14:34:12 +02001815 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001816 ieee80211_recalc_ps_vif(sdata);
1817
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001818 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001819}
1820
Jouni Malinene69e95d2010-03-29 23:29:31 -07001821static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001822 u16 stype, u16 reason, bool tx,
1823 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001824{
Johannes Berg46900292009-02-15 12:44:28 +01001825 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001826 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001827 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001828
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001829 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001830
Johannes Berg37ad3882012-02-24 13:50:54 +01001831 if (WARN_ON_ONCE(tx && !frame_buf))
1832 return;
1833
Johannes Bergb291ba12009-07-10 15:29:03 +02001834 if (WARN_ON(!ifmgd->associated))
1835 return;
1836
David Spinadel79543d82012-06-12 09:59:45 +03001837 ieee80211_stop_poll(sdata);
1838
Johannes Berg77fdaa12009-07-07 03:45:17 +02001839 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001840 netif_carrier_off(sdata->dev);
1841
Eliad Peller88bc40e2012-07-12 17:35:33 +03001842 /*
1843 * if we want to get out of ps before disassoc (why?) we have
1844 * to do it before sending disassoc, as otherwise the null-packet
1845 * won't be valid.
1846 */
1847 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1848 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1849 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1850 }
1851 local->ps_sdata = NULL;
1852
Eliad Pellerab095872012-07-27 12:33:22 +03001853 /* disable per-vif ps */
1854 ieee80211_recalc_ps_vif(sdata);
1855
Eliad Pellerf8239812012-06-27 14:18:22 +03001856 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1857 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001858 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001859
Johannes Berg37ad3882012-02-24 13:50:54 +01001860 /* deauthenticate/disassociate now */
1861 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001862 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1863 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001864
1865 /* flush out frame */
1866 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001867 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001868
Eliad Peller88a9e312012-06-01 11:14:03 +03001869 /* clear bssid only after building the needed mgmt frames */
1870 memset(ifmgd->bssid, 0, ETH_ALEN);
1871
Johannes Berg37ad3882012-02-24 13:50:54 +01001872 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001873 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001874
1875 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001876 changed |= ieee80211_reset_erp_info(sdata);
1877
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001878 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001879 changed |= BSS_CHANGED_ASSOC;
1880 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001881
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001882 ifmgd->p2p_noa_index = -1;
1883 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1884 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001885
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001886 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001887 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1888 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001889 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1890 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001891
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001892 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301893
Kalle Valo520eb822008-12-18 23:35:27 +02001894 del_timer_sync(&local->dynamic_ps_timer);
1895 cancel_work_sync(&local->dynamic_ps_enable_work);
1896
Juuso Oikarinen68542962010-06-09 13:43:26 +03001897 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001898 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001899 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001900
Johannes Berg3abead52012-03-02 15:56:59 +01001901 sdata->vif.bss_conf.qos = false;
1902 changed |= BSS_CHANGED_QOS;
1903
Johannes Berg0aaffa92010-05-05 15:28:27 +02001904 /* The BSSID (not really interesting) and HT changed */
1905 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001906 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001907
Johannes Berg3abead52012-03-02 15:56:59 +01001908 /* disassociated - set to defaults now */
1909 ieee80211_set_wmm_default(sdata, false);
1910
Johannes Bergb9dcf712010-08-27 12:35:54 +02001911 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1912 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1913 del_timer_sync(&sdata->u.mgd.timer);
1914 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001915
Johannes Berg826262c2012-12-10 16:38:14 +02001916 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001917 sdata->vif.bss_conf.beacon_rate = NULL;
1918
Alexander Bondar989c6502013-05-16 17:34:17 +03001919 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001920
Johannes Berg028e8da02012-11-26 11:57:41 +01001921 ifmgd->flags = 0;
1922 ieee80211_vif_release_channel(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001923}
Jiri Bencf0706e82007-05-05 11:45:53 -07001924
Kalle Valo3cf335d2009-03-22 21:57:06 +02001925void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1926 struct ieee80211_hdr *hdr)
1927{
1928 /*
1929 * We can postpone the mgd.timer whenever receiving unicast frames
1930 * from AP because we know that the connection is working both ways
1931 * at that time. But multicast frames (and hence also beacons) must
1932 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001933 * data idle periods for sending the periodic probe request to the
1934 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001935 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001936 if (is_multicast_ether_addr(hdr->addr1))
1937 return;
1938
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001939 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001940}
Jiri Bencf0706e82007-05-05 11:45:53 -07001941
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001942static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1943{
1944 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001945 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001946
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001947 mutex_lock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001948 if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001949 IEEE80211_STA_CONNECTION_POLL))) {
1950 mutex_unlock(&local->mtx);
1951 return;
1952 }
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001953
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001954 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001955
1956 mutex_lock(&local->iflist_mtx);
1957 ieee80211_recalc_ps(local, -1);
1958 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001959
1960 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001961 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001962
1963 /*
1964 * We've received a probe response, but are not sure whether
1965 * we have or will be receiving any beacons or data, so let's
1966 * schedule the timers again, just in case.
1967 */
1968 ieee80211_sta_reset_beacon_monitor(sdata);
1969
1970 mod_timer(&ifmgd->conn_mon_timer,
1971 round_jiffies_up(jiffies +
1972 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001973out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001974 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001975}
1976
1977void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001978 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001979{
Felix Fietkau75706d02010-12-02 21:01:07 +01001980 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001981 return;
1982
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001983 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1984 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001985 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001986 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001987 else
1988 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001989 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001990 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001991 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001992
1993 if (ack)
1994 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001995}
1996
Maxim Levitskya43abf22009-07-31 18:54:12 +03001997static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1998{
1999 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2000 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04002001 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08002002 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04002003
2004 /*
2005 * Try sending broadcast probe requests for the last three
2006 * probe requests after the first ones failed since some
2007 * buggy APs only support broadcast probe requests.
2008 */
2009 if (ifmgd->probe_send_count >= unicast_limit)
2010 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03002011
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002012 /*
2013 * When the hardware reports an accurate Tx ACK status, it's
2014 * better to send a nullfunc frame instead of a probe request,
2015 * as it will kick us off the AP quickly if we aren't associated
2016 * anymore. The timeout will be reset if the frame is ACKed by
2017 * the AP.
2018 */
Soumik Das992e68b2012-05-20 15:31:13 +05302019 ifmgd->probe_send_count++;
2020
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002021 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
2022 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002023 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002024 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002025 int ssid_len;
2026
Johannes Berg9caf0362012-11-29 01:25:20 +01002027 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002028 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002029 if (WARN_ON_ONCE(ssid == NULL))
2030 ssid_len = 0;
2031 else
2032 ssid_len = ssid[1];
2033
2034 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e2013-01-29 15:02:27 +01002035 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02002036 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01002037 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002038 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03002039
Ben Greear180205b2011-02-04 15:30:24 -08002040 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002041 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05302042 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01002043 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002044}
2045
Johannes Bergb291ba12009-07-10 15:29:03 +02002046static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
2047 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02002048{
Kalle Valo04de8382009-03-22 21:57:35 +02002049 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02002050 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02002051
Johannes Berg9607e6b2009-12-23 13:15:31 +01002052 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02002053 return;
2054
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002055 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002056
2057 if (!ifmgd->associated)
2058 goto out;
2059
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02002060 mutex_lock(&sdata->local->mtx);
2061
2062 if (sdata->local->tmp_channel || sdata->local->scanning) {
2063 mutex_unlock(&sdata->local->mtx);
2064 goto out;
2065 }
2066
Ben Greeara13fbe52013-03-25 11:19:35 -07002067 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002068 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07002069 "detected beacon loss from AP (missed %d beacons) - probing\n",
2070 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002071
Ben Greeara13fbe52013-03-25 11:19:35 -07002072 ieee80211_cqm_rssi_notify(&sdata->vif,
2073 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
2074 GFP_KERNEL);
2075 }
Kalle Valo04de8382009-03-22 21:57:35 +02002076
Johannes Bergb291ba12009-07-10 15:29:03 +02002077 /*
2078 * The driver/our work has already reported this event or the
2079 * connection monitoring has kicked in and we have already sent
2080 * a probe request. Or maybe the AP died and the driver keeps
2081 * reporting until we disassociate...
2082 *
2083 * In either case we have to ignore the current call to this
2084 * function (except for setting the correct probe reason bit)
2085 * because otherwise we would reset the timer every time and
2086 * never check whether we received a probe response!
2087 */
2088 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2089 IEEE80211_STA_CONNECTION_POLL))
2090 already = true;
2091
2092 if (beacon)
2093 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
2094 else
2095 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
2096
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02002097 mutex_unlock(&sdata->local->mtx);
2098
Johannes Bergb291ba12009-07-10 15:29:03 +02002099 if (already)
2100 goto out;
2101
Johannes Berg4e751842009-06-10 15:16:52 +02002102 mutex_lock(&sdata->local->iflist_mtx);
2103 ieee80211_recalc_ps(sdata->local, -1);
2104 mutex_unlock(&sdata->local->iflist_mtx);
2105
Maxim Levitskya43abf22009-07-31 18:54:12 +03002106 ifmgd->probe_send_count = 0;
2107 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002108 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002109 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02002110}
2111
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002112struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
2113 struct ieee80211_vif *vif)
2114{
2115 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2116 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002117 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002118 struct sk_buff *skb;
2119 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002120 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002121
2122 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2123 return NULL;
2124
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002125 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002126
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002127 if (ifmgd->associated)
2128 cbss = ifmgd->associated;
2129 else if (ifmgd->auth_data)
2130 cbss = ifmgd->auth_data->bss;
2131 else if (ifmgd->assoc_data)
2132 cbss = ifmgd->assoc_data->bss;
2133 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002134 return NULL;
2135
Johannes Berg9caf0362012-11-29 01:25:20 +01002136 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002137 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002138 if (WARN_ON_ONCE(ssid == NULL))
2139 ssid_len = 0;
2140 else
2141 ssid_len = ssid[1];
2142
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002143 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02002144 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02002145 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02002146 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01002147 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002148
2149 return skb;
2150}
2151EXPORT_SYMBOL(ieee80211_ap_probereq_get);
2152
Johannes Bergeef9e542013-01-29 13:09:34 +01002153static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002154{
2155 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02002156 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002157
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002158 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002159 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002160 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002161 return;
2162 }
2163
Johannes Berg37ad3882012-02-24 13:50:54 +01002164 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2165 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01002166 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02002167 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002168 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01002169 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002170 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02002171
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002172 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
2173 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002174 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002175}
2176
Johannes Bergcc74c0c2012-08-01 16:49:34 +02002177static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02002178{
2179 struct ieee80211_sub_if_data *sdata =
2180 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002181 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002182 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2183 struct sta_info *sta;
2184
2185 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302186 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002187 sta = sta_info_get(sdata, ifmgd->bssid);
2188 if (sta)
2189 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302190 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002191 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002192
Johannes Berg682bd382013-01-29 13:13:50 +01002193 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002194 sdata_info(sdata, "Connection to AP %pM lost\n",
2195 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002196 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002197 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002198 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002199 }
2200}
2201
2202static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2203{
2204 struct ieee80211_sub_if_data *sdata =
2205 container_of(work, struct ieee80211_sub_if_data,
2206 u.mgd.csa_connection_drop_work);
2207
Johannes Bergeef9e542013-01-29 13:09:34 +01002208 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002209}
2210
Kalle Valo04de8382009-03-22 21:57:35 +02002211void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2212{
2213 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002214 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002215
Johannes Bergb5878a22010-04-07 16:48:40 +02002216 trace_api_beacon_loss(sdata);
2217
Johannes Berg682bd382013-01-29 13:13:50 +01002218 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002219 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002220}
2221EXPORT_SYMBOL(ieee80211_beacon_loss);
2222
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002223void ieee80211_connection_loss(struct ieee80211_vif *vif)
2224{
2225 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2226 struct ieee80211_hw *hw = &sdata->local->hw;
2227
Johannes Bergb5878a22010-04-07 16:48:40 +02002228 trace_api_connection_loss(sdata);
2229
Johannes Berg682bd382013-01-29 13:13:50 +01002230 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002231 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2232}
2233EXPORT_SYMBOL(ieee80211_connection_loss);
2234
2235
Johannes Berg66e67e42012-01-20 13:55:27 +01002236static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2237 bool assoc)
2238{
2239 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2240
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002241 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002242
Johannes Berg66e67e42012-01-20 13:55:27 +01002243 if (!assoc) {
2244 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2245
2246 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2247 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002248 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002249 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002250 }
2251
Johannes Berg5b112d32013-02-01 01:49:58 +01002252 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002253 kfree(auth_data);
2254 sdata->u.mgd.auth_data = NULL;
2255}
2256
2257static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2258 struct ieee80211_mgmt *mgmt, size_t len)
2259{
Johannes Berg1672c0e2013-01-29 15:02:27 +01002260 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002261 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2262 u8 *pos;
2263 struct ieee802_11_elems elems;
Johannes Berg1672c0e2013-01-29 15:02:27 +01002264 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002265
2266 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002267 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002268 if (!elems.challenge)
2269 return;
2270 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002271 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e2013-01-29 15:02:27 +01002272 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2273 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2274 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002275 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002276 elems.challenge - 2, elems.challenge_len + 2,
2277 auth_data->bss->bssid, auth_data->bss->bssid,
2278 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e2013-01-29 15:02:27 +01002279 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002280}
2281
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002282static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2283 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002284{
2285 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2286 u8 bssid[ETH_ALEN];
2287 u16 auth_alg, auth_transaction, status_code;
2288 struct sta_info *sta;
2289
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002290 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002291
2292 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002293 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002294
2295 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002296 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002297
2298 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2299
Joe Perchesb203ca32012-05-08 18:56:52 +00002300 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002301 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002302
2303 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2304 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2305 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2306
2307 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002308 auth_transaction != ifmgd->auth_data->expected_transaction) {
2309 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2310 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2311 auth_transaction,
2312 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002313 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002314 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002315
2316 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002317 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2318 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002319 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002320 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002321 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002322 }
2323
2324 switch (ifmgd->auth_data->algorithm) {
2325 case WLAN_AUTH_OPEN:
2326 case WLAN_AUTH_LEAP:
2327 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002328 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002329 break;
2330 case WLAN_AUTH_SHARED_KEY:
2331 if (ifmgd->auth_data->expected_transaction != 4) {
2332 ieee80211_auth_challenge(sdata, mgmt, len);
2333 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002334 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002335 }
2336 break;
2337 default:
2338 WARN_ONCE(1, "invalid auth alg %d",
2339 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002340 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002341 }
2342
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002343 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002344 ifmgd->auth_data->done = true;
2345 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002346 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002347 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002348
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002349 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2350 ifmgd->auth_data->expected_transaction != 2) {
2351 /*
2352 * Report auth frame to user space for processing since another
2353 * round of Authentication frames is still needed.
2354 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002355 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002356 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002357 }
2358
Johannes Berg66e67e42012-01-20 13:55:27 +01002359 /* move station state to auth */
2360 mutex_lock(&sdata->local->sta_mtx);
2361 sta = sta_info_get(sdata, bssid);
2362 if (!sta) {
2363 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2364 goto out_err;
2365 }
2366 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002367 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002368 goto out_err;
2369 }
2370 mutex_unlock(&sdata->local->sta_mtx);
2371
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002372 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002373 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002374 out_err:
2375 mutex_unlock(&sdata->local->sta_mtx);
2376 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002377}
2378
2379
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002380static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2381 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002382{
Johannes Berg46900292009-02-15 12:44:28 +01002383 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002384 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002385 u16 reason_code;
2386
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002387 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002388
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002389 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002390 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002391
Johannes Berg66e67e42012-01-20 13:55:27 +01002392 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002393 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002394 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002395
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002396 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002397
2398 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2399
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002400 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2401 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002402
Johannes Berg37ad3882012-02-24 13:50:54 +01002403 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2404
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002405 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002406}
2407
2408
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002409static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2410 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002411{
Johannes Berg46900292009-02-15 12:44:28 +01002412 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002413 u16 reason_code;
2414
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002415 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002416
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002417 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002418 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002419
Johannes Berg66e67e42012-01-20 13:55:27 +01002420 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002421 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002422 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002423
2424 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2425
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002426 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2427 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002428
Johannes Berg37ad3882012-02-24 13:50:54 +01002429 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2430
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002431 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002432}
2433
Christian Lamparterc74d0842011-10-15 00:14:49 +02002434static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2435 u8 *supp_rates, unsigned int supp_rates_len,
2436 u32 *rates, u32 *basic_rates,
2437 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002438 int *min_rate, int *min_rate_index,
2439 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002440{
2441 int i, j;
2442
2443 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002444 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002445 bool is_basic = !!(supp_rates[i] & 0x80);
2446
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002447 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002448 *have_higher_than_11mbit = true;
2449
2450 /*
2451 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2452 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2453 *
2454 * Note: Even through the membership selector and the basic
2455 * rate flag share the same bit, they are not exactly
2456 * the same.
2457 */
2458 if (!!(supp_rates[i] & 0x80) &&
2459 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2460 continue;
2461
2462 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002463 struct ieee80211_rate *br;
2464 int brate;
2465
2466 br = &sband->bitrates[j];
2467 if ((rate_flags & br->flags) != rate_flags)
2468 continue;
2469
2470 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2471 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002472 *rates |= BIT(j);
2473 if (is_basic)
2474 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002475 if ((rate * 5) < *min_rate) {
2476 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002477 *min_rate_index = j;
2478 }
2479 break;
2480 }
2481 }
2482 }
2483}
Jiri Bencf0706e82007-05-05 11:45:53 -07002484
Johannes Berg66e67e42012-01-20 13:55:27 +01002485static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2486 bool assoc)
2487{
2488 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2489
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002490 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002491
Johannes Berg66e67e42012-01-20 13:55:27 +01002492 if (!assoc) {
2493 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2494
2495 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2496 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002497 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002498 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002499 }
2500
2501 kfree(assoc_data);
2502 sdata->u.mgd.assoc_data = NULL;
2503}
2504
2505static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2506 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002507 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002508{
Johannes Berg46900292009-02-15 12:44:28 +01002509 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002510 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002511 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002512 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002513 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002514 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002515 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002516 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002517 const struct cfg80211_bss_ies *bss_ies = NULL;
2518 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002519 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002520 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002521 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002522
Johannes Bergaf6b6372009-12-23 13:15:35 +01002523 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002524
Jiri Bencf0706e82007-05-05 11:45:53 -07002525 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002526 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002527
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002528 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002529 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2530 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002531 aid &= ~(BIT(15) | BIT(14));
2532
Johannes Berg05cb9102011-10-28 11:59:47 +02002533 ifmgd->broken_ap = false;
2534
2535 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002536 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2537 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002538 aid = 0;
2539 ifmgd->broken_ap = true;
2540 }
2541
Johannes Bergaf6b6372009-12-23 13:15:35 +01002542 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002543 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002544
Jiri Bencf0706e82007-05-05 11:45:53 -07002545 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002546 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002547 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002548 }
2549
Johannes Berg46900292009-02-15 12:44:28 +01002550 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002551
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002552 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002553 * Some APs are erroneously not including some information in their
2554 * (re)association response frames. Try to recover by using the data
2555 * from the beacon or probe response. This seems to afflict mobile
2556 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2557 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2558 */
2559 if ((assoc_data->wmm && !elems.wmm_param) ||
2560 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2561 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2562 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2563 (!elems.vht_cap_elem || !elems.vht_operation))) {
2564 const struct cfg80211_bss_ies *ies;
2565 struct ieee802_11_elems bss_elems;
2566
2567 rcu_read_lock();
2568 ies = rcu_dereference(cbss->ies);
2569 if (ies)
2570 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2571 GFP_ATOMIC);
2572 rcu_read_unlock();
2573 if (!bss_ies)
2574 return false;
2575
2576 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2577 false, &bss_elems);
2578 if (assoc_data->wmm &&
2579 !elems.wmm_param && bss_elems.wmm_param) {
2580 elems.wmm_param = bss_elems.wmm_param;
2581 sdata_info(sdata,
2582 "AP bug: WMM param missing from AssocResp\n");
2583 }
2584
2585 /*
2586 * Also check if we requested HT/VHT, otherwise the AP doesn't
2587 * have to include the IEs in the (re)association response.
2588 */
2589 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2590 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2591 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2592 sdata_info(sdata,
2593 "AP bug: HT capability missing from AssocResp\n");
2594 }
2595 if (!elems.ht_operation && bss_elems.ht_operation &&
2596 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2597 elems.ht_operation = bss_elems.ht_operation;
2598 sdata_info(sdata,
2599 "AP bug: HT operation missing from AssocResp\n");
2600 }
2601 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2602 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2603 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2604 sdata_info(sdata,
2605 "AP bug: VHT capa missing from AssocResp\n");
2606 }
2607 if (!elems.vht_operation && bss_elems.vht_operation &&
2608 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2609 elems.vht_operation = bss_elems.vht_operation;
2610 sdata_info(sdata,
2611 "AP bug: VHT operation missing from AssocResp\n");
2612 }
2613 }
2614
2615 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002616 * We previously checked these in the beacon/probe response, so
2617 * they should be present here. This is just a safety net.
2618 */
2619 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2620 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2621 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002622 "HT AP is missing WMM params or HT capability/operation\n");
2623 ret = false;
2624 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002625 }
2626
2627 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2628 (!elems.vht_cap_elem || !elems.vht_operation)) {
2629 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002630 "VHT AP is missing VHT capability/operation\n");
2631 ret = false;
2632 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002633 }
2634
Guy Eilam2a33bee2011-08-17 15:18:15 +03002635 mutex_lock(&sdata->local->sta_mtx);
2636 /*
2637 * station info was already allocated and inserted before
2638 * the association and should be available to us
2639 */
Johannes Berg7852e362012-01-20 13:55:24 +01002640 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002641 if (WARN_ON(!sta)) {
2642 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002643 ret = false;
2644 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002645 }
2646
Johannes Berg55de9082012-07-26 17:24:39 +02002647 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002648
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002649 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002650 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002651 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002652 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002653
Mahesh Palivela818255e2012-10-10 11:33:04 +00002654 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2655 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002656 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002657
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002658 /*
2659 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2660 * in their association response, so ignore that data for our own
2661 * configuration. If it changed since the last beacon, we'll get the
2662 * next beacon and update then.
2663 */
Johannes Berg11289582013-02-07 17:36:12 +01002664
Johannes Bergbee7f582013-02-07 22:24:55 +01002665 /*
2666 * If an operating mode notification IE is present, override the
2667 * NSS calculation (that would be done in rate_control_rate_init())
2668 * and use the # of streams from that element.
2669 */
2670 if (elems.opmode_notif &&
2671 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2672 u8 nss;
2673
2674 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2675 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2676 nss += 1;
2677 sta->sta.rx_nss = nss;
2678 }
2679
Johannes Berg4b7679a2008-09-18 18:14:18 +02002680 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002681
Johannes Berg46900292009-02-15 12:44:28 +01002682 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002683 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002684
Johannes Bergddf4ac52008-10-22 11:41:38 +02002685 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002686 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002687
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002688 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002689 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2690 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2691 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002692 sdata_info(sdata,
2693 "failed to move station %pM to desired state\n",
2694 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002695 WARN_ON(__sta_info_destroy(sta));
2696 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002697 ret = false;
2698 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002699 }
2700
Johannes Berg7852e362012-01-20 13:55:24 +01002701 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002702
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002703 /*
2704 * Always handle WMM once after association regardless
2705 * of the first value the AP uses. Setting -1 here has
2706 * that effect because the AP values is an unsigned
2707 * 4-bit value.
2708 */
2709 ifmgd->wmm_last_param_set = -1;
2710
Johannes Bergddf4ac52008-10-22 11:41:38 +02002711 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002712 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002713 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002714 else
Johannes Berg3abead52012-03-02 15:56:59 +01002715 ieee80211_set_wmm_default(sdata, false);
2716 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002717
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002718 /* set AID and assoc capability,
2719 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002720 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002721 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002722 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002723
Kalle Valo15b7b062009-03-22 21:57:14 +02002724 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002725 * If we're using 4-addr mode, let the AP know that we're
2726 * doing so, so that it can create the STA VLAN on its side
2727 */
2728 if (ifmgd->use_4addr)
2729 ieee80211_send_4addr_nullfunc(local, sdata);
2730
2731 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002732 * Start timer to probe the connection to the AP now.
2733 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002734 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002735 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002736 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002737
Johannes Berg35d865a2013-05-28 10:54:03 +02002738 ret = true;
2739 out:
2740 kfree(bss_ies);
2741 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002742}
2743
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002744static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2745 struct ieee80211_mgmt *mgmt,
2746 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002747{
2748 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2749 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2750 u16 capab_info, status_code, aid;
2751 struct ieee802_11_elems elems;
2752 u8 *pos;
2753 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002754 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002755
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002756 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002757
2758 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002759 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002760 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002761 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002762
2763 /*
2764 * AssocResp and ReassocResp have identical structure, so process both
2765 * of them in this function.
2766 */
2767
2768 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002769 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002770
2771 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2772 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2773 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2774 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2775
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002776 sdata_info(sdata,
2777 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2778 reassoc ? "Rea" : "A", mgmt->sa,
2779 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002780
2781 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002782 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002783
2784 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002785 elems.timeout_int &&
2786 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002787 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002788 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002789 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002790 sdata_info(sdata,
2791 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2792 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002793 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002794 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002795 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002796 run_again(sdata, assoc_data->timeout);
2797 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002798 }
2799
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002800 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002801
2802 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002803 sdata_info(sdata, "%pM denied association (code=%d)\n",
2804 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002805 ieee80211_destroy_assoc_data(sdata, false);
2806 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002807 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002808 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002809 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002810 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002811 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002812 }
John W. Linville635d9992012-07-09 16:34:34 -04002813 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002814
2815 /*
2816 * destroy assoc_data afterwards, as otherwise an idle
2817 * recalc after assoc_data is NULL but before associated
2818 * is set can cause the interface to go idle
2819 */
2820 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002821 }
2822
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002823 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002824}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002825
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002826static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002827 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002828 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002829 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002830{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002831 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002832 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002833 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002834 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002835
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002836 sdata_assert_lock(sdata);
Johannes Bergb4f286a2013-03-26 14:13:58 +01002837
Johannes Berg1cd8e882013-03-27 14:30:12 +01002838 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002839 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2840 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002841 else
2842 freq = rx_status->freq;
2843
2844 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2845
2846 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2847 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002848
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002849 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002850 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002851 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002852 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002853 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2854 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002855
Johannes Berg37799e52013-03-26 14:02:26 +01002856 if (!sdata->u.mgd.associated ||
2857 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.associated->bssid))
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002858 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002859
Johannes Berg04a161f2013-05-03 09:35:35 +02002860 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2861 elems, true);
Johannes Bergb4f286a2013-03-26 14:13:58 +01002862
Jiri Bencf0706e82007-05-05 11:45:53 -07002863}
2864
2865
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002866static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002867 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002868{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002869 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002870 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002871 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2872 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002873 struct ieee802_11_elems elems;
2874
Kalle Valo15b7b062009-03-22 21:57:14 +02002875 ifmgd = &sdata->u.mgd;
2876
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002877 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002878
Joe Perchesb203ca32012-05-08 18:56:52 +00002879 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002880 return; /* ignore ProbeResp to foreign address */
2881
Ester Kummerae6a44e2008-06-27 18:54:48 +03002882 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2883 if (baselen > len)
2884 return;
2885
2886 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002887 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002888
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002889 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002890
Johannes Berg77fdaa12009-07-07 03:45:17 +02002891 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002892 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002893 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002894
2895 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002896 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002897 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002898 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002899 ifmgd->auth_data->tries = 0;
2900 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002901 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002902 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002903 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002904}
2905
Johannes Bergd91f36d2009-04-16 13:17:26 +02002906/*
2907 * This is the canonical list of information elements we care about,
2908 * the filter code also gives us all changes to the Microsoft OUI
2909 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2910 *
2911 * We implement beacon filtering in software since that means we can
2912 * avoid processing the frame here and in cfg80211, and userspace
2913 * will not be able to tell whether the hardware supports it or not.
2914 *
2915 * XXX: This list needs to be dynamic -- userspace needs to be able to
2916 * add items it requires. It also needs to be able to tell us to
2917 * look out for other vendor IEs.
2918 */
2919static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002920 (1ULL << WLAN_EID_COUNTRY) |
2921 (1ULL << WLAN_EID_ERP_INFO) |
2922 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2923 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2924 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002925 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002926
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002927static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2928 struct ieee80211_mgmt *mgmt, size_t len,
2929 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002930{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002931 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002932 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002933 size_t baselen;
2934 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002935 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002936 struct ieee80211_chanctx_conf *chanctx_conf;
2937 struct ieee80211_channel *chan;
Johannes Bergbee7f582013-02-07 22:24:55 +01002938 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002939 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002940 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002941 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002942 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002943 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002944 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002945
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002946 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002947
Ester Kummerae6a44e2008-06-27 18:54:48 +03002948 /* Process beacon from the current BSS */
2949 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2950 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002951 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002952
Johannes Berg55de9082012-07-26 17:24:39 +02002953 rcu_read_lock();
2954 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2955 if (!chanctx_conf) {
2956 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002957 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002958 }
2959
Johannes Berg4bf88532012-11-09 11:39:59 +01002960 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002961 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002962 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002963 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002964 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002965 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002966
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002967 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002968 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002969 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002970 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002971
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002972 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002973 if (elems.tim && !elems.parse_error) {
2974 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2975 ifmgd->dtim_period = tim_ie->dtim_period;
2976 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002977 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002978 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002979 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2980 sdata->vif.bss_conf.sync_tsf =
2981 le64_to_cpu(mgmt->u.beacon.timestamp);
2982 sdata->vif.bss_conf.sync_device_ts =
2983 rx_status->device_timestamp;
2984 if (elems.tim)
2985 sdata->vif.bss_conf.sync_dtim_count =
2986 elems.tim->dtim_count;
2987 else
2988 sdata->vif.bss_conf.sync_dtim_count = 0;
2989 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002990 /* continue assoc process */
2991 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002992 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002993 run_again(sdata, ifmgd->assoc_data->timeout);
2994 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002995 }
2996
2997 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002998 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002999 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003000 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003001
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003002 /* Track average RSSI from the Beacon frames of the current AP */
3003 ifmgd->last_beacon_signal = rx_status->signal;
3004 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
3005 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03003006 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003007 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03003008 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003009 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003010 } else {
3011 ifmgd->ave_beacon_signal =
3012 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
3013 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
3014 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03003015 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003016 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003017
3018 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
3019 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
3020 int sig = ifmgd->ave_beacon_signal;
3021 int last_sig = ifmgd->last_ave_beacon_signal;
3022
3023 /*
3024 * if signal crosses either of the boundaries, invoke callback
3025 * with appropriate parameters
3026 */
3027 if (sig > ifmgd->rssi_max_thold &&
3028 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
3029 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02003030 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003031 } else if (sig < ifmgd->rssi_min_thold &&
3032 (last_sig >= ifmgd->rssi_max_thold ||
3033 last_sig == 0)) {
3034 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02003035 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003036 }
3037 }
3038
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003039 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03003040 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01003041 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003042 int sig = ifmgd->ave_beacon_signal / 16;
3043 int last_event = ifmgd->last_cqm_event_signal;
3044 int thold = bss_conf->cqm_rssi_thold;
3045 int hyst = bss_conf->cqm_rssi_hyst;
3046 if (sig < thold &&
3047 (last_event == 0 || sig < last_event - hyst)) {
3048 ifmgd->last_cqm_event_signal = sig;
3049 ieee80211_cqm_rssi_notify(
3050 &sdata->vif,
3051 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
3052 GFP_KERNEL);
3053 } else if (sig > thold &&
3054 (last_event == 0 || sig > last_event + hyst)) {
3055 ifmgd->last_cqm_event_signal = sig;
3056 ieee80211_cqm_rssi_notify(
3057 &sdata->vif,
3058 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
3059 GFP_KERNEL);
3060 }
3061 }
3062
Johannes Bergb291ba12009-07-10 15:29:03 +02003063 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003064 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01003065 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003066 mutex_lock(&local->mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02003067 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003068 ieee80211_run_deferred_scan(local);
3069 mutex_unlock(&local->mtx);
3070
Johannes Berg4e751842009-06-10 15:16:52 +02003071 mutex_lock(&local->iflist_mtx);
3072 ieee80211_recalc_ps(local, -1);
3073 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03003074 }
3075
Johannes Bergb291ba12009-07-10 15:29:03 +02003076 /*
3077 * Push the beacon loss detection into the future since
3078 * we are processing a beacon from the AP just now.
3079 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04003080 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003081
Johannes Bergd91f36d2009-04-16 13:17:26 +02003082 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
3083 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003084 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02003085 care_about_ies, ncrc);
3086
Vivek Natarajan25c9c872009-03-02 20:20:30 +05303087 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02003088 bool directed_tim = ieee80211_check_tim(elems.tim,
3089 elems.tim_len,
3090 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02003091 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02003092 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01003093 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
3094 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
3095 ieee80211_hw_config(local,
3096 IEEE80211_CONF_CHANGE_PS);
3097 }
Kalle Valo572e0012009-02-10 17:09:31 +02003098 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05303099 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02003100 local->pspolling = true;
3101
3102 /*
3103 * Here is assumed that the driver will be
3104 * able to send ps-poll frame and receive a
3105 * response even though power save mode is
3106 * enabled, but some drivers might require
3107 * to disable power save here. This needs
3108 * to be investigated.
3109 */
3110 ieee80211_send_pspoll(local, sdata);
3111 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08003112 }
3113 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003114
Johannes Berg488dd7b2012-10-29 20:08:01 +01003115 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003116 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01003117 int ret;
3118
3119 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
3120 len - baselen,
3121 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01003122 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003123 if (ret >= 2) {
3124 if (sdata->u.mgd.p2p_noa_index != noa.index) {
3125 /* valid noa_attr and index changed */
3126 sdata->u.mgd.p2p_noa_index = noa.index;
3127 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
3128 changed |= BSS_CHANGED_P2P_PS;
3129 /*
3130 * make sure we update all information, the CRC
3131 * mechanism doesn't look at P2P attributes.
3132 */
3133 ifmgd->beacon_crc_valid = false;
3134 }
3135 } else if (sdata->u.mgd.p2p_noa_index != -1) {
3136 /* noa_attr not found and we had valid noa_attr before */
3137 sdata->u.mgd.p2p_noa_index = -1;
3138 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01003139 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01003140 ifmgd->beacon_crc_valid = false;
3141 }
3142 }
3143
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003144 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003145 return;
Jouni Malinen30196672009-05-19 17:01:43 +03003146 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003147 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03003148
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02003149 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02003150
3151 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
3152 elems.wmm_param_len))
3153 changed |= BSS_CHANGED_QOS;
3154
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003155 /*
3156 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01003157 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003158 */
Alexander Bondar989c6502013-05-16 17:34:17 +03003159 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003160 /* a few bogus AP send dtim_period = 0 or no TIM IE */
3161 if (elems.tim)
3162 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
3163 else
3164 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01003165
3166 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
3167 sdata->vif.bss_conf.sync_tsf =
3168 le64_to_cpu(mgmt->u.beacon.timestamp);
3169 sdata->vif.bss_conf.sync_device_ts =
3170 rx_status->device_timestamp;
3171 if (elems.tim)
3172 sdata->vif.bss_conf.sync_dtim_count =
3173 elems.tim->dtim_count;
3174 else
3175 sdata->vif.bss_conf.sync_dtim_count = 0;
3176 }
3177
Alexander Bondar989c6502013-05-16 17:34:17 +03003178 changed |= BSS_CHANGED_BEACON_INFO;
3179 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03003180
3181 mutex_lock(&local->iflist_mtx);
3182 ieee80211_recalc_ps(local, -1);
3183 mutex_unlock(&local->iflist_mtx);
3184
Alexander Bondarce857882013-05-06 17:17:04 +03003185 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003186 }
3187
Johannes Berg1946bed2013-03-27 14:31:53 +01003188 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02003189 erp_valid = true;
3190 erp_value = elems.erp_info[0];
3191 } else {
3192 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003193 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003194 changed |= ieee80211_handle_bss_capability(sdata,
3195 le16_to_cpu(mgmt->u.beacon.capab_info),
3196 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003197
Johannes Berg11289582013-02-07 17:36:12 +01003198 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f582013-02-07 22:24:55 +01003199 sta = sta_info_get(sdata, bssid);
3200
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003201 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3202 elems.vht_operation, bssid, &changed)) {
3203 mutex_unlock(&local->sta_mtx);
3204 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3205 WLAN_REASON_DEAUTH_LEAVING,
3206 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003207 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3208 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003209 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003210 }
Johannes Bergbee7f582013-02-07 22:24:55 +01003211
3212 if (sta && elems.opmode_notif)
3213 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3214 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003215 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003216
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003217 if (elems.country_elem && elems.pwr_constr_elem &&
3218 mgmt->u.probe_resp.capab_info &
3219 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003220 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3221 elems.country_elem,
3222 elems.country_elem_len,
3223 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003224
Johannes Berg471b3ef2007-12-28 14:32:58 +01003225 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003226}
3227
Johannes Berg1fa57d02010-06-10 10:21:32 +02003228void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3229 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003230{
3231 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003232 struct ieee80211_mgmt *mgmt;
3233 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003234 struct ieee802_11_elems elems;
3235 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003236
Jiri Bencf0706e82007-05-05 11:45:53 -07003237 rx_status = (struct ieee80211_rx_status *) skb->cb;
3238 mgmt = (struct ieee80211_mgmt *) skb->data;
3239 fc = le16_to_cpu(mgmt->frame_control);
3240
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003241 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003242
Johannes Berg66e67e42012-01-20 13:55:27 +01003243 switch (fc & IEEE80211_FCTL_STYPE) {
3244 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003245 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003246 break;
3247 case IEEE80211_STYPE_PROBE_RESP:
3248 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3249 break;
3250 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003251 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003252 break;
3253 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003254 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003255 break;
3256 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003257 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003258 break;
3259 case IEEE80211_STYPE_ASSOC_RESP:
3260 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003261 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003262 break;
3263 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003264 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003265 ies_len = skb->len -
3266 offsetof(struct ieee80211_mgmt,
3267 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003268
3269 if (ies_len < 0)
3270 break;
3271
3272 ieee802_11_parse_elems(
3273 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003274 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003275
3276 if (elems.parse_error)
3277 break;
3278
Johannes Berg66e67e42012-01-20 13:55:27 +01003279 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003280 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003281 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003282 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3283 ies_len = skb->len -
3284 offsetof(struct ieee80211_mgmt,
3285 u.action.u.ext_chan_switch.variable);
3286
3287 if (ies_len < 0)
3288 break;
3289
3290 ieee802_11_parse_elems(
3291 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003292 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003293
3294 if (elems.parse_error)
3295 break;
3296
3297 /* for the handling code pretend this was also an IE */
3298 elems.ext_chansw_ie =
3299 &mgmt->u.action.u.ext_chan_switch.data;
3300
3301 ieee80211_sta_process_chanswitch(sdata,
3302 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003303 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003304 }
Johannes Berg37799e52013-03-26 14:02:26 +01003305 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003306 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003307 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003308}
3309
Johannes Berg9c6bd792008-09-11 00:01:52 +02003310static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003311{
3312 struct ieee80211_sub_if_data *sdata =
3313 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003314
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003315 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003316}
3317
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003318static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003319 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003320{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003321 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003322
Johannes Berg37ad3882012-02-24 13:50:54 +01003323 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003324 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003325
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003326 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3327 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003328}
3329
Johannes Berg66e67e42012-01-20 13:55:27 +01003330static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3331{
3332 struct ieee80211_local *local = sdata->local;
3333 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3334 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e2013-01-29 15:02:27 +01003335 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003336
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003337 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003338
3339 if (WARN_ON_ONCE(!auth_data))
3340 return -EINVAL;
3341
Johannes Berg66e67e42012-01-20 13:55:27 +01003342 auth_data->tries++;
3343
3344 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003345 sdata_info(sdata, "authentication with %pM timed out\n",
3346 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003347
3348 /*
3349 * Most likely AP is not in the range so remove the
3350 * bss struct for that AP.
3351 */
3352 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3353
3354 return -ETIMEDOUT;
3355 }
3356
Johannes Berga1845fc2012-06-27 13:18:36 +02003357 drv_mgd_prepare_tx(local, sdata);
3358
Johannes Berg66e67e42012-01-20 13:55:27 +01003359 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003360 u16 trans = 1;
3361 u16 status = 0;
3362
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003363 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3364 auth_data->bss->bssid, auth_data->tries,
3365 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003366
3367 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003368
3369 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3370 trans = auth_data->sae_trans;
3371 status = auth_data->sae_status;
3372 auth_data->expected_transaction = trans;
3373 }
3374
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003375 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3376 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3377 IEEE80211_TX_INTFL_MLME_CONN_TX;
3378
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003379 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3380 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003381 auth_data->bss->bssid,
Johannes Berg1672c0e2013-01-29 15:02:27 +01003382 auth_data->bss->bssid, NULL, 0, 0,
3383 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003384 } else {
3385 const u8 *ssidie;
3386
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003387 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3388 auth_data->bss->bssid, auth_data->tries,
3389 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003390
Johannes Berg9caf0362012-11-29 01:25:20 +01003391 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003392 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003393 if (!ssidie) {
3394 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003395 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003396 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003397 /*
3398 * Direct probe is sent to broadcast address as some APs
3399 * will not answer to direct packet in unassociated state.
3400 */
3401 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003402 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003403 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003404 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003405 }
3406
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003407 if (tx_flags == 0) {
Johannes Berg1672c0e2013-01-29 15:02:27 +01003408 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003409 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003410 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003411 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003412 auth_data->timeout =
3413 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3414 auth_data->timeout_started = true;
3415 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e2013-01-29 15:02:27 +01003416 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003417
3418 return 0;
3419}
3420
3421static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3422{
3423 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3424 struct ieee80211_local *local = sdata->local;
3425
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003426 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003427
Johannes Berg66e67e42012-01-20 13:55:27 +01003428 assoc_data->tries++;
3429 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003430 sdata_info(sdata, "association with %pM timed out\n",
3431 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003432
3433 /*
3434 * Most likely AP is not in the range so remove the
3435 * bss struct for that AP.
3436 */
3437 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3438
3439 return -ETIMEDOUT;
3440 }
3441
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003442 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3443 assoc_data->bss->bssid, assoc_data->tries,
3444 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003445 ieee80211_send_assoc(sdata);
3446
Johannes Berg1672c0e2013-01-29 15:02:27 +01003447 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3448 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003449 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003450 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003451 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003452 assoc_data->timeout =
3453 round_jiffies_up(jiffies +
3454 IEEE80211_ASSOC_TIMEOUT_LONG);
3455 assoc_data->timeout_started = true;
3456 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e2013-01-29 15:02:27 +01003457 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003458
3459 return 0;
3460}
3461
Johannes Berg1672c0e2013-01-29 15:02:27 +01003462void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3463 __le16 fc, bool acked)
3464{
3465 struct ieee80211_local *local = sdata->local;
3466
3467 sdata->u.mgd.status_fc = fc;
3468 sdata->u.mgd.status_acked = acked;
3469 sdata->u.mgd.status_received = true;
3470
3471 ieee80211_queue_work(&local->hw, &sdata->work);
3472}
3473
Johannes Berg1fa57d02010-06-10 10:21:32 +02003474void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02003475{
Johannes Berg60f8b392008-09-08 17:44:22 +02003476 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003477 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003478
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003479 sdata_lock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003480
Johannes Berg1672c0e2013-01-29 15:02:27 +01003481 if (ifmgd->status_received) {
3482 __le16 fc = ifmgd->status_fc;
3483 bool status_acked = ifmgd->status_acked;
3484
3485 ifmgd->status_received = false;
3486 if (ifmgd->auth_data &&
3487 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3488 if (status_acked) {
3489 ifmgd->auth_data->timeout =
3490 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003491 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e2013-01-29 15:02:27 +01003492 } else {
3493 ifmgd->auth_data->timeout = jiffies - 1;
3494 }
Johannes Berg89afe612013-02-13 15:39:57 +01003495 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e2013-01-29 15:02:27 +01003496 } else if (ifmgd->assoc_data &&
3497 (ieee80211_is_assoc_req(fc) ||
3498 ieee80211_is_reassoc_req(fc))) {
3499 if (status_acked) {
3500 ifmgd->assoc_data->timeout =
3501 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003502 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e2013-01-29 15:02:27 +01003503 } else {
3504 ifmgd->assoc_data->timeout = jiffies - 1;
3505 }
Johannes Berg89afe612013-02-13 15:39:57 +01003506 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e2013-01-29 15:02:27 +01003507 }
3508 }
3509
Johannes Berg89afe612013-02-13 15:39:57 +01003510 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003511 time_after(jiffies, ifmgd->auth_data->timeout)) {
3512 if (ifmgd->auth_data->done) {
3513 /*
3514 * ok ... we waited for assoc but userspace didn't,
3515 * so let's just kill the auth data
3516 */
3517 ieee80211_destroy_auth_data(sdata, false);
3518 } else if (ieee80211_probe_auth(sdata)) {
3519 u8 bssid[ETH_ALEN];
3520
3521 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3522
3523 ieee80211_destroy_auth_data(sdata, false);
3524
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003525 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003526 }
Johannes Berg89afe612013-02-13 15:39:57 +01003527 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003528 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003529
Johannes Berg89afe612013-02-13 15:39:57 +01003530 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003531 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003532 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003533 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003534 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003535
3536 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003537 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003538 }
Johannes Berg89afe612013-02-13 15:39:57 +01003539 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003540 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003541
Johannes Bergb291ba12009-07-10 15:29:03 +02003542 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
3543 IEEE80211_STA_CONNECTION_POLL) &&
3544 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003545 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003546 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003547
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003548 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003549
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003550 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003551 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003552 else
Ben Greear180205b2011-02-04 15:30:24 -08003553 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003554
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003555 /* ACK received for nullfunc probing frame */
3556 if (!ifmgd->probe_send_count)
3557 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003558 else if (ifmgd->nullfunc_failed) {
3559 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003560 mlme_dbg(sdata,
3561 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3562 bssid, ifmgd->probe_send_count,
3563 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003564 ieee80211_mgd_probe_ap_send(sdata);
3565 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003566 mlme_dbg(sdata,
3567 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3568 bssid);
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,
3571 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003572 }
3573 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003574 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003575 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003576 mlme_dbg(sdata,
3577 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3578 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003579 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003580 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003581 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003582 mlme_dbg(sdata,
3583 "No probe response from AP %pM after %dms, try %d/%i\n",
3584 bssid, probe_wait_ms,
3585 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003586 ieee80211_mgd_probe_ap_send(sdata);
3587 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003588 /*
3589 * We actually lost the connection ... or did we?
3590 * Let's make sure!
3591 */
Ben Greearb38afa82010-10-07 16:12:06 -07003592 wiphy_debug(local->hw.wiphy,
3593 "%s: No probe response from AP %pM"
3594 " after %dms, disconnecting.\n",
3595 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003596 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003597
Johannes Berg95acac62011-07-12 12:30:59 +02003598 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003599 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003600 }
3601 }
3602
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003603 sdata_unlock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003604}
Johannes Berg0a51b272008-09-08 17:44:25 +02003605
Johannes Bergb291ba12009-07-10 15:29:03 +02003606static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3607{
3608 struct ieee80211_sub_if_data *sdata =
3609 (struct ieee80211_sub_if_data *) data;
3610 struct ieee80211_local *local = sdata->local;
3611
3612 if (local->quiescing)
3613 return;
3614
Johannes Berg682bd382013-01-29 13:13:50 +01003615 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003616 ieee80211_queue_work(&sdata->local->hw,
3617 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003618}
3619
3620static void ieee80211_sta_conn_mon_timer(unsigned long data)
3621{
3622 struct ieee80211_sub_if_data *sdata =
3623 (struct ieee80211_sub_if_data *) data;
3624 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3625 struct ieee80211_local *local = sdata->local;
3626
3627 if (local->quiescing)
3628 return;
3629
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003630 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003631}
3632
3633static void ieee80211_sta_monitor_work(struct work_struct *work)
3634{
3635 struct ieee80211_sub_if_data *sdata =
3636 container_of(work, struct ieee80211_sub_if_data,
3637 u.mgd.monitor_work);
3638
3639 ieee80211_mgd_probe_ap(sdata, false);
3640}
3641
Johannes Berga1678f82008-09-11 00:01:47 +02003642static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3643{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003644 u32 flags;
3645
Kalle Vaload935682009-04-19 08:47:19 +03003646 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003647 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003648
Johannes Bergb291ba12009-07-10 15:29:03 +02003649 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003650 flags = sdata->local->hw.flags;
3651 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3652 ieee80211_queue_work(&sdata->local->hw,
3653 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003654 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003655 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003656 }
Johannes Berga1678f82008-09-11 00:01:47 +02003657}
3658
Johannes Bergb8360ab2013-04-29 14:57:44 +02003659#ifdef CONFIG_PM
3660void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3661{
3662 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3663
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003664 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003665 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003666 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003667 return;
3668 }
3669
3670 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3671 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3672 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3673 ieee80211_sta_connection_lost(sdata,
3674 ifmgd->associated->bssid,
3675 WLAN_REASON_UNSPECIFIED,
3676 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003677 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003678 return;
3679 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003680 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003681}
3682#endif
3683
Johannes Berg9c6bd792008-09-11 00:01:52 +02003684/* interface setup */
3685void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3686{
Johannes Berg46900292009-02-15 12:44:28 +01003687 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003688
Johannes Berg46900292009-02-15 12:44:28 +01003689 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003690 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003691 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003692 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3693 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003694 INIT_WORK(&ifmgd->csa_connection_drop_work,
3695 ieee80211_csa_connection_drop_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003696 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01003697 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003698 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003699 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3700 (unsigned long) sdata);
3701 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3702 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003703 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303704 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003705
Johannes Bergab1faea2009-07-01 21:41:17 +02003706 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303707 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003708 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3709 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003710 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003711
Johannes Berg0f782312009-12-01 13:37:02 +01003712 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3713 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3714 else
3715 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003716}
3717
3718/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003719void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3720{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003721 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003722
3723 /* Restart STA timers */
3724 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003725 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3726 if (ieee80211_sdata_running(sdata))
3727 ieee80211_restart_sta_timer(sdata);
3728 }
Johannes Berga1678f82008-09-11 00:01:47 +02003729 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003730}
Johannes Berg10f644a2009-04-16 13:17:25 +02003731
3732int ieee80211_max_network_latency(struct notifier_block *nb,
3733 unsigned long data, void *dummy)
3734{
3735 s32 latency_usec = (s32) data;
3736 struct ieee80211_local *local =
3737 container_of(nb, struct ieee80211_local,
3738 network_latency_notifier);
3739
3740 mutex_lock(&local->iflist_mtx);
3741 ieee80211_recalc_ps(local, latency_usec);
3742 mutex_unlock(&local->iflist_mtx);
3743
3744 return 0;
3745}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003746
Johannes Bergf2d9d272012-11-22 14:11:39 +01003747static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3748 struct cfg80211_bss *cbss)
3749{
3750 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3751 const u8 *ht_cap_ie, *vht_cap_ie;
3752 const struct ieee80211_ht_cap *ht_cap;
3753 const struct ieee80211_vht_cap *vht_cap;
3754 u8 chains = 1;
3755
3756 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3757 return chains;
3758
Johannes Berg9caf0362012-11-29 01:25:20 +01003759 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003760 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3761 ht_cap = (void *)(ht_cap_ie + 2);
3762 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3763 /*
3764 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3765 * "Tx Unequal Modulation Supported" fields.
3766 */
3767 }
3768
3769 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3770 return chains;
3771
Johannes Berg9caf0362012-11-29 01:25:20 +01003772 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003773 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3774 u8 nss;
3775 u16 tx_mcs_map;
3776
3777 vht_cap = (void *)(vht_cap_ie + 2);
3778 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3779 for (nss = 8; nss > 0; nss--) {
3780 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3781 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3782 break;
3783 }
3784 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3785 chains = max(chains, nss);
3786 }
3787
3788 return chains;
3789}
3790
Johannes Bergb17166a2012-07-27 11:41:27 +02003791static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3792 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003793{
3794 struct ieee80211_local *local = sdata->local;
3795 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003796 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003797 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003798 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003799 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003800 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003801
Johannes Berg24398e32012-03-28 10:58:36 +02003802 sband = local->hw.wiphy->bands[cbss->channel->band];
3803
Johannes Bergf2d9d272012-11-22 14:11:39 +01003804 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3805 IEEE80211_STA_DISABLE_80P80MHZ |
3806 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003807
Johannes Berg9caf0362012-11-29 01:25:20 +01003808 rcu_read_lock();
3809
Johannes Bergf2d9d272012-11-22 14:11:39 +01003810 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3811 sband->ht_cap.ht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003812 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003813
Johannes Berg9caf0362012-11-29 01:25:20 +01003814 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003815 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3816 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6eff2013-02-07 23:33:32 +01003817
3818 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3819 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3820 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3821 ht_oper = NULL;
3822 }
Johannes Berg24398e32012-03-28 10:58:36 +02003823 }
3824
Johannes Bergf2d9d272012-11-22 14:11:39 +01003825 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3826 sband->vht_cap.vht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003827 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003828
Johannes Berg9caf0362012-11-29 01:25:20 +01003829 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3830 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003831 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3832 vht_oper = (void *)(vht_oper_ie + 2);
3833 if (vht_oper && !ht_oper) {
3834 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003835 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003836 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003837 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3838 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003839 }
Johannes Berg08e6eff2013-02-07 23:33:32 +01003840
3841 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3842 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3843 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3844 vht_oper = NULL;
3845 }
Johannes Berg24398e32012-03-28 10:58:36 +02003846 }
3847
Johannes Bergf2d9d272012-11-22 14:11:39 +01003848 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3849 cbss->channel,
3850 ht_oper, vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +02003851 &chandef, false);
Johannes Berg04ecd252012-09-11 14:34:12 +02003852
Johannes Bergf2d9d272012-11-22 14:11:39 +01003853 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3854 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003855
Johannes Berg9caf0362012-11-29 01:25:20 +01003856 rcu_read_unlock();
3857
Johannes Berg04ecd252012-09-11 14:34:12 +02003858 /* will change later if needed */
3859 sdata->smps_mode = IEEE80211_SMPS_OFF;
3860
Johannes Bergf2d9d272012-11-22 14:11:39 +01003861 /*
3862 * If this fails (possibly due to channel context sharing
3863 * on incompatible channels, e.g. 80+80 and 160 sharing the
3864 * same control channel) try to use a smaller bandwidth.
3865 */
3866 ret = ieee80211_vif_use_channel(sdata, &chandef,
3867 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003868
3869 /* don't downgrade for 5 and 10 MHz channels, though. */
3870 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3871 chandef.width == NL80211_CHAN_WIDTH_10)
3872 return ret;
3873
Johannes Bergd601cd82013-02-07 20:54:51 +01003874 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Johannes Bergf2d9d272012-11-22 14:11:39 +01003875 ifmgd->flags |= chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003876 ret = ieee80211_vif_use_channel(sdata, &chandef,
3877 IEEE80211_CHANCTX_SHARED);
3878 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003879 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003880}
3881
3882static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3883 struct cfg80211_bss *cbss, bool assoc)
3884{
3885 struct ieee80211_local *local = sdata->local;
3886 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3887 struct ieee80211_bss *bss = (void *)cbss->priv;
3888 struct sta_info *new_sta = NULL;
3889 bool have_sta = false;
3890 int err;
3891
3892 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3893 return -EINVAL;
3894
3895 if (assoc) {
3896 rcu_read_lock();
3897 have_sta = sta_info_get(sdata, cbss->bssid);
3898 rcu_read_unlock();
3899 }
3900
3901 if (!have_sta) {
3902 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3903 if (!new_sta)
3904 return -ENOMEM;
3905 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003906 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003907 u32 rates = 0, basic_rates = 0;
3908 bool have_higher_than_11mbit;
3909 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003910 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003911 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003912 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003913 int shift;
3914 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003915
3916 sband = local->hw.wiphy->bands[cbss->channel->band];
3917
3918 err = ieee80211_prep_channel(sdata, cbss);
3919 if (err) {
3920 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003921 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003922 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003923 shift = ieee80211_vif_get_shift(&sdata->vif);
3924
3925 rcu_read_lock();
3926 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3927 if (WARN_ON(!chanctx_conf)) {
3928 rcu_read_unlock();
3929 return -EINVAL;
3930 }
3931 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3932 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003933
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003934 ieee80211_get_rates(sband, bss->supp_rates,
3935 bss->supp_rates_len,
3936 &rates, &basic_rates,
3937 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003938 &min_rate, &min_rate_index,
3939 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003940
3941 /*
3942 * This used to be a workaround for basic rates missing
3943 * in the association response frame. Now that we no
3944 * longer use the basic rates from there, it probably
3945 * doesn't happen any more, but keep the workaround so
3946 * in case some *other* APs are buggy in different ways
3947 * we can connect -- with a warning.
3948 */
3949 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003950 sdata_info(sdata,
3951 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003952 basic_rates = BIT(min_rate_index);
3953 }
3954
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003955 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003956 sdata->vif.bss_conf.basic_rates = basic_rates;
3957
3958 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003959 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003960 have_higher_than_11mbit)
3961 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3962 else
3963 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3964
3965 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3966
Johannes Berg8c358bc2012-05-22 22:13:05 +02003967 /* set timing information */
3968 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003969 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003970 ies = rcu_dereference(cbss->beacon_ies);
3971 if (ies) {
3972 const u8 *tim_ie;
3973
3974 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3975 sdata->vif.bss_conf.sync_device_ts =
3976 bss->device_ts_beacon;
3977 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3978 ies->data, ies->len);
3979 if (tim_ie && tim_ie[1] >= 2)
3980 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3981 else
3982 sdata->vif.bss_conf.sync_dtim_count = 0;
3983 } else if (!(local->hw.flags &
3984 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3985 ies = rcu_dereference(cbss->proberesp_ies);
3986 /* must be non-NULL since beacon IEs were NULL */
3987 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3988 sdata->vif.bss_conf.sync_device_ts =
3989 bss->device_ts_presp;
3990 sdata->vif.bss_conf.sync_dtim_count = 0;
3991 } else {
3992 sdata->vif.bss_conf.sync_tsf = 0;
3993 sdata->vif.bss_conf.sync_device_ts = 0;
3994 sdata->vif.bss_conf.sync_dtim_count = 0;
3995 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003996 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003997
3998 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003999 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02004000 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
4001 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01004002
4003 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02004004 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01004005
Johannes Berg13e0c8e2012-07-27 10:43:16 +02004006 err = sta_info_insert(new_sta);
4007 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01004008 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004009 sdata_info(sdata,
4010 "failed to insert STA entry for the AP (error %d)\n",
4011 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01004012 return err;
4013 }
4014 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00004015 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01004016
4017 return 0;
4018}
4019
Johannes Berg77fdaa12009-07-07 03:45:17 +02004020/* config hooks */
4021int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
4022 struct cfg80211_auth_request *req)
4023{
Johannes Berg66e67e42012-01-20 13:55:27 +01004024 struct ieee80211_local *local = sdata->local;
4025 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4026 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004027 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01004028 int err;
4029
4030 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02004031
4032 switch (req->auth_type) {
4033 case NL80211_AUTHTYPE_OPEN_SYSTEM:
4034 auth_alg = WLAN_AUTH_OPEN;
4035 break;
4036 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01004037 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02004038 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004039 auth_alg = WLAN_AUTH_SHARED_KEY;
4040 break;
4041 case NL80211_AUTHTYPE_FT:
4042 auth_alg = WLAN_AUTH_FT;
4043 break;
4044 case NL80211_AUTHTYPE_NETWORK_EAP:
4045 auth_alg = WLAN_AUTH_LEAP;
4046 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004047 case NL80211_AUTHTYPE_SAE:
4048 auth_alg = WLAN_AUTH_SAE;
4049 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004050 default:
4051 return -EOPNOTSUPP;
4052 }
4053
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004054 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
4055 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01004056 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004057 return -ENOMEM;
4058
Johannes Berg66e67e42012-01-20 13:55:27 +01004059 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004060
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004061 if (req->sae_data_len >= 4) {
4062 __le16 *pos = (__le16 *) req->sae_data;
4063 auth_data->sae_trans = le16_to_cpu(pos[0]);
4064 auth_data->sae_status = le16_to_cpu(pos[1]);
4065 memcpy(auth_data->data, req->sae_data + 4,
4066 req->sae_data_len - 4);
4067 auth_data->data_len += req->sae_data_len - 4;
4068 }
4069
Johannes Berg77fdaa12009-07-07 03:45:17 +02004070 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004071 memcpy(&auth_data->data[auth_data->data_len],
4072 req->ie, req->ie_len);
4073 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004074 }
4075
Johannes Bergfffd0932009-07-08 14:22:54 +02004076 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004077 auth_data->key_len = req->key_len;
4078 auth_data->key_idx = req->key_idx;
4079 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02004080 }
4081
Johannes Berg66e67e42012-01-20 13:55:27 +01004082 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004083
Johannes Berg66e67e42012-01-20 13:55:27 +01004084 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01004085
Johannes Berg66e67e42012-01-20 13:55:27 +01004086 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
4087 ifmgd->assoc_data) {
4088 err = -EBUSY;
4089 goto err_free;
4090 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004091
Johannes Berg66e67e42012-01-20 13:55:27 +01004092 if (ifmgd->auth_data)
4093 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03004094
Johannes Berg66e67e42012-01-20 13:55:27 +01004095 /* prep auth_data so we don't go into idle on disassoc */
4096 ifmgd->auth_data = auth_data;
4097
Johannes Berg7b119dc2013-04-10 21:38:36 +02004098 if (ifmgd->associated) {
4099 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4100
4101 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4102 WLAN_REASON_UNSPECIFIED,
4103 false, frame_buf);
4104
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004105 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4106 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004107 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004108
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004109 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004110
Johannes Berga1cf7752012-03-08 15:02:07 +01004111 err = ieee80211_prep_connection(sdata, req->bss, false);
4112 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01004113 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004114
Johannes Berg66e67e42012-01-20 13:55:27 +01004115 err = ieee80211_probe_auth(sdata);
4116 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004117 sta_info_destroy_addr(sdata, req->bss->bssid);
4118 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004119 }
4120
Johannes Berg66e67e42012-01-20 13:55:27 +01004121 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01004122 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004123 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02004124
Johannes Berg66e67e42012-01-20 13:55:27 +01004125 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004126 memset(ifmgd->bssid, 0, ETH_ALEN);
4127 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004128 ifmgd->auth_data = NULL;
4129 err_free:
4130 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004131 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004132}
4133
Johannes Berg77fdaa12009-07-07 03:45:17 +02004134int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4135 struct cfg80211_assoc_request *req)
4136{
Johannes Berg66e67e42012-01-20 13:55:27 +01004137 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004138 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01004139 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01004140 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004141 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004142 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004143 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004144 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004145
Johannes Berg66e67e42012-01-20 13:55:27 +01004146 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
4147 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01004148 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004149
Johannes Berg9caf0362012-11-29 01:25:20 +01004150 rcu_read_lock();
4151 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4152 if (!ssidie) {
4153 rcu_read_unlock();
4154 kfree(assoc_data);
4155 return -EINVAL;
4156 }
4157 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4158 assoc_data->ssid_len = ssidie[1];
4159 rcu_read_unlock();
4160
Johannes Berg7b119dc2013-04-10 21:38:36 +02004161 if (ifmgd->associated) {
4162 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4163
4164 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4165 WLAN_REASON_UNSPECIFIED,
4166 false, frame_buf);
4167
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004168 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4169 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004170 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004171
4172 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4173 err = -EBUSY;
4174 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004175 }
4176
Johannes Berg66e67e42012-01-20 13:55:27 +01004177 if (ifmgd->assoc_data) {
4178 err = -EBUSY;
4179 goto err_free;
4180 }
4181
4182 if (ifmgd->auth_data) {
4183 bool match;
4184
4185 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00004186 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004187 ieee80211_destroy_auth_data(sdata, match);
4188 }
4189
4190 /* prepare assoc data */
Johannes Berg19c3b832012-08-01 20:13:36 +02004191
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03004192 ifmgd->beacon_crc_valid = false;
4193
Johannes Bergde5036a2012-03-08 15:02:03 +01004194 /*
4195 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4196 * We still associate in non-HT mode (11a/b/g) if any one of these
4197 * ciphers is configured as pairwise.
4198 * We can set this to true for non-11n hardware, that'll be checked
4199 * separately along with the peer capabilities.
4200 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004201 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004202 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4203 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004204 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004205 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004206 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004207 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004208 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004209 }
4210 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004211
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004212 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004213 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004214 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4215 }
Ben Greearef96a8422011-11-18 11:32:00 -08004216
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004217 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4218 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4219
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004220 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4221 sband = local->hw.wiphy->bands[req->bss->channel->band];
4222 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004223 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berga8243b72012-11-22 14:32:09 +01004224 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004225 if (!bss->wmm_used)
4226 netdev_info(sdata->dev,
4227 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004228 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004229
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004230 /* disable VHT if we don't support it or the AP doesn't use WMM */
4231 if (!sband->vht_cap.vht_supported ||
4232 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
4233 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004234 if (!bss->wmm_used)
4235 netdev_info(sdata->dev,
4236 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004237 }
4238
Ben Greearef96a8422011-11-18 11:32:00 -08004239 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4240 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4241 sizeof(ifmgd->ht_capa_mask));
4242
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004243 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4244 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4245 sizeof(ifmgd->vht_capa_mask));
4246
Johannes Berg77fdaa12009-07-07 03:45:17 +02004247 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004248 memcpy(assoc_data->ie, req->ie, req->ie_len);
4249 assoc_data->ie_len = req->ie_len;
4250 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004251
Johannes Berg66e67e42012-01-20 13:55:27 +01004252 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004253
Johannes Bergaf6b6372009-12-23 13:15:35 +01004254 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4255 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004256 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004257 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004258 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004259 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004260 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004261
Johannes Berg66e67e42012-01-20 13:55:27 +01004262 assoc_data->capability = req->bss->capability;
Johannes Berg32c5057b2012-03-28 11:04:29 +02004263 assoc_data->wmm = bss->wmm_used &&
4264 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01004265 assoc_data->supp_rates = bss->supp_rates;
4266 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004267
Johannes Berg9caf0362012-11-29 01:25:20 +01004268 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004269 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4270 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4271 assoc_data->ap_ht_param =
4272 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4273 else
Johannes Berga8243b72012-11-22 14:32:09 +01004274 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004275 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4276 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4277 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4278 sizeof(struct ieee80211_vht_cap));
4279 else
4280 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004281 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004282
Kalle Valoab133152010-01-12 10:42:31 +02004283 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004284 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4285 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004286 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004287 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4288 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004289 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004290 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4291 }
4292
Johannes Berg77fdaa12009-07-07 03:45:17 +02004293 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004294 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004295
4296 if (req->use_mfp) {
4297 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4298 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4299 } else {
4300 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4301 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4302 }
4303
4304 if (req->crypto.control_port)
4305 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4306 else
4307 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4308
Johannes Berga621fa42010-08-27 14:26:54 +03004309 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4310 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
4311
Johannes Berg66e67e42012-01-20 13:55:27 +01004312 /* kick off associate process */
4313
4314 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004315 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004316 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004317
Johannes Berga1cf7752012-03-08 15:02:07 +01004318 err = ieee80211_prep_connection(sdata, req->bss, true);
4319 if (err)
4320 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004321
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004322 rcu_read_lock();
4323 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004324
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004325 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4326 !beacon_ies) {
4327 /*
4328 * Wait up to one beacon interval ...
4329 * should this be more if we miss one?
4330 */
4331 sdata_info(sdata, "waiting for beacon from %pM\n",
4332 ifmgd->bssid);
4333 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004334 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004335 assoc_data->need_beacon = true;
4336 } else if (beacon_ies) {
4337 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4338 beacon_ies->data,
4339 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004340 u8 dtim_count = 0;
4341
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004342 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4343 const struct ieee80211_tim_ie *tim;
4344 tim = (void *)(tim_ie + 2);
4345 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004346 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004347 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004348 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004349 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004350 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004351
4352 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4353 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4354 sdata->vif.bss_conf.sync_device_ts =
4355 bss->device_ts_beacon;
4356 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4357 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004358 } else {
4359 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004360 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004361 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004362 rcu_read_unlock();
4363
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004364 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004365
Paul Stewartfcff4f12012-02-23 17:59:53 -08004366 if (bss->corrupt_data) {
4367 char *corrupt_type = "data";
4368 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4369 if (bss->corrupt_data &
4370 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4371 corrupt_type = "beacon and probe response";
4372 else
4373 corrupt_type = "beacon";
4374 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4375 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004376 sdata_info(sdata, "associating with AP with corrupt %s\n",
4377 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004378 }
4379
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004380 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004381 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004382 memset(ifmgd->bssid, 0, ETH_ALEN);
4383 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004384 ifmgd->assoc_data = NULL;
4385 err_free:
4386 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004387 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004388}
4389
4390int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004391 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004392{
4393 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004394 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004395 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004396 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004397
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004398 sdata_info(sdata,
4399 "deauthenticating from %pM by local choice (reason=%d)\n",
4400 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004401
Johannes Berg86552012012-10-29 09:46:31 +01004402 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004403 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004404 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4405 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004406 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004407 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004408 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004409
Johannes Bergde3d43a2013-05-14 09:39:02 +02004410 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004411 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004412 }
4413
Johannes Berg86552012012-10-29 09:46:31 +01004414 if (ifmgd->associated &&
4415 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4416 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4417 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004418 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004419 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004420
Johannes Berg86552012012-10-29 09:46:31 +01004421 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004422 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004423 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4424 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004425
Johannes Berg77fdaa12009-07-07 03:45:17 +02004426 return 0;
4427}
4428
4429int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004430 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004431{
4432 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004433 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004434 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004435
Johannes Berg8d8b2612009-07-25 11:58:36 +02004436 /*
4437 * cfg80211 should catch this ... but it's racy since
4438 * we can receive a disassoc frame, process it, hand it
4439 * to cfg80211 while that's in a locked section already
4440 * trying to tell us that the user wants to disconnect.
4441 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004442 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004443 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004444
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004445 sdata_info(sdata,
4446 "disassociating from %pM by local choice (reason=%d)\n",
4447 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004448
Jouni Malinene69e95d2010-03-29 23:29:31 -07004449 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004450 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4451 req->reason_code, !req->local_state_change,
4452 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004453
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004454 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4455 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004456
Johannes Berg77fdaa12009-07-07 03:45:17 +02004457 return 0;
4458}
Jouni Malinen026331c2010-02-15 12:53:10 +02004459
Eliad Pellerafa762f2012-04-23 14:45:15 +03004460void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004461{
4462 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4463
Ben Greear49921852013-02-20 09:41:09 -08004464 /*
4465 * Make sure some work items will not run after this,
4466 * they will not do anything but might not have been
4467 * cancelled when disconnecting.
4468 */
4469 cancel_work_sync(&ifmgd->monitor_work);
4470 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4471 cancel_work_sync(&ifmgd->request_smps_work);
4472 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4473 cancel_work_sync(&ifmgd->chswitch_work);
4474
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004475 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004476 if (ifmgd->assoc_data) {
4477 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004478 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004479 cfg80211_assoc_timeout(sdata->dev, bss);
4480 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004481 if (ifmgd->auth_data)
4482 ieee80211_destroy_auth_data(sdata, false);
4483 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004484 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004485}
4486
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004487void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4488 enum nl80211_cqm_rssi_threshold_event rssi_event,
4489 gfp_t gfp)
4490{
4491 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4492
Johannes Bergb5878a22010-04-07 16:48:40 +02004493 trace_api_cqm_rssi_notify(sdata, rssi_event);
4494
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004495 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4496}
4497EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);