blob: fc1d82465b3ce1b1cdcc9edb4f5157618b70e8ce [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040019#include <linux/moduleparam.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010020#include <linux/rtnetlink.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020021#include <linux/pm_qos.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020022#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020026#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020027
Jiri Bencf0706e82007-05-05 11:45:53 -070028#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
31#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070032
Johannes Berg1672c0e32013-01-29 15:02:27 +010033#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020034#define IEEE80211_AUTH_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010035#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
36#define IEEE80211_AUTH_MAX_TRIES 3
37#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
38#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020039#define IEEE80211_ASSOC_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010040#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
41#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Berg66e67e42012-01-20 13:55:27 +010042
Ben Greear180205b2011-02-04 15:30:24 -080043static int max_nullfunc_tries = 2;
44module_param(max_nullfunc_tries, int, 0644);
45MODULE_PARM_DESC(max_nullfunc_tries,
46 "Maximum nullfunc tx tries before disconnecting (reason 4).");
47
48static int max_probe_tries = 5;
49module_param(max_probe_tries, int, 0644);
50MODULE_PARM_DESC(max_probe_tries,
51 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020052
53/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010054 * Beacon loss timeout is calculated as N frames times the
55 * advertised beacon interval. This may need to be somewhat
56 * higher than what hardware might detect to account for
57 * delays in the host processing frames. But since we also
58 * probe on beacon miss before declaring the connection lost
59 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020060 */
Ben Greear59c1ec22013-03-19 14:19:56 -070061static int beacon_loss_count = 7;
62module_param(beacon_loss_count, int, 0644);
63MODULE_PARM_DESC(beacon_loss_count,
64 "Number of beacon intervals before we decide beacon was lost.");
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010065
Johannes Bergb291ba12009-07-10 15:29:03 +020066/*
67 * Time the connection can be idle before we probe
68 * it to see if we can still talk to the AP.
69 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030070#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020071/*
72 * Time we wait for a probe response after sending
73 * a probe request because of beacon loss or for
74 * checking the connection still works.
75 */
Ben Greear180205b2011-02-04 15:30:24 -080076static int probe_wait_ms = 500;
77module_param(probe_wait_ms, int, 0644);
78MODULE_PARM_DESC(probe_wait_ms,
79 "Maximum time(ms) to wait for probe response"
80 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070081
Jouni Malinen17e4ec12010-03-29 23:28:30 -070082/*
83 * Weight given to the latest Beacon frame when calculating average signal
84 * strength for Beacon frames received in the current BSS. This must be
85 * between 1 and 15.
86 */
87#define IEEE80211_SIGNAL_AVE_WEIGHT 3
88
Jouni Malinen391a2002010-08-27 22:22:00 +030089/*
90 * How many Beacon frames need to have been used in average signal strength
91 * before starting to indicate signal change events.
92 */
93#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
94
Johannes Berg77fdaa12009-07-07 03:45:17 +020095/*
Johannes Bergca386f32009-07-10 02:39:48 +020096 * We can have multiple work items (and connection probing)
97 * scheduling this timer, but we need to take care to only
98 * reschedule it when it should fire _earlier_ than it was
99 * asked for before, or if it's not pending right now. This
100 * function ensures that. Note that it then is required to
101 * run this function for all timeouts after the first one
102 * has happened -- the work that runs from this timer will
103 * do that.
104 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200105static void run_again(struct ieee80211_sub_if_data *sdata,
106 unsigned long timeout)
Johannes Bergca386f32009-07-10 02:39:48 +0200107{
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200108 sdata_assert_lock(sdata);
Johannes Bergca386f32009-07-10 02:39:48 +0200109
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200110 if (!timer_pending(&sdata->u.mgd.timer) ||
111 time_before(timeout, sdata->u.mgd.timer.expires))
112 mod_timer(&sdata->u.mgd.timer, timeout);
Johannes Bergca386f32009-07-10 02:39:48 +0200113}
114
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -0400115void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
Johannes Bergb291ba12009-07-10 15:29:03 +0200116{
Johannes Bergc1288b12012-01-19 09:29:57 +0100117 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
Johannes Bergb291ba12009-07-10 15:29:03 +0200118 return;
119
Johannes Berg7eeff742012-07-18 10:27:27 +0200120 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
121 return;
122
Johannes Bergb291ba12009-07-10 15:29:03 +0200123 mod_timer(&sdata->u.mgd.bcn_mon_timer,
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +0100124 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
Johannes Bergb291ba12009-07-10 15:29:03 +0200125}
126
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400127void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
128{
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400129 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
130
Stanislaw Gruszka86281722011-02-25 14:46:02 +0100131 if (unlikely(!sdata->u.mgd.associated))
132 return;
133
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400134 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
135 return;
136
137 mod_timer(&sdata->u.mgd.conn_mon_timer,
138 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400139
140 ifmgd->probe_send_count = 0;
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400141}
142
Johannes Berg5484e232008-09-08 17:44:27 +0200143static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200144{
Johannes Berg5484e232008-09-08 17:44:27 +0200145 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200146}
147
Johannes Berg6565ec92013-02-08 14:52:32 +0100148static u32
149ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
150 struct ieee80211_supported_band *sband,
151 struct ieee80211_channel *channel,
152 const struct ieee80211_ht_operation *ht_oper,
153 const struct ieee80211_vht_operation *vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200154 struct cfg80211_chan_def *chandef, bool tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100155{
Johannes Berg5cdaed12013-07-31 11:23:06 +0200156 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg6565ec92013-02-08 14:52:32 +0100157 struct cfg80211_chan_def vht_chandef;
158 u32 ht_cfreq, ret;
159
160 chandef->chan = channel;
161 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
162 chandef->center_freq1 = channel->center_freq;
163 chandef->center_freq2 = 0;
164
165 if (!ht_oper || !sband->ht_cap.ht_supported) {
166 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
167 goto out;
168 }
169
170 chandef->width = NL80211_CHAN_WIDTH_20;
171
172 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
173 channel->band);
174 /* check that channel matches the right operating channel */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200175 if (!tracking && channel->center_freq != ht_cfreq) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100176 /*
177 * It's possible that some APs are confused here;
178 * Netgear WNDR3700 sometimes reports 4 higher than
179 * the actual channel in association responses, but
180 * since we look at probe response/beacon data here
181 * it should be OK.
182 */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200183 sdata_info(sdata,
184 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
185 channel->center_freq, ht_cfreq,
186 ht_oper->primary_chan, channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100187 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
188 goto out;
189 }
190
191 /* check 40 MHz support, if we have it */
192 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
193 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
194 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
195 chandef->width = NL80211_CHAN_WIDTH_40;
196 chandef->center_freq1 += 10;
197 break;
198 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
199 chandef->width = NL80211_CHAN_WIDTH_40;
200 chandef->center_freq1 -= 10;
201 break;
202 }
203 } else {
204 /* 40 MHz (and 80 MHz) must be supported for VHT */
205 ret = IEEE80211_STA_DISABLE_VHT;
Johannes Berg85220d72013-03-25 18:29:27 +0100206 /* also mark 40 MHz disabled */
207 ret |= IEEE80211_STA_DISABLE_40MHZ;
Johannes Berg6565ec92013-02-08 14:52:32 +0100208 goto out;
209 }
210
211 if (!vht_oper || !sband->vht_cap.vht_supported) {
212 ret = IEEE80211_STA_DISABLE_VHT;
213 goto out;
214 }
215
216 vht_chandef.chan = channel;
217 vht_chandef.center_freq1 =
218 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
219 channel->band);
220 vht_chandef.center_freq2 = 0;
221
Johannes Berg6565ec92013-02-08 14:52:32 +0100222 switch (vht_oper->chan_width) {
223 case IEEE80211_VHT_CHANWIDTH_USE_HT:
224 vht_chandef.width = chandef->width;
225 break;
226 case IEEE80211_VHT_CHANWIDTH_80MHZ:
227 vht_chandef.width = NL80211_CHAN_WIDTH_80;
228 break;
229 case IEEE80211_VHT_CHANWIDTH_160MHZ:
230 vht_chandef.width = NL80211_CHAN_WIDTH_160;
231 break;
232 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
233 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
Johannes Berg6553bf042013-03-28 10:26:17 +0100234 vht_chandef.center_freq2 =
235 ieee80211_channel_to_frequency(
236 vht_oper->center_freq_seg2_idx,
237 channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100238 break;
239 default:
Johannes Berg5cdaed12013-07-31 11:23:06 +0200240 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100241 sdata_info(sdata,
242 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
243 vht_oper->chan_width);
Johannes Berg6565ec92013-02-08 14:52:32 +0100244 ret = IEEE80211_STA_DISABLE_VHT;
245 goto out;
246 }
247
248 if (!cfg80211_chandef_valid(&vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200249 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100250 sdata_info(sdata,
251 "AP VHT information is invalid, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100252 ret = IEEE80211_STA_DISABLE_VHT;
253 goto out;
254 }
255
256 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
257 ret = 0;
258 goto out;
259 }
260
261 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200262 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100263 sdata_info(sdata,
264 "AP VHT information doesn't match HT, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100265 ret = IEEE80211_STA_DISABLE_VHT;
266 goto out;
267 }
268
269 *chandef = vht_chandef;
270
271 ret = 0;
272
273out:
Johannes Berg586e01e2013-02-14 12:13:53 +0100274 /* don't print the message below for VHT mismatch if VHT is disabled */
275 if (ret & IEEE80211_STA_DISABLE_VHT)
276 vht_chandef = *chandef;
277
Johannes Bergddfe49b2013-07-31 20:52:03 +0200278 /*
279 * Ignore the DISABLED flag when we're already connected and only
280 * tracking the APs beacon for bandwidth changes - otherwise we
281 * might get disconnected here if we connect to an AP, update our
282 * regulatory information based on the AP's country IE and the
283 * information we have is wrong/outdated and disables the channel
284 * that we're actually using for the connection to the AP.
285 */
Johannes Berg6565ec92013-02-08 14:52:32 +0100286 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
Johannes Bergddfe49b2013-07-31 20:52:03 +0200287 tracking ? 0 :
288 IEEE80211_CHAN_DISABLED)) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100289 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
290 ret = IEEE80211_STA_DISABLE_HT |
291 IEEE80211_STA_DISABLE_VHT;
Chris Wrightb56e4b82013-07-31 12:12:24 -0700292 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100293 }
294
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200295 ret |= ieee80211_chandef_downgrade(chandef);
Johannes Berg6565ec92013-02-08 14:52:32 +0100296 }
297
Johannes Berg5cdaed12013-07-31 11:23:06 +0200298 if (chandef->width != vht_chandef.width && !tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100299 sdata_info(sdata,
300 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
301
302 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
303 return ret;
304}
305
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100306static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
307 struct sta_info *sta,
308 const struct ieee80211_ht_operation *ht_oper,
309 const struct ieee80211_vht_operation *vht_oper,
310 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200311{
312 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100313 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200314 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200315 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100316 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200317 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100318 u32 flags;
319 enum ieee80211_sta_rx_bandwidth new_sta_bw;
320 int ret;
321
322 /* if HT was/is disabled, don't track any bandwidth changes */
323 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
324 return 0;
325
326 /* don't check VHT if we associated as non-VHT station */
327 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
328 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200329
Johannes Berg11289582013-02-07 17:36:12 +0100330 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100331 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100332
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;
511
512 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
513
514 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100515 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000516
517 /* determine capability flags */
518 cap = vht_cap.cap;
519
Johannes Bergf2d9d272012-11-22 14:11:39 +0100520 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
521 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
522 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
523 }
524
525 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
526 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
527 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
528 }
529
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100530 /*
531 * Some APs apparently get confused if our capabilities are better
532 * than theirs, so restrict what we advertise in the assoc request.
533 */
534 if (!(ap_vht_cap->vht_cap_info &
535 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
536 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
537
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000538 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000539 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000540 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
541}
542
Johannes Berg66e67e42012-01-20 13:55:27 +0100543static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
544{
545 struct ieee80211_local *local = sdata->local;
546 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
547 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
548 struct sk_buff *skb;
549 struct ieee80211_mgmt *mgmt;
550 u8 *pos, qos_info;
551 size_t offset = 0, noffset;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200552 int i, count, rates_len, supp_rates_len, shift;
Johannes Berg66e67e42012-01-20 13:55:27 +0100553 u16 capab;
554 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200555 struct ieee80211_chanctx_conf *chanctx_conf;
556 struct ieee80211_channel *chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200557 u32 rate_flags, rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100558
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200559 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100560
Johannes Berg55de9082012-07-26 17:24:39 +0200561 rcu_read_lock();
562 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
563 if (WARN_ON(!chanctx_conf)) {
564 rcu_read_unlock();
565 return;
566 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100567 chan = chanctx_conf->def.chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200568 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
Johannes Berg55de9082012-07-26 17:24:39 +0200569 rcu_read_unlock();
570 sband = local->hw.wiphy->bands[chan->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200571 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg66e67e42012-01-20 13:55:27 +0100572
573 if (assoc_data->supp_rates_len) {
574 /*
575 * Get all rates supported by the device and the AP as
576 * some APs don't like getting a superset of their rates
577 * in the association request (e.g. D-Link DAP 1353 in
578 * b-only mode)...
579 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200580 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
581 assoc_data->supp_rates,
582 assoc_data->supp_rates_len,
583 &rates);
Johannes Berg66e67e42012-01-20 13:55:27 +0100584 } else {
585 /*
586 * In case AP not provide any supported rates information
587 * before association, we send information element(s) with
588 * all rates that we support.
589 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200590 rates_len = 0;
591 for (i = 0; i < sband->n_bitrates; i++) {
592 if ((rate_flags & sband->bitrates[i].flags)
593 != rate_flags)
594 continue;
595 rates |= BIT(i);
596 rates_len++;
597 }
Johannes Berg66e67e42012-01-20 13:55:27 +0100598 }
599
600 skb = alloc_skb(local->hw.extra_tx_headroom +
601 sizeof(*mgmt) + /* bit too much but doesn't matter */
602 2 + assoc_data->ssid_len + /* SSID */
603 4 + rates_len + /* (extended) rates */
604 4 + /* power capability */
605 2 + 2 * sband->n_channels + /* supported channels */
606 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000607 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100608 assoc_data->ie_len + /* extra IEs */
609 9, /* WMM */
610 GFP_KERNEL);
611 if (!skb)
612 return;
613
614 skb_reserve(skb, local->hw.extra_tx_headroom);
615
616 capab = WLAN_CAPABILITY_ESS;
617
618 if (sband->band == IEEE80211_BAND_2GHZ) {
619 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
620 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
621 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
622 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
623 }
624
625 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
626 capab |= WLAN_CAPABILITY_PRIVACY;
627
628 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
629 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
630 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
631
632 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
633 memset(mgmt, 0, 24);
634 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
635 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
636 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
637
638 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
639 skb_put(skb, 10);
640 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
641 IEEE80211_STYPE_REASSOC_REQ);
642 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
643 mgmt->u.reassoc_req.listen_interval =
644 cpu_to_le16(local->hw.conf.listen_interval);
645 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
646 ETH_ALEN);
647 } else {
648 skb_put(skb, 4);
649 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
650 IEEE80211_STYPE_ASSOC_REQ);
651 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
652 mgmt->u.assoc_req.listen_interval =
653 cpu_to_le16(local->hw.conf.listen_interval);
654 }
655
656 /* SSID */
657 pos = skb_put(skb, 2 + assoc_data->ssid_len);
658 *pos++ = WLAN_EID_SSID;
659 *pos++ = assoc_data->ssid_len;
660 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
661
662 /* add all rates which were marked to be used above */
663 supp_rates_len = rates_len;
664 if (supp_rates_len > 8)
665 supp_rates_len = 8;
666
667 pos = skb_put(skb, supp_rates_len + 2);
668 *pos++ = WLAN_EID_SUPP_RATES;
669 *pos++ = supp_rates_len;
670
671 count = 0;
672 for (i = 0; i < sband->n_bitrates; i++) {
673 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200674 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
675 5 * (1 << shift));
676 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100677 if (++count == 8)
678 break;
679 }
680 }
681
682 if (rates_len > count) {
683 pos = skb_put(skb, rates_len - count + 2);
684 *pos++ = WLAN_EID_EXT_SUPP_RATES;
685 *pos++ = rates_len - count;
686
687 for (i++; i < sband->n_bitrates; i++) {
688 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200689 int rate;
690 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
691 5 * (1 << shift));
692 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100693 }
694 }
695 }
696
697 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
698 /* 1. power capabilities */
699 pos = skb_put(skb, 4);
700 *pos++ = WLAN_EID_PWR_CAPABILITY;
701 *pos++ = 2;
702 *pos++ = 0; /* min tx power */
Simon Wunderlich0430c882013-07-08 16:55:55 +0200703 /* max tx power */
704 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg66e67e42012-01-20 13:55:27 +0100705
706 /* 2. supported channels */
707 /* TODO: get this in reg domain format */
708 pos = skb_put(skb, 2 * sband->n_channels + 2);
709 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
710 *pos++ = 2 * sband->n_channels;
711 for (i = 0; i < sband->n_channels; i++) {
712 *pos++ = ieee80211_frequency_to_channel(
713 sband->channels[i].center_freq);
714 *pos++ = 1; /* one channel in the subband*/
715 }
716 }
717
718 /* if present, add any custom IEs that go before HT */
Johannes Bergb3f51e92013-10-25 11:31:42 +0200719 if (assoc_data->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100720 static const u8 before_ht[] = {
721 WLAN_EID_SSID,
722 WLAN_EID_SUPP_RATES,
723 WLAN_EID_EXT_SUPP_RATES,
724 WLAN_EID_PWR_CAPABILITY,
725 WLAN_EID_SUPPORTED_CHANNELS,
726 WLAN_EID_RSN,
727 WLAN_EID_QOS_CAPA,
728 WLAN_EID_RRM_ENABLED_CAPABILITIES,
729 WLAN_EID_MOBILITY_DOMAIN,
730 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
731 };
732 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
733 before_ht, ARRAY_SIZE(before_ht),
734 offset);
735 pos = skb_put(skb, noffset - offset);
736 memcpy(pos, assoc_data->ie + offset, noffset - offset);
737 offset = noffset;
738 }
739
Johannes Bergf2d9d272012-11-22 14:11:39 +0100740 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
741 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
742 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
743
Johannes Berga8243b72012-11-22 14:32:09 +0100744 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200745 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200746 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100747
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000748 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100749 ieee80211_add_vht_ie(sdata, skb, sband,
750 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000751
Johannes Berg66e67e42012-01-20 13:55:27 +0100752 /* if present, add any custom non-vendor IEs that go after HT */
Johannes Bergb3f51e92013-10-25 11:31:42 +0200753 if (assoc_data->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100754 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
755 assoc_data->ie_len,
756 offset);
757 pos = skb_put(skb, noffset - offset);
758 memcpy(pos, assoc_data->ie + offset, noffset - offset);
759 offset = noffset;
760 }
761
Johannes Berg76f03032012-03-08 15:02:05 +0100762 if (assoc_data->wmm) {
763 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200764 qos_info = ifmgd->uapsd_queues;
765 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100766 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
767 } else {
768 qos_info = 0;
769 }
770
771 pos = skb_put(skb, 9);
772 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
773 *pos++ = 7; /* len */
774 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
775 *pos++ = 0x50;
776 *pos++ = 0xf2;
777 *pos++ = 2; /* WME */
778 *pos++ = 0; /* WME info */
779 *pos++ = 1; /* WME ver */
780 *pos++ = qos_info;
781 }
782
783 /* add any remaining custom (i.e. vendor specific here) IEs */
Johannes Bergb3f51e92013-10-25 11:31:42 +0200784 if (assoc_data->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100785 noffset = assoc_data->ie_len;
786 pos = skb_put(skb, noffset - offset);
787 memcpy(pos, assoc_data->ie + offset, noffset - offset);
788 }
789
Johannes Berga1845fc2012-06-27 13:18:36 +0200790 drv_mgd_prepare_tx(local, sdata);
791
Johannes Berg66e67e42012-01-20 13:55:27 +0100792 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100793 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
794 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
795 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100796 ieee80211_tx_skb(sdata, skb);
797}
798
Kalle Valo572e0012009-02-10 17:09:31 +0200799void ieee80211_send_pspoll(struct ieee80211_local *local,
800 struct ieee80211_sub_if_data *sdata)
801{
Kalle Valo572e0012009-02-10 17:09:31 +0200802 struct ieee80211_pspoll *pspoll;
803 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200804
Kalle Valod8cd1892010-01-05 20:16:26 +0200805 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
806 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200807 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200808
Kalle Valod8cd1892010-01-05 20:16:26 +0200809 pspoll = (struct ieee80211_pspoll *) skb->data;
810 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200811
Johannes Berg62ae67b2009-11-18 18:42:05 +0100812 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
813 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200814}
815
Johannes Berg965beda2009-04-16 13:17:24 +0200816void ieee80211_send_nullfunc(struct ieee80211_local *local,
817 struct ieee80211_sub_if_data *sdata,
818 int powersave)
819{
820 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200821 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530822 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200823
Kalle Valod8cd1892010-01-05 20:16:26 +0200824 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
825 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200826 return;
827
Kalle Valod8cd1892010-01-05 20:16:26 +0200828 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200829 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200830 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200831
Seth Forshee6c17b772013-02-11 11:21:07 -0600832 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
833 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200834
835 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
836 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
837
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +0200838 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530839 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
840
Johannes Berg62ae67b2009-11-18 18:42:05 +0100841 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200842}
843
Felix Fietkaud5242152010-01-08 18:06:26 +0100844static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
845 struct ieee80211_sub_if_data *sdata)
846{
847 struct sk_buff *skb;
848 struct ieee80211_hdr *nullfunc;
849 __le16 fc;
850
851 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
852 return;
853
854 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700855 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100856 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700857
Felix Fietkaud5242152010-01-08 18:06:26 +0100858 skb_reserve(skb, local->hw.extra_tx_headroom);
859
860 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
861 memset(nullfunc, 0, 30);
862 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
863 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
864 nullfunc->frame_control = fc;
865 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
866 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
867 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
868 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
869
870 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
871 ieee80211_tx_skb(sdata, skb);
872}
873
Johannes Bergcc32abd2009-05-15 11:52:31 +0200874/* spectrum management related things */
875static void ieee80211_chswitch_work(struct work_struct *work)
876{
877 struct ieee80211_sub_if_data *sdata =
878 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100879 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200880 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Arik Nemtsov7578d572013-09-01 17:15:51 +0300881 u32 changed = 0;
882 int ret;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200883
Johannes Berg9607e6b2009-12-23 13:15:31 +0100884 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200885 return;
886
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200887 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200888 if (!ifmgd->associated)
889 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200890
Johannes Berg34a37402013-12-18 09:43:33 +0100891 mutex_lock(&local->mtx);
Luciano Coelho33787fc2013-11-11 20:34:54 +0200892 ret = ieee80211_vif_change_channel(sdata, &changed);
Johannes Berg34a37402013-12-18 09:43:33 +0100893 mutex_unlock(&local->mtx);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300894 if (ret) {
895 sdata_info(sdata,
896 "vif channel switch failed, disconnecting\n");
897 ieee80211_queue_work(&sdata->local->hw,
898 &ifmgd->csa_connection_drop_work);
899 goto out;
900 }
Karl Beldan675a0b02013-03-25 16:26:57 +0100901
Arik Nemtsov7578d572013-09-01 17:15:51 +0300902 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +0200903 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +0300904 /* Call "hw_config" only if doing sw channel switch.
905 * Otherwise update the channel directly
906 */
907 if (!local->ops->channel_switch)
908 ieee80211_hw_config(local, 0);
909 else
910 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200911 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200912
Johannes Berg77fdaa12009-07-07 03:45:17 +0200913 /* XXX: shouldn't really modify cfg80211-owned data! */
Luciano Coelho33787fc2013-11-11 20:34:54 +0200914 ifmgd->associated->channel = sdata->csa_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200915
Johannes Berg57eebdf2012-08-01 15:50:46 +0200916 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100917 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100918 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200919 IEEE80211_QUEUE_STOP_REASON_CSA);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300920
921 ieee80211_bss_info_change_notify(sdata, changed);
922
Johannes Berg77fdaa12009-07-07 03:45:17 +0200923 out:
Arik Nemtsov7578d572013-09-01 17:15:51 +0300924 sdata->vif.csa_active = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200925 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200926 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200927}
928
Johannes Berg5ce6e432010-05-11 16:20:57 +0200929void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
930{
Johannes Berg55de9082012-07-26 17:24:39 +0200931 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
932 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200933
934 trace_api_chswitch_done(sdata, success);
935 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200936 sdata_info(sdata,
937 "driver channel switch failed, disconnecting\n");
938 ieee80211_queue_work(&sdata->local->hw,
939 &ifmgd->csa_connection_drop_work);
940 } else {
941 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200942 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200943}
944EXPORT_SYMBOL(ieee80211_chswitch_done);
945
Johannes Bergcc32abd2009-05-15 11:52:31 +0200946static void ieee80211_chswitch_timer(unsigned long data)
947{
948 struct ieee80211_sub_if_data *sdata =
949 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200950
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100951 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200952}
953
Johannes Berg37799e52013-03-26 14:02:26 +0100954static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100955ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200956 u64 timestamp, struct ieee802_11_elems *elems,
957 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200958{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100959 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200960 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +0100961 struct cfg80211_bss *cbss = ifmgd->associated;
Johannes Berg55de9082012-07-26 17:24:39 +0200962 struct ieee80211_chanctx *chanctx;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200963 enum ieee80211_band current_band;
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700964 struct ieee80211_csa_ie csa_ie;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200965 int res;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200966
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200967 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200968
Johannes Berg37799e52013-03-26 14:02:26 +0100969 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200970 return;
971
Johannes Bergb4f286a12013-03-26 14:13:58 +0100972 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200973 return;
974
Johannes Berg37799e52013-03-26 14:02:26 +0100975 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +0200976 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
977 return;
978
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200979 current_band = cbss->channel->band;
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700980 memset(&csa_ie, 0, sizeof(csa_ie));
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200981 res = ieee80211_parse_ch_switch_ie(sdata, elems, beacon, current_band,
982 ifmgd->flags,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700983 ifmgd->associated->bssid, &csa_ie);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200984 if (res < 0)
Johannes Bergb4f286a12013-03-26 14:13:58 +0100985 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +0200986 &ifmgd->csa_connection_drop_work);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200987 if (res)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200988 return;
Johannes Bergcd64f2a2013-03-28 10:44:18 +0100989
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700990 if (!cfg80211_chandef_usable(local->hw.wiphy, &csa_ie.chandef,
Johannes Berg85220d72013-03-25 18:29:27 +0100991 IEEE80211_CHAN_DISABLED)) {
992 sdata_info(sdata,
993 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200994 ifmgd->associated->bssid,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700995 csa_ie.chandef.chan->center_freq,
996 csa_ie.chandef.width, csa_ie.chandef.center_freq1,
997 csa_ie.chandef.center_freq2);
Johannes Berg85220d72013-03-25 18:29:27 +0100998 ieee80211_queue_work(&local->hw,
999 &ifmgd->csa_connection_drop_work);
1000 return;
1001 }
1002
Johannes Berg57eebdf2012-08-01 15:50:46 +02001003 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03001004 sdata->vif.csa_active = true;
Johannes Berg55de9082012-07-26 17:24:39 +02001005
Johannes Bergb4f286a12013-03-26 14:13:58 +01001006 mutex_lock(&local->chanctx_mtx);
Arik Nemtsov7578d572013-09-01 17:15:51 +03001007 if (local->use_chanctx) {
1008 u32 num_chanctx = 0;
1009 list_for_each_entry(chanctx, &local->chanctx_list, list)
1010 num_chanctx++;
1011
1012 if (num_chanctx > 1 ||
1013 !(local->hw.flags & IEEE80211_HW_CHANCTX_STA_CSA)) {
1014 sdata_info(sdata,
1015 "not handling chan-switch with channel contexts\n");
1016 ieee80211_queue_work(&local->hw,
1017 &ifmgd->csa_connection_drop_work);
1018 mutex_unlock(&local->chanctx_mtx);
1019 return;
1020 }
1021 }
1022
Johannes Berg55de9082012-07-26 17:24:39 +02001023 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Arik Nemtsov7578d572013-09-01 17:15:51 +03001024 ieee80211_queue_work(&local->hw,
1025 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001026 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001027 return;
1028 }
1029 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1030 struct ieee80211_chanctx, conf);
1031 if (chanctx->refcount > 1) {
1032 sdata_info(sdata,
1033 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001034 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001035 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001036 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001037 return;
1038 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001039 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001040
Luciano Coelho33787fc2013-11-11 20:34:54 +02001041 sdata->csa_chandef = csa_ie.chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001042
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001043 if (csa_ie.mode)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001044 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001045 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001046 IEEE80211_QUEUE_STOP_REASON_CSA);
1047
Johannes Bergb4f286a12013-03-26 14:13:58 +01001048 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001049 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001050 struct ieee80211_channel_switch ch_switch = {
1051 .timestamp = timestamp,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001052 .block_tx = csa_ie.mode,
1053 .chandef = csa_ie.chandef,
1054 .count = csa_ie.count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001055 };
1056
Johannes Bergb4f286a12013-03-26 14:13:58 +01001057 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001058 return;
1059 }
1060
1061 /* channel switch handled in software */
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001062 if (csa_ie.count <= 1)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001063 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001064 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001065 mod_timer(&ifmgd->chswitch_timer,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001066 TU_TO_EXP_TIME(csa_ie.count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001067}
1068
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001069static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1070 struct ieee80211_channel *channel,
1071 const u8 *country_ie, u8 country_ie_len,
1072 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001073{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001074 struct ieee80211_country_ie_triplet *triplet;
1075 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1076 int i, chan_pwr, chan_increment, new_ap_level;
1077 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001078
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001079 /* Invalid IE */
1080 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001081 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001082
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001083 triplet = (void *)(country_ie + 3);
1084 country_ie_len -= 3;
1085
1086 switch (channel->band) {
1087 default:
1088 WARN_ON_ONCE(1);
1089 /* fall through */
1090 case IEEE80211_BAND_2GHZ:
1091 case IEEE80211_BAND_60GHZ:
1092 chan_increment = 1;
1093 break;
1094 case IEEE80211_BAND_5GHZ:
1095 chan_increment = 4;
1096 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001097 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001098
1099 /* find channel */
1100 while (country_ie_len >= 3) {
1101 u8 first_channel = triplet->chans.first_channel;
1102
1103 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1104 goto next;
1105
1106 for (i = 0; i < triplet->chans.num_channels; i++) {
1107 if (first_channel + i * chan_increment == chan) {
1108 have_chan_pwr = true;
1109 chan_pwr = triplet->chans.max_power;
1110 break;
1111 }
1112 }
1113 if (have_chan_pwr)
1114 break;
1115
1116 next:
1117 triplet++;
1118 country_ie_len -= 3;
1119 }
1120
1121 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001122 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001123
1124 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1125
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001126 if (sdata->ap_power_level == new_ap_level)
1127 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001128
1129 sdata_info(sdata,
1130 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1131 new_ap_level, chan_pwr, *pwr_constr_elem,
1132 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001133 sdata->ap_power_level = new_ap_level;
1134 if (__ieee80211_recalc_txpower(sdata))
1135 return BSS_CHANGED_TXPOWER;
1136 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001137}
1138
Johannes Berg965beda2009-04-16 13:17:24 +02001139/* powersave */
1140static void ieee80211_enable_ps(struct ieee80211_local *local,
1141 struct ieee80211_sub_if_data *sdata)
1142{
1143 struct ieee80211_conf *conf = &local->hw.conf;
1144
Johannes Bergd5edaed2009-04-22 23:02:51 +02001145 /*
1146 * If we are scanning right now then the parameters will
1147 * take effect when scan finishes.
1148 */
Helmut Schaafbe9c422009-07-23 12:14:04 +02001149 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001150 return;
1151
Johannes Berg965beda2009-04-16 13:17:24 +02001152 if (conf->dynamic_ps_timeout > 0 &&
1153 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1154 mod_timer(&local->dynamic_ps_timer, jiffies +
1155 msecs_to_jiffies(conf->dynamic_ps_timeout));
1156 } else {
1157 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1158 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301159
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001160 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1161 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1162 return;
1163
1164 conf->flags |= IEEE80211_CONF_PS;
1165 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001166 }
1167}
1168
1169static void ieee80211_change_ps(struct ieee80211_local *local)
1170{
1171 struct ieee80211_conf *conf = &local->hw.conf;
1172
1173 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001174 ieee80211_enable_ps(local, local->ps_sdata);
1175 } else if (conf->flags & IEEE80211_CONF_PS) {
1176 conf->flags &= ~IEEE80211_CONF_PS;
1177 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1178 del_timer_sync(&local->dynamic_ps_timer);
1179 cancel_work_sync(&local->dynamic_ps_enable_work);
1180 }
1181}
1182
Jason Young808118c2011-03-10 16:43:19 -08001183static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1184{
1185 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1186 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001187 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001188
1189 if (!mgd->powersave)
1190 return false;
1191
Johannes Berg05cb9102011-10-28 11:59:47 +02001192 if (mgd->broken_ap)
1193 return false;
1194
Jason Young808118c2011-03-10 16:43:19 -08001195 if (!mgd->associated)
1196 return false;
1197
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001198 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
Jason Young808118c2011-03-10 16:43:19 -08001199 return false;
1200
Alexander Bondar989c6502013-05-16 17:34:17 +03001201 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001202 return false;
1203
Jason Young808118c2011-03-10 16:43:19 -08001204 rcu_read_lock();
1205 sta = sta_info_get(sdata, mgd->bssid);
1206 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001207 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001208 rcu_read_unlock();
1209
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001210 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001211}
1212
Johannes Berg965beda2009-04-16 13:17:24 +02001213/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001214void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001215{
1216 struct ieee80211_sub_if_data *sdata, *found = NULL;
1217 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001218 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001219
1220 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1221 local->ps_sdata = NULL;
1222 return;
1223 }
1224
1225 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001226 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001227 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301228 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1229 /* If an AP vif is found, then disable PS
1230 * by setting the count to zero thereby setting
1231 * ps_sdata to NULL.
1232 */
1233 count = 0;
1234 break;
1235 }
Johannes Berg965beda2009-04-16 13:17:24 +02001236 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1237 continue;
1238 found = sdata;
1239 count++;
1240 }
1241
Jason Young808118c2011-03-10 16:43:19 -08001242 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001243 s32 beaconint_us;
1244
1245 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001246 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001247
1248 beaconint_us = ieee80211_tu_to_usec(
1249 found->vif.bss_conf.beacon_int);
1250
Juuso Oikarinenff616382010-06-09 09:51:52 +03001251 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001252 if (timeout < 0) {
1253 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001254 * Go to full PSM if the user configures a very low
1255 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001256 * The 2000 second value is there for compatibility
1257 * until the PM_QOS_NETWORK_LATENCY is configured
1258 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001259 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001260 if (latency > (1900 * USEC_PER_MSEC) &&
1261 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001262 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001263 else
1264 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001265 }
Johannes Berg09b85562013-02-06 23:07:41 +01001266 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001267
Johannes Berg04fe2032009-04-22 18:44:37 +02001268 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001269 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001270 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001271 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001272 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001273
1274 /* If the TIM IE is invalid, pretend the value is 1 */
1275 if (!dtimper)
1276 dtimper = 1;
1277 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001278 maxslp = min_t(int, dtimper,
1279 latency / beaconint_us);
1280
Johannes Berg9ccebe62009-04-23 10:32:36 +02001281 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001282 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001283 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001284 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001285 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001286 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001287 }
Johannes Berg965beda2009-04-16 13:17:24 +02001288
1289 ieee80211_change_ps(local);
1290}
1291
Eliad Pellerab095872012-07-27 12:33:22 +03001292void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1293{
1294 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1295
1296 if (sdata->vif.bss_conf.ps != ps_allowed) {
1297 sdata->vif.bss_conf.ps = ps_allowed;
1298 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1299 }
1300}
1301
Johannes Berg965beda2009-04-16 13:17:24 +02001302void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1303{
1304 struct ieee80211_local *local =
1305 container_of(work, struct ieee80211_local,
1306 dynamic_ps_disable_work);
1307
1308 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1309 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1310 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1311 }
1312
1313 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001314 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001315 IEEE80211_QUEUE_STOP_REASON_PS);
1316}
1317
1318void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1319{
1320 struct ieee80211_local *local =
1321 container_of(work, struct ieee80211_local,
1322 dynamic_ps_enable_work);
1323 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001324 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301325 unsigned long flags;
1326 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001327
1328 /* can only happen when PS was just disabled anyway */
1329 if (!sdata)
1330 return;
1331
Christian Lamparter5e340692011-06-30 21:08:43 +02001332 ifmgd = &sdata->u.mgd;
1333
Johannes Berg965beda2009-04-16 13:17:24 +02001334 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1335 return;
1336
Johannes Berg09b85562013-02-06 23:07:41 +01001337 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001338 /* don't enter PS if TX frames are pending */
1339 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301340 mod_timer(&local->dynamic_ps_timer, jiffies +
1341 msecs_to_jiffies(
1342 local->hw.conf.dynamic_ps_timeout));
1343 return;
1344 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001345
1346 /*
1347 * transmission can be stopped by others which leads to
1348 * dynamic_ps_timer expiry. Postpone the ps timer if it
1349 * is not the actual idle state.
1350 */
1351 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1352 for (q = 0; q < local->hw.queues; q++) {
1353 if (local->queue_stop_reasons[q]) {
1354 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1355 flags);
1356 mod_timer(&local->dynamic_ps_timer, jiffies +
1357 msecs_to_jiffies(
1358 local->hw.conf.dynamic_ps_timeout));
1359 return;
1360 }
1361 }
1362 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301363 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301364
Vivek Natarajan375177b2010-02-09 14:50:28 +05301365 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301366 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001367 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301368 mod_timer(&local->dynamic_ps_timer, jiffies +
1369 msecs_to_jiffies(
1370 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001371 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301372 ieee80211_send_nullfunc(local, sdata, 1);
1373 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001374 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301375 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301376 }
1377
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001378 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1379 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301380 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1381 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1382 local->hw.conf.flags |= IEEE80211_CONF_PS;
1383 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1384 }
Johannes Berg965beda2009-04-16 13:17:24 +02001385}
1386
1387void ieee80211_dynamic_ps_timer(unsigned long data)
1388{
1389 struct ieee80211_local *local = (void *) data;
1390
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001391 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001392 return;
1393
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001394 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001395}
1396
Simon Wunderlich164eb022013-02-08 18:16:20 +01001397void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1398{
1399 struct delayed_work *delayed_work =
1400 container_of(work, struct delayed_work, work);
1401 struct ieee80211_sub_if_data *sdata =
1402 container_of(delayed_work, struct ieee80211_sub_if_data,
1403 dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001404 struct cfg80211_chan_def chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlich164eb022013-02-08 18:16:20 +01001405
Johannes Berg34a37402013-12-18 09:43:33 +01001406 mutex_lock(&sdata->local->mtx);
1407 if (sdata->wdev.cac_started) {
1408 ieee80211_vif_release_channel(sdata);
1409 cfg80211_cac_event(sdata->dev, &chandef,
1410 NL80211_RADAR_CAC_FINISHED,
1411 GFP_KERNEL);
1412 }
1413 mutex_unlock(&sdata->local->mtx);
Simon Wunderlich164eb022013-02-08 18:16:20 +01001414}
1415
Johannes Berg60f8b392008-09-08 17:44:22 +02001416/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001417static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001418 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001419 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001420{
Jiri Bencf0706e82007-05-05 11:45:53 -07001421 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001422 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001423 size_t left;
1424 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001425 const u8 *pos;
1426 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001427
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001428 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001429 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001430
Johannes Berg32c50572012-03-28 11:04:29 +02001431 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001432 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001433
1434 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001435 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001436
Jiri Bencf0706e82007-05-05 11:45:53 -07001437 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001438 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001439
1440 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001441 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001442
Jiri Bencf0706e82007-05-05 11:45:53 -07001443 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001444 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001445 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001446 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001447
1448 pos = wmm_param + 8;
1449 left = wmm_param_len - 8;
1450
1451 memset(&params, 0, sizeof(params));
1452
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001453 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001454 for (; left >= 4; left -= 4, pos += 4) {
1455 int aci = (pos[0] >> 5) & 0x03;
1456 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001457 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001458 int queue;
1459
1460 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001461 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001462 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001463 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001464 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001465 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1466 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001467 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001468 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001469 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001470 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001471 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001472 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1473 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001474 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001475 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001476 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001477 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001478 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001479 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1480 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001481 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001482 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001483 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001484 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001485 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001486 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001487 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1488 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001489 break;
1490 }
1491
1492 params.aifs = pos[0] & 0x0f;
1493 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1494 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001495 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001496 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001497 params.uapsd = uapsd;
1498
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001499 mlme_dbg(sdata,
1500 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1501 queue, aci, acm,
1502 params.aifs, params.cw_min, params.cw_max,
1503 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001504 sdata->tx_conf[queue] = params;
1505 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001506 sdata_err(sdata,
1507 "failed to set TX queue parameters for queue %d\n",
1508 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001509 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001510
1511 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001512 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001513 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001514}
1515
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001516static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1517{
1518 lockdep_assert_held(&sdata->local->mtx);
1519
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001520 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001521 ieee80211_run_deferred_scan(sdata->local);
1522}
1523
1524static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1525{
1526 mutex_lock(&sdata->local->mtx);
1527 __ieee80211_stop_poll(sdata);
1528 mutex_unlock(&sdata->local->mtx);
1529}
1530
Johannes Berg7a5158e2008-10-08 10:59:33 +02001531static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1532 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001533{
Johannes Bergbda39332008-10-11 01:51:51 +02001534 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001535 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001536 bool use_protection;
1537 bool use_short_preamble;
1538 bool use_short_slot;
1539
1540 if (erp_valid) {
1541 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1542 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1543 } else {
1544 use_protection = false;
1545 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1546 }
1547
1548 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001549 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001550 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001551
Johannes Berg471b3ef2007-12-28 14:32:58 +01001552 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001553 bss_conf->use_cts_prot = use_protection;
1554 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001555 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001556
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001557 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001558 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001559 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001560 }
Daniel Draked9430a32007-07-27 15:43:24 +02001561
Johannes Berg7a5158e2008-10-08 10:59:33 +02001562 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001563 bss_conf->use_short_slot = use_short_slot;
1564 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001565 }
1566
1567 return changed;
1568}
1569
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001570static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001571 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001572 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001573{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001574 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001575 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001576 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001577
Johannes Bergae5eb022008-10-14 16:58:37 +02001578 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001579 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001580 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001581
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001582 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001583 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001584
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001585 sdata->u.mgd.associated = cbss;
1586 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001587
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001588 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1589
Johannes Berg488dd7b2012-10-29 20:08:01 +01001590 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001591 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001592
Johannes Berg9caf0362012-11-29 01:25:20 +01001593 rcu_read_lock();
1594 ies = rcu_dereference(cbss->ies);
1595 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001596 int ret;
1597
1598 ret = cfg80211_get_p2p_attr(
1599 ies->data, ies->len,
1600 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001601 (u8 *) &bss_conf->p2p_noa_attr,
1602 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001603 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001604 sdata->u.mgd.p2p_noa_index =
1605 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001606 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001607 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001608 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001609 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001610 }
1611
Johannes Bergb291ba12009-07-10 15:29:03 +02001612 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001613 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001614
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001615 ieee80211_led_assoc(local, 1);
1616
Alexander Bondar989c6502013-05-16 17:34:17 +03001617 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001618 /*
1619 * If the AP is buggy we may get here with no DTIM period
1620 * known, so assume it's 1 which is the only safe assumption
1621 * in that case, although if the TIM IE is broken powersave
1622 * probably just won't work at all.
1623 */
1624 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001625 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001626 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001627 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001628 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001629 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001630 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001631
Juuso Oikarinen68542962010-06-09 13:43:26 +03001632 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001633
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001634 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001635 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001636 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001637 bss_info_changed |= BSS_CHANGED_CQM;
1638
Juuso Oikarinen68542962010-06-09 13:43:26 +03001639 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001640 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001641 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001642
Johannes Bergae5eb022008-10-14 16:58:37 +02001643 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001644
Johannes Berg056508d2009-07-30 21:43:55 +02001645 mutex_lock(&local->iflist_mtx);
1646 ieee80211_recalc_ps(local, -1);
1647 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001648
Johannes Berg04ecd252012-09-11 14:34:12 +02001649 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001650 ieee80211_recalc_ps_vif(sdata);
1651
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001652 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001653}
1654
Jouni Malinene69e95d2010-03-29 23:29:31 -07001655static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001656 u16 stype, u16 reason, bool tx,
1657 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001658{
Johannes Berg46900292009-02-15 12:44:28 +01001659 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001660 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001661 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001662
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001663 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001664
Johannes Berg37ad3882012-02-24 13:50:54 +01001665 if (WARN_ON_ONCE(tx && !frame_buf))
1666 return;
1667
Johannes Bergb291ba12009-07-10 15:29:03 +02001668 if (WARN_ON(!ifmgd->associated))
1669 return;
1670
David Spinadel79543d82012-06-12 09:59:45 +03001671 ieee80211_stop_poll(sdata);
1672
Johannes Berg77fdaa12009-07-07 03:45:17 +02001673 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001674 netif_carrier_off(sdata->dev);
1675
Eliad Peller88bc40e2012-07-12 17:35:33 +03001676 /*
1677 * if we want to get out of ps before disassoc (why?) we have
1678 * to do it before sending disassoc, as otherwise the null-packet
1679 * won't be valid.
1680 */
1681 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1682 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1683 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1684 }
1685 local->ps_sdata = NULL;
1686
Eliad Pellerab095872012-07-27 12:33:22 +03001687 /* disable per-vif ps */
1688 ieee80211_recalc_ps_vif(sdata);
1689
Eliad Pellerf8239812012-06-27 14:18:22 +03001690 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1691 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001692 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001693
Johannes Berg37ad3882012-02-24 13:50:54 +01001694 /* deauthenticate/disassociate now */
1695 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001696 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1697 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001698
1699 /* flush out frame */
1700 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001701 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001702
Eliad Peller88a9e312012-06-01 11:14:03 +03001703 /* clear bssid only after building the needed mgmt frames */
1704 memset(ifmgd->bssid, 0, ETH_ALEN);
1705
Johannes Berg37ad3882012-02-24 13:50:54 +01001706 /* remove AP and TDLS peers */
Johannes Bergd34ba212013-12-04 22:46:11 +01001707 sta_info_flush(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001708
1709 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001710 changed |= ieee80211_reset_erp_info(sdata);
1711
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001712 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001713 changed |= BSS_CHANGED_ASSOC;
1714 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001715
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001716 ifmgd->p2p_noa_index = -1;
1717 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1718 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001719
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001720 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001721 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1722 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001723 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1724 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001725
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001726 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301727
Kalle Valo520eb822008-12-18 23:35:27 +02001728 del_timer_sync(&local->dynamic_ps_timer);
1729 cancel_work_sync(&local->dynamic_ps_enable_work);
1730
Juuso Oikarinen68542962010-06-09 13:43:26 +03001731 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001732 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001733 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001734
Johannes Berg3abead52012-03-02 15:56:59 +01001735 sdata->vif.bss_conf.qos = false;
1736 changed |= BSS_CHANGED_QOS;
1737
Johannes Berg0aaffa92010-05-05 15:28:27 +02001738 /* The BSSID (not really interesting) and HT changed */
1739 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001740 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001741
Johannes Berg3abead52012-03-02 15:56:59 +01001742 /* disassociated - set to defaults now */
1743 ieee80211_set_wmm_default(sdata, false);
1744
Johannes Bergb9dcf712010-08-27 12:35:54 +02001745 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1746 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1747 del_timer_sync(&sdata->u.mgd.timer);
1748 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001749
Johannes Berg826262c2012-12-10 16:38:14 +02001750 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001751 sdata->vif.bss_conf.beacon_rate = NULL;
1752
Alexander Bondar989c6502013-05-16 17:34:17 +03001753 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001754
Johannes Berg028e8da02012-11-26 11:57:41 +01001755 ifmgd->flags = 0;
Johannes Berg34a37402013-12-18 09:43:33 +01001756 mutex_lock(&local->mtx);
Johannes Berg028e8da02012-11-26 11:57:41 +01001757 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001758 mutex_unlock(&local->mtx);
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001759
1760 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001761}
Jiri Bencf0706e82007-05-05 11:45:53 -07001762
Kalle Valo3cf335d2009-03-22 21:57:06 +02001763void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1764 struct ieee80211_hdr *hdr)
1765{
1766 /*
1767 * We can postpone the mgd.timer whenever receiving unicast frames
1768 * from AP because we know that the connection is working both ways
1769 * at that time. But multicast frames (and hence also beacons) must
1770 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001771 * data idle periods for sending the periodic probe request to the
1772 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001773 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001774 if (is_multicast_ether_addr(hdr->addr1))
1775 return;
1776
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001777 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001778}
Jiri Bencf0706e82007-05-05 11:45:53 -07001779
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001780static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1781{
1782 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001783 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001784
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001785 mutex_lock(&local->mtx);
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001786 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
1787 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001788
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001789 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001790
1791 mutex_lock(&local->iflist_mtx);
1792 ieee80211_recalc_ps(local, -1);
1793 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001794
1795 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001796 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001797
1798 /*
1799 * We've received a probe response, but are not sure whether
1800 * we have or will be receiving any beacons or data, so let's
1801 * schedule the timers again, just in case.
1802 */
1803 ieee80211_sta_reset_beacon_monitor(sdata);
1804
1805 mod_timer(&ifmgd->conn_mon_timer,
1806 round_jiffies_up(jiffies +
1807 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001808out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001809 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001810}
1811
1812void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001813 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001814{
Felix Fietkau75706d02010-12-02 21:01:07 +01001815 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001816 return;
1817
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001818 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1819 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001820 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001821 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001822 else
1823 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001824 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001825 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001826 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001827
1828 if (ack)
1829 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001830}
1831
Maxim Levitskya43abf22009-07-31 18:54:12 +03001832static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1833{
1834 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1835 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001836 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001837 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001838
1839 /*
1840 * Try sending broadcast probe requests for the last three
1841 * probe requests after the first ones failed since some
1842 * buggy APs only support broadcast probe requests.
1843 */
1844 if (ifmgd->probe_send_count >= unicast_limit)
1845 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001846
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001847 /*
1848 * When the hardware reports an accurate Tx ACK status, it's
1849 * better to send a nullfunc frame instead of a probe request,
1850 * as it will kick us off the AP quickly if we aren't associated
1851 * anymore. The timeout will be reset if the frame is ACKed by
1852 * the AP.
1853 */
Soumik Das992e68b2012-05-20 15:31:13 +05301854 ifmgd->probe_send_count++;
1855
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001856 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1857 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001858 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001859 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001860 int ssid_len;
1861
Johannes Berg9caf0362012-11-29 01:25:20 +01001862 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001863 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001864 if (WARN_ON_ONCE(ssid == NULL))
1865 ssid_len = 0;
1866 else
1867 ssid_len = ssid[1];
1868
1869 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001870 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02001871 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01001872 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001873 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001874
Ben Greear180205b2011-02-04 15:30:24 -08001875 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001876 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301877 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01001878 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001879}
1880
Johannes Bergb291ba12009-07-10 15:29:03 +02001881static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1882 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001883{
Kalle Valo04de8382009-03-22 21:57:35 +02001884 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001885 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001886
Johannes Berg9607e6b2009-12-23 13:15:31 +01001887 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001888 return;
1889
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001890 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001891
1892 if (!ifmgd->associated)
1893 goto out;
1894
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001895 mutex_lock(&sdata->local->mtx);
1896
1897 if (sdata->local->tmp_channel || sdata->local->scanning) {
1898 mutex_unlock(&sdata->local->mtx);
1899 goto out;
1900 }
1901
Ben Greeara13fbe52013-03-25 11:19:35 -07001902 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001903 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07001904 "detected beacon loss from AP (missed %d beacons) - probing\n",
1905 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001906
Ben Greeara13fbe52013-03-25 11:19:35 -07001907 ieee80211_cqm_rssi_notify(&sdata->vif,
1908 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
1909 GFP_KERNEL);
1910 }
Kalle Valo04de8382009-03-22 21:57:35 +02001911
Johannes Bergb291ba12009-07-10 15:29:03 +02001912 /*
1913 * The driver/our work has already reported this event or the
1914 * connection monitoring has kicked in and we have already sent
1915 * a probe request. Or maybe the AP died and the driver keeps
1916 * reporting until we disassociate...
1917 *
1918 * In either case we have to ignore the current call to this
1919 * function (except for setting the correct probe reason bit)
1920 * because otherwise we would reset the timer every time and
1921 * never check whether we received a probe response!
1922 */
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001923 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Johannes Bergb291ba12009-07-10 15:29:03 +02001924 already = true;
1925
Eliad Peller12b5f342013-11-18 19:06:46 +02001926 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1927
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001928 mutex_unlock(&sdata->local->mtx);
1929
Johannes Bergb291ba12009-07-10 15:29:03 +02001930 if (already)
1931 goto out;
1932
Johannes Berg4e751842009-06-10 15:16:52 +02001933 mutex_lock(&sdata->local->iflist_mtx);
1934 ieee80211_recalc_ps(sdata->local, -1);
1935 mutex_unlock(&sdata->local->iflist_mtx);
1936
Maxim Levitskya43abf22009-07-31 18:54:12 +03001937 ifmgd->probe_send_count = 0;
1938 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001939 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001940 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02001941}
1942
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001943struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1944 struct ieee80211_vif *vif)
1945{
1946 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1947 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001948 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001949 struct sk_buff *skb;
1950 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001951 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001952
1953 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1954 return NULL;
1955
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001956 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001957
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001958 if (ifmgd->associated)
1959 cbss = ifmgd->associated;
1960 else if (ifmgd->auth_data)
1961 cbss = ifmgd->auth_data->bss;
1962 else if (ifmgd->assoc_data)
1963 cbss = ifmgd->assoc_data->bss;
1964 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001965 return NULL;
1966
Johannes Berg9caf0362012-11-29 01:25:20 +01001967 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001968 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001969 if (WARN_ON_ONCE(ssid == NULL))
1970 ssid_len = 0;
1971 else
1972 ssid_len = ssid[1];
1973
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001974 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02001975 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02001976 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001977 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01001978 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001979
1980 return skb;
1981}
1982EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1983
Johannes Bergeef9e542013-01-29 13:09:34 +01001984static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001985{
1986 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001987 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001988
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001989 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001990 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001991 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001992 return;
1993 }
1994
Johannes Berg37ad3882012-02-24 13:50:54 +01001995 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1996 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01001997 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02001998 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03001999 sdata->vif.csa_active = false;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002000 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01002001 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002002 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02002003
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002004 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
2005 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002006 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002007}
2008
Johannes Bergcc74c0c2012-08-01 16:49:34 +02002009static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02002010{
2011 struct ieee80211_sub_if_data *sdata =
2012 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002013 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002014 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2015 struct sta_info *sta;
2016
2017 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302018 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002019 sta = sta_info_get(sdata, ifmgd->bssid);
2020 if (sta)
2021 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302022 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002023 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002024
Johannes Berg682bd382013-01-29 13:13:50 +01002025 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002026 sdata_info(sdata, "Connection to AP %pM lost\n",
2027 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002028 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002029 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002030 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002031 }
2032}
2033
2034static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2035{
2036 struct ieee80211_sub_if_data *sdata =
2037 container_of(work, struct ieee80211_sub_if_data,
2038 u.mgd.csa_connection_drop_work);
2039
Johannes Bergeef9e542013-01-29 13:09:34 +01002040 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002041}
2042
Kalle Valo04de8382009-03-22 21:57:35 +02002043void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2044{
2045 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002046 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002047
Johannes Bergb5878a22010-04-07 16:48:40 +02002048 trace_api_beacon_loss(sdata);
2049
Johannes Berg682bd382013-01-29 13:13:50 +01002050 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002051 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002052}
2053EXPORT_SYMBOL(ieee80211_beacon_loss);
2054
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002055void ieee80211_connection_loss(struct ieee80211_vif *vif)
2056{
2057 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2058 struct ieee80211_hw *hw = &sdata->local->hw;
2059
Johannes Bergb5878a22010-04-07 16:48:40 +02002060 trace_api_connection_loss(sdata);
2061
Johannes Berg682bd382013-01-29 13:13:50 +01002062 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002063 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2064}
2065EXPORT_SYMBOL(ieee80211_connection_loss);
2066
2067
Johannes Berg66e67e42012-01-20 13:55:27 +01002068static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2069 bool assoc)
2070{
2071 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2072
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002073 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002074
Johannes Berg66e67e42012-01-20 13:55:27 +01002075 if (!assoc) {
2076 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2077
2078 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2079 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002080 sdata->u.mgd.flags = 0;
Johannes Berg34a37402013-12-18 09:43:33 +01002081 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02002082 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01002083 mutex_unlock(&sdata->local->mtx);
Johannes Berg66e67e42012-01-20 13:55:27 +01002084 }
2085
Johannes Berg5b112d32013-02-01 01:49:58 +01002086 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002087 kfree(auth_data);
2088 sdata->u.mgd.auth_data = NULL;
2089}
2090
2091static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2092 struct ieee80211_mgmt *mgmt, size_t len)
2093{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002094 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002095 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2096 u8 *pos;
2097 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002098 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002099
2100 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002101 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002102 if (!elems.challenge)
2103 return;
2104 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002105 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002106 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2107 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2108 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002109 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002110 elems.challenge - 2, elems.challenge_len + 2,
2111 auth_data->bss->bssid, auth_data->bss->bssid,
2112 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002113 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002114}
2115
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002116static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2117 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002118{
2119 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2120 u8 bssid[ETH_ALEN];
2121 u16 auth_alg, auth_transaction, status_code;
2122 struct sta_info *sta;
2123
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002124 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002125
2126 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002127 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002128
2129 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002130 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002131
2132 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2133
Joe Perchesb203ca32012-05-08 18:56:52 +00002134 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002135 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002136
2137 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2138 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2139 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2140
2141 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002142 auth_transaction != ifmgd->auth_data->expected_transaction) {
2143 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2144 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2145 auth_transaction,
2146 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002147 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002148 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002149
2150 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002151 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2152 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002153 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002154 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002155 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002156 }
2157
2158 switch (ifmgd->auth_data->algorithm) {
2159 case WLAN_AUTH_OPEN:
2160 case WLAN_AUTH_LEAP:
2161 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002162 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002163 break;
2164 case WLAN_AUTH_SHARED_KEY:
2165 if (ifmgd->auth_data->expected_transaction != 4) {
2166 ieee80211_auth_challenge(sdata, mgmt, len);
2167 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002168 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002169 }
2170 break;
2171 default:
2172 WARN_ONCE(1, "invalid auth alg %d",
2173 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002174 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002175 }
2176
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002177 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002178 ifmgd->auth_data->done = true;
2179 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002180 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002181 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002182
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002183 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2184 ifmgd->auth_data->expected_transaction != 2) {
2185 /*
2186 * Report auth frame to user space for processing since another
2187 * round of Authentication frames is still needed.
2188 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002189 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002190 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002191 }
2192
Johannes Berg66e67e42012-01-20 13:55:27 +01002193 /* move station state to auth */
2194 mutex_lock(&sdata->local->sta_mtx);
2195 sta = sta_info_get(sdata, bssid);
2196 if (!sta) {
2197 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2198 goto out_err;
2199 }
2200 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002201 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002202 goto out_err;
2203 }
2204 mutex_unlock(&sdata->local->sta_mtx);
2205
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002206 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002207 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002208 out_err:
2209 mutex_unlock(&sdata->local->sta_mtx);
2210 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002211}
2212
2213
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002214static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2215 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002216{
Johannes Berg46900292009-02-15 12:44:28 +01002217 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002218 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002219 u16 reason_code;
2220
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002221 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002222
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002223 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002224 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002225
Johannes Berg66e67e42012-01-20 13:55:27 +01002226 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002227 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002228 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002229
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002230 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002231
2232 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2233
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002234 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2235 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002236
Johannes Berg37ad3882012-02-24 13:50:54 +01002237 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2238
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002239 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002240}
2241
2242
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002243static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2244 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002245{
Johannes Berg46900292009-02-15 12:44:28 +01002246 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002247 u16 reason_code;
2248
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002249 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002250
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002251 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002252 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002253
Johannes Berg66e67e42012-01-20 13:55:27 +01002254 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002255 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002256 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002257
2258 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2259
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002260 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2261 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002262
Johannes Berg37ad3882012-02-24 13:50:54 +01002263 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2264
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002265 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002266}
2267
Christian Lamparterc74d0842011-10-15 00:14:49 +02002268static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2269 u8 *supp_rates, unsigned int supp_rates_len,
2270 u32 *rates, u32 *basic_rates,
2271 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002272 int *min_rate, int *min_rate_index,
2273 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002274{
2275 int i, j;
2276
2277 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002278 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002279 bool is_basic = !!(supp_rates[i] & 0x80);
2280
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002281 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002282 *have_higher_than_11mbit = true;
2283
2284 /*
2285 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2286 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2287 *
2288 * Note: Even through the membership selector and the basic
2289 * rate flag share the same bit, they are not exactly
2290 * the same.
2291 */
2292 if (!!(supp_rates[i] & 0x80) &&
2293 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2294 continue;
2295
2296 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002297 struct ieee80211_rate *br;
2298 int brate;
2299
2300 br = &sband->bitrates[j];
2301 if ((rate_flags & br->flags) != rate_flags)
2302 continue;
2303
2304 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2305 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002306 *rates |= BIT(j);
2307 if (is_basic)
2308 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002309 if ((rate * 5) < *min_rate) {
2310 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002311 *min_rate_index = j;
2312 }
2313 break;
2314 }
2315 }
2316 }
2317}
Jiri Bencf0706e82007-05-05 11:45:53 -07002318
Johannes Berg66e67e42012-01-20 13:55:27 +01002319static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2320 bool assoc)
2321{
2322 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2323
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002324 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002325
Johannes Berg66e67e42012-01-20 13:55:27 +01002326 if (!assoc) {
2327 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2328
2329 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2330 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002331 sdata->u.mgd.flags = 0;
Johannes Berg34a37402013-12-18 09:43:33 +01002332 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02002333 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01002334 mutex_unlock(&sdata->local->mtx);
Johannes Berg66e67e42012-01-20 13:55:27 +01002335 }
2336
2337 kfree(assoc_data);
2338 sdata->u.mgd.assoc_data = NULL;
2339}
2340
2341static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2342 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002343 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002344{
Johannes Berg46900292009-02-15 12:44:28 +01002345 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002346 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002347 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002348 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002349 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002350 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002351 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002352 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002353 const struct cfg80211_bss_ies *bss_ies = NULL;
2354 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002355 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002356 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002357 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002358
Johannes Bergaf6b6372009-12-23 13:15:35 +01002359 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002360
Jiri Bencf0706e82007-05-05 11:45:53 -07002361 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002362 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002363
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002364 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002365 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2366 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002367 aid &= ~(BIT(15) | BIT(14));
2368
Johannes Berg05cb9102011-10-28 11:59:47 +02002369 ifmgd->broken_ap = false;
2370
2371 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002372 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2373 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002374 aid = 0;
2375 ifmgd->broken_ap = true;
2376 }
2377
Johannes Bergaf6b6372009-12-23 13:15:35 +01002378 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002379 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002380
Jiri Bencf0706e82007-05-05 11:45:53 -07002381 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002382 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002383 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002384 }
2385
Johannes Berg46900292009-02-15 12:44:28 +01002386 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002387
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002388 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002389 * Some APs are erroneously not including some information in their
2390 * (re)association response frames. Try to recover by using the data
2391 * from the beacon or probe response. This seems to afflict mobile
2392 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2393 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2394 */
2395 if ((assoc_data->wmm && !elems.wmm_param) ||
2396 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2397 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2398 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2399 (!elems.vht_cap_elem || !elems.vht_operation))) {
2400 const struct cfg80211_bss_ies *ies;
2401 struct ieee802_11_elems bss_elems;
2402
2403 rcu_read_lock();
2404 ies = rcu_dereference(cbss->ies);
2405 if (ies)
2406 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2407 GFP_ATOMIC);
2408 rcu_read_unlock();
2409 if (!bss_ies)
2410 return false;
2411
2412 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2413 false, &bss_elems);
2414 if (assoc_data->wmm &&
2415 !elems.wmm_param && bss_elems.wmm_param) {
2416 elems.wmm_param = bss_elems.wmm_param;
2417 sdata_info(sdata,
2418 "AP bug: WMM param missing from AssocResp\n");
2419 }
2420
2421 /*
2422 * Also check if we requested HT/VHT, otherwise the AP doesn't
2423 * have to include the IEs in the (re)association response.
2424 */
2425 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2426 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2427 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2428 sdata_info(sdata,
2429 "AP bug: HT capability missing from AssocResp\n");
2430 }
2431 if (!elems.ht_operation && bss_elems.ht_operation &&
2432 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2433 elems.ht_operation = bss_elems.ht_operation;
2434 sdata_info(sdata,
2435 "AP bug: HT operation missing from AssocResp\n");
2436 }
2437 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2438 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2439 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2440 sdata_info(sdata,
2441 "AP bug: VHT capa missing from AssocResp\n");
2442 }
2443 if (!elems.vht_operation && bss_elems.vht_operation &&
2444 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2445 elems.vht_operation = bss_elems.vht_operation;
2446 sdata_info(sdata,
2447 "AP bug: VHT operation missing from AssocResp\n");
2448 }
2449 }
2450
2451 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002452 * We previously checked these in the beacon/probe response, so
2453 * they should be present here. This is just a safety net.
2454 */
2455 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2456 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2457 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002458 "HT AP is missing WMM params or HT capability/operation\n");
2459 ret = false;
2460 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002461 }
2462
2463 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2464 (!elems.vht_cap_elem || !elems.vht_operation)) {
2465 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002466 "VHT AP is missing VHT capability/operation\n");
2467 ret = false;
2468 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002469 }
2470
Guy Eilam2a33bee2011-08-17 15:18:15 +03002471 mutex_lock(&sdata->local->sta_mtx);
2472 /*
2473 * station info was already allocated and inserted before
2474 * the association and should be available to us
2475 */
Johannes Berg7852e362012-01-20 13:55:24 +01002476 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002477 if (WARN_ON(!sta)) {
2478 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002479 ret = false;
2480 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002481 }
2482
Johannes Berg55de9082012-07-26 17:24:39 +02002483 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002484
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002485 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002486 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002487 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002488 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002489
Mahesh Palivela818255e2012-10-10 11:33:04 +00002490 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2491 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002492 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002493
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002494 /*
2495 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2496 * in their association response, so ignore that data for our own
2497 * configuration. If it changed since the last beacon, we'll get the
2498 * next beacon and update then.
2499 */
Johannes Berg11289582013-02-07 17:36:12 +01002500
Johannes Bergbee7f582013-02-07 22:24:55 +01002501 /*
2502 * If an operating mode notification IE is present, override the
2503 * NSS calculation (that would be done in rate_control_rate_init())
2504 * and use the # of streams from that element.
2505 */
2506 if (elems.opmode_notif &&
2507 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2508 u8 nss;
2509
2510 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2511 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2512 nss += 1;
2513 sta->sta.rx_nss = nss;
2514 }
2515
Johannes Berg4b7679a2008-09-18 18:14:18 +02002516 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002517
Johannes Berg46900292009-02-15 12:44:28 +01002518 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002519 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002520
Johannes Bergddf4ac52008-10-22 11:41:38 +02002521 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002522 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002523
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002524 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002525 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2526 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2527 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002528 sdata_info(sdata,
2529 "failed to move station %pM to desired state\n",
2530 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002531 WARN_ON(__sta_info_destroy(sta));
2532 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002533 ret = false;
2534 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002535 }
2536
Johannes Berg7852e362012-01-20 13:55:24 +01002537 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002538
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002539 /*
2540 * Always handle WMM once after association regardless
2541 * of the first value the AP uses. Setting -1 here has
2542 * that effect because the AP values is an unsigned
2543 * 4-bit value.
2544 */
2545 ifmgd->wmm_last_param_set = -1;
2546
Johannes Berg095d81c2013-10-15 12:25:07 +02002547 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) && elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002548 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002549 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002550 else
Johannes Berg3abead52012-03-02 15:56:59 +01002551 ieee80211_set_wmm_default(sdata, false);
2552 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002553
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002554 /* set AID and assoc capability,
2555 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002556 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002557 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002558 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002559
Kalle Valo15b7b062009-03-22 21:57:14 +02002560 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002561 * If we're using 4-addr mode, let the AP know that we're
2562 * doing so, so that it can create the STA VLAN on its side
2563 */
2564 if (ifmgd->use_4addr)
2565 ieee80211_send_4addr_nullfunc(local, sdata);
2566
2567 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002568 * Start timer to probe the connection to the AP now.
2569 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002570 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002571 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002572 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002573
Johannes Berg35d865a2013-05-28 10:54:03 +02002574 ret = true;
2575 out:
2576 kfree(bss_ies);
2577 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002578}
2579
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002580static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2581 struct ieee80211_mgmt *mgmt,
2582 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002583{
2584 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2585 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2586 u16 capab_info, status_code, aid;
2587 struct ieee802_11_elems elems;
2588 u8 *pos;
2589 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002590 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002591
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002592 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002593
2594 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002595 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002596 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002597 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002598
2599 /*
2600 * AssocResp and ReassocResp have identical structure, so process both
2601 * of them in this function.
2602 */
2603
2604 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002605 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002606
2607 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2608 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2609 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2610 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2611
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002612 sdata_info(sdata,
2613 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2614 reassoc ? "Rea" : "A", mgmt->sa,
2615 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002616
2617 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002618 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002619
2620 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002621 elems.timeout_int &&
2622 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002623 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002624 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002625 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002626 sdata_info(sdata,
2627 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2628 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002629 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002630 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002631 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002632 run_again(sdata, assoc_data->timeout);
2633 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002634 }
2635
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002636 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002637
2638 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002639 sdata_info(sdata, "%pM denied association (code=%d)\n",
2640 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002641 ieee80211_destroy_assoc_data(sdata, false);
2642 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002643 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002644 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002645 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002646 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002647 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002648 }
John W. Linville635d9992012-07-09 16:34:34 -04002649 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002650
2651 /*
2652 * destroy assoc_data afterwards, as otherwise an idle
2653 * recalc after assoc_data is NULL but before associated
2654 * is set can cause the interface to go idle
2655 */
2656 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002657 }
2658
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002659 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002660}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002661
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002662static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002663 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002664 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002665 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002666{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002667 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002668 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002669 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002670 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002671
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002672 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002673
Johannes Berg1cd8e882013-03-27 14:30:12 +01002674 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002675 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2676 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002677 else
2678 freq = rx_status->freq;
2679
2680 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2681
2682 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2683 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002684
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002685 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002686 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002687 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002688 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002689 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2690 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002691}
2692
2693
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002694static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002695 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002696{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002697 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002698 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002699 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2700 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002701 struct ieee802_11_elems elems;
2702
Kalle Valo15b7b062009-03-22 21:57:14 +02002703 ifmgd = &sdata->u.mgd;
2704
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002705 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002706
Joe Perchesb203ca32012-05-08 18:56:52 +00002707 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002708 return; /* ignore ProbeResp to foreign address */
2709
Ester Kummerae6a44e2008-06-27 18:54:48 +03002710 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2711 if (baselen > len)
2712 return;
2713
2714 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002715 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002716
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002717 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002718
Johannes Berg77fdaa12009-07-07 03:45:17 +02002719 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002720 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002721 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002722
2723 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002724 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002725 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002726 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002727 ifmgd->auth_data->tries = 0;
2728 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002729 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002730 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002731 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002732}
2733
Johannes Bergd91f36d2009-04-16 13:17:26 +02002734/*
2735 * This is the canonical list of information elements we care about,
2736 * the filter code also gives us all changes to the Microsoft OUI
2737 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2738 *
2739 * We implement beacon filtering in software since that means we can
2740 * avoid processing the frame here and in cfg80211, and userspace
2741 * will not be able to tell whether the hardware supports it or not.
2742 *
2743 * XXX: This list needs to be dynamic -- userspace needs to be able to
2744 * add items it requires. It also needs to be able to tell us to
2745 * look out for other vendor IEs.
2746 */
2747static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002748 (1ULL << WLAN_EID_COUNTRY) |
2749 (1ULL << WLAN_EID_ERP_INFO) |
2750 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2751 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2752 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002753 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002754
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002755static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2756 struct ieee80211_mgmt *mgmt, size_t len,
2757 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002758{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002759 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002760 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002761 size_t baselen;
2762 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002763 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002764 struct ieee80211_chanctx_conf *chanctx_conf;
2765 struct ieee80211_channel *chan;
Johannes Bergbee7f582013-02-07 22:24:55 +01002766 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002767 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002768 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002769 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002770 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002771 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002772 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002773
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002774 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002775
Ester Kummerae6a44e2008-06-27 18:54:48 +03002776 /* Process beacon from the current BSS */
2777 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2778 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002779 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002780
Johannes Berg55de9082012-07-26 17:24:39 +02002781 rcu_read_lock();
2782 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2783 if (!chanctx_conf) {
2784 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002785 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002786 }
2787
Johannes Berg4bf88532012-11-09 11:39:59 +01002788 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002789 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002790 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002791 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002792 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002793 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002794
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002795 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002796 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002797 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002798 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002799
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002800 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002801 if (elems.tim && !elems.parse_error) {
2802 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2803 ifmgd->dtim_period = tim_ie->dtim_period;
2804 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002805 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002806 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002807 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2808 sdata->vif.bss_conf.sync_tsf =
2809 le64_to_cpu(mgmt->u.beacon.timestamp);
2810 sdata->vif.bss_conf.sync_device_ts =
2811 rx_status->device_timestamp;
2812 if (elems.tim)
2813 sdata->vif.bss_conf.sync_dtim_count =
2814 elems.tim->dtim_count;
2815 else
2816 sdata->vif.bss_conf.sync_dtim_count = 0;
2817 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002818 /* continue assoc process */
2819 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002820 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002821 run_again(sdata, ifmgd->assoc_data->timeout);
2822 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002823 }
2824
2825 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002826 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002827 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002828 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002829
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002830 /* Track average RSSI from the Beacon frames of the current AP */
2831 ifmgd->last_beacon_signal = rx_status->signal;
2832 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2833 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002834 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002835 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002836 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002837 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002838 } else {
2839 ifmgd->ave_beacon_signal =
2840 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2841 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2842 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002843 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002844 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002845
2846 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2847 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2848 int sig = ifmgd->ave_beacon_signal;
2849 int last_sig = ifmgd->last_ave_beacon_signal;
2850
2851 /*
2852 * if signal crosses either of the boundaries, invoke callback
2853 * with appropriate parameters
2854 */
2855 if (sig > ifmgd->rssi_max_thold &&
2856 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2857 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002858 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002859 } else if (sig < ifmgd->rssi_min_thold &&
2860 (last_sig >= ifmgd->rssi_max_thold ||
2861 last_sig == 0)) {
2862 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002863 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002864 }
2865 }
2866
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002867 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002868 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002869 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002870 int sig = ifmgd->ave_beacon_signal / 16;
2871 int last_event = ifmgd->last_cqm_event_signal;
2872 int thold = bss_conf->cqm_rssi_thold;
2873 int hyst = bss_conf->cqm_rssi_hyst;
2874 if (sig < thold &&
2875 (last_event == 0 || sig < last_event - hyst)) {
2876 ifmgd->last_cqm_event_signal = sig;
2877 ieee80211_cqm_rssi_notify(
2878 &sdata->vif,
2879 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2880 GFP_KERNEL);
2881 } else if (sig > thold &&
2882 (last_event == 0 || sig > last_event + hyst)) {
2883 ifmgd->last_cqm_event_signal = sig;
2884 ieee80211_cqm_rssi_notify(
2885 &sdata->vif,
2886 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2887 GFP_KERNEL);
2888 }
2889 }
2890
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002891 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002892 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01002893 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002894 ieee80211_reset_ap_probe(sdata);
Jouni Malinen92778182009-05-14 21:15:36 +03002895 }
2896
Johannes Bergb291ba12009-07-10 15:29:03 +02002897 /*
2898 * Push the beacon loss detection into the future since
2899 * we are processing a beacon from the AP just now.
2900 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002901 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002902
Johannes Bergd91f36d2009-04-16 13:17:26 +02002903 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2904 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002905 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02002906 care_about_ies, ncrc);
2907
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302908 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02002909 bool directed_tim = ieee80211_check_tim(elems.tim,
2910 elems.tim_len,
2911 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02002912 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002913 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002914 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2915 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2916 ieee80211_hw_config(local,
2917 IEEE80211_CONF_CHANGE_PS);
2918 }
Kalle Valo572e0012009-02-10 17:09:31 +02002919 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302920 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002921 local->pspolling = true;
2922
2923 /*
2924 * Here is assumed that the driver will be
2925 * able to send ps-poll frame and receive a
2926 * response even though power save mode is
2927 * enabled, but some drivers might require
2928 * to disable power save here. This needs
2929 * to be investigated.
2930 */
2931 ieee80211_send_pspoll(local, sdata);
2932 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002933 }
2934 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002935
Johannes Berg488dd7b2012-10-29 20:08:01 +01002936 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002937 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01002938 int ret;
2939
2940 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2941 len - baselen,
2942 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01002943 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002944 if (ret >= 2) {
2945 if (sdata->u.mgd.p2p_noa_index != noa.index) {
2946 /* valid noa_attr and index changed */
2947 sdata->u.mgd.p2p_noa_index = noa.index;
2948 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
2949 changed |= BSS_CHANGED_P2P_PS;
2950 /*
2951 * make sure we update all information, the CRC
2952 * mechanism doesn't look at P2P attributes.
2953 */
2954 ifmgd->beacon_crc_valid = false;
2955 }
2956 } else if (sdata->u.mgd.p2p_noa_index != -1) {
2957 /* noa_attr not found and we had valid noa_attr before */
2958 sdata->u.mgd.p2p_noa_index = -1;
2959 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01002960 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01002961 ifmgd->beacon_crc_valid = false;
2962 }
2963 }
2964
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002965 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002966 return;
Jouni Malinen30196672009-05-19 17:01:43 +03002967 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002968 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03002969
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002970 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02002971
Johannes Bergd70b7612013-08-23 15:48:48 +02002972 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2973 &elems, true);
2974
Johannes Berg095d81c2013-10-15 12:25:07 +02002975 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) &&
2976 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Johannes Berg7d257452012-07-06 17:37:43 +02002977 elems.wmm_param_len))
2978 changed |= BSS_CHANGED_QOS;
2979
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002980 /*
2981 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01002982 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002983 */
Alexander Bondar989c6502013-05-16 17:34:17 +03002984 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002985 /* a few bogus AP send dtim_period = 0 or no TIM IE */
2986 if (elems.tim)
2987 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
2988 else
2989 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01002990
2991 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2992 sdata->vif.bss_conf.sync_tsf =
2993 le64_to_cpu(mgmt->u.beacon.timestamp);
2994 sdata->vif.bss_conf.sync_device_ts =
2995 rx_status->device_timestamp;
2996 if (elems.tim)
2997 sdata->vif.bss_conf.sync_dtim_count =
2998 elems.tim->dtim_count;
2999 else
3000 sdata->vif.bss_conf.sync_dtim_count = 0;
3001 }
3002
Alexander Bondar989c6502013-05-16 17:34:17 +03003003 changed |= BSS_CHANGED_BEACON_INFO;
3004 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03003005
3006 mutex_lock(&local->iflist_mtx);
3007 ieee80211_recalc_ps(local, -1);
3008 mutex_unlock(&local->iflist_mtx);
3009
Alexander Bondarce857882013-05-06 17:17:04 +03003010 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003011 }
3012
Johannes Berg1946bed2013-03-27 14:31:53 +01003013 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02003014 erp_valid = true;
3015 erp_value = elems.erp_info[0];
3016 } else {
3017 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003018 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003019 changed |= ieee80211_handle_bss_capability(sdata,
3020 le16_to_cpu(mgmt->u.beacon.capab_info),
3021 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003022
Johannes Berg11289582013-02-07 17:36:12 +01003023 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f582013-02-07 22:24:55 +01003024 sta = sta_info_get(sdata, bssid);
3025
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003026 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3027 elems.vht_operation, bssid, &changed)) {
3028 mutex_unlock(&local->sta_mtx);
3029 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3030 WLAN_REASON_DEAUTH_LEAVING,
3031 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003032 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3033 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003034 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003035 }
Johannes Bergbee7f582013-02-07 22:24:55 +01003036
3037 if (sta && elems.opmode_notif)
3038 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3039 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003040 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003041
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003042 if (elems.country_elem && elems.pwr_constr_elem &&
3043 mgmt->u.probe_resp.capab_info &
3044 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003045 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3046 elems.country_elem,
3047 elems.country_elem_len,
3048 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003049
Johannes Berg471b3ef2007-12-28 14:32:58 +01003050 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003051}
3052
Johannes Berg1fa57d02010-06-10 10:21:32 +02003053void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3054 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003055{
3056 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003057 struct ieee80211_mgmt *mgmt;
3058 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003059 struct ieee802_11_elems elems;
3060 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003061
Jiri Bencf0706e82007-05-05 11:45:53 -07003062 rx_status = (struct ieee80211_rx_status *) skb->cb;
3063 mgmt = (struct ieee80211_mgmt *) skb->data;
3064 fc = le16_to_cpu(mgmt->frame_control);
3065
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003066 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003067
Johannes Berg66e67e42012-01-20 13:55:27 +01003068 switch (fc & IEEE80211_FCTL_STYPE) {
3069 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003070 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003071 break;
3072 case IEEE80211_STYPE_PROBE_RESP:
3073 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3074 break;
3075 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003076 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003077 break;
3078 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003079 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003080 break;
3081 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003082 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003083 break;
3084 case IEEE80211_STYPE_ASSOC_RESP:
3085 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003086 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003087 break;
3088 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003089 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003090 ies_len = skb->len -
3091 offsetof(struct ieee80211_mgmt,
3092 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003093
3094 if (ies_len < 0)
3095 break;
3096
3097 ieee802_11_parse_elems(
3098 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003099 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003100
3101 if (elems.parse_error)
3102 break;
3103
Johannes Berg66e67e42012-01-20 13:55:27 +01003104 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003105 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003106 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003107 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3108 ies_len = skb->len -
3109 offsetof(struct ieee80211_mgmt,
3110 u.action.u.ext_chan_switch.variable);
3111
3112 if (ies_len < 0)
3113 break;
3114
3115 ieee802_11_parse_elems(
3116 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003117 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003118
3119 if (elems.parse_error)
3120 break;
3121
3122 /* for the handling code pretend this was also an IE */
3123 elems.ext_chansw_ie =
3124 &mgmt->u.action.u.ext_chan_switch.data;
3125
3126 ieee80211_sta_process_chanswitch(sdata,
3127 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003128 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003129 }
Johannes Berg37799e52013-03-26 14:02:26 +01003130 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003131 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003132 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003133}
3134
Johannes Berg9c6bd792008-09-11 00:01:52 +02003135static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003136{
3137 struct ieee80211_sub_if_data *sdata =
3138 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003139
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003140 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003141}
3142
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003143static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003144 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003145{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003146 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003147
Johannes Berg37ad3882012-02-24 13:50:54 +01003148 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003149 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003150
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003151 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3152 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003153}
3154
Johannes Berg66e67e42012-01-20 13:55:27 +01003155static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3156{
3157 struct ieee80211_local *local = sdata->local;
3158 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3159 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003160 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003161
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003162 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003163
3164 if (WARN_ON_ONCE(!auth_data))
3165 return -EINVAL;
3166
Johannes Berg66e67e42012-01-20 13:55:27 +01003167 auth_data->tries++;
3168
3169 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003170 sdata_info(sdata, "authentication with %pM timed out\n",
3171 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003172
3173 /*
3174 * Most likely AP is not in the range so remove the
3175 * bss struct for that AP.
3176 */
3177 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3178
3179 return -ETIMEDOUT;
3180 }
3181
Johannes Berga1845fc2012-06-27 13:18:36 +02003182 drv_mgd_prepare_tx(local, sdata);
3183
Johannes Berg66e67e42012-01-20 13:55:27 +01003184 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003185 u16 trans = 1;
3186 u16 status = 0;
3187
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003188 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3189 auth_data->bss->bssid, auth_data->tries,
3190 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003191
3192 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003193
3194 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3195 trans = auth_data->sae_trans;
3196 status = auth_data->sae_status;
3197 auth_data->expected_transaction = trans;
3198 }
3199
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003200 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3201 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3202 IEEE80211_TX_INTFL_MLME_CONN_TX;
3203
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003204 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3205 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003206 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003207 auth_data->bss->bssid, NULL, 0, 0,
3208 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003209 } else {
3210 const u8 *ssidie;
3211
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003212 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3213 auth_data->bss->bssid, auth_data->tries,
3214 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003215
Johannes Berg9caf0362012-11-29 01:25:20 +01003216 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003217 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003218 if (!ssidie) {
3219 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003220 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003221 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003222 /*
3223 * Direct probe is sent to broadcast address as some APs
3224 * will not answer to direct packet in unassociated state.
3225 */
3226 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003227 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003228 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003229 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003230 }
3231
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003232 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003233 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003234 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003235 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003236 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003237 auth_data->timeout =
3238 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3239 auth_data->timeout_started = true;
3240 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003241 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003242
3243 return 0;
3244}
3245
3246static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3247{
3248 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3249 struct ieee80211_local *local = sdata->local;
3250
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003251 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003252
Johannes Berg66e67e42012-01-20 13:55:27 +01003253 assoc_data->tries++;
3254 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003255 sdata_info(sdata, "association with %pM timed out\n",
3256 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003257
3258 /*
3259 * Most likely AP is not in the range so remove the
3260 * bss struct for that AP.
3261 */
3262 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3263
3264 return -ETIMEDOUT;
3265 }
3266
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003267 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3268 assoc_data->bss->bssid, assoc_data->tries,
3269 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003270 ieee80211_send_assoc(sdata);
3271
Johannes Berg1672c0e32013-01-29 15:02:27 +01003272 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3273 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003274 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003275 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003276 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003277 assoc_data->timeout =
3278 round_jiffies_up(jiffies +
3279 IEEE80211_ASSOC_TIMEOUT_LONG);
3280 assoc_data->timeout_started = true;
3281 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003282 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003283
3284 return 0;
3285}
3286
Johannes Berg1672c0e32013-01-29 15:02:27 +01003287void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3288 __le16 fc, bool acked)
3289{
3290 struct ieee80211_local *local = sdata->local;
3291
3292 sdata->u.mgd.status_fc = fc;
3293 sdata->u.mgd.status_acked = acked;
3294 sdata->u.mgd.status_received = true;
3295
3296 ieee80211_queue_work(&local->hw, &sdata->work);
3297}
3298
Johannes Berg1fa57d02010-06-10 10:21:32 +02003299void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02003300{
Johannes Berg60f8b392008-09-08 17:44:22 +02003301 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003302 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003303
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003304 sdata_lock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003305
Johannes Berg1672c0e32013-01-29 15:02:27 +01003306 if (ifmgd->status_received) {
3307 __le16 fc = ifmgd->status_fc;
3308 bool status_acked = ifmgd->status_acked;
3309
3310 ifmgd->status_received = false;
3311 if (ifmgd->auth_data &&
3312 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3313 if (status_acked) {
3314 ifmgd->auth_data->timeout =
3315 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003316 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003317 } else {
3318 ifmgd->auth_data->timeout = jiffies - 1;
3319 }
Johannes Berg89afe612013-02-13 15:39:57 +01003320 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003321 } else if (ifmgd->assoc_data &&
3322 (ieee80211_is_assoc_req(fc) ||
3323 ieee80211_is_reassoc_req(fc))) {
3324 if (status_acked) {
3325 ifmgd->assoc_data->timeout =
3326 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003327 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003328 } else {
3329 ifmgd->assoc_data->timeout = jiffies - 1;
3330 }
Johannes Berg89afe612013-02-13 15:39:57 +01003331 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003332 }
3333 }
3334
Johannes Berg89afe612013-02-13 15:39:57 +01003335 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003336 time_after(jiffies, ifmgd->auth_data->timeout)) {
3337 if (ifmgd->auth_data->done) {
3338 /*
3339 * ok ... we waited for assoc but userspace didn't,
3340 * so let's just kill the auth data
3341 */
3342 ieee80211_destroy_auth_data(sdata, false);
3343 } else if (ieee80211_probe_auth(sdata)) {
3344 u8 bssid[ETH_ALEN];
3345
3346 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3347
3348 ieee80211_destroy_auth_data(sdata, false);
3349
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003350 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003351 }
Johannes Berg89afe612013-02-13 15:39:57 +01003352 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003353 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003354
Johannes Berg89afe612013-02-13 15:39:57 +01003355 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003356 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003357 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003358 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003359 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003360
3361 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003362 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003363 }
Johannes Berg89afe612013-02-13 15:39:57 +01003364 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003365 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003366
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02003367 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
Johannes Bergb291ba12009-07-10 15:29:03 +02003368 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003369 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003370 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003371
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003372 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003373
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003374 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003375 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003376 else
Ben Greear180205b2011-02-04 15:30:24 -08003377 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003378
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003379 /* ACK received for nullfunc probing frame */
3380 if (!ifmgd->probe_send_count)
3381 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003382 else if (ifmgd->nullfunc_failed) {
3383 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003384 mlme_dbg(sdata,
3385 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3386 bssid, ifmgd->probe_send_count,
3387 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003388 ieee80211_mgd_probe_ap_send(sdata);
3389 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003390 mlme_dbg(sdata,
3391 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3392 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003393 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003394 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3395 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003396 }
3397 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003398 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003399 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003400 mlme_dbg(sdata,
3401 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3402 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003403 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003404 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003405 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003406 mlme_dbg(sdata,
3407 "No probe response from AP %pM after %dms, try %d/%i\n",
3408 bssid, probe_wait_ms,
3409 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003410 ieee80211_mgd_probe_ap_send(sdata);
3411 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003412 /*
3413 * We actually lost the connection ... or did we?
3414 * Let's make sure!
3415 */
Ben Greearb38afa82010-10-07 16:12:06 -07003416 wiphy_debug(local->hw.wiphy,
3417 "%s: No probe response from AP %pM"
3418 " after %dms, disconnecting.\n",
3419 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003420 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003421
Johannes Berg95acac62011-07-12 12:30:59 +02003422 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003423 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003424 }
3425 }
3426
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003427 sdata_unlock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003428}
Johannes Berg0a51b272008-09-08 17:44:25 +02003429
Johannes Bergb291ba12009-07-10 15:29:03 +02003430static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3431{
3432 struct ieee80211_sub_if_data *sdata =
3433 (struct ieee80211_sub_if_data *) data;
3434 struct ieee80211_local *local = sdata->local;
3435
3436 if (local->quiescing)
3437 return;
3438
Johannes Berg682bd382013-01-29 13:13:50 +01003439 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003440 ieee80211_queue_work(&sdata->local->hw,
3441 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003442}
3443
3444static void ieee80211_sta_conn_mon_timer(unsigned long data)
3445{
3446 struct ieee80211_sub_if_data *sdata =
3447 (struct ieee80211_sub_if_data *) data;
3448 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3449 struct ieee80211_local *local = sdata->local;
3450
3451 if (local->quiescing)
3452 return;
3453
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003454 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003455}
3456
3457static void ieee80211_sta_monitor_work(struct work_struct *work)
3458{
3459 struct ieee80211_sub_if_data *sdata =
3460 container_of(work, struct ieee80211_sub_if_data,
3461 u.mgd.monitor_work);
3462
3463 ieee80211_mgd_probe_ap(sdata, false);
3464}
3465
Johannes Berga1678f82008-09-11 00:01:47 +02003466static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3467{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003468 u32 flags;
3469
Kalle Vaload935682009-04-19 08:47:19 +03003470 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003471 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003472
Johannes Bergb291ba12009-07-10 15:29:03 +02003473 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003474 flags = sdata->local->hw.flags;
3475 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3476 ieee80211_queue_work(&sdata->local->hw,
3477 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003478 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003479 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003480 }
Johannes Berga1678f82008-09-11 00:01:47 +02003481}
3482
Johannes Bergb8360ab2013-04-29 14:57:44 +02003483#ifdef CONFIG_PM
3484void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3485{
3486 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3487
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003488 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003489 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003490 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003491 return;
3492 }
3493
3494 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3495 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3496 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3497 ieee80211_sta_connection_lost(sdata,
3498 ifmgd->associated->bssid,
3499 WLAN_REASON_UNSPECIFIED,
3500 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003501 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003502 return;
3503 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003504 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003505}
3506#endif
3507
Johannes Berg9c6bd792008-09-11 00:01:52 +02003508/* interface setup */
3509void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3510{
Johannes Berg46900292009-02-15 12:44:28 +01003511 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003512
Johannes Berg46900292009-02-15 12:44:28 +01003513 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003514 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003515 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003516 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3517 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003518 INIT_WORK(&ifmgd->csa_connection_drop_work,
3519 ieee80211_csa_connection_drop_work);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03003520 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_mgd_work);
Johannes Berg46900292009-02-15 12:44:28 +01003521 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003522 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003523 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3524 (unsigned long) sdata);
3525 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3526 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003527 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303528 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003529
Johannes Bergab1faea2009-07-01 21:41:17 +02003530 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303531 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003532 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3533 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003534 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003535
Johannes Berg0f782312009-12-01 13:37:02 +01003536 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3537 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3538 else
3539 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003540}
3541
3542/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003543void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3544{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003545 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003546
3547 /* Restart STA timers */
3548 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003549 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3550 if (ieee80211_sdata_running(sdata))
3551 ieee80211_restart_sta_timer(sdata);
3552 }
Johannes Berga1678f82008-09-11 00:01:47 +02003553 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003554}
Johannes Berg10f644a2009-04-16 13:17:25 +02003555
3556int ieee80211_max_network_latency(struct notifier_block *nb,
3557 unsigned long data, void *dummy)
3558{
3559 s32 latency_usec = (s32) data;
3560 struct ieee80211_local *local =
3561 container_of(nb, struct ieee80211_local,
3562 network_latency_notifier);
3563
3564 mutex_lock(&local->iflist_mtx);
3565 ieee80211_recalc_ps(local, latency_usec);
3566 mutex_unlock(&local->iflist_mtx);
3567
3568 return 0;
3569}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003570
Johannes Bergf2d9d272012-11-22 14:11:39 +01003571static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3572 struct cfg80211_bss *cbss)
3573{
3574 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3575 const u8 *ht_cap_ie, *vht_cap_ie;
3576 const struct ieee80211_ht_cap *ht_cap;
3577 const struct ieee80211_vht_cap *vht_cap;
3578 u8 chains = 1;
3579
3580 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3581 return chains;
3582
Johannes Berg9caf0362012-11-29 01:25:20 +01003583 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003584 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3585 ht_cap = (void *)(ht_cap_ie + 2);
3586 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3587 /*
3588 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3589 * "Tx Unequal Modulation Supported" fields.
3590 */
3591 }
3592
3593 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3594 return chains;
3595
Johannes Berg9caf0362012-11-29 01:25:20 +01003596 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003597 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3598 u8 nss;
3599 u16 tx_mcs_map;
3600
3601 vht_cap = (void *)(vht_cap_ie + 2);
3602 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3603 for (nss = 8; nss > 0; nss--) {
3604 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3605 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3606 break;
3607 }
3608 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3609 chains = max(chains, nss);
3610 }
3611
3612 return chains;
3613}
3614
Johannes Bergb17166a2012-07-27 11:41:27 +02003615static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3616 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003617{
3618 struct ieee80211_local *local = sdata->local;
3619 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003620 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003621 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003622 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003623 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003624 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003625
Johannes Berg24398e32012-03-28 10:58:36 +02003626 sband = local->hw.wiphy->bands[cbss->channel->band];
3627
Johannes Bergf2d9d272012-11-22 14:11:39 +01003628 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3629 IEEE80211_STA_DISABLE_80P80MHZ |
3630 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003631
Johannes Berg9caf0362012-11-29 01:25:20 +01003632 rcu_read_lock();
3633
Johannes Bergf2d9d272012-11-22 14:11:39 +01003634 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3635 sband->ht_cap.ht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003636 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003637
Johannes Berg9caf0362012-11-29 01:25:20 +01003638 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003639 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3640 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6eff2013-02-07 23:33:32 +01003641
3642 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3643 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3644 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3645 ht_oper = NULL;
3646 }
Johannes Berg24398e32012-03-28 10:58:36 +02003647 }
3648
Johannes Bergf2d9d272012-11-22 14:11:39 +01003649 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3650 sband->vht_cap.vht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003651 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003652
Johannes Berg9caf0362012-11-29 01:25:20 +01003653 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3654 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003655 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3656 vht_oper = (void *)(vht_oper_ie + 2);
3657 if (vht_oper && !ht_oper) {
3658 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003659 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003660 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003661 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3662 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003663 }
Johannes Berg08e6eff2013-02-07 23:33:32 +01003664
3665 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3666 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3667 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3668 vht_oper = NULL;
3669 }
Johannes Berg24398e32012-03-28 10:58:36 +02003670 }
3671
Johannes Bergf2d9d272012-11-22 14:11:39 +01003672 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3673 cbss->channel,
3674 ht_oper, vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +02003675 &chandef, false);
Johannes Berg04ecd252012-09-11 14:34:12 +02003676
Johannes Bergf2d9d272012-11-22 14:11:39 +01003677 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3678 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003679
Johannes Berg9caf0362012-11-29 01:25:20 +01003680 rcu_read_unlock();
3681
Johannes Berg04ecd252012-09-11 14:34:12 +02003682 /* will change later if needed */
3683 sdata->smps_mode = IEEE80211_SMPS_OFF;
3684
Johannes Berg34a37402013-12-18 09:43:33 +01003685 mutex_lock(&local->mtx);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003686 /*
3687 * If this fails (possibly due to channel context sharing
3688 * on incompatible channels, e.g. 80+80 and 160 sharing the
3689 * same control channel) try to use a smaller bandwidth.
3690 */
3691 ret = ieee80211_vif_use_channel(sdata, &chandef,
3692 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003693
3694 /* don't downgrade for 5 and 10 MHz channels, though. */
3695 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3696 chandef.width == NL80211_CHAN_WIDTH_10)
Johannes Berg34a37402013-12-18 09:43:33 +01003697 goto out;
Simon Wunderlich0418a442013-05-16 13:00:31 +02003698
Johannes Bergd601cd82013-02-07 20:54:51 +01003699 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02003700 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003701 ret = ieee80211_vif_use_channel(sdata, &chandef,
3702 IEEE80211_CHANCTX_SHARED);
3703 }
Johannes Berg34a37402013-12-18 09:43:33 +01003704 out:
3705 mutex_unlock(&local->mtx);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003706 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003707}
3708
3709static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3710 struct cfg80211_bss *cbss, bool assoc)
3711{
3712 struct ieee80211_local *local = sdata->local;
3713 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3714 struct ieee80211_bss *bss = (void *)cbss->priv;
3715 struct sta_info *new_sta = NULL;
3716 bool have_sta = false;
3717 int err;
3718
3719 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3720 return -EINVAL;
3721
3722 if (assoc) {
3723 rcu_read_lock();
3724 have_sta = sta_info_get(sdata, cbss->bssid);
3725 rcu_read_unlock();
3726 }
3727
3728 if (!have_sta) {
3729 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3730 if (!new_sta)
3731 return -ENOMEM;
3732 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003733 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003734 u32 rates = 0, basic_rates = 0;
3735 bool have_higher_than_11mbit;
3736 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003737 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003738 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003739 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003740 int shift;
3741 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003742
3743 sband = local->hw.wiphy->bands[cbss->channel->band];
3744
3745 err = ieee80211_prep_channel(sdata, cbss);
3746 if (err) {
3747 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003748 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003749 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003750 shift = ieee80211_vif_get_shift(&sdata->vif);
3751
3752 rcu_read_lock();
3753 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3754 if (WARN_ON(!chanctx_conf)) {
3755 rcu_read_unlock();
3756 return -EINVAL;
3757 }
3758 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3759 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003760
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003761 ieee80211_get_rates(sband, bss->supp_rates,
3762 bss->supp_rates_len,
3763 &rates, &basic_rates,
3764 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003765 &min_rate, &min_rate_index,
3766 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003767
3768 /*
3769 * This used to be a workaround for basic rates missing
3770 * in the association response frame. Now that we no
3771 * longer use the basic rates from there, it probably
3772 * doesn't happen any more, but keep the workaround so
3773 * in case some *other* APs are buggy in different ways
3774 * we can connect -- with a warning.
3775 */
3776 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003777 sdata_info(sdata,
3778 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003779 basic_rates = BIT(min_rate_index);
3780 }
3781
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003782 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003783 sdata->vif.bss_conf.basic_rates = basic_rates;
3784
3785 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003786 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003787 have_higher_than_11mbit)
3788 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3789 else
3790 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3791
3792 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3793
Johannes Berg8c358bc2012-05-22 22:13:05 +02003794 /* set timing information */
3795 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003796 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003797 ies = rcu_dereference(cbss->beacon_ies);
3798 if (ies) {
3799 const u8 *tim_ie;
3800
3801 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3802 sdata->vif.bss_conf.sync_device_ts =
3803 bss->device_ts_beacon;
3804 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3805 ies->data, ies->len);
3806 if (tim_ie && tim_ie[1] >= 2)
3807 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3808 else
3809 sdata->vif.bss_conf.sync_dtim_count = 0;
3810 } else if (!(local->hw.flags &
3811 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3812 ies = rcu_dereference(cbss->proberesp_ies);
3813 /* must be non-NULL since beacon IEs were NULL */
3814 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3815 sdata->vif.bss_conf.sync_device_ts =
3816 bss->device_ts_presp;
3817 sdata->vif.bss_conf.sync_dtim_count = 0;
3818 } else {
3819 sdata->vif.bss_conf.sync_tsf = 0;
3820 sdata->vif.bss_conf.sync_device_ts = 0;
3821 sdata->vif.bss_conf.sync_dtim_count = 0;
3822 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003823 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003824
3825 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003826 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003827 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3828 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003829
3830 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003831 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003832
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003833 err = sta_info_insert(new_sta);
3834 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003835 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003836 sdata_info(sdata,
3837 "failed to insert STA entry for the AP (error %d)\n",
3838 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003839 return err;
3840 }
3841 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003842 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003843
3844 return 0;
3845}
3846
Johannes Berg77fdaa12009-07-07 03:45:17 +02003847/* config hooks */
3848int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3849 struct cfg80211_auth_request *req)
3850{
Johannes Berg66e67e42012-01-20 13:55:27 +01003851 struct ieee80211_local *local = sdata->local;
3852 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3853 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003854 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003855 int err;
3856
3857 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003858
3859 switch (req->auth_type) {
3860 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3861 auth_alg = WLAN_AUTH_OPEN;
3862 break;
3863 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003864 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003865 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003866 auth_alg = WLAN_AUTH_SHARED_KEY;
3867 break;
3868 case NL80211_AUTHTYPE_FT:
3869 auth_alg = WLAN_AUTH_FT;
3870 break;
3871 case NL80211_AUTHTYPE_NETWORK_EAP:
3872 auth_alg = WLAN_AUTH_LEAP;
3873 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003874 case NL80211_AUTHTYPE_SAE:
3875 auth_alg = WLAN_AUTH_SAE;
3876 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003877 default:
3878 return -EOPNOTSUPP;
3879 }
3880
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003881 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3882 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003883 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003884 return -ENOMEM;
3885
Johannes Berg66e67e42012-01-20 13:55:27 +01003886 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003887
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003888 if (req->sae_data_len >= 4) {
3889 __le16 *pos = (__le16 *) req->sae_data;
3890 auth_data->sae_trans = le16_to_cpu(pos[0]);
3891 auth_data->sae_status = le16_to_cpu(pos[1]);
3892 memcpy(auth_data->data, req->sae_data + 4,
3893 req->sae_data_len - 4);
3894 auth_data->data_len += req->sae_data_len - 4;
3895 }
3896
Johannes Berg77fdaa12009-07-07 03:45:17 +02003897 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003898 memcpy(&auth_data->data[auth_data->data_len],
3899 req->ie, req->ie_len);
3900 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003901 }
3902
Johannes Bergfffd0932009-07-08 14:22:54 +02003903 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003904 auth_data->key_len = req->key_len;
3905 auth_data->key_idx = req->key_idx;
3906 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003907 }
3908
Johannes Berg66e67e42012-01-20 13:55:27 +01003909 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003910
Johannes Berg66e67e42012-01-20 13:55:27 +01003911 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003912
Johannes Berg66e67e42012-01-20 13:55:27 +01003913 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3914 ifmgd->assoc_data) {
3915 err = -EBUSY;
3916 goto err_free;
3917 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003918
Johannes Berg66e67e42012-01-20 13:55:27 +01003919 if (ifmgd->auth_data)
3920 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003921
Johannes Berg66e67e42012-01-20 13:55:27 +01003922 /* prep auth_data so we don't go into idle on disassoc */
3923 ifmgd->auth_data = auth_data;
3924
Johannes Berg7b119dc2013-04-10 21:38:36 +02003925 if (ifmgd->associated) {
3926 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3927
3928 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3929 WLAN_REASON_UNSPECIFIED,
3930 false, frame_buf);
3931
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003932 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3933 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003934 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003935
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003936 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003937
Johannes Berga1cf7752012-03-08 15:02:07 +01003938 err = ieee80211_prep_connection(sdata, req->bss, false);
3939 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003940 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003941
Johannes Berg66e67e42012-01-20 13:55:27 +01003942 err = ieee80211_probe_auth(sdata);
3943 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003944 sta_info_destroy_addr(sdata, req->bss->bssid);
3945 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003946 }
3947
Johannes Berg66e67e42012-01-20 13:55:27 +01003948 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01003949 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003950 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02003951
Johannes Berg66e67e42012-01-20 13:55:27 +01003952 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03003953 memset(ifmgd->bssid, 0, ETH_ALEN);
3954 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01003955 ifmgd->auth_data = NULL;
3956 err_free:
3957 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01003958 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003959}
3960
Johannes Berg095d81c2013-10-15 12:25:07 +02003961static bool ieee80211_usable_wmm_params(struct ieee80211_sub_if_data *sdata,
3962 const u8 *wmm_param, int len)
3963{
3964 const u8 *pos;
3965 size_t left;
3966
3967 if (len < 8)
3968 return false;
3969
3970 if (wmm_param[5] != 1 /* version */)
3971 return false;
3972
3973 pos = wmm_param + 8;
3974 left = len - 8;
3975
3976 for (; left >= 4; left -= 4, pos += 4) {
3977 u8 aifsn = pos[0] & 0x0f;
3978 u8 ecwmin = pos[1] & 0x0f;
3979 u8 ecwmax = (pos[1] & 0xf0) >> 4;
3980 int aci = (pos[0] >> 5) & 0x03;
3981
3982 if (aifsn < 2) {
3983 sdata_info(sdata,
3984 "AP has invalid WMM params (AIFSN=%d for ACI %d), disabling WMM\n",
3985 aifsn, aci);
3986 return false;
3987 }
3988 if (ecwmin > ecwmax) {
3989 sdata_info(sdata,
3990 "AP has invalid WMM params (ECWmin/max=%d/%d for ACI %d), disabling WMM\n",
3991 ecwmin, ecwmax, aci);
3992 return false;
3993 }
3994 }
3995
3996 return true;
3997}
3998
Johannes Berg77fdaa12009-07-07 03:45:17 +02003999int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4000 struct cfg80211_assoc_request *req)
4001{
Johannes Berg66e67e42012-01-20 13:55:27 +01004002 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004003 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01004004 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01004005 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004006 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004007 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004008 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004009 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004010
Johannes Berg66e67e42012-01-20 13:55:27 +01004011 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
4012 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01004013 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004014
Johannes Berg9caf0362012-11-29 01:25:20 +01004015 rcu_read_lock();
4016 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4017 if (!ssidie) {
4018 rcu_read_unlock();
4019 kfree(assoc_data);
4020 return -EINVAL;
4021 }
4022 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4023 assoc_data->ssid_len = ssidie[1];
4024 rcu_read_unlock();
4025
Johannes Berg7b119dc2013-04-10 21:38:36 +02004026 if (ifmgd->associated) {
4027 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4028
4029 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4030 WLAN_REASON_UNSPECIFIED,
4031 false, frame_buf);
4032
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004033 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4034 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004035 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004036
4037 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4038 err = -EBUSY;
4039 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004040 }
4041
Johannes Berg66e67e42012-01-20 13:55:27 +01004042 if (ifmgd->assoc_data) {
4043 err = -EBUSY;
4044 goto err_free;
4045 }
4046
4047 if (ifmgd->auth_data) {
4048 bool match;
4049
4050 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00004051 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004052 ieee80211_destroy_auth_data(sdata, match);
4053 }
4054
4055 /* prepare assoc data */
Johannes Berg095d81c2013-10-15 12:25:07 +02004056
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03004057 ifmgd->beacon_crc_valid = false;
4058
Johannes Berg095d81c2013-10-15 12:25:07 +02004059 assoc_data->wmm = bss->wmm_used &&
4060 (local->hw.queues >= IEEE80211_NUM_ACS);
4061 if (assoc_data->wmm) {
4062 /* try to check validity of WMM params IE */
4063 const struct cfg80211_bss_ies *ies;
4064 const u8 *wp, *start, *end;
4065
4066 rcu_read_lock();
4067 ies = rcu_dereference(req->bss->ies);
4068 start = ies->data;
4069 end = start + ies->len;
4070
4071 while (true) {
4072 wp = cfg80211_find_vendor_ie(
4073 WLAN_OUI_MICROSOFT,
4074 WLAN_OUI_TYPE_MICROSOFT_WMM,
4075 start, end - start);
4076 if (!wp)
4077 break;
4078 start = wp + wp[1] + 2;
4079 /* if this IE is too short, try the next */
4080 if (wp[1] <= 4)
4081 continue;
4082 /* if this IE is WMM params, we found what we wanted */
4083 if (wp[6] == 1)
4084 break;
4085 }
4086
4087 if (!wp || !ieee80211_usable_wmm_params(sdata, wp + 2,
4088 wp[1] - 2)) {
4089 assoc_data->wmm = false;
4090 ifmgd->flags |= IEEE80211_STA_DISABLE_WMM;
4091 }
4092 rcu_read_unlock();
4093 }
4094
Johannes Bergde5036a2012-03-08 15:02:03 +01004095 /*
4096 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4097 * We still associate in non-HT mode (11a/b/g) if any one of these
4098 * ciphers is configured as pairwise.
4099 * We can set this to true for non-11n hardware, that'll be checked
4100 * separately along with the peer capabilities.
4101 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004102 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004103 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4104 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004105 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004106 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004107 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004108 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004109 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004110 }
4111 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004112
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004113 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004114 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004115 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4116 }
Ben Greearef96a8422011-11-18 11:32:00 -08004117
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004118 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4119 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4120
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004121 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4122 sband = local->hw.wiphy->bands[req->bss->channel->band];
4123 if (!sband->ht_cap.ht_supported ||
Johannes Berg095d81c2013-10-15 12:25:07 +02004124 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4125 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
Johannes Berga8243b72012-11-22 14:32:09 +01004126 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg095d81c2013-10-15 12:25:07 +02004127 if (!bss->wmm_used &&
4128 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
Johannes Berg1b49de22012-07-27 10:29:14 +02004129 netdev_info(sdata->dev,
4130 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004131 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004132
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004133 /* disable VHT if we don't support it or the AP doesn't use WMM */
4134 if (!sband->vht_cap.vht_supported ||
Johannes Berg095d81c2013-10-15 12:25:07 +02004135 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4136 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004137 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg095d81c2013-10-15 12:25:07 +02004138 if (!bss->wmm_used &&
4139 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
Johannes Berg1b49de22012-07-27 10:29:14 +02004140 netdev_info(sdata->dev,
4141 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004142 }
4143
Ben Greearef96a8422011-11-18 11:32:00 -08004144 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4145 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4146 sizeof(ifmgd->ht_capa_mask));
4147
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004148 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4149 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4150 sizeof(ifmgd->vht_capa_mask));
4151
Johannes Berg77fdaa12009-07-07 03:45:17 +02004152 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004153 memcpy(assoc_data->ie, req->ie, req->ie_len);
4154 assoc_data->ie_len = req->ie_len;
4155 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004156
Johannes Berg66e67e42012-01-20 13:55:27 +01004157 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004158
Johannes Bergaf6b6372009-12-23 13:15:35 +01004159 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4160 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004161 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004162 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004163 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004164 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004165 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004166
Johannes Berg66e67e42012-01-20 13:55:27 +01004167 assoc_data->capability = req->bss->capability;
Johannes Berg66e67e42012-01-20 13:55:27 +01004168 assoc_data->supp_rates = bss->supp_rates;
4169 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004170
Johannes Berg9caf0362012-11-29 01:25:20 +01004171 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004172 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4173 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4174 assoc_data->ap_ht_param =
4175 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4176 else
Johannes Berga8243b72012-11-22 14:32:09 +01004177 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004178 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4179 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4180 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4181 sizeof(struct ieee80211_vht_cap));
4182 else
4183 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004184 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004185
Kalle Valoab133152010-01-12 10:42:31 +02004186 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004187 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4188 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004189 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004190 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4191 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004192 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004193 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4194 }
4195
Johannes Berg77fdaa12009-07-07 03:45:17 +02004196 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004197 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004198
4199 if (req->use_mfp) {
4200 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4201 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4202 } else {
4203 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4204 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4205 }
4206
4207 if (req->crypto.control_port)
4208 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4209 else
4210 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4211
Johannes Berga621fa42010-08-27 14:26:54 +03004212 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4213 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02004214 sdata->encrypt_headroom = ieee80211_cs_headroom(local, &req->crypto,
4215 sdata->vif.type);
Johannes Berga621fa42010-08-27 14:26:54 +03004216
Johannes Berg66e67e42012-01-20 13:55:27 +01004217 /* kick off associate process */
4218
4219 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004220 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004221 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004222
Johannes Berga1cf7752012-03-08 15:02:07 +01004223 err = ieee80211_prep_connection(sdata, req->bss, true);
4224 if (err)
4225 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004226
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004227 rcu_read_lock();
4228 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004229
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004230 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4231 !beacon_ies) {
4232 /*
4233 * Wait up to one beacon interval ...
4234 * should this be more if we miss one?
4235 */
4236 sdata_info(sdata, "waiting for beacon from %pM\n",
4237 ifmgd->bssid);
4238 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004239 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004240 assoc_data->need_beacon = true;
4241 } else if (beacon_ies) {
4242 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4243 beacon_ies->data,
4244 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004245 u8 dtim_count = 0;
4246
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004247 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4248 const struct ieee80211_tim_ie *tim;
4249 tim = (void *)(tim_ie + 2);
4250 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004251 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004252 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004253 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004254 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004255 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004256
4257 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4258 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4259 sdata->vif.bss_conf.sync_device_ts =
4260 bss->device_ts_beacon;
4261 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4262 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004263 } else {
4264 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004265 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004266 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004267 rcu_read_unlock();
4268
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004269 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004270
Paul Stewartfcff4f12012-02-23 17:59:53 -08004271 if (bss->corrupt_data) {
4272 char *corrupt_type = "data";
4273 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4274 if (bss->corrupt_data &
4275 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4276 corrupt_type = "beacon and probe response";
4277 else
4278 corrupt_type = "beacon";
4279 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4280 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004281 sdata_info(sdata, "associating with AP with corrupt %s\n",
4282 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004283 }
4284
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004285 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004286 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004287 memset(ifmgd->bssid, 0, ETH_ALEN);
4288 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004289 ifmgd->assoc_data = NULL;
4290 err_free:
4291 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004292 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004293}
4294
4295int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004296 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004297{
4298 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004299 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004300 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004301 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004302
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004303 sdata_info(sdata,
4304 "deauthenticating from %pM by local choice (reason=%d)\n",
4305 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004306
Johannes Berg86552012012-10-29 09:46:31 +01004307 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004308 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004309 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4310 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004311 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004312 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004313 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004314
Johannes Bergde3d43a2013-05-14 09:39:02 +02004315 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004316 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004317 }
4318
Johannes Berg86552012012-10-29 09:46:31 +01004319 if (ifmgd->associated &&
4320 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4321 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4322 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004323 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004324 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004325
Johannes Berg86552012012-10-29 09:46:31 +01004326 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004327 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004328 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4329 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004330
Johannes Berg77fdaa12009-07-07 03:45:17 +02004331 return 0;
4332}
4333
4334int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004335 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004336{
4337 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004338 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004339 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004340
Johannes Berg8d8b2612009-07-25 11:58:36 +02004341 /*
4342 * cfg80211 should catch this ... but it's racy since
4343 * we can receive a disassoc frame, process it, hand it
4344 * to cfg80211 while that's in a locked section already
4345 * trying to tell us that the user wants to disconnect.
4346 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004347 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004348 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004349
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004350 sdata_info(sdata,
4351 "disassociating from %pM by local choice (reason=%d)\n",
4352 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004353
Jouni Malinene69e95d2010-03-29 23:29:31 -07004354 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004355 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4356 req->reason_code, !req->local_state_change,
4357 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004358
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004359 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4360 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004361
Johannes Berg77fdaa12009-07-07 03:45:17 +02004362 return 0;
4363}
Jouni Malinen026331c2010-02-15 12:53:10 +02004364
Eliad Pellerafa762f2012-04-23 14:45:15 +03004365void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004366{
4367 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4368
Ben Greear49921852013-02-20 09:41:09 -08004369 /*
4370 * Make sure some work items will not run after this,
4371 * they will not do anything but might not have been
4372 * cancelled when disconnecting.
4373 */
4374 cancel_work_sync(&ifmgd->monitor_work);
4375 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4376 cancel_work_sync(&ifmgd->request_smps_work);
4377 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4378 cancel_work_sync(&ifmgd->chswitch_work);
4379
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004380 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004381 if (ifmgd->assoc_data) {
4382 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004383 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004384 cfg80211_assoc_timeout(sdata->dev, bss);
4385 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004386 if (ifmgd->auth_data)
4387 ieee80211_destroy_auth_data(sdata, false);
4388 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004389 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004390}
4391
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004392void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4393 enum nl80211_cqm_rssi_threshold_event rssi_event,
4394 gfp_t gfp)
4395{
4396 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4397
Johannes Bergb5878a22010-04-07 16:48:40 +02004398 trace_api_cqm_rssi_notify(sdata, rssi_event);
4399
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004400 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4401}
4402EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);