blob: 33bcf8018d8e3873f7719994a990eeed6da65e25 [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 Berg60f8b39c2008-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 Berg60f8b39c2008-09-08 17:44:22 +0200144{
Johannes Berg5484e232008-09-08 17:44:27 +0200145 return (1 << ecw) - 1;
Johannes Berg60f8b39c2008-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 Berg9607e6b662009-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
Luciano Coelho33787fc2013-11-11 20:34:54 +0200891 ret = ieee80211_vif_change_channel(sdata, &changed);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300892 if (ret) {
893 sdata_info(sdata,
894 "vif channel switch failed, disconnecting\n");
895 ieee80211_queue_work(&sdata->local->hw,
896 &ifmgd->csa_connection_drop_work);
897 goto out;
898 }
Karl Beldan675a0b02013-03-25 16:26:57 +0100899
Arik Nemtsov7578d572013-09-01 17:15:51 +0300900 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +0200901 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +0300902 /* Call "hw_config" only if doing sw channel switch.
903 * Otherwise update the channel directly
904 */
905 if (!local->ops->channel_switch)
906 ieee80211_hw_config(local, 0);
907 else
908 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200909 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200910
Johannes Berg77fdaa12009-07-07 03:45:17 +0200911 /* XXX: shouldn't really modify cfg80211-owned data! */
Luciano Coelho33787fc2013-11-11 20:34:54 +0200912 ifmgd->associated->channel = sdata->csa_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200913
Johannes Berg57eebdf2012-08-01 15:50:46 +0200914 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100915 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100916 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200917 IEEE80211_QUEUE_STOP_REASON_CSA);
Arik Nemtsov7578d572013-09-01 17:15:51 +0300918
919 ieee80211_bss_info_change_notify(sdata, changed);
920
Johannes Berg77fdaa12009-07-07 03:45:17 +0200921 out:
Arik Nemtsov7578d572013-09-01 17:15:51 +0300922 sdata->vif.csa_active = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200923 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200924 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200925}
926
Johannes Berg5ce6e432010-05-11 16:20:57 +0200927void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
928{
Johannes Berg55de9082012-07-26 17:24:39 +0200929 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
930 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200931
932 trace_api_chswitch_done(sdata, success);
933 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200934 sdata_info(sdata,
935 "driver channel switch failed, disconnecting\n");
936 ieee80211_queue_work(&sdata->local->hw,
937 &ifmgd->csa_connection_drop_work);
938 } else {
939 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200940 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200941}
942EXPORT_SYMBOL(ieee80211_chswitch_done);
943
Johannes Bergcc32abd2009-05-15 11:52:31 +0200944static void ieee80211_chswitch_timer(unsigned long data)
945{
946 struct ieee80211_sub_if_data *sdata =
947 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200948
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100949 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200950}
951
Johannes Berg37799e52013-03-26 14:02:26 +0100952static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100953ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200954 u64 timestamp, struct ieee802_11_elems *elems,
955 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200956{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100957 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200958 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +0100959 struct cfg80211_bss *cbss = ifmgd->associated;
Johannes Berg55de9082012-07-26 17:24:39 +0200960 struct ieee80211_chanctx *chanctx;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200961 enum ieee80211_band current_band;
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700962 struct ieee80211_csa_ie csa_ie;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200963 int res;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200964
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200965 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200966
Johannes Berg37799e52013-03-26 14:02:26 +0100967 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200968 return;
969
Johannes Bergb4f286a12013-03-26 14:13:58 +0100970 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200971 return;
972
Johannes Berg37799e52013-03-26 14:02:26 +0100973 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +0200974 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
975 return;
976
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200977 current_band = cbss->channel->band;
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700978 memset(&csa_ie, 0, sizeof(csa_ie));
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200979 res = ieee80211_parse_ch_switch_ie(sdata, elems, beacon, current_band,
980 ifmgd->flags,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700981 ifmgd->associated->bssid, &csa_ie);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200982 if (res < 0)
Johannes Bergb4f286a12013-03-26 14:13:58 +0100983 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +0200984 &ifmgd->csa_connection_drop_work);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200985 if (res)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200986 return;
Johannes Bergcd64f2a2013-03-28 10:44:18 +0100987
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700988 if (!cfg80211_chandef_usable(local->hw.wiphy, &csa_ie.chandef,
Johannes Berg85220d72013-03-25 18:29:27 +0100989 IEEE80211_CHAN_DISABLED)) {
990 sdata_info(sdata,
991 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200992 ifmgd->associated->bssid,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -0700993 csa_ie.chandef.chan->center_freq,
994 csa_ie.chandef.width, csa_ie.chandef.center_freq1,
995 csa_ie.chandef.center_freq2);
Johannes Berg85220d72013-03-25 18:29:27 +0100996 ieee80211_queue_work(&local->hw,
997 &ifmgd->csa_connection_drop_work);
998 return;
999 }
1000
Johannes Berg57eebdf2012-08-01 15:50:46 +02001001 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03001002 sdata->vif.csa_active = true;
Johannes Berg55de9082012-07-26 17:24:39 +02001003
Johannes Bergb4f286a12013-03-26 14:13:58 +01001004 mutex_lock(&local->chanctx_mtx);
Arik Nemtsov7578d572013-09-01 17:15:51 +03001005 if (local->use_chanctx) {
1006 u32 num_chanctx = 0;
1007 list_for_each_entry(chanctx, &local->chanctx_list, list)
1008 num_chanctx++;
1009
1010 if (num_chanctx > 1 ||
1011 !(local->hw.flags & IEEE80211_HW_CHANCTX_STA_CSA)) {
1012 sdata_info(sdata,
1013 "not handling chan-switch with channel contexts\n");
1014 ieee80211_queue_work(&local->hw,
1015 &ifmgd->csa_connection_drop_work);
1016 mutex_unlock(&local->chanctx_mtx);
1017 return;
1018 }
1019 }
1020
Johannes Berg55de9082012-07-26 17:24:39 +02001021 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Arik Nemtsov7578d572013-09-01 17:15:51 +03001022 ieee80211_queue_work(&local->hw,
1023 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001024 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001025 return;
1026 }
1027 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1028 struct ieee80211_chanctx, conf);
1029 if (chanctx->refcount > 1) {
1030 sdata_info(sdata,
1031 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001032 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001033 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001034 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001035 return;
1036 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001037 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001038
Luciano Coelho33787fc2013-11-11 20:34:54 +02001039 sdata->csa_chandef = csa_ie.chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001040
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001041 if (csa_ie.mode)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001042 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001043 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001044 IEEE80211_QUEUE_STOP_REASON_CSA);
1045
Johannes Bergb4f286a12013-03-26 14:13:58 +01001046 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001047 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001048 struct ieee80211_channel_switch ch_switch = {
1049 .timestamp = timestamp,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001050 .block_tx = csa_ie.mode,
1051 .chandef = csa_ie.chandef,
1052 .count = csa_ie.count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001053 };
1054
Johannes Bergb4f286a12013-03-26 14:13:58 +01001055 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001056 return;
1057 }
1058
1059 /* channel switch handled in software */
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001060 if (csa_ie.count <= 1)
Johannes Bergb4f286a12013-03-26 14:13:58 +01001061 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001062 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001063 mod_timer(&ifmgd->chswitch_timer,
Chun-Yeow Yeohc0f17eb2013-10-14 19:08:29 -07001064 TU_TO_EXP_TIME(csa_ie.count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001065}
1066
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001067static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1068 struct ieee80211_channel *channel,
1069 const u8 *country_ie, u8 country_ie_len,
1070 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001071{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001072 struct ieee80211_country_ie_triplet *triplet;
1073 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1074 int i, chan_pwr, chan_increment, new_ap_level;
1075 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001076
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001077 /* Invalid IE */
1078 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001079 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001080
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001081 triplet = (void *)(country_ie + 3);
1082 country_ie_len -= 3;
1083
1084 switch (channel->band) {
1085 default:
1086 WARN_ON_ONCE(1);
1087 /* fall through */
1088 case IEEE80211_BAND_2GHZ:
1089 case IEEE80211_BAND_60GHZ:
1090 chan_increment = 1;
1091 break;
1092 case IEEE80211_BAND_5GHZ:
1093 chan_increment = 4;
1094 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001095 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001096
1097 /* find channel */
1098 while (country_ie_len >= 3) {
1099 u8 first_channel = triplet->chans.first_channel;
1100
1101 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1102 goto next;
1103
1104 for (i = 0; i < triplet->chans.num_channels; i++) {
1105 if (first_channel + i * chan_increment == chan) {
1106 have_chan_pwr = true;
1107 chan_pwr = triplet->chans.max_power;
1108 break;
1109 }
1110 }
1111 if (have_chan_pwr)
1112 break;
1113
1114 next:
1115 triplet++;
1116 country_ie_len -= 3;
1117 }
1118
1119 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001120 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001121
1122 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1123
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001124 if (sdata->ap_power_level == new_ap_level)
1125 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001126
1127 sdata_info(sdata,
1128 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1129 new_ap_level, chan_pwr, *pwr_constr_elem,
1130 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001131 sdata->ap_power_level = new_ap_level;
1132 if (__ieee80211_recalc_txpower(sdata))
1133 return BSS_CHANGED_TXPOWER;
1134 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001135}
1136
Johannes Berg965beda2009-04-16 13:17:24 +02001137/* powersave */
1138static void ieee80211_enable_ps(struct ieee80211_local *local,
1139 struct ieee80211_sub_if_data *sdata)
1140{
1141 struct ieee80211_conf *conf = &local->hw.conf;
1142
Johannes Bergd5edaed2009-04-22 23:02:51 +02001143 /*
1144 * If we are scanning right now then the parameters will
1145 * take effect when scan finishes.
1146 */
Helmut Schaafbe9c4292009-07-23 12:14:04 +02001147 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001148 return;
1149
Johannes Berg965beda2009-04-16 13:17:24 +02001150 if (conf->dynamic_ps_timeout > 0 &&
1151 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1152 mod_timer(&local->dynamic_ps_timer, jiffies +
1153 msecs_to_jiffies(conf->dynamic_ps_timeout));
1154 } else {
1155 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1156 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301157
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001158 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1159 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1160 return;
1161
1162 conf->flags |= IEEE80211_CONF_PS;
1163 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001164 }
1165}
1166
1167static void ieee80211_change_ps(struct ieee80211_local *local)
1168{
1169 struct ieee80211_conf *conf = &local->hw.conf;
1170
1171 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001172 ieee80211_enable_ps(local, local->ps_sdata);
1173 } else if (conf->flags & IEEE80211_CONF_PS) {
1174 conf->flags &= ~IEEE80211_CONF_PS;
1175 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1176 del_timer_sync(&local->dynamic_ps_timer);
1177 cancel_work_sync(&local->dynamic_ps_enable_work);
1178 }
1179}
1180
Jason Young808118c2011-03-10 16:43:19 -08001181static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1182{
1183 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1184 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001185 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001186
1187 if (!mgd->powersave)
1188 return false;
1189
Johannes Berg05cb9102011-10-28 11:59:47 +02001190 if (mgd->broken_ap)
1191 return false;
1192
Jason Young808118c2011-03-10 16:43:19 -08001193 if (!mgd->associated)
1194 return false;
1195
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001196 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
Jason Young808118c2011-03-10 16:43:19 -08001197 return false;
1198
Alexander Bondar989c6502013-05-16 17:34:17 +03001199 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001200 return false;
1201
Jason Young808118c2011-03-10 16:43:19 -08001202 rcu_read_lock();
1203 sta = sta_info_get(sdata, mgd->bssid);
1204 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001205 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001206 rcu_read_unlock();
1207
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001208 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001209}
1210
Johannes Berg965beda2009-04-16 13:17:24 +02001211/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001212void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001213{
1214 struct ieee80211_sub_if_data *sdata, *found = NULL;
1215 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001216 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001217
1218 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1219 local->ps_sdata = NULL;
1220 return;
1221 }
1222
1223 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b662009-12-23 13:15:31 +01001224 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001225 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301226 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1227 /* If an AP vif is found, then disable PS
1228 * by setting the count to zero thereby setting
1229 * ps_sdata to NULL.
1230 */
1231 count = 0;
1232 break;
1233 }
Johannes Berg965beda2009-04-16 13:17:24 +02001234 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1235 continue;
1236 found = sdata;
1237 count++;
1238 }
1239
Jason Young808118c2011-03-10 16:43:19 -08001240 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001241 s32 beaconint_us;
1242
1243 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001244 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001245
1246 beaconint_us = ieee80211_tu_to_usec(
1247 found->vif.bss_conf.beacon_int);
1248
Juuso Oikarinenff616382010-06-09 09:51:52 +03001249 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001250 if (timeout < 0) {
1251 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001252 * Go to full PSM if the user configures a very low
1253 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001254 * The 2000 second value is there for compatibility
1255 * until the PM_QOS_NETWORK_LATENCY is configured
1256 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001257 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001258 if (latency > (1900 * USEC_PER_MSEC) &&
1259 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001260 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001261 else
1262 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001263 }
Johannes Berg09b85562013-02-06 23:07:41 +01001264 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001265
Johannes Berg04fe2032009-04-22 18:44:37 +02001266 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001267 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001268 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001269 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001270 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001271
1272 /* If the TIM IE is invalid, pretend the value is 1 */
1273 if (!dtimper)
1274 dtimper = 1;
1275 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001276 maxslp = min_t(int, dtimper,
1277 latency / beaconint_us);
1278
Johannes Berg9ccebe62009-04-23 10:32:36 +02001279 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001280 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001281 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001282 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001283 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001284 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001285 }
Johannes Berg965beda2009-04-16 13:17:24 +02001286
1287 ieee80211_change_ps(local);
1288}
1289
Eliad Pellerab095872012-07-27 12:33:22 +03001290void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1291{
1292 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1293
1294 if (sdata->vif.bss_conf.ps != ps_allowed) {
1295 sdata->vif.bss_conf.ps = ps_allowed;
1296 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1297 }
1298}
1299
Johannes Berg965beda2009-04-16 13:17:24 +02001300void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1301{
1302 struct ieee80211_local *local =
1303 container_of(work, struct ieee80211_local,
1304 dynamic_ps_disable_work);
1305
1306 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1307 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1308 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1309 }
1310
1311 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001312 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001313 IEEE80211_QUEUE_STOP_REASON_PS);
1314}
1315
1316void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1317{
1318 struct ieee80211_local *local =
1319 container_of(work, struct ieee80211_local,
1320 dynamic_ps_enable_work);
1321 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001322 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301323 unsigned long flags;
1324 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001325
1326 /* can only happen when PS was just disabled anyway */
1327 if (!sdata)
1328 return;
1329
Christian Lamparter5e340692011-06-30 21:08:43 +02001330 ifmgd = &sdata->u.mgd;
1331
Johannes Berg965beda2009-04-16 13:17:24 +02001332 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1333 return;
1334
Johannes Berg09b85562013-02-06 23:07:41 +01001335 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001336 /* don't enter PS if TX frames are pending */
1337 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301338 mod_timer(&local->dynamic_ps_timer, jiffies +
1339 msecs_to_jiffies(
1340 local->hw.conf.dynamic_ps_timeout));
1341 return;
1342 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001343
1344 /*
1345 * transmission can be stopped by others which leads to
1346 * dynamic_ps_timer expiry. Postpone the ps timer if it
1347 * is not the actual idle state.
1348 */
1349 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1350 for (q = 0; q < local->hw.queues; q++) {
1351 if (local->queue_stop_reasons[q]) {
1352 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1353 flags);
1354 mod_timer(&local->dynamic_ps_timer, jiffies +
1355 msecs_to_jiffies(
1356 local->hw.conf.dynamic_ps_timeout));
1357 return;
1358 }
1359 }
1360 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301361 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301362
Vivek Natarajan375177b2010-02-09 14:50:28 +05301363 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301364 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001365 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301366 mod_timer(&local->dynamic_ps_timer, jiffies +
1367 msecs_to_jiffies(
1368 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001369 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301370 ieee80211_send_nullfunc(local, sdata, 1);
1371 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001372 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301373 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301374 }
1375
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001376 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1377 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301378 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1379 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1380 local->hw.conf.flags |= IEEE80211_CONF_PS;
1381 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1382 }
Johannes Berg965beda2009-04-16 13:17:24 +02001383}
1384
1385void ieee80211_dynamic_ps_timer(unsigned long data)
1386{
1387 struct ieee80211_local *local = (void *) data;
1388
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001389 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001390 return;
1391
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001392 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001393}
1394
Simon Wunderlich164eb022013-02-08 18:16:20 +01001395void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1396{
1397 struct delayed_work *delayed_work =
1398 container_of(work, struct delayed_work, work);
1399 struct ieee80211_sub_if_data *sdata =
1400 container_of(delayed_work, struct ieee80211_sub_if_data,
1401 dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001402 struct cfg80211_chan_def chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlich164eb022013-02-08 18:16:20 +01001403
1404 ieee80211_vif_release_channel(sdata);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001405 cfg80211_cac_event(sdata->dev, &chandef,
1406 NL80211_RADAR_CAC_FINISHED,
1407 GFP_KERNEL);
Simon Wunderlich164eb022013-02-08 18:16:20 +01001408}
1409
Johannes Berg60f8b39c2008-09-08 17:44:22 +02001410/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001411static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001412 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001413 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001414{
Jiri Bencf0706e82007-05-05 11:45:53 -07001415 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001416 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001417 size_t left;
1418 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001419 const u8 *pos;
1420 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001421
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001422 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001423 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001424
Johannes Berg32c50572012-03-28 11:04:29 +02001425 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001426 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001427
1428 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001429 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001430
Jiri Bencf0706e82007-05-05 11:45:53 -07001431 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001432 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001433
1434 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001435 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001436
Jiri Bencf0706e82007-05-05 11:45:53 -07001437 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001438 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001439 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001440 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001441
1442 pos = wmm_param + 8;
1443 left = wmm_param_len - 8;
1444
1445 memset(&params, 0, sizeof(params));
1446
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001447 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001448 for (; left >= 4; left -= 4, pos += 4) {
1449 int aci = (pos[0] >> 5) & 0x03;
1450 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001451 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001452 int queue;
1453
1454 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001455 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001456 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001457 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001458 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001459 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1460 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001461 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001462 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001463 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001464 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001465 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001466 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1467 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001468 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001469 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001470 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001471 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001472 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001473 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1474 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001475 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001476 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001477 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001478 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001479 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001480 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001481 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1482 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001483 break;
1484 }
1485
1486 params.aifs = pos[0] & 0x0f;
1487 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1488 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001489 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001490 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001491 params.uapsd = uapsd;
1492
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001493 mlme_dbg(sdata,
1494 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1495 queue, aci, acm,
1496 params.aifs, params.cw_min, params.cw_max,
1497 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001498 sdata->tx_conf[queue] = params;
1499 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001500 sdata_err(sdata,
1501 "failed to set TX queue parameters for queue %d\n",
1502 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001503 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001504
1505 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001506 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001507 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001508}
1509
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001510static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1511{
1512 lockdep_assert_held(&sdata->local->mtx);
1513
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001514 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001515 ieee80211_run_deferred_scan(sdata->local);
1516}
1517
1518static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1519{
1520 mutex_lock(&sdata->local->mtx);
1521 __ieee80211_stop_poll(sdata);
1522 mutex_unlock(&sdata->local->mtx);
1523}
1524
Johannes Berg7a5158e2008-10-08 10:59:33 +02001525static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1526 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001527{
Johannes Bergbda39332008-10-11 01:51:51 +02001528 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001529 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001530 bool use_protection;
1531 bool use_short_preamble;
1532 bool use_short_slot;
1533
1534 if (erp_valid) {
1535 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1536 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1537 } else {
1538 use_protection = false;
1539 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1540 }
1541
1542 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001543 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001544 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001545
Johannes Berg471b3ef2007-12-28 14:32:58 +01001546 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001547 bss_conf->use_cts_prot = use_protection;
1548 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001549 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001550
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001551 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001552 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001553 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001554 }
Daniel Draked9430a32007-07-27 15:43:24 +02001555
Johannes Berg7a5158e2008-10-08 10:59:33 +02001556 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001557 bss_conf->use_short_slot = use_short_slot;
1558 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001559 }
1560
1561 return changed;
1562}
1563
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001564static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001565 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001566 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001567{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001568 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001569 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001570 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001571
Johannes Bergae5eb022008-10-14 16:58:37 +02001572 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001573 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001574 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001575
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001576 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001577 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001578
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001579 sdata->u.mgd.associated = cbss;
1580 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001581
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001582 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1583
Johannes Berg488dd7b2012-10-29 20:08:01 +01001584 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001585 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001586
Johannes Berg9caf0362012-11-29 01:25:20 +01001587 rcu_read_lock();
1588 ies = rcu_dereference(cbss->ies);
1589 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001590 int ret;
1591
1592 ret = cfg80211_get_p2p_attr(
1593 ies->data, ies->len,
1594 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001595 (u8 *) &bss_conf->p2p_noa_attr,
1596 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001597 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001598 sdata->u.mgd.p2p_noa_index =
1599 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001600 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001601 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001602 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001603 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001604 }
1605
Johannes Bergb291ba12009-07-10 15:29:03 +02001606 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001607 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001608
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001609 ieee80211_led_assoc(local, 1);
1610
Alexander Bondar989c6502013-05-16 17:34:17 +03001611 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001612 /*
1613 * If the AP is buggy we may get here with no DTIM period
1614 * known, so assume it's 1 which is the only safe assumption
1615 * in that case, although if the TIM IE is broken powersave
1616 * probably just won't work at all.
1617 */
1618 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001619 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001620 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001621 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001622 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001623 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001624 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001625
Juuso Oikarinen68542962010-06-09 13:43:26 +03001626 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001627
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001628 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001629 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001630 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001631 bss_info_changed |= BSS_CHANGED_CQM;
1632
Juuso Oikarinen68542962010-06-09 13:43:26 +03001633 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001634 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001635 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001636
Johannes Bergae5eb022008-10-14 16:58:37 +02001637 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001638
Johannes Berg056508d2009-07-30 21:43:55 +02001639 mutex_lock(&local->iflist_mtx);
1640 ieee80211_recalc_ps(local, -1);
1641 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001642
Johannes Berg04ecd252012-09-11 14:34:12 +02001643 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001644 ieee80211_recalc_ps_vif(sdata);
1645
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001646 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001647}
1648
Jouni Malinene69e95d2010-03-29 23:29:31 -07001649static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001650 u16 stype, u16 reason, bool tx,
1651 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001652{
Johannes Berg46900292009-02-15 12:44:28 +01001653 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001654 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001655 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001656
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001657 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001658
Johannes Berg37ad3882012-02-24 13:50:54 +01001659 if (WARN_ON_ONCE(tx && !frame_buf))
1660 return;
1661
Johannes Bergb291ba12009-07-10 15:29:03 +02001662 if (WARN_ON(!ifmgd->associated))
1663 return;
1664
David Spinadel79543d82012-06-12 09:59:45 +03001665 ieee80211_stop_poll(sdata);
1666
Johannes Berg77fdaa12009-07-07 03:45:17 +02001667 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001668 netif_carrier_off(sdata->dev);
1669
Eliad Peller88bc40e2012-07-12 17:35:33 +03001670 /*
1671 * if we want to get out of ps before disassoc (why?) we have
1672 * to do it before sending disassoc, as otherwise the null-packet
1673 * won't be valid.
1674 */
1675 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1676 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1677 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1678 }
1679 local->ps_sdata = NULL;
1680
Eliad Pellerab095872012-07-27 12:33:22 +03001681 /* disable per-vif ps */
1682 ieee80211_recalc_ps_vif(sdata);
1683
Eliad Pellerf8239812012-06-27 14:18:22 +03001684 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1685 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001686 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001687
Johannes Berg37ad3882012-02-24 13:50:54 +01001688 /* deauthenticate/disassociate now */
1689 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001690 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1691 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001692
1693 /* flush out frame */
1694 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001695 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001696
Eliad Peller88a9e312012-06-01 11:14:03 +03001697 /* clear bssid only after building the needed mgmt frames */
1698 memset(ifmgd->bssid, 0, ETH_ALEN);
1699
Johannes Berg37ad3882012-02-24 13:50:54 +01001700 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001701 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001702
1703 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001704 changed |= ieee80211_reset_erp_info(sdata);
1705
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001706 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001707 changed |= BSS_CHANGED_ASSOC;
1708 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001709
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001710 ifmgd->p2p_noa_index = -1;
1711 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1712 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001713
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001714 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001715 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1716 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001717 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1718 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001719
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001720 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301721
Kalle Valo520eb822008-12-18 23:35:27 +02001722 del_timer_sync(&local->dynamic_ps_timer);
1723 cancel_work_sync(&local->dynamic_ps_enable_work);
1724
Juuso Oikarinen68542962010-06-09 13:43:26 +03001725 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001726 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001727 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001728
Johannes Berg3abead52012-03-02 15:56:59 +01001729 sdata->vif.bss_conf.qos = false;
1730 changed |= BSS_CHANGED_QOS;
1731
Johannes Berg0aaffa92010-05-05 15:28:27 +02001732 /* The BSSID (not really interesting) and HT changed */
1733 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001734 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001735
Johannes Berg3abead52012-03-02 15:56:59 +01001736 /* disassociated - set to defaults now */
1737 ieee80211_set_wmm_default(sdata, false);
1738
Johannes Bergb9dcf712010-08-27 12:35:54 +02001739 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1740 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1741 del_timer_sync(&sdata->u.mgd.timer);
1742 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001743
Johannes Berg826262c2012-12-10 16:38:14 +02001744 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001745 sdata->vif.bss_conf.beacon_rate = NULL;
1746
Alexander Bondar989c6502013-05-16 17:34:17 +03001747 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001748
Johannes Berg028e8da02012-11-26 11:57:41 +01001749 ifmgd->flags = 0;
1750 ieee80211_vif_release_channel(sdata);
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001751
1752 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001753}
Jiri Bencf0706e82007-05-05 11:45:53 -07001754
Kalle Valo3cf335d52009-03-22 21:57:06 +02001755void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1756 struct ieee80211_hdr *hdr)
1757{
1758 /*
1759 * We can postpone the mgd.timer whenever receiving unicast frames
1760 * from AP because we know that the connection is working both ways
1761 * at that time. But multicast frames (and hence also beacons) must
1762 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001763 * data idle periods for sending the periodic probe request to the
1764 * AP we're connected to.
Kalle Valo3cf335d52009-03-22 21:57:06 +02001765 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001766 if (is_multicast_ether_addr(hdr->addr1))
1767 return;
1768
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001769 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d52009-03-22 21:57:06 +02001770}
Jiri Bencf0706e82007-05-05 11:45:53 -07001771
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001772static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1773{
1774 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001775 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001776
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001777 mutex_lock(&local->mtx);
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001778 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
1779 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001780
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001781 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001782
1783 mutex_lock(&local->iflist_mtx);
1784 ieee80211_recalc_ps(local, -1);
1785 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001786
1787 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001788 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001789
1790 /*
1791 * We've received a probe response, but are not sure whether
1792 * we have or will be receiving any beacons or data, so let's
1793 * schedule the timers again, just in case.
1794 */
1795 ieee80211_sta_reset_beacon_monitor(sdata);
1796
1797 mod_timer(&ifmgd->conn_mon_timer,
1798 round_jiffies_up(jiffies +
1799 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001800out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001801 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001802}
1803
1804void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001805 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001806{
Felix Fietkau75706d02010-12-02 21:01:07 +01001807 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001808 return;
1809
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001810 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1811 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001812 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001813 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001814 else
1815 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001816 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001817 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001818 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001819
1820 if (ack)
1821 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001822}
1823
Maxim Levitskya43abf22009-07-31 18:54:12 +03001824static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1825{
1826 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1827 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001828 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001829 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001830
1831 /*
1832 * Try sending broadcast probe requests for the last three
1833 * probe requests after the first ones failed since some
1834 * buggy APs only support broadcast probe requests.
1835 */
1836 if (ifmgd->probe_send_count >= unicast_limit)
1837 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001838
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001839 /*
1840 * When the hardware reports an accurate Tx ACK status, it's
1841 * better to send a nullfunc frame instead of a probe request,
1842 * as it will kick us off the AP quickly if we aren't associated
1843 * anymore. The timeout will be reset if the frame is ACKed by
1844 * the AP.
1845 */
Soumik Das992e68b2012-05-20 15:31:13 +05301846 ifmgd->probe_send_count++;
1847
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001848 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1849 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001850 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001851 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001852 int ssid_len;
1853
Johannes Berg9caf0362012-11-29 01:25:20 +01001854 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001855 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001856 if (WARN_ON_ONCE(ssid == NULL))
1857 ssid_len = 0;
1858 else
1859 ssid_len = ssid[1];
1860
1861 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001862 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02001863 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01001864 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001865 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001866
Ben Greear180205b2011-02-04 15:30:24 -08001867 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001868 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301869 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01001870 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001871}
1872
Johannes Bergb291ba12009-07-10 15:29:03 +02001873static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1874 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001875{
Kalle Valo04de8382009-03-22 21:57:35 +02001876 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001877 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001878
Johannes Berg9607e6b662009-12-23 13:15:31 +01001879 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001880 return;
1881
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001882 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001883
1884 if (!ifmgd->associated)
1885 goto out;
1886
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001887 mutex_lock(&sdata->local->mtx);
1888
1889 if (sdata->local->tmp_channel || sdata->local->scanning) {
1890 mutex_unlock(&sdata->local->mtx);
1891 goto out;
1892 }
1893
Ben Greeara13fbe52013-03-25 11:19:35 -07001894 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001895 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07001896 "detected beacon loss from AP (missed %d beacons) - probing\n",
1897 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001898
Ben Greeara13fbe52013-03-25 11:19:35 -07001899 ieee80211_cqm_rssi_notify(&sdata->vif,
1900 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
1901 GFP_KERNEL);
1902 }
Kalle Valo04de8382009-03-22 21:57:35 +02001903
Johannes Bergb291ba12009-07-10 15:29:03 +02001904 /*
1905 * The driver/our work has already reported this event or the
1906 * connection monitoring has kicked in and we have already sent
1907 * a probe request. Or maybe the AP died and the driver keeps
1908 * reporting until we disassociate...
1909 *
1910 * In either case we have to ignore the current call to this
1911 * function (except for setting the correct probe reason bit)
1912 * because otherwise we would reset the timer every time and
1913 * never check whether we received a probe response!
1914 */
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001915 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Johannes Bergb291ba12009-07-10 15:29:03 +02001916 already = true;
1917
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001918 mutex_unlock(&sdata->local->mtx);
1919
Johannes Bergb291ba12009-07-10 15:29:03 +02001920 if (already)
1921 goto out;
1922
Johannes Berg4e751842009-06-10 15:16:52 +02001923 mutex_lock(&sdata->local->iflist_mtx);
1924 ieee80211_recalc_ps(sdata->local, -1);
1925 mutex_unlock(&sdata->local->iflist_mtx);
1926
Maxim Levitskya43abf22009-07-31 18:54:12 +03001927 ifmgd->probe_send_count = 0;
1928 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001929 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001930 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02001931}
1932
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001933struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1934 struct ieee80211_vif *vif)
1935{
1936 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1937 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001938 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001939 struct sk_buff *skb;
1940 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001941 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001942
1943 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1944 return NULL;
1945
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001946 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001947
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001948 if (ifmgd->associated)
1949 cbss = ifmgd->associated;
1950 else if (ifmgd->auth_data)
1951 cbss = ifmgd->auth_data->bss;
1952 else if (ifmgd->assoc_data)
1953 cbss = ifmgd->assoc_data->bss;
1954 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001955 return NULL;
1956
Johannes Berg9caf0362012-11-29 01:25:20 +01001957 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001958 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001959 if (WARN_ON_ONCE(ssid == NULL))
1960 ssid_len = 0;
1961 else
1962 ssid_len = ssid[1];
1963
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001964 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02001965 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02001966 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001967 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01001968 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001969
1970 return skb;
1971}
1972EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1973
Johannes Bergeef9e542013-01-29 13:09:34 +01001974static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001975{
1976 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001977 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001978
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001979 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001980 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001981 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001982 return;
1983 }
1984
Johannes Berg37ad3882012-02-24 13:50:54 +01001985 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1986 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01001987 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02001988 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Arik Nemtsov7578d572013-09-01 17:15:51 +03001989 sdata->vif.csa_active = false;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001990 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001991 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001992 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001993
Johannes Berg6ff57cf2013-05-16 00:55:00 +02001994 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
1995 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001996 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001997}
1998
Johannes Bergcc74c0c2012-08-01 16:49:34 +02001999static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02002000{
2001 struct ieee80211_sub_if_data *sdata =
2002 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002003 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002004 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2005 struct sta_info *sta;
2006
2007 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302008 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002009 sta = sta_info_get(sdata, ifmgd->bssid);
2010 if (sta)
2011 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302012 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002013 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002014
Johannes Berg682bd382013-01-29 13:13:50 +01002015 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002016 sdata_info(sdata, "Connection to AP %pM lost\n",
2017 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002018 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002019 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002020 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002021 }
2022}
2023
2024static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2025{
2026 struct ieee80211_sub_if_data *sdata =
2027 container_of(work, struct ieee80211_sub_if_data,
2028 u.mgd.csa_connection_drop_work);
2029
Johannes Bergeef9e542013-01-29 13:09:34 +01002030 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002031}
2032
Kalle Valo04de8382009-03-22 21:57:35 +02002033void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2034{
2035 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002036 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002037
Johannes Bergb5878a22010-04-07 16:48:40 +02002038 trace_api_beacon_loss(sdata);
2039
Johannes Berg682bd382013-01-29 13:13:50 +01002040 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002041 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002042}
2043EXPORT_SYMBOL(ieee80211_beacon_loss);
2044
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002045void ieee80211_connection_loss(struct ieee80211_vif *vif)
2046{
2047 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2048 struct ieee80211_hw *hw = &sdata->local->hw;
2049
Johannes Bergb5878a22010-04-07 16:48:40 +02002050 trace_api_connection_loss(sdata);
2051
Johannes Berg682bd382013-01-29 13:13:50 +01002052 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002053 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2054}
2055EXPORT_SYMBOL(ieee80211_connection_loss);
2056
2057
Johannes Berg66e67e42012-01-20 13:55:27 +01002058static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2059 bool assoc)
2060{
2061 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2062
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002063 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002064
Johannes Berg66e67e42012-01-20 13:55:27 +01002065 if (!assoc) {
2066 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2067
2068 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2069 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002070 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002071 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002072 }
2073
Johannes Berg5b112d32013-02-01 01:49:58 +01002074 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002075 kfree(auth_data);
2076 sdata->u.mgd.auth_data = NULL;
2077}
2078
2079static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2080 struct ieee80211_mgmt *mgmt, size_t len)
2081{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002082 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002083 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2084 u8 *pos;
2085 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002086 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002087
2088 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002089 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002090 if (!elems.challenge)
2091 return;
2092 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002093 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002094 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2095 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2096 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002097 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002098 elems.challenge - 2, elems.challenge_len + 2,
2099 auth_data->bss->bssid, auth_data->bss->bssid,
2100 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002101 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002102}
2103
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002104static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2105 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002106{
2107 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2108 u8 bssid[ETH_ALEN];
2109 u16 auth_alg, auth_transaction, status_code;
2110 struct sta_info *sta;
2111
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002112 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002113
2114 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002115 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002116
2117 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002118 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002119
2120 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2121
Joe Perchesb203ca32012-05-08 18:56:52 +00002122 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002123 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002124
2125 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2126 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2127 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2128
2129 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002130 auth_transaction != ifmgd->auth_data->expected_transaction) {
2131 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2132 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2133 auth_transaction,
2134 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002135 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002136 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002137
2138 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002139 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2140 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002141 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002142 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002143 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002144 }
2145
2146 switch (ifmgd->auth_data->algorithm) {
2147 case WLAN_AUTH_OPEN:
2148 case WLAN_AUTH_LEAP:
2149 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002150 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002151 break;
2152 case WLAN_AUTH_SHARED_KEY:
2153 if (ifmgd->auth_data->expected_transaction != 4) {
2154 ieee80211_auth_challenge(sdata, mgmt, len);
2155 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002156 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002157 }
2158 break;
2159 default:
2160 WARN_ONCE(1, "invalid auth alg %d",
2161 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002162 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002163 }
2164
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002165 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002166 ifmgd->auth_data->done = true;
2167 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002168 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002169 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002170
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002171 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2172 ifmgd->auth_data->expected_transaction != 2) {
2173 /*
2174 * Report auth frame to user space for processing since another
2175 * round of Authentication frames is still needed.
2176 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002177 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002178 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002179 }
2180
Johannes Berg66e67e42012-01-20 13:55:27 +01002181 /* move station state to auth */
2182 mutex_lock(&sdata->local->sta_mtx);
2183 sta = sta_info_get(sdata, bssid);
2184 if (!sta) {
2185 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2186 goto out_err;
2187 }
2188 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002189 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002190 goto out_err;
2191 }
2192 mutex_unlock(&sdata->local->sta_mtx);
2193
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002194 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002195 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002196 out_err:
2197 mutex_unlock(&sdata->local->sta_mtx);
2198 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002199}
2200
2201
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002202static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2203 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002204{
Johannes Berg46900292009-02-15 12:44:28 +01002205 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002206 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002207 u16 reason_code;
2208
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002209 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002210
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002211 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002212 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002213
Johannes Berg66e67e42012-01-20 13:55:27 +01002214 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002215 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002216 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002217
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002218 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002219
2220 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2221
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002222 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2223 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002224
Johannes Berg37ad3882012-02-24 13:50:54 +01002225 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2226
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002227 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002228}
2229
2230
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002231static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2232 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002233{
Johannes Berg46900292009-02-15 12:44:28 +01002234 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002235 u16 reason_code;
2236
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002237 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002238
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002239 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002240 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002241
Johannes Berg66e67e42012-01-20 13:55:27 +01002242 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002243 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002244 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002245
2246 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2247
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002248 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2249 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002250
Johannes Berg37ad3882012-02-24 13:50:54 +01002251 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2252
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002253 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002254}
2255
Christian Lamparterc74d0842011-10-15 00:14:49 +02002256static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2257 u8 *supp_rates, unsigned int supp_rates_len,
2258 u32 *rates, u32 *basic_rates,
2259 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002260 int *min_rate, int *min_rate_index,
2261 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002262{
2263 int i, j;
2264
2265 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002266 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002267 bool is_basic = !!(supp_rates[i] & 0x80);
2268
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002269 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002270 *have_higher_than_11mbit = true;
2271
2272 /*
2273 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2274 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2275 *
2276 * Note: Even through the membership selector and the basic
2277 * rate flag share the same bit, they are not exactly
2278 * the same.
2279 */
2280 if (!!(supp_rates[i] & 0x80) &&
2281 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2282 continue;
2283
2284 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002285 struct ieee80211_rate *br;
2286 int brate;
2287
2288 br = &sband->bitrates[j];
2289 if ((rate_flags & br->flags) != rate_flags)
2290 continue;
2291
2292 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2293 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002294 *rates |= BIT(j);
2295 if (is_basic)
2296 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002297 if ((rate * 5) < *min_rate) {
2298 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002299 *min_rate_index = j;
2300 }
2301 break;
2302 }
2303 }
2304 }
2305}
Jiri Bencf0706e82007-05-05 11:45:53 -07002306
Johannes Berg66e67e42012-01-20 13:55:27 +01002307static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2308 bool assoc)
2309{
2310 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2311
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002312 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002313
Johannes Berg66e67e42012-01-20 13:55:27 +01002314 if (!assoc) {
2315 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2316
2317 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2318 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002319 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002320 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002321 }
2322
2323 kfree(assoc_data);
2324 sdata->u.mgd.assoc_data = NULL;
2325}
2326
2327static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2328 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002329 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002330{
Johannes Berg46900292009-02-15 12:44:28 +01002331 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002332 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002333 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002334 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002335 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002336 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002337 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002338 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002339 const struct cfg80211_bss_ies *bss_ies = NULL;
2340 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002341 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002342 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002343 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002344
Johannes Bergaf6b6372009-12-23 13:15:35 +01002345 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002346
Jiri Bencf0706e82007-05-05 11:45:53 -07002347 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002348 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002349
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002350 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002351 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2352 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002353 aid &= ~(BIT(15) | BIT(14));
2354
Johannes Berg05cb9102011-10-28 11:59:47 +02002355 ifmgd->broken_ap = false;
2356
2357 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002358 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2359 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002360 aid = 0;
2361 ifmgd->broken_ap = true;
2362 }
2363
Johannes Bergaf6b6372009-12-23 13:15:35 +01002364 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002365 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002366
Jiri Bencf0706e82007-05-05 11:45:53 -07002367 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002368 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002369 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002370 }
2371
Johannes Berg46900292009-02-15 12:44:28 +01002372 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002373
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002374 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002375 * Some APs are erroneously not including some information in their
2376 * (re)association response frames. Try to recover by using the data
2377 * from the beacon or probe response. This seems to afflict mobile
2378 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2379 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2380 */
2381 if ((assoc_data->wmm && !elems.wmm_param) ||
2382 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2383 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2384 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2385 (!elems.vht_cap_elem || !elems.vht_operation))) {
2386 const struct cfg80211_bss_ies *ies;
2387 struct ieee802_11_elems bss_elems;
2388
2389 rcu_read_lock();
2390 ies = rcu_dereference(cbss->ies);
2391 if (ies)
2392 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2393 GFP_ATOMIC);
2394 rcu_read_unlock();
2395 if (!bss_ies)
2396 return false;
2397
2398 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2399 false, &bss_elems);
2400 if (assoc_data->wmm &&
2401 !elems.wmm_param && bss_elems.wmm_param) {
2402 elems.wmm_param = bss_elems.wmm_param;
2403 sdata_info(sdata,
2404 "AP bug: WMM param missing from AssocResp\n");
2405 }
2406
2407 /*
2408 * Also check if we requested HT/VHT, otherwise the AP doesn't
2409 * have to include the IEs in the (re)association response.
2410 */
2411 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2412 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2413 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2414 sdata_info(sdata,
2415 "AP bug: HT capability missing from AssocResp\n");
2416 }
2417 if (!elems.ht_operation && bss_elems.ht_operation &&
2418 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2419 elems.ht_operation = bss_elems.ht_operation;
2420 sdata_info(sdata,
2421 "AP bug: HT operation missing from AssocResp\n");
2422 }
2423 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2424 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2425 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2426 sdata_info(sdata,
2427 "AP bug: VHT capa missing from AssocResp\n");
2428 }
2429 if (!elems.vht_operation && bss_elems.vht_operation &&
2430 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2431 elems.vht_operation = bss_elems.vht_operation;
2432 sdata_info(sdata,
2433 "AP bug: VHT operation missing from AssocResp\n");
2434 }
2435 }
2436
2437 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002438 * We previously checked these in the beacon/probe response, so
2439 * they should be present here. This is just a safety net.
2440 */
2441 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2442 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2443 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002444 "HT AP is missing WMM params or HT capability/operation\n");
2445 ret = false;
2446 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002447 }
2448
2449 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2450 (!elems.vht_cap_elem || !elems.vht_operation)) {
2451 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002452 "VHT AP is missing VHT capability/operation\n");
2453 ret = false;
2454 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002455 }
2456
Guy Eilam2a33bee2011-08-17 15:18:15 +03002457 mutex_lock(&sdata->local->sta_mtx);
2458 /*
2459 * station info was already allocated and inserted before
2460 * the association and should be available to us
2461 */
Johannes Berg7852e362012-01-20 13:55:24 +01002462 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002463 if (WARN_ON(!sta)) {
2464 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002465 ret = false;
2466 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002467 }
2468
Johannes Berg55de9082012-07-26 17:24:39 +02002469 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002470
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002471 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002472 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002473 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002474 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002475
Mahesh Palivela818255e2012-10-10 11:33:04 +00002476 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2477 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002478 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002479
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002480 /*
2481 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2482 * in their association response, so ignore that data for our own
2483 * configuration. If it changed since the last beacon, we'll get the
2484 * next beacon and update then.
2485 */
Johannes Berg11289582013-02-07 17:36:12 +01002486
Johannes Bergbee7f5862013-02-07 22:24:55 +01002487 /*
2488 * If an operating mode notification IE is present, override the
2489 * NSS calculation (that would be done in rate_control_rate_init())
2490 * and use the # of streams from that element.
2491 */
2492 if (elems.opmode_notif &&
2493 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2494 u8 nss;
2495
2496 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2497 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2498 nss += 1;
2499 sta->sta.rx_nss = nss;
2500 }
2501
Johannes Berg4b7679a2008-09-18 18:14:18 +02002502 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002503
Johannes Berg46900292009-02-15 12:44:28 +01002504 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002505 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002506
Johannes Bergddf4ac52008-10-22 11:41:38 +02002507 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002508 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002509
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002510 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002511 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2512 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2513 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002514 sdata_info(sdata,
2515 "failed to move station %pM to desired state\n",
2516 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002517 WARN_ON(__sta_info_destroy(sta));
2518 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002519 ret = false;
2520 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002521 }
2522
Johannes Berg7852e362012-01-20 13:55:24 +01002523 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002524
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002525 /*
2526 * Always handle WMM once after association regardless
2527 * of the first value the AP uses. Setting -1 here has
2528 * that effect because the AP values is an unsigned
2529 * 4-bit value.
2530 */
2531 ifmgd->wmm_last_param_set = -1;
2532
Johannes Berg095d81c2013-10-15 12:25:07 +02002533 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) && elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002534 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002535 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002536 else
Johannes Berg3abead52012-03-02 15:56:59 +01002537 ieee80211_set_wmm_default(sdata, false);
2538 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002539
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002540 /* set AID and assoc capability,
2541 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002542 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002543 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002544 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002545
Kalle Valo15b7b062009-03-22 21:57:14 +02002546 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002547 * If we're using 4-addr mode, let the AP know that we're
2548 * doing so, so that it can create the STA VLAN on its side
2549 */
2550 if (ifmgd->use_4addr)
2551 ieee80211_send_4addr_nullfunc(local, sdata);
2552
2553 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002554 * Start timer to probe the connection to the AP now.
2555 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002556 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002557 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002558 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002559
Johannes Berg35d865a2013-05-28 10:54:03 +02002560 ret = true;
2561 out:
2562 kfree(bss_ies);
2563 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002564}
2565
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002566static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2567 struct ieee80211_mgmt *mgmt,
2568 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002569{
2570 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2571 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2572 u16 capab_info, status_code, aid;
2573 struct ieee802_11_elems elems;
2574 u8 *pos;
2575 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002576 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002577
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002578 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002579
2580 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002581 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002582 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002583 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002584
2585 /*
2586 * AssocResp and ReassocResp have identical structure, so process both
2587 * of them in this function.
2588 */
2589
2590 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002591 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002592
2593 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2594 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2595 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2596 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2597
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002598 sdata_info(sdata,
2599 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2600 reassoc ? "Rea" : "A", mgmt->sa,
2601 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002602
2603 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002604 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002605
2606 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002607 elems.timeout_int &&
2608 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002609 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002610 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002611 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002612 sdata_info(sdata,
2613 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2614 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002615 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002616 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002617 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002618 run_again(sdata, assoc_data->timeout);
2619 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002620 }
2621
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002622 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002623
2624 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002625 sdata_info(sdata, "%pM denied association (code=%d)\n",
2626 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002627 ieee80211_destroy_assoc_data(sdata, false);
2628 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002629 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002630 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002631 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002632 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002633 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002634 }
John W. Linville635d9992012-07-09 16:34:34 -04002635 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002636
2637 /*
2638 * destroy assoc_data afterwards, as otherwise an idle
2639 * recalc after assoc_data is NULL but before associated
2640 * is set can cause the interface to go idle
2641 */
2642 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002643 }
2644
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002645 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002646}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002647
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002648static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002649 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002650 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002651 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002652{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002653 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002654 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002655 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002656 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002657
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002658 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002659
Johannes Berg1cd8e882013-03-27 14:30:12 +01002660 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002661 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2662 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002663 else
2664 freq = rx_status->freq;
2665
2666 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2667
2668 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2669 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002670
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002671 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002672 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002673 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002674 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002675 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2676 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002677}
2678
2679
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002680static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002681 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002682{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002683 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002684 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002685 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2686 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002687 struct ieee802_11_elems elems;
2688
Kalle Valo15b7b062009-03-22 21:57:14 +02002689 ifmgd = &sdata->u.mgd;
2690
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002691 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002692
Joe Perchesb203ca32012-05-08 18:56:52 +00002693 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002694 return; /* ignore ProbeResp to foreign address */
2695
Ester Kummerae6a44e2008-06-27 18:54:48 +03002696 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2697 if (baselen > len)
2698 return;
2699
2700 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002701 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002702
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002703 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002704
Johannes Berg77fdaa12009-07-07 03:45:17 +02002705 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002706 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002707 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002708
2709 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002710 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002711 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002712 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002713 ifmgd->auth_data->tries = 0;
2714 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002715 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002716 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002717 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002718}
2719
Johannes Bergd91f36d2009-04-16 13:17:26 +02002720/*
2721 * This is the canonical list of information elements we care about,
2722 * the filter code also gives us all changes to the Microsoft OUI
2723 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2724 *
2725 * We implement beacon filtering in software since that means we can
2726 * avoid processing the frame here and in cfg80211, and userspace
2727 * will not be able to tell whether the hardware supports it or not.
2728 *
2729 * XXX: This list needs to be dynamic -- userspace needs to be able to
2730 * add items it requires. It also needs to be able to tell us to
2731 * look out for other vendor IEs.
2732 */
2733static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002734 (1ULL << WLAN_EID_COUNTRY) |
2735 (1ULL << WLAN_EID_ERP_INFO) |
2736 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2737 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2738 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002739 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002740
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002741static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2742 struct ieee80211_mgmt *mgmt, size_t len,
2743 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002744{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002745 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002746 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002747 size_t baselen;
2748 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002749 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002750 struct ieee80211_chanctx_conf *chanctx_conf;
2751 struct ieee80211_channel *chan;
Johannes Bergbee7f5862013-02-07 22:24:55 +01002752 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002753 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002754 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002755 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002756 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002757 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002758 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002759
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002760 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002761
Ester Kummerae6a44e2008-06-27 18:54:48 +03002762 /* Process beacon from the current BSS */
2763 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2764 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002765 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002766
Johannes Berg55de9082012-07-26 17:24:39 +02002767 rcu_read_lock();
2768 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2769 if (!chanctx_conf) {
2770 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002771 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002772 }
2773
Johannes Berg4bf88532012-11-09 11:39:59 +01002774 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002775 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002776 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002777 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002778 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002779 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002780
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002781 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002782 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002783 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002784 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002785
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002786 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002787 if (elems.tim && !elems.parse_error) {
2788 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2789 ifmgd->dtim_period = tim_ie->dtim_period;
2790 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002791 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002792 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002793 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2794 sdata->vif.bss_conf.sync_tsf =
2795 le64_to_cpu(mgmt->u.beacon.timestamp);
2796 sdata->vif.bss_conf.sync_device_ts =
2797 rx_status->device_timestamp;
2798 if (elems.tim)
2799 sdata->vif.bss_conf.sync_dtim_count =
2800 elems.tim->dtim_count;
2801 else
2802 sdata->vif.bss_conf.sync_dtim_count = 0;
2803 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002804 /* continue assoc process */
2805 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002806 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002807 run_again(sdata, ifmgd->assoc_data->timeout);
2808 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002809 }
2810
2811 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002812 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002813 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002814 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002815
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002816 /* Track average RSSI from the Beacon frames of the current AP */
2817 ifmgd->last_beacon_signal = rx_status->signal;
2818 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2819 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002820 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002821 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002822 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002823 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002824 } else {
2825 ifmgd->ave_beacon_signal =
2826 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2827 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2828 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002829 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002830 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002831
2832 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2833 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2834 int sig = ifmgd->ave_beacon_signal;
2835 int last_sig = ifmgd->last_ave_beacon_signal;
2836
2837 /*
2838 * if signal crosses either of the boundaries, invoke callback
2839 * with appropriate parameters
2840 */
2841 if (sig > ifmgd->rssi_max_thold &&
2842 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2843 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002844 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002845 } else if (sig < ifmgd->rssi_min_thold &&
2846 (last_sig >= ifmgd->rssi_max_thold ||
2847 last_sig == 0)) {
2848 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002849 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002850 }
2851 }
2852
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002853 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002854 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002855 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002856 int sig = ifmgd->ave_beacon_signal / 16;
2857 int last_event = ifmgd->last_cqm_event_signal;
2858 int thold = bss_conf->cqm_rssi_thold;
2859 int hyst = bss_conf->cqm_rssi_hyst;
2860 if (sig < thold &&
2861 (last_event == 0 || sig < last_event - hyst)) {
2862 ifmgd->last_cqm_event_signal = sig;
2863 ieee80211_cqm_rssi_notify(
2864 &sdata->vif,
2865 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2866 GFP_KERNEL);
2867 } else if (sig > thold &&
2868 (last_event == 0 || sig > last_event + hyst)) {
2869 ifmgd->last_cqm_event_signal = sig;
2870 ieee80211_cqm_rssi_notify(
2871 &sdata->vif,
2872 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2873 GFP_KERNEL);
2874 }
2875 }
2876
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002877 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002878 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01002879 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002880 ieee80211_reset_ap_probe(sdata);
Jouni Malinen92778182009-05-14 21:15:36 +03002881 }
2882
Johannes Bergb291ba12009-07-10 15:29:03 +02002883 /*
2884 * Push the beacon loss detection into the future since
2885 * we are processing a beacon from the AP just now.
2886 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002887 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002888
Johannes Bergd91f36d2009-04-16 13:17:26 +02002889 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2890 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002891 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02002892 care_about_ies, ncrc);
2893
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302894 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02002895 bool directed_tim = ieee80211_check_tim(elems.tim,
2896 elems.tim_len,
2897 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02002898 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002899 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002900 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2901 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2902 ieee80211_hw_config(local,
2903 IEEE80211_CONF_CHANGE_PS);
2904 }
Kalle Valo572e0012009-02-10 17:09:31 +02002905 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302906 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002907 local->pspolling = true;
2908
2909 /*
2910 * Here is assumed that the driver will be
2911 * able to send ps-poll frame and receive a
2912 * response even though power save mode is
2913 * enabled, but some drivers might require
2914 * to disable power save here. This needs
2915 * to be investigated.
2916 */
2917 ieee80211_send_pspoll(local, sdata);
2918 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002919 }
2920 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002921
Johannes Berg488dd7b2012-10-29 20:08:01 +01002922 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002923 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01002924 int ret;
2925
2926 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2927 len - baselen,
2928 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01002929 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002930 if (ret >= 2) {
2931 if (sdata->u.mgd.p2p_noa_index != noa.index) {
2932 /* valid noa_attr and index changed */
2933 sdata->u.mgd.p2p_noa_index = noa.index;
2934 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
2935 changed |= BSS_CHANGED_P2P_PS;
2936 /*
2937 * make sure we update all information, the CRC
2938 * mechanism doesn't look at P2P attributes.
2939 */
2940 ifmgd->beacon_crc_valid = false;
2941 }
2942 } else if (sdata->u.mgd.p2p_noa_index != -1) {
2943 /* noa_attr not found and we had valid noa_attr before */
2944 sdata->u.mgd.p2p_noa_index = -1;
2945 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01002946 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01002947 ifmgd->beacon_crc_valid = false;
2948 }
2949 }
2950
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002951 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002952 return;
Jouni Malinen30196672009-05-19 17:01:43 +03002953 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002954 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03002955
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002956 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02002957
Johannes Bergd70b7612013-08-23 15:48:48 +02002958 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2959 &elems, true);
2960
Johannes Berg095d81c2013-10-15 12:25:07 +02002961 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) &&
2962 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Johannes Berg7d257452012-07-06 17:37:43 +02002963 elems.wmm_param_len))
2964 changed |= BSS_CHANGED_QOS;
2965
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002966 /*
2967 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01002968 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002969 */
Alexander Bondar989c6502013-05-16 17:34:17 +03002970 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002971 /* a few bogus AP send dtim_period = 0 or no TIM IE */
2972 if (elems.tim)
2973 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
2974 else
2975 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01002976
2977 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2978 sdata->vif.bss_conf.sync_tsf =
2979 le64_to_cpu(mgmt->u.beacon.timestamp);
2980 sdata->vif.bss_conf.sync_device_ts =
2981 rx_status->device_timestamp;
2982 if (elems.tim)
2983 sdata->vif.bss_conf.sync_dtim_count =
2984 elems.tim->dtim_count;
2985 else
2986 sdata->vif.bss_conf.sync_dtim_count = 0;
2987 }
2988
Alexander Bondar989c6502013-05-16 17:34:17 +03002989 changed |= BSS_CHANGED_BEACON_INFO;
2990 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03002991
2992 mutex_lock(&local->iflist_mtx);
2993 ieee80211_recalc_ps(local, -1);
2994 mutex_unlock(&local->iflist_mtx);
2995
Alexander Bondarce857882013-05-06 17:17:04 +03002996 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002997 }
2998
Johannes Berg1946bed2013-03-27 14:31:53 +01002999 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02003000 erp_valid = true;
3001 erp_value = elems.erp_info[0];
3002 } else {
3003 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003004 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003005 changed |= ieee80211_handle_bss_capability(sdata,
3006 le16_to_cpu(mgmt->u.beacon.capab_info),
3007 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003008
Johannes Berg11289582013-02-07 17:36:12 +01003009 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f5862013-02-07 22:24:55 +01003010 sta = sta_info_get(sdata, bssid);
3011
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003012 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3013 elems.vht_operation, bssid, &changed)) {
3014 mutex_unlock(&local->sta_mtx);
3015 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3016 WLAN_REASON_DEAUTH_LEAVING,
3017 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003018 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3019 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003020 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003021 }
Johannes Bergbee7f5862013-02-07 22:24:55 +01003022
3023 if (sta && elems.opmode_notif)
3024 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3025 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003026 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003027
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003028 if (elems.country_elem && elems.pwr_constr_elem &&
3029 mgmt->u.probe_resp.capab_info &
3030 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003031 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3032 elems.country_elem,
3033 elems.country_elem_len,
3034 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003035
Johannes Berg471b3ef2007-12-28 14:32:58 +01003036 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003037}
3038
Johannes Berg1fa57d02010-06-10 10:21:32 +02003039void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3040 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003041{
3042 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003043 struct ieee80211_mgmt *mgmt;
3044 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003045 struct ieee802_11_elems elems;
3046 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003047
Jiri Bencf0706e82007-05-05 11:45:53 -07003048 rx_status = (struct ieee80211_rx_status *) skb->cb;
3049 mgmt = (struct ieee80211_mgmt *) skb->data;
3050 fc = le16_to_cpu(mgmt->frame_control);
3051
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003052 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003053
Johannes Berg66e67e42012-01-20 13:55:27 +01003054 switch (fc & IEEE80211_FCTL_STYPE) {
3055 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003056 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003057 break;
3058 case IEEE80211_STYPE_PROBE_RESP:
3059 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3060 break;
3061 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003062 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003063 break;
3064 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003065 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003066 break;
3067 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003068 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003069 break;
3070 case IEEE80211_STYPE_ASSOC_RESP:
3071 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003072 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003073 break;
3074 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003075 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003076 ies_len = skb->len -
3077 offsetof(struct ieee80211_mgmt,
3078 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003079
3080 if (ies_len < 0)
3081 break;
3082
3083 ieee802_11_parse_elems(
3084 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003085 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003086
3087 if (elems.parse_error)
3088 break;
3089
Johannes Berg66e67e42012-01-20 13:55:27 +01003090 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003091 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003092 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003093 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3094 ies_len = skb->len -
3095 offsetof(struct ieee80211_mgmt,
3096 u.action.u.ext_chan_switch.variable);
3097
3098 if (ies_len < 0)
3099 break;
3100
3101 ieee802_11_parse_elems(
3102 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003103 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003104
3105 if (elems.parse_error)
3106 break;
3107
3108 /* for the handling code pretend this was also an IE */
3109 elems.ext_chansw_ie =
3110 &mgmt->u.action.u.ext_chan_switch.data;
3111
3112 ieee80211_sta_process_chanswitch(sdata,
3113 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003114 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003115 }
Johannes Berg37799e52013-03-26 14:02:26 +01003116 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003117 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003118 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003119}
3120
Johannes Berg9c6bd792008-09-11 00:01:52 +02003121static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003122{
3123 struct ieee80211_sub_if_data *sdata =
3124 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003125
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003126 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003127}
3128
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003129static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003130 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003131{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003132 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003133
Johannes Berg37ad3882012-02-24 13:50:54 +01003134 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003135 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003136
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003137 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3138 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003139}
3140
Johannes Berg66e67e42012-01-20 13:55:27 +01003141static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3142{
3143 struct ieee80211_local *local = sdata->local;
3144 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3145 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003146 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003147
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003148 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003149
3150 if (WARN_ON_ONCE(!auth_data))
3151 return -EINVAL;
3152
Johannes Berg66e67e42012-01-20 13:55:27 +01003153 auth_data->tries++;
3154
3155 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003156 sdata_info(sdata, "authentication with %pM timed out\n",
3157 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003158
3159 /*
3160 * Most likely AP is not in the range so remove the
3161 * bss struct for that AP.
3162 */
3163 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3164
3165 return -ETIMEDOUT;
3166 }
3167
Johannes Berga1845fc2012-06-27 13:18:36 +02003168 drv_mgd_prepare_tx(local, sdata);
3169
Johannes Berg66e67e42012-01-20 13:55:27 +01003170 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003171 u16 trans = 1;
3172 u16 status = 0;
3173
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003174 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3175 auth_data->bss->bssid, auth_data->tries,
3176 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003177
3178 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003179
3180 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3181 trans = auth_data->sae_trans;
3182 status = auth_data->sae_status;
3183 auth_data->expected_transaction = trans;
3184 }
3185
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003186 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3187 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3188 IEEE80211_TX_INTFL_MLME_CONN_TX;
3189
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003190 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3191 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003192 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003193 auth_data->bss->bssid, NULL, 0, 0,
3194 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003195 } else {
3196 const u8 *ssidie;
3197
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003198 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3199 auth_data->bss->bssid, auth_data->tries,
3200 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003201
Johannes Berg9caf0362012-11-29 01:25:20 +01003202 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003203 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003204 if (!ssidie) {
3205 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003206 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003207 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003208 /*
3209 * Direct probe is sent to broadcast address as some APs
3210 * will not answer to direct packet in unassociated state.
3211 */
3212 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003213 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003214 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003215 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003216 }
3217
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003218 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003219 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003220 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003221 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003222 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003223 auth_data->timeout =
3224 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3225 auth_data->timeout_started = true;
3226 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003227 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003228
3229 return 0;
3230}
3231
3232static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3233{
3234 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3235 struct ieee80211_local *local = sdata->local;
3236
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003237 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003238
Johannes Berg66e67e42012-01-20 13:55:27 +01003239 assoc_data->tries++;
3240 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003241 sdata_info(sdata, "association with %pM timed out\n",
3242 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003243
3244 /*
3245 * Most likely AP is not in the range so remove the
3246 * bss struct for that AP.
3247 */
3248 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3249
3250 return -ETIMEDOUT;
3251 }
3252
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003253 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3254 assoc_data->bss->bssid, assoc_data->tries,
3255 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003256 ieee80211_send_assoc(sdata);
3257
Johannes Berg1672c0e32013-01-29 15:02:27 +01003258 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3259 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003260 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003261 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003262 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003263 assoc_data->timeout =
3264 round_jiffies_up(jiffies +
3265 IEEE80211_ASSOC_TIMEOUT_LONG);
3266 assoc_data->timeout_started = true;
3267 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003268 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003269
3270 return 0;
3271}
3272
Johannes Berg1672c0e32013-01-29 15:02:27 +01003273void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3274 __le16 fc, bool acked)
3275{
3276 struct ieee80211_local *local = sdata->local;
3277
3278 sdata->u.mgd.status_fc = fc;
3279 sdata->u.mgd.status_acked = acked;
3280 sdata->u.mgd.status_received = true;
3281
3282 ieee80211_queue_work(&local->hw, &sdata->work);
3283}
3284
Johannes Berg1fa57d02010-06-10 10:21:32 +02003285void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003286{
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003287 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003288 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003289
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003290 sdata_lock(sdata);
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003291
Johannes Berg1672c0e32013-01-29 15:02:27 +01003292 if (ifmgd->status_received) {
3293 __le16 fc = ifmgd->status_fc;
3294 bool status_acked = ifmgd->status_acked;
3295
3296 ifmgd->status_received = false;
3297 if (ifmgd->auth_data &&
3298 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3299 if (status_acked) {
3300 ifmgd->auth_data->timeout =
3301 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003302 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003303 } else {
3304 ifmgd->auth_data->timeout = jiffies - 1;
3305 }
Johannes Berg89afe612013-02-13 15:39:57 +01003306 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003307 } else if (ifmgd->assoc_data &&
3308 (ieee80211_is_assoc_req(fc) ||
3309 ieee80211_is_reassoc_req(fc))) {
3310 if (status_acked) {
3311 ifmgd->assoc_data->timeout =
3312 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003313 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003314 } else {
3315 ifmgd->assoc_data->timeout = jiffies - 1;
3316 }
Johannes Berg89afe612013-02-13 15:39:57 +01003317 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003318 }
3319 }
3320
Johannes Berg89afe612013-02-13 15:39:57 +01003321 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003322 time_after(jiffies, ifmgd->auth_data->timeout)) {
3323 if (ifmgd->auth_data->done) {
3324 /*
3325 * ok ... we waited for assoc but userspace didn't,
3326 * so let's just kill the auth data
3327 */
3328 ieee80211_destroy_auth_data(sdata, false);
3329 } else if (ieee80211_probe_auth(sdata)) {
3330 u8 bssid[ETH_ALEN];
3331
3332 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3333
3334 ieee80211_destroy_auth_data(sdata, false);
3335
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003336 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003337 }
Johannes Berg89afe612013-02-13 15:39:57 +01003338 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003339 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003340
Johannes Berg89afe612013-02-13 15:39:57 +01003341 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003342 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003343 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003344 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003345 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003346
3347 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003348 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003349 }
Johannes Berg89afe612013-02-13 15:39:57 +01003350 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003351 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003352
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02003353 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
Johannes Bergb291ba12009-07-10 15:29:03 +02003354 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003355 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003356 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003357
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003358 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003359
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003360 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003361 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003362 else
Ben Greear180205b2011-02-04 15:30:24 -08003363 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003364
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003365 /* ACK received for nullfunc probing frame */
3366 if (!ifmgd->probe_send_count)
3367 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003368 else if (ifmgd->nullfunc_failed) {
3369 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003370 mlme_dbg(sdata,
3371 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3372 bssid, ifmgd->probe_send_count,
3373 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003374 ieee80211_mgd_probe_ap_send(sdata);
3375 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003376 mlme_dbg(sdata,
3377 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3378 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003379 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003380 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3381 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003382 }
3383 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003384 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003385 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003386 mlme_dbg(sdata,
3387 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3388 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003389 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003390 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003391 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003392 mlme_dbg(sdata,
3393 "No probe response from AP %pM after %dms, try %d/%i\n",
3394 bssid, probe_wait_ms,
3395 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003396 ieee80211_mgd_probe_ap_send(sdata);
3397 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003398 /*
3399 * We actually lost the connection ... or did we?
3400 * Let's make sure!
3401 */
Ben Greearb38afa82010-10-07 16:12:06 -07003402 wiphy_debug(local->hw.wiphy,
3403 "%s: No probe response from AP %pM"
3404 " after %dms, disconnecting.\n",
3405 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003406 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003407
Johannes Berg95acac62011-07-12 12:30:59 +02003408 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003409 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003410 }
3411 }
3412
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003413 sdata_unlock(sdata);
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003414}
Johannes Berg0a51b272008-09-08 17:44:25 +02003415
Johannes Bergb291ba12009-07-10 15:29:03 +02003416static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3417{
3418 struct ieee80211_sub_if_data *sdata =
3419 (struct ieee80211_sub_if_data *) data;
3420 struct ieee80211_local *local = sdata->local;
3421
3422 if (local->quiescing)
3423 return;
3424
Johannes Berg682bd382013-01-29 13:13:50 +01003425 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003426 ieee80211_queue_work(&sdata->local->hw,
3427 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003428}
3429
3430static void ieee80211_sta_conn_mon_timer(unsigned long data)
3431{
3432 struct ieee80211_sub_if_data *sdata =
3433 (struct ieee80211_sub_if_data *) data;
3434 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3435 struct ieee80211_local *local = sdata->local;
3436
3437 if (local->quiescing)
3438 return;
3439
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003440 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003441}
3442
3443static void ieee80211_sta_monitor_work(struct work_struct *work)
3444{
3445 struct ieee80211_sub_if_data *sdata =
3446 container_of(work, struct ieee80211_sub_if_data,
3447 u.mgd.monitor_work);
3448
3449 ieee80211_mgd_probe_ap(sdata, false);
3450}
3451
Johannes Berga1678f82008-09-11 00:01:47 +02003452static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3453{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003454 u32 flags;
3455
Kalle Vaload935682009-04-19 08:47:19 +03003456 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003457 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003458
Johannes Bergb291ba12009-07-10 15:29:03 +02003459 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003460 flags = sdata->local->hw.flags;
3461 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3462 ieee80211_queue_work(&sdata->local->hw,
3463 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003464 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003465 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003466 }
Johannes Berga1678f82008-09-11 00:01:47 +02003467}
3468
Johannes Bergb8360ab2013-04-29 14:57:44 +02003469#ifdef CONFIG_PM
3470void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3471{
3472 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3473
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003474 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003475 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003476 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003477 return;
3478 }
3479
3480 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3481 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3482 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3483 ieee80211_sta_connection_lost(sdata,
3484 ifmgd->associated->bssid,
3485 WLAN_REASON_UNSPECIFIED,
3486 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003487 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003488 return;
3489 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003490 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003491}
3492#endif
3493
Johannes Berg9c6bd792008-09-11 00:01:52 +02003494/* interface setup */
3495void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3496{
Johannes Berg46900292009-02-15 12:44:28 +01003497 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003498
Johannes Berg46900292009-02-15 12:44:28 +01003499 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003500 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003501 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003502 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3503 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003504 INIT_WORK(&ifmgd->csa_connection_drop_work,
3505 ieee80211_csa_connection_drop_work);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03003506 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_mgd_work);
Johannes Berg46900292009-02-15 12:44:28 +01003507 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003508 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003509 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3510 (unsigned long) sdata);
3511 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3512 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003513 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303514 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003515
Johannes Bergab1faea2009-07-01 21:41:17 +02003516 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303517 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003518 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3519 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003520 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003521
Johannes Berg0f782312009-12-01 13:37:02 +01003522 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3523 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3524 else
3525 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003526}
3527
3528/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003529void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3530{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003531 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003532
3533 /* Restart STA timers */
3534 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003535 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3536 if (ieee80211_sdata_running(sdata))
3537 ieee80211_restart_sta_timer(sdata);
3538 }
Johannes Berga1678f82008-09-11 00:01:47 +02003539 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003540}
Johannes Berg10f644a2009-04-16 13:17:25 +02003541
3542int ieee80211_max_network_latency(struct notifier_block *nb,
3543 unsigned long data, void *dummy)
3544{
3545 s32 latency_usec = (s32) data;
3546 struct ieee80211_local *local =
3547 container_of(nb, struct ieee80211_local,
3548 network_latency_notifier);
3549
3550 mutex_lock(&local->iflist_mtx);
3551 ieee80211_recalc_ps(local, latency_usec);
3552 mutex_unlock(&local->iflist_mtx);
3553
3554 return 0;
3555}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003556
Johannes Bergf2d9d272012-11-22 14:11:39 +01003557static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3558 struct cfg80211_bss *cbss)
3559{
3560 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3561 const u8 *ht_cap_ie, *vht_cap_ie;
3562 const struct ieee80211_ht_cap *ht_cap;
3563 const struct ieee80211_vht_cap *vht_cap;
3564 u8 chains = 1;
3565
3566 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3567 return chains;
3568
Johannes Berg9caf0362012-11-29 01:25:20 +01003569 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003570 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3571 ht_cap = (void *)(ht_cap_ie + 2);
3572 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3573 /*
3574 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3575 * "Tx Unequal Modulation Supported" fields.
3576 */
3577 }
3578
3579 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3580 return chains;
3581
Johannes Berg9caf0362012-11-29 01:25:20 +01003582 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003583 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3584 u8 nss;
3585 u16 tx_mcs_map;
3586
3587 vht_cap = (void *)(vht_cap_ie + 2);
3588 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3589 for (nss = 8; nss > 0; nss--) {
3590 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3591 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3592 break;
3593 }
3594 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3595 chains = max(chains, nss);
3596 }
3597
3598 return chains;
3599}
3600
Johannes Bergb17166a2012-07-27 11:41:27 +02003601static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3602 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003603{
3604 struct ieee80211_local *local = sdata->local;
3605 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003606 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003607 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003608 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003609 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003610 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003611
Johannes Berg24398e32012-03-28 10:58:36 +02003612 sband = local->hw.wiphy->bands[cbss->channel->band];
3613
Johannes Bergf2d9d272012-11-22 14:11:39 +01003614 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3615 IEEE80211_STA_DISABLE_80P80MHZ |
3616 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003617
Johannes Berg9caf0362012-11-29 01:25:20 +01003618 rcu_read_lock();
3619
Johannes Bergf2d9d272012-11-22 14:11:39 +01003620 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3621 sband->ht_cap.ht_supported) {
Johannes Berg08e6effa2013-02-07 23:33:32 +01003622 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003623
Johannes Berg9caf0362012-11-29 01:25:20 +01003624 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003625 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3626 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6effa2013-02-07 23:33:32 +01003627
3628 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3629 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3630 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3631 ht_oper = NULL;
3632 }
Johannes Berg24398e32012-03-28 10:58:36 +02003633 }
3634
Johannes Bergf2d9d272012-11-22 14:11:39 +01003635 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3636 sband->vht_cap.vht_supported) {
Johannes Berg08e6effa2013-02-07 23:33:32 +01003637 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003638
Johannes Berg9caf0362012-11-29 01:25:20 +01003639 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3640 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003641 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3642 vht_oper = (void *)(vht_oper_ie + 2);
3643 if (vht_oper && !ht_oper) {
3644 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003645 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003646 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003647 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3648 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003649 }
Johannes Berg08e6effa2013-02-07 23:33:32 +01003650
3651 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3652 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3653 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3654 vht_oper = NULL;
3655 }
Johannes Berg24398e32012-03-28 10:58:36 +02003656 }
3657
Johannes Bergf2d9d272012-11-22 14:11:39 +01003658 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3659 cbss->channel,
3660 ht_oper, vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +02003661 &chandef, false);
Johannes Berg04ecd252012-09-11 14:34:12 +02003662
Johannes Bergf2d9d272012-11-22 14:11:39 +01003663 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3664 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003665
Johannes Berg9caf0362012-11-29 01:25:20 +01003666 rcu_read_unlock();
3667
Johannes Berg04ecd252012-09-11 14:34:12 +02003668 /* will change later if needed */
3669 sdata->smps_mode = IEEE80211_SMPS_OFF;
3670
Johannes Bergf2d9d272012-11-22 14:11:39 +01003671 /*
3672 * If this fails (possibly due to channel context sharing
3673 * on incompatible channels, e.g. 80+80 and 160 sharing the
3674 * same control channel) try to use a smaller bandwidth.
3675 */
3676 ret = ieee80211_vif_use_channel(sdata, &chandef,
3677 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003678
3679 /* don't downgrade for 5 and 10 MHz channels, though. */
3680 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3681 chandef.width == NL80211_CHAN_WIDTH_10)
3682 return ret;
3683
Johannes Bergd601cd82013-02-07 20:54:51 +01003684 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02003685 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003686 ret = ieee80211_vif_use_channel(sdata, &chandef,
3687 IEEE80211_CHANCTX_SHARED);
3688 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003689 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003690}
3691
3692static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3693 struct cfg80211_bss *cbss, bool assoc)
3694{
3695 struct ieee80211_local *local = sdata->local;
3696 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3697 struct ieee80211_bss *bss = (void *)cbss->priv;
3698 struct sta_info *new_sta = NULL;
3699 bool have_sta = false;
3700 int err;
3701
3702 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3703 return -EINVAL;
3704
3705 if (assoc) {
3706 rcu_read_lock();
3707 have_sta = sta_info_get(sdata, cbss->bssid);
3708 rcu_read_unlock();
3709 }
3710
3711 if (!have_sta) {
3712 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3713 if (!new_sta)
3714 return -ENOMEM;
3715 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003716 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003717 u32 rates = 0, basic_rates = 0;
3718 bool have_higher_than_11mbit;
3719 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003720 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003721 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003722 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003723 int shift;
3724 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003725
3726 sband = local->hw.wiphy->bands[cbss->channel->band];
3727
3728 err = ieee80211_prep_channel(sdata, cbss);
3729 if (err) {
3730 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003731 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003732 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003733 shift = ieee80211_vif_get_shift(&sdata->vif);
3734
3735 rcu_read_lock();
3736 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3737 if (WARN_ON(!chanctx_conf)) {
3738 rcu_read_unlock();
3739 return -EINVAL;
3740 }
3741 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3742 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003743
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003744 ieee80211_get_rates(sband, bss->supp_rates,
3745 bss->supp_rates_len,
3746 &rates, &basic_rates,
3747 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003748 &min_rate, &min_rate_index,
3749 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003750
3751 /*
3752 * This used to be a workaround for basic rates missing
3753 * in the association response frame. Now that we no
3754 * longer use the basic rates from there, it probably
3755 * doesn't happen any more, but keep the workaround so
3756 * in case some *other* APs are buggy in different ways
3757 * we can connect -- with a warning.
3758 */
3759 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003760 sdata_info(sdata,
3761 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003762 basic_rates = BIT(min_rate_index);
3763 }
3764
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003765 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003766 sdata->vif.bss_conf.basic_rates = basic_rates;
3767
3768 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003769 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003770 have_higher_than_11mbit)
3771 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3772 else
3773 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3774
3775 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3776
Johannes Berg8c358bc2012-05-22 22:13:05 +02003777 /* set timing information */
3778 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003779 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003780 ies = rcu_dereference(cbss->beacon_ies);
3781 if (ies) {
3782 const u8 *tim_ie;
3783
3784 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3785 sdata->vif.bss_conf.sync_device_ts =
3786 bss->device_ts_beacon;
3787 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3788 ies->data, ies->len);
3789 if (tim_ie && tim_ie[1] >= 2)
3790 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3791 else
3792 sdata->vif.bss_conf.sync_dtim_count = 0;
3793 } else if (!(local->hw.flags &
3794 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3795 ies = rcu_dereference(cbss->proberesp_ies);
3796 /* must be non-NULL since beacon IEs were NULL */
3797 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3798 sdata->vif.bss_conf.sync_device_ts =
3799 bss->device_ts_presp;
3800 sdata->vif.bss_conf.sync_dtim_count = 0;
3801 } else {
3802 sdata->vif.bss_conf.sync_tsf = 0;
3803 sdata->vif.bss_conf.sync_device_ts = 0;
3804 sdata->vif.bss_conf.sync_dtim_count = 0;
3805 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003806 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003807
3808 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003809 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003810 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3811 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003812
3813 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003814 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003815
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003816 err = sta_info_insert(new_sta);
3817 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003818 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003819 sdata_info(sdata,
3820 "failed to insert STA entry for the AP (error %d)\n",
3821 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003822 return err;
3823 }
3824 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003825 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003826
3827 return 0;
3828}
3829
Johannes Berg77fdaa12009-07-07 03:45:17 +02003830/* config hooks */
3831int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3832 struct cfg80211_auth_request *req)
3833{
Johannes Berg66e67e42012-01-20 13:55:27 +01003834 struct ieee80211_local *local = sdata->local;
3835 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3836 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003837 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003838 int err;
3839
3840 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003841
3842 switch (req->auth_type) {
3843 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3844 auth_alg = WLAN_AUTH_OPEN;
3845 break;
3846 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003847 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003848 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003849 auth_alg = WLAN_AUTH_SHARED_KEY;
3850 break;
3851 case NL80211_AUTHTYPE_FT:
3852 auth_alg = WLAN_AUTH_FT;
3853 break;
3854 case NL80211_AUTHTYPE_NETWORK_EAP:
3855 auth_alg = WLAN_AUTH_LEAP;
3856 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003857 case NL80211_AUTHTYPE_SAE:
3858 auth_alg = WLAN_AUTH_SAE;
3859 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003860 default:
3861 return -EOPNOTSUPP;
3862 }
3863
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003864 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3865 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003866 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003867 return -ENOMEM;
3868
Johannes Berg66e67e42012-01-20 13:55:27 +01003869 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003870
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003871 if (req->sae_data_len >= 4) {
3872 __le16 *pos = (__le16 *) req->sae_data;
3873 auth_data->sae_trans = le16_to_cpu(pos[0]);
3874 auth_data->sae_status = le16_to_cpu(pos[1]);
3875 memcpy(auth_data->data, req->sae_data + 4,
3876 req->sae_data_len - 4);
3877 auth_data->data_len += req->sae_data_len - 4;
3878 }
3879
Johannes Berg77fdaa12009-07-07 03:45:17 +02003880 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003881 memcpy(&auth_data->data[auth_data->data_len],
3882 req->ie, req->ie_len);
3883 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003884 }
3885
Johannes Bergfffd0932009-07-08 14:22:54 +02003886 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003887 auth_data->key_len = req->key_len;
3888 auth_data->key_idx = req->key_idx;
3889 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003890 }
3891
Johannes Berg66e67e42012-01-20 13:55:27 +01003892 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003893
Johannes Berg66e67e42012-01-20 13:55:27 +01003894 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003895
Johannes Berg66e67e42012-01-20 13:55:27 +01003896 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3897 ifmgd->assoc_data) {
3898 err = -EBUSY;
3899 goto err_free;
3900 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003901
Johannes Berg66e67e42012-01-20 13:55:27 +01003902 if (ifmgd->auth_data)
3903 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003904
Johannes Berg66e67e42012-01-20 13:55:27 +01003905 /* prep auth_data so we don't go into idle on disassoc */
3906 ifmgd->auth_data = auth_data;
3907
Johannes Berg7b119dc2013-04-10 21:38:36 +02003908 if (ifmgd->associated) {
3909 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3910
3911 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3912 WLAN_REASON_UNSPECIFIED,
3913 false, frame_buf);
3914
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003915 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3916 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003917 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003918
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003919 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003920
Johannes Berga1cf7752012-03-08 15:02:07 +01003921 err = ieee80211_prep_connection(sdata, req->bss, false);
3922 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003923 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003924
Johannes Berg66e67e42012-01-20 13:55:27 +01003925 err = ieee80211_probe_auth(sdata);
3926 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003927 sta_info_destroy_addr(sdata, req->bss->bssid);
3928 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003929 }
3930
Johannes Berg66e67e42012-01-20 13:55:27 +01003931 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01003932 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003933 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02003934
Johannes Berg66e67e42012-01-20 13:55:27 +01003935 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03003936 memset(ifmgd->bssid, 0, ETH_ALEN);
3937 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01003938 ifmgd->auth_data = NULL;
3939 err_free:
3940 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01003941 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003942}
3943
Johannes Berg095d81c2013-10-15 12:25:07 +02003944static bool ieee80211_usable_wmm_params(struct ieee80211_sub_if_data *sdata,
3945 const u8 *wmm_param, int len)
3946{
3947 const u8 *pos;
3948 size_t left;
3949
3950 if (len < 8)
3951 return false;
3952
3953 if (wmm_param[5] != 1 /* version */)
3954 return false;
3955
3956 pos = wmm_param + 8;
3957 left = len - 8;
3958
3959 for (; left >= 4; left -= 4, pos += 4) {
3960 u8 aifsn = pos[0] & 0x0f;
3961 u8 ecwmin = pos[1] & 0x0f;
3962 u8 ecwmax = (pos[1] & 0xf0) >> 4;
3963 int aci = (pos[0] >> 5) & 0x03;
3964
3965 if (aifsn < 2) {
3966 sdata_info(sdata,
3967 "AP has invalid WMM params (AIFSN=%d for ACI %d), disabling WMM\n",
3968 aifsn, aci);
3969 return false;
3970 }
3971 if (ecwmin > ecwmax) {
3972 sdata_info(sdata,
3973 "AP has invalid WMM params (ECWmin/max=%d/%d for ACI %d), disabling WMM\n",
3974 ecwmin, ecwmax, aci);
3975 return false;
3976 }
3977 }
3978
3979 return true;
3980}
3981
Johannes Berg77fdaa12009-07-07 03:45:17 +02003982int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3983 struct cfg80211_assoc_request *req)
3984{
Johannes Berg66e67e42012-01-20 13:55:27 +01003985 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003986 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003987 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01003988 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003989 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003990 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01003991 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003992 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003993
Johannes Berg66e67e42012-01-20 13:55:27 +01003994 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
3995 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01003996 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003997
Johannes Berg9caf0362012-11-29 01:25:20 +01003998 rcu_read_lock();
3999 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4000 if (!ssidie) {
4001 rcu_read_unlock();
4002 kfree(assoc_data);
4003 return -EINVAL;
4004 }
4005 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4006 assoc_data->ssid_len = ssidie[1];
4007 rcu_read_unlock();
4008
Johannes Berg7b119dc2013-04-10 21:38:36 +02004009 if (ifmgd->associated) {
4010 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4011
4012 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4013 WLAN_REASON_UNSPECIFIED,
4014 false, frame_buf);
4015
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004016 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4017 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004018 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004019
4020 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4021 err = -EBUSY;
4022 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004023 }
4024
Johannes Berg66e67e42012-01-20 13:55:27 +01004025 if (ifmgd->assoc_data) {
4026 err = -EBUSY;
4027 goto err_free;
4028 }
4029
4030 if (ifmgd->auth_data) {
4031 bool match;
4032
4033 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00004034 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004035 ieee80211_destroy_auth_data(sdata, match);
4036 }
4037
4038 /* prepare assoc data */
Johannes Berg095d81c2013-10-15 12:25:07 +02004039
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03004040 ifmgd->beacon_crc_valid = false;
4041
Johannes Berg095d81c2013-10-15 12:25:07 +02004042 assoc_data->wmm = bss->wmm_used &&
4043 (local->hw.queues >= IEEE80211_NUM_ACS);
4044 if (assoc_data->wmm) {
4045 /* try to check validity of WMM params IE */
4046 const struct cfg80211_bss_ies *ies;
4047 const u8 *wp, *start, *end;
4048
4049 rcu_read_lock();
4050 ies = rcu_dereference(req->bss->ies);
4051 start = ies->data;
4052 end = start + ies->len;
4053
4054 while (true) {
4055 wp = cfg80211_find_vendor_ie(
4056 WLAN_OUI_MICROSOFT,
4057 WLAN_OUI_TYPE_MICROSOFT_WMM,
4058 start, end - start);
4059 if (!wp)
4060 break;
4061 start = wp + wp[1] + 2;
4062 /* if this IE is too short, try the next */
4063 if (wp[1] <= 4)
4064 continue;
4065 /* if this IE is WMM params, we found what we wanted */
4066 if (wp[6] == 1)
4067 break;
4068 }
4069
4070 if (!wp || !ieee80211_usable_wmm_params(sdata, wp + 2,
4071 wp[1] - 2)) {
4072 assoc_data->wmm = false;
4073 ifmgd->flags |= IEEE80211_STA_DISABLE_WMM;
4074 }
4075 rcu_read_unlock();
4076 }
4077
Johannes Bergde5036a2012-03-08 15:02:03 +01004078 /*
4079 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4080 * We still associate in non-HT mode (11a/b/g) if any one of these
4081 * ciphers is configured as pairwise.
4082 * We can set this to true for non-11n hardware, that'll be checked
4083 * separately along with the peer capabilities.
4084 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004085 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004086 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4087 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004088 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004089 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004090 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004091 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004092 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004093 }
4094 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004095
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004096 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004097 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004098 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4099 }
Ben Greearef96a8422011-11-18 11:32:00 -08004100
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004101 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4102 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4103
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004104 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4105 sband = local->hw.wiphy->bands[req->bss->channel->band];
4106 if (!sband->ht_cap.ht_supported ||
Johannes Berg095d81c2013-10-15 12:25:07 +02004107 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4108 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
Johannes Berga8243b72012-11-22 14:32:09 +01004109 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg095d81c2013-10-15 12:25:07 +02004110 if (!bss->wmm_used &&
4111 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
Johannes Berg1b49de22012-07-27 10:29:14 +02004112 netdev_info(sdata->dev,
4113 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004114 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004115
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004116 /* disable VHT if we don't support it or the AP doesn't use WMM */
4117 if (!sband->vht_cap.vht_supported ||
Johannes Berg095d81c2013-10-15 12:25:07 +02004118 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4119 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004120 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg095d81c2013-10-15 12:25:07 +02004121 if (!bss->wmm_used &&
4122 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
Johannes Berg1b49de22012-07-27 10:29:14 +02004123 netdev_info(sdata->dev,
4124 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004125 }
4126
Ben Greearef96a8422011-11-18 11:32:00 -08004127 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4128 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4129 sizeof(ifmgd->ht_capa_mask));
4130
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004131 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4132 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4133 sizeof(ifmgd->vht_capa_mask));
4134
Johannes Berg77fdaa12009-07-07 03:45:17 +02004135 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004136 memcpy(assoc_data->ie, req->ie, req->ie_len);
4137 assoc_data->ie_len = req->ie_len;
4138 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004139
Johannes Berg66e67e42012-01-20 13:55:27 +01004140 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004141
Johannes Bergaf6b6372009-12-23 13:15:35 +01004142 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4143 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004144 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004145 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004146 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004147 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004148 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004149
Johannes Berg66e67e42012-01-20 13:55:27 +01004150 assoc_data->capability = req->bss->capability;
Johannes Berg66e67e42012-01-20 13:55:27 +01004151 assoc_data->supp_rates = bss->supp_rates;
4152 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004153
Johannes Berg9caf0362012-11-29 01:25:20 +01004154 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004155 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4156 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4157 assoc_data->ap_ht_param =
4158 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4159 else
Johannes Berga8243b72012-11-22 14:32:09 +01004160 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004161 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4162 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4163 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4164 sizeof(struct ieee80211_vht_cap));
4165 else
4166 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004167 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004168
Kalle Valoab133152010-01-12 10:42:31 +02004169 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004170 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4171 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004172 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004173 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4174 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004175 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004176 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4177 }
4178
Johannes Berg77fdaa12009-07-07 03:45:17 +02004179 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004180 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004181
4182 if (req->use_mfp) {
4183 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4184 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4185 } else {
4186 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4187 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4188 }
4189
4190 if (req->crypto.control_port)
4191 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4192 else
4193 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4194
Johannes Berga621fa42010-08-27 14:26:54 +03004195 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4196 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02004197 sdata->encrypt_headroom = ieee80211_cs_headroom(local, &req->crypto,
4198 sdata->vif.type);
Johannes Berga621fa42010-08-27 14:26:54 +03004199
Johannes Berg66e67e42012-01-20 13:55:27 +01004200 /* kick off associate process */
4201
4202 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004203 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004204 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004205
Johannes Berga1cf7752012-03-08 15:02:07 +01004206 err = ieee80211_prep_connection(sdata, req->bss, true);
4207 if (err)
4208 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004209
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004210 rcu_read_lock();
4211 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004212
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004213 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4214 !beacon_ies) {
4215 /*
4216 * Wait up to one beacon interval ...
4217 * should this be more if we miss one?
4218 */
4219 sdata_info(sdata, "waiting for beacon from %pM\n",
4220 ifmgd->bssid);
4221 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004222 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004223 assoc_data->need_beacon = true;
4224 } else if (beacon_ies) {
4225 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4226 beacon_ies->data,
4227 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004228 u8 dtim_count = 0;
4229
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004230 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4231 const struct ieee80211_tim_ie *tim;
4232 tim = (void *)(tim_ie + 2);
4233 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004234 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004235 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004236 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004237 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004238 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004239
4240 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4241 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4242 sdata->vif.bss_conf.sync_device_ts =
4243 bss->device_ts_beacon;
4244 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4245 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004246 } else {
4247 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004248 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004249 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004250 rcu_read_unlock();
4251
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004252 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004253
Paul Stewartfcff4f12012-02-23 17:59:53 -08004254 if (bss->corrupt_data) {
4255 char *corrupt_type = "data";
4256 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4257 if (bss->corrupt_data &
4258 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4259 corrupt_type = "beacon and probe response";
4260 else
4261 corrupt_type = "beacon";
4262 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4263 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004264 sdata_info(sdata, "associating with AP with corrupt %s\n",
4265 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004266 }
4267
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004268 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004269 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004270 memset(ifmgd->bssid, 0, ETH_ALEN);
4271 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004272 ifmgd->assoc_data = NULL;
4273 err_free:
4274 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004275 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004276}
4277
4278int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004279 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004280{
4281 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004282 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004283 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004284 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004285
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004286 sdata_info(sdata,
4287 "deauthenticating from %pM by local choice (reason=%d)\n",
4288 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004289
Johannes Berg86552012012-10-29 09:46:31 +01004290 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004291 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004292 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4293 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004294 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004295 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004296 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004297
Johannes Bergde3d43a2013-05-14 09:39:02 +02004298 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004299 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004300 }
4301
Johannes Berg86552012012-10-29 09:46:31 +01004302 if (ifmgd->associated &&
4303 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4304 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4305 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004306 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004307 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004308
Johannes Berg86552012012-10-29 09:46:31 +01004309 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004310 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004311 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4312 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004313
Johannes Berg77fdaa12009-07-07 03:45:17 +02004314 return 0;
4315}
4316
4317int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004318 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004319{
4320 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004321 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004322 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004323
Johannes Berg8d8b2612009-07-25 11:58:36 +02004324 /*
4325 * cfg80211 should catch this ... but it's racy since
4326 * we can receive a disassoc frame, process it, hand it
4327 * to cfg80211 while that's in a locked section already
4328 * trying to tell us that the user wants to disconnect.
4329 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004330 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004331 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004332
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004333 sdata_info(sdata,
4334 "disassociating from %pM by local choice (reason=%d)\n",
4335 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004336
Jouni Malinene69e95d2010-03-29 23:29:31 -07004337 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004338 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4339 req->reason_code, !req->local_state_change,
4340 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004341
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004342 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4343 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004344
Johannes Berg77fdaa12009-07-07 03:45:17 +02004345 return 0;
4346}
Jouni Malinen026331c2010-02-15 12:53:10 +02004347
Eliad Pellerafa762f2012-04-23 14:45:15 +03004348void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004349{
4350 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4351
Ben Greear49921852013-02-20 09:41:09 -08004352 /*
4353 * Make sure some work items will not run after this,
4354 * they will not do anything but might not have been
4355 * cancelled when disconnecting.
4356 */
4357 cancel_work_sync(&ifmgd->monitor_work);
4358 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4359 cancel_work_sync(&ifmgd->request_smps_work);
4360 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4361 cancel_work_sync(&ifmgd->chswitch_work);
4362
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004363 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004364 if (ifmgd->assoc_data) {
4365 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004366 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004367 cfg80211_assoc_timeout(sdata->dev, bss);
4368 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004369 if (ifmgd->auth_data)
4370 ieee80211_destroy_auth_data(sdata, false);
4371 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004372 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004373}
4374
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004375void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4376 enum nl80211_cqm_rssi_threshold_event rssi_event,
4377 gfp_t gfp)
4378{
4379 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4380
Johannes Bergb5878a22010-04-07 16:48:40 +02004381 trace_api_cqm_rssi_notify(sdata, rssi_event);
4382
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004383 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4384}
4385EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);