blob: b9432b575444aa6bab43b8be2a2cb3cfbbfab6dd [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040019#include <linux/moduleparam.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010020#include <linux/rtnetlink.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020021#include <linux/pm_qos.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020022#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020026#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020027
Jiri Bencf0706e82007-05-05 11:45:53 -070028#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
31#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070032
Johannes Berg1672c0e32013-01-29 15:02:27 +010033#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020034#define IEEE80211_AUTH_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010035#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
36#define IEEE80211_AUTH_MAX_TRIES 3
37#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
38#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020039#define IEEE80211_ASSOC_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010040#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
41#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Berg66e67e42012-01-20 13:55:27 +010042
Ben Greear180205b2011-02-04 15:30:24 -080043static int max_nullfunc_tries = 2;
44module_param(max_nullfunc_tries, int, 0644);
45MODULE_PARM_DESC(max_nullfunc_tries,
46 "Maximum nullfunc tx tries before disconnecting (reason 4).");
47
48static int max_probe_tries = 5;
49module_param(max_probe_tries, int, 0644);
50MODULE_PARM_DESC(max_probe_tries,
51 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020052
53/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010054 * Beacon loss timeout is calculated as N frames times the
55 * advertised beacon interval. This may need to be somewhat
56 * higher than what hardware might detect to account for
57 * delays in the host processing frames. But since we also
58 * probe on beacon miss before declaring the connection lost
59 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020060 */
Ben Greear59c1ec22013-03-19 14:19:56 -070061static int beacon_loss_count = 7;
62module_param(beacon_loss_count, int, 0644);
63MODULE_PARM_DESC(beacon_loss_count,
64 "Number of beacon intervals before we decide beacon was lost.");
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010065
Johannes Bergb291ba12009-07-10 15:29:03 +020066/*
67 * Time the connection can be idle before we probe
68 * it to see if we can still talk to the AP.
69 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030070#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020071/*
72 * Time we wait for a probe response after sending
73 * a probe request because of beacon loss or for
74 * checking the connection still works.
75 */
Ben Greear180205b2011-02-04 15:30:24 -080076static int probe_wait_ms = 500;
77module_param(probe_wait_ms, int, 0644);
78MODULE_PARM_DESC(probe_wait_ms,
79 "Maximum time(ms) to wait for probe response"
80 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070081
Jouni Malinen17e4ec12010-03-29 23:28:30 -070082/*
83 * Weight given to the latest Beacon frame when calculating average signal
84 * strength for Beacon frames received in the current BSS. This must be
85 * between 1 and 15.
86 */
87#define IEEE80211_SIGNAL_AVE_WEIGHT 3
88
Jouni Malinen391a2002010-08-27 22:22:00 +030089/*
90 * How many Beacon frames need to have been used in average signal strength
91 * before starting to indicate signal change events.
92 */
93#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
94
Johannes Berg77fdaa12009-07-07 03:45:17 +020095/*
Johannes Bergca386f32009-07-10 02:39:48 +020096 * We can have multiple work items (and connection probing)
97 * scheduling this timer, but we need to take care to only
98 * reschedule it when it should fire _earlier_ than it was
99 * asked for before, or if it's not pending right now. This
100 * function ensures that. Note that it then is required to
101 * run this function for all timeouts after the first one
102 * has happened -- the work that runs from this timer will
103 * do that.
104 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200105static void run_again(struct ieee80211_sub_if_data *sdata,
106 unsigned long timeout)
Johannes Bergca386f32009-07-10 02:39:48 +0200107{
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200108 sdata_assert_lock(sdata);
Johannes Bergca386f32009-07-10 02:39:48 +0200109
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200110 if (!timer_pending(&sdata->u.mgd.timer) ||
111 time_before(timeout, sdata->u.mgd.timer.expires))
112 mod_timer(&sdata->u.mgd.timer, timeout);
Johannes Bergca386f32009-07-10 02:39:48 +0200113}
114
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -0400115void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
Johannes Bergb291ba12009-07-10 15:29:03 +0200116{
Johannes Bergc1288b12012-01-19 09:29:57 +0100117 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
Johannes Bergb291ba12009-07-10 15:29:03 +0200118 return;
119
Johannes Berg7eeff742012-07-18 10:27:27 +0200120 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
121 return;
122
Johannes Bergb291ba12009-07-10 15:29:03 +0200123 mod_timer(&sdata->u.mgd.bcn_mon_timer,
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +0100124 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
Johannes Bergb291ba12009-07-10 15:29:03 +0200125}
126
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400127void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
128{
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400129 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
130
Stanislaw Gruszka86281722011-02-25 14:46:02 +0100131 if (unlikely(!sdata->u.mgd.associated))
132 return;
133
Eliad Peller448cd2e2014-02-11 12:30:18 +0200134 ifmgd->probe_send_count = 0;
135
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400136 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
137 return;
138
139 mod_timer(&sdata->u.mgd.conn_mon_timer,
140 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
141}
142
Johannes Berg5484e232008-09-08 17:44:27 +0200143static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200144{
Johannes Berg5484e232008-09-08 17:44:27 +0200145 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200146}
147
Johannes Berg6565ec92013-02-08 14:52:32 +0100148static u32
149ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
150 struct ieee80211_supported_band *sband,
151 struct ieee80211_channel *channel,
152 const struct ieee80211_ht_operation *ht_oper,
153 const struct ieee80211_vht_operation *vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200154 struct cfg80211_chan_def *chandef, bool tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100155{
Johannes Berg5cdaed12013-07-31 11:23:06 +0200156 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg6565ec92013-02-08 14:52:32 +0100157 struct cfg80211_chan_def vht_chandef;
158 u32 ht_cfreq, ret;
159
160 chandef->chan = channel;
161 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
162 chandef->center_freq1 = channel->center_freq;
163 chandef->center_freq2 = 0;
164
165 if (!ht_oper || !sband->ht_cap.ht_supported) {
166 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
167 goto out;
168 }
169
170 chandef->width = NL80211_CHAN_WIDTH_20;
171
172 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
173 channel->band);
174 /* check that channel matches the right operating channel */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200175 if (!tracking && channel->center_freq != ht_cfreq) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100176 /*
177 * It's possible that some APs are confused here;
178 * Netgear WNDR3700 sometimes reports 4 higher than
179 * the actual channel in association responses, but
180 * since we look at probe response/beacon data here
181 * it should be OK.
182 */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200183 sdata_info(sdata,
184 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
185 channel->center_freq, ht_cfreq,
186 ht_oper->primary_chan, channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100187 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
188 goto out;
189 }
190
191 /* check 40 MHz support, if we have it */
192 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
193 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
194 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
195 chandef->width = NL80211_CHAN_WIDTH_40;
196 chandef->center_freq1 += 10;
197 break;
198 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
199 chandef->width = NL80211_CHAN_WIDTH_40;
200 chandef->center_freq1 -= 10;
201 break;
202 }
203 } else {
204 /* 40 MHz (and 80 MHz) must be supported for VHT */
205 ret = IEEE80211_STA_DISABLE_VHT;
Johannes Berg85220d72013-03-25 18:29:27 +0100206 /* also mark 40 MHz disabled */
207 ret |= IEEE80211_STA_DISABLE_40MHZ;
Johannes Berg6565ec92013-02-08 14:52:32 +0100208 goto out;
209 }
210
211 if (!vht_oper || !sband->vht_cap.vht_supported) {
212 ret = IEEE80211_STA_DISABLE_VHT;
213 goto out;
214 }
215
216 vht_chandef.chan = channel;
217 vht_chandef.center_freq1 =
218 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
219 channel->band);
220 vht_chandef.center_freq2 = 0;
221
Johannes Berg6565ec92013-02-08 14:52:32 +0100222 switch (vht_oper->chan_width) {
223 case IEEE80211_VHT_CHANWIDTH_USE_HT:
224 vht_chandef.width = chandef->width;
225 break;
226 case IEEE80211_VHT_CHANWIDTH_80MHZ:
227 vht_chandef.width = NL80211_CHAN_WIDTH_80;
228 break;
229 case IEEE80211_VHT_CHANWIDTH_160MHZ:
230 vht_chandef.width = NL80211_CHAN_WIDTH_160;
231 break;
232 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
233 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
Johannes Berg6553bf042013-03-28 10:26:17 +0100234 vht_chandef.center_freq2 =
235 ieee80211_channel_to_frequency(
236 vht_oper->center_freq_seg2_idx,
237 channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100238 break;
239 default:
Johannes Berg5cdaed12013-07-31 11:23:06 +0200240 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100241 sdata_info(sdata,
242 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
243 vht_oper->chan_width);
Johannes Berg6565ec92013-02-08 14:52:32 +0100244 ret = IEEE80211_STA_DISABLE_VHT;
245 goto out;
246 }
247
248 if (!cfg80211_chandef_valid(&vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200249 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100250 sdata_info(sdata,
251 "AP VHT information is invalid, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100252 ret = IEEE80211_STA_DISABLE_VHT;
253 goto out;
254 }
255
256 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
257 ret = 0;
258 goto out;
259 }
260
261 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200262 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100263 sdata_info(sdata,
264 "AP VHT information doesn't match HT, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100265 ret = IEEE80211_STA_DISABLE_VHT;
266 goto out;
267 }
268
269 *chandef = vht_chandef;
270
271 ret = 0;
272
273out:
Johannes Berg586e01e2013-02-14 12:13:53 +0100274 /* don't print the message below for VHT mismatch if VHT is disabled */
275 if (ret & IEEE80211_STA_DISABLE_VHT)
276 vht_chandef = *chandef;
277
Johannes Bergddfe49b2013-07-31 20:52:03 +0200278 /*
279 * Ignore the DISABLED flag when we're already connected and only
280 * tracking the APs beacon for bandwidth changes - otherwise we
281 * might get disconnected here if we connect to an AP, update our
282 * regulatory information based on the AP's country IE and the
283 * information we have is wrong/outdated and disables the channel
284 * that we're actually using for the connection to the AP.
285 */
Johannes Berg6565ec92013-02-08 14:52:32 +0100286 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
Johannes Bergddfe49b2013-07-31 20:52:03 +0200287 tracking ? 0 :
288 IEEE80211_CHAN_DISABLED)) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100289 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
290 ret = IEEE80211_STA_DISABLE_HT |
291 IEEE80211_STA_DISABLE_VHT;
Chris Wrightb56e4b82013-07-31 12:12:24 -0700292 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100293 }
294
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200295 ret |= ieee80211_chandef_downgrade(chandef);
Johannes Berg6565ec92013-02-08 14:52:32 +0100296 }
297
Johannes Berg5cdaed12013-07-31 11:23:06 +0200298 if (chandef->width != vht_chandef.width && !tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100299 sdata_info(sdata,
300 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
301
302 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
303 return ret;
304}
305
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100306static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
307 struct sta_info *sta,
308 const struct ieee80211_ht_operation *ht_oper,
309 const struct ieee80211_vht_operation *vht_oper,
310 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200311{
312 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100313 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200314 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200315 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100316 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200317 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100318 u32 flags;
319 enum ieee80211_sta_rx_bandwidth new_sta_bw;
320 int ret;
321
322 /* if HT was/is disabled, don't track any bandwidth changes */
323 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
324 return 0;
325
326 /* don't check VHT if we associated as non-VHT station */
327 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
328 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200329
Johannes Berg11289582013-02-07 17:36:12 +0100330 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100331 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100332
Avri Altman017b45b2013-11-18 19:06:48 +0200333 /*
334 * if bss configuration changed store the new one -
335 * this may be applicable even if channel is identical
336 */
337 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
338 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
339 *changed |= BSS_CHANGED_HT;
340 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
341 }
342
Johannes Bergf2d93302013-02-08 13:15:55 +0100343 chan = sdata->vif.bss_conf.chandef.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200344 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200345
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100346 /* calculate new channel (type) based on HT/VHT operation IEs */
347 flags = ieee80211_determine_chantype(sdata, sband, chan, ht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200348 vht_oper, &chandef, true);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100349
350 /*
351 * Downgrade the new channel if we associated with restricted
352 * capabilities. For example, if we associated as a 20 MHz STA
353 * to a 40 MHz AP (due to regulatory, capabilities or config
354 * reasons) then switching to a 40 MHz channel now won't do us
355 * any good -- we couldn't use it with the AP.
356 */
357 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
358 chandef.width == NL80211_CHAN_WIDTH_80P80)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200359 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100360 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
361 chandef.width == NL80211_CHAN_WIDTH_160)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200362 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100363 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
364 chandef.width > NL80211_CHAN_WIDTH_20)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200365 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100366
367 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
368 return 0;
369
370 sdata_info(sdata,
371 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
372 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
373 chandef.center_freq1, chandef.center_freq2);
374
375 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
376 IEEE80211_STA_DISABLE_VHT |
377 IEEE80211_STA_DISABLE_40MHZ |
378 IEEE80211_STA_DISABLE_80P80MHZ |
379 IEEE80211_STA_DISABLE_160MHZ)) ||
380 !cfg80211_chandef_valid(&chandef)) {
381 sdata_info(sdata,
382 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
383 ifmgd->bssid);
384 return -EINVAL;
Johannes Berg64f68e52012-03-28 10:58:37 +0200385 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200386
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100387 switch (chandef.width) {
388 case NL80211_CHAN_WIDTH_20_NOHT:
389 case NL80211_CHAN_WIDTH_20:
390 new_sta_bw = IEEE80211_STA_RX_BW_20;
391 break;
392 case NL80211_CHAN_WIDTH_40:
393 new_sta_bw = IEEE80211_STA_RX_BW_40;
394 break;
395 case NL80211_CHAN_WIDTH_80:
396 new_sta_bw = IEEE80211_STA_RX_BW_80;
397 break;
398 case NL80211_CHAN_WIDTH_80P80:
399 case NL80211_CHAN_WIDTH_160:
400 new_sta_bw = IEEE80211_STA_RX_BW_160;
401 break;
402 default:
403 return -EINVAL;
404 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200405
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100406 if (new_sta_bw > sta->cur_max_bandwidth)
407 new_sta_bw = sta->cur_max_bandwidth;
Johannes Berg64f68e52012-03-28 10:58:37 +0200408
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100409 if (new_sta_bw < sta->sta.bandwidth) {
410 sta->sta.bandwidth = new_sta_bw;
411 rate_control_rate_update(local, sband, sta,
412 IEEE80211_RC_BW_CHANGED);
413 }
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530414
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100415 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
416 if (ret) {
417 sdata_info(sdata,
418 "AP %pM changed bandwidth to incompatible one - disconnect\n",
419 ifmgd->bssid);
420 return ret;
421 }
422
423 if (new_sta_bw > sta->sta.bandwidth) {
424 sta->sta.bandwidth = new_sta_bw;
425 rate_control_rate_update(local, sband, sta,
426 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200427 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200428
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100429 return 0;
Johannes Bergd5522e02009-03-30 13:23:35 +0200430}
431
Johannes Berg9c6bd792008-09-11 00:01:52 +0200432/* frame sending functions */
433
Johannes Berg66e67e42012-01-20 13:55:27 +0100434static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200435 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100436 struct ieee80211_supported_band *sband,
437 struct ieee80211_channel *channel,
438 enum ieee80211_smps_mode smps)
439{
Johannes Berg66e67e42012-01-20 13:55:27 +0100440 u8 *pos;
441 u32 flags = channel->flags;
442 u16 cap;
443 struct ieee80211_sta_ht_cap ht_cap;
444
445 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
446
Johannes Berg66e67e42012-01-20 13:55:27 +0100447 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
448 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
449
Johannes Berg66e67e42012-01-20 13:55:27 +0100450 /* determine capability flags */
451 cap = ht_cap.cap;
452
Johannes Berg9dde6422012-05-16 23:43:19 +0200453 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100454 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
455 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
456 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
457 cap &= ~IEEE80211_HT_CAP_SGI_40;
458 }
459 break;
460 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
461 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
462 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
463 cap &= ~IEEE80211_HT_CAP_SGI_40;
464 }
465 break;
466 }
467
Johannes Berg24398e32012-03-28 10:58:36 +0200468 /*
469 * If 40 MHz was disabled associate as though we weren't
470 * capable of 40 MHz -- some broken APs will never fall
471 * back to trying to transmit in 20 MHz.
472 */
473 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
474 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
475 cap &= ~IEEE80211_HT_CAP_SGI_40;
476 }
477
Johannes Berg66e67e42012-01-20 13:55:27 +0100478 /* set SM PS mode properly */
479 cap &= ~IEEE80211_HT_CAP_SM_PS;
480 switch (smps) {
481 case IEEE80211_SMPS_AUTOMATIC:
482 case IEEE80211_SMPS_NUM_MODES:
483 WARN_ON(1);
484 case IEEE80211_SMPS_OFF:
485 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
486 IEEE80211_HT_CAP_SM_PS_SHIFT;
487 break;
488 case IEEE80211_SMPS_STATIC:
489 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
490 IEEE80211_HT_CAP_SM_PS_SHIFT;
491 break;
492 case IEEE80211_SMPS_DYNAMIC:
493 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
494 IEEE80211_HT_CAP_SM_PS_SHIFT;
495 break;
496 }
497
498 /* reserve and fill IE */
499 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
500 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
501}
502
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000503static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
504 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100505 struct ieee80211_supported_band *sband,
506 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000507{
508 u8 *pos;
509 u32 cap;
510 struct ieee80211_sta_vht_cap vht_cap;
Eyal Shapirac1cf6d42014-01-08 15:49:08 +0200511 u32 mask, ap_bf_sts, our_bf_sts;
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000512
513 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
514
515 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100516 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000517
518 /* determine capability flags */
519 cap = vht_cap.cap;
520
Johannes Bergf2d9d272012-11-22 14:11:39 +0100521 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
522 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
523 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
524 }
525
526 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
527 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
528 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
529 }
530
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100531 /*
532 * Some APs apparently get confused if our capabilities are better
533 * than theirs, so restrict what we advertise in the assoc request.
534 */
535 if (!(ap_vht_cap->vht_cap_info &
536 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
537 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
538
Eyal Shapirac1cf6d42014-01-08 15:49:08 +0200539 mask = IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK;
540
541 ap_bf_sts = le32_to_cpu(ap_vht_cap->vht_cap_info) & mask;
542 our_bf_sts = cap & mask;
543
544 if (ap_bf_sts < our_bf_sts) {
545 cap &= ~mask;
546 cap |= ap_bf_sts;
547 }
548
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000549 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000550 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000551 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
552}
553
Johannes Berg66e67e42012-01-20 13:55:27 +0100554static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
555{
556 struct ieee80211_local *local = sdata->local;
557 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
558 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
559 struct sk_buff *skb;
560 struct ieee80211_mgmt *mgmt;
561 u8 *pos, qos_info;
562 size_t offset = 0, noffset;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200563 int i, count, rates_len, supp_rates_len, shift;
Johannes Berg66e67e42012-01-20 13:55:27 +0100564 u16 capab;
565 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200566 struct ieee80211_chanctx_conf *chanctx_conf;
567 struct ieee80211_channel *chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200568 u32 rate_flags, rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100569
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200570 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100571
Johannes Berg55de9082012-07-26 17:24:39 +0200572 rcu_read_lock();
573 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
574 if (WARN_ON(!chanctx_conf)) {
575 rcu_read_unlock();
576 return;
577 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100578 chan = chanctx_conf->def.chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200579 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
Johannes Berg55de9082012-07-26 17:24:39 +0200580 rcu_read_unlock();
581 sband = local->hw.wiphy->bands[chan->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200582 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg66e67e42012-01-20 13:55:27 +0100583
584 if (assoc_data->supp_rates_len) {
585 /*
586 * Get all rates supported by the device and the AP as
587 * some APs don't like getting a superset of their rates
588 * in the association request (e.g. D-Link DAP 1353 in
589 * b-only mode)...
590 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200591 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
592 assoc_data->supp_rates,
593 assoc_data->supp_rates_len,
594 &rates);
Johannes Berg66e67e42012-01-20 13:55:27 +0100595 } else {
596 /*
597 * In case AP not provide any supported rates information
598 * before association, we send information element(s) with
599 * all rates that we support.
600 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200601 rates_len = 0;
602 for (i = 0; i < sband->n_bitrates; i++) {
603 if ((rate_flags & sband->bitrates[i].flags)
604 != rate_flags)
605 continue;
606 rates |= BIT(i);
607 rates_len++;
608 }
Johannes Berg66e67e42012-01-20 13:55:27 +0100609 }
610
611 skb = alloc_skb(local->hw.extra_tx_headroom +
612 sizeof(*mgmt) + /* bit too much but doesn't matter */
613 2 + assoc_data->ssid_len + /* SSID */
614 4 + rates_len + /* (extended) rates */
615 4 + /* power capability */
616 2 + 2 * sband->n_channels + /* supported channels */
617 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000618 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100619 assoc_data->ie_len + /* extra IEs */
620 9, /* WMM */
621 GFP_KERNEL);
622 if (!skb)
623 return;
624
625 skb_reserve(skb, local->hw.extra_tx_headroom);
626
627 capab = WLAN_CAPABILITY_ESS;
628
629 if (sband->band == IEEE80211_BAND_2GHZ) {
630 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
631 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
632 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
633 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
634 }
635
636 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
637 capab |= WLAN_CAPABILITY_PRIVACY;
638
639 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
640 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
641 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
642
643 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
644 memset(mgmt, 0, 24);
645 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
646 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
647 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
648
649 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
650 skb_put(skb, 10);
651 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
652 IEEE80211_STYPE_REASSOC_REQ);
653 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
654 mgmt->u.reassoc_req.listen_interval =
655 cpu_to_le16(local->hw.conf.listen_interval);
656 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
657 ETH_ALEN);
658 } else {
659 skb_put(skb, 4);
660 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
661 IEEE80211_STYPE_ASSOC_REQ);
662 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
663 mgmt->u.assoc_req.listen_interval =
664 cpu_to_le16(local->hw.conf.listen_interval);
665 }
666
667 /* SSID */
668 pos = skb_put(skb, 2 + assoc_data->ssid_len);
669 *pos++ = WLAN_EID_SSID;
670 *pos++ = assoc_data->ssid_len;
671 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
672
673 /* add all rates which were marked to be used above */
674 supp_rates_len = rates_len;
675 if (supp_rates_len > 8)
676 supp_rates_len = 8;
677
678 pos = skb_put(skb, supp_rates_len + 2);
679 *pos++ = WLAN_EID_SUPP_RATES;
680 *pos++ = supp_rates_len;
681
682 count = 0;
683 for (i = 0; i < sband->n_bitrates; i++) {
684 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200685 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
686 5 * (1 << shift));
687 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100688 if (++count == 8)
689 break;
690 }
691 }
692
693 if (rates_len > count) {
694 pos = skb_put(skb, rates_len - count + 2);
695 *pos++ = WLAN_EID_EXT_SUPP_RATES;
696 *pos++ = rates_len - count;
697
698 for (i++; i < sband->n_bitrates; i++) {
699 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200700 int rate;
701 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
702 5 * (1 << shift));
703 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100704 }
705 }
706 }
707
708 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
709 /* 1. power capabilities */
710 pos = skb_put(skb, 4);
711 *pos++ = WLAN_EID_PWR_CAPABILITY;
712 *pos++ = 2;
713 *pos++ = 0; /* min tx power */
Simon Wunderlich0430c882013-07-08 16:55:55 +0200714 /* max tx power */
715 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg66e67e42012-01-20 13:55:27 +0100716
717 /* 2. supported channels */
718 /* TODO: get this in reg domain format */
719 pos = skb_put(skb, 2 * sband->n_channels + 2);
720 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
721 *pos++ = 2 * sband->n_channels;
722 for (i = 0; i < sband->n_channels; i++) {
723 *pos++ = ieee80211_frequency_to_channel(
724 sband->channels[i].center_freq);
725 *pos++ = 1; /* one channel in the subband*/
726 }
727 }
728
729 /* if present, add any custom IEs that go before HT */
Johannes Bergb3f51e92013-10-25 11:31:42 +0200730 if (assoc_data->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100731 static const u8 before_ht[] = {
732 WLAN_EID_SSID,
733 WLAN_EID_SUPP_RATES,
734 WLAN_EID_EXT_SUPP_RATES,
735 WLAN_EID_PWR_CAPABILITY,
736 WLAN_EID_SUPPORTED_CHANNELS,
737 WLAN_EID_RSN,
738 WLAN_EID_QOS_CAPA,
739 WLAN_EID_RRM_ENABLED_CAPABILITIES,
740 WLAN_EID_MOBILITY_DOMAIN,
741 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
742 };
743 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
744 before_ht, ARRAY_SIZE(before_ht),
745 offset);
746 pos = skb_put(skb, noffset - offset);
747 memcpy(pos, assoc_data->ie + offset, noffset - offset);
748 offset = noffset;
749 }
750
Johannes Bergf2d9d272012-11-22 14:11:39 +0100751 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
752 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
753 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
754
Johannes Berga8243b72012-11-22 14:32:09 +0100755 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200756 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200757 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100758
Johannes Berg3de38022014-02-04 09:54:07 +0100759 /* if present, add any custom IEs that go before VHT */
760 if (assoc_data->ie_len) {
761 static const u8 before_vht[] = {
762 WLAN_EID_SSID,
763 WLAN_EID_SUPP_RATES,
764 WLAN_EID_EXT_SUPP_RATES,
765 WLAN_EID_PWR_CAPABILITY,
766 WLAN_EID_SUPPORTED_CHANNELS,
767 WLAN_EID_RSN,
768 WLAN_EID_QOS_CAPA,
769 WLAN_EID_RRM_ENABLED_CAPABILITIES,
770 WLAN_EID_MOBILITY_DOMAIN,
771 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
772 WLAN_EID_HT_CAPABILITY,
773 WLAN_EID_BSS_COEX_2040,
774 WLAN_EID_EXT_CAPABILITY,
775 WLAN_EID_QOS_TRAFFIC_CAPA,
776 WLAN_EID_TIM_BCAST_REQ,
777 WLAN_EID_INTERWORKING,
778 };
779 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
780 before_vht, ARRAY_SIZE(before_vht),
781 offset);
782 pos = skb_put(skb, noffset - offset);
783 memcpy(pos, assoc_data->ie + offset, noffset - offset);
784 offset = noffset;
785 }
786
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000787 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100788 ieee80211_add_vht_ie(sdata, skb, sband,
789 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000790
Johannes Berg66e67e42012-01-20 13:55:27 +0100791 /* if present, add any custom non-vendor IEs that go after HT */
Johannes Bergb3f51e92013-10-25 11:31:42 +0200792 if (assoc_data->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100793 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
794 assoc_data->ie_len,
795 offset);
796 pos = skb_put(skb, noffset - offset);
797 memcpy(pos, assoc_data->ie + offset, noffset - offset);
798 offset = noffset;
799 }
800
Johannes Berg76f03032012-03-08 15:02:05 +0100801 if (assoc_data->wmm) {
802 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200803 qos_info = ifmgd->uapsd_queues;
804 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100805 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
806 } else {
807 qos_info = 0;
808 }
809
810 pos = skb_put(skb, 9);
811 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
812 *pos++ = 7; /* len */
813 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
814 *pos++ = 0x50;
815 *pos++ = 0xf2;
816 *pos++ = 2; /* WME */
817 *pos++ = 0; /* WME info */
818 *pos++ = 1; /* WME ver */
819 *pos++ = qos_info;
820 }
821
822 /* add any remaining custom (i.e. vendor specific here) IEs */
Johannes Bergb3f51e92013-10-25 11:31:42 +0200823 if (assoc_data->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100824 noffset = assoc_data->ie_len;
825 pos = skb_put(skb, noffset - offset);
826 memcpy(pos, assoc_data->ie + offset, noffset - offset);
827 }
828
Johannes Berga1845fc2012-06-27 13:18:36 +0200829 drv_mgd_prepare_tx(local, sdata);
830
Johannes Berg66e67e42012-01-20 13:55:27 +0100831 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100832 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
833 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
834 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100835 ieee80211_tx_skb(sdata, skb);
836}
837
Kalle Valo572e0012009-02-10 17:09:31 +0200838void ieee80211_send_pspoll(struct ieee80211_local *local,
839 struct ieee80211_sub_if_data *sdata)
840{
Kalle Valo572e0012009-02-10 17:09:31 +0200841 struct ieee80211_pspoll *pspoll;
842 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200843
Kalle Valod8cd1892010-01-05 20:16:26 +0200844 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
845 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200846 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200847
Kalle Valod8cd1892010-01-05 20:16:26 +0200848 pspoll = (struct ieee80211_pspoll *) skb->data;
849 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200850
Johannes Berg62ae67b2009-11-18 18:42:05 +0100851 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
852 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200853}
854
Johannes Berg965beda2009-04-16 13:17:24 +0200855void ieee80211_send_nullfunc(struct ieee80211_local *local,
856 struct ieee80211_sub_if_data *sdata,
857 int powersave)
858{
859 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200860 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530861 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200862
Kalle Valod8cd1892010-01-05 20:16:26 +0200863 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
864 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200865 return;
866
Kalle Valod8cd1892010-01-05 20:16:26 +0200867 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200868 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200869 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200870
Seth Forshee6c17b772013-02-11 11:21:07 -0600871 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
872 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200873
874 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
875 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
876
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +0200877 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530878 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
879
Johannes Berg62ae67b2009-11-18 18:42:05 +0100880 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200881}
882
Felix Fietkaud5242152010-01-08 18:06:26 +0100883static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
884 struct ieee80211_sub_if_data *sdata)
885{
886 struct sk_buff *skb;
887 struct ieee80211_hdr *nullfunc;
888 __le16 fc;
889
890 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
891 return;
892
893 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700894 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100895 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700896
Felix Fietkaud5242152010-01-08 18:06:26 +0100897 skb_reserve(skb, local->hw.extra_tx_headroom);
898
899 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
900 memset(nullfunc, 0, 30);
901 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
902 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
903 nullfunc->frame_control = fc;
904 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
905 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
906 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
907 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
908
909 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
910 ieee80211_tx_skb(sdata, skb);
911}
912
Johannes Bergcc32abd2009-05-15 11:52:31 +0200913/* spectrum management related things */
914static void ieee80211_chswitch_work(struct work_struct *work)
915{
916 struct ieee80211_sub_if_data *sdata =
917 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100918 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200919 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Arik Nemtsov7578d572013-09-01 17:15:51 +0300920 u32 changed = 0;
921 int ret;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200922
Johannes Berg9607e6b2009-12-23 13:15:31 +0100923 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200924 return;
925
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200926 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200927 if (!ifmgd->associated)
928 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200929
Johannes Berg34a37402013-12-18 09:43:33 +0100930 mutex_lock(&local->mtx);
Luciano Coelho33787fc2013-11-11 20:34:54 +0200931 ret = ieee80211_vif_change_channel(sdata, &changed);
Johannes Berg34a37402013-12-18 09:43:33 +0100932 mutex_unlock(&local->mtx);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300933 if (ret) {
934 sdata_info(sdata,
935 "vif channel switch failed, disconnecting\n");
936 ieee80211_queue_work(&sdata->local->hw,
937 &ifmgd->csa_connection_drop_work);
938 goto out;
939 }
Karl Beldan675a0b02013-03-25 16:26:57 +0100940
Arik Nemtsov7578d572013-09-01 17:15:51 +0300941 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +0200942 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +0300943 /* Call "hw_config" only if doing sw channel switch.
944 * Otherwise update the channel directly
945 */
946 if (!local->ops->channel_switch)
947 ieee80211_hw_config(local, 0);
948 else
949 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200950 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200951
Johannes Berg77fdaa12009-07-07 03:45:17 +0200952 /* XXX: shouldn't really modify cfg80211-owned data! */
Luciano Coelho33787fc2013-11-11 20:34:54 +0200953 ifmgd->associated->channel = sdata->csa_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200954
Johannes Berg57eebdf2012-08-01 15:50:46 +0200955 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100956 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100957 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200958 IEEE80211_QUEUE_STOP_REASON_CSA);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300959
960 ieee80211_bss_info_change_notify(sdata, changed);
961
Johannes Berg77fdaa12009-07-07 03:45:17 +0200962 out:
Arik Nemtsov7578d572013-09-01 17:15:51 +0300963 sdata->vif.csa_active = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200964 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200965 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200966}
967
Johannes Berg5ce6e432010-05-11 16:20:57 +0200968void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
969{
Johannes Berg55de9082012-07-26 17:24:39 +0200970 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
971 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200972
973 trace_api_chswitch_done(sdata, success);
974 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200975 sdata_info(sdata,
976 "driver channel switch failed, disconnecting\n");
977 ieee80211_queue_work(&sdata->local->hw,
978 &ifmgd->csa_connection_drop_work);
979 } else {
980 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200981 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200982}
983EXPORT_SYMBOL(ieee80211_chswitch_done);
984
Johannes Bergcc32abd2009-05-15 11:52:31 +0200985static void ieee80211_chswitch_timer(unsigned long data)
986{
987 struct ieee80211_sub_if_data *sdata =
988 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200989
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100990 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200991}
992
Johannes Berg37799e52013-03-26 14:02:26 +0100993static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100994ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200995 u64 timestamp, struct ieee802_11_elems *elems,
996 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200997{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100998 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200999 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +01001000 struct cfg80211_bss *cbss = ifmgd->associated;
Johannes Berg55de9082012-07-26 17:24:39 +02001001 struct ieee80211_chanctx *chanctx;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001002 enum ieee80211_band current_band;
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001003 struct ieee80211_csa_ie csa_ie;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001004 int res;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001005
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001006 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001007
Johannes Berg37799e52013-03-26 14:02:26 +01001008 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001009 return;
1010
Johannes Bergb4f286a12013-03-26 14:13:58 +01001011 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001012 return;
1013
Johannes Berg37799e52013-03-26 14:02:26 +01001014 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +02001015 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
1016 return;
1017
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001018 current_band = cbss->channel->band;
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001019 memset(&csa_ie, 0, sizeof(csa_ie));
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001020 res = ieee80211_parse_ch_switch_ie(sdata, elems, beacon, current_band,
1021 ifmgd->flags,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001022 ifmgd->associated->bssid, &csa_ie);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001023 if (res < 0)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001024 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +02001025 &ifmgd->csa_connection_drop_work);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001026 if (res)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001027 return;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001028
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001029 if (!cfg80211_chandef_usable(local->hw.wiphy, &csa_ie.chandef,
Johannes Berg85220d72013-03-25 18:29:27 +01001030 IEEE80211_CHAN_DISABLED)) {
1031 sdata_info(sdata,
1032 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02001033 ifmgd->associated->bssid,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001034 csa_ie.chandef.chan->center_freq,
1035 csa_ie.chandef.width, csa_ie.chandef.center_freq1,
1036 csa_ie.chandef.center_freq2);
Johannes Berg85220d72013-03-25 18:29:27 +01001037 ieee80211_queue_work(&local->hw,
1038 &ifmgd->csa_connection_drop_work);
1039 return;
1040 }
1041
Johannes Berg57eebdf2012-08-01 15:50:46 +02001042 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
Johannes Berg55de9082012-07-26 17:24:39 +02001043
Johannes Bergb4f286a12013-03-26 14:13:58 +01001044 mutex_lock(&local->chanctx_mtx);
Arik Nemtsov7578d572013-09-01 17:15:51 +03001045 if (local->use_chanctx) {
1046 u32 num_chanctx = 0;
1047 list_for_each_entry(chanctx, &local->chanctx_list, list)
1048 num_chanctx++;
1049
1050 if (num_chanctx > 1 ||
1051 !(local->hw.flags & IEEE80211_HW_CHANCTX_STA_CSA)) {
1052 sdata_info(sdata,
1053 "not handling chan-switch with channel contexts\n");
1054 ieee80211_queue_work(&local->hw,
1055 &ifmgd->csa_connection_drop_work);
1056 mutex_unlock(&local->chanctx_mtx);
1057 return;
1058 }
1059 }
1060
Johannes Berg55de9082012-07-26 17:24:39 +02001061 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Arik Nemtsov7578d572013-09-01 17:15:51 +03001062 ieee80211_queue_work(&local->hw,
1063 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001064 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001065 return;
1066 }
1067 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1068 struct ieee80211_chanctx, conf);
1069 if (chanctx->refcount > 1) {
1070 sdata_info(sdata,
1071 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001072 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001073 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001074 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001075 return;
1076 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001077 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001078
Luciano Coelho33787fc2013-11-11 20:34:54 +02001079 sdata->csa_chandef = csa_ie.chandef;
Michal Kaziorc46a73f2014-01-29 07:56:19 +01001080 sdata->vif.csa_active = true;
Johannes Berg55de9082012-07-26 17:24:39 +02001081
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001082 if (csa_ie.mode)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001083 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001084 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001085 IEEE80211_QUEUE_STOP_REASON_CSA);
1086
Johannes Bergb4f286a12013-03-26 14:13:58 +01001087 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001088 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001089 struct ieee80211_channel_switch ch_switch = {
1090 .timestamp = timestamp,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001091 .block_tx = csa_ie.mode,
1092 .chandef = csa_ie.chandef,
1093 .count = csa_ie.count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001094 };
1095
Johannes Bergb4f286a12013-03-26 14:13:58 +01001096 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001097 return;
1098 }
1099
1100 /* channel switch handled in software */
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001101 if (csa_ie.count <= 1)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001102 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001103 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001104 mod_timer(&ifmgd->chswitch_timer,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001105 TU_TO_EXP_TIME(csa_ie.count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001106}
1107
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001108static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1109 struct ieee80211_channel *channel,
1110 const u8 *country_ie, u8 country_ie_len,
1111 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001112{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001113 struct ieee80211_country_ie_triplet *triplet;
1114 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1115 int i, chan_pwr, chan_increment, new_ap_level;
1116 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001117
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001118 /* Invalid IE */
1119 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001120 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001121
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001122 triplet = (void *)(country_ie + 3);
1123 country_ie_len -= 3;
1124
1125 switch (channel->band) {
1126 default:
1127 WARN_ON_ONCE(1);
1128 /* fall through */
1129 case IEEE80211_BAND_2GHZ:
1130 case IEEE80211_BAND_60GHZ:
1131 chan_increment = 1;
1132 break;
1133 case IEEE80211_BAND_5GHZ:
1134 chan_increment = 4;
1135 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001136 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001137
1138 /* find channel */
1139 while (country_ie_len >= 3) {
1140 u8 first_channel = triplet->chans.first_channel;
1141
1142 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1143 goto next;
1144
1145 for (i = 0; i < triplet->chans.num_channels; i++) {
1146 if (first_channel + i * chan_increment == chan) {
1147 have_chan_pwr = true;
1148 chan_pwr = triplet->chans.max_power;
1149 break;
1150 }
1151 }
1152 if (have_chan_pwr)
1153 break;
1154
1155 next:
1156 triplet++;
1157 country_ie_len -= 3;
1158 }
1159
1160 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001161 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001162
1163 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1164
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001165 if (sdata->ap_power_level == new_ap_level)
1166 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001167
1168 sdata_info(sdata,
1169 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1170 new_ap_level, chan_pwr, *pwr_constr_elem,
1171 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001172 sdata->ap_power_level = new_ap_level;
1173 if (__ieee80211_recalc_txpower(sdata))
1174 return BSS_CHANGED_TXPOWER;
1175 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001176}
1177
Johannes Berg965beda2009-04-16 13:17:24 +02001178/* powersave */
1179static void ieee80211_enable_ps(struct ieee80211_local *local,
1180 struct ieee80211_sub_if_data *sdata)
1181{
1182 struct ieee80211_conf *conf = &local->hw.conf;
1183
Johannes Bergd5edaed2009-04-22 23:02:51 +02001184 /*
1185 * If we are scanning right now then the parameters will
1186 * take effect when scan finishes.
1187 */
Helmut Schaafbe9c422009-07-23 12:14:04 +02001188 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001189 return;
1190
Johannes Berg965beda2009-04-16 13:17:24 +02001191 if (conf->dynamic_ps_timeout > 0 &&
1192 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1193 mod_timer(&local->dynamic_ps_timer, jiffies +
1194 msecs_to_jiffies(conf->dynamic_ps_timeout));
1195 } else {
1196 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1197 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301198
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001199 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1200 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1201 return;
1202
1203 conf->flags |= IEEE80211_CONF_PS;
1204 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001205 }
1206}
1207
1208static void ieee80211_change_ps(struct ieee80211_local *local)
1209{
1210 struct ieee80211_conf *conf = &local->hw.conf;
1211
1212 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001213 ieee80211_enable_ps(local, local->ps_sdata);
1214 } else if (conf->flags & IEEE80211_CONF_PS) {
1215 conf->flags &= ~IEEE80211_CONF_PS;
1216 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1217 del_timer_sync(&local->dynamic_ps_timer);
1218 cancel_work_sync(&local->dynamic_ps_enable_work);
1219 }
1220}
1221
Jason Young808118c2011-03-10 16:43:19 -08001222static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1223{
1224 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1225 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001226 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001227
1228 if (!mgd->powersave)
1229 return false;
1230
Johannes Berg05cb9102011-10-28 11:59:47 +02001231 if (mgd->broken_ap)
1232 return false;
1233
Jason Young808118c2011-03-10 16:43:19 -08001234 if (!mgd->associated)
1235 return false;
1236
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001237 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
Jason Young808118c2011-03-10 16:43:19 -08001238 return false;
1239
Alexander Bondar989c6502013-05-16 17:34:17 +03001240 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001241 return false;
1242
Jason Young808118c2011-03-10 16:43:19 -08001243 rcu_read_lock();
1244 sta = sta_info_get(sdata, mgd->bssid);
1245 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001246 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001247 rcu_read_unlock();
1248
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001249 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001250}
1251
Johannes Berg965beda2009-04-16 13:17:24 +02001252/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001253void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001254{
1255 struct ieee80211_sub_if_data *sdata, *found = NULL;
1256 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001257 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001258
1259 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1260 local->ps_sdata = NULL;
1261 return;
1262 }
1263
1264 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001265 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001266 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301267 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1268 /* If an AP vif is found, then disable PS
1269 * by setting the count to zero thereby setting
1270 * ps_sdata to NULL.
1271 */
1272 count = 0;
1273 break;
1274 }
Johannes Berg965beda2009-04-16 13:17:24 +02001275 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1276 continue;
1277 found = sdata;
1278 count++;
1279 }
1280
Jason Young808118c2011-03-10 16:43:19 -08001281 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001282 s32 beaconint_us;
1283
1284 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001285 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001286
1287 beaconint_us = ieee80211_tu_to_usec(
1288 found->vif.bss_conf.beacon_int);
1289
Juuso Oikarinenff616382010-06-09 09:51:52 +03001290 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001291 if (timeout < 0) {
1292 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001293 * Go to full PSM if the user configures a very low
1294 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001295 * The 2000 second value is there for compatibility
1296 * until the PM_QOS_NETWORK_LATENCY is configured
1297 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001298 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001299 if (latency > (1900 * USEC_PER_MSEC) &&
1300 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001301 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001302 else
1303 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001304 }
Johannes Berg09b85562013-02-06 23:07:41 +01001305 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001306
Johannes Berg04fe2032009-04-22 18:44:37 +02001307 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001308 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001309 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001310 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001311 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001312
1313 /* If the TIM IE is invalid, pretend the value is 1 */
1314 if (!dtimper)
1315 dtimper = 1;
1316 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001317 maxslp = min_t(int, dtimper,
1318 latency / beaconint_us);
1319
Johannes Berg9ccebe62009-04-23 10:32:36 +02001320 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001321 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001322 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001323 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001324 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001325 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001326 }
Johannes Berg965beda2009-04-16 13:17:24 +02001327
1328 ieee80211_change_ps(local);
1329}
1330
Eliad Pellerab095872012-07-27 12:33:22 +03001331void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1332{
1333 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1334
1335 if (sdata->vif.bss_conf.ps != ps_allowed) {
1336 sdata->vif.bss_conf.ps = ps_allowed;
1337 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1338 }
1339}
1340
Johannes Berg965beda2009-04-16 13:17:24 +02001341void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1342{
1343 struct ieee80211_local *local =
1344 container_of(work, struct ieee80211_local,
1345 dynamic_ps_disable_work);
1346
1347 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1348 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1349 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1350 }
1351
1352 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001353 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001354 IEEE80211_QUEUE_STOP_REASON_PS);
1355}
1356
1357void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1358{
1359 struct ieee80211_local *local =
1360 container_of(work, struct ieee80211_local,
1361 dynamic_ps_enable_work);
1362 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001363 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301364 unsigned long flags;
1365 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001366
1367 /* can only happen when PS was just disabled anyway */
1368 if (!sdata)
1369 return;
1370
Christian Lamparter5e340692011-06-30 21:08:43 +02001371 ifmgd = &sdata->u.mgd;
1372
Johannes Berg965beda2009-04-16 13:17:24 +02001373 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1374 return;
1375
Johannes Berg09b85562013-02-06 23:07:41 +01001376 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001377 /* don't enter PS if TX frames are pending */
1378 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301379 mod_timer(&local->dynamic_ps_timer, jiffies +
1380 msecs_to_jiffies(
1381 local->hw.conf.dynamic_ps_timeout));
1382 return;
1383 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001384
1385 /*
1386 * transmission can be stopped by others which leads to
1387 * dynamic_ps_timer expiry. Postpone the ps timer if it
1388 * is not the actual idle state.
1389 */
1390 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1391 for (q = 0; q < local->hw.queues; q++) {
1392 if (local->queue_stop_reasons[q]) {
1393 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1394 flags);
1395 mod_timer(&local->dynamic_ps_timer, jiffies +
1396 msecs_to_jiffies(
1397 local->hw.conf.dynamic_ps_timeout));
1398 return;
1399 }
1400 }
1401 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301402 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301403
Vivek Natarajan375177b2010-02-09 14:50:28 +05301404 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301405 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001406 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301407 mod_timer(&local->dynamic_ps_timer, jiffies +
1408 msecs_to_jiffies(
1409 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001410 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301411 ieee80211_send_nullfunc(local, sdata, 1);
1412 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001413 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301414 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301415 }
1416
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001417 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1418 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301419 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1420 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1421 local->hw.conf.flags |= IEEE80211_CONF_PS;
1422 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1423 }
Johannes Berg965beda2009-04-16 13:17:24 +02001424}
1425
1426void ieee80211_dynamic_ps_timer(unsigned long data)
1427{
1428 struct ieee80211_local *local = (void *) data;
1429
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001430 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001431 return;
1432
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001433 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001434}
1435
Simon Wunderlich164eb022013-02-08 18:16:20 +01001436void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1437{
1438 struct delayed_work *delayed_work =
1439 container_of(work, struct delayed_work, work);
1440 struct ieee80211_sub_if_data *sdata =
1441 container_of(delayed_work, struct ieee80211_sub_if_data,
1442 dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001443 struct cfg80211_chan_def chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlich164eb022013-02-08 18:16:20 +01001444
Johannes Berg34a37402013-12-18 09:43:33 +01001445 mutex_lock(&sdata->local->mtx);
1446 if (sdata->wdev.cac_started) {
1447 ieee80211_vif_release_channel(sdata);
1448 cfg80211_cac_event(sdata->dev, &chandef,
1449 NL80211_RADAR_CAC_FINISHED,
1450 GFP_KERNEL);
1451 }
1452 mutex_unlock(&sdata->local->mtx);
Simon Wunderlich164eb022013-02-08 18:16:20 +01001453}
1454
Johannes Berg60f8b392008-09-08 17:44:22 +02001455/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001456static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001457 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001458 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001459{
Jiri Bencf0706e82007-05-05 11:45:53 -07001460 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001461 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001462 size_t left;
1463 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001464 const u8 *pos;
1465 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001466
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001467 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001468 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001469
Johannes Berg32c50572012-03-28 11:04:29 +02001470 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001471 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001472
1473 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001474 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001475
Jiri Bencf0706e82007-05-05 11:45:53 -07001476 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001477 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001478
1479 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001480 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001481
Jiri Bencf0706e82007-05-05 11:45:53 -07001482 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001483 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001484 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001485 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001486
1487 pos = wmm_param + 8;
1488 left = wmm_param_len - 8;
1489
1490 memset(&params, 0, sizeof(params));
1491
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001492 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001493 for (; left >= 4; left -= 4, pos += 4) {
1494 int aci = (pos[0] >> 5) & 0x03;
1495 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001496 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001497 int queue;
1498
1499 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001500 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001501 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001502 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001503 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001504 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1505 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001506 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001507 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001508 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001509 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001510 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001511 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1512 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001513 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001514 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001515 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001516 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001517 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001518 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1519 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001520 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001521 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001522 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001523 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001524 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001525 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001526 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1527 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001528 break;
1529 }
1530
1531 params.aifs = pos[0] & 0x0f;
1532 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1533 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001534 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001535 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001536 params.uapsd = uapsd;
1537
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001538 mlme_dbg(sdata,
1539 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1540 queue, aci, acm,
1541 params.aifs, params.cw_min, params.cw_max,
1542 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001543 sdata->tx_conf[queue] = params;
1544 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001545 sdata_err(sdata,
1546 "failed to set TX queue parameters for queue %d\n",
1547 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001548 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001549
1550 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001551 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001552 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001553}
1554
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001555static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1556{
1557 lockdep_assert_held(&sdata->local->mtx);
1558
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001559 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001560 ieee80211_run_deferred_scan(sdata->local);
1561}
1562
1563static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1564{
1565 mutex_lock(&sdata->local->mtx);
1566 __ieee80211_stop_poll(sdata);
1567 mutex_unlock(&sdata->local->mtx);
1568}
1569
Johannes Berg7a5158e2008-10-08 10:59:33 +02001570static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1571 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001572{
Johannes Bergbda39332008-10-11 01:51:51 +02001573 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001574 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001575 bool use_protection;
1576 bool use_short_preamble;
1577 bool use_short_slot;
1578
1579 if (erp_valid) {
1580 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1581 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1582 } else {
1583 use_protection = false;
1584 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1585 }
1586
1587 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001588 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001589 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001590
Johannes Berg471b3ef2007-12-28 14:32:58 +01001591 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001592 bss_conf->use_cts_prot = use_protection;
1593 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001594 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001595
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001596 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001597 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001598 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001599 }
Daniel Draked9430a32007-07-27 15:43:24 +02001600
Johannes Berg7a5158e2008-10-08 10:59:33 +02001601 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001602 bss_conf->use_short_slot = use_short_slot;
1603 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001604 }
1605
1606 return changed;
1607}
1608
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001609static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001610 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001611 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001612{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001613 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001614 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001615 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001616
Johannes Bergae5eb022008-10-14 16:58:37 +02001617 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001618 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001619 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001620
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001621 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001622 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001623
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001624 sdata->u.mgd.associated = cbss;
1625 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001626
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001627 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1628
Johannes Berg488dd7b2012-10-29 20:08:01 +01001629 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001630 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001631
Johannes Berg9caf0362012-11-29 01:25:20 +01001632 rcu_read_lock();
1633 ies = rcu_dereference(cbss->ies);
1634 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001635 int ret;
1636
1637 ret = cfg80211_get_p2p_attr(
1638 ies->data, ies->len,
1639 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001640 (u8 *) &bss_conf->p2p_noa_attr,
1641 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001642 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001643 sdata->u.mgd.p2p_noa_index =
1644 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001645 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001646 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001647 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001648 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001649 }
1650
Johannes Bergb291ba12009-07-10 15:29:03 +02001651 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001652 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001653
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001654 ieee80211_led_assoc(local, 1);
1655
Alexander Bondar989c6502013-05-16 17:34:17 +03001656 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001657 /*
1658 * If the AP is buggy we may get here with no DTIM period
1659 * known, so assume it's 1 which is the only safe assumption
1660 * in that case, although if the TIM IE is broken powersave
1661 * probably just won't work at all.
1662 */
1663 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001664 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001665 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001666 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001667 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001668 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001669 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001670
Juuso Oikarinen68542962010-06-09 13:43:26 +03001671 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001672
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001673 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001674 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001675 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001676 bss_info_changed |= BSS_CHANGED_CQM;
1677
Juuso Oikarinen68542962010-06-09 13:43:26 +03001678 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001679 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001680 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001681
Johannes Bergae5eb022008-10-14 16:58:37 +02001682 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001683
Johannes Berg056508d2009-07-30 21:43:55 +02001684 mutex_lock(&local->iflist_mtx);
1685 ieee80211_recalc_ps(local, -1);
1686 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001687
Johannes Berg04ecd252012-09-11 14:34:12 +02001688 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001689 ieee80211_recalc_ps_vif(sdata);
1690
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001691 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001692}
1693
Jouni Malinene69e95d2010-03-29 23:29:31 -07001694static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001695 u16 stype, u16 reason, bool tx,
1696 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001697{
Johannes Berg46900292009-02-15 12:44:28 +01001698 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001699 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001700 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001701
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001702 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001703
Johannes Berg37ad3882012-02-24 13:50:54 +01001704 if (WARN_ON_ONCE(tx && !frame_buf))
1705 return;
1706
Johannes Bergb291ba12009-07-10 15:29:03 +02001707 if (WARN_ON(!ifmgd->associated))
1708 return;
1709
David Spinadel79543d82012-06-12 09:59:45 +03001710 ieee80211_stop_poll(sdata);
1711
Johannes Berg77fdaa12009-07-07 03:45:17 +02001712 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001713 netif_carrier_off(sdata->dev);
1714
Eliad Peller88bc40e2012-07-12 17:35:33 +03001715 /*
1716 * if we want to get out of ps before disassoc (why?) we have
1717 * to do it before sending disassoc, as otherwise the null-packet
1718 * won't be valid.
1719 */
1720 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1721 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1722 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1723 }
1724 local->ps_sdata = NULL;
1725
Eliad Pellerab095872012-07-27 12:33:22 +03001726 /* disable per-vif ps */
1727 ieee80211_recalc_ps_vif(sdata);
1728
Eliad Pellerf8239812012-06-27 14:18:22 +03001729 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1730 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001731 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001732
Johannes Berg37ad3882012-02-24 13:50:54 +01001733 /* deauthenticate/disassociate now */
1734 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001735 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1736 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001737
1738 /* flush out frame */
1739 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001740 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001741
Eliad Peller88a9e312012-06-01 11:14:03 +03001742 /* clear bssid only after building the needed mgmt frames */
1743 memset(ifmgd->bssid, 0, ETH_ALEN);
1744
Johannes Berg37ad3882012-02-24 13:50:54 +01001745 /* remove AP and TDLS peers */
Johannes Bergd34ba212013-12-04 22:46:11 +01001746 sta_info_flush(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001747
1748 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001749 changed |= ieee80211_reset_erp_info(sdata);
1750
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001751 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001752 changed |= BSS_CHANGED_ASSOC;
1753 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001754
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001755 ifmgd->p2p_noa_index = -1;
1756 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1757 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001758
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001759 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001760 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1761 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001762 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1763 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001764
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001765 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301766
Kalle Valo520eb822008-12-18 23:35:27 +02001767 del_timer_sync(&local->dynamic_ps_timer);
1768 cancel_work_sync(&local->dynamic_ps_enable_work);
1769
Juuso Oikarinen68542962010-06-09 13:43:26 +03001770 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001771 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001772 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001773
Johannes Berg3abead52012-03-02 15:56:59 +01001774 sdata->vif.bss_conf.qos = false;
1775 changed |= BSS_CHANGED_QOS;
1776
Johannes Berg0aaffa92010-05-05 15:28:27 +02001777 /* The BSSID (not really interesting) and HT changed */
1778 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001779 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001780
Johannes Berg3abead52012-03-02 15:56:59 +01001781 /* disassociated - set to defaults now */
1782 ieee80211_set_wmm_default(sdata, false);
1783
Johannes Bergb9dcf712010-08-27 12:35:54 +02001784 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1785 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1786 del_timer_sync(&sdata->u.mgd.timer);
1787 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001788
Johannes Berg826262c2012-12-10 16:38:14 +02001789 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001790 sdata->vif.bss_conf.beacon_rate = NULL;
1791
Alexander Bondar989c6502013-05-16 17:34:17 +03001792 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001793
Johannes Berg028e8da02012-11-26 11:57:41 +01001794 ifmgd->flags = 0;
Johannes Berg34a37402013-12-18 09:43:33 +01001795 mutex_lock(&local->mtx);
Johannes Berg028e8da02012-11-26 11:57:41 +01001796 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001797 mutex_unlock(&local->mtx);
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001798
1799 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001800}
Jiri Bencf0706e82007-05-05 11:45:53 -07001801
Kalle Valo3cf335d2009-03-22 21:57:06 +02001802void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1803 struct ieee80211_hdr *hdr)
1804{
1805 /*
1806 * We can postpone the mgd.timer whenever receiving unicast frames
1807 * from AP because we know that the connection is working both ways
1808 * at that time. But multicast frames (and hence also beacons) must
1809 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001810 * data idle periods for sending the periodic probe request to the
1811 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001812 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001813 if (is_multicast_ether_addr(hdr->addr1))
1814 return;
1815
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001816 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001817}
Jiri Bencf0706e82007-05-05 11:45:53 -07001818
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001819static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1820{
1821 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001822 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001823
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001824 mutex_lock(&local->mtx);
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001825 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
1826 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001827
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001828 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001829
1830 mutex_lock(&local->iflist_mtx);
1831 ieee80211_recalc_ps(local, -1);
1832 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001833
1834 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001835 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001836
1837 /*
1838 * We've received a probe response, but are not sure whether
1839 * we have or will be receiving any beacons or data, so let's
1840 * schedule the timers again, just in case.
1841 */
1842 ieee80211_sta_reset_beacon_monitor(sdata);
1843
1844 mod_timer(&ifmgd->conn_mon_timer,
1845 round_jiffies_up(jiffies +
1846 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001847out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001848 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001849}
1850
1851void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001852 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001853{
Felix Fietkau75706d02010-12-02 21:01:07 +01001854 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001855 return;
1856
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001857 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1858 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001859 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001860 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001861 else
1862 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001863 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001864 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001865 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001866
1867 if (ack)
1868 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001869}
1870
Maxim Levitskya43abf22009-07-31 18:54:12 +03001871static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1872{
1873 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1874 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001875 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001876 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001877
1878 /*
1879 * Try sending broadcast probe requests for the last three
1880 * probe requests after the first ones failed since some
1881 * buggy APs only support broadcast probe requests.
1882 */
1883 if (ifmgd->probe_send_count >= unicast_limit)
1884 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001885
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001886 /*
1887 * When the hardware reports an accurate Tx ACK status, it's
1888 * better to send a nullfunc frame instead of a probe request,
1889 * as it will kick us off the AP quickly if we aren't associated
1890 * anymore. The timeout will be reset if the frame is ACKed by
1891 * the AP.
1892 */
Soumik Das992e68b2012-05-20 15:31:13 +05301893 ifmgd->probe_send_count++;
1894
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001895 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1896 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001897 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001898 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001899 int ssid_len;
1900
Johannes Berg9caf0362012-11-29 01:25:20 +01001901 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001902 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001903 if (WARN_ON_ONCE(ssid == NULL))
1904 ssid_len = 0;
1905 else
1906 ssid_len = ssid[1];
1907
1908 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001909 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02001910 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01001911 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001912 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001913
Ben Greear180205b2011-02-04 15:30:24 -08001914 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001915 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301916 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01001917 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001918}
1919
Johannes Bergb291ba12009-07-10 15:29:03 +02001920static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1921 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001922{
Kalle Valo04de8382009-03-22 21:57:35 +02001923 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001924 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001925
Johannes Berg9607e6b2009-12-23 13:15:31 +01001926 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001927 return;
1928
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001929 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001930
1931 if (!ifmgd->associated)
1932 goto out;
1933
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001934 mutex_lock(&sdata->local->mtx);
1935
1936 if (sdata->local->tmp_channel || sdata->local->scanning) {
1937 mutex_unlock(&sdata->local->mtx);
1938 goto out;
1939 }
1940
Ben Greeara13fbe52013-03-25 11:19:35 -07001941 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001942 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07001943 "detected beacon loss from AP (missed %d beacons) - probing\n",
1944 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001945
Ben Greeara13fbe52013-03-25 11:19:35 -07001946 ieee80211_cqm_rssi_notify(&sdata->vif,
1947 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
1948 GFP_KERNEL);
1949 }
Kalle Valo04de8382009-03-22 21:57:35 +02001950
Johannes Bergb291ba12009-07-10 15:29:03 +02001951 /*
1952 * The driver/our work has already reported this event or the
1953 * connection monitoring has kicked in and we have already sent
1954 * a probe request. Or maybe the AP died and the driver keeps
1955 * reporting until we disassociate...
1956 *
1957 * In either case we have to ignore the current call to this
1958 * function (except for setting the correct probe reason bit)
1959 * because otherwise we would reset the timer every time and
1960 * never check whether we received a probe response!
1961 */
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001962 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Johannes Bergb291ba12009-07-10 15:29:03 +02001963 already = true;
1964
Eliad Peller12b5f342013-11-18 19:06:46 +02001965 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1966
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001967 mutex_unlock(&sdata->local->mtx);
1968
Johannes Bergb291ba12009-07-10 15:29:03 +02001969 if (already)
1970 goto out;
1971
Johannes Berg4e751842009-06-10 15:16:52 +02001972 mutex_lock(&sdata->local->iflist_mtx);
1973 ieee80211_recalc_ps(sdata->local, -1);
1974 mutex_unlock(&sdata->local->iflist_mtx);
1975
Maxim Levitskya43abf22009-07-31 18:54:12 +03001976 ifmgd->probe_send_count = 0;
1977 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001978 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001979 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02001980}
1981
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001982struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1983 struct ieee80211_vif *vif)
1984{
1985 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1986 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001987 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001988 struct sk_buff *skb;
1989 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001990 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001991
1992 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1993 return NULL;
1994
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001995 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001996
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001997 if (ifmgd->associated)
1998 cbss = ifmgd->associated;
1999 else if (ifmgd->auth_data)
2000 cbss = ifmgd->auth_data->bss;
2001 else if (ifmgd->assoc_data)
2002 cbss = ifmgd->assoc_data->bss;
2003 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002004 return NULL;
2005
Johannes Berg9caf0362012-11-29 01:25:20 +01002006 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002007 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002008 if (WARN_ON_ONCE(ssid == NULL))
2009 ssid_len = 0;
2010 else
2011 ssid_len = ssid[1];
2012
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002013 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02002014 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02002015 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02002016 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01002017 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002018
2019 return skb;
2020}
2021EXPORT_SYMBOL(ieee80211_ap_probereq_get);
2022
Johannes Bergeef9e542013-01-29 13:09:34 +01002023static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002024{
2025 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02002026 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002027
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002028 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002029 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002030 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002031 return;
2032 }
2033
Johannes Berg37ad3882012-02-24 13:50:54 +01002034 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2035 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01002036 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02002037 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03002038 sdata->vif.csa_active = false;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002039 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01002040 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002041 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02002042
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002043 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
2044 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002045 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002046}
2047
Johannes Bergcc74c0c2012-08-01 16:49:34 +02002048static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02002049{
2050 struct ieee80211_sub_if_data *sdata =
2051 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002052 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002053 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2054 struct sta_info *sta;
2055
2056 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302057 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002058 sta = sta_info_get(sdata, ifmgd->bssid);
2059 if (sta)
2060 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302061 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002062 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002063
Johannes Berg682bd382013-01-29 13:13:50 +01002064 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002065 sdata_info(sdata, "Connection to AP %pM lost\n",
2066 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002067 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002068 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002069 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002070 }
2071}
2072
2073static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2074{
2075 struct ieee80211_sub_if_data *sdata =
2076 container_of(work, struct ieee80211_sub_if_data,
2077 u.mgd.csa_connection_drop_work);
2078
Johannes Bergeef9e542013-01-29 13:09:34 +01002079 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002080}
2081
Kalle Valo04de8382009-03-22 21:57:35 +02002082void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2083{
2084 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002085 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002086
Johannes Bergb5878a22010-04-07 16:48:40 +02002087 trace_api_beacon_loss(sdata);
2088
Johannes Berg682bd382013-01-29 13:13:50 +01002089 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002090 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002091}
2092EXPORT_SYMBOL(ieee80211_beacon_loss);
2093
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002094void ieee80211_connection_loss(struct ieee80211_vif *vif)
2095{
2096 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2097 struct ieee80211_hw *hw = &sdata->local->hw;
2098
Johannes Bergb5878a22010-04-07 16:48:40 +02002099 trace_api_connection_loss(sdata);
2100
Johannes Berg682bd382013-01-29 13:13:50 +01002101 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002102 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2103}
2104EXPORT_SYMBOL(ieee80211_connection_loss);
2105
2106
Johannes Berg66e67e42012-01-20 13:55:27 +01002107static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2108 bool assoc)
2109{
2110 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2111
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002112 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002113
Johannes Berg66e67e42012-01-20 13:55:27 +01002114 if (!assoc) {
2115 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2116
2117 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2118 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002119 sdata->u.mgd.flags = 0;
Johannes Berg34a37402013-12-18 09:43:33 +01002120 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02002121 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01002122 mutex_unlock(&sdata->local->mtx);
Johannes Berg66e67e42012-01-20 13:55:27 +01002123 }
2124
Johannes Berg5b112d32013-02-01 01:49:58 +01002125 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002126 kfree(auth_data);
2127 sdata->u.mgd.auth_data = NULL;
2128}
2129
2130static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2131 struct ieee80211_mgmt *mgmt, size_t len)
2132{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002133 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002134 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2135 u8 *pos;
2136 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002137 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002138
2139 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002140 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002141 if (!elems.challenge)
2142 return;
2143 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002144 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002145 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2146 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2147 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002148 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002149 elems.challenge - 2, elems.challenge_len + 2,
2150 auth_data->bss->bssid, auth_data->bss->bssid,
2151 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002152 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002153}
2154
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002155static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2156 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002157{
2158 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2159 u8 bssid[ETH_ALEN];
2160 u16 auth_alg, auth_transaction, status_code;
2161 struct sta_info *sta;
2162
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002163 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002164
2165 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002166 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002167
2168 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002169 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002170
2171 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2172
Joe Perchesb203ca32012-05-08 18:56:52 +00002173 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002174 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002175
2176 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2177 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2178 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2179
2180 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002181 auth_transaction != ifmgd->auth_data->expected_transaction) {
2182 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2183 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2184 auth_transaction,
2185 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002186 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002187 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002188
2189 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002190 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2191 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002192 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002193 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002194 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002195 }
2196
2197 switch (ifmgd->auth_data->algorithm) {
2198 case WLAN_AUTH_OPEN:
2199 case WLAN_AUTH_LEAP:
2200 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002201 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002202 break;
2203 case WLAN_AUTH_SHARED_KEY:
2204 if (ifmgd->auth_data->expected_transaction != 4) {
2205 ieee80211_auth_challenge(sdata, mgmt, len);
2206 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002207 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002208 }
2209 break;
2210 default:
2211 WARN_ONCE(1, "invalid auth alg %d",
2212 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002213 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002214 }
2215
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002216 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002217 ifmgd->auth_data->done = true;
2218 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002219 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002220 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002221
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002222 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2223 ifmgd->auth_data->expected_transaction != 2) {
2224 /*
2225 * Report auth frame to user space for processing since another
2226 * round of Authentication frames is still needed.
2227 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002228 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002229 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002230 }
2231
Johannes Berg66e67e42012-01-20 13:55:27 +01002232 /* move station state to auth */
2233 mutex_lock(&sdata->local->sta_mtx);
2234 sta = sta_info_get(sdata, bssid);
2235 if (!sta) {
2236 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2237 goto out_err;
2238 }
2239 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002240 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002241 goto out_err;
2242 }
2243 mutex_unlock(&sdata->local->sta_mtx);
2244
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002245 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002246 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002247 out_err:
2248 mutex_unlock(&sdata->local->sta_mtx);
2249 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002250}
2251
2252
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002253static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2254 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002255{
Johannes Berg46900292009-02-15 12:44:28 +01002256 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002257 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002258 u16 reason_code;
2259
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002260 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002261
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002262 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002263 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002264
Johannes Berg66e67e42012-01-20 13:55:27 +01002265 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002266 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002267 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002268
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002269 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002270
2271 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2272
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002273 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2274 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002275
Johannes Berg37ad3882012-02-24 13:50:54 +01002276 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2277
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002278 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002279}
2280
2281
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002282static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2283 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002284{
Johannes Berg46900292009-02-15 12:44:28 +01002285 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002286 u16 reason_code;
2287
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002288 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002289
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002290 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002291 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002292
Johannes Berg66e67e42012-01-20 13:55:27 +01002293 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002294 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002295 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002296
2297 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2298
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002299 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2300 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002301
Johannes Berg37ad3882012-02-24 13:50:54 +01002302 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2303
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002304 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002305}
2306
Christian Lamparterc74d0842011-10-15 00:14:49 +02002307static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2308 u8 *supp_rates, unsigned int supp_rates_len,
2309 u32 *rates, u32 *basic_rates,
2310 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002311 int *min_rate, int *min_rate_index,
2312 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002313{
2314 int i, j;
2315
2316 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002317 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002318 bool is_basic = !!(supp_rates[i] & 0x80);
2319
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002320 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002321 *have_higher_than_11mbit = true;
2322
2323 /*
2324 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2325 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2326 *
2327 * Note: Even through the membership selector and the basic
2328 * rate flag share the same bit, they are not exactly
2329 * the same.
2330 */
2331 if (!!(supp_rates[i] & 0x80) &&
2332 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2333 continue;
2334
2335 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002336 struct ieee80211_rate *br;
2337 int brate;
2338
2339 br = &sband->bitrates[j];
2340 if ((rate_flags & br->flags) != rate_flags)
2341 continue;
2342
2343 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2344 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002345 *rates |= BIT(j);
2346 if (is_basic)
2347 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002348 if ((rate * 5) < *min_rate) {
2349 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002350 *min_rate_index = j;
2351 }
2352 break;
2353 }
2354 }
2355 }
2356}
Jiri Bencf0706e82007-05-05 11:45:53 -07002357
Johannes Berg66e67e42012-01-20 13:55:27 +01002358static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2359 bool assoc)
2360{
2361 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2362
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002363 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002364
Johannes Berg66e67e42012-01-20 13:55:27 +01002365 if (!assoc) {
2366 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2367
2368 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2369 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002370 sdata->u.mgd.flags = 0;
Johannes Berg34a37402013-12-18 09:43:33 +01002371 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02002372 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01002373 mutex_unlock(&sdata->local->mtx);
Johannes Berg66e67e42012-01-20 13:55:27 +01002374 }
2375
2376 kfree(assoc_data);
2377 sdata->u.mgd.assoc_data = NULL;
2378}
2379
2380static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2381 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002382 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002383{
Johannes Berg46900292009-02-15 12:44:28 +01002384 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002385 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002386 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002387 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002388 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002389 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002390 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002391 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002392 const struct cfg80211_bss_ies *bss_ies = NULL;
2393 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002394 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002395 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002396 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002397
Johannes Bergaf6b6372009-12-23 13:15:35 +01002398 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002399
Jiri Bencf0706e82007-05-05 11:45:53 -07002400 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002401 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002402
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002403 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002404 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2405 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002406 aid &= ~(BIT(15) | BIT(14));
2407
Johannes Berg05cb9102011-10-28 11:59:47 +02002408 ifmgd->broken_ap = false;
2409
2410 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002411 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2412 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002413 aid = 0;
2414 ifmgd->broken_ap = true;
2415 }
2416
Johannes Bergaf6b6372009-12-23 13:15:35 +01002417 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002418 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002419
Jiri Bencf0706e82007-05-05 11:45:53 -07002420 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002421 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002422 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002423 }
2424
Johannes Berg46900292009-02-15 12:44:28 +01002425 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002426
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002427 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002428 * Some APs are erroneously not including some information in their
2429 * (re)association response frames. Try to recover by using the data
2430 * from the beacon or probe response. This seems to afflict mobile
2431 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2432 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2433 */
2434 if ((assoc_data->wmm && !elems.wmm_param) ||
2435 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2436 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2437 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2438 (!elems.vht_cap_elem || !elems.vht_operation))) {
2439 const struct cfg80211_bss_ies *ies;
2440 struct ieee802_11_elems bss_elems;
2441
2442 rcu_read_lock();
2443 ies = rcu_dereference(cbss->ies);
2444 if (ies)
2445 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2446 GFP_ATOMIC);
2447 rcu_read_unlock();
2448 if (!bss_ies)
2449 return false;
2450
2451 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2452 false, &bss_elems);
2453 if (assoc_data->wmm &&
2454 !elems.wmm_param && bss_elems.wmm_param) {
2455 elems.wmm_param = bss_elems.wmm_param;
2456 sdata_info(sdata,
2457 "AP bug: WMM param missing from AssocResp\n");
2458 }
2459
2460 /*
2461 * Also check if we requested HT/VHT, otherwise the AP doesn't
2462 * have to include the IEs in the (re)association response.
2463 */
2464 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2465 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2466 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2467 sdata_info(sdata,
2468 "AP bug: HT capability missing from AssocResp\n");
2469 }
2470 if (!elems.ht_operation && bss_elems.ht_operation &&
2471 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2472 elems.ht_operation = bss_elems.ht_operation;
2473 sdata_info(sdata,
2474 "AP bug: HT operation missing from AssocResp\n");
2475 }
2476 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2477 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2478 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2479 sdata_info(sdata,
2480 "AP bug: VHT capa missing from AssocResp\n");
2481 }
2482 if (!elems.vht_operation && bss_elems.vht_operation &&
2483 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2484 elems.vht_operation = bss_elems.vht_operation;
2485 sdata_info(sdata,
2486 "AP bug: VHT operation missing from AssocResp\n");
2487 }
2488 }
2489
2490 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002491 * We previously checked these in the beacon/probe response, so
2492 * they should be present here. This is just a safety net.
2493 */
2494 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2495 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2496 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002497 "HT AP is missing WMM params or HT capability/operation\n");
2498 ret = false;
2499 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002500 }
2501
2502 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2503 (!elems.vht_cap_elem || !elems.vht_operation)) {
2504 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002505 "VHT AP is missing VHT capability/operation\n");
2506 ret = false;
2507 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002508 }
2509
Guy Eilam2a33bee2011-08-17 15:18:15 +03002510 mutex_lock(&sdata->local->sta_mtx);
2511 /*
2512 * station info was already allocated and inserted before
2513 * the association and should be available to us
2514 */
Johannes Berg7852e362012-01-20 13:55:24 +01002515 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002516 if (WARN_ON(!sta)) {
2517 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002518 ret = false;
2519 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002520 }
2521
Johannes Berg55de9082012-07-26 17:24:39 +02002522 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002523
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002524 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002525 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002526 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002527 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002528
Mahesh Palivela818255e2012-10-10 11:33:04 +00002529 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2530 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002531 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002532
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002533 /*
2534 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2535 * in their association response, so ignore that data for our own
2536 * configuration. If it changed since the last beacon, we'll get the
2537 * next beacon and update then.
2538 */
Johannes Berg11289582013-02-07 17:36:12 +01002539
Johannes Bergbee7f582013-02-07 22:24:55 +01002540 /*
2541 * If an operating mode notification IE is present, override the
2542 * NSS calculation (that would be done in rate_control_rate_init())
2543 * and use the # of streams from that element.
2544 */
2545 if (elems.opmode_notif &&
2546 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2547 u8 nss;
2548
2549 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2550 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2551 nss += 1;
2552 sta->sta.rx_nss = nss;
2553 }
2554
Johannes Berg4b7679a2008-09-18 18:14:18 +02002555 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002556
Johannes Berg46900292009-02-15 12:44:28 +01002557 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002558 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002559
Johannes Bergddf4ac52008-10-22 11:41:38 +02002560 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002561 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002562
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002563 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002564 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2565 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2566 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002567 sdata_info(sdata,
2568 "failed to move station %pM to desired state\n",
2569 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002570 WARN_ON(__sta_info_destroy(sta));
2571 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002572 ret = false;
2573 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002574 }
2575
Johannes Berg7852e362012-01-20 13:55:24 +01002576 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002577
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002578 /*
2579 * Always handle WMM once after association regardless
2580 * of the first value the AP uses. Setting -1 here has
2581 * that effect because the AP values is an unsigned
2582 * 4-bit value.
2583 */
2584 ifmgd->wmm_last_param_set = -1;
2585
Johannes Berg095d81c2013-10-15 12:25:07 +02002586 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) && elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002587 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002588 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002589 else
Johannes Berg3abead52012-03-02 15:56:59 +01002590 ieee80211_set_wmm_default(sdata, false);
2591 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002592
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002593 /* set AID and assoc capability,
2594 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002595 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002596 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002597 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002598
Kalle Valo15b7b062009-03-22 21:57:14 +02002599 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002600 * If we're using 4-addr mode, let the AP know that we're
2601 * doing so, so that it can create the STA VLAN on its side
2602 */
2603 if (ifmgd->use_4addr)
2604 ieee80211_send_4addr_nullfunc(local, sdata);
2605
2606 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002607 * Start timer to probe the connection to the AP now.
2608 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002609 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002610 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002611 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002612
Johannes Berg35d865a2013-05-28 10:54:03 +02002613 ret = true;
2614 out:
2615 kfree(bss_ies);
2616 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002617}
2618
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002619static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2620 struct ieee80211_mgmt *mgmt,
2621 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002622{
2623 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2624 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2625 u16 capab_info, status_code, aid;
2626 struct ieee802_11_elems elems;
2627 u8 *pos;
2628 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002629 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002630
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002631 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002632
2633 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002634 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002635 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002636 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002637
2638 /*
2639 * AssocResp and ReassocResp have identical structure, so process both
2640 * of them in this function.
2641 */
2642
2643 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002644 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002645
2646 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2647 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2648 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2649 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2650
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002651 sdata_info(sdata,
2652 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2653 reassoc ? "Rea" : "A", mgmt->sa,
2654 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002655
2656 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002657 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002658
2659 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002660 elems.timeout_int &&
2661 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002662 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002663 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002664 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002665 sdata_info(sdata,
2666 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2667 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002668 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002669 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002670 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002671 run_again(sdata, assoc_data->timeout);
2672 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002673 }
2674
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002675 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002676
2677 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002678 sdata_info(sdata, "%pM denied association (code=%d)\n",
2679 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002680 ieee80211_destroy_assoc_data(sdata, false);
2681 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002682 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002683 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002684 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002685 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002686 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002687 }
John W. Linville635d9992012-07-09 16:34:34 -04002688 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002689
2690 /*
2691 * destroy assoc_data afterwards, as otherwise an idle
2692 * recalc after assoc_data is NULL but before associated
2693 * is set can cause the interface to go idle
2694 */
2695 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002696 }
2697
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002698 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002699}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002700
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002701static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002702 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002703 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002704 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002705{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002706 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002707 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002708 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002709 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002710
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002711 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002712
Johannes Berg1cd8e882013-03-27 14:30:12 +01002713 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002714 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2715 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002716 else
2717 freq = rx_status->freq;
2718
2719 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2720
2721 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2722 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002723
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002724 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002725 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002726 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002727 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002728 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2729 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002730}
2731
2732
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002733static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002734 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002735{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002736 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002737 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002738 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2739 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002740 struct ieee802_11_elems elems;
2741
Kalle Valo15b7b062009-03-22 21:57:14 +02002742 ifmgd = &sdata->u.mgd;
2743
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002744 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002745
Joe Perchesb203ca32012-05-08 18:56:52 +00002746 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002747 return; /* ignore ProbeResp to foreign address */
2748
Ester Kummerae6a44e2008-06-27 18:54:48 +03002749 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2750 if (baselen > len)
2751 return;
2752
2753 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002754 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002755
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002756 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002757
Johannes Berg77fdaa12009-07-07 03:45:17 +02002758 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002759 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002760 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002761
2762 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002763 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002764 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002765 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002766 ifmgd->auth_data->tries = 0;
2767 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002768 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002769 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002770 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002771}
2772
Johannes Bergd91f36d2009-04-16 13:17:26 +02002773/*
2774 * This is the canonical list of information elements we care about,
2775 * the filter code also gives us all changes to the Microsoft OUI
2776 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2777 *
2778 * We implement beacon filtering in software since that means we can
2779 * avoid processing the frame here and in cfg80211, and userspace
2780 * will not be able to tell whether the hardware supports it or not.
2781 *
2782 * XXX: This list needs to be dynamic -- userspace needs to be able to
2783 * add items it requires. It also needs to be able to tell us to
2784 * look out for other vendor IEs.
2785 */
2786static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002787 (1ULL << WLAN_EID_COUNTRY) |
2788 (1ULL << WLAN_EID_ERP_INFO) |
2789 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2790 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2791 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002792 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002793
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002794static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2795 struct ieee80211_mgmt *mgmt, size_t len,
2796 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002797{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002798 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002799 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002800 size_t baselen;
2801 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002802 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002803 struct ieee80211_chanctx_conf *chanctx_conf;
2804 struct ieee80211_channel *chan;
Johannes Bergbee7f582013-02-07 22:24:55 +01002805 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002806 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002807 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002808 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002809 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002810 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002811 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002812
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002813 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002814
Ester Kummerae6a44e2008-06-27 18:54:48 +03002815 /* Process beacon from the current BSS */
2816 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2817 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002818 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002819
Johannes Berg55de9082012-07-26 17:24:39 +02002820 rcu_read_lock();
2821 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2822 if (!chanctx_conf) {
2823 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002824 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002825 }
2826
Johannes Berg4bf88532012-11-09 11:39:59 +01002827 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002828 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002829 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002830 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002831 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002832 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002833
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002834 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002835 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002836 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002837 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002838
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002839 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002840 if (elems.tim && !elems.parse_error) {
2841 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2842 ifmgd->dtim_period = tim_ie->dtim_period;
2843 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002844 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002845 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002846 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2847 sdata->vif.bss_conf.sync_tsf =
2848 le64_to_cpu(mgmt->u.beacon.timestamp);
2849 sdata->vif.bss_conf.sync_device_ts =
2850 rx_status->device_timestamp;
2851 if (elems.tim)
2852 sdata->vif.bss_conf.sync_dtim_count =
2853 elems.tim->dtim_count;
2854 else
2855 sdata->vif.bss_conf.sync_dtim_count = 0;
2856 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002857 /* continue assoc process */
2858 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002859 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002860 run_again(sdata, ifmgd->assoc_data->timeout);
2861 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002862 }
2863
2864 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002865 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002866 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002867 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002868
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002869 /* Track average RSSI from the Beacon frames of the current AP */
2870 ifmgd->last_beacon_signal = rx_status->signal;
2871 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2872 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002873 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002874 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002875 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002876 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002877 } else {
2878 ifmgd->ave_beacon_signal =
2879 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2880 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2881 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002882 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002883 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002884
2885 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2886 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2887 int sig = ifmgd->ave_beacon_signal;
2888 int last_sig = ifmgd->last_ave_beacon_signal;
2889
2890 /*
2891 * if signal crosses either of the boundaries, invoke callback
2892 * with appropriate parameters
2893 */
2894 if (sig > ifmgd->rssi_max_thold &&
2895 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2896 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002897 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002898 } else if (sig < ifmgd->rssi_min_thold &&
2899 (last_sig >= ifmgd->rssi_max_thold ||
2900 last_sig == 0)) {
2901 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002902 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002903 }
2904 }
2905
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002906 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002907 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002908 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002909 int sig = ifmgd->ave_beacon_signal / 16;
2910 int last_event = ifmgd->last_cqm_event_signal;
2911 int thold = bss_conf->cqm_rssi_thold;
2912 int hyst = bss_conf->cqm_rssi_hyst;
2913 if (sig < thold &&
2914 (last_event == 0 || sig < last_event - hyst)) {
2915 ifmgd->last_cqm_event_signal = sig;
2916 ieee80211_cqm_rssi_notify(
2917 &sdata->vif,
2918 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2919 GFP_KERNEL);
2920 } else if (sig > thold &&
2921 (last_event == 0 || sig > last_event + hyst)) {
2922 ifmgd->last_cqm_event_signal = sig;
2923 ieee80211_cqm_rssi_notify(
2924 &sdata->vif,
2925 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2926 GFP_KERNEL);
2927 }
2928 }
2929
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002930 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002931 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01002932 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002933 ieee80211_reset_ap_probe(sdata);
Jouni Malinen92778182009-05-14 21:15:36 +03002934 }
2935
Johannes Bergb291ba12009-07-10 15:29:03 +02002936 /*
2937 * Push the beacon loss detection into the future since
2938 * we are processing a beacon from the AP just now.
2939 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002940 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002941
Johannes Bergd91f36d2009-04-16 13:17:26 +02002942 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2943 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002944 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02002945 care_about_ies, ncrc);
2946
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302947 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02002948 bool directed_tim = ieee80211_check_tim(elems.tim,
2949 elems.tim_len,
2950 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02002951 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002952 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002953 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2954 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2955 ieee80211_hw_config(local,
2956 IEEE80211_CONF_CHANGE_PS);
2957 }
Kalle Valo572e0012009-02-10 17:09:31 +02002958 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302959 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002960 local->pspolling = true;
2961
2962 /*
2963 * Here is assumed that the driver will be
2964 * able to send ps-poll frame and receive a
2965 * response even though power save mode is
2966 * enabled, but some drivers might require
2967 * to disable power save here. This needs
2968 * to be investigated.
2969 */
2970 ieee80211_send_pspoll(local, sdata);
2971 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002972 }
2973 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002974
Johannes Berg488dd7b2012-10-29 20:08:01 +01002975 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002976 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01002977 int ret;
2978
2979 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2980 len - baselen,
2981 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01002982 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002983 if (ret >= 2) {
2984 if (sdata->u.mgd.p2p_noa_index != noa.index) {
2985 /* valid noa_attr and index changed */
2986 sdata->u.mgd.p2p_noa_index = noa.index;
2987 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
2988 changed |= BSS_CHANGED_P2P_PS;
2989 /*
2990 * make sure we update all information, the CRC
2991 * mechanism doesn't look at P2P attributes.
2992 */
2993 ifmgd->beacon_crc_valid = false;
2994 }
2995 } else if (sdata->u.mgd.p2p_noa_index != -1) {
2996 /* noa_attr not found and we had valid noa_attr before */
2997 sdata->u.mgd.p2p_noa_index = -1;
2998 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01002999 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01003000 ifmgd->beacon_crc_valid = false;
3001 }
3002 }
3003
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003004 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003005 return;
Jouni Malinen30196672009-05-19 17:01:43 +03003006 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003007 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03003008
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02003009 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02003010
Johannes Bergd70b7612013-08-23 15:48:48 +02003011 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
3012 &elems, true);
3013
Johannes Berg095d81c2013-10-15 12:25:07 +02003014 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) &&
3015 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Johannes Berg7d257452012-07-06 17:37:43 +02003016 elems.wmm_param_len))
3017 changed |= BSS_CHANGED_QOS;
3018
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003019 /*
3020 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01003021 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003022 */
Alexander Bondar989c6502013-05-16 17:34:17 +03003023 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003024 /* a few bogus AP send dtim_period = 0 or no TIM IE */
3025 if (elems.tim)
3026 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
3027 else
3028 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01003029
3030 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
3031 sdata->vif.bss_conf.sync_tsf =
3032 le64_to_cpu(mgmt->u.beacon.timestamp);
3033 sdata->vif.bss_conf.sync_device_ts =
3034 rx_status->device_timestamp;
3035 if (elems.tim)
3036 sdata->vif.bss_conf.sync_dtim_count =
3037 elems.tim->dtim_count;
3038 else
3039 sdata->vif.bss_conf.sync_dtim_count = 0;
3040 }
3041
Alexander Bondar989c6502013-05-16 17:34:17 +03003042 changed |= BSS_CHANGED_BEACON_INFO;
3043 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03003044
3045 mutex_lock(&local->iflist_mtx);
3046 ieee80211_recalc_ps(local, -1);
3047 mutex_unlock(&local->iflist_mtx);
3048
Alexander Bondarce857882013-05-06 17:17:04 +03003049 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003050 }
3051
Johannes Berg1946bed2013-03-27 14:31:53 +01003052 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02003053 erp_valid = true;
3054 erp_value = elems.erp_info[0];
3055 } else {
3056 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003057 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003058 changed |= ieee80211_handle_bss_capability(sdata,
3059 le16_to_cpu(mgmt->u.beacon.capab_info),
3060 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003061
Johannes Berg11289582013-02-07 17:36:12 +01003062 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f582013-02-07 22:24:55 +01003063 sta = sta_info_get(sdata, bssid);
3064
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003065 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3066 elems.vht_operation, bssid, &changed)) {
3067 mutex_unlock(&local->sta_mtx);
3068 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3069 WLAN_REASON_DEAUTH_LEAVING,
3070 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003071 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3072 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003073 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003074 }
Johannes Bergbee7f582013-02-07 22:24:55 +01003075
3076 if (sta && elems.opmode_notif)
3077 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3078 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003079 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003080
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003081 if (elems.country_elem && elems.pwr_constr_elem &&
3082 mgmt->u.probe_resp.capab_info &
3083 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003084 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3085 elems.country_elem,
3086 elems.country_elem_len,
3087 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003088
Johannes Berg471b3ef2007-12-28 14:32:58 +01003089 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003090}
3091
Johannes Berg1fa57d02010-06-10 10:21:32 +02003092void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3093 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003094{
3095 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003096 struct ieee80211_mgmt *mgmt;
3097 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003098 struct ieee802_11_elems elems;
3099 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003100
Jiri Bencf0706e82007-05-05 11:45:53 -07003101 rx_status = (struct ieee80211_rx_status *) skb->cb;
3102 mgmt = (struct ieee80211_mgmt *) skb->data;
3103 fc = le16_to_cpu(mgmt->frame_control);
3104
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003105 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003106
Johannes Berg66e67e42012-01-20 13:55:27 +01003107 switch (fc & IEEE80211_FCTL_STYPE) {
3108 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003109 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003110 break;
3111 case IEEE80211_STYPE_PROBE_RESP:
3112 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3113 break;
3114 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003115 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003116 break;
3117 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003118 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003119 break;
3120 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003121 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003122 break;
3123 case IEEE80211_STYPE_ASSOC_RESP:
3124 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003125 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003126 break;
3127 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003128 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003129 ies_len = skb->len -
3130 offsetof(struct ieee80211_mgmt,
3131 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003132
3133 if (ies_len < 0)
3134 break;
3135
3136 ieee802_11_parse_elems(
3137 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003138 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003139
3140 if (elems.parse_error)
3141 break;
3142
Johannes Berg66e67e42012-01-20 13:55:27 +01003143 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003144 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003145 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003146 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3147 ies_len = skb->len -
3148 offsetof(struct ieee80211_mgmt,
3149 u.action.u.ext_chan_switch.variable);
3150
3151 if (ies_len < 0)
3152 break;
3153
3154 ieee802_11_parse_elems(
3155 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003156 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003157
3158 if (elems.parse_error)
3159 break;
3160
3161 /* for the handling code pretend this was also an IE */
3162 elems.ext_chansw_ie =
3163 &mgmt->u.action.u.ext_chan_switch.data;
3164
3165 ieee80211_sta_process_chanswitch(sdata,
3166 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003167 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003168 }
Johannes Berg37799e52013-03-26 14:02:26 +01003169 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003170 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003171 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003172}
3173
Johannes Berg9c6bd792008-09-11 00:01:52 +02003174static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003175{
3176 struct ieee80211_sub_if_data *sdata =
3177 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003178
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003179 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003180}
3181
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003182static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003183 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003184{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003185 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003186
Johannes Berg37ad3882012-02-24 13:50:54 +01003187 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003188 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003189
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003190 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3191 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003192}
3193
Johannes Berg66e67e42012-01-20 13:55:27 +01003194static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3195{
3196 struct ieee80211_local *local = sdata->local;
3197 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3198 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003199 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003200
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003201 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003202
3203 if (WARN_ON_ONCE(!auth_data))
3204 return -EINVAL;
3205
Johannes Berg66e67e42012-01-20 13:55:27 +01003206 auth_data->tries++;
3207
3208 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003209 sdata_info(sdata, "authentication with %pM timed out\n",
3210 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003211
3212 /*
3213 * Most likely AP is not in the range so remove the
3214 * bss struct for that AP.
3215 */
3216 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3217
3218 return -ETIMEDOUT;
3219 }
3220
Johannes Berga1845fc2012-06-27 13:18:36 +02003221 drv_mgd_prepare_tx(local, sdata);
3222
Johannes Berg66e67e42012-01-20 13:55:27 +01003223 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003224 u16 trans = 1;
3225 u16 status = 0;
3226
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003227 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3228 auth_data->bss->bssid, auth_data->tries,
3229 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003230
3231 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003232
3233 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3234 trans = auth_data->sae_trans;
3235 status = auth_data->sae_status;
3236 auth_data->expected_transaction = trans;
3237 }
3238
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003239 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3240 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3241 IEEE80211_TX_INTFL_MLME_CONN_TX;
3242
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003243 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3244 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003245 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003246 auth_data->bss->bssid, NULL, 0, 0,
3247 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003248 } else {
3249 const u8 *ssidie;
3250
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003251 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3252 auth_data->bss->bssid, auth_data->tries,
3253 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003254
Johannes Berg9caf0362012-11-29 01:25:20 +01003255 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003256 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003257 if (!ssidie) {
3258 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003259 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003260 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003261 /*
3262 * Direct probe is sent to broadcast address as some APs
3263 * will not answer to direct packet in unassociated state.
3264 */
3265 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003266 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003267 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003268 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003269 }
3270
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003271 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003272 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003273 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003274 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003275 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003276 auth_data->timeout =
3277 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3278 auth_data->timeout_started = true;
3279 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003280 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003281
3282 return 0;
3283}
3284
3285static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3286{
3287 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3288 struct ieee80211_local *local = sdata->local;
3289
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003290 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003291
Johannes Berg66e67e42012-01-20 13:55:27 +01003292 assoc_data->tries++;
3293 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003294 sdata_info(sdata, "association with %pM timed out\n",
3295 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003296
3297 /*
3298 * Most likely AP is not in the range so remove the
3299 * bss struct for that AP.
3300 */
3301 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3302
3303 return -ETIMEDOUT;
3304 }
3305
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003306 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3307 assoc_data->bss->bssid, assoc_data->tries,
3308 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003309 ieee80211_send_assoc(sdata);
3310
Johannes Berg1672c0e32013-01-29 15:02:27 +01003311 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3312 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003313 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003314 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003315 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003316 assoc_data->timeout =
3317 round_jiffies_up(jiffies +
3318 IEEE80211_ASSOC_TIMEOUT_LONG);
3319 assoc_data->timeout_started = true;
3320 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003321 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003322
3323 return 0;
3324}
3325
Johannes Berg1672c0e32013-01-29 15:02:27 +01003326void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3327 __le16 fc, bool acked)
3328{
3329 struct ieee80211_local *local = sdata->local;
3330
3331 sdata->u.mgd.status_fc = fc;
3332 sdata->u.mgd.status_acked = acked;
3333 sdata->u.mgd.status_received = true;
3334
3335 ieee80211_queue_work(&local->hw, &sdata->work);
3336}
3337
Johannes Berg1fa57d02010-06-10 10:21:32 +02003338void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02003339{
Johannes Berg60f8b392008-09-08 17:44:22 +02003340 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003341 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003342
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003343 sdata_lock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003344
Johannes Berg1672c0e32013-01-29 15:02:27 +01003345 if (ifmgd->status_received) {
3346 __le16 fc = ifmgd->status_fc;
3347 bool status_acked = ifmgd->status_acked;
3348
3349 ifmgd->status_received = false;
3350 if (ifmgd->auth_data &&
3351 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3352 if (status_acked) {
3353 ifmgd->auth_data->timeout =
3354 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003355 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003356 } else {
3357 ifmgd->auth_data->timeout = jiffies - 1;
3358 }
Johannes Berg89afe612013-02-13 15:39:57 +01003359 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003360 } else if (ifmgd->assoc_data &&
3361 (ieee80211_is_assoc_req(fc) ||
3362 ieee80211_is_reassoc_req(fc))) {
3363 if (status_acked) {
3364 ifmgd->assoc_data->timeout =
3365 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003366 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003367 } else {
3368 ifmgd->assoc_data->timeout = jiffies - 1;
3369 }
Johannes Berg89afe612013-02-13 15:39:57 +01003370 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003371 }
3372 }
3373
Johannes Berg89afe612013-02-13 15:39:57 +01003374 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003375 time_after(jiffies, ifmgd->auth_data->timeout)) {
3376 if (ifmgd->auth_data->done) {
3377 /*
3378 * ok ... we waited for assoc but userspace didn't,
3379 * so let's just kill the auth data
3380 */
3381 ieee80211_destroy_auth_data(sdata, false);
3382 } else if (ieee80211_probe_auth(sdata)) {
3383 u8 bssid[ETH_ALEN];
3384
3385 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3386
3387 ieee80211_destroy_auth_data(sdata, false);
3388
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003389 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003390 }
Johannes Berg89afe612013-02-13 15:39:57 +01003391 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003392 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003393
Johannes Berg89afe612013-02-13 15:39:57 +01003394 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003395 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003396 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003397 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003398 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003399
3400 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003401 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003402 }
Johannes Berg89afe612013-02-13 15:39:57 +01003403 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003404 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003405
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02003406 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
Johannes Bergb291ba12009-07-10 15:29:03 +02003407 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003408 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003409 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003410
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003411 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003412
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003413 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003414 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003415 else
Ben Greear180205b2011-02-04 15:30:24 -08003416 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003417
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003418 /* ACK received for nullfunc probing frame */
3419 if (!ifmgd->probe_send_count)
3420 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003421 else if (ifmgd->nullfunc_failed) {
3422 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003423 mlme_dbg(sdata,
3424 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3425 bssid, ifmgd->probe_send_count,
3426 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003427 ieee80211_mgd_probe_ap_send(sdata);
3428 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003429 mlme_dbg(sdata,
3430 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3431 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003432 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003433 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3434 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003435 }
3436 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003437 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003438 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003439 mlme_dbg(sdata,
3440 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3441 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003442 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003443 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003444 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003445 mlme_dbg(sdata,
3446 "No probe response from AP %pM after %dms, try %d/%i\n",
3447 bssid, probe_wait_ms,
3448 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003449 ieee80211_mgd_probe_ap_send(sdata);
3450 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003451 /*
3452 * We actually lost the connection ... or did we?
3453 * Let's make sure!
3454 */
Ben Greearb38afa82010-10-07 16:12:06 -07003455 wiphy_debug(local->hw.wiphy,
3456 "%s: No probe response from AP %pM"
3457 " after %dms, disconnecting.\n",
3458 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003459 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003460
Johannes Berg95acac62011-07-12 12:30:59 +02003461 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003462 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003463 }
3464 }
3465
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003466 sdata_unlock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003467}
Johannes Berg0a51b272008-09-08 17:44:25 +02003468
Johannes Bergb291ba12009-07-10 15:29:03 +02003469static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3470{
3471 struct ieee80211_sub_if_data *sdata =
3472 (struct ieee80211_sub_if_data *) data;
3473 struct ieee80211_local *local = sdata->local;
3474
3475 if (local->quiescing)
3476 return;
3477
Johannes Berg682bd382013-01-29 13:13:50 +01003478 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003479 ieee80211_queue_work(&sdata->local->hw,
3480 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003481}
3482
3483static void ieee80211_sta_conn_mon_timer(unsigned long data)
3484{
3485 struct ieee80211_sub_if_data *sdata =
3486 (struct ieee80211_sub_if_data *) data;
3487 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3488 struct ieee80211_local *local = sdata->local;
3489
3490 if (local->quiescing)
3491 return;
3492
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003493 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003494}
3495
3496static void ieee80211_sta_monitor_work(struct work_struct *work)
3497{
3498 struct ieee80211_sub_if_data *sdata =
3499 container_of(work, struct ieee80211_sub_if_data,
3500 u.mgd.monitor_work);
3501
3502 ieee80211_mgd_probe_ap(sdata, false);
3503}
3504
Johannes Berga1678f82008-09-11 00:01:47 +02003505static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3506{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003507 u32 flags;
3508
Kalle Vaload935682009-04-19 08:47:19 +03003509 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003510 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003511
Johannes Bergb291ba12009-07-10 15:29:03 +02003512 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003513 flags = sdata->local->hw.flags;
3514 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3515 ieee80211_queue_work(&sdata->local->hw,
3516 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003517 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003518 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003519 }
Johannes Berga1678f82008-09-11 00:01:47 +02003520}
3521
Johannes Bergb8360ab2013-04-29 14:57:44 +02003522#ifdef CONFIG_PM
3523void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3524{
3525 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3526
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003527 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003528 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003529 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003530 return;
3531 }
3532
3533 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3534 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3535 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3536 ieee80211_sta_connection_lost(sdata,
3537 ifmgd->associated->bssid,
3538 WLAN_REASON_UNSPECIFIED,
3539 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003540 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003541 return;
3542 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003543 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003544}
3545#endif
3546
Johannes Berg9c6bd792008-09-11 00:01:52 +02003547/* interface setup */
3548void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3549{
Johannes Berg46900292009-02-15 12:44:28 +01003550 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003551
Johannes Berg46900292009-02-15 12:44:28 +01003552 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003553 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003554 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003555 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3556 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003557 INIT_WORK(&ifmgd->csa_connection_drop_work,
3558 ieee80211_csa_connection_drop_work);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03003559 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_mgd_work);
Johannes Berg46900292009-02-15 12:44:28 +01003560 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003561 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003562 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3563 (unsigned long) sdata);
3564 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3565 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003566 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303567 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003568
Johannes Bergab1faea2009-07-01 21:41:17 +02003569 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303570 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003571 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3572 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003573 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003574
Johannes Berg0f782312009-12-01 13:37:02 +01003575 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3576 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3577 else
3578 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003579}
3580
3581/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003582void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3583{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003584 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003585
3586 /* Restart STA timers */
3587 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003588 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3589 if (ieee80211_sdata_running(sdata))
3590 ieee80211_restart_sta_timer(sdata);
3591 }
Johannes Berga1678f82008-09-11 00:01:47 +02003592 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003593}
Johannes Berg10f644a2009-04-16 13:17:25 +02003594
3595int ieee80211_max_network_latency(struct notifier_block *nb,
3596 unsigned long data, void *dummy)
3597{
3598 s32 latency_usec = (s32) data;
3599 struct ieee80211_local *local =
3600 container_of(nb, struct ieee80211_local,
3601 network_latency_notifier);
3602
3603 mutex_lock(&local->iflist_mtx);
3604 ieee80211_recalc_ps(local, latency_usec);
3605 mutex_unlock(&local->iflist_mtx);
3606
3607 return 0;
3608}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003609
Johannes Bergf2d9d272012-11-22 14:11:39 +01003610static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3611 struct cfg80211_bss *cbss)
3612{
3613 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3614 const u8 *ht_cap_ie, *vht_cap_ie;
3615 const struct ieee80211_ht_cap *ht_cap;
3616 const struct ieee80211_vht_cap *vht_cap;
3617 u8 chains = 1;
3618
3619 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3620 return chains;
3621
Johannes Berg9caf0362012-11-29 01:25:20 +01003622 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003623 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3624 ht_cap = (void *)(ht_cap_ie + 2);
3625 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3626 /*
3627 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3628 * "Tx Unequal Modulation Supported" fields.
3629 */
3630 }
3631
3632 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3633 return chains;
3634
Johannes Berg9caf0362012-11-29 01:25:20 +01003635 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003636 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3637 u8 nss;
3638 u16 tx_mcs_map;
3639
3640 vht_cap = (void *)(vht_cap_ie + 2);
3641 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3642 for (nss = 8; nss > 0; nss--) {
3643 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3644 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3645 break;
3646 }
3647 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3648 chains = max(chains, nss);
3649 }
3650
3651 return chains;
3652}
3653
Johannes Bergb17166a2012-07-27 11:41:27 +02003654static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3655 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003656{
3657 struct ieee80211_local *local = sdata->local;
3658 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003659 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003660 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003661 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003662 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003663 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003664
Johannes Berg24398e32012-03-28 10:58:36 +02003665 sband = local->hw.wiphy->bands[cbss->channel->band];
3666
Johannes Bergf2d9d272012-11-22 14:11:39 +01003667 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3668 IEEE80211_STA_DISABLE_80P80MHZ |
3669 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003670
Johannes Berg9caf0362012-11-29 01:25:20 +01003671 rcu_read_lock();
3672
Johannes Bergf2d9d272012-11-22 14:11:39 +01003673 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3674 sband->ht_cap.ht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003675 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003676
Johannes Berg9caf0362012-11-29 01:25:20 +01003677 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003678 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3679 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6eff2013-02-07 23:33:32 +01003680
3681 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3682 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3683 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3684 ht_oper = NULL;
3685 }
Johannes Berg24398e32012-03-28 10:58:36 +02003686 }
3687
Johannes Bergf2d9d272012-11-22 14:11:39 +01003688 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3689 sband->vht_cap.vht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003690 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003691
Johannes Berg9caf0362012-11-29 01:25:20 +01003692 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3693 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003694 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3695 vht_oper = (void *)(vht_oper_ie + 2);
3696 if (vht_oper && !ht_oper) {
3697 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003698 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003699 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003700 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3701 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003702 }
Johannes Berg08e6eff2013-02-07 23:33:32 +01003703
3704 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3705 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3706 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3707 vht_oper = NULL;
3708 }
Johannes Berg24398e32012-03-28 10:58:36 +02003709 }
3710
Johannes Bergf2d9d272012-11-22 14:11:39 +01003711 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3712 cbss->channel,
3713 ht_oper, vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +02003714 &chandef, false);
Johannes Berg04ecd252012-09-11 14:34:12 +02003715
Johannes Bergf2d9d272012-11-22 14:11:39 +01003716 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3717 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003718
Johannes Berg9caf0362012-11-29 01:25:20 +01003719 rcu_read_unlock();
3720
Johannes Berg04ecd252012-09-11 14:34:12 +02003721 /* will change later if needed */
3722 sdata->smps_mode = IEEE80211_SMPS_OFF;
3723
Johannes Berg34a37402013-12-18 09:43:33 +01003724 mutex_lock(&local->mtx);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003725 /*
3726 * If this fails (possibly due to channel context sharing
3727 * on incompatible channels, e.g. 80+80 and 160 sharing the
3728 * same control channel) try to use a smaller bandwidth.
3729 */
3730 ret = ieee80211_vif_use_channel(sdata, &chandef,
3731 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003732
3733 /* don't downgrade for 5 and 10 MHz channels, though. */
3734 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3735 chandef.width == NL80211_CHAN_WIDTH_10)
Johannes Berg34a37402013-12-18 09:43:33 +01003736 goto out;
Simon Wunderlich0418a442013-05-16 13:00:31 +02003737
Johannes Bergd601cd82013-02-07 20:54:51 +01003738 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02003739 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003740 ret = ieee80211_vif_use_channel(sdata, &chandef,
3741 IEEE80211_CHANCTX_SHARED);
3742 }
Johannes Berg34a37402013-12-18 09:43:33 +01003743 out:
3744 mutex_unlock(&local->mtx);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003745 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003746}
3747
3748static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3749 struct cfg80211_bss *cbss, bool assoc)
3750{
3751 struct ieee80211_local *local = sdata->local;
3752 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3753 struct ieee80211_bss *bss = (void *)cbss->priv;
3754 struct sta_info *new_sta = NULL;
3755 bool have_sta = false;
3756 int err;
3757
3758 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3759 return -EINVAL;
3760
3761 if (assoc) {
3762 rcu_read_lock();
3763 have_sta = sta_info_get(sdata, cbss->bssid);
3764 rcu_read_unlock();
3765 }
3766
3767 if (!have_sta) {
3768 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3769 if (!new_sta)
3770 return -ENOMEM;
3771 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003772 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003773 u32 rates = 0, basic_rates = 0;
3774 bool have_higher_than_11mbit;
3775 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003776 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003777 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003778 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003779 int shift;
3780 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003781
3782 sband = local->hw.wiphy->bands[cbss->channel->band];
3783
3784 err = ieee80211_prep_channel(sdata, cbss);
3785 if (err) {
3786 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003787 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003788 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003789 shift = ieee80211_vif_get_shift(&sdata->vif);
3790
3791 rcu_read_lock();
3792 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3793 if (WARN_ON(!chanctx_conf)) {
3794 rcu_read_unlock();
3795 return -EINVAL;
3796 }
3797 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3798 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003799
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003800 ieee80211_get_rates(sband, bss->supp_rates,
3801 bss->supp_rates_len,
3802 &rates, &basic_rates,
3803 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003804 &min_rate, &min_rate_index,
3805 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003806
3807 /*
3808 * This used to be a workaround for basic rates missing
3809 * in the association response frame. Now that we no
3810 * longer use the basic rates from there, it probably
3811 * doesn't happen any more, but keep the workaround so
3812 * in case some *other* APs are buggy in different ways
3813 * we can connect -- with a warning.
3814 */
3815 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003816 sdata_info(sdata,
3817 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003818 basic_rates = BIT(min_rate_index);
3819 }
3820
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003821 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003822 sdata->vif.bss_conf.basic_rates = basic_rates;
3823
3824 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003825 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003826 have_higher_than_11mbit)
3827 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3828 else
3829 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3830
3831 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3832
Johannes Berg8c358bc2012-05-22 22:13:05 +02003833 /* set timing information */
3834 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003835 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003836 ies = rcu_dereference(cbss->beacon_ies);
3837 if (ies) {
3838 const u8 *tim_ie;
3839
3840 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3841 sdata->vif.bss_conf.sync_device_ts =
3842 bss->device_ts_beacon;
3843 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3844 ies->data, ies->len);
3845 if (tim_ie && tim_ie[1] >= 2)
3846 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3847 else
3848 sdata->vif.bss_conf.sync_dtim_count = 0;
3849 } else if (!(local->hw.flags &
3850 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3851 ies = rcu_dereference(cbss->proberesp_ies);
3852 /* must be non-NULL since beacon IEs were NULL */
3853 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3854 sdata->vif.bss_conf.sync_device_ts =
3855 bss->device_ts_presp;
3856 sdata->vif.bss_conf.sync_dtim_count = 0;
3857 } else {
3858 sdata->vif.bss_conf.sync_tsf = 0;
3859 sdata->vif.bss_conf.sync_device_ts = 0;
3860 sdata->vif.bss_conf.sync_dtim_count = 0;
3861 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003862 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003863
3864 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003865 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003866 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3867 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003868
3869 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003870 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003871
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003872 err = sta_info_insert(new_sta);
3873 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003874 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003875 sdata_info(sdata,
3876 "failed to insert STA entry for the AP (error %d)\n",
3877 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003878 return err;
3879 }
3880 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003881 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003882
3883 return 0;
3884}
3885
Johannes Berg77fdaa12009-07-07 03:45:17 +02003886/* config hooks */
3887int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3888 struct cfg80211_auth_request *req)
3889{
Johannes Berg66e67e42012-01-20 13:55:27 +01003890 struct ieee80211_local *local = sdata->local;
3891 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3892 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003893 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003894 int err;
3895
3896 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003897
3898 switch (req->auth_type) {
3899 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3900 auth_alg = WLAN_AUTH_OPEN;
3901 break;
3902 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003903 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003904 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003905 auth_alg = WLAN_AUTH_SHARED_KEY;
3906 break;
3907 case NL80211_AUTHTYPE_FT:
3908 auth_alg = WLAN_AUTH_FT;
3909 break;
3910 case NL80211_AUTHTYPE_NETWORK_EAP:
3911 auth_alg = WLAN_AUTH_LEAP;
3912 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003913 case NL80211_AUTHTYPE_SAE:
3914 auth_alg = WLAN_AUTH_SAE;
3915 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003916 default:
3917 return -EOPNOTSUPP;
3918 }
3919
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003920 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3921 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003922 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003923 return -ENOMEM;
3924
Johannes Berg66e67e42012-01-20 13:55:27 +01003925 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003926
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003927 if (req->sae_data_len >= 4) {
3928 __le16 *pos = (__le16 *) req->sae_data;
3929 auth_data->sae_trans = le16_to_cpu(pos[0]);
3930 auth_data->sae_status = le16_to_cpu(pos[1]);
3931 memcpy(auth_data->data, req->sae_data + 4,
3932 req->sae_data_len - 4);
3933 auth_data->data_len += req->sae_data_len - 4;
3934 }
3935
Johannes Berg77fdaa12009-07-07 03:45:17 +02003936 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003937 memcpy(&auth_data->data[auth_data->data_len],
3938 req->ie, req->ie_len);
3939 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003940 }
3941
Johannes Bergfffd0932009-07-08 14:22:54 +02003942 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003943 auth_data->key_len = req->key_len;
3944 auth_data->key_idx = req->key_idx;
3945 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003946 }
3947
Johannes Berg66e67e42012-01-20 13:55:27 +01003948 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003949
Johannes Berg66e67e42012-01-20 13:55:27 +01003950 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003951
Johannes Berg66e67e42012-01-20 13:55:27 +01003952 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3953 ifmgd->assoc_data) {
3954 err = -EBUSY;
3955 goto err_free;
3956 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003957
Johannes Berg66e67e42012-01-20 13:55:27 +01003958 if (ifmgd->auth_data)
3959 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003960
Johannes Berg66e67e42012-01-20 13:55:27 +01003961 /* prep auth_data so we don't go into idle on disassoc */
3962 ifmgd->auth_data = auth_data;
3963
Johannes Berg7b119dc2013-04-10 21:38:36 +02003964 if (ifmgd->associated) {
3965 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3966
3967 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3968 WLAN_REASON_UNSPECIFIED,
3969 false, frame_buf);
3970
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003971 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3972 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003973 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003974
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003975 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003976
Johannes Berga1cf7752012-03-08 15:02:07 +01003977 err = ieee80211_prep_connection(sdata, req->bss, false);
3978 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003979 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003980
Johannes Berg66e67e42012-01-20 13:55:27 +01003981 err = ieee80211_probe_auth(sdata);
3982 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003983 sta_info_destroy_addr(sdata, req->bss->bssid);
3984 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003985 }
3986
Johannes Berg66e67e42012-01-20 13:55:27 +01003987 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01003988 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003989 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02003990
Johannes Berg66e67e42012-01-20 13:55:27 +01003991 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03003992 memset(ifmgd->bssid, 0, ETH_ALEN);
3993 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01003994 ifmgd->auth_data = NULL;
3995 err_free:
3996 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01003997 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003998}
3999
Johannes Berg095d81c2013-10-15 12:25:07 +02004000static bool ieee80211_usable_wmm_params(struct ieee80211_sub_if_data *sdata,
4001 const u8 *wmm_param, int len)
4002{
4003 const u8 *pos;
4004 size_t left;
4005
4006 if (len < 8)
4007 return false;
4008
4009 if (wmm_param[5] != 1 /* version */)
4010 return false;
4011
4012 pos = wmm_param + 8;
4013 left = len - 8;
4014
4015 for (; left >= 4; left -= 4, pos += 4) {
4016 u8 aifsn = pos[0] & 0x0f;
4017 u8 ecwmin = pos[1] & 0x0f;
4018 u8 ecwmax = (pos[1] & 0xf0) >> 4;
4019 int aci = (pos[0] >> 5) & 0x03;
4020
4021 if (aifsn < 2) {
4022 sdata_info(sdata,
4023 "AP has invalid WMM params (AIFSN=%d for ACI %d), disabling WMM\n",
4024 aifsn, aci);
4025 return false;
4026 }
4027 if (ecwmin > ecwmax) {
4028 sdata_info(sdata,
4029 "AP has invalid WMM params (ECWmin/max=%d/%d for ACI %d), disabling WMM\n",
4030 ecwmin, ecwmax, aci);
4031 return false;
4032 }
4033 }
4034
4035 return true;
4036}
4037
Johannes Berg77fdaa12009-07-07 03:45:17 +02004038int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4039 struct cfg80211_assoc_request *req)
4040{
Johannes Berg66e67e42012-01-20 13:55:27 +01004041 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004042 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01004043 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01004044 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004045 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004046 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004047 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004048 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004049
Johannes Berg66e67e42012-01-20 13:55:27 +01004050 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
4051 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01004052 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004053
Johannes Berg9caf0362012-11-29 01:25:20 +01004054 rcu_read_lock();
4055 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4056 if (!ssidie) {
4057 rcu_read_unlock();
4058 kfree(assoc_data);
4059 return -EINVAL;
4060 }
4061 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4062 assoc_data->ssid_len = ssidie[1];
4063 rcu_read_unlock();
4064
Johannes Berg7b119dc2013-04-10 21:38:36 +02004065 if (ifmgd->associated) {
4066 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4067
4068 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4069 WLAN_REASON_UNSPECIFIED,
4070 false, frame_buf);
4071
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004072 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4073 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004074 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004075
4076 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4077 err = -EBUSY;
4078 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004079 }
4080
Johannes Berg66e67e42012-01-20 13:55:27 +01004081 if (ifmgd->assoc_data) {
4082 err = -EBUSY;
4083 goto err_free;
4084 }
4085
4086 if (ifmgd->auth_data) {
4087 bool match;
4088
4089 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00004090 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004091 ieee80211_destroy_auth_data(sdata, match);
4092 }
4093
4094 /* prepare assoc data */
Johannes Berg095d81c2013-10-15 12:25:07 +02004095
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03004096 ifmgd->beacon_crc_valid = false;
4097
Johannes Berg095d81c2013-10-15 12:25:07 +02004098 assoc_data->wmm = bss->wmm_used &&
4099 (local->hw.queues >= IEEE80211_NUM_ACS);
4100 if (assoc_data->wmm) {
4101 /* try to check validity of WMM params IE */
4102 const struct cfg80211_bss_ies *ies;
4103 const u8 *wp, *start, *end;
4104
4105 rcu_read_lock();
4106 ies = rcu_dereference(req->bss->ies);
4107 start = ies->data;
4108 end = start + ies->len;
4109
4110 while (true) {
4111 wp = cfg80211_find_vendor_ie(
4112 WLAN_OUI_MICROSOFT,
4113 WLAN_OUI_TYPE_MICROSOFT_WMM,
4114 start, end - start);
4115 if (!wp)
4116 break;
4117 start = wp + wp[1] + 2;
4118 /* if this IE is too short, try the next */
4119 if (wp[1] <= 4)
4120 continue;
4121 /* if this IE is WMM params, we found what we wanted */
4122 if (wp[6] == 1)
4123 break;
4124 }
4125
4126 if (!wp || !ieee80211_usable_wmm_params(sdata, wp + 2,
4127 wp[1] - 2)) {
4128 assoc_data->wmm = false;
4129 ifmgd->flags |= IEEE80211_STA_DISABLE_WMM;
4130 }
4131 rcu_read_unlock();
4132 }
4133
Johannes Bergde5036a2012-03-08 15:02:03 +01004134 /*
4135 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4136 * We still associate in non-HT mode (11a/b/g) if any one of these
4137 * ciphers is configured as pairwise.
4138 * We can set this to true for non-11n hardware, that'll be checked
4139 * separately along with the peer capabilities.
4140 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004141 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004142 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4143 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004144 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004145 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004146 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004147 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004148 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004149 }
4150 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004151
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004152 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004153 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004154 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4155 }
Ben Greearef96a8422011-11-18 11:32:00 -08004156
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004157 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4158 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4159
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004160 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4161 sband = local->hw.wiphy->bands[req->bss->channel->band];
4162 if (!sband->ht_cap.ht_supported ||
Johannes Berg095d81c2013-10-15 12:25:07 +02004163 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4164 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
Johannes Berga8243b72012-11-22 14:32:09 +01004165 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg095d81c2013-10-15 12:25:07 +02004166 if (!bss->wmm_used &&
4167 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
Johannes Berg1b49de22012-07-27 10:29:14 +02004168 netdev_info(sdata->dev,
4169 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004170 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004171
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004172 /* disable VHT if we don't support it or the AP doesn't use WMM */
4173 if (!sband->vht_cap.vht_supported ||
Johannes Berg095d81c2013-10-15 12:25:07 +02004174 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4175 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004176 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg095d81c2013-10-15 12:25:07 +02004177 if (!bss->wmm_used &&
4178 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
Johannes Berg1b49de22012-07-27 10:29:14 +02004179 netdev_info(sdata->dev,
4180 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004181 }
4182
Ben Greearef96a8422011-11-18 11:32:00 -08004183 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4184 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4185 sizeof(ifmgd->ht_capa_mask));
4186
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004187 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4188 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4189 sizeof(ifmgd->vht_capa_mask));
4190
Johannes Berg77fdaa12009-07-07 03:45:17 +02004191 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004192 memcpy(assoc_data->ie, req->ie, req->ie_len);
4193 assoc_data->ie_len = req->ie_len;
4194 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004195
Johannes Berg66e67e42012-01-20 13:55:27 +01004196 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004197
Johannes Bergaf6b6372009-12-23 13:15:35 +01004198 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4199 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004200 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004201 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004202 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004203 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004204 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004205
Johannes Berg66e67e42012-01-20 13:55:27 +01004206 assoc_data->capability = req->bss->capability;
Johannes Berg66e67e42012-01-20 13:55:27 +01004207 assoc_data->supp_rates = bss->supp_rates;
4208 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004209
Johannes Berg9caf0362012-11-29 01:25:20 +01004210 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004211 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4212 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4213 assoc_data->ap_ht_param =
4214 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4215 else
Johannes Berga8243b72012-11-22 14:32:09 +01004216 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004217 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4218 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4219 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4220 sizeof(struct ieee80211_vht_cap));
4221 else
4222 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004223 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004224
Kalle Valoab133152010-01-12 10:42:31 +02004225 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004226 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4227 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004228 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004229 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4230 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004231 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004232 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4233 }
4234
Johannes Berg77fdaa12009-07-07 03:45:17 +02004235 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004236 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004237
4238 if (req->use_mfp) {
4239 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4240 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4241 } else {
4242 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4243 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4244 }
4245
4246 if (req->crypto.control_port)
4247 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4248 else
4249 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4250
Johannes Berga621fa42010-08-27 14:26:54 +03004251 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4252 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02004253 sdata->encrypt_headroom = ieee80211_cs_headroom(local, &req->crypto,
4254 sdata->vif.type);
Johannes Berga621fa42010-08-27 14:26:54 +03004255
Johannes Berg66e67e42012-01-20 13:55:27 +01004256 /* kick off associate process */
4257
4258 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004259 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004260 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004261
Johannes Berga1cf7752012-03-08 15:02:07 +01004262 err = ieee80211_prep_connection(sdata, req->bss, true);
4263 if (err)
4264 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004265
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004266 rcu_read_lock();
4267 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004268
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004269 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4270 !beacon_ies) {
4271 /*
4272 * Wait up to one beacon interval ...
4273 * should this be more if we miss one?
4274 */
4275 sdata_info(sdata, "waiting for beacon from %pM\n",
4276 ifmgd->bssid);
4277 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004278 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004279 assoc_data->need_beacon = true;
4280 } else if (beacon_ies) {
4281 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4282 beacon_ies->data,
4283 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004284 u8 dtim_count = 0;
4285
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004286 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4287 const struct ieee80211_tim_ie *tim;
4288 tim = (void *)(tim_ie + 2);
4289 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004290 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004291 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004292 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004293 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004294 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004295
4296 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4297 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4298 sdata->vif.bss_conf.sync_device_ts =
4299 bss->device_ts_beacon;
4300 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4301 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004302 } else {
4303 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004304 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004305 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004306 rcu_read_unlock();
4307
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004308 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004309
Paul Stewartfcff4f12012-02-23 17:59:53 -08004310 if (bss->corrupt_data) {
4311 char *corrupt_type = "data";
4312 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4313 if (bss->corrupt_data &
4314 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4315 corrupt_type = "beacon and probe response";
4316 else
4317 corrupt_type = "beacon";
4318 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4319 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004320 sdata_info(sdata, "associating with AP with corrupt %s\n",
4321 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004322 }
4323
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004324 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004325 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004326 memset(ifmgd->bssid, 0, ETH_ALEN);
4327 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004328 ifmgd->assoc_data = NULL;
4329 err_free:
4330 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004331 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004332}
4333
4334int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004335 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004336{
4337 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004338 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004339 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004340 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004341
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004342 sdata_info(sdata,
4343 "deauthenticating from %pM by local choice (reason=%d)\n",
4344 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004345
Johannes Berg86552012012-10-29 09:46:31 +01004346 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004347 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004348 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4349 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004350 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004351 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004352 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004353
Johannes Bergde3d43a2013-05-14 09:39:02 +02004354 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004355 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004356 }
4357
Johannes Berg86552012012-10-29 09:46:31 +01004358 if (ifmgd->associated &&
4359 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4360 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4361 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004362 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004363 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004364
Johannes Berg86552012012-10-29 09:46:31 +01004365 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004366 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004367 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4368 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004369
Johannes Berg77fdaa12009-07-07 03:45:17 +02004370 return 0;
4371}
4372
4373int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004374 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004375{
4376 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004377 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004378 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004379
Johannes Berg8d8b2612009-07-25 11:58:36 +02004380 /*
4381 * cfg80211 should catch this ... but it's racy since
4382 * we can receive a disassoc frame, process it, hand it
4383 * to cfg80211 while that's in a locked section already
4384 * trying to tell us that the user wants to disconnect.
4385 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004386 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004387 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004388
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004389 sdata_info(sdata,
4390 "disassociating from %pM by local choice (reason=%d)\n",
4391 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004392
Jouni Malinene69e95d2010-03-29 23:29:31 -07004393 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004394 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4395 req->reason_code, !req->local_state_change,
4396 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004397
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004398 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4399 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004400
Johannes Berg77fdaa12009-07-07 03:45:17 +02004401 return 0;
4402}
Jouni Malinen026331c2010-02-15 12:53:10 +02004403
Eliad Pellerafa762f2012-04-23 14:45:15 +03004404void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004405{
4406 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4407
Ben Greear49921852013-02-20 09:41:09 -08004408 /*
4409 * Make sure some work items will not run after this,
4410 * they will not do anything but might not have been
4411 * cancelled when disconnecting.
4412 */
4413 cancel_work_sync(&ifmgd->monitor_work);
4414 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4415 cancel_work_sync(&ifmgd->request_smps_work);
4416 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4417 cancel_work_sync(&ifmgd->chswitch_work);
4418
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004419 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004420 if (ifmgd->assoc_data) {
4421 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004422 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004423 cfg80211_assoc_timeout(sdata->dev, bss);
4424 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004425 if (ifmgd->auth_data)
4426 ieee80211_destroy_auth_data(sdata, false);
4427 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004428 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004429}
4430
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004431void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4432 enum nl80211_cqm_rssi_threshold_event rssi_event,
4433 gfp_t gfp)
4434{
4435 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4436
Johannes Bergb5878a22010-04-07 16:48:40 +02004437 trace_api_cqm_rssi_notify(sdata, rssi_event);
4438
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004439 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4440}
4441EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);