blob: e664b28821a2e571b2ce6f5e6963cf8fd5d75485 [file] [log] [blame]
Johannes Bergc2d15602007-07-27 15:43:23 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Bergc2d15602007-07-27 15:43:23 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * utilities for mac80211
13 */
14
15#include <net/mac80211.h>
16#include <linux/netdevice.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040017#include <linux/export.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020018#include <linux/types.h>
19#include <linux/slab.h>
20#include <linux/skbuff.h>
21#include <linux/etherdevice.h>
22#include <linux/if_arp.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020023#include <linux/bitmap.h>
Johannes Bergdd769862011-11-18 16:54:50 +010024#include <linux/crc32.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070025#include <net/net_namespace.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020026#include <net/cfg80211.h>
Johannes Bergdabeb342007-11-09 01:57:29 +010027#include <net/rtnetlink.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020028
29#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020030#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040031#include "rate.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010032#include "mesh.h"
Johannes Bergc2d15602007-07-27 15:43:23 +020033#include "wme.h"
Johannes Bergf2753dd2009-04-14 10:09:24 +020034#include "led.h"
Johannes Bergfffd0932009-07-08 14:22:54 +020035#include "wep.h"
Johannes Bergc2d15602007-07-27 15:43:23 +020036
37/* privid for wiphys to determine whether they belong to us or not */
Johannes Berg8a47cea2014-01-20 23:55:44 +010038const void *const mac80211_wiphy_privid = &mac80211_wiphy_privid;
Johannes Bergc2d15602007-07-27 15:43:23 +020039
Luis R. Rodriguez9a953712009-01-22 15:05:53 -080040struct ieee80211_hw *wiphy_to_ieee80211_hw(struct wiphy *wiphy)
41{
42 struct ieee80211_local *local;
43 BUG_ON(!wiphy);
44
45 local = wiphy_priv(wiphy);
46 return &local->hw;
47}
48EXPORT_SYMBOL(wiphy_to_ieee80211_hw);
Johannes Bergc2d15602007-07-27 15:43:23 +020049
Ron Rindjunsky71364712007-12-25 17:00:36 +020050u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
Johannes Berg05c914f2008-09-11 00:01:58 +020051 enum nl80211_iftype type)
Johannes Bergc2d15602007-07-27 15:43:23 +020052{
Harvey Harrisona494bb12008-06-11 14:21:58 -070053 __le16 fc = hdr->frame_control;
Johannes Bergc2d15602007-07-27 15:43:23 +020054
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020055 /* drop ACK/CTS frames and incorrect hdr len (ctrl) */
56 if (len < 16)
Johannes Bergc2d15602007-07-27 15:43:23 +020057 return NULL;
58
Harvey Harrisona494bb12008-06-11 14:21:58 -070059 if (ieee80211_is_data(fc)) {
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020060 if (len < 24) /* drop incorrect hdr len (data) */
61 return NULL;
Harvey Harrisona494bb12008-06-11 14:21:58 -070062
63 if (ieee80211_has_a4(fc))
Johannes Bergc2d15602007-07-27 15:43:23 +020064 return NULL;
Harvey Harrisona494bb12008-06-11 14:21:58 -070065 if (ieee80211_has_tods(fc))
66 return hdr->addr1;
67 if (ieee80211_has_fromds(fc))
Johannes Bergc2d15602007-07-27 15:43:23 +020068 return hdr->addr2;
Harvey Harrisona494bb12008-06-11 14:21:58 -070069
70 return hdr->addr3;
71 }
72
73 if (ieee80211_is_mgmt(fc)) {
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020074 if (len < 24) /* drop incorrect hdr len (mgmt) */
75 return NULL;
Johannes Bergc2d15602007-07-27 15:43:23 +020076 return hdr->addr3;
Harvey Harrisona494bb12008-06-11 14:21:58 -070077 }
78
79 if (ieee80211_is_ctl(fc)) {
Weilong Chenf359d3f2013-12-18 15:44:16 +080080 if (ieee80211_is_pspoll(fc))
Johannes Bergc2d15602007-07-27 15:43:23 +020081 return hdr->addr1;
Harvey Harrisona494bb12008-06-11 14:21:58 -070082
83 if (ieee80211_is_back_req(fc)) {
Ron Rindjunsky71364712007-12-25 17:00:36 +020084 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +020085 case NL80211_IFTYPE_STATION:
Ron Rindjunsky71364712007-12-25 17:00:36 +020086 return hdr->addr2;
Johannes Berg05c914f2008-09-11 00:01:58 +020087 case NL80211_IFTYPE_AP:
88 case NL80211_IFTYPE_AP_VLAN:
Ron Rindjunsky71364712007-12-25 17:00:36 +020089 return hdr->addr1;
90 default:
Harvey Harrisona494bb12008-06-11 14:21:58 -070091 break; /* fall through to the return */
Ron Rindjunsky71364712007-12-25 17:00:36 +020092 }
93 }
Johannes Bergc2d15602007-07-27 15:43:23 +020094 }
95
96 return NULL;
97}
98
Johannes Berg5cf121c2008-02-25 16:27:43 +010099void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx)
Johannes Bergc2d15602007-07-27 15:43:23 +0200100{
Johannes Berg252b86c2011-11-16 15:28:55 +0100101 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100102 struct ieee80211_hdr *hdr;
Johannes Bergc2d15602007-07-27 15:43:23 +0200103
Johannes Berg252b86c2011-11-16 15:28:55 +0100104 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100105 hdr = (struct ieee80211_hdr *) skb->data;
106 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
Johannes Berg252b86c2011-11-16 15:28:55 +0100107 }
Johannes Bergc2d15602007-07-27 15:43:23 +0200108}
109
Michal Kazior4ee73f32012-04-11 08:47:56 +0200110int ieee80211_frame_duration(enum ieee80211_band band, size_t len,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200111 int rate, int erp, int short_preamble,
112 int shift)
Johannes Bergc2d15602007-07-27 15:43:23 +0200113{
114 int dur;
115
116 /* calculate duration (in microseconds, rounded up to next higher
117 * integer if it includes a fractional microsecond) to send frame of
118 * len bytes (does not include FCS) at the given rate. Duration will
119 * also include SIFS.
120 *
121 * rate is in 100 kbps, so divident is multiplied by 10 in the
122 * DIV_ROUND_UP() operations.
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200123 *
124 * shift may be 2 for 5 MHz channels or 1 for 10 MHz channels, and
125 * is assumed to be 0 otherwise.
Johannes Bergc2d15602007-07-27 15:43:23 +0200126 */
127
Michal Kazior4ee73f32012-04-11 08:47:56 +0200128 if (band == IEEE80211_BAND_5GHZ || erp) {
Johannes Bergc2d15602007-07-27 15:43:23 +0200129 /*
130 * OFDM:
131 *
132 * N_DBPS = DATARATE x 4
133 * N_SYM = Ceiling((16+8xLENGTH+6) / N_DBPS)
134 * (16 = SIGNAL time, 6 = tail bits)
135 * TXTIME = T_PREAMBLE + T_SIGNAL + T_SYM x N_SYM + Signal Ext
136 *
137 * T_SYM = 4 usec
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200138 * 802.11a - 18.5.2: aSIFSTime = 16 usec
Johannes Bergc2d15602007-07-27 15:43:23 +0200139 * 802.11g - 19.8.4: aSIFSTime = 10 usec +
140 * signal ext = 6 usec
141 */
Johannes Bergc2d15602007-07-27 15:43:23 +0200142 dur = 16; /* SIFS + signal ext */
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200143 dur += 16; /* IEEE 802.11-2012 18.3.2.4: T_PREAMBLE = 16 usec */
144 dur += 4; /* IEEE 802.11-2012 18.3.2.4: T_SIGNAL = 4 usec */
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200145
146 /* IEEE 802.11-2012 18.3.2.4: all values above are:
147 * * times 4 for 5 MHz
148 * * times 2 for 10 MHz
149 */
150 dur *= 1 << shift;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200151
152 /* rates should already consider the channel bandwidth,
153 * don't apply divisor again.
154 */
155 dur += 4 * DIV_ROUND_UP((16 + 8 * (len + 4) + 6) * 10,
156 4 * rate); /* T_SYM x N_SYM */
Johannes Bergc2d15602007-07-27 15:43:23 +0200157 } else {
158 /*
159 * 802.11b or 802.11g with 802.11b compatibility:
160 * 18.3.4: TXTIME = PreambleLength + PLCPHeaderTime +
161 * Ceiling(((LENGTH+PBCC)x8)/DATARATE). PBCC=0.
162 *
163 * 802.11 (DS): 15.3.3, 802.11b: 18.3.4
164 * aSIFSTime = 10 usec
165 * aPreambleLength = 144 usec or 72 usec with short preamble
166 * aPLCPHeaderLength = 48 usec or 24 usec with short preamble
167 */
168 dur = 10; /* aSIFSTime = 10 usec */
169 dur += short_preamble ? (72 + 24) : (144 + 48);
170
171 dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate);
172 }
173
174 return dur;
175}
176
177/* Exported duration function for driver use */
Johannes Berg32bfd352007-12-19 01:31:26 +0100178__le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
179 struct ieee80211_vif *vif,
Michal Kazior4ee73f32012-04-11 08:47:56 +0200180 enum ieee80211_band band,
Johannes Berg8318d782008-01-24 19:38:38 +0100181 size_t frame_len,
182 struct ieee80211_rate *rate)
Johannes Bergc2d15602007-07-27 15:43:23 +0200183{
Johannes Berg25d834e2008-09-12 22:52:47 +0200184 struct ieee80211_sub_if_data *sdata;
Johannes Bergc2d15602007-07-27 15:43:23 +0200185 u16 dur;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200186 int erp, shift = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200187 bool short_preamble = false;
Johannes Bergc2d15602007-07-27 15:43:23 +0200188
Johannes Berg8318d782008-01-24 19:38:38 +0100189 erp = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200190 if (vif) {
191 sdata = vif_to_sdata(vif);
Johannes Bergbda39332008-10-11 01:51:51 +0200192 short_preamble = sdata->vif.bss_conf.use_short_preamble;
Johannes Berg25d834e2008-09-12 22:52:47 +0200193 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
194 erp = rate->flags & IEEE80211_RATE_ERP_G;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200195 shift = ieee80211_vif_get_shift(vif);
Johannes Berg25d834e2008-09-12 22:52:47 +0200196 }
Johannes Berg8318d782008-01-24 19:38:38 +0100197
Michal Kazior4ee73f32012-04-11 08:47:56 +0200198 dur = ieee80211_frame_duration(band, frame_len, rate->bitrate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200199 short_preamble, shift);
Johannes Bergc2d15602007-07-27 15:43:23 +0200200
201 return cpu_to_le16(dur);
202}
203EXPORT_SYMBOL(ieee80211_generic_frame_duration);
204
Johannes Berg32bfd352007-12-19 01:31:26 +0100205__le16 ieee80211_rts_duration(struct ieee80211_hw *hw,
206 struct ieee80211_vif *vif, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200207 const struct ieee80211_tx_info *frame_txctl)
Johannes Bergc2d15602007-07-27 15:43:23 +0200208{
209 struct ieee80211_local *local = hw_to_local(hw);
210 struct ieee80211_rate *rate;
Johannes Berg25d834e2008-09-12 22:52:47 +0200211 struct ieee80211_sub_if_data *sdata;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100212 bool short_preamble;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200213 int erp, shift = 0, bitrate;
Johannes Bergc2d15602007-07-27 15:43:23 +0200214 u16 dur;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200215 struct ieee80211_supported_band *sband;
216
Michal Kazior4ee73f32012-04-11 08:47:56 +0200217 sband = local->hw.wiphy->bands[frame_txctl->band];
Johannes Bergc2d15602007-07-27 15:43:23 +0200218
Johannes Berg25d834e2008-09-12 22:52:47 +0200219 short_preamble = false;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200220
Johannes Berge039fa42008-05-15 12:55:29 +0200221 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
Johannes Berg8318d782008-01-24 19:38:38 +0100222
223 erp = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200224 if (vif) {
225 sdata = vif_to_sdata(vif);
Johannes Bergbda39332008-10-11 01:51:51 +0200226 short_preamble = sdata->vif.bss_conf.use_short_preamble;
Johannes Berg25d834e2008-09-12 22:52:47 +0200227 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
228 erp = rate->flags & IEEE80211_RATE_ERP_G;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200229 shift = ieee80211_vif_get_shift(vif);
Johannes Berg25d834e2008-09-12 22:52:47 +0200230 }
Johannes Bergc2d15602007-07-27 15:43:23 +0200231
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200232 bitrate = DIV_ROUND_UP(rate->bitrate, 1 << shift);
233
Johannes Bergc2d15602007-07-27 15:43:23 +0200234 /* CTS duration */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200235 dur = ieee80211_frame_duration(sband->band, 10, bitrate,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200236 erp, short_preamble, shift);
Johannes Bergc2d15602007-07-27 15:43:23 +0200237 /* Data frame duration */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200238 dur += ieee80211_frame_duration(sband->band, frame_len, bitrate,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200239 erp, short_preamble, shift);
Johannes Bergc2d15602007-07-27 15:43:23 +0200240 /* ACK duration */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200241 dur += ieee80211_frame_duration(sband->band, 10, bitrate,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200242 erp, short_preamble, shift);
Johannes Bergc2d15602007-07-27 15:43:23 +0200243
244 return cpu_to_le16(dur);
245}
246EXPORT_SYMBOL(ieee80211_rts_duration);
247
Johannes Berg32bfd352007-12-19 01:31:26 +0100248__le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw,
249 struct ieee80211_vif *vif,
Johannes Bergc2d15602007-07-27 15:43:23 +0200250 size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200251 const struct ieee80211_tx_info *frame_txctl)
Johannes Bergc2d15602007-07-27 15:43:23 +0200252{
253 struct ieee80211_local *local = hw_to_local(hw);
254 struct ieee80211_rate *rate;
Johannes Berg25d834e2008-09-12 22:52:47 +0200255 struct ieee80211_sub_if_data *sdata;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100256 bool short_preamble;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200257 int erp, shift = 0, bitrate;
Johannes Bergc2d15602007-07-27 15:43:23 +0200258 u16 dur;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200259 struct ieee80211_supported_band *sband;
260
Michal Kazior4ee73f32012-04-11 08:47:56 +0200261 sband = local->hw.wiphy->bands[frame_txctl->band];
Johannes Bergc2d15602007-07-27 15:43:23 +0200262
Johannes Berg25d834e2008-09-12 22:52:47 +0200263 short_preamble = false;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200264
Johannes Berge039fa42008-05-15 12:55:29 +0200265 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
Johannes Berg8318d782008-01-24 19:38:38 +0100266 erp = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200267 if (vif) {
268 sdata = vif_to_sdata(vif);
Johannes Bergbda39332008-10-11 01:51:51 +0200269 short_preamble = sdata->vif.bss_conf.use_short_preamble;
Johannes Berg25d834e2008-09-12 22:52:47 +0200270 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
271 erp = rate->flags & IEEE80211_RATE_ERP_G;
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200272 shift = ieee80211_vif_get_shift(vif);
Johannes Berg25d834e2008-09-12 22:52:47 +0200273 }
Johannes Bergc2d15602007-07-27 15:43:23 +0200274
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200275 bitrate = DIV_ROUND_UP(rate->bitrate, 1 << shift);
276
Johannes Bergc2d15602007-07-27 15:43:23 +0200277 /* Data frame duration */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200278 dur = ieee80211_frame_duration(sband->band, frame_len, bitrate,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200279 erp, short_preamble, shift);
Johannes Berge039fa42008-05-15 12:55:29 +0200280 if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) {
Johannes Bergc2d15602007-07-27 15:43:23 +0200281 /* ACK duration */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200282 dur += ieee80211_frame_duration(sband->band, 10, bitrate,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200283 erp, short_preamble, shift);
Johannes Bergc2d15602007-07-27 15:43:23 +0200284 }
285
Johannes Bergc2d15602007-07-27 15:43:23 +0200286 return cpu_to_le16(dur);
287}
288EXPORT_SYMBOL(ieee80211_ctstoself_duration);
289
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200290void ieee80211_propagate_queue_wake(struct ieee80211_local *local, int queue)
291{
292 struct ieee80211_sub_if_data *sdata;
Johannes Berga6f38ac2012-07-04 12:49:59 +0200293 int n_acs = IEEE80211_NUM_ACS;
294
295 if (local->hw.queues < IEEE80211_NUM_ACS)
296 n_acs = 1;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200297
298 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
299 int ac;
300
Johannes Bergf142c6b2012-06-18 20:07:15 +0200301 if (!sdata->dev)
302 continue;
303
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200304 if (sdata->vif.cab_queue != IEEE80211_INVAL_HW_QUEUE &&
305 local->queue_stop_reasons[sdata->vif.cab_queue] != 0)
306 continue;
307
Johannes Berga6f38ac2012-07-04 12:49:59 +0200308 for (ac = 0; ac < n_acs; ac++) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200309 int ac_queue = sdata->vif.hw_queue[ac];
310
311 if (ac_queue == queue ||
312 (sdata->vif.cab_queue == queue &&
313 local->queue_stop_reasons[ac_queue] == 0 &&
314 skb_queue_empty(&local->pending[ac_queue])))
315 netif_wake_subqueue(sdata->dev, ac);
316 }
317 }
318}
319
Kalle Valoce7c9112008-12-18 23:35:20 +0200320static void __ieee80211_wake_queue(struct ieee80211_hw *hw, int queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300321 enum queue_stop_reason reason,
322 bool refcounted)
Johannes Bergc2d15602007-07-27 15:43:23 +0200323{
324 struct ieee80211_local *local = hw_to_local(hw);
325
Johannes Bergb5878a22010-04-07 16:48:40 +0200326 trace_wake_queue(local, queue, reason);
327
Johannes Berge4e72fb2009-03-23 17:28:42 +0100328 if (WARN_ON(queue >= hw->queues))
329 return;
Kalle Valoce7c9112008-12-18 23:35:20 +0200330
Johannes Bergada15122012-03-28 11:04:27 +0200331 if (!test_bit(reason, &local->queue_stop_reasons[queue]))
332 return;
333
Luciano Coelhocca07b02014-06-13 16:30:05 +0300334 if (!refcounted)
335 local->q_stop_reasons[queue][reason] = 0;
336 else
337 local->q_stop_reasons[queue][reason]--;
338
339 if (local->q_stop_reasons[queue][reason] == 0)
340 __clear_bit(reason, &local->queue_stop_reasons[queue]);
Johannes Berg96f5e662009-02-12 00:51:53 +0100341
342 if (local->queue_stop_reasons[queue] != 0)
343 /* someone still has this queue stopped */
344 return;
345
Johannes Berg7236fe22010-03-22 13:42:43 -0700346 if (skb_queue_empty(&local->pending[queue])) {
347 rcu_read_lock();
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200348 ieee80211_propagate_queue_wake(local, queue);
Johannes Berg7236fe22010-03-22 13:42:43 -0700349 rcu_read_unlock();
350 } else
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200351 tasklet_schedule(&local->tx_pending_tasklet);
Johannes Bergc2d15602007-07-27 15:43:23 +0200352}
Kalle Valoce7c9112008-12-18 23:35:20 +0200353
Johannes Berg96f5e662009-02-12 00:51:53 +0100354void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300355 enum queue_stop_reason reason,
356 bool refcounted)
Kalle Valoce7c9112008-12-18 23:35:20 +0200357{
358 struct ieee80211_local *local = hw_to_local(hw);
359 unsigned long flags;
360
361 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Luciano Coelhocca07b02014-06-13 16:30:05 +0300362 __ieee80211_wake_queue(hw, queue, reason, refcounted);
Kalle Valoce7c9112008-12-18 23:35:20 +0200363 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
364}
365
366void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue)
367{
368 ieee80211_wake_queue_by_reason(hw, queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300369 IEEE80211_QUEUE_STOP_REASON_DRIVER,
370 false);
Kalle Valoce7c9112008-12-18 23:35:20 +0200371}
Johannes Bergc2d15602007-07-27 15:43:23 +0200372EXPORT_SYMBOL(ieee80211_wake_queue);
373
Kalle Valoce7c9112008-12-18 23:35:20 +0200374static void __ieee80211_stop_queue(struct ieee80211_hw *hw, int queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300375 enum queue_stop_reason reason,
376 bool refcounted)
Johannes Bergc2d15602007-07-27 15:43:23 +0200377{
378 struct ieee80211_local *local = hw_to_local(hw);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100379 struct ieee80211_sub_if_data *sdata;
Johannes Berga6f38ac2012-07-04 12:49:59 +0200380 int n_acs = IEEE80211_NUM_ACS;
Johannes Bergc2d15602007-07-27 15:43:23 +0200381
Johannes Bergb5878a22010-04-07 16:48:40 +0200382 trace_stop_queue(local, queue, reason);
383
Johannes Berge4e72fb2009-03-23 17:28:42 +0100384 if (WARN_ON(queue >= hw->queues))
385 return;
Johannes Berg96f5e662009-02-12 00:51:53 +0100386
Luciano Coelhocca07b02014-06-13 16:30:05 +0300387 if (!refcounted)
388 local->q_stop_reasons[queue][reason] = 1;
389 else
390 local->q_stop_reasons[queue][reason]++;
Johannes Bergada15122012-03-28 11:04:27 +0200391
Luciano Coelhocca07b02014-06-13 16:30:05 +0300392 if (__test_and_set_bit(reason, &local->queue_stop_reasons[queue]))
393 return;
Johannes Bergcf0277e2010-01-05 18:00:58 +0100394
Johannes Berga6f38ac2012-07-04 12:49:59 +0200395 if (local->hw.queues < IEEE80211_NUM_ACS)
396 n_acs = 1;
397
Johannes Bergcf0277e2010-01-05 18:00:58 +0100398 rcu_read_lock();
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200399 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
400 int ac;
401
Johannes Bergf142c6b2012-06-18 20:07:15 +0200402 if (!sdata->dev)
403 continue;
404
Johannes Berga6f38ac2012-07-04 12:49:59 +0200405 for (ac = 0; ac < n_acs; ac++) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200406 if (sdata->vif.hw_queue[ac] == queue ||
407 sdata->vif.cab_queue == queue)
408 netif_stop_subqueue(sdata->dev, ac);
409 }
410 }
Johannes Bergcf0277e2010-01-05 18:00:58 +0100411 rcu_read_unlock();
Johannes Bergc2d15602007-07-27 15:43:23 +0200412}
Kalle Valoce7c9112008-12-18 23:35:20 +0200413
Johannes Berg96f5e662009-02-12 00:51:53 +0100414void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300415 enum queue_stop_reason reason,
416 bool refcounted)
Kalle Valoce7c9112008-12-18 23:35:20 +0200417{
418 struct ieee80211_local *local = hw_to_local(hw);
419 unsigned long flags;
420
421 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Luciano Coelhocca07b02014-06-13 16:30:05 +0300422 __ieee80211_stop_queue(hw, queue, reason, refcounted);
Kalle Valoce7c9112008-12-18 23:35:20 +0200423 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
424}
425
426void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue)
427{
428 ieee80211_stop_queue_by_reason(hw, queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300429 IEEE80211_QUEUE_STOP_REASON_DRIVER,
430 false);
Kalle Valoce7c9112008-12-18 23:35:20 +0200431}
Johannes Bergc2d15602007-07-27 15:43:23 +0200432EXPORT_SYMBOL(ieee80211_stop_queue);
433
Johannes Berg8f77f382009-06-07 21:58:37 +0200434void ieee80211_add_pending_skb(struct ieee80211_local *local,
435 struct sk_buff *skb)
436{
437 struct ieee80211_hw *hw = &local->hw;
438 unsigned long flags;
Johannes Berga7bc3762009-07-27 10:33:31 +0200439 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200440 int queue = info->hw_queue;
Johannes Berga7bc3762009-07-27 10:33:31 +0200441
442 if (WARN_ON(!info->control.vif)) {
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200443 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +0200444 return;
445 }
Johannes Berg8f77f382009-06-07 21:58:37 +0200446
447 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Luciano Coelhocca07b02014-06-13 16:30:05 +0300448 __ieee80211_stop_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD,
449 false);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200450 __skb_queue_tail(&local->pending[queue], skb);
Luciano Coelhocca07b02014-06-13 16:30:05 +0300451 __ieee80211_wake_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD,
452 false);
Johannes Berg8f77f382009-06-07 21:58:37 +0200453 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
454}
455
Johannes Berge3685e02014-02-20 11:19:58 +0100456void ieee80211_add_pending_skbs(struct ieee80211_local *local,
457 struct sk_buff_head *skbs)
Johannes Berg8f77f382009-06-07 21:58:37 +0200458{
459 struct ieee80211_hw *hw = &local->hw;
460 struct sk_buff *skb;
461 unsigned long flags;
Johannes Bergb0b97a82011-09-29 16:04:30 +0200462 int queue, i;
Johannes Berg8f77f382009-06-07 21:58:37 +0200463
464 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg8f77f382009-06-07 21:58:37 +0200465 while ((skb = skb_dequeue(skbs))) {
Johannes Berga7bc3762009-07-27 10:33:31 +0200466 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
467
468 if (WARN_ON(!info->control.vif)) {
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200469 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +0200470 continue;
471 }
472
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200473 queue = info->hw_queue;
Johannes Berg4644ae82012-03-28 11:04:28 +0200474
475 __ieee80211_stop_queue(hw, queue,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300476 IEEE80211_QUEUE_STOP_REASON_SKB_ADD,
477 false);
Johannes Berg4644ae82012-03-28 11:04:28 +0200478
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200479 __skb_queue_tail(&local->pending[queue], skb);
Johannes Berg8f77f382009-06-07 21:58:37 +0200480 }
481
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200482 for (i = 0; i < hw->queues; i++)
Johannes Berg8f77f382009-06-07 21:58:37 +0200483 __ieee80211_wake_queue(hw, i,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300484 IEEE80211_QUEUE_STOP_REASON_SKB_ADD,
485 false);
Johannes Berg8f77f382009-06-07 21:58:37 +0200486 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg8f77f382009-06-07 21:58:37 +0200487}
488
Kalle Valoce7c9112008-12-18 23:35:20 +0200489void ieee80211_stop_queues_by_reason(struct ieee80211_hw *hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100490 unsigned long queues,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300491 enum queue_stop_reason reason,
492 bool refcounted)
Johannes Bergc2d15602007-07-27 15:43:23 +0200493{
Kalle Valoce7c9112008-12-18 23:35:20 +0200494 struct ieee80211_local *local = hw_to_local(hw);
495 unsigned long flags;
Johannes Bergc2d15602007-07-27 15:43:23 +0200496 int i;
497
Kalle Valoce7c9112008-12-18 23:35:20 +0200498 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
499
Johannes Berg445ea4e2013-02-13 12:25:28 +0100500 for_each_set_bit(i, &queues, hw->queues)
Luciano Coelhocca07b02014-06-13 16:30:05 +0300501 __ieee80211_stop_queue(hw, i, reason, refcounted);
Kalle Valoce7c9112008-12-18 23:35:20 +0200502
503 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
504}
505
506void ieee80211_stop_queues(struct ieee80211_hw *hw)
507{
Johannes Berg445ea4e2013-02-13 12:25:28 +0100508 ieee80211_stop_queues_by_reason(hw, IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300509 IEEE80211_QUEUE_STOP_REASON_DRIVER,
510 false);
Johannes Bergc2d15602007-07-27 15:43:23 +0200511}
512EXPORT_SYMBOL(ieee80211_stop_queues);
513
Tomas Winkler92ab8532008-07-24 21:02:04 +0300514int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue)
515{
516 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200517 unsigned long flags;
518 int ret;
Johannes Berg96f5e662009-02-12 00:51:53 +0100519
Johannes Berge4e72fb2009-03-23 17:28:42 +0100520 if (WARN_ON(queue >= hw->queues))
521 return true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100522
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200523 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Thomas Pedersen2419ea12013-04-10 15:41:40 -0700524 ret = test_bit(IEEE80211_QUEUE_STOP_REASON_DRIVER,
525 &local->queue_stop_reasons[queue]);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200526 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
527 return ret;
Tomas Winkler92ab8532008-07-24 21:02:04 +0300528}
529EXPORT_SYMBOL(ieee80211_queue_stopped);
530
Kalle Valoce7c9112008-12-18 23:35:20 +0200531void ieee80211_wake_queues_by_reason(struct ieee80211_hw *hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100532 unsigned long queues,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300533 enum queue_stop_reason reason,
534 bool refcounted)
Johannes Bergc2d15602007-07-27 15:43:23 +0200535{
Kalle Valoce7c9112008-12-18 23:35:20 +0200536 struct ieee80211_local *local = hw_to_local(hw);
537 unsigned long flags;
Johannes Bergc2d15602007-07-27 15:43:23 +0200538 int i;
539
Kalle Valoce7c9112008-12-18 23:35:20 +0200540 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
541
Johannes Berg445ea4e2013-02-13 12:25:28 +0100542 for_each_set_bit(i, &queues, hw->queues)
Luciano Coelhocca07b02014-06-13 16:30:05 +0300543 __ieee80211_wake_queue(hw, i, reason, refcounted);
Kalle Valoce7c9112008-12-18 23:35:20 +0200544
545 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
546}
547
548void ieee80211_wake_queues(struct ieee80211_hw *hw)
549{
Johannes Berg445ea4e2013-02-13 12:25:28 +0100550 ieee80211_wake_queues_by_reason(hw, IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300551 IEEE80211_QUEUE_STOP_REASON_DRIVER,
552 false);
Johannes Bergc2d15602007-07-27 15:43:23 +0200553}
554EXPORT_SYMBOL(ieee80211_wake_queues);
Johannes Bergdabeb342007-11-09 01:57:29 +0100555
Luciano Coelho26da23b2014-06-13 16:30:06 +0300556static unsigned int
557ieee80211_get_vif_queues(struct ieee80211_local *local,
558 struct ieee80211_sub_if_data *sdata)
Johannes Berg39ecc012013-02-13 12:11:00 +0100559{
Luciano Coelho26da23b2014-06-13 16:30:06 +0300560 unsigned int queues;
Johannes Berg39ecc012013-02-13 12:11:00 +0100561
562 if (sdata && local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
563 int ac;
564
565 queues = 0;
566
567 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
568 queues |= BIT(sdata->vif.hw_queue[ac]);
569 if (sdata->vif.cab_queue != IEEE80211_INVAL_HW_QUEUE)
570 queues |= BIT(sdata->vif.cab_queue);
571 } else {
572 /* all queues */
573 queues = BIT(local->hw.queues) - 1;
574 }
575
Luciano Coelho26da23b2014-06-13 16:30:06 +0300576 return queues;
577}
578
Liad Kaufman4f9610d2014-11-09 18:50:21 +0200579void __ieee80211_flush_queues(struct ieee80211_local *local,
580 struct ieee80211_sub_if_data *sdata,
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200581 unsigned int queues, bool drop)
Luciano Coelho26da23b2014-06-13 16:30:06 +0300582{
Luciano Coelho26da23b2014-06-13 16:30:06 +0300583 if (!local->ops->flush)
584 return;
585
Liad Kaufman4f9610d2014-11-09 18:50:21 +0200586 /*
587 * If no queue was set, or if the HW doesn't support
588 * IEEE80211_HW_QUEUE_CONTROL - flush all queues
589 */
590 if (!queues || !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
591 queues = ieee80211_get_vif_queues(local, sdata);
Luciano Coelho26da23b2014-06-13 16:30:06 +0300592
Luciano Coelho59f48fe2014-06-13 16:30:04 +0300593 ieee80211_stop_queues_by_reason(&local->hw, queues,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300594 IEEE80211_QUEUE_STOP_REASON_FLUSH,
595 false);
Johannes Berg445ea4e2013-02-13 12:25:28 +0100596
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200597 drv_flush(local, sdata, queues, drop);
Johannes Berg445ea4e2013-02-13 12:25:28 +0100598
Luciano Coelho59f48fe2014-06-13 16:30:04 +0300599 ieee80211_wake_queues_by_reason(&local->hw, queues,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300600 IEEE80211_QUEUE_STOP_REASON_FLUSH,
601 false);
Johannes Berg39ecc012013-02-13 12:11:00 +0100602}
603
Liad Kaufman4f9610d2014-11-09 18:50:21 +0200604void ieee80211_flush_queues(struct ieee80211_local *local,
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200605 struct ieee80211_sub_if_data *sdata, bool drop)
Liad Kaufman4f9610d2014-11-09 18:50:21 +0200606{
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +0200607 __ieee80211_flush_queues(local, sdata, 0, drop);
Liad Kaufman4f9610d2014-11-09 18:50:21 +0200608}
609
Luciano Coelho26da23b2014-06-13 16:30:06 +0300610void ieee80211_stop_vif_queues(struct ieee80211_local *local,
611 struct ieee80211_sub_if_data *sdata,
612 enum queue_stop_reason reason)
613{
614 ieee80211_stop_queues_by_reason(&local->hw,
615 ieee80211_get_vif_queues(local, sdata),
616 reason, true);
617}
618
619void ieee80211_wake_vif_queues(struct ieee80211_local *local,
620 struct ieee80211_sub_if_data *sdata,
621 enum queue_stop_reason reason)
622{
623 ieee80211_wake_queues_by_reason(&local->hw,
624 ieee80211_get_vif_queues(local, sdata),
625 reason, true);
626}
627
Arik Nemtsov3384d752015-03-01 09:10:15 +0200628static void __iterate_interfaces(struct ieee80211_local *local,
629 u32 iter_flags,
630 void (*iterator)(void *data, u8 *mac,
631 struct ieee80211_vif *vif),
632 void *data)
Johannes Bergdabeb342007-11-09 01:57:29 +0100633{
Johannes Bergdabeb342007-11-09 01:57:29 +0100634 struct ieee80211_sub_if_data *sdata;
Arik Nemtsov3384d752015-03-01 09:10:15 +0200635 bool active_only = iter_flags & IEEE80211_IFACE_ITER_ACTIVE;
Johannes Bergdabeb342007-11-09 01:57:29 +0100636
Johannes Berge38bad42007-11-28 10:55:32 +0100637 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100638 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200639 case NL80211_IFTYPE_MONITOR:
Felix Fietkau31eba5b2013-05-28 13:01:53 +0200640 if (!(sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE))
641 continue;
642 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200643 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergdabeb342007-11-09 01:57:29 +0100644 continue;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200645 default:
Johannes Bergdabeb342007-11-09 01:57:29 +0100646 break;
647 }
Johannes Berg8b2c9822012-11-06 20:23:30 +0100648 if (!(iter_flags & IEEE80211_IFACE_ITER_RESUME_ALL) &&
Arik Nemtsov3384d752015-03-01 09:10:15 +0200649 active_only && !(sdata->flags & IEEE80211_SDATA_IN_DRIVER))
Johannes Berg8b2c9822012-11-06 20:23:30 +0100650 continue;
Arik Nemtsov3384d752015-03-01 09:10:15 +0200651 if (ieee80211_sdata_running(sdata) || !active_only)
Johannes Berg47846c92009-11-25 17:46:19 +0100652 iterator(data, sdata->vif.addr,
Johannes Berg32bfd352007-12-19 01:31:26 +0100653 &sdata->vif);
Johannes Bergdabeb342007-11-09 01:57:29 +0100654 }
Johannes Berge38bad42007-11-28 10:55:32 +0100655
Johannes Bergc7c71062013-08-21 22:07:20 +0200656 sdata = rcu_dereference_check(local->monitor_sdata,
657 lockdep_is_held(&local->iflist_mtx) ||
658 lockdep_rtnl_is_held());
Johannes Berg8b2c9822012-11-06 20:23:30 +0100659 if (sdata &&
Arik Nemtsov3384d752015-03-01 09:10:15 +0200660 (iter_flags & IEEE80211_IFACE_ITER_RESUME_ALL || !active_only ||
Johannes Berg8b2c9822012-11-06 20:23:30 +0100661 sdata->flags & IEEE80211_SDATA_IN_DRIVER))
Johannes Berg685fb722012-07-11 16:38:09 +0200662 iterator(data, sdata->vif.addr, &sdata->vif);
Johannes Bergc7c71062013-08-21 22:07:20 +0200663}
Johannes Berg685fb722012-07-11 16:38:09 +0200664
Arik Nemtsov3384d752015-03-01 09:10:15 +0200665void ieee80211_iterate_interfaces(
Johannes Bergc7c71062013-08-21 22:07:20 +0200666 struct ieee80211_hw *hw, u32 iter_flags,
667 void (*iterator)(void *data, u8 *mac,
668 struct ieee80211_vif *vif),
669 void *data)
670{
671 struct ieee80211_local *local = hw_to_local(hw);
672
673 mutex_lock(&local->iflist_mtx);
Arik Nemtsov3384d752015-03-01 09:10:15 +0200674 __iterate_interfaces(local, iter_flags, iterator, data);
Johannes Bergc7c71062013-08-21 22:07:20 +0200675 mutex_unlock(&local->iflist_mtx);
676}
Arik Nemtsov3384d752015-03-01 09:10:15 +0200677EXPORT_SYMBOL_GPL(ieee80211_iterate_interfaces);
Johannes Bergc7c71062013-08-21 22:07:20 +0200678
679void ieee80211_iterate_active_interfaces_atomic(
680 struct ieee80211_hw *hw, u32 iter_flags,
681 void (*iterator)(void *data, u8 *mac,
682 struct ieee80211_vif *vif),
683 void *data)
684{
685 struct ieee80211_local *local = hw_to_local(hw);
686
687 rcu_read_lock();
Arik Nemtsov3384d752015-03-01 09:10:15 +0200688 __iterate_interfaces(local, iter_flags | IEEE80211_IFACE_ITER_ACTIVE,
689 iterator, data);
Johannes Berge38bad42007-11-28 10:55:32 +0100690 rcu_read_unlock();
Johannes Bergdabeb342007-11-09 01:57:29 +0100691}
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200692EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic);
Johannes Berg37ffc8d2008-09-08 16:40:36 +0200693
Johannes Bergc7c71062013-08-21 22:07:20 +0200694void ieee80211_iterate_active_interfaces_rtnl(
695 struct ieee80211_hw *hw, u32 iter_flags,
696 void (*iterator)(void *data, u8 *mac,
697 struct ieee80211_vif *vif),
698 void *data)
699{
700 struct ieee80211_local *local = hw_to_local(hw);
701
702 ASSERT_RTNL();
703
Arik Nemtsov3384d752015-03-01 09:10:15 +0200704 __iterate_interfaces(local, iter_flags | IEEE80211_IFACE_ITER_ACTIVE,
705 iterator, data);
Johannes Bergc7c71062013-08-21 22:07:20 +0200706}
707EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_rtnl);
708
Arik Nemtsov0fc1e042014-10-22 12:30:59 +0300709static void __iterate_stations(struct ieee80211_local *local,
710 void (*iterator)(void *data,
711 struct ieee80211_sta *sta),
712 void *data)
713{
714 struct sta_info *sta;
715
716 list_for_each_entry_rcu(sta, &local->sta_list, list) {
717 if (!sta->uploaded)
718 continue;
719
720 iterator(data, &sta->sta);
721 }
722}
723
724void ieee80211_iterate_stations_atomic(struct ieee80211_hw *hw,
725 void (*iterator)(void *data,
726 struct ieee80211_sta *sta),
727 void *data)
728{
729 struct ieee80211_local *local = hw_to_local(hw);
730
731 rcu_read_lock();
732 __iterate_stations(local, iterator, data);
733 rcu_read_unlock();
734}
735EXPORT_SYMBOL_GPL(ieee80211_iterate_stations_atomic);
736
Johannes Bergad7e7182013-11-13 13:37:47 +0100737struct ieee80211_vif *wdev_to_ieee80211_vif(struct wireless_dev *wdev)
738{
739 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
740
741 if (!ieee80211_sdata_running(sdata) ||
742 !(sdata->flags & IEEE80211_SDATA_IN_DRIVER))
743 return NULL;
744 return &sdata->vif;
745}
746EXPORT_SYMBOL_GPL(wdev_to_ieee80211_vif);
747
Emmanuel Grumbachdc5a1ad2015-03-12 08:53:24 +0200748struct wireless_dev *ieee80211_vif_to_wdev(struct ieee80211_vif *vif)
749{
750 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
751
752 if (!ieee80211_sdata_running(sdata) ||
753 !(sdata->flags & IEEE80211_SDATA_IN_DRIVER))
754 return NULL;
755
756 return &sdata->wdev;
757}
758EXPORT_SYMBOL_GPL(ieee80211_vif_to_wdev);
759
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400760/*
761 * Nothing should have been stuffed into the workqueue during
Emmanuel Grumbach4afaff12015-01-22 23:32:46 +0200762 * the suspend->resume cycle. Since we can't check each caller
763 * of this function if we are already quiescing / suspended,
764 * check here and don't WARN since this can actually happen when
765 * the rx path (for example) is racing against __ieee80211_suspend
766 * and suspending / quiescing was set after the rx path checked
767 * them.
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400768 */
769static bool ieee80211_can_queue_work(struct ieee80211_local *local)
770{
Emmanuel Grumbach4afaff12015-01-22 23:32:46 +0200771 if (local->quiescing || (local->suspended && !local->resuming)) {
772 pr_warn("queueing ieee80211 work while going to suspend\n");
Johannes Bergceb99fe2009-11-19 14:29:39 +0100773 return false;
Emmanuel Grumbach4afaff12015-01-22 23:32:46 +0200774 }
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400775
776 return true;
777}
778
779void ieee80211_queue_work(struct ieee80211_hw *hw, struct work_struct *work)
780{
781 struct ieee80211_local *local = hw_to_local(hw);
782
783 if (!ieee80211_can_queue_work(local))
784 return;
785
786 queue_work(local->workqueue, work);
787}
788EXPORT_SYMBOL(ieee80211_queue_work);
789
790void ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
791 struct delayed_work *dwork,
792 unsigned long delay)
793{
794 struct ieee80211_local *local = hw_to_local(hw);
795
796 if (!ieee80211_can_queue_work(local))
797 return;
798
799 queue_delayed_work(local->workqueue, dwork, delay);
800}
801EXPORT_SYMBOL(ieee80211_queue_delayed_work);
802
Johannes Berg35d865a2013-05-28 10:54:03 +0200803u32 ieee802_11_parse_elems_crc(const u8 *start, size_t len, bool action,
Johannes Bergdd769862011-11-18 16:54:50 +0100804 struct ieee802_11_elems *elems,
805 u64 filter, u32 crc)
806{
807 size_t left = len;
Johannes Berg35d865a2013-05-28 10:54:03 +0200808 const u8 *pos = start;
Johannes Bergdd769862011-11-18 16:54:50 +0100809 bool calc_crc = filter != 0;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800810 DECLARE_BITMAP(seen_elems, 256);
Johannes Bergb2e506b2013-03-26 14:54:16 +0100811 const u8 *ie;
Johannes Bergdd769862011-11-18 16:54:50 +0100812
Paul Stewartfcff4f12012-02-23 17:59:53 -0800813 bitmap_zero(seen_elems, 256);
Johannes Bergdd769862011-11-18 16:54:50 +0100814 memset(elems, 0, sizeof(*elems));
815 elems->ie_start = start;
816 elems->total_len = len;
817
818 while (left >= 2) {
819 u8 id, elen;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800820 bool elem_parse_failed;
Johannes Bergdd769862011-11-18 16:54:50 +0100821
822 id = *pos++;
823 elen = *pos++;
824 left -= 2;
825
Paul Stewartfcff4f12012-02-23 17:59:53 -0800826 if (elen > left) {
827 elems->parse_error = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100828 break;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800829 }
830
Johannes Berg9690fb12012-10-24 14:19:53 +0200831 switch (id) {
832 case WLAN_EID_SSID:
833 case WLAN_EID_SUPP_RATES:
834 case WLAN_EID_FH_PARAMS:
835 case WLAN_EID_DS_PARAMS:
836 case WLAN_EID_CF_PARAMS:
837 case WLAN_EID_TIM:
838 case WLAN_EID_IBSS_PARAMS:
839 case WLAN_EID_CHALLENGE:
840 case WLAN_EID_RSN:
841 case WLAN_EID_ERP_INFO:
842 case WLAN_EID_EXT_SUPP_RATES:
843 case WLAN_EID_HT_CAPABILITY:
844 case WLAN_EID_HT_OPERATION:
845 case WLAN_EID_VHT_CAPABILITY:
846 case WLAN_EID_VHT_OPERATION:
847 case WLAN_EID_MESH_ID:
848 case WLAN_EID_MESH_CONFIG:
849 case WLAN_EID_PEER_MGMT:
850 case WLAN_EID_PREQ:
851 case WLAN_EID_PREP:
852 case WLAN_EID_PERR:
853 case WLAN_EID_RANN:
854 case WLAN_EID_CHANNEL_SWITCH:
855 case WLAN_EID_EXT_CHANSWITCH_ANN:
856 case WLAN_EID_COUNTRY:
857 case WLAN_EID_PWR_CONSTRAINT:
858 case WLAN_EID_TIMEOUT_INTERVAL:
Johannes Berg85220d72013-03-25 18:29:27 +0100859 case WLAN_EID_SECONDARY_CHANNEL_OFFSET:
Johannes Bergb2e506b2013-03-26 14:54:16 +0100860 case WLAN_EID_WIDE_BW_CHANNEL_SWITCH:
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -0700861 case WLAN_EID_CHAN_SWITCH_PARAM:
Arik Nemtsov9041c1f2014-11-09 18:50:15 +0200862 case WLAN_EID_EXT_CAPABILITY:
Arik Nemtsov538375842014-11-09 18:50:18 +0200863 case WLAN_EID_CHAN_SWITCH_TIMING:
864 case WLAN_EID_LINK_ID:
Johannes Bergb2e506b2013-03-26 14:54:16 +0100865 /*
866 * not listing WLAN_EID_CHANNEL_SWITCH_WRAPPER -- it seems possible
867 * that if the content gets bigger it might be needed more than once
868 */
Johannes Berg9690fb12012-10-24 14:19:53 +0200869 if (test_bit(id, seen_elems)) {
870 elems->parse_error = true;
871 left -= elen;
872 pos += elen;
873 continue;
874 }
875 break;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800876 }
Johannes Bergdd769862011-11-18 16:54:50 +0100877
878 if (calc_crc && id < 64 && (filter & (1ULL << id)))
879 crc = crc32_be(crc, pos - 2, elen + 2);
880
Paul Stewartfcff4f12012-02-23 17:59:53 -0800881 elem_parse_failed = false;
882
Johannes Bergdd769862011-11-18 16:54:50 +0100883 switch (id) {
Arik Nemtsov538375842014-11-09 18:50:18 +0200884 case WLAN_EID_LINK_ID:
885 if (elen + 2 != sizeof(struct ieee80211_tdls_lnkie)) {
886 elem_parse_failed = true;
887 break;
888 }
889 elems->lnk_id = (void *)(pos - 2);
890 break;
891 case WLAN_EID_CHAN_SWITCH_TIMING:
892 if (elen != sizeof(struct ieee80211_ch_switch_timing)) {
893 elem_parse_failed = true;
894 break;
895 }
896 elems->ch_sw_timing = (void *)pos;
897 break;
Arik Nemtsov9041c1f2014-11-09 18:50:15 +0200898 case WLAN_EID_EXT_CAPABILITY:
899 elems->ext_capab = pos;
900 elems->ext_capab_len = elen;
901 break;
Johannes Bergdd769862011-11-18 16:54:50 +0100902 case WLAN_EID_SSID:
903 elems->ssid = pos;
904 elems->ssid_len = elen;
905 break;
906 case WLAN_EID_SUPP_RATES:
907 elems->supp_rates = pos;
908 elems->supp_rates_len = elen;
909 break;
Johannes Bergdd769862011-11-18 16:54:50 +0100910 case WLAN_EID_DS_PARAMS:
Johannes Berg1cd8e882013-03-27 14:30:12 +0100911 if (elen >= 1)
912 elems->ds_params = pos;
913 else
914 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100915 break;
Johannes Bergdd769862011-11-18 16:54:50 +0100916 case WLAN_EID_TIM:
917 if (elen >= sizeof(struct ieee80211_tim_ie)) {
918 elems->tim = (void *)pos;
919 elems->tim_len = elen;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800920 } else
921 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100922 break;
Johannes Bergdd769862011-11-18 16:54:50 +0100923 case WLAN_EID_CHALLENGE:
924 elems->challenge = pos;
925 elems->challenge_len = elen;
926 break;
927 case WLAN_EID_VENDOR_SPECIFIC:
928 if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 &&
929 pos[2] == 0xf2) {
930 /* Microsoft OUI (00:50:F2) */
931
932 if (calc_crc)
933 crc = crc32_be(crc, pos - 2, elen + 2);
934
Johannes Berg441a33b2013-02-12 16:27:04 +0100935 if (elen >= 5 && pos[3] == 2) {
Johannes Bergdd769862011-11-18 16:54:50 +0100936 /* OUI Type 2 - WMM IE */
937 if (pos[4] == 0) {
938 elems->wmm_info = pos;
939 elems->wmm_info_len = elen;
940 } else if (pos[4] == 1) {
941 elems->wmm_param = pos;
942 elems->wmm_param_len = elen;
943 }
944 }
945 }
946 break;
947 case WLAN_EID_RSN:
948 elems->rsn = pos;
949 elems->rsn_len = elen;
950 break;
951 case WLAN_EID_ERP_INFO:
Johannes Berg1946bed2013-03-27 14:31:53 +0100952 if (elen >= 1)
953 elems->erp_info = pos;
954 else
955 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100956 break;
957 case WLAN_EID_EXT_SUPP_RATES:
958 elems->ext_supp_rates = pos;
959 elems->ext_supp_rates_len = elen;
960 break;
961 case WLAN_EID_HT_CAPABILITY:
962 if (elen >= sizeof(struct ieee80211_ht_cap))
963 elems->ht_cap_elem = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800964 else
965 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100966 break;
Johannes Berg074d46d2012-03-15 19:45:16 +0100967 case WLAN_EID_HT_OPERATION:
968 if (elen >= sizeof(struct ieee80211_ht_operation))
969 elems->ht_operation = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800970 else
971 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100972 break;
Mahesh Palivela818255e2012-10-10 11:33:04 +0000973 case WLAN_EID_VHT_CAPABILITY:
974 if (elen >= sizeof(struct ieee80211_vht_cap))
975 elems->vht_cap_elem = (void *)pos;
976 else
977 elem_parse_failed = true;
978 break;
979 case WLAN_EID_VHT_OPERATION:
980 if (elen >= sizeof(struct ieee80211_vht_operation))
981 elems->vht_operation = (void *)pos;
982 else
983 elem_parse_failed = true;
984 break;
Johannes Bergbee7f5862013-02-07 22:24:55 +0100985 case WLAN_EID_OPMODE_NOTIF:
986 if (elen > 0)
987 elems->opmode_notif = pos;
988 else
989 elem_parse_failed = true;
990 break;
Johannes Bergdd769862011-11-18 16:54:50 +0100991 case WLAN_EID_MESH_ID:
992 elems->mesh_id = pos;
993 elems->mesh_id_len = elen;
994 break;
995 case WLAN_EID_MESH_CONFIG:
996 if (elen >= sizeof(struct ieee80211_meshconf_ie))
997 elems->mesh_config = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800998 else
999 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +01001000 break;
1001 case WLAN_EID_PEER_MGMT:
1002 elems->peering = pos;
1003 elems->peering_len = elen;
1004 break;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001005 case WLAN_EID_MESH_AWAKE_WINDOW:
1006 if (elen >= 2)
1007 elems->awake_window = (void *)pos;
1008 break;
Johannes Bergdd769862011-11-18 16:54:50 +01001009 case WLAN_EID_PREQ:
1010 elems->preq = pos;
1011 elems->preq_len = elen;
1012 break;
1013 case WLAN_EID_PREP:
1014 elems->prep = pos;
1015 elems->prep_len = elen;
1016 break;
1017 case WLAN_EID_PERR:
1018 elems->perr = pos;
1019 elems->perr_len = elen;
1020 break;
1021 case WLAN_EID_RANN:
1022 if (elen >= sizeof(struct ieee80211_rann_ie))
1023 elems->rann = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -08001024 else
1025 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +01001026 break;
1027 case WLAN_EID_CHANNEL_SWITCH:
Johannes Berg5bc14202012-08-01 16:13:02 +02001028 if (elen != sizeof(struct ieee80211_channel_sw_ie)) {
1029 elem_parse_failed = true;
1030 break;
1031 }
1032 elems->ch_switch_ie = (void *)pos;
Johannes Bergdd769862011-11-18 16:54:50 +01001033 break;
Johannes Bergb4f286a12013-03-26 14:13:58 +01001034 case WLAN_EID_EXT_CHANSWITCH_ANN:
1035 if (elen != sizeof(struct ieee80211_ext_chansw_ie)) {
1036 elem_parse_failed = true;
1037 break;
1038 }
1039 elems->ext_chansw_ie = (void *)pos;
1040 break;
Johannes Berg85220d72013-03-25 18:29:27 +01001041 case WLAN_EID_SECONDARY_CHANNEL_OFFSET:
1042 if (elen != sizeof(struct ieee80211_sec_chan_offs_ie)) {
1043 elem_parse_failed = true;
1044 break;
1045 }
1046 elems->sec_chan_offs = (void *)pos;
1047 break;
Chun-Yeow Yeoh8f2535b2013-10-14 19:08:27 -07001048 case WLAN_EID_CHAN_SWITCH_PARAM:
1049 if (elen !=
1050 sizeof(*elems->mesh_chansw_params_ie)) {
1051 elem_parse_failed = true;
1052 break;
1053 }
1054 elems->mesh_chansw_params_ie = (void *)pos;
1055 break;
Johannes Bergb2e506b2013-03-26 14:54:16 +01001056 case WLAN_EID_WIDE_BW_CHANNEL_SWITCH:
1057 if (!action ||
1058 elen != sizeof(*elems->wide_bw_chansw_ie)) {
1059 elem_parse_failed = true;
1060 break;
1061 }
1062 elems->wide_bw_chansw_ie = (void *)pos;
1063 break;
1064 case WLAN_EID_CHANNEL_SWITCH_WRAPPER:
1065 if (action) {
1066 elem_parse_failed = true;
1067 break;
1068 }
1069 /*
1070 * This is a bit tricky, but as we only care about
1071 * the wide bandwidth channel switch element, so
1072 * just parse it out manually.
1073 */
1074 ie = cfg80211_find_ie(WLAN_EID_WIDE_BW_CHANNEL_SWITCH,
1075 pos, elen);
1076 if (ie) {
1077 if (ie[1] == sizeof(*elems->wide_bw_chansw_ie))
1078 elems->wide_bw_chansw_ie =
1079 (void *)(ie + 2);
1080 else
1081 elem_parse_failed = true;
1082 }
1083 break;
Johannes Bergdd769862011-11-18 16:54:50 +01001084 case WLAN_EID_COUNTRY:
1085 elems->country_elem = pos;
1086 elems->country_elem_len = elen;
1087 break;
1088 case WLAN_EID_PWR_CONSTRAINT:
Johannes Berg761a48d2012-09-05 13:07:00 +02001089 if (elen != 1) {
1090 elem_parse_failed = true;
1091 break;
1092 }
Johannes Bergdd769862011-11-18 16:54:50 +01001093 elems->pwr_constr_elem = pos;
Johannes Bergdd769862011-11-18 16:54:50 +01001094 break;
Steinar H. Gundersonc8d65912014-09-03 06:48:37 -07001095 case WLAN_EID_CISCO_VENDOR_SPECIFIC:
1096 /* Lots of different options exist, but we only care
1097 * about the Dynamic Transmit Power Control element.
1098 * First check for the Cisco OUI, then for the DTPC
1099 * tag (0x00).
1100 */
1101 if (elen < 4) {
1102 elem_parse_failed = true;
1103 break;
1104 }
1105
1106 if (pos[0] != 0x00 || pos[1] != 0x40 ||
1107 pos[2] != 0x96 || pos[3] != 0x00)
1108 break;
1109
1110 if (elen != 6) {
1111 elem_parse_failed = true;
1112 break;
1113 }
1114
1115 if (calc_crc)
1116 crc = crc32_be(crc, pos - 2, elen + 2);
1117
1118 elems->cisco_dtpc_elem = pos;
1119 break;
Johannes Bergdd769862011-11-18 16:54:50 +01001120 case WLAN_EID_TIMEOUT_INTERVAL:
Johannes Berg79ba1d82013-03-27 14:38:07 +01001121 if (elen >= sizeof(struct ieee80211_timeout_interval_ie))
1122 elems->timeout_int = (void *)pos;
1123 else
1124 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +01001125 break;
1126 default:
1127 break;
1128 }
1129
Paul Stewartfcff4f12012-02-23 17:59:53 -08001130 if (elem_parse_failed)
1131 elems->parse_error = true;
1132 else
Johannes Berg5df45692012-10-24 14:22:37 +02001133 __set_bit(id, seen_elems);
Paul Stewartfcff4f12012-02-23 17:59:53 -08001134
Johannes Bergdd769862011-11-18 16:54:50 +01001135 left -= elen;
1136 pos += elen;
1137 }
1138
Paul Stewartfcff4f12012-02-23 17:59:53 -08001139 if (left != 0)
1140 elems->parse_error = true;
1141
Johannes Bergdd769862011-11-18 16:54:50 +01001142 return crc;
1143}
1144
Johannes Berg3abead52012-03-02 15:56:59 +01001145void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
1146 bool bss_notify)
Johannes Berg5825fe102008-09-09 12:56:01 +02001147{
1148 struct ieee80211_local *local = sdata->local;
1149 struct ieee80211_tx_queue_params qparam;
Johannes Berg55de9082012-07-26 17:24:39 +02001150 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg54bcbc62012-03-28 11:04:25 +02001151 int ac;
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001152 bool use_11b, enable_qos;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001153 bool is_ocb; /* Use another EDCA parameters if dot11OCBActivated=true */
Johannes Bergaa837e12009-05-07 16:16:24 +02001154 int aCWmin, aCWmax;
Johannes Berg5825fe102008-09-09 12:56:01 +02001155
1156 if (!local->ops->conf_tx)
1157 return;
1158
Johannes Berg54bcbc62012-03-28 11:04:25 +02001159 if (local->hw.queues < IEEE80211_NUM_ACS)
1160 return;
1161
Johannes Berg5825fe102008-09-09 12:56:01 +02001162 memset(&qparam, 0, sizeof(qparam));
1163
Johannes Berg55de9082012-07-26 17:24:39 +02001164 rcu_read_lock();
1165 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1166 use_11b = (chanctx_conf &&
Johannes Berg4bf88532012-11-09 11:39:59 +01001167 chanctx_conf->def.chan->band == IEEE80211_BAND_2GHZ) &&
Johannes Bergaa837e12009-05-07 16:16:24 +02001168 !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE);
Johannes Berg55de9082012-07-26 17:24:39 +02001169 rcu_read_unlock();
Johannes Berg5825fe102008-09-09 12:56:01 +02001170
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001171 /*
1172 * By default disable QoS in STA mode for old access points, which do
1173 * not support 802.11e. New APs will provide proper queue parameters,
1174 * that we will configure later.
1175 */
1176 enable_qos = (sdata->vif.type != NL80211_IFTYPE_STATION);
1177
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001178 is_ocb = (sdata->vif.type == NL80211_IFTYPE_OCB);
1179
Fred Zhou1f4ffde2013-09-09 23:03:41 +08001180 /* Set defaults according to 802.11-2007 Table 7-37 */
1181 aCWmax = 1023;
1182 if (use_11b)
1183 aCWmin = 31;
1184 else
1185 aCWmin = 15;
Johannes Berg5825fe102008-09-09 12:56:01 +02001186
Fred Zhou1f4ffde2013-09-09 23:03:41 +08001187 /* Confiure old 802.11b/g medium access rules. */
1188 qparam.cw_max = aCWmax;
1189 qparam.cw_min = aCWmin;
1190 qparam.txop = 0;
1191 qparam.aifs = 2;
1192
1193 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1194 /* Update if QoS is enabled. */
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001195 if (enable_qos) {
1196 switch (ac) {
1197 case IEEE80211_AC_BK:
1198 qparam.cw_max = aCWmax;
1199 qparam.cw_min = aCWmin;
1200 qparam.txop = 0;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001201 if (is_ocb)
1202 qparam.aifs = 9;
1203 else
1204 qparam.aifs = 7;
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001205 break;
1206 /* never happens but let's not leave undefined */
1207 default:
1208 case IEEE80211_AC_BE:
1209 qparam.cw_max = aCWmax;
1210 qparam.cw_min = aCWmin;
1211 qparam.txop = 0;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001212 if (is_ocb)
1213 qparam.aifs = 6;
1214 else
1215 qparam.aifs = 3;
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001216 break;
1217 case IEEE80211_AC_VI:
1218 qparam.cw_max = aCWmin;
1219 qparam.cw_min = (aCWmin + 1) / 2 - 1;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001220 if (is_ocb)
1221 qparam.txop = 0;
1222 else if (use_11b)
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001223 qparam.txop = 6016/32;
1224 else
1225 qparam.txop = 3008/32;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001226
1227 if (is_ocb)
1228 qparam.aifs = 3;
1229 else
1230 qparam.aifs = 2;
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001231 break;
1232 case IEEE80211_AC_VO:
1233 qparam.cw_max = (aCWmin + 1) / 2 - 1;
1234 qparam.cw_min = (aCWmin + 1) / 4 - 1;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001235 if (is_ocb)
1236 qparam.txop = 0;
1237 else if (use_11b)
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001238 qparam.txop = 3264/32;
1239 else
1240 qparam.txop = 1504/32;
1241 qparam.aifs = 2;
1242 break;
1243 }
Johannes Bergaa837e12009-05-07 16:16:24 +02001244 }
Johannes Berg5825fe102008-09-09 12:56:01 +02001245
Kalle Valoab133152010-01-12 10:42:31 +02001246 qparam.uapsd = false;
1247
Johannes Berg54bcbc62012-03-28 11:04:25 +02001248 sdata->tx_conf[ac] = qparam;
1249 drv_conf_tx(local, sdata, ac, &qparam);
Johannes Bergaa837e12009-05-07 16:16:24 +02001250 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001251
Johannes Bergf142c6b2012-06-18 20:07:15 +02001252 if (sdata->vif.type != NL80211_IFTYPE_MONITOR &&
1253 sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE) {
Stanislaw Gruszkaa8ce8542012-05-30 10:56:46 +02001254 sdata->vif.bss_conf.qos = enable_qos;
Johannes Berg3abead52012-03-02 15:56:59 +01001255 if (bss_notify)
1256 ieee80211_bss_info_change_notify(sdata,
1257 BSS_CHANGED_QOS);
Sujithd9734972010-07-23 10:47:11 +05301258 }
Johannes Berg5825fe102008-09-09 12:56:01 +02001259}
Johannes Berge50db652008-09-09 15:07:09 +02001260
Johannes Berg46900292009-02-15 12:44:28 +01001261void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
Jouni Malinen700e8ea2012-09-30 19:29:37 +03001262 u16 transaction, u16 auth_alg, u16 status,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001263 const u8 *extra, size_t extra_len, const u8 *da,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001264 const u8 *bssid, const u8 *key, u8 key_len, u8 key_idx,
1265 u32 tx_flags)
Johannes Berg46900292009-02-15 12:44:28 +01001266{
1267 struct ieee80211_local *local = sdata->local;
1268 struct sk_buff *skb;
1269 struct ieee80211_mgmt *mgmt;
Johannes Bergfffd0932009-07-08 14:22:54 +02001270 int err;
Johannes Berg46900292009-02-15 12:44:28 +01001271
Fred Zhou15e230a2013-09-24 10:33:01 +08001272 /* 24 + 6 = header + auth_algo + auth_transaction + status_code */
Max Stepanov744462a2014-06-10 20:00:08 +03001273 skb = dev_alloc_skb(local->hw.extra_tx_headroom + IEEE80211_WEP_IV_LEN +
1274 24 + 6 + extra_len + IEEE80211_WEP_ICV_LEN);
Joe Perchesd15b8452011-08-29 14:17:31 -07001275 if (!skb)
Johannes Berg46900292009-02-15 12:44:28 +01001276 return;
Joe Perchesd15b8452011-08-29 14:17:31 -07001277
Max Stepanov744462a2014-06-10 20:00:08 +03001278 skb_reserve(skb, local->hw.extra_tx_headroom + IEEE80211_WEP_IV_LEN);
Johannes Berg46900292009-02-15 12:44:28 +01001279
1280 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
1281 memset(mgmt, 0, 24 + 6);
1282 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1283 IEEE80211_STYPE_AUTH);
Antonio Quartulliefa6a092012-01-09 19:43:06 +01001284 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01001285 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01001286 memcpy(mgmt->bssid, bssid, ETH_ALEN);
1287 mgmt->u.auth.auth_alg = cpu_to_le16(auth_alg);
1288 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
Jouni Malinen700e8ea2012-09-30 19:29:37 +03001289 mgmt->u.auth.status_code = cpu_to_le16(status);
Johannes Berg46900292009-02-15 12:44:28 +01001290 if (extra)
1291 memcpy(skb_put(skb, extra_len), extra, extra_len);
Johannes Berg46900292009-02-15 12:44:28 +01001292
Johannes Bergfffd0932009-07-08 14:22:54 +02001293 if (auth_alg == WLAN_AUTH_SHARED_KEY && transaction == 3) {
1294 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
1295 err = ieee80211_wep_encrypt(local, skb, key, key_len, key_idx);
1296 WARN_ON(err);
1297 }
1298
Johannes Berg1672c0e32013-01-29 15:02:27 +01001299 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1300 tx_flags;
Johannes Berg62ae67b2009-11-18 18:42:05 +01001301 ieee80211_tx_skb(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +01001302}
1303
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001304void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
1305 const u8 *bssid, u16 stype, u16 reason,
1306 bool send_frame, u8 *frame_buf)
1307{
1308 struct ieee80211_local *local = sdata->local;
1309 struct sk_buff *skb;
1310 struct ieee80211_mgmt *mgmt = (void *)frame_buf;
1311
1312 /* build frame */
1313 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
1314 mgmt->duration = 0; /* initialize only */
1315 mgmt->seq_ctrl = 0; /* initialize only */
1316 memcpy(mgmt->da, bssid, ETH_ALEN);
1317 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
1318 memcpy(mgmt->bssid, bssid, ETH_ALEN);
1319 /* u.deauth.reason_code == u.disassoc.reason_code */
1320 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
1321
1322 if (send_frame) {
1323 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
1324 IEEE80211_DEAUTH_FRAME_LEN);
1325 if (!skb)
1326 return;
1327
1328 skb_reserve(skb, local->hw.extra_tx_headroom);
1329
1330 /* copy in frame */
1331 memcpy(skb_put(skb, IEEE80211_DEAUTH_FRAME_LEN),
1332 mgmt, IEEE80211_DEAUTH_FRAME_LEN);
1333
1334 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
1335 !(sdata->u.mgd.flags & IEEE80211_STA_MFP_ENABLED))
1336 IEEE80211_SKB_CB(skb)->flags |=
1337 IEEE80211_TX_INTFL_DONT_ENCRYPT;
1338
1339 ieee80211_tx_skb(sdata, skb);
1340 }
1341}
1342
David Spinadelc56ef672014-02-05 15:21:13 +02001343static int ieee80211_build_preq_ies_band(struct ieee80211_local *local,
1344 u8 *buffer, size_t buffer_len,
1345 const u8 *ie, size_t ie_len,
1346 enum ieee80211_band band,
1347 u32 rate_mask,
1348 struct cfg80211_chan_def *chandef,
1349 size_t *offset)
Johannes Bergde95a54b2009-04-01 11:58:36 +02001350{
1351 struct ieee80211_supported_band *sband;
Johannes Bergc604b9f2012-11-29 12:45:18 +01001352 u8 *pos = buffer, *end = buffer + buffer_len;
David Spinadelc56ef672014-02-05 15:21:13 +02001353 size_t noffset;
Johannes Berg8e664fb2009-12-23 13:15:38 +01001354 int supp_rates_len, i;
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001355 u8 rates[32];
1356 int num_rates;
1357 int ext_rates_len;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001358 int shift;
1359 u32 rate_flags;
Johannes Berg40a11ca2014-11-24 15:49:44 +01001360 bool have_80mhz = false;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001361
David Spinadelc56ef672014-02-05 15:21:13 +02001362 *offset = 0;
1363
Johannes Berg4d36ec52009-10-27 20:59:55 +01001364 sband = local->hw.wiphy->bands[band];
Arik Nemtsovd811b3d2012-07-09 19:57:28 +03001365 if (WARN_ON_ONCE(!sband))
1366 return 0;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001367
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001368 rate_flags = ieee80211_chandef_rate_flags(chandef);
1369 shift = ieee80211_chandef_get_shift(chandef);
1370
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001371 num_rates = 0;
1372 for (i = 0; i < sband->n_bitrates; i++) {
1373 if ((BIT(i) & rate_mask) == 0)
1374 continue; /* skip rate */
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001375 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
1376 continue;
1377
1378 rates[num_rates++] =
1379 (u8) DIV_ROUND_UP(sband->bitrates[i].bitrate,
1380 (1 << shift) * 5);
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001381 }
1382
1383 supp_rates_len = min_t(int, num_rates, 8);
Johannes Berg8e664fb2009-12-23 13:15:38 +01001384
Johannes Bergc604b9f2012-11-29 12:45:18 +01001385 if (end - pos < 2 + supp_rates_len)
1386 goto out_err;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001387 *pos++ = WLAN_EID_SUPP_RATES;
Johannes Berg8e664fb2009-12-23 13:15:38 +01001388 *pos++ = supp_rates_len;
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001389 memcpy(pos, rates, supp_rates_len);
1390 pos += supp_rates_len;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001391
Johannes Berg8e664fb2009-12-23 13:15:38 +01001392 /* insert "request information" if in custom IEs */
1393 if (ie && ie_len) {
1394 static const u8 before_extrates[] = {
1395 WLAN_EID_SSID,
1396 WLAN_EID_SUPP_RATES,
1397 WLAN_EID_REQUEST,
1398 };
1399 noffset = ieee80211_ie_split(ie, ie_len,
1400 before_extrates,
1401 ARRAY_SIZE(before_extrates),
David Spinadelc56ef672014-02-05 15:21:13 +02001402 *offset);
1403 if (end - pos < noffset - *offset)
Johannes Bergc604b9f2012-11-29 12:45:18 +01001404 goto out_err;
David Spinadelc56ef672014-02-05 15:21:13 +02001405 memcpy(pos, ie + *offset, noffset - *offset);
1406 pos += noffset - *offset;
1407 *offset = noffset;
Johannes Berg8e664fb2009-12-23 13:15:38 +01001408 }
Johannes Bergde95a54b2009-04-01 11:58:36 +02001409
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001410 ext_rates_len = num_rates - supp_rates_len;
1411 if (ext_rates_len > 0) {
Johannes Bergc604b9f2012-11-29 12:45:18 +01001412 if (end - pos < 2 + ext_rates_len)
1413 goto out_err;
Johannes Berg8e664fb2009-12-23 13:15:38 +01001414 *pos++ = WLAN_EID_EXT_SUPP_RATES;
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001415 *pos++ = ext_rates_len;
1416 memcpy(pos, rates + supp_rates_len, ext_rates_len);
1417 pos += ext_rates_len;
Johannes Berg8e664fb2009-12-23 13:15:38 +01001418 }
1419
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001420 if (chandef->chan && sband->band == IEEE80211_BAND_2GHZ) {
Johannes Bergc604b9f2012-11-29 12:45:18 +01001421 if (end - pos < 3)
1422 goto out_err;
Jouni Malinen651b5222010-08-28 19:37:51 +03001423 *pos++ = WLAN_EID_DS_PARAMS;
1424 *pos++ = 1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001425 *pos++ = ieee80211_frequency_to_channel(
1426 chandef->chan->center_freq);
Jouni Malinen651b5222010-08-28 19:37:51 +03001427 }
1428
Johannes Berg8e664fb2009-12-23 13:15:38 +01001429 /* insert custom IEs that go before HT */
1430 if (ie && ie_len) {
1431 static const u8 before_ht[] = {
1432 WLAN_EID_SSID,
1433 WLAN_EID_SUPP_RATES,
1434 WLAN_EID_REQUEST,
1435 WLAN_EID_EXT_SUPP_RATES,
1436 WLAN_EID_DS_PARAMS,
1437 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
1438 };
1439 noffset = ieee80211_ie_split(ie, ie_len,
1440 before_ht, ARRAY_SIZE(before_ht),
David Spinadelc56ef672014-02-05 15:21:13 +02001441 *offset);
1442 if (end - pos < noffset - *offset)
Johannes Bergc604b9f2012-11-29 12:45:18 +01001443 goto out_err;
David Spinadelc56ef672014-02-05 15:21:13 +02001444 memcpy(pos, ie + *offset, noffset - *offset);
1445 pos += noffset - *offset;
1446 *offset = noffset;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001447 }
1448
Johannes Bergc604b9f2012-11-29 12:45:18 +01001449 if (sband->ht_cap.ht_supported) {
1450 if (end - pos < 2 + sizeof(struct ieee80211_ht_cap))
1451 goto out_err;
Ben Greearef96a8422011-11-18 11:32:00 -08001452 pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
1453 sband->ht_cap.cap);
Johannes Bergc604b9f2012-11-29 12:45:18 +01001454 }
Johannes Berg5ef2d412009-03-31 12:12:07 +02001455
Johannes Bergde95a54b2009-04-01 11:58:36 +02001456 /*
1457 * If adding more here, adjust code in main.c
1458 * that calculates local->scan_ies_len.
1459 */
1460
Johannes Berg4d952302014-02-04 09:48:34 +01001461 /* insert custom IEs that go before VHT */
Johannes Berg8e664fb2009-12-23 13:15:38 +01001462 if (ie && ie_len) {
Johannes Berg4d952302014-02-04 09:48:34 +01001463 static const u8 before_vht[] = {
1464 WLAN_EID_SSID,
1465 WLAN_EID_SUPP_RATES,
1466 WLAN_EID_REQUEST,
1467 WLAN_EID_EXT_SUPP_RATES,
1468 WLAN_EID_DS_PARAMS,
1469 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
1470 WLAN_EID_HT_CAPABILITY,
1471 WLAN_EID_BSS_COEX_2040,
1472 WLAN_EID_EXT_CAPABILITY,
1473 WLAN_EID_SSID_LIST,
1474 WLAN_EID_CHANNEL_USAGE,
1475 WLAN_EID_INTERWORKING,
1476 /* mesh ID can't happen here */
1477 /* 60 GHz can't happen here right now */
1478 };
1479 noffset = ieee80211_ie_split(ie, ie_len,
1480 before_vht, ARRAY_SIZE(before_vht),
David Spinadelc56ef672014-02-05 15:21:13 +02001481 *offset);
1482 if (end - pos < noffset - *offset)
Johannes Bergc604b9f2012-11-29 12:45:18 +01001483 goto out_err;
David Spinadelc56ef672014-02-05 15:21:13 +02001484 memcpy(pos, ie + *offset, noffset - *offset);
1485 pos += noffset - *offset;
1486 *offset = noffset;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001487 }
1488
Johannes Berg40a11ca2014-11-24 15:49:44 +01001489 /* Check if any channel in this sband supports at least 80 MHz */
1490 for (i = 0; i < sband->n_channels; i++) {
Arik Nemtsovfa44b982015-01-01 13:43:17 +02001491 if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED |
1492 IEEE80211_CHAN_NO_80MHZ))
1493 continue;
1494
1495 have_80mhz = true;
1496 break;
Johannes Berg40a11ca2014-11-24 15:49:44 +01001497 }
1498
1499 if (sband->vht_cap.vht_supported && have_80mhz) {
Johannes Bergc604b9f2012-11-29 12:45:18 +01001500 if (end - pos < 2 + sizeof(struct ieee80211_vht_cap))
1501 goto out_err;
Mahesh Palivelaba0afa22012-07-02 11:25:12 +00001502 pos = ieee80211_ie_build_vht_cap(pos, &sband->vht_cap,
1503 sband->vht_cap.cap);
Johannes Bergc604b9f2012-11-29 12:45:18 +01001504 }
Mahesh Palivelaba0afa22012-07-02 11:25:12 +00001505
Johannes Bergde95a54b2009-04-01 11:58:36 +02001506 return pos - buffer;
Johannes Bergc604b9f2012-11-29 12:45:18 +01001507 out_err:
1508 WARN_ONCE(1, "not enough space for preq IEs\n");
1509 return pos - buffer;
Johannes Bergde95a54b2009-04-01 11:58:36 +02001510}
1511
David Spinadelc56ef672014-02-05 15:21:13 +02001512int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
1513 size_t buffer_len,
1514 struct ieee80211_scan_ies *ie_desc,
1515 const u8 *ie, size_t ie_len,
1516 u8 bands_used, u32 *rate_masks,
1517 struct cfg80211_chan_def *chandef)
1518{
1519 size_t pos = 0, old_pos = 0, custom_ie_offset = 0;
1520 int i;
1521
1522 memset(ie_desc, 0, sizeof(*ie_desc));
1523
1524 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
1525 if (bands_used & BIT(i)) {
1526 pos += ieee80211_build_preq_ies_band(local,
1527 buffer + pos,
1528 buffer_len - pos,
1529 ie, ie_len, i,
1530 rate_masks[i],
1531 chandef,
1532 &custom_ie_offset);
1533 ie_desc->ies[i] = buffer + old_pos;
1534 ie_desc->len[i] = pos - old_pos;
1535 old_pos = pos;
1536 }
1537 }
1538
1539 /* add any remaining custom IEs */
1540 if (ie && ie_len) {
1541 if (WARN_ONCE(buffer_len - pos < ie_len - custom_ie_offset,
1542 "not enough space for preq custom IEs\n"))
1543 return pos;
1544 memcpy(buffer + pos, ie + custom_ie_offset,
1545 ie_len - custom_ie_offset);
1546 ie_desc->common_ies = buffer + pos;
1547 ie_desc->common_ie_len = ie_len - custom_ie_offset;
1548 pos += ie_len - custom_ie_offset;
1549 }
1550
1551 return pos;
1552};
1553
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001554struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
Johannes Berga344d672014-06-12 22:24:31 +02001555 const u8 *src, const u8 *dst,
1556 u32 ratemask,
Johannes Berg6b778632012-07-23 14:53:27 +02001557 struct ieee80211_channel *chan,
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001558 const u8 *ssid, size_t ssid_len,
Paul Stewarta806c552011-06-23 09:00:11 -08001559 const u8 *ie, size_t ie_len,
1560 bool directed)
Johannes Berg46900292009-02-15 12:44:28 +01001561{
1562 struct ieee80211_local *local = sdata->local;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001563 struct cfg80211_chan_def chandef;
Johannes Berg46900292009-02-15 12:44:28 +01001564 struct sk_buff *skb;
1565 struct ieee80211_mgmt *mgmt;
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001566 int ies_len;
David Spinadelc56ef672014-02-05 15:21:13 +02001567 u32 rate_masks[IEEE80211_NUM_BANDS] = {};
1568 struct ieee80211_scan_ies dummy_ie_desc;
Johannes Berg46900292009-02-15 12:44:28 +01001569
Paul Stewarta806c552011-06-23 09:00:11 -08001570 /*
1571 * Do not send DS Channel parameter for directed probe requests
1572 * in order to maximize the chance that we get a response. Some
1573 * badly-behaved APs don't respond when this parameter is included.
1574 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001575 chandef.width = sdata->vif.bss_conf.chandef.width;
Paul Stewarta806c552011-06-23 09:00:11 -08001576 if (directed)
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001577 chandef.chan = NULL;
Paul Stewarta806c552011-06-23 09:00:11 -08001578 else
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001579 chandef.chan = chan;
Jouni Malinen651b5222010-08-28 19:37:51 +03001580
Johannes Berga344d672014-06-12 22:24:31 +02001581 skb = ieee80211_probereq_get(&local->hw, src, ssid, ssid_len,
1582 100 + ie_len);
Johannes Berg5b2bbf72011-11-08 13:04:41 +01001583 if (!skb)
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001584 return NULL;
1585
David Spinadelc56ef672014-02-05 15:21:13 +02001586 rate_masks[chan->band] = ratemask;
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001587 ies_len = ieee80211_build_preq_ies(local, skb_tail_pointer(skb),
David Spinadelc56ef672014-02-05 15:21:13 +02001588 skb_tailroom(skb), &dummy_ie_desc,
1589 ie, ie_len, BIT(chan->band),
1590 rate_masks, &chandef);
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001591 skb_put(skb, ies_len);
Kalle Valo7c12ce82010-01-05 20:16:44 +02001592
Johannes Berg46900292009-02-15 12:44:28 +01001593 if (dst) {
Kalle Valo7c12ce82010-01-05 20:16:44 +02001594 mgmt = (struct ieee80211_mgmt *) skb->data;
Johannes Berg46900292009-02-15 12:44:28 +01001595 memcpy(mgmt->da, dst, ETH_ALEN);
1596 memcpy(mgmt->bssid, dst, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01001597 }
Johannes Berg46900292009-02-15 12:44:28 +01001598
Johannes Berg62ae67b2009-11-18 18:42:05 +01001599 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg5b2bbf72011-11-08 13:04:41 +01001600
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001601 return skb;
1602}
1603
Johannes Berga344d672014-06-12 22:24:31 +02001604void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata,
1605 const u8 *src, const u8 *dst,
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001606 const u8 *ssid, size_t ssid_len,
Paul Stewarta806c552011-06-23 09:00:11 -08001607 const u8 *ie, size_t ie_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001608 u32 ratemask, bool directed, u32 tx_flags,
Johannes Berg55de9082012-07-26 17:24:39 +02001609 struct ieee80211_channel *channel, bool scan)
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001610{
1611 struct sk_buff *skb;
1612
Johannes Berga344d672014-06-12 22:24:31 +02001613 skb = ieee80211_build_probe_req(sdata, src, dst, ratemask, channel,
Johannes Berg6b778632012-07-23 14:53:27 +02001614 ssid, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001615 ie, ie_len, directed);
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301616 if (skb) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01001617 IEEE80211_SKB_CB(skb)->flags |= tx_flags;
Johannes Berg55de9082012-07-26 17:24:39 +02001618 if (scan)
1619 ieee80211_tx_skb_tid_band(sdata, skb, 7, channel->band);
1620 else
1621 ieee80211_tx_skb(sdata, skb);
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301622 }
Johannes Berg46900292009-02-15 12:44:28 +01001623}
1624
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001625u32 ieee80211_sta_get_rates(struct ieee80211_sub_if_data *sdata,
Johannes Berg46900292009-02-15 12:44:28 +01001626 struct ieee802_11_elems *elems,
Ashok Nagarajan9ebb61a2012-04-02 21:21:21 -07001627 enum ieee80211_band band, u32 *basic_rates)
Johannes Berg46900292009-02-15 12:44:28 +01001628{
1629 struct ieee80211_supported_band *sband;
Johannes Berg46900292009-02-15 12:44:28 +01001630 size_t num_rates;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001631 u32 supp_rates, rate_flags;
1632 int i, j, shift;
1633 sband = sdata->local->hw.wiphy->bands[band];
1634
1635 rate_flags = ieee80211_chandef_rate_flags(&sdata->vif.bss_conf.chandef);
1636 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg46900292009-02-15 12:44:28 +01001637
Michal Kazior4ee73f32012-04-11 08:47:56 +02001638 if (WARN_ON(!sband))
1639 return 1;
Johannes Berg46900292009-02-15 12:44:28 +01001640
Johannes Berg46900292009-02-15 12:44:28 +01001641 num_rates = sband->n_bitrates;
1642 supp_rates = 0;
1643 for (i = 0; i < elems->supp_rates_len +
1644 elems->ext_supp_rates_len; i++) {
1645 u8 rate = 0;
1646 int own_rate;
Ashok Nagarajan9ebb61a2012-04-02 21:21:21 -07001647 bool is_basic;
Johannes Berg46900292009-02-15 12:44:28 +01001648 if (i < elems->supp_rates_len)
1649 rate = elems->supp_rates[i];
1650 else if (elems->ext_supp_rates)
1651 rate = elems->ext_supp_rates
1652 [i - elems->supp_rates_len];
1653 own_rate = 5 * (rate & 0x7f);
Ashok Nagarajan9ebb61a2012-04-02 21:21:21 -07001654 is_basic = !!(rate & 0x80);
1655
1656 if (is_basic && (rate & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
1657 continue;
1658
1659 for (j = 0; j < num_rates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001660 int brate;
1661 if ((rate_flags & sband->bitrates[j].flags)
1662 != rate_flags)
1663 continue;
1664
1665 brate = DIV_ROUND_UP(sband->bitrates[j].bitrate,
1666 1 << shift);
1667
1668 if (brate == own_rate) {
Johannes Berg46900292009-02-15 12:44:28 +01001669 supp_rates |= BIT(j);
Ashok Nagarajan9ebb61a2012-04-02 21:21:21 -07001670 if (basic_rates && is_basic)
1671 *basic_rates |= BIT(j);
1672 }
1673 }
Johannes Berg46900292009-02-15 12:44:28 +01001674 }
1675 return supp_rates;
1676}
Johannes Bergf2753dd2009-04-14 10:09:24 +02001677
Johannes Berg84f6a012009-08-20 20:02:20 +02001678void ieee80211_stop_device(struct ieee80211_local *local)
1679{
1680 ieee80211_led_radio(local, false);
Johannes Berg67408c82010-11-30 08:59:23 +01001681 ieee80211_mod_tpt_led_trig(local, 0, IEEE80211_TPT_LEDTRIG_FL_RADIO);
Johannes Berg84f6a012009-08-20 20:02:20 +02001682
1683 cancel_work_sync(&local->reconfig_filter);
Johannes Berg84f6a012009-08-20 20:02:20 +02001684
1685 flush_workqueue(local->workqueue);
Lennert Buytenhek678f4152010-01-10 14:07:53 +01001686 drv_stop(local);
Johannes Berg84f6a012009-08-20 20:02:20 +02001687}
1688
Johannes Bergf6837ba82014-04-30 14:19:04 +02001689static void ieee80211_handle_reconfig_failure(struct ieee80211_local *local)
1690{
1691 struct ieee80211_sub_if_data *sdata;
1692 struct ieee80211_chanctx *ctx;
1693
1694 /*
1695 * We get here if during resume the device can't be restarted properly.
1696 * We might also get here if this happens during HW reset, which is a
1697 * slightly different situation and we need to drop all connections in
1698 * the latter case.
1699 *
1700 * Ask cfg80211 to turn off all interfaces, this will result in more
1701 * warnings but at least we'll then get into a clean stopped state.
1702 */
1703
1704 local->resuming = false;
1705 local->suspended = false;
1706 local->started = false;
1707
1708 /* scheduled scan clearly can't be running any more, but tell
1709 * cfg80211 and clear local state
1710 */
1711 ieee80211_sched_scan_end(local);
1712
1713 list_for_each_entry(sdata, &local->interfaces, list)
1714 sdata->flags &= ~IEEE80211_SDATA_IN_DRIVER;
1715
1716 /* Mark channel contexts as not being in the driver any more to avoid
1717 * removing them from the driver during the shutdown process...
1718 */
1719 mutex_lock(&local->chanctx_mtx);
1720 list_for_each_entry(ctx, &local->chanctx_list, list)
1721 ctx->driver_present = false;
1722 mutex_unlock(&local->chanctx_mtx);
1723
1724 cfg80211_shutdown_all_interfaces(local->hw.wiphy);
1725}
1726
Stanislaw Gruszka153a5fc42013-02-28 10:55:30 +01001727static void ieee80211_assign_chanctx(struct ieee80211_local *local,
1728 struct ieee80211_sub_if_data *sdata)
1729{
1730 struct ieee80211_chanctx_conf *conf;
1731 struct ieee80211_chanctx *ctx;
1732
1733 if (!local->use_chanctx)
1734 return;
1735
1736 mutex_lock(&local->chanctx_mtx);
1737 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
1738 lockdep_is_held(&local->chanctx_mtx));
1739 if (conf) {
1740 ctx = container_of(conf, struct ieee80211_chanctx, conf);
1741 drv_assign_vif_chanctx(local, sdata, ctx);
1742 }
1743 mutex_unlock(&local->chanctx_mtx);
1744}
1745
Johannes Bergf2753dd2009-04-14 10:09:24 +02001746int ieee80211_reconfig(struct ieee80211_local *local)
1747{
1748 struct ieee80211_hw *hw = &local->hw;
1749 struct ieee80211_sub_if_data *sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001750 struct ieee80211_chanctx *ctx;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001751 struct sta_info *sta;
Eliad Peller2683d652011-07-14 20:29:42 +03001752 int res, i;
Johannes Bergd8881302013-01-10 23:55:33 +01001753 bool reconfig_due_to_wowlan = false;
David Spinadeld43c6b62013-12-08 21:48:57 +02001754 struct ieee80211_sub_if_data *sched_scan_sdata;
Johannes Berg6ea0a692014-11-19 11:55:49 +01001755 struct cfg80211_sched_scan_request *sched_scan_req;
David Spinadeld43c6b62013-12-08 21:48:57 +02001756 bool sched_scan_stopped = false;
Johannes Bergd8881302013-01-10 23:55:33 +01001757
Eliad Peller0f8b8242014-12-14 11:05:53 +02001758 /* nothing to do if HW shouldn't run */
1759 if (!local->open_count)
1760 goto wake_up;
1761
Johannes Berg8f21b0a2013-01-11 00:28:01 +01001762#ifdef CONFIG_PM
Johannes Bergceb99fe2009-11-19 14:29:39 +01001763 if (local->suspended)
1764 local->resuming = true;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001765
Johannes Bergeecc4802011-05-04 15:37:29 +02001766 if (local->wowlan) {
Johannes Bergeecc4802011-05-04 15:37:29 +02001767 res = drv_resume(local);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001768 local->wowlan = false;
Johannes Bergeecc4802011-05-04 15:37:29 +02001769 if (res < 0) {
1770 local->resuming = false;
1771 return res;
1772 }
1773 if (res == 0)
1774 goto wake_up;
1775 WARN_ON(res > 1);
1776 /*
1777 * res is 1, which means the driver requested
1778 * to go through a regular reset on wakeup.
1779 */
Johannes Bergd8881302013-01-10 23:55:33 +01001780 reconfig_due_to_wowlan = true;
Johannes Bergeecc4802011-05-04 15:37:29 +02001781 }
1782#endif
Johannes Berg94f9b972011-07-14 16:48:54 +02001783
1784 /*
1785 * Upon resume hardware can sometimes be goofy due to
1786 * various platform / driver / bus issues, so restarting
1787 * the device may at times not work immediately. Propagate
1788 * the error.
1789 */
1790 res = drv_start(local);
1791 if (res) {
Johannes Bergf6837ba82014-04-30 14:19:04 +02001792 if (local->suspended)
1793 WARN(1, "Hardware became unavailable upon resume. This could be a software issue prior to suspend or a hardware issue.\n");
1794 else
1795 WARN(1, "Hardware became unavailable during restart.\n");
1796 ieee80211_handle_reconfig_failure(local);
Johannes Berg94f9b972011-07-14 16:48:54 +02001797 return res;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001798 }
1799
Yogesh Ashok Powar7f2819752011-12-30 16:34:25 +05301800 /* setup fragmentation threshold */
1801 drv_set_frag_threshold(local, hw->wiphy->frag_threshold);
1802
1803 /* setup RTS threshold */
1804 drv_set_rts_threshold(local, hw->wiphy->rts_threshold);
1805
1806 /* reset coverage class */
1807 drv_set_coverage_class(local, hw->wiphy->coverage_class);
1808
Johannes Berg94f9b972011-07-14 16:48:54 +02001809 ieee80211_led_radio(local, true);
1810 ieee80211_mod_tpt_led_trig(local,
1811 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
1812
Johannes Bergf2753dd2009-04-14 10:09:24 +02001813 /* add interfaces */
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001814 sdata = rtnl_dereference(local->monitor_sdata);
1815 if (sdata) {
Johannes Berg3c3e21e2013-03-27 23:20:27 +01001816 /* in HW restart it exists already */
1817 WARN_ON(local->resuming);
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001818 res = drv_add_interface(local, sdata);
1819 if (WARN_ON(res)) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301820 RCU_INIT_POINTER(local->monitor_sdata, NULL);
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001821 synchronize_net();
1822 kfree(sdata);
1823 }
1824 }
1825
Johannes Bergf2753dd2009-04-14 10:09:24 +02001826 list_for_each_entry(sdata, &local->interfaces, list) {
1827 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1828 sdata->vif.type != NL80211_IFTYPE_MONITOR &&
Luciano Coelhoc8fff3d2015-03-01 09:10:04 +02001829 ieee80211_sdata_running(sdata)) {
Johannes Berg7b7eab62011-11-03 14:41:13 +01001830 res = drv_add_interface(local, sdata);
Luciano Coelhoc8fff3d2015-03-01 09:10:04 +02001831 if (WARN_ON(res))
1832 break;
1833 }
1834 }
1835
1836 /* If adding any of the interfaces failed above, roll back and
1837 * report failure.
1838 */
1839 if (res) {
1840 list_for_each_entry_continue_reverse(sdata, &local->interfaces,
1841 list)
1842 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1843 sdata->vif.type != NL80211_IFTYPE_MONITOR &&
1844 ieee80211_sdata_running(sdata))
1845 drv_remove_interface(local, sdata);
1846 ieee80211_handle_reconfig_failure(local);
1847 return res;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001848 }
1849
Johannes Berg55de9082012-07-26 17:24:39 +02001850 /* add channel contexts */
Arend van Sprielf0dea9c2012-11-19 12:01:05 +01001851 if (local->use_chanctx) {
1852 mutex_lock(&local->chanctx_mtx);
1853 list_for_each_entry(ctx, &local->chanctx_list, list)
Michal Kazior5bcae312014-06-25 12:35:06 +02001854 if (ctx->replace_state !=
1855 IEEE80211_CHANCTX_REPLACES_OTHER)
1856 WARN_ON(drv_add_chanctx(local, ctx));
Arend van Sprielf0dea9c2012-11-19 12:01:05 +01001857 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001858
Zhao, Gang7df180f2014-04-26 09:43:40 +08001859 list_for_each_entry(sdata, &local->interfaces, list) {
1860 if (!ieee80211_sdata_running(sdata))
1861 continue;
1862 ieee80211_assign_chanctx(local, sdata);
1863 }
Johannes Berg6352c872012-11-07 12:40:41 +01001864
Zhao, Gang7df180f2014-04-26 09:43:40 +08001865 sdata = rtnl_dereference(local->monitor_sdata);
1866 if (sdata && ieee80211_sdata_running(sdata))
1867 ieee80211_assign_chanctx(local, sdata);
1868 }
Johannes Bergfe5f2552012-11-19 22:19:08 +01001869
Johannes Bergf2753dd2009-04-14 10:09:24 +02001870 /* add STAs back */
Johannes Berg34e89502010-02-03 13:59:58 +01001871 mutex_lock(&local->sta_mtx);
1872 list_for_each_entry(sta, &local->sta_list, list) {
Arik Nemtsov2e8d3972012-06-03 23:31:56 +03001873 enum ieee80211_sta_state state;
Johannes Bergf09603a2012-01-20 13:55:21 +01001874
Arik Nemtsov2e8d3972012-06-03 23:31:56 +03001875 if (!sta->uploaded)
1876 continue;
1877
1878 /* AP-mode stations will be added later */
1879 if (sta->sdata->vif.type == NL80211_IFTYPE_AP)
1880 continue;
1881
1882 for (state = IEEE80211_STA_NOTEXIST;
1883 state < sta->sta_state; state++)
1884 WARN_ON(drv_sta_state(local, sta->sdata, sta, state,
1885 state + 1));
Johannes Bergf2753dd2009-04-14 10:09:24 +02001886 }
Johannes Berg34e89502010-02-03 13:59:58 +01001887 mutex_unlock(&local->sta_mtx);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001888
Eliad Peller2683d652011-07-14 20:29:42 +03001889 /* reconfigure tx conf */
Johannes Berg54bcbc62012-03-28 11:04:25 +02001890 if (hw->queues >= IEEE80211_NUM_ACS) {
1891 list_for_each_entry(sdata, &local->interfaces, list) {
1892 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1893 sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1894 !ieee80211_sdata_running(sdata))
1895 continue;
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001896
Johannes Berg54bcbc62012-03-28 11:04:25 +02001897 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1898 drv_conf_tx(local, sdata, i,
1899 &sdata->tx_conf[i]);
1900 }
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001901 }
Eliad Peller2683d652011-07-14 20:29:42 +03001902
Johannes Bergf2753dd2009-04-14 10:09:24 +02001903 /* reconfigure hardware */
1904 ieee80211_hw_config(local, ~0);
1905
Johannes Bergf2753dd2009-04-14 10:09:24 +02001906 ieee80211_configure_filter(local);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001907
1908 /* Finally also reconfigure all the BSS information */
1909 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Bergac8dd502010-05-05 09:44:02 +02001910 u32 changed;
1911
Johannes Berg9607e6b662009-12-23 13:15:31 +01001912 if (!ieee80211_sdata_running(sdata))
Johannes Bergf2753dd2009-04-14 10:09:24 +02001913 continue;
Johannes Bergac8dd502010-05-05 09:44:02 +02001914
1915 /* common change flags for all interface types */
1916 changed = BSS_CHANGED_ERP_CTS_PROT |
1917 BSS_CHANGED_ERP_PREAMBLE |
1918 BSS_CHANGED_ERP_SLOT |
1919 BSS_CHANGED_HT |
1920 BSS_CHANGED_BASIC_RATES |
1921 BSS_CHANGED_BEACON_INT |
1922 BSS_CHANGED_BSSID |
Johannes Berg4ced3f72010-07-19 16:39:04 +02001923 BSS_CHANGED_CQM |
Eliad Peller55de47f2011-11-01 15:16:55 +02001924 BSS_CHANGED_QOS |
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001925 BSS_CHANGED_IDLE |
1926 BSS_CHANGED_TXPOWER;
Johannes Bergac8dd502010-05-05 09:44:02 +02001927
Johannes Bergf2753dd2009-04-14 10:09:24 +02001928 switch (sdata->vif.type) {
1929 case NL80211_IFTYPE_STATION:
Eliad Peller0d392e92011-12-12 14:10:49 +02001930 changed |= BSS_CHANGED_ASSOC |
Eliad Pellerab095872012-07-27 12:33:22 +03001931 BSS_CHANGED_ARP_FILTER |
1932 BSS_CHANGED_PS;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02001933
Alexander Bondar989c6502013-05-16 17:34:17 +03001934 /* Re-send beacon info report to the driver */
1935 if (sdata->u.mgd.have_beacon)
1936 changed |= BSS_CHANGED_BEACON_INFO;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02001937
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001938 sdata_lock(sdata);
Johannes Bergac8dd502010-05-05 09:44:02 +02001939 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001940 sdata_unlock(sdata);
Johannes Bergac8dd502010-05-05 09:44:02 +02001941 break;
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001942 case NL80211_IFTYPE_OCB:
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001943 changed |= BSS_CHANGED_OCB;
1944 ieee80211_bss_info_change_notify(sdata, changed);
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001945 break;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001946 case NL80211_IFTYPE_ADHOC:
Johannes Bergac8dd502010-05-05 09:44:02 +02001947 changed |= BSS_CHANGED_IBSS;
1948 /* fall through */
Johannes Bergf2753dd2009-04-14 10:09:24 +02001949 case NL80211_IFTYPE_AP:
Johannes Berg339afbf2012-11-14 15:21:17 +01001950 changed |= BSS_CHANGED_SSID | BSS_CHANGED_P2P_PS;
Arik Nemtsove7979ac2011-11-22 19:33:18 +02001951
Johannes Berg10416382012-10-19 15:44:42 +02001952 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Arik Nemtsove7979ac2011-11-22 19:33:18 +02001953 changed |= BSS_CHANGED_AP_PROBE_RESP;
1954
Johannes Berg10416382012-10-19 15:44:42 +02001955 if (rcu_access_pointer(sdata->u.ap.beacon))
1956 drv_start_ap(local, sdata);
1957 }
1958
Arik Nemtsov78274932011-09-04 11:11:32 +03001959 /* fall through */
Johannes Bergf2753dd2009-04-14 10:09:24 +02001960 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg8da34932012-12-14 14:17:26 +01001961 if (sdata->vif.bss_conf.enable_beacon) {
1962 changed |= BSS_CHANGED_BEACON |
1963 BSS_CHANGED_BEACON_ENABLED;
1964 ieee80211_bss_info_change_notify(sdata, changed);
1965 }
Johannes Bergf2753dd2009-04-14 10:09:24 +02001966 break;
1967 case NL80211_IFTYPE_WDS:
Johannes Bergf2753dd2009-04-14 10:09:24 +02001968 case NL80211_IFTYPE_AP_VLAN:
1969 case NL80211_IFTYPE_MONITOR:
Johannes Berg98104fde2012-06-16 00:19:54 +02001970 case NL80211_IFTYPE_P2P_DEVICE:
Zhao, Gangb2057862014-04-26 09:43:41 +08001971 /* nothing to do */
Johannes Bergf142c6b2012-06-18 20:07:15 +02001972 break;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001973 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f782010-08-12 15:38:38 +02001974 case NUM_NL80211_IFTYPES:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001975 case NL80211_IFTYPE_P2P_CLIENT:
1976 case NL80211_IFTYPE_P2P_GO:
Johannes Bergf2753dd2009-04-14 10:09:24 +02001977 WARN_ON(1);
1978 break;
1979 }
1980 }
1981
Eyal Shapira8e1b23b2011-11-09 12:29:06 +02001982 ieee80211_recalc_ps(local, -1);
1983
Johannes Berg2a419052010-06-10 10:21:29 +02001984 /*
Eliad Peller6e1b1b22012-01-26 13:36:05 +02001985 * The sta might be in psm against the ap (e.g. because
1986 * this was the state before a hw restart), so we
1987 * explicitly send a null packet in order to make sure
1988 * it'll sync against the ap (and get out of psm).
1989 */
1990 if (!(local->hw.conf.flags & IEEE80211_CONF_PS)) {
1991 list_for_each_entry(sdata, &local->interfaces, list) {
1992 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1993 continue;
Johannes Berg20f544e2012-11-08 14:06:28 +01001994 if (!sdata->u.mgd.associated)
1995 continue;
Eliad Peller6e1b1b22012-01-26 13:36:05 +02001996
1997 ieee80211_send_nullfunc(local, sdata, 0);
1998 }
1999 }
2000
Arik Nemtsov2e8d3972012-06-03 23:31:56 +03002001 /* APs are now beaconing, add back stations */
2002 mutex_lock(&local->sta_mtx);
2003 list_for_each_entry(sta, &local->sta_list, list) {
2004 enum ieee80211_sta_state state;
2005
2006 if (!sta->uploaded)
2007 continue;
2008
2009 if (sta->sdata->vif.type != NL80211_IFTYPE_AP)
2010 continue;
2011
2012 for (state = IEEE80211_STA_NOTEXIST;
2013 state < sta->sta_state; state++)
2014 WARN_ON(drv_sta_state(local, sta->sdata, sta, state,
2015 state + 1));
2016 }
2017 mutex_unlock(&local->sta_mtx);
2018
Eyal Shapira7b21aea2012-05-29 02:00:22 -07002019 /* add back keys */
2020 list_for_each_entry(sdata, &local->interfaces, list)
2021 if (ieee80211_sdata_running(sdata))
2022 ieee80211_enable_keys(sdata);
2023
Eliad Pellerc6209482012-07-02 15:08:25 +03002024 wake_up:
Arik Nemtsov04800ad2012-06-06 11:25:02 +03002025 local->in_reconfig = false;
2026 barrier();
2027
Johannes Berg3c3e21e2013-03-27 23:20:27 +01002028 if (local->monitors == local->open_count && local->monitors > 0)
2029 ieee80211_add_virtual_monitor(local);
2030
Eliad Peller6e1b1b22012-01-26 13:36:05 +02002031 /*
Johannes Berg2a419052010-06-10 10:21:29 +02002032 * Clear the WLAN_STA_BLOCK_BA flag so new aggregation
2033 * sessions can be established after a resume.
2034 *
2035 * Also tear down aggregation sessions since reconfiguring
2036 * them in a hardware restart scenario is not easily done
2037 * right now, and the hardware will have lost information
2038 * about the sessions, but we and the AP still think they
2039 * are active. This is really a workaround though.
2040 */
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08002041 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
Johannes Berg2a419052010-06-10 10:21:29 +02002042 mutex_lock(&local->sta_mtx);
2043
2044 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Bergc82c4a82012-07-18 13:31:31 +02002045 ieee80211_sta_tear_down_BA_sessions(
2046 sta, AGG_STOP_LOCAL_REQUEST);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002047 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08002048 }
Johannes Berg2a419052010-06-10 10:21:29 +02002049
2050 mutex_unlock(&local->sta_mtx);
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08002051 }
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08002052
Johannes Berg445ea4e2013-02-13 12:25:28 +01002053 ieee80211_wake_queues_by_reason(hw, IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +03002054 IEEE80211_QUEUE_STOP_REASON_SUSPEND,
2055 false);
Johannes Bergf2753dd2009-04-14 10:09:24 +02002056
Johannes Berg5bb644a2009-05-17 11:40:42 +02002057 /*
Arik Nemtsov32769812014-02-11 12:27:19 +02002058 * Reconfigure sched scan if it was interrupted by FW restart or
2059 * suspend.
2060 */
2061 mutex_lock(&local->mtx);
2062 sched_scan_sdata = rcu_dereference_protected(local->sched_scan_sdata,
2063 lockdep_is_held(&local->mtx));
Johannes Berg6ea0a692014-11-19 11:55:49 +01002064 sched_scan_req = rcu_dereference_protected(local->sched_scan_req,
2065 lockdep_is_held(&local->mtx));
2066 if (sched_scan_sdata && sched_scan_req)
Arik Nemtsov32769812014-02-11 12:27:19 +02002067 /*
2068 * Sched scan stopped, but we don't want to report it. Instead,
2069 * we're trying to reschedule.
2070 */
2071 if (__ieee80211_request_sched_scan_start(sched_scan_sdata,
Johannes Berg6ea0a692014-11-19 11:55:49 +01002072 sched_scan_req))
Arik Nemtsov32769812014-02-11 12:27:19 +02002073 sched_scan_stopped = true;
2074 mutex_unlock(&local->mtx);
2075
2076 if (sched_scan_stopped)
Eliad Pellere669ba22014-04-30 16:14:24 +03002077 cfg80211_sched_scan_stopped_rtnl(local->hw.wiphy);
Arik Nemtsov32769812014-02-11 12:27:19 +02002078
2079 /*
Johannes Berg5bb644a2009-05-17 11:40:42 +02002080 * If this is for hw restart things are still running.
2081 * We may want to change that later, however.
2082 */
Eliad Peller0f8b8242014-12-14 11:05:53 +02002083 if (local->open_count && (!local->suspended || reconfig_due_to_wowlan))
Eliad Pellercf2c92d2014-11-04 11:43:54 +02002084 drv_reconfig_complete(local, IEEE80211_RECONFIG_TYPE_RESTART);
Johannes Berg8f21b0a2013-01-11 00:28:01 +01002085
2086 if (!local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02002087 return 0;
2088
2089#ifdef CONFIG_PM
Johannes Bergceb99fe2009-11-19 14:29:39 +01002090 /* first set suspended false, then resuming */
Johannes Berg5bb644a2009-05-17 11:40:42 +02002091 local->suspended = false;
Johannes Bergceb99fe2009-11-19 14:29:39 +01002092 mb();
2093 local->resuming = false;
Johannes Berg5bb644a2009-05-17 11:40:42 +02002094
Luciano Coelho9120d94e2015-01-24 10:30:02 +02002095 /* It's possible that we don't handle the scan completion in
2096 * time during suspend, so if it's still marked as completed
2097 * here, queue the work and flush it to clean things up.
2098 * Instead of calling the worker function directly here, we
2099 * really queue it to avoid potential races with other flows
2100 * scheduling the same work.
2101 */
2102 if (test_bit(SCAN_COMPLETED, &local->scanning)) {
2103 ieee80211_queue_delayed_work(&local->hw, &local->scan_work, 0);
2104 flush_delayed_work(&local->scan_work);
2105 }
2106
Eliad Peller0f8b8242014-12-14 11:05:53 +02002107 if (local->open_count && !reconfig_due_to_wowlan)
Eliad Pellercf2c92d2014-11-04 11:43:54 +02002108 drv_reconfig_complete(local, IEEE80211_RECONFIG_TYPE_SUSPEND);
2109
Johannes Bergb8360ab2013-04-29 14:57:44 +02002110 list_for_each_entry(sdata, &local->interfaces, list) {
2111 if (!ieee80211_sdata_running(sdata))
2112 continue;
2113 if (sdata->vif.type == NL80211_IFTYPE_STATION)
2114 ieee80211_sta_restart(sdata);
2115 }
2116
Johannes Berg26d59532011-04-01 13:52:48 +02002117 mod_timer(&local->sta_cleanup, jiffies + 1);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002118#else
2119 WARN_ON(1);
2120#endif
David Spinadeld43c6b62013-12-08 21:48:57 +02002121
Johannes Bergf2753dd2009-04-14 10:09:24 +02002122 return 0;
2123}
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002124
Johannes Berg95acac62011-07-12 12:30:59 +02002125void ieee80211_resume_disconnect(struct ieee80211_vif *vif)
2126{
2127 struct ieee80211_sub_if_data *sdata;
2128 struct ieee80211_local *local;
2129 struct ieee80211_key *key;
2130
2131 if (WARN_ON(!vif))
2132 return;
2133
2134 sdata = vif_to_sdata(vif);
2135 local = sdata->local;
2136
2137 if (WARN_ON(!local->resuming))
2138 return;
2139
2140 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2141 return;
2142
2143 sdata->flags |= IEEE80211_SDATA_DISCONNECT_RESUME;
2144
2145 mutex_lock(&local->key_mtx);
2146 list_for_each_entry(key, &sdata->key_list, list)
2147 key->flags |= KEY_FLAG_TAINTED;
2148 mutex_unlock(&local->key_mtx);
2149}
2150EXPORT_SYMBOL_GPL(ieee80211_resume_disconnect);
2151
Johannes Berg04ecd252012-09-11 14:34:12 +02002152void ieee80211_recalc_smps(struct ieee80211_sub_if_data *sdata)
Johannes Berg0f782312009-12-01 13:37:02 +01002153{
Johannes Berg04ecd252012-09-11 14:34:12 +02002154 struct ieee80211_local *local = sdata->local;
2155 struct ieee80211_chanctx_conf *chanctx_conf;
2156 struct ieee80211_chanctx *chanctx;
Johannes Berg0f782312009-12-01 13:37:02 +01002157
Johannes Berg04ecd252012-09-11 14:34:12 +02002158 mutex_lock(&local->chanctx_mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01002159
Johannes Berg04ecd252012-09-11 14:34:12 +02002160 chanctx_conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
2161 lockdep_is_held(&local->chanctx_mtx));
Johannes Berg0f782312009-12-01 13:37:02 +01002162
Johannes Berg04ecd252012-09-11 14:34:12 +02002163 if (WARN_ON_ONCE(!chanctx_conf))
Johannes Berg5d8e4232012-09-11 10:17:11 +02002164 goto unlock;
Johannes Berg0f782312009-12-01 13:37:02 +01002165
Johannes Berg04ecd252012-09-11 14:34:12 +02002166 chanctx = container_of(chanctx_conf, struct ieee80211_chanctx, conf);
2167 ieee80211_recalc_smps_chanctx(local, chanctx);
Johannes Berg5d8e4232012-09-11 10:17:11 +02002168 unlock:
Johannes Berg04ecd252012-09-11 14:34:12 +02002169 mutex_unlock(&local->chanctx_mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01002170}
Johannes Berg8e664fb2009-12-23 13:15:38 +01002171
Eliad Peller21f659b2013-11-11 20:14:01 +02002172void ieee80211_recalc_min_chandef(struct ieee80211_sub_if_data *sdata)
2173{
2174 struct ieee80211_local *local = sdata->local;
2175 struct ieee80211_chanctx_conf *chanctx_conf;
2176 struct ieee80211_chanctx *chanctx;
2177
2178 mutex_lock(&local->chanctx_mtx);
2179
2180 chanctx_conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
2181 lockdep_is_held(&local->chanctx_mtx));
2182
2183 if (WARN_ON_ONCE(!chanctx_conf))
2184 goto unlock;
2185
2186 chanctx = container_of(chanctx_conf, struct ieee80211_chanctx, conf);
2187 ieee80211_recalc_chanctx_min_def(local, chanctx);
2188 unlock:
2189 mutex_unlock(&local->chanctx_mtx);
2190}
2191
Johannes Berg8e664fb2009-12-23 13:15:38 +01002192static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
2193{
2194 int i;
2195
2196 for (i = 0; i < n_ids; i++)
2197 if (ids[i] == id)
2198 return true;
2199 return false;
2200}
2201
Johannes Berg8ed28742014-10-27 12:03:19 +01002202size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
2203 const u8 *ids, int n_ids,
2204 const u8 *after_ric, int n_after_ric,
2205 size_t offset)
Johannes Berg8e664fb2009-12-23 13:15:38 +01002206{
2207 size_t pos = offset;
2208
Johannes Berg8ed28742014-10-27 12:03:19 +01002209 while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos])) {
2210 if (ies[pos] == WLAN_EID_RIC_DATA && n_after_ric) {
2211 pos += 2 + ies[pos + 1];
2212
2213 while (pos < ielen &&
2214 !ieee80211_id_in_list(after_ric, n_after_ric,
2215 ies[pos]))
2216 pos += 2 + ies[pos + 1];
2217 } else {
2218 pos += 2 + ies[pos + 1];
2219 }
2220 }
Johannes Berg8e664fb2009-12-23 13:15:38 +01002221
2222 return pos;
2223}
Johannes Berg8ed28742014-10-27 12:03:19 +01002224
2225size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
2226 const u8 *ids, int n_ids, size_t offset)
2227{
2228 return ieee80211_ie_split_ric(ies, ielen, ids, n_ids, NULL, 0, offset);
2229}
Andrei Otcheretianskia7f3a762014-10-22 15:22:49 +03002230EXPORT_SYMBOL(ieee80211_ie_split);
Johannes Berg8e664fb2009-12-23 13:15:38 +01002231
2232size_t ieee80211_ie_split_vendor(const u8 *ies, size_t ielen, size_t offset)
2233{
2234 size_t pos = offset;
2235
2236 while (pos < ielen && ies[pos] != WLAN_EID_VENDOR_SPECIFIC)
2237 pos += 2 + ies[pos + 1];
2238
2239 return pos;
2240}
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002241
2242static void _ieee80211_enable_rssi_reports(struct ieee80211_sub_if_data *sdata,
2243 int rssi_min_thold,
2244 int rssi_max_thold)
2245{
2246 trace_api_enable_rssi_reports(sdata, rssi_min_thold, rssi_max_thold);
2247
2248 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2249 return;
2250
2251 /*
2252 * Scale up threshold values before storing it, as the RSSI averaging
2253 * algorithm uses a scaled up value as well. Change this scaling
2254 * factor if the RSSI averaging algorithm changes.
2255 */
2256 sdata->u.mgd.rssi_min_thold = rssi_min_thold*16;
2257 sdata->u.mgd.rssi_max_thold = rssi_max_thold*16;
2258}
2259
2260void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
2261 int rssi_min_thold,
2262 int rssi_max_thold)
2263{
2264 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2265
2266 WARN_ON(rssi_min_thold == rssi_max_thold ||
2267 rssi_min_thold > rssi_max_thold);
2268
2269 _ieee80211_enable_rssi_reports(sdata, rssi_min_thold,
2270 rssi_max_thold);
2271}
2272EXPORT_SYMBOL(ieee80211_enable_rssi_reports);
2273
2274void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif)
2275{
2276 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2277
2278 _ieee80211_enable_rssi_reports(sdata, 0, 0);
2279}
2280EXPORT_SYMBOL(ieee80211_disable_rssi_reports);
Arik Nemtsov768db342011-09-28 14:12:51 +03002281
Ben Greearef96a8422011-11-18 11:32:00 -08002282u8 *ieee80211_ie_build_ht_cap(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
Alexander Simon42e7aa72011-10-26 14:47:26 -07002283 u16 cap)
2284{
2285 __le16 tmp;
2286
2287 *pos++ = WLAN_EID_HT_CAPABILITY;
2288 *pos++ = sizeof(struct ieee80211_ht_cap);
2289 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
2290
2291 /* capability flags */
2292 tmp = cpu_to_le16(cap);
2293 memcpy(pos, &tmp, sizeof(u16));
2294 pos += sizeof(u16);
2295
2296 /* AMPDU parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08002297 *pos++ = ht_cap->ampdu_factor |
2298 (ht_cap->ampdu_density <<
Alexander Simon42e7aa72011-10-26 14:47:26 -07002299 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
2300
2301 /* MCS set */
Ben Greearef96a8422011-11-18 11:32:00 -08002302 memcpy(pos, &ht_cap->mcs, sizeof(ht_cap->mcs));
2303 pos += sizeof(ht_cap->mcs);
Alexander Simon42e7aa72011-10-26 14:47:26 -07002304
2305 /* extended capabilities */
2306 pos += sizeof(__le16);
2307
2308 /* BF capabilities */
2309 pos += sizeof(__le32);
2310
2311 /* antenna selection */
2312 pos += sizeof(u8);
2313
2314 return pos;
2315}
2316
Mahesh Palivelaba0afa22012-07-02 11:25:12 +00002317u8 *ieee80211_ie_build_vht_cap(u8 *pos, struct ieee80211_sta_vht_cap *vht_cap,
Johannes Bergcc3983d2012-12-07 12:45:06 +01002318 u32 cap)
Mahesh Palivelaba0afa22012-07-02 11:25:12 +00002319{
2320 __le32 tmp;
2321
2322 *pos++ = WLAN_EID_VHT_CAPABILITY;
Mahesh Palivelad4950282012-10-10 11:25:40 +00002323 *pos++ = sizeof(struct ieee80211_vht_cap);
2324 memset(pos, 0, sizeof(struct ieee80211_vht_cap));
Mahesh Palivelaba0afa22012-07-02 11:25:12 +00002325
2326 /* capability flags */
2327 tmp = cpu_to_le32(cap);
2328 memcpy(pos, &tmp, sizeof(u32));
2329 pos += sizeof(u32);
2330
2331 /* VHT MCS set */
2332 memcpy(pos, &vht_cap->vht_mcs, sizeof(vht_cap->vht_mcs));
2333 pos += sizeof(vht_cap->vht_mcs);
2334
2335 return pos;
2336}
2337
Johannes Berg074d46d2012-03-15 19:45:16 +01002338u8 *ieee80211_ie_build_ht_oper(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
Johannes Berg4bf88532012-11-09 11:39:59 +01002339 const struct cfg80211_chan_def *chandef,
Ashok Nagarajan431e3152012-04-30 14:20:29 -07002340 u16 prot_mode)
Alexander Simon42e7aa72011-10-26 14:47:26 -07002341{
Johannes Berg074d46d2012-03-15 19:45:16 +01002342 struct ieee80211_ht_operation *ht_oper;
Alexander Simon42e7aa72011-10-26 14:47:26 -07002343 /* Build HT Information */
Johannes Berg074d46d2012-03-15 19:45:16 +01002344 *pos++ = WLAN_EID_HT_OPERATION;
2345 *pos++ = sizeof(struct ieee80211_ht_operation);
2346 ht_oper = (struct ieee80211_ht_operation *)pos;
Johannes Berg4bf88532012-11-09 11:39:59 +01002347 ht_oper->primary_chan = ieee80211_frequency_to_channel(
2348 chandef->chan->center_freq);
2349 switch (chandef->width) {
2350 case NL80211_CHAN_WIDTH_160:
2351 case NL80211_CHAN_WIDTH_80P80:
2352 case NL80211_CHAN_WIDTH_80:
2353 case NL80211_CHAN_WIDTH_40:
2354 if (chandef->center_freq1 > chandef->chan->center_freq)
2355 ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2356 else
2357 ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Alexander Simon42e7aa72011-10-26 14:47:26 -07002358 break;
Alexander Simon42e7aa72011-10-26 14:47:26 -07002359 default:
Johannes Berg074d46d2012-03-15 19:45:16 +01002360 ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Alexander Simon42e7aa72011-10-26 14:47:26 -07002361 break;
2362 }
Thomas Pedersenaee286c2012-04-18 19:24:14 -07002363 if (ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
Johannes Berg4bf88532012-11-09 11:39:59 +01002364 chandef->width != NL80211_CHAN_WIDTH_20_NOHT &&
2365 chandef->width != NL80211_CHAN_WIDTH_20)
Johannes Berg074d46d2012-03-15 19:45:16 +01002366 ht_oper->ht_param |= IEEE80211_HT_PARAM_CHAN_WIDTH_ANY;
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01002367
Ashok Nagarajan431e3152012-04-30 14:20:29 -07002368 ht_oper->operation_mode = cpu_to_le16(prot_mode);
Johannes Berg074d46d2012-03-15 19:45:16 +01002369 ht_oper->stbc_param = 0x0000;
Alexander Simon42e7aa72011-10-26 14:47:26 -07002370
2371 /* It seems that Basic MCS set and Supported MCS set
2372 are identical for the first 10 bytes */
Johannes Berg074d46d2012-03-15 19:45:16 +01002373 memset(&ht_oper->basic_set, 0, 16);
2374 memcpy(&ht_oper->basic_set, &ht_cap->mcs, 10);
Alexander Simon42e7aa72011-10-26 14:47:26 -07002375
Johannes Berg074d46d2012-03-15 19:45:16 +01002376 return pos + sizeof(struct ieee80211_ht_operation);
Alexander Simon42e7aa72011-10-26 14:47:26 -07002377}
2378
Arik Nemtsovfb28ec02015-03-01 09:10:02 +02002379u8 *ieee80211_ie_build_vht_oper(u8 *pos, struct ieee80211_sta_vht_cap *vht_cap,
2380 const struct cfg80211_chan_def *chandef)
2381{
2382 struct ieee80211_vht_operation *vht_oper;
2383
2384 *pos++ = WLAN_EID_VHT_OPERATION;
2385 *pos++ = sizeof(struct ieee80211_vht_operation);
2386 vht_oper = (struct ieee80211_vht_operation *)pos;
2387 vht_oper->center_freq_seg1_idx = ieee80211_frequency_to_channel(
2388 chandef->center_freq1);
2389 if (chandef->center_freq2)
2390 vht_oper->center_freq_seg2_idx =
2391 ieee80211_frequency_to_channel(chandef->center_freq2);
2392
2393 switch (chandef->width) {
2394 case NL80211_CHAN_WIDTH_160:
2395 vht_oper->chan_width = IEEE80211_VHT_CHANWIDTH_160MHZ;
2396 break;
2397 case NL80211_CHAN_WIDTH_80P80:
2398 vht_oper->chan_width = IEEE80211_VHT_CHANWIDTH_80P80MHZ;
2399 break;
2400 case NL80211_CHAN_WIDTH_80:
2401 vht_oper->chan_width = IEEE80211_VHT_CHANWIDTH_80MHZ;
2402 break;
2403 default:
2404 vht_oper->chan_width = IEEE80211_VHT_CHANWIDTH_USE_HT;
2405 break;
2406 }
2407
2408 /* don't require special VHT peer rates */
2409 vht_oper->basic_mcs_set = cpu_to_le16(0xffff);
2410
2411 return pos + sizeof(struct ieee80211_vht_operation);
2412}
2413
Johannes Berg4bf88532012-11-09 11:39:59 +01002414void ieee80211_ht_oper_to_chandef(struct ieee80211_channel *control_chan,
Johannes Berg4a3cb702013-02-12 16:43:19 +01002415 const struct ieee80211_ht_operation *ht_oper,
Johannes Berg4bf88532012-11-09 11:39:59 +01002416 struct cfg80211_chan_def *chandef)
Alexander Simon42e7aa72011-10-26 14:47:26 -07002417{
2418 enum nl80211_channel_type channel_type;
2419
Johannes Berg4bf88532012-11-09 11:39:59 +01002420 if (!ht_oper) {
2421 cfg80211_chandef_create(chandef, control_chan,
2422 NL80211_CHAN_NO_HT);
2423 return;
2424 }
Alexander Simon42e7aa72011-10-26 14:47:26 -07002425
Johannes Berg074d46d2012-03-15 19:45:16 +01002426 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Alexander Simon42e7aa72011-10-26 14:47:26 -07002427 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
2428 channel_type = NL80211_CHAN_HT20;
2429 break;
2430 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
2431 channel_type = NL80211_CHAN_HT40PLUS;
2432 break;
2433 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
2434 channel_type = NL80211_CHAN_HT40MINUS;
2435 break;
2436 default:
2437 channel_type = NL80211_CHAN_NO_HT;
2438 }
2439
Johannes Berg4bf88532012-11-09 11:39:59 +01002440 cfg80211_chandef_create(chandef, control_chan, channel_type);
Alexander Simon42e7aa72011-10-26 14:47:26 -07002441}
2442
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002443int ieee80211_parse_bitrates(struct cfg80211_chan_def *chandef,
2444 const struct ieee80211_supported_band *sband,
2445 const u8 *srates, int srates_len, u32 *rates)
2446{
2447 u32 rate_flags = ieee80211_chandef_rate_flags(chandef);
2448 int shift = ieee80211_chandef_get_shift(chandef);
2449 struct ieee80211_rate *br;
2450 int brate, rate, i, j, count = 0;
2451
2452 *rates = 0;
2453
2454 for (i = 0; i < srates_len; i++) {
2455 rate = srates[i] & 0x7f;
2456
2457 for (j = 0; j < sband->n_bitrates; j++) {
2458 br = &sband->bitrates[j];
2459 if ((rate_flags & br->flags) != rate_flags)
2460 continue;
2461
2462 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2463 if (brate == rate) {
2464 *rates |= BIT(j);
2465 count++;
2466 break;
2467 }
2468 }
2469 }
2470 return count;
2471}
2472
Johannes Bergfc8a7322012-06-28 10:33:25 +02002473int ieee80211_add_srates_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b778632012-07-23 14:53:27 +02002474 struct sk_buff *skb, bool need_basic,
2475 enum ieee80211_band band)
Arik Nemtsov768db342011-09-28 14:12:51 +03002476{
Arik Nemtsov768db342011-09-28 14:12:51 +03002477 struct ieee80211_local *local = sdata->local;
2478 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002479 int rate, shift;
Arik Nemtsov768db342011-09-28 14:12:51 +03002480 u8 i, rates, *pos;
Johannes Bergfc8a7322012-06-28 10:33:25 +02002481 u32 basic_rates = sdata->vif.bss_conf.basic_rates;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002482 u32 rate_flags;
Arik Nemtsov768db342011-09-28 14:12:51 +03002483
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002484 shift = ieee80211_vif_get_shift(&sdata->vif);
2485 rate_flags = ieee80211_chandef_rate_flags(&sdata->vif.bss_conf.chandef);
Johannes Berg6b778632012-07-23 14:53:27 +02002486 sband = local->hw.wiphy->bands[band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002487 rates = 0;
2488 for (i = 0; i < sband->n_bitrates; i++) {
2489 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
2490 continue;
2491 rates++;
2492 }
Arik Nemtsov768db342011-09-28 14:12:51 +03002493 if (rates > 8)
2494 rates = 8;
2495
2496 if (skb_tailroom(skb) < rates + 2)
2497 return -ENOMEM;
2498
2499 pos = skb_put(skb, rates + 2);
2500 *pos++ = WLAN_EID_SUPP_RATES;
2501 *pos++ = rates;
2502 for (i = 0; i < rates; i++) {
Ashok Nagarajan657c3e02012-04-02 21:21:20 -07002503 u8 basic = 0;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002504 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
2505 continue;
2506
Ashok Nagarajan657c3e02012-04-02 21:21:20 -07002507 if (need_basic && basic_rates & BIT(i))
2508 basic = 0x80;
Arik Nemtsov768db342011-09-28 14:12:51 +03002509 rate = sband->bitrates[i].bitrate;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002510 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
2511 5 * (1 << shift));
2512 *pos++ = basic | (u8) rate;
Arik Nemtsov768db342011-09-28 14:12:51 +03002513 }
2514
2515 return 0;
2516}
2517
Johannes Bergfc8a7322012-06-28 10:33:25 +02002518int ieee80211_add_ext_srates_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b778632012-07-23 14:53:27 +02002519 struct sk_buff *skb, bool need_basic,
2520 enum ieee80211_band band)
Arik Nemtsov768db342011-09-28 14:12:51 +03002521{
Arik Nemtsov768db342011-09-28 14:12:51 +03002522 struct ieee80211_local *local = sdata->local;
2523 struct ieee80211_supported_band *sband;
Chun-Yeow Yeohcc63ec72013-09-07 23:40:44 -07002524 int rate, shift;
Arik Nemtsov768db342011-09-28 14:12:51 +03002525 u8 i, exrates, *pos;
Johannes Bergfc8a7322012-06-28 10:33:25 +02002526 u32 basic_rates = sdata->vif.bss_conf.basic_rates;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002527 u32 rate_flags;
2528
2529 rate_flags = ieee80211_chandef_rate_flags(&sdata->vif.bss_conf.chandef);
2530 shift = ieee80211_vif_get_shift(&sdata->vif);
Arik Nemtsov768db342011-09-28 14:12:51 +03002531
Johannes Berg6b778632012-07-23 14:53:27 +02002532 sband = local->hw.wiphy->bands[band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002533 exrates = 0;
2534 for (i = 0; i < sband->n_bitrates; i++) {
2535 if ((rate_flags & sband->bitrates[i].flags) != rate_flags)
2536 continue;
2537 exrates++;
2538 }
2539
Arik Nemtsov768db342011-09-28 14:12:51 +03002540 if (exrates > 8)
2541 exrates -= 8;
2542 else
2543 exrates = 0;
2544
2545 if (skb_tailroom(skb) < exrates + 2)
2546 return -ENOMEM;
2547
2548 if (exrates) {
2549 pos = skb_put(skb, exrates + 2);
2550 *pos++ = WLAN_EID_EXT_SUPP_RATES;
2551 *pos++ = exrates;
2552 for (i = 8; i < sband->n_bitrates; i++) {
Ashok Nagarajan657c3e02012-04-02 21:21:20 -07002553 u8 basic = 0;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002554 if ((rate_flags & sband->bitrates[i].flags)
2555 != rate_flags)
2556 continue;
Ashok Nagarajan657c3e02012-04-02 21:21:20 -07002557 if (need_basic && basic_rates & BIT(i))
2558 basic = 0x80;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002559 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
2560 5 * (1 << shift));
2561 *pos++ = basic | (u8) rate;
Arik Nemtsov768db342011-09-28 14:12:51 +03002562 }
2563 }
2564 return 0;
2565}
Wey-Yi Guy1dae27f2012-04-13 12:02:57 -07002566
2567int ieee80211_ave_rssi(struct ieee80211_vif *vif)
2568{
2569 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2570 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2571
Wey-Yi Guybe6bcab2012-04-23 09:30:32 -07002572 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION)) {
2573 /* non-managed type inferfaces */
2574 return 0;
2575 }
Emmanuel Grumbach3a7bba62013-03-20 17:05:45 +02002576 return ifmgd->ave_beacon_signal / 16;
Wey-Yi Guy1dae27f2012-04-13 12:02:57 -07002577}
Wey-Yi Guy0d8a0a12012-04-20 11:57:00 -07002578EXPORT_SYMBOL_GPL(ieee80211_ave_rssi);
Johannes Berg04ecd252012-09-11 14:34:12 +02002579
2580u8 ieee80211_mcs_to_chains(const struct ieee80211_mcs_info *mcs)
2581{
2582 if (!mcs)
2583 return 1;
2584
2585 /* TODO: consider rx_highest */
2586
2587 if (mcs->rx_mask[3])
2588 return 4;
2589 if (mcs->rx_mask[2])
2590 return 3;
2591 if (mcs->rx_mask[1])
2592 return 2;
2593 return 1;
2594}
Thomas Pedersenf4bda332012-11-13 10:46:27 -08002595
2596/**
2597 * ieee80211_calculate_rx_timestamp - calculate timestamp in frame
2598 * @local: mac80211 hw info struct
2599 * @status: RX status
2600 * @mpdu_len: total MPDU length (including FCS)
2601 * @mpdu_offset: offset into MPDU to calculate timestamp at
2602 *
2603 * This function calculates the RX timestamp at the given MPDU offset, taking
2604 * into account what the RX timestamp was. An offset of 0 will just normalize
2605 * the timestamp to TSF at beginning of MPDU reception.
2606 */
2607u64 ieee80211_calculate_rx_timestamp(struct ieee80211_local *local,
2608 struct ieee80211_rx_status *status,
2609 unsigned int mpdu_len,
2610 unsigned int mpdu_offset)
2611{
2612 u64 ts = status->mactime;
2613 struct rate_info ri;
2614 u16 rate;
2615
2616 if (WARN_ON(!ieee80211_have_rx_timestamp(status)))
2617 return 0;
2618
2619 memset(&ri, 0, sizeof(ri));
2620
2621 /* Fill cfg80211 rate info */
2622 if (status->flag & RX_FLAG_HT) {
2623 ri.mcs = status->rate_idx;
2624 ri.flags |= RATE_INFO_FLAGS_MCS;
2625 if (status->flag & RX_FLAG_40MHZ)
Johannes Bergb51f3be2015-01-15 16:14:02 +01002626 ri.bw = RATE_INFO_BW_40;
2627 else
2628 ri.bw = RATE_INFO_BW_20;
Thomas Pedersenf4bda332012-11-13 10:46:27 -08002629 if (status->flag & RX_FLAG_SHORT_GI)
2630 ri.flags |= RATE_INFO_FLAGS_SHORT_GI;
Johannes Berg56146182012-11-09 15:07:02 +01002631 } else if (status->flag & RX_FLAG_VHT) {
2632 ri.flags |= RATE_INFO_FLAGS_VHT_MCS;
2633 ri.mcs = status->rate_idx;
2634 ri.nss = status->vht_nss;
2635 if (status->flag & RX_FLAG_40MHZ)
Johannes Bergb51f3be2015-01-15 16:14:02 +01002636 ri.bw = RATE_INFO_BW_40;
2637 else if (status->vht_flag & RX_VHT_FLAG_80MHZ)
2638 ri.bw = RATE_INFO_BW_80;
2639 else if (status->vht_flag & RX_VHT_FLAG_160MHZ)
2640 ri.bw = RATE_INFO_BW_160;
2641 else
2642 ri.bw = RATE_INFO_BW_20;
Johannes Berg56146182012-11-09 15:07:02 +01002643 if (status->flag & RX_FLAG_SHORT_GI)
2644 ri.flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersenf4bda332012-11-13 10:46:27 -08002645 } else {
2646 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002647 int shift = 0;
2648 int bitrate;
2649
Johannes Bergb51f3be2015-01-15 16:14:02 +01002650 if (status->flag & RX_FLAG_10MHZ) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002651 shift = 1;
Johannes Bergb51f3be2015-01-15 16:14:02 +01002652 ri.bw = RATE_INFO_BW_10;
2653 } else if (status->flag & RX_FLAG_5MHZ) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002654 shift = 2;
Johannes Bergb51f3be2015-01-15 16:14:02 +01002655 ri.bw = RATE_INFO_BW_5;
2656 } else {
2657 ri.bw = RATE_INFO_BW_20;
2658 }
Thomas Pedersenf4bda332012-11-13 10:46:27 -08002659
2660 sband = local->hw.wiphy->bands[status->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002661 bitrate = sband->bitrates[status->rate_idx].bitrate;
2662 ri.legacy = DIV_ROUND_UP(bitrate, (1 << shift));
Thomas Pedersenf4bda332012-11-13 10:46:27 -08002663 }
2664
2665 rate = cfg80211_calculate_bitrate(&ri);
Johannes Bergd86aa4f2013-10-11 15:47:06 +02002666 if (WARN_ONCE(!rate,
2667 "Invalid bitrate: flags=0x%x, idx=%d, vht_nss=%d\n",
2668 status->flag, status->rate_idx, status->vht_nss))
2669 return 0;
Thomas Pedersenf4bda332012-11-13 10:46:27 -08002670
2671 /* rewind from end of MPDU */
2672 if (status->flag & RX_FLAG_MACTIME_END)
2673 ts -= mpdu_len * 8 * 10 / rate;
2674
2675 ts += mpdu_offset * 8 * 10 / rate;
2676
2677 return ts;
2678}
Simon Wunderlich164eb022013-02-08 18:16:20 +01002679
2680void ieee80211_dfs_cac_cancel(struct ieee80211_local *local)
2681{
2682 struct ieee80211_sub_if_data *sdata;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01002683 struct cfg80211_chan_def chandef;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002684
Johannes Berg34a37402013-12-18 09:43:33 +01002685 mutex_lock(&local->mtx);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002686 mutex_lock(&local->iflist_mtx);
2687 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg34a37402013-12-18 09:43:33 +01002688 /* it might be waiting for the local->mtx, but then
2689 * by the time it gets it, sdata->wdev.cac_started
2690 * will no longer be true
2691 */
2692 cancel_delayed_work(&sdata->dfs_cac_timer_work);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002693
2694 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01002695 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002696 ieee80211_vif_release_channel(sdata);
2697 cfg80211_cac_event(sdata->dev,
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01002698 &chandef,
Simon Wunderlich164eb022013-02-08 18:16:20 +01002699 NL80211_RADAR_CAC_ABORTED,
2700 GFP_KERNEL);
2701 }
2702 }
2703 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +01002704 mutex_unlock(&local->mtx);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002705}
2706
2707void ieee80211_dfs_radar_detected_work(struct work_struct *work)
2708{
2709 struct ieee80211_local *local =
2710 container_of(work, struct ieee80211_local, radar_detected_work);
Janusz Dziedzic84a3d1c2013-11-05 14:48:46 +01002711 struct cfg80211_chan_def chandef = local->hw.conf.chandef;
Michal Kazior486cf4c2014-10-10 12:43:23 +02002712 struct ieee80211_chanctx *ctx;
2713 int num_chanctx = 0;
2714
2715 mutex_lock(&local->chanctx_mtx);
2716 list_for_each_entry(ctx, &local->chanctx_list, list) {
2717 if (ctx->replace_state == IEEE80211_CHANCTX_REPLACES_OTHER)
2718 continue;
2719
2720 num_chanctx++;
2721 chandef = ctx->conf.def;
2722 }
2723 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002724
2725 ieee80211_dfs_cac_cancel(local);
2726
Michal Kazior486cf4c2014-10-10 12:43:23 +02002727 if (num_chanctx > 1)
2728 /* XXX: multi-channel is not supported yet */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002729 WARN_ON(1);
Janusz Dziedzic84a3d1c2013-11-05 14:48:46 +01002730 else
Simon Wunderlich164eb022013-02-08 18:16:20 +01002731 cfg80211_radar_event(local->hw.wiphy, &chandef, GFP_KERNEL);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002732}
2733
2734void ieee80211_radar_detected(struct ieee80211_hw *hw)
2735{
2736 struct ieee80211_local *local = hw_to_local(hw);
2737
2738 trace_api_radar_detected(local);
2739
2740 ieee80211_queue_work(hw, &local->radar_detected_work);
2741}
2742EXPORT_SYMBOL(ieee80211_radar_detected);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02002743
2744u32 ieee80211_chandef_downgrade(struct cfg80211_chan_def *c)
2745{
2746 u32 ret;
2747 int tmp;
2748
2749 switch (c->width) {
2750 case NL80211_CHAN_WIDTH_20:
2751 c->width = NL80211_CHAN_WIDTH_20_NOHT;
2752 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
2753 break;
2754 case NL80211_CHAN_WIDTH_40:
2755 c->width = NL80211_CHAN_WIDTH_20;
2756 c->center_freq1 = c->chan->center_freq;
2757 ret = IEEE80211_STA_DISABLE_40MHZ |
2758 IEEE80211_STA_DISABLE_VHT;
2759 break;
2760 case NL80211_CHAN_WIDTH_80:
2761 tmp = (30 + c->chan->center_freq - c->center_freq1)/20;
2762 /* n_P40 */
2763 tmp /= 2;
2764 /* freq_P40 */
2765 c->center_freq1 = c->center_freq1 - 20 + 40 * tmp;
2766 c->width = NL80211_CHAN_WIDTH_40;
2767 ret = IEEE80211_STA_DISABLE_VHT;
2768 break;
2769 case NL80211_CHAN_WIDTH_80P80:
2770 c->center_freq2 = 0;
2771 c->width = NL80211_CHAN_WIDTH_80;
2772 ret = IEEE80211_STA_DISABLE_80P80MHZ |
2773 IEEE80211_STA_DISABLE_160MHZ;
2774 break;
2775 case NL80211_CHAN_WIDTH_160:
2776 /* n_P20 */
2777 tmp = (70 + c->chan->center_freq - c->center_freq1)/20;
2778 /* n_P80 */
2779 tmp /= 4;
2780 c->center_freq1 = c->center_freq1 - 40 + 80 * tmp;
2781 c->width = NL80211_CHAN_WIDTH_80;
2782 ret = IEEE80211_STA_DISABLE_80P80MHZ |
2783 IEEE80211_STA_DISABLE_160MHZ;
2784 break;
2785 default:
2786 case NL80211_CHAN_WIDTH_20_NOHT:
2787 WARN_ON_ONCE(1);
2788 c->width = NL80211_CHAN_WIDTH_20_NOHT;
2789 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
2790 break;
2791 case NL80211_CHAN_WIDTH_5:
2792 case NL80211_CHAN_WIDTH_10:
2793 WARN_ON_ONCE(1);
2794 /* keep c->width */
2795 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
2796 break;
2797 }
2798
2799 WARN_ON_ONCE(!cfg80211_chandef_valid(c));
2800
2801 return ret;
2802}
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002803
2804/*
2805 * Returns true if smps_mode_new is strictly more restrictive than
2806 * smps_mode_old.
2807 */
2808bool ieee80211_smps_is_restrictive(enum ieee80211_smps_mode smps_mode_old,
2809 enum ieee80211_smps_mode smps_mode_new)
2810{
2811 if (WARN_ON_ONCE(smps_mode_old == IEEE80211_SMPS_AUTOMATIC ||
2812 smps_mode_new == IEEE80211_SMPS_AUTOMATIC))
2813 return false;
2814
2815 switch (smps_mode_old) {
2816 case IEEE80211_SMPS_STATIC:
2817 return false;
2818 case IEEE80211_SMPS_DYNAMIC:
2819 return smps_mode_new == IEEE80211_SMPS_STATIC;
2820 case IEEE80211_SMPS_OFF:
2821 return smps_mode_new != IEEE80211_SMPS_OFF;
2822 default:
2823 WARN_ON(1);
2824 }
2825
2826 return false;
2827}
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07002828
2829int ieee80211_send_action_csa(struct ieee80211_sub_if_data *sdata,
2830 struct cfg80211_csa_settings *csa_settings)
2831{
2832 struct sk_buff *skb;
2833 struct ieee80211_mgmt *mgmt;
2834 struct ieee80211_local *local = sdata->local;
2835 int freq;
2836 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.chan_switch) +
2837 sizeof(mgmt->u.action.u.chan_switch);
2838 u8 *pos;
2839
2840 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2841 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
2842 return -EOPNOTSUPP;
2843
2844 skb = dev_alloc_skb(local->tx_headroom + hdr_len +
2845 5 + /* channel switch announcement element */
2846 3 + /* secondary channel offset element */
2847 8); /* mesh channel switch parameters element */
2848 if (!skb)
2849 return -ENOMEM;
2850
2851 skb_reserve(skb, local->tx_headroom);
2852 mgmt = (struct ieee80211_mgmt *)skb_put(skb, hdr_len);
2853 memset(mgmt, 0, hdr_len);
2854 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2855 IEEE80211_STYPE_ACTION);
2856
2857 eth_broadcast_addr(mgmt->da);
2858 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
2859 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2860 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
2861 } else {
2862 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2863 memcpy(mgmt->bssid, ifibss->bssid, ETH_ALEN);
2864 }
2865 mgmt->u.action.category = WLAN_CATEGORY_SPECTRUM_MGMT;
2866 mgmt->u.action.u.chan_switch.action_code = WLAN_ACTION_SPCT_CHL_SWITCH;
2867 pos = skb_put(skb, 5);
2868 *pos++ = WLAN_EID_CHANNEL_SWITCH; /* EID */
2869 *pos++ = 3; /* IE length */
2870 *pos++ = csa_settings->block_tx ? 1 : 0; /* CSA mode */
2871 freq = csa_settings->chandef.chan->center_freq;
2872 *pos++ = ieee80211_frequency_to_channel(freq); /* channel */
2873 *pos++ = csa_settings->count; /* count */
2874
2875 if (csa_settings->chandef.width == NL80211_CHAN_WIDTH_40) {
2876 enum nl80211_channel_type ch_type;
2877
2878 skb_put(skb, 3);
2879 *pos++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET; /* EID */
2880 *pos++ = 1; /* IE length */
2881 ch_type = cfg80211_get_chandef_type(&csa_settings->chandef);
2882 if (ch_type == NL80211_CHAN_HT40PLUS)
2883 *pos++ = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2884 else
2885 *pos++ = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
2886 }
2887
2888 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2889 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07002890
2891 skb_put(skb, 8);
2892 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM; /* EID */
2893 *pos++ = 6; /* IE length */
2894 *pos++ = sdata->u.mesh.mshcfg.dot11MeshTTL; /* Mesh TTL */
2895 *pos = 0x00; /* Mesh Flag: Tx Restrict, Initiator, Reason */
2896 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
2897 *pos++ |= csa_settings->block_tx ?
2898 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
2899 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos); /* Reason Cd */
2900 pos += 2;
Chun-Yeow Yeohca91dc92013-11-12 10:31:48 +08002901 put_unaligned_le16(ifmsh->pre_value, pos);/* Precedence Value */
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07002902 pos += 2;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07002903 }
2904
2905 ieee80211_tx_skb(sdata, skb);
2906 return 0;
2907}
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002908
2909bool ieee80211_cs_valid(const struct ieee80211_cipher_scheme *cs)
2910{
2911 return !(cs == NULL || cs->cipher == 0 ||
2912 cs->hdr_len < cs->pn_len + cs->pn_off ||
2913 cs->hdr_len <= cs->key_idx_off ||
2914 cs->key_idx_shift > 7 ||
2915 cs->key_idx_mask == 0);
2916}
2917
2918bool ieee80211_cs_list_valid(const struct ieee80211_cipher_scheme *cs, int n)
2919{
2920 int i;
2921
2922 /* Ensure we have enough iftype bitmap space for all iftype values */
2923 WARN_ON((NUM_NL80211_IFTYPES / 8 + 1) > sizeof(cs[0].iftype));
2924
2925 for (i = 0; i < n; i++)
2926 if (!ieee80211_cs_valid(&cs[i]))
2927 return false;
2928
2929 return true;
2930}
2931
2932const struct ieee80211_cipher_scheme *
2933ieee80211_cs_get(struct ieee80211_local *local, u32 cipher,
2934 enum nl80211_iftype iftype)
2935{
2936 const struct ieee80211_cipher_scheme *l = local->hw.cipher_schemes;
2937 int n = local->hw.n_cipher_schemes;
2938 int i;
2939 const struct ieee80211_cipher_scheme *cs = NULL;
2940
2941 for (i = 0; i < n; i++) {
2942 if (l[i].cipher == cipher) {
2943 cs = &l[i];
2944 break;
2945 }
2946 }
2947
2948 if (!cs || !(cs->iftype & BIT(iftype)))
2949 return NULL;
2950
2951 return cs;
2952}
2953
2954int ieee80211_cs_headroom(struct ieee80211_local *local,
2955 struct cfg80211_crypto_settings *crypto,
2956 enum nl80211_iftype iftype)
2957{
2958 const struct ieee80211_cipher_scheme *cs;
2959 int headroom = IEEE80211_ENCRYPT_HEADROOM;
2960 int i;
2961
2962 for (i = 0; i < crypto->n_ciphers_pairwise; i++) {
2963 cs = ieee80211_cs_get(local, crypto->ciphers_pairwise[i],
2964 iftype);
2965
2966 if (cs && headroom < cs->hdr_len)
2967 headroom = cs->hdr_len;
2968 }
2969
2970 cs = ieee80211_cs_get(local, crypto->cipher_group, iftype);
2971 if (cs && headroom < cs->hdr_len)
2972 headroom = cs->hdr_len;
2973
2974 return headroom;
2975}
Felix Fietkaua7022e62013-12-16 21:49:14 +01002976
2977static bool
2978ieee80211_extend_noa_desc(struct ieee80211_noa_data *data, u32 tsf, int i)
2979{
2980 s32 end = data->desc[i].start + data->desc[i].duration - (tsf + 1);
2981 int skip;
2982
2983 if (end > 0)
2984 return false;
2985
2986 /* End time is in the past, check for repetitions */
2987 skip = DIV_ROUND_UP(-end, data->desc[i].interval);
2988 if (data->count[i] < 255) {
2989 if (data->count[i] <= skip) {
2990 data->count[i] = 0;
2991 return false;
2992 }
2993
2994 data->count[i] -= skip;
2995 }
2996
2997 data->desc[i].start += skip * data->desc[i].interval;
2998
2999 return true;
3000}
3001
3002static bool
3003ieee80211_extend_absent_time(struct ieee80211_noa_data *data, u32 tsf,
3004 s32 *offset)
3005{
3006 bool ret = false;
3007 int i;
3008
3009 for (i = 0; i < IEEE80211_P2P_NOA_DESC_MAX; i++) {
3010 s32 cur;
3011
3012 if (!data->count[i])
3013 continue;
3014
3015 if (ieee80211_extend_noa_desc(data, tsf + *offset, i))
3016 ret = true;
3017
3018 cur = data->desc[i].start - tsf;
3019 if (cur > *offset)
3020 continue;
3021
3022 cur = data->desc[i].start + data->desc[i].duration - tsf;
3023 if (cur > *offset)
3024 *offset = cur;
3025 }
3026
3027 return ret;
3028}
3029
3030static u32
3031ieee80211_get_noa_absent_time(struct ieee80211_noa_data *data, u32 tsf)
3032{
3033 s32 offset = 0;
3034 int tries = 0;
3035 /*
3036 * arbitrary limit, used to avoid infinite loops when combined NoA
3037 * descriptors cover the full time period.
3038 */
3039 int max_tries = 5;
3040
3041 ieee80211_extend_absent_time(data, tsf, &offset);
3042 do {
3043 if (!ieee80211_extend_absent_time(data, tsf, &offset))
3044 break;
3045
3046 tries++;
3047 } while (tries < max_tries);
3048
3049 return offset;
3050}
3051
3052void ieee80211_update_p2p_noa(struct ieee80211_noa_data *data, u32 tsf)
3053{
3054 u32 next_offset = BIT(31) - 1;
3055 int i;
3056
3057 data->absent = 0;
3058 data->has_next_tsf = false;
3059 for (i = 0; i < IEEE80211_P2P_NOA_DESC_MAX; i++) {
3060 s32 start;
3061
3062 if (!data->count[i])
3063 continue;
3064
3065 ieee80211_extend_noa_desc(data, tsf, i);
3066 start = data->desc[i].start - tsf;
3067 if (start <= 0)
3068 data->absent |= BIT(i);
3069
3070 if (next_offset > start)
3071 next_offset = start;
3072
3073 data->has_next_tsf = true;
3074 }
3075
3076 if (data->absent)
3077 next_offset = ieee80211_get_noa_absent_time(data, tsf);
3078
3079 data->next_tsf = tsf + next_offset;
3080}
3081EXPORT_SYMBOL(ieee80211_update_p2p_noa);
3082
3083int ieee80211_parse_p2p_noa(const struct ieee80211_p2p_noa_attr *attr,
3084 struct ieee80211_noa_data *data, u32 tsf)
3085{
3086 int ret = 0;
3087 int i;
3088
3089 memset(data, 0, sizeof(*data));
3090
3091 for (i = 0; i < IEEE80211_P2P_NOA_DESC_MAX; i++) {
3092 const struct ieee80211_p2p_noa_desc *desc = &attr->desc[i];
3093
3094 if (!desc->count || !desc->duration)
3095 continue;
3096
3097 data->count[i] = desc->count;
3098 data->desc[i].start = le32_to_cpu(desc->start_time);
3099 data->desc[i].duration = le32_to_cpu(desc->duration);
3100 data->desc[i].interval = le32_to_cpu(desc->interval);
3101
3102 if (data->count[i] > 1 &&
3103 data->desc[i].interval < data->desc[i].duration)
3104 continue;
3105
3106 ieee80211_extend_noa_desc(data, tsf, i);
3107 ret++;
3108 }
3109
3110 if (ret)
3111 ieee80211_update_p2p_noa(data, tsf);
3112
3113 return ret;
3114}
3115EXPORT_SYMBOL(ieee80211_parse_p2p_noa);
Thomas Pedersen057d5f42013-12-19 10:25:15 -08003116
3117void ieee80211_recalc_dtim(struct ieee80211_local *local,
3118 struct ieee80211_sub_if_data *sdata)
3119{
3120 u64 tsf = drv_get_tsf(local, sdata);
3121 u64 dtim_count = 0;
3122 u16 beacon_int = sdata->vif.bss_conf.beacon_int * 1024;
3123 u8 dtim_period = sdata->vif.bss_conf.dtim_period;
3124 struct ps_data *ps;
3125 u8 bcns_from_dtim;
3126
3127 if (tsf == -1ULL || !beacon_int || !dtim_period)
3128 return;
3129
3130 if (sdata->vif.type == NL80211_IFTYPE_AP ||
3131 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
3132 if (!sdata->bss)
3133 return;
3134
3135 ps = &sdata->bss->ps;
3136 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
3137 ps = &sdata->u.mesh.ps;
3138 } else {
3139 return;
3140 }
3141
3142 /*
3143 * actually finds last dtim_count, mac80211 will update in
3144 * __beacon_add_tim().
3145 * dtim_count = dtim_period - (tsf / bcn_int) % dtim_period
3146 */
3147 do_div(tsf, beacon_int);
3148 bcns_from_dtim = do_div(tsf, dtim_period);
3149 /* just had a DTIM */
3150 if (!bcns_from_dtim)
3151 dtim_count = 0;
3152 else
3153 dtim_count = dtim_period - bcns_from_dtim;
3154
3155 ps->dtim_count = dtim_count;
3156}
Luciano Coelho73de86a2014-02-13 11:31:59 +02003157
Michal Kazior71e61952014-06-25 12:35:07 +02003158static u8 ieee80211_chanctx_radar_detect(struct ieee80211_local *local,
3159 struct ieee80211_chanctx *ctx)
3160{
3161 struct ieee80211_sub_if_data *sdata;
3162 u8 radar_detect = 0;
3163
3164 lockdep_assert_held(&local->chanctx_mtx);
3165
3166 if (WARN_ON(ctx->replace_state == IEEE80211_CHANCTX_WILL_BE_REPLACED))
3167 return 0;
3168
3169 list_for_each_entry(sdata, &ctx->reserved_vifs, reserved_chanctx_list)
3170 if (sdata->reserved_radar_required)
3171 radar_detect |= BIT(sdata->reserved_chandef.width);
3172
3173 /*
3174 * An in-place reservation context should not have any assigned vifs
3175 * until it replaces the other context.
3176 */
3177 WARN_ON(ctx->replace_state == IEEE80211_CHANCTX_REPLACES_OTHER &&
3178 !list_empty(&ctx->assigned_vifs));
3179
3180 list_for_each_entry(sdata, &ctx->assigned_vifs, assigned_chanctx_list)
3181 if (sdata->radar_required)
3182 radar_detect |= BIT(sdata->vif.bss_conf.chandef.width);
3183
3184 return radar_detect;
3185}
3186
Luciano Coelho73de86a2014-02-13 11:31:59 +02003187int ieee80211_check_combinations(struct ieee80211_sub_if_data *sdata,
3188 const struct cfg80211_chan_def *chandef,
3189 enum ieee80211_chanctx_mode chanmode,
3190 u8 radar_detect)
3191{
3192 struct ieee80211_local *local = sdata->local;
3193 struct ieee80211_sub_if_data *sdata_iter;
3194 enum nl80211_iftype iftype = sdata->wdev.iftype;
3195 int num[NUM_NL80211_IFTYPES];
3196 struct ieee80211_chanctx *ctx;
Luciano Coelhob6a55012014-02-27 11:07:21 +02003197 int num_different_channels = 0;
Luciano Coelho73de86a2014-02-13 11:31:59 +02003198 int total = 1;
3199
3200 lockdep_assert_held(&local->chanctx_mtx);
3201
3202 if (WARN_ON(hweight32(radar_detect) > 1))
3203 return -EINVAL;
3204
Luciano Coelhob6a55012014-02-27 11:07:21 +02003205 if (WARN_ON(chandef && chanmode == IEEE80211_CHANCTX_SHARED &&
3206 !chandef->chan))
Luciano Coelho73de86a2014-02-13 11:31:59 +02003207 return -EINVAL;
3208
Luciano Coelhob6a55012014-02-27 11:07:21 +02003209 if (chandef)
3210 num_different_channels = 1;
3211
Luciano Coelho73de86a2014-02-13 11:31:59 +02003212 if (WARN_ON(iftype >= NUM_NL80211_IFTYPES))
3213 return -EINVAL;
3214
3215 /* Always allow software iftypes */
3216 if (local->hw.wiphy->software_iftypes & BIT(iftype)) {
3217 if (radar_detect)
3218 return -EINVAL;
3219 return 0;
3220 }
3221
3222 memset(num, 0, sizeof(num));
3223
3224 if (iftype != NL80211_IFTYPE_UNSPECIFIED)
3225 num[iftype] = 1;
3226
3227 list_for_each_entry(ctx, &local->chanctx_list, list) {
Michal Kazior5bcae312014-06-25 12:35:06 +02003228 if (ctx->replace_state == IEEE80211_CHANCTX_WILL_BE_REPLACED)
3229 continue;
Michal Kazior71e61952014-06-25 12:35:07 +02003230 radar_detect |= ieee80211_chanctx_radar_detect(local, ctx);
Luciano Coelho73de86a2014-02-13 11:31:59 +02003231 if (ctx->mode == IEEE80211_CHANCTX_EXCLUSIVE) {
3232 num_different_channels++;
3233 continue;
3234 }
Luciano Coelhob6a55012014-02-27 11:07:21 +02003235 if (chandef && chanmode == IEEE80211_CHANCTX_SHARED &&
Luciano Coelho73de86a2014-02-13 11:31:59 +02003236 cfg80211_chandef_compatible(chandef,
3237 &ctx->conf.def))
3238 continue;
3239 num_different_channels++;
3240 }
3241
3242 list_for_each_entry_rcu(sdata_iter, &local->interfaces, list) {
3243 struct wireless_dev *wdev_iter;
3244
3245 wdev_iter = &sdata_iter->wdev;
3246
3247 if (sdata_iter == sdata ||
3248 rcu_access_pointer(sdata_iter->vif.chanctx_conf) == NULL ||
3249 local->hw.wiphy->software_iftypes & BIT(wdev_iter->iftype))
3250 continue;
3251
3252 num[wdev_iter->iftype]++;
3253 total++;
3254 }
3255
3256 if (total == 1 && !radar_detect)
3257 return 0;
3258
3259 return cfg80211_check_combinations(local->hw.wiphy,
3260 num_different_channels,
3261 radar_detect, num);
3262}
Michal Kazior6fa001b2014-04-09 15:29:23 +02003263
3264static void
3265ieee80211_iter_max_chans(const struct ieee80211_iface_combination *c,
3266 void *data)
3267{
3268 u32 *max_num_different_channels = data;
3269
3270 *max_num_different_channels = max(*max_num_different_channels,
3271 c->num_different_channels);
3272}
3273
3274int ieee80211_max_num_channels(struct ieee80211_local *local)
3275{
3276 struct ieee80211_sub_if_data *sdata;
3277 int num[NUM_NL80211_IFTYPES] = {};
3278 struct ieee80211_chanctx *ctx;
3279 int num_different_channels = 0;
3280 u8 radar_detect = 0;
3281 u32 max_num_different_channels = 1;
3282 int err;
3283
3284 lockdep_assert_held(&local->chanctx_mtx);
3285
3286 list_for_each_entry(ctx, &local->chanctx_list, list) {
Michal Kazior5bcae312014-06-25 12:35:06 +02003287 if (ctx->replace_state == IEEE80211_CHANCTX_WILL_BE_REPLACED)
3288 continue;
3289
Michal Kazior6fa001b2014-04-09 15:29:23 +02003290 num_different_channels++;
3291
Michal Kazior71e61952014-06-25 12:35:07 +02003292 radar_detect |= ieee80211_chanctx_radar_detect(local, ctx);
Michal Kazior6fa001b2014-04-09 15:29:23 +02003293 }
3294
3295 list_for_each_entry_rcu(sdata, &local->interfaces, list)
3296 num[sdata->wdev.iftype]++;
3297
3298 err = cfg80211_iter_combinations(local->hw.wiphy,
3299 num_different_channels, radar_detect,
3300 num, ieee80211_iter_max_chans,
3301 &max_num_different_channels);
3302 if (err < 0)
3303 return err;
3304
3305 return max_num_different_channels;
3306}
Arik Nemtsov40b861a2014-07-17 17:14:23 +03003307
3308u8 *ieee80211_add_wmm_info_ie(u8 *buf, u8 qosinfo)
3309{
3310 *buf++ = WLAN_EID_VENDOR_SPECIFIC;
3311 *buf++ = 7; /* len */
3312 *buf++ = 0x00; /* Microsoft OUI 00:50:F2 */
3313 *buf++ = 0x50;
3314 *buf++ = 0xf2;
3315 *buf++ = 2; /* WME */
3316 *buf++ = 0; /* WME info */
3317 *buf++ = 1; /* WME ver */
3318 *buf++ = qosinfo; /* U-APSD no in use */
3319
3320 return buf;
3321}