blob: 8a998ad1d1c6ee0df83596729be5e10991c052af [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>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * utilities for mac80211
12 */
13
14#include <net/mac80211.h>
15#include <linux/netdevice.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040016#include <linux/export.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020017#include <linux/types.h>
18#include <linux/slab.h>
19#include <linux/skbuff.h>
20#include <linux/etherdevice.h>
21#include <linux/if_arp.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020022#include <linux/bitmap.h>
Johannes Bergdd769862011-11-18 16:54:50 +010023#include <linux/crc32.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070024#include <net/net_namespace.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020025#include <net/cfg80211.h>
Johannes Bergdabeb342007-11-09 01:57:29 +010026#include <net/rtnetlink.h>
Johannes Bergc2d15602007-07-27 15:43:23 +020027
28#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010031#include "mesh.h"
Johannes Bergc2d15602007-07-27 15:43:23 +020032#include "wme.h"
Johannes Bergf2753dd2009-04-14 10:09:24 +020033#include "led.h"
Johannes Bergfffd0932009-07-08 14:22:54 +020034#include "wep.h"
Johannes Bergc2d15602007-07-27 15:43:23 +020035
36/* privid for wiphys to determine whether they belong to us or not */
37void *mac80211_wiphy_privid = &mac80211_wiphy_privid;
38
Luis R. Rodriguez9a953712009-01-22 15:05:53 -080039struct ieee80211_hw *wiphy_to_ieee80211_hw(struct wiphy *wiphy)
40{
41 struct ieee80211_local *local;
42 BUG_ON(!wiphy);
43
44 local = wiphy_priv(wiphy);
45 return &local->hw;
46}
47EXPORT_SYMBOL(wiphy_to_ieee80211_hw);
Johannes Bergc2d15602007-07-27 15:43:23 +020048
Ron Rindjunsky71364712007-12-25 17:00:36 +020049u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
Johannes Berg05c914f2008-09-11 00:01:58 +020050 enum nl80211_iftype type)
Johannes Bergc2d15602007-07-27 15:43:23 +020051{
Harvey Harrisona494bb12008-06-11 14:21:58 -070052 __le16 fc = hdr->frame_control;
Johannes Bergc2d15602007-07-27 15:43:23 +020053
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020054 /* drop ACK/CTS frames and incorrect hdr len (ctrl) */
55 if (len < 16)
Johannes Bergc2d15602007-07-27 15:43:23 +020056 return NULL;
57
Harvey Harrisona494bb12008-06-11 14:21:58 -070058 if (ieee80211_is_data(fc)) {
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020059 if (len < 24) /* drop incorrect hdr len (data) */
60 return NULL;
Harvey Harrisona494bb12008-06-11 14:21:58 -070061
62 if (ieee80211_has_a4(fc))
Johannes Bergc2d15602007-07-27 15:43:23 +020063 return NULL;
Harvey Harrisona494bb12008-06-11 14:21:58 -070064 if (ieee80211_has_tods(fc))
65 return hdr->addr1;
66 if (ieee80211_has_fromds(fc))
Johannes Bergc2d15602007-07-27 15:43:23 +020067 return hdr->addr2;
Harvey Harrisona494bb12008-06-11 14:21:58 -070068
69 return hdr->addr3;
70 }
71
72 if (ieee80211_is_mgmt(fc)) {
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020073 if (len < 24) /* drop incorrect hdr len (mgmt) */
74 return NULL;
Johannes Bergc2d15602007-07-27 15:43:23 +020075 return hdr->addr3;
Harvey Harrisona494bb12008-06-11 14:21:58 -070076 }
77
78 if (ieee80211_is_ctl(fc)) {
79 if(ieee80211_is_pspoll(fc))
Johannes Bergc2d15602007-07-27 15:43:23 +020080 return hdr->addr1;
Harvey Harrisona494bb12008-06-11 14:21:58 -070081
82 if (ieee80211_is_back_req(fc)) {
Ron Rindjunsky71364712007-12-25 17:00:36 +020083 switch (type) {
Johannes Berg05c914f2008-09-11 00:01:58 +020084 case NL80211_IFTYPE_STATION:
Ron Rindjunsky71364712007-12-25 17:00:36 +020085 return hdr->addr2;
Johannes Berg05c914f2008-09-11 00:01:58 +020086 case NL80211_IFTYPE_AP:
87 case NL80211_IFTYPE_AP_VLAN:
Ron Rindjunsky71364712007-12-25 17:00:36 +020088 return hdr->addr1;
89 default:
Harvey Harrisona494bb12008-06-11 14:21:58 -070090 break; /* fall through to the return */
Ron Rindjunsky71364712007-12-25 17:00:36 +020091 }
92 }
Johannes Bergc2d15602007-07-27 15:43:23 +020093 }
94
95 return NULL;
96}
97
Johannes Berg5cf121c2008-02-25 16:27:43 +010098void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx)
Johannes Bergc2d15602007-07-27 15:43:23 +020099{
Johannes Berg252b86c2011-11-16 15:28:55 +0100100 struct sk_buff *skb;
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100101 struct ieee80211_hdr *hdr;
Johannes Bergc2d15602007-07-27 15:43:23 +0200102
Johannes Berg252b86c2011-11-16 15:28:55 +0100103 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100104 hdr = (struct ieee80211_hdr *) skb->data;
105 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
Johannes Berg252b86c2011-11-16 15:28:55 +0100106 }
Johannes Bergc2d15602007-07-27 15:43:23 +0200107}
108
109int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
110 int rate, int erp, int short_preamble)
111{
112 int dur;
113
114 /* calculate duration (in microseconds, rounded up to next higher
115 * integer if it includes a fractional microsecond) to send frame of
116 * len bytes (does not include FCS) at the given rate. Duration will
117 * also include SIFS.
118 *
119 * rate is in 100 kbps, so divident is multiplied by 10 in the
120 * DIV_ROUND_UP() operations.
121 */
122
Johannes Berg8318d782008-01-24 19:38:38 +0100123 if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ || erp) {
Johannes Bergc2d15602007-07-27 15:43:23 +0200124 /*
125 * OFDM:
126 *
127 * N_DBPS = DATARATE x 4
128 * N_SYM = Ceiling((16+8xLENGTH+6) / N_DBPS)
129 * (16 = SIGNAL time, 6 = tail bits)
130 * TXTIME = T_PREAMBLE + T_SIGNAL + T_SYM x N_SYM + Signal Ext
131 *
132 * T_SYM = 4 usec
133 * 802.11a - 17.5.2: aSIFSTime = 16 usec
134 * 802.11g - 19.8.4: aSIFSTime = 10 usec +
135 * signal ext = 6 usec
136 */
Johannes Bergc2d15602007-07-27 15:43:23 +0200137 dur = 16; /* SIFS + signal ext */
138 dur += 16; /* 17.3.2.3: T_PREAMBLE = 16 usec */
139 dur += 4; /* 17.3.2.3: T_SIGNAL = 4 usec */
140 dur += 4 * DIV_ROUND_UP((16 + 8 * (len + 4) + 6) * 10,
141 4 * rate); /* T_SYM x N_SYM */
142 } else {
143 /*
144 * 802.11b or 802.11g with 802.11b compatibility:
145 * 18.3.4: TXTIME = PreambleLength + PLCPHeaderTime +
146 * Ceiling(((LENGTH+PBCC)x8)/DATARATE). PBCC=0.
147 *
148 * 802.11 (DS): 15.3.3, 802.11b: 18.3.4
149 * aSIFSTime = 10 usec
150 * aPreambleLength = 144 usec or 72 usec with short preamble
151 * aPLCPHeaderLength = 48 usec or 24 usec with short preamble
152 */
153 dur = 10; /* aSIFSTime = 10 usec */
154 dur += short_preamble ? (72 + 24) : (144 + 48);
155
156 dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate);
157 }
158
159 return dur;
160}
161
162/* Exported duration function for driver use */
Johannes Berg32bfd352007-12-19 01:31:26 +0100163__le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
164 struct ieee80211_vif *vif,
Johannes Berg8318d782008-01-24 19:38:38 +0100165 size_t frame_len,
166 struct ieee80211_rate *rate)
Johannes Bergc2d15602007-07-27 15:43:23 +0200167{
168 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg25d834e2008-09-12 22:52:47 +0200169 struct ieee80211_sub_if_data *sdata;
Johannes Bergc2d15602007-07-27 15:43:23 +0200170 u16 dur;
171 int erp;
Johannes Berg25d834e2008-09-12 22:52:47 +0200172 bool short_preamble = false;
Johannes Bergc2d15602007-07-27 15:43:23 +0200173
Johannes Berg8318d782008-01-24 19:38:38 +0100174 erp = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200175 if (vif) {
176 sdata = vif_to_sdata(vif);
Johannes Bergbda39332008-10-11 01:51:51 +0200177 short_preamble = sdata->vif.bss_conf.use_short_preamble;
Johannes Berg25d834e2008-09-12 22:52:47 +0200178 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
179 erp = rate->flags & IEEE80211_RATE_ERP_G;
180 }
Johannes Berg8318d782008-01-24 19:38:38 +0100181
182 dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, erp,
Johannes Berg25d834e2008-09-12 22:52:47 +0200183 short_preamble);
Johannes Bergc2d15602007-07-27 15:43:23 +0200184
185 return cpu_to_le16(dur);
186}
187EXPORT_SYMBOL(ieee80211_generic_frame_duration);
188
Johannes Berg32bfd352007-12-19 01:31:26 +0100189__le16 ieee80211_rts_duration(struct ieee80211_hw *hw,
190 struct ieee80211_vif *vif, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200191 const struct ieee80211_tx_info *frame_txctl)
Johannes Bergc2d15602007-07-27 15:43:23 +0200192{
193 struct ieee80211_local *local = hw_to_local(hw);
194 struct ieee80211_rate *rate;
Johannes Berg25d834e2008-09-12 22:52:47 +0200195 struct ieee80211_sub_if_data *sdata;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100196 bool short_preamble;
Johannes Bergc2d15602007-07-27 15:43:23 +0200197 int erp;
198 u16 dur;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200199 struct ieee80211_supported_band *sband;
200
201 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
Johannes Bergc2d15602007-07-27 15:43:23 +0200202
Johannes Berg25d834e2008-09-12 22:52:47 +0200203 short_preamble = false;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200204
Johannes Berge039fa42008-05-15 12:55:29 +0200205 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
Johannes Berg8318d782008-01-24 19:38:38 +0100206
207 erp = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200208 if (vif) {
209 sdata = vif_to_sdata(vif);
Johannes Bergbda39332008-10-11 01:51:51 +0200210 short_preamble = sdata->vif.bss_conf.use_short_preamble;
Johannes Berg25d834e2008-09-12 22:52:47 +0200211 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
212 erp = rate->flags & IEEE80211_RATE_ERP_G;
213 }
Johannes Bergc2d15602007-07-27 15:43:23 +0200214
215 /* CTS duration */
Johannes Berg8318d782008-01-24 19:38:38 +0100216 dur = ieee80211_frame_duration(local, 10, rate->bitrate,
Johannes Bergc2d15602007-07-27 15:43:23 +0200217 erp, short_preamble);
218 /* Data frame duration */
Johannes Berg8318d782008-01-24 19:38:38 +0100219 dur += ieee80211_frame_duration(local, frame_len, rate->bitrate,
Johannes Bergc2d15602007-07-27 15:43:23 +0200220 erp, short_preamble);
221 /* ACK duration */
Johannes Berg8318d782008-01-24 19:38:38 +0100222 dur += ieee80211_frame_duration(local, 10, rate->bitrate,
Johannes Bergc2d15602007-07-27 15:43:23 +0200223 erp, short_preamble);
224
225 return cpu_to_le16(dur);
226}
227EXPORT_SYMBOL(ieee80211_rts_duration);
228
Johannes Berg32bfd352007-12-19 01:31:26 +0100229__le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw,
230 struct ieee80211_vif *vif,
Johannes Bergc2d15602007-07-27 15:43:23 +0200231 size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200232 const struct ieee80211_tx_info *frame_txctl)
Johannes Bergc2d15602007-07-27 15:43:23 +0200233{
234 struct ieee80211_local *local = hw_to_local(hw);
235 struct ieee80211_rate *rate;
Johannes Berg25d834e2008-09-12 22:52:47 +0200236 struct ieee80211_sub_if_data *sdata;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100237 bool short_preamble;
Johannes Bergc2d15602007-07-27 15:43:23 +0200238 int erp;
239 u16 dur;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200240 struct ieee80211_supported_band *sband;
241
242 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
Johannes Bergc2d15602007-07-27 15:43:23 +0200243
Johannes Berg25d834e2008-09-12 22:52:47 +0200244 short_preamble = false;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200245
Johannes Berge039fa42008-05-15 12:55:29 +0200246 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
Johannes Berg8318d782008-01-24 19:38:38 +0100247 erp = 0;
Johannes Berg25d834e2008-09-12 22:52:47 +0200248 if (vif) {
249 sdata = vif_to_sdata(vif);
Johannes Bergbda39332008-10-11 01:51:51 +0200250 short_preamble = sdata->vif.bss_conf.use_short_preamble;
Johannes Berg25d834e2008-09-12 22:52:47 +0200251 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
252 erp = rate->flags & IEEE80211_RATE_ERP_G;
253 }
Johannes Bergc2d15602007-07-27 15:43:23 +0200254
255 /* Data frame duration */
Johannes Berg8318d782008-01-24 19:38:38 +0100256 dur = ieee80211_frame_duration(local, frame_len, rate->bitrate,
Johannes Bergc2d15602007-07-27 15:43:23 +0200257 erp, short_preamble);
Johannes Berge039fa42008-05-15 12:55:29 +0200258 if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) {
Johannes Bergc2d15602007-07-27 15:43:23 +0200259 /* ACK duration */
Johannes Berg8318d782008-01-24 19:38:38 +0100260 dur += ieee80211_frame_duration(local, 10, rate->bitrate,
Johannes Bergc2d15602007-07-27 15:43:23 +0200261 erp, short_preamble);
262 }
263
Johannes Bergc2d15602007-07-27 15:43:23 +0200264 return cpu_to_le16(dur);
265}
266EXPORT_SYMBOL(ieee80211_ctstoself_duration);
267
Kalle Valoce7c9112008-12-18 23:35:20 +0200268static void __ieee80211_wake_queue(struct ieee80211_hw *hw, int queue,
269 enum queue_stop_reason reason)
Johannes Bergc2d15602007-07-27 15:43:23 +0200270{
271 struct ieee80211_local *local = hw_to_local(hw);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100272 struct ieee80211_sub_if_data *sdata;
Johannes Bergc2d15602007-07-27 15:43:23 +0200273
Johannes Bergb5878a22010-04-07 16:48:40 +0200274 trace_wake_queue(local, queue, reason);
275
Johannes Berge4e72fb2009-03-23 17:28:42 +0100276 if (WARN_ON(queue >= hw->queues))
277 return;
Kalle Valoce7c9112008-12-18 23:35:20 +0200278
Johannes Berg96f5e662009-02-12 00:51:53 +0100279 __clear_bit(reason, &local->queue_stop_reasons[queue]);
280
281 if (local->queue_stop_reasons[queue] != 0)
282 /* someone still has this queue stopped */
283 return;
284
Johannes Berg7236fe22010-03-22 13:42:43 -0700285 if (skb_queue_empty(&local->pending[queue])) {
286 rcu_read_lock();
Johannes Berg5b714c62010-08-27 13:45:28 +0200287 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
288 if (test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))
289 continue;
Johannes Berg2337db82010-08-27 13:36:49 +0200290 netif_wake_subqueue(sdata->dev, queue);
Johannes Berg5b714c62010-08-27 13:45:28 +0200291 }
Johannes Berg7236fe22010-03-22 13:42:43 -0700292 rcu_read_unlock();
293 } else
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200294 tasklet_schedule(&local->tx_pending_tasklet);
Johannes Bergc2d15602007-07-27 15:43:23 +0200295}
Kalle Valoce7c9112008-12-18 23:35:20 +0200296
Johannes Berg96f5e662009-02-12 00:51:53 +0100297void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue,
298 enum queue_stop_reason reason)
Kalle Valoce7c9112008-12-18 23:35:20 +0200299{
300 struct ieee80211_local *local = hw_to_local(hw);
301 unsigned long flags;
302
303 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
304 __ieee80211_wake_queue(hw, queue, reason);
305 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
306}
307
308void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue)
309{
310 ieee80211_wake_queue_by_reason(hw, queue,
311 IEEE80211_QUEUE_STOP_REASON_DRIVER);
312}
Johannes Bergc2d15602007-07-27 15:43:23 +0200313EXPORT_SYMBOL(ieee80211_wake_queue);
314
Kalle Valoce7c9112008-12-18 23:35:20 +0200315static void __ieee80211_stop_queue(struct ieee80211_hw *hw, int queue,
316 enum queue_stop_reason reason)
Johannes Bergc2d15602007-07-27 15:43:23 +0200317{
318 struct ieee80211_local *local = hw_to_local(hw);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100319 struct ieee80211_sub_if_data *sdata;
Johannes Bergc2d15602007-07-27 15:43:23 +0200320
Johannes Bergb5878a22010-04-07 16:48:40 +0200321 trace_stop_queue(local, queue, reason);
322
Johannes Berge4e72fb2009-03-23 17:28:42 +0100323 if (WARN_ON(queue >= hw->queues))
324 return;
Johannes Berg96f5e662009-02-12 00:51:53 +0100325
Johannes Berg2a577d92009-03-23 17:28:37 +0100326 __set_bit(reason, &local->queue_stop_reasons[queue]);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100327
328 rcu_read_lock();
329 list_for_each_entry_rcu(sdata, &local->interfaces, list)
Johannes Berg2337db82010-08-27 13:36:49 +0200330 netif_stop_subqueue(sdata->dev, queue);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100331 rcu_read_unlock();
Johannes Bergc2d15602007-07-27 15:43:23 +0200332}
Kalle Valoce7c9112008-12-18 23:35:20 +0200333
Johannes Berg96f5e662009-02-12 00:51:53 +0100334void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue,
335 enum queue_stop_reason reason)
Kalle Valoce7c9112008-12-18 23:35:20 +0200336{
337 struct ieee80211_local *local = hw_to_local(hw);
338 unsigned long flags;
339
340 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
341 __ieee80211_stop_queue(hw, queue, reason);
342 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
343}
344
345void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue)
346{
347 ieee80211_stop_queue_by_reason(hw, queue,
348 IEEE80211_QUEUE_STOP_REASON_DRIVER);
349}
Johannes Bergc2d15602007-07-27 15:43:23 +0200350EXPORT_SYMBOL(ieee80211_stop_queue);
351
Johannes Berg8f77f382009-06-07 21:58:37 +0200352void ieee80211_add_pending_skb(struct ieee80211_local *local,
353 struct sk_buff *skb)
354{
355 struct ieee80211_hw *hw = &local->hw;
356 unsigned long flags;
357 int queue = skb_get_queue_mapping(skb);
Johannes Berga7bc3762009-07-27 10:33:31 +0200358 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
359
360 if (WARN_ON(!info->control.vif)) {
Roel Kluin08196632009-10-06 15:52:35 +0200361 kfree_skb(skb);
Johannes Berga7bc3762009-07-27 10:33:31 +0200362 return;
363 }
Johannes Berg8f77f382009-06-07 21:58:37 +0200364
365 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
366 __ieee80211_stop_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200367 __skb_queue_tail(&local->pending[queue], skb);
Johannes Berg8f77f382009-06-07 21:58:37 +0200368 __ieee80211_wake_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
369 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
370}
371
Johannes Bergb0b97a82011-09-29 16:04:30 +0200372void ieee80211_add_pending_skbs_fn(struct ieee80211_local *local,
373 struct sk_buff_head *skbs,
374 void (*fn)(void *data), void *data)
Johannes Berg8f77f382009-06-07 21:58:37 +0200375{
376 struct ieee80211_hw *hw = &local->hw;
377 struct sk_buff *skb;
378 unsigned long flags;
Johannes Bergb0b97a82011-09-29 16:04:30 +0200379 int queue, i;
Johannes Berg8f77f382009-06-07 21:58:37 +0200380
381 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
382 for (i = 0; i < hw->queues; i++)
383 __ieee80211_stop_queue(hw, i,
384 IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
385
386 while ((skb = skb_dequeue(skbs))) {
Johannes Berga7bc3762009-07-27 10:33:31 +0200387 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
388
389 if (WARN_ON(!info->control.vif)) {
Roel Kluin08196632009-10-06 15:52:35 +0200390 kfree_skb(skb);
Johannes Berga7bc3762009-07-27 10:33:31 +0200391 continue;
392 }
393
Johannes Berg8f77f382009-06-07 21:58:37 +0200394 queue = skb_get_queue_mapping(skb);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200395 __skb_queue_tail(&local->pending[queue], skb);
Johannes Berg8f77f382009-06-07 21:58:37 +0200396 }
397
Johannes Berg50a94322010-11-16 11:50:28 -0800398 if (fn)
399 fn(data);
400
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200401 for (i = 0; i < hw->queues; i++)
Johannes Berg8f77f382009-06-07 21:58:37 +0200402 __ieee80211_wake_queue(hw, i,
403 IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
Johannes Berg8f77f382009-06-07 21:58:37 +0200404 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg8f77f382009-06-07 21:58:37 +0200405}
406
Johannes Bergb0b97a82011-09-29 16:04:30 +0200407void ieee80211_add_pending_skbs(struct ieee80211_local *local,
408 struct sk_buff_head *skbs)
Johannes Berg50a94322010-11-16 11:50:28 -0800409{
Johannes Bergb0b97a82011-09-29 16:04:30 +0200410 ieee80211_add_pending_skbs_fn(local, skbs, NULL, NULL);
Johannes Berg50a94322010-11-16 11:50:28 -0800411}
412
Kalle Valoce7c9112008-12-18 23:35:20 +0200413void ieee80211_stop_queues_by_reason(struct ieee80211_hw *hw,
414 enum queue_stop_reason reason)
Johannes Bergc2d15602007-07-27 15:43:23 +0200415{
Kalle Valoce7c9112008-12-18 23:35:20 +0200416 struct ieee80211_local *local = hw_to_local(hw);
417 unsigned long flags;
Johannes Bergc2d15602007-07-27 15:43:23 +0200418 int i;
419
Kalle Valoce7c9112008-12-18 23:35:20 +0200420 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
421
Johannes Berg96f5e662009-02-12 00:51:53 +0100422 for (i = 0; i < hw->queues; i++)
Kalle Valoce7c9112008-12-18 23:35:20 +0200423 __ieee80211_stop_queue(hw, i, reason);
424
425 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
426}
427
428void ieee80211_stop_queues(struct ieee80211_hw *hw)
429{
430 ieee80211_stop_queues_by_reason(hw,
431 IEEE80211_QUEUE_STOP_REASON_DRIVER);
Johannes Bergc2d15602007-07-27 15:43:23 +0200432}
433EXPORT_SYMBOL(ieee80211_stop_queues);
434
Tomas Winkler92ab8532008-07-24 21:02:04 +0300435int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue)
436{
437 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200438 unsigned long flags;
439 int ret;
Johannes Berg96f5e662009-02-12 00:51:53 +0100440
Johannes Berge4e72fb2009-03-23 17:28:42 +0100441 if (WARN_ON(queue >= hw->queues))
442 return true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100443
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200444 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
445 ret = !!local->queue_stop_reasons[queue];
446 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
447 return ret;
Tomas Winkler92ab8532008-07-24 21:02:04 +0300448}
449EXPORT_SYMBOL(ieee80211_queue_stopped);
450
Kalle Valoce7c9112008-12-18 23:35:20 +0200451void ieee80211_wake_queues_by_reason(struct ieee80211_hw *hw,
452 enum queue_stop_reason reason)
Johannes Bergc2d15602007-07-27 15:43:23 +0200453{
Kalle Valoce7c9112008-12-18 23:35:20 +0200454 struct ieee80211_local *local = hw_to_local(hw);
455 unsigned long flags;
Johannes Bergc2d15602007-07-27 15:43:23 +0200456 int i;
457
Kalle Valoce7c9112008-12-18 23:35:20 +0200458 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
459
Johannes Berge4e72fb2009-03-23 17:28:42 +0100460 for (i = 0; i < hw->queues; i++)
Kalle Valoce7c9112008-12-18 23:35:20 +0200461 __ieee80211_wake_queue(hw, i, reason);
462
463 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
464}
465
466void ieee80211_wake_queues(struct ieee80211_hw *hw)
467{
468 ieee80211_wake_queues_by_reason(hw, IEEE80211_QUEUE_STOP_REASON_DRIVER);
Johannes Bergc2d15602007-07-27 15:43:23 +0200469}
470EXPORT_SYMBOL(ieee80211_wake_queues);
Johannes Bergdabeb342007-11-09 01:57:29 +0100471
Johannes Berg32bfd352007-12-19 01:31:26 +0100472void ieee80211_iterate_active_interfaces(
473 struct ieee80211_hw *hw,
474 void (*iterator)(void *data, u8 *mac,
475 struct ieee80211_vif *vif),
476 void *data)
Johannes Bergdabeb342007-11-09 01:57:29 +0100477{
478 struct ieee80211_local *local = hw_to_local(hw);
479 struct ieee80211_sub_if_data *sdata;
480
Johannes Bergc771c9d2009-01-23 22:54:03 +0100481 mutex_lock(&local->iflist_mtx);
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200482
483 list_for_each_entry(sdata, &local->interfaces, list) {
484 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200485 case NL80211_IFTYPE_MONITOR:
486 case NL80211_IFTYPE_AP_VLAN:
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200487 continue;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200488 default:
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200489 break;
490 }
Johannes Berg9607e6b2009-12-23 13:15:31 +0100491 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100492 iterator(data, sdata->vif.addr,
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200493 &sdata->vif);
494 }
495
Johannes Bergc771c9d2009-01-23 22:54:03 +0100496 mutex_unlock(&local->iflist_mtx);
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200497}
498EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces);
499
500void ieee80211_iterate_active_interfaces_atomic(
501 struct ieee80211_hw *hw,
502 void (*iterator)(void *data, u8 *mac,
503 struct ieee80211_vif *vif),
504 void *data)
505{
506 struct ieee80211_local *local = hw_to_local(hw);
507 struct ieee80211_sub_if_data *sdata;
508
Johannes Berge38bad42007-11-28 10:55:32 +0100509 rcu_read_lock();
Johannes Bergdabeb342007-11-09 01:57:29 +0100510
Johannes Berge38bad42007-11-28 10:55:32 +0100511 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100512 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200513 case NL80211_IFTYPE_MONITOR:
514 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergdabeb342007-11-09 01:57:29 +0100515 continue;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200516 default:
Johannes Bergdabeb342007-11-09 01:57:29 +0100517 break;
518 }
Johannes Berg9607e6b2009-12-23 13:15:31 +0100519 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100520 iterator(data, sdata->vif.addr,
Johannes Berg32bfd352007-12-19 01:31:26 +0100521 &sdata->vif);
Johannes Bergdabeb342007-11-09 01:57:29 +0100522 }
Johannes Berge38bad42007-11-28 10:55:32 +0100523
524 rcu_read_unlock();
Johannes Bergdabeb342007-11-09 01:57:29 +0100525}
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200526EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic);
Johannes Berg37ffc8d2008-09-08 16:40:36 +0200527
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400528/*
529 * Nothing should have been stuffed into the workqueue during
530 * the suspend->resume cycle. If this WARN is seen then there
531 * is a bug with either the driver suspend or something in
532 * mac80211 stuffing into the workqueue which we haven't yet
533 * cleared during mac80211's suspend cycle.
534 */
535static bool ieee80211_can_queue_work(struct ieee80211_local *local)
536{
Johannes Bergceb99fe2009-11-19 14:29:39 +0100537 if (WARN(local->suspended && !local->resuming,
538 "queueing ieee80211 work while going to suspend\n"))
539 return false;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400540
541 return true;
542}
543
544void ieee80211_queue_work(struct ieee80211_hw *hw, struct work_struct *work)
545{
546 struct ieee80211_local *local = hw_to_local(hw);
547
548 if (!ieee80211_can_queue_work(local))
549 return;
550
551 queue_work(local->workqueue, work);
552}
553EXPORT_SYMBOL(ieee80211_queue_work);
554
555void ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
556 struct delayed_work *dwork,
557 unsigned long delay)
558{
559 struct ieee80211_local *local = hw_to_local(hw);
560
561 if (!ieee80211_can_queue_work(local))
562 return;
563
564 queue_delayed_work(local->workqueue, dwork, delay);
565}
566EXPORT_SYMBOL(ieee80211_queue_delayed_work);
567
Johannes Bergdd769862011-11-18 16:54:50 +0100568u32 ieee802_11_parse_elems_crc(u8 *start, size_t len,
569 struct ieee802_11_elems *elems,
570 u64 filter, u32 crc)
571{
572 size_t left = len;
573 u8 *pos = start;
574 bool calc_crc = filter != 0;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800575 DECLARE_BITMAP(seen_elems, 256);
Johannes Bergdd769862011-11-18 16:54:50 +0100576
Paul Stewartfcff4f12012-02-23 17:59:53 -0800577 bitmap_zero(seen_elems, 256);
Johannes Bergdd769862011-11-18 16:54:50 +0100578 memset(elems, 0, sizeof(*elems));
579 elems->ie_start = start;
580 elems->total_len = len;
581
582 while (left >= 2) {
583 u8 id, elen;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800584 bool elem_parse_failed;
Johannes Bergdd769862011-11-18 16:54:50 +0100585
586 id = *pos++;
587 elen = *pos++;
588 left -= 2;
589
Paul Stewartfcff4f12012-02-23 17:59:53 -0800590 if (elen > left) {
591 elems->parse_error = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100592 break;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800593 }
594
Johannes Bergf9bca922012-10-24 14:19:53 +0200595 switch (id) {
596 case WLAN_EID_SSID:
597 case WLAN_EID_SUPP_RATES:
598 case WLAN_EID_FH_PARAMS:
599 case WLAN_EID_DS_PARAMS:
600 case WLAN_EID_CF_PARAMS:
601 case WLAN_EID_TIM:
602 case WLAN_EID_IBSS_PARAMS:
603 case WLAN_EID_CHALLENGE:
604 case WLAN_EID_RSN:
605 case WLAN_EID_ERP_INFO:
606 case WLAN_EID_EXT_SUPP_RATES:
607 case WLAN_EID_HT_CAPABILITY:
608 case WLAN_EID_MESH_ID:
609 case WLAN_EID_MESH_CONFIG:
610 case WLAN_EID_PEER_MGMT:
611 case WLAN_EID_PREQ:
612 case WLAN_EID_PREP:
613 case WLAN_EID_PERR:
614 case WLAN_EID_RANN:
615 case WLAN_EID_CHANNEL_SWITCH:
616 case WLAN_EID_EXT_CHANSWITCH_ANN:
617 case WLAN_EID_COUNTRY:
618 case WLAN_EID_PWR_CONSTRAINT:
619 case WLAN_EID_TIMEOUT_INTERVAL:
620 if (test_bit(id, seen_elems)) {
621 elems->parse_error = true;
622 left -= elen;
623 pos += elen;
624 continue;
625 }
626 break;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800627 }
Johannes Bergdd769862011-11-18 16:54:50 +0100628
629 if (calc_crc && id < 64 && (filter & (1ULL << id)))
630 crc = crc32_be(crc, pos - 2, elen + 2);
631
Paul Stewartfcff4f12012-02-23 17:59:53 -0800632 elem_parse_failed = false;
633
Johannes Bergdd769862011-11-18 16:54:50 +0100634 switch (id) {
635 case WLAN_EID_SSID:
636 elems->ssid = pos;
637 elems->ssid_len = elen;
638 break;
639 case WLAN_EID_SUPP_RATES:
640 elems->supp_rates = pos;
641 elems->supp_rates_len = elen;
642 break;
643 case WLAN_EID_FH_PARAMS:
644 elems->fh_params = pos;
645 elems->fh_params_len = elen;
646 break;
647 case WLAN_EID_DS_PARAMS:
648 elems->ds_params = pos;
649 elems->ds_params_len = elen;
650 break;
651 case WLAN_EID_CF_PARAMS:
652 elems->cf_params = pos;
653 elems->cf_params_len = elen;
654 break;
655 case WLAN_EID_TIM:
656 if (elen >= sizeof(struct ieee80211_tim_ie)) {
657 elems->tim = (void *)pos;
658 elems->tim_len = elen;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800659 } else
660 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100661 break;
662 case WLAN_EID_IBSS_PARAMS:
663 elems->ibss_params = pos;
664 elems->ibss_params_len = elen;
665 break;
666 case WLAN_EID_CHALLENGE:
667 elems->challenge = pos;
668 elems->challenge_len = elen;
669 break;
670 case WLAN_EID_VENDOR_SPECIFIC:
671 if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 &&
672 pos[2] == 0xf2) {
673 /* Microsoft OUI (00:50:F2) */
674
675 if (calc_crc)
676 crc = crc32_be(crc, pos - 2, elen + 2);
677
678 if (pos[3] == 1) {
679 /* OUI Type 1 - WPA IE */
680 elems->wpa = pos;
681 elems->wpa_len = elen;
682 } else if (elen >= 5 && pos[3] == 2) {
683 /* OUI Type 2 - WMM IE */
684 if (pos[4] == 0) {
685 elems->wmm_info = pos;
686 elems->wmm_info_len = elen;
687 } else if (pos[4] == 1) {
688 elems->wmm_param = pos;
689 elems->wmm_param_len = elen;
690 }
691 }
692 }
693 break;
694 case WLAN_EID_RSN:
695 elems->rsn = pos;
696 elems->rsn_len = elen;
697 break;
698 case WLAN_EID_ERP_INFO:
699 elems->erp_info = pos;
700 elems->erp_info_len = elen;
701 break;
702 case WLAN_EID_EXT_SUPP_RATES:
703 elems->ext_supp_rates = pos;
704 elems->ext_supp_rates_len = elen;
705 break;
706 case WLAN_EID_HT_CAPABILITY:
707 if (elen >= sizeof(struct ieee80211_ht_cap))
708 elems->ht_cap_elem = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800709 else
710 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100711 break;
712 case WLAN_EID_HT_INFORMATION:
713 if (elen >= sizeof(struct ieee80211_ht_info))
714 elems->ht_info_elem = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800715 else
716 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100717 break;
718 case WLAN_EID_MESH_ID:
719 elems->mesh_id = pos;
720 elems->mesh_id_len = elen;
721 break;
722 case WLAN_EID_MESH_CONFIG:
723 if (elen >= sizeof(struct ieee80211_meshconf_ie))
724 elems->mesh_config = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800725 else
726 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100727 break;
728 case WLAN_EID_PEER_MGMT:
729 elems->peering = pos;
730 elems->peering_len = elen;
731 break;
732 case WLAN_EID_PREQ:
733 elems->preq = pos;
734 elems->preq_len = elen;
735 break;
736 case WLAN_EID_PREP:
737 elems->prep = pos;
738 elems->prep_len = elen;
739 break;
740 case WLAN_EID_PERR:
741 elems->perr = pos;
742 elems->perr_len = elen;
743 break;
744 case WLAN_EID_RANN:
745 if (elen >= sizeof(struct ieee80211_rann_ie))
746 elems->rann = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800747 else
748 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100749 break;
750 case WLAN_EID_CHANNEL_SWITCH:
751 elems->ch_switch_elem = pos;
752 elems->ch_switch_elem_len = elen;
753 break;
754 case WLAN_EID_QUIET:
755 if (!elems->quiet_elem) {
756 elems->quiet_elem = pos;
757 elems->quiet_elem_len = elen;
758 }
759 elems->num_of_quiet_elem++;
760 break;
761 case WLAN_EID_COUNTRY:
762 elems->country_elem = pos;
763 elems->country_elem_len = elen;
764 break;
765 case WLAN_EID_PWR_CONSTRAINT:
766 elems->pwr_constr_elem = pos;
767 elems->pwr_constr_elem_len = elen;
768 break;
769 case WLAN_EID_TIMEOUT_INTERVAL:
770 elems->timeout_int = pos;
771 elems->timeout_int_len = elen;
772 break;
773 default:
774 break;
775 }
776
Paul Stewartfcff4f12012-02-23 17:59:53 -0800777 if (elem_parse_failed)
778 elems->parse_error = true;
779 else
780 set_bit(id, seen_elems);
781
Johannes Bergdd769862011-11-18 16:54:50 +0100782 left -= elen;
783 pos += elen;
784 }
785
Paul Stewartfcff4f12012-02-23 17:59:53 -0800786 if (left != 0)
787 elems->parse_error = true;
788
Johannes Bergdd769862011-11-18 16:54:50 +0100789 return crc;
790}
791
Johannes Berg37ffc8d2008-09-08 16:40:36 +0200792void ieee802_11_parse_elems(u8 *start, size_t len,
793 struct ieee802_11_elems *elems)
794{
Johannes Bergd91f36d2009-04-16 13:17:26 +0200795 ieee802_11_parse_elems_crc(start, len, elems, 0, 0);
796}
797
Johannes Berg3abead52012-03-02 15:56:59 +0100798void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
799 bool bss_notify)
Johannes Berg5825fe12008-09-09 12:56:01 +0200800{
801 struct ieee80211_local *local = sdata->local;
802 struct ieee80211_tx_queue_params qparam;
Johannes Bergaa837e12009-05-07 16:16:24 +0200803 int queue;
804 bool use_11b;
805 int aCWmin, aCWmax;
Johannes Berg5825fe12008-09-09 12:56:01 +0200806
807 if (!local->ops->conf_tx)
808 return;
809
810 memset(&qparam, 0, sizeof(qparam));
811
Johannes Bergaa837e12009-05-07 16:16:24 +0200812 use_11b = (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) &&
813 !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE);
Johannes Berg5825fe12008-09-09 12:56:01 +0200814
Johannes Berg005e4722012-02-26 11:24:35 +0100815 for (queue = 0; queue < local->hw.queues; queue++) {
Johannes Bergaa837e12009-05-07 16:16:24 +0200816 /* Set defaults according to 802.11-2007 Table 7-37 */
817 aCWmax = 1023;
818 if (use_11b)
819 aCWmin = 31;
820 else
821 aCWmin = 15;
Johannes Berg5825fe12008-09-09 12:56:01 +0200822
Johannes Bergaa837e12009-05-07 16:16:24 +0200823 switch (queue) {
824 case 3: /* AC_BK */
Johannes Berg7ba10a82009-05-27 09:41:06 +0200825 qparam.cw_max = aCWmax;
826 qparam.cw_min = aCWmin;
Johannes Bergaa837e12009-05-07 16:16:24 +0200827 qparam.txop = 0;
828 qparam.aifs = 7;
829 break;
830 default: /* never happens but let's not leave undefined */
831 case 2: /* AC_BE */
Johannes Berg7ba10a82009-05-27 09:41:06 +0200832 qparam.cw_max = aCWmax;
833 qparam.cw_min = aCWmin;
Johannes Bergaa837e12009-05-07 16:16:24 +0200834 qparam.txop = 0;
835 qparam.aifs = 3;
836 break;
837 case 1: /* AC_VI */
838 qparam.cw_max = aCWmin;
839 qparam.cw_min = (aCWmin + 1) / 2 - 1;
840 if (use_11b)
841 qparam.txop = 6016/32;
842 else
843 qparam.txop = 3008/32;
844 qparam.aifs = 2;
845 break;
846 case 0: /* AC_VO */
847 qparam.cw_max = (aCWmin + 1) / 2 - 1;
848 qparam.cw_min = (aCWmin + 1) / 4 - 1;
849 if (use_11b)
850 qparam.txop = 3264/32;
851 else
852 qparam.txop = 1504/32;
853 qparam.aifs = 2;
854 break;
855 }
Johannes Berg5825fe12008-09-09 12:56:01 +0200856
Kalle Valoab133152010-01-12 10:42:31 +0200857 qparam.uapsd = false;
858
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300859 sdata->tx_conf[queue] = qparam;
860 drv_conf_tx(local, sdata, queue, &qparam);
Johannes Bergaa837e12009-05-07 16:16:24 +0200861 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200862
863 /* after reinitialize QoS TX queues setting to default,
864 * disable QoS at all */
Sujithd9734972010-07-23 10:47:11 +0530865
866 if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
867 sdata->vif.bss_conf.qos =
868 sdata->vif.type != NL80211_IFTYPE_STATION;
Johannes Berg3abead52012-03-02 15:56:59 +0100869 if (bss_notify)
870 ieee80211_bss_info_change_notify(sdata,
871 BSS_CHANGED_QOS);
Sujithd9734972010-07-23 10:47:11 +0530872 }
Johannes Berg5825fe12008-09-09 12:56:01 +0200873}
Johannes Berge50db652008-09-09 15:07:09 +0200874
Johannes Berg46900292009-02-15 12:44:28 +0100875void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
876 const size_t supp_rates_len,
877 const u8 *supp_rates)
878{
879 struct ieee80211_local *local = sdata->local;
880 int i, have_higher_than_11mbit = 0;
881
882 /* cf. IEEE 802.11 9.2.12 */
883 for (i = 0; i < supp_rates_len; i++)
884 if ((supp_rates[i] & 0x7f) * 5 > 110)
885 have_higher_than_11mbit = 1;
886
887 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
888 have_higher_than_11mbit)
889 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
890 else
891 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
892
Johannes Berg3abead52012-03-02 15:56:59 +0100893 ieee80211_set_wmm_default(sdata, true);
Johannes Berg46900292009-02-15 12:44:28 +0100894}
895
Johannes Berg881d9482009-01-21 15:13:48 +0100896u32 ieee80211_mandatory_rates(struct ieee80211_local *local,
Johannes Berg96dd22a2008-09-11 00:01:57 +0200897 enum ieee80211_band band)
898{
899 struct ieee80211_supported_band *sband;
900 struct ieee80211_rate *bitrates;
Johannes Berg881d9482009-01-21 15:13:48 +0100901 u32 mandatory_rates;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200902 enum ieee80211_rate_flags mandatory_flag;
903 int i;
904
905 sband = local->hw.wiphy->bands[band];
906 if (!sband) {
907 WARN_ON(1);
908 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
909 }
910
911 if (band == IEEE80211_BAND_2GHZ)
912 mandatory_flag = IEEE80211_RATE_MANDATORY_B;
913 else
914 mandatory_flag = IEEE80211_RATE_MANDATORY_A;
915
916 bitrates = sband->bitrates;
917 mandatory_rates = 0;
918 for (i = 0; i < sband->n_bitrates; i++)
919 if (bitrates[i].flags & mandatory_flag)
920 mandatory_rates |= BIT(i);
921 return mandatory_rates;
922}
Johannes Berg46900292009-02-15 12:44:28 +0100923
924void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
925 u16 transaction, u16 auth_alg,
Antonio Quartulliefa6a092012-01-09 19:43:06 +0100926 u8 *extra, size_t extra_len, const u8 *da,
927 const u8 *bssid, const u8 *key, u8 key_len, u8 key_idx)
Johannes Berg46900292009-02-15 12:44:28 +0100928{
929 struct ieee80211_local *local = sdata->local;
930 struct sk_buff *skb;
931 struct ieee80211_mgmt *mgmt;
Johannes Bergfffd0932009-07-08 14:22:54 +0200932 int err;
Johannes Berg46900292009-02-15 12:44:28 +0100933
934 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200935 sizeof(*mgmt) + 6 + extra_len);
Joe Perchesd15b8452011-08-29 14:17:31 -0700936 if (!skb)
Johannes Berg46900292009-02-15 12:44:28 +0100937 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700938
Johannes Berg46900292009-02-15 12:44:28 +0100939 skb_reserve(skb, local->hw.extra_tx_headroom);
940
941 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
942 memset(mgmt, 0, 24 + 6);
943 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
944 IEEE80211_STYPE_AUTH);
Antonio Quartulliefa6a092012-01-09 19:43:06 +0100945 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100946 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100947 memcpy(mgmt->bssid, bssid, ETH_ALEN);
948 mgmt->u.auth.auth_alg = cpu_to_le16(auth_alg);
949 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
950 mgmt->u.auth.status_code = cpu_to_le16(0);
951 if (extra)
952 memcpy(skb_put(skb, extra_len), extra, extra_len);
Johannes Berg46900292009-02-15 12:44:28 +0100953
Johannes Bergfffd0932009-07-08 14:22:54 +0200954 if (auth_alg == WLAN_AUTH_SHARED_KEY && transaction == 3) {
955 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
956 err = ieee80211_wep_encrypt(local, skb, key, key_len, key_idx);
957 WARN_ON(err);
958 }
959
Johannes Berg62ae67b2009-11-18 18:42:05 +0100960 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
961 ieee80211_tx_skb(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100962}
963
Johannes Bergde95a542009-04-01 11:58:36 +0200964int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
Johannes Berg4d36ec52009-10-27 20:59:55 +0100965 const u8 *ie, size_t ie_len,
Jouni Malinen651b5222010-08-28 19:37:51 +0300966 enum ieee80211_band band, u32 rate_mask,
967 u8 channel)
Johannes Bergde95a542009-04-01 11:58:36 +0200968{
969 struct ieee80211_supported_band *sband;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100970 u8 *pos;
971 size_t offset = 0, noffset;
972 int supp_rates_len, i;
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300973 u8 rates[32];
974 int num_rates;
975 int ext_rates_len;
Johannes Bergde95a542009-04-01 11:58:36 +0200976
Johannes Berg4d36ec52009-10-27 20:59:55 +0100977 sband = local->hw.wiphy->bands[band];
Johannes Bergde95a542009-04-01 11:58:36 +0200978
979 pos = buffer;
980
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300981 num_rates = 0;
982 for (i = 0; i < sband->n_bitrates; i++) {
983 if ((BIT(i) & rate_mask) == 0)
984 continue; /* skip rate */
985 rates[num_rates++] = (u8) (sband->bitrates[i].bitrate / 5);
986 }
987
988 supp_rates_len = min_t(int, num_rates, 8);
Johannes Berg8e664fb2009-12-23 13:15:38 +0100989
Johannes Bergde95a542009-04-01 11:58:36 +0200990 *pos++ = WLAN_EID_SUPP_RATES;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100991 *pos++ = supp_rates_len;
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300992 memcpy(pos, rates, supp_rates_len);
993 pos += supp_rates_len;
Johannes Bergde95a542009-04-01 11:58:36 +0200994
Johannes Berg8e664fb2009-12-23 13:15:38 +0100995 /* insert "request information" if in custom IEs */
996 if (ie && ie_len) {
997 static const u8 before_extrates[] = {
998 WLAN_EID_SSID,
999 WLAN_EID_SUPP_RATES,
1000 WLAN_EID_REQUEST,
1001 };
1002 noffset = ieee80211_ie_split(ie, ie_len,
1003 before_extrates,
1004 ARRAY_SIZE(before_extrates),
1005 offset);
1006 memcpy(pos, ie + offset, noffset - offset);
1007 pos += noffset - offset;
1008 offset = noffset;
1009 }
Johannes Bergde95a542009-04-01 11:58:36 +02001010
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001011 ext_rates_len = num_rates - supp_rates_len;
1012 if (ext_rates_len > 0) {
Johannes Berg8e664fb2009-12-23 13:15:38 +01001013 *pos++ = WLAN_EID_EXT_SUPP_RATES;
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001014 *pos++ = ext_rates_len;
1015 memcpy(pos, rates + supp_rates_len, ext_rates_len);
1016 pos += ext_rates_len;
Johannes Berg8e664fb2009-12-23 13:15:38 +01001017 }
1018
Jouni Malinen651b5222010-08-28 19:37:51 +03001019 if (channel && sband->band == IEEE80211_BAND_2GHZ) {
1020 *pos++ = WLAN_EID_DS_PARAMS;
1021 *pos++ = 1;
1022 *pos++ = channel;
1023 }
1024
Johannes Berg8e664fb2009-12-23 13:15:38 +01001025 /* insert custom IEs that go before HT */
1026 if (ie && ie_len) {
1027 static const u8 before_ht[] = {
1028 WLAN_EID_SSID,
1029 WLAN_EID_SUPP_RATES,
1030 WLAN_EID_REQUEST,
1031 WLAN_EID_EXT_SUPP_RATES,
1032 WLAN_EID_DS_PARAMS,
1033 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
1034 };
1035 noffset = ieee80211_ie_split(ie, ie_len,
1036 before_ht, ARRAY_SIZE(before_ht),
1037 offset);
1038 memcpy(pos, ie + offset, noffset - offset);
1039 pos += noffset - offset;
1040 offset = noffset;
Johannes Bergde95a542009-04-01 11:58:36 +02001041 }
1042
Alexander Simon42e7aa72011-10-26 14:47:26 -07001043 if (sband->ht_cap.ht_supported)
Ben Greearef96a8422011-11-18 11:32:00 -08001044 pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
1045 sband->ht_cap.cap);
Johannes Berg5ef2d412009-03-31 12:12:07 +02001046
Johannes Bergde95a542009-04-01 11:58:36 +02001047 /*
1048 * If adding more here, adjust code in main.c
1049 * that calculates local->scan_ies_len.
1050 */
1051
Johannes Berg8e664fb2009-12-23 13:15:38 +01001052 /* add any remaining custom IEs */
1053 if (ie && ie_len) {
1054 noffset = ie_len;
1055 memcpy(pos, ie + offset, noffset - offset);
1056 pos += noffset - offset;
Johannes Bergde95a542009-04-01 11:58:36 +02001057 }
1058
Mahesh Palivela5e89ac72012-07-02 11:25:12 +00001059 if (sband->vht_cap.vht_supported)
1060 pos = ieee80211_ie_build_vht_cap(pos, &sband->vht_cap,
1061 sband->vht_cap.cap);
1062
Johannes Bergde95a542009-04-01 11:58:36 +02001063 return pos - buffer;
1064}
1065
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001066struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
Johannes Berg85a237f2011-07-18 18:08:36 +02001067 u8 *dst, u32 ratemask,
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001068 const u8 *ssid, size_t ssid_len,
Paul Stewarta806c552011-06-23 09:00:11 -08001069 const u8 *ie, size_t ie_len,
1070 bool directed)
Johannes Berg46900292009-02-15 12:44:28 +01001071{
1072 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001073 struct sk_buff *skb;
1074 struct ieee80211_mgmt *mgmt;
Kalle Valo7c12ce82010-01-05 20:16:44 +02001075 size_t buf_len;
1076 u8 *buf;
Jouni Malinen651b5222010-08-28 19:37:51 +03001077 u8 chan;
Johannes Berg46900292009-02-15 12:44:28 +01001078
Kalle Valo7c12ce82010-01-05 20:16:44 +02001079 /* FIXME: come up with a proper value */
1080 buf = kmalloc(200 + ie_len, GFP_KERNEL);
Joe Perchesd15b8452011-08-29 14:17:31 -07001081 if (!buf)
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001082 return NULL;
Johannes Berg46900292009-02-15 12:44:28 +01001083
Paul Stewarta806c552011-06-23 09:00:11 -08001084 /*
1085 * Do not send DS Channel parameter for directed probe requests
1086 * in order to maximize the chance that we get a response. Some
1087 * badly-behaved APs don't respond when this parameter is included.
1088 */
1089 if (directed)
1090 chan = 0;
1091 else
1092 chan = ieee80211_frequency_to_channel(
1093 local->hw.conf.channel->center_freq);
Jouni Malinen651b5222010-08-28 19:37:51 +03001094
Kalle Valo7c12ce82010-01-05 20:16:44 +02001095 buf_len = ieee80211_build_preq_ies(local, buf, ie, ie_len,
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001096 local->hw.conf.channel->band,
Johannes Berg85a237f2011-07-18 18:08:36 +02001097 ratemask, chan);
Kalle Valo7c12ce82010-01-05 20:16:44 +02001098
1099 skb = ieee80211_probereq_get(&local->hw, &sdata->vif,
1100 ssid, ssid_len,
1101 buf, buf_len);
Johannes Berg5b2bbf72011-11-08 13:04:41 +01001102 if (!skb)
1103 goto out;
Kalle Valo7c12ce82010-01-05 20:16:44 +02001104
Johannes Berg46900292009-02-15 12:44:28 +01001105 if (dst) {
Kalle Valo7c12ce82010-01-05 20:16:44 +02001106 mgmt = (struct ieee80211_mgmt *) skb->data;
Johannes Berg46900292009-02-15 12:44:28 +01001107 memcpy(mgmt->da, dst, ETH_ALEN);
1108 memcpy(mgmt->bssid, dst, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01001109 }
Johannes Berg46900292009-02-15 12:44:28 +01001110
Johannes Berg62ae67b2009-11-18 18:42:05 +01001111 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg5b2bbf72011-11-08 13:04:41 +01001112
1113 out:
Ming Lei145b6d12010-01-15 21:44:21 +08001114 kfree(buf);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001115
1116 return skb;
1117}
1118
1119void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
1120 const u8 *ssid, size_t ssid_len,
Paul Stewarta806c552011-06-23 09:00:11 -08001121 const u8 *ie, size_t ie_len,
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301122 u32 ratemask, bool directed, bool no_cck)
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001123{
1124 struct sk_buff *skb;
1125
Johannes Berg85a237f2011-07-18 18:08:36 +02001126 skb = ieee80211_build_probe_req(sdata, dst, ratemask, ssid, ssid_len,
1127 ie, ie_len, directed);
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301128 if (skb) {
1129 if (no_cck)
1130 IEEE80211_SKB_CB(skb)->flags |=
1131 IEEE80211_TX_CTL_NO_CCK_RATE;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001132 ieee80211_tx_skb(sdata, skb);
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301133 }
Johannes Berg46900292009-02-15 12:44:28 +01001134}
1135
1136u32 ieee80211_sta_get_rates(struct ieee80211_local *local,
1137 struct ieee802_11_elems *elems,
1138 enum ieee80211_band band)
1139{
1140 struct ieee80211_supported_band *sband;
1141 struct ieee80211_rate *bitrates;
1142 size_t num_rates;
1143 u32 supp_rates;
1144 int i, j;
1145 sband = local->hw.wiphy->bands[band];
1146
1147 if (!sband) {
1148 WARN_ON(1);
1149 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1150 }
1151
1152 bitrates = sband->bitrates;
1153 num_rates = sband->n_bitrates;
1154 supp_rates = 0;
1155 for (i = 0; i < elems->supp_rates_len +
1156 elems->ext_supp_rates_len; i++) {
1157 u8 rate = 0;
1158 int own_rate;
1159 if (i < elems->supp_rates_len)
1160 rate = elems->supp_rates[i];
1161 else if (elems->ext_supp_rates)
1162 rate = elems->ext_supp_rates
1163 [i - elems->supp_rates_len];
1164 own_rate = 5 * (rate & 0x7f);
1165 for (j = 0; j < num_rates; j++)
1166 if (bitrates[j].bitrate == own_rate)
1167 supp_rates |= BIT(j);
1168 }
1169 return supp_rates;
1170}
Johannes Bergf2753dd2009-04-14 10:09:24 +02001171
Johannes Berg84f6a012009-08-20 20:02:20 +02001172void ieee80211_stop_device(struct ieee80211_local *local)
1173{
1174 ieee80211_led_radio(local, false);
Johannes Berg67408c82010-11-30 08:59:23 +01001175 ieee80211_mod_tpt_led_trig(local, 0, IEEE80211_TPT_LEDTRIG_FL_RADIO);
Johannes Berg84f6a012009-08-20 20:02:20 +02001176
1177 cancel_work_sync(&local->reconfig_filter);
Johannes Berg84f6a012009-08-20 20:02:20 +02001178
1179 flush_workqueue(local->workqueue);
Lennert Buytenhek678f4152010-01-10 14:07:53 +01001180 drv_stop(local);
Johannes Berg84f6a012009-08-20 20:02:20 +02001181}
1182
Johannes Bergf2753dd2009-04-14 10:09:24 +02001183int ieee80211_reconfig(struct ieee80211_local *local)
1184{
1185 struct ieee80211_hw *hw = &local->hw;
1186 struct ieee80211_sub_if_data *sdata;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001187 struct sta_info *sta;
Eliad Peller2683d652011-07-14 20:29:42 +03001188 int res, i;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001189
Johannes Bergeecc4802011-05-04 15:37:29 +02001190#ifdef CONFIG_PM
Johannes Bergceb99fe2009-11-19 14:29:39 +01001191 if (local->suspended)
1192 local->resuming = true;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001193
Johannes Bergeecc4802011-05-04 15:37:29 +02001194 if (local->wowlan) {
1195 local->wowlan = false;
1196 res = drv_resume(local);
1197 if (res < 0) {
1198 local->resuming = false;
1199 return res;
1200 }
1201 if (res == 0)
1202 goto wake_up;
1203 WARN_ON(res > 1);
1204 /*
1205 * res is 1, which means the driver requested
1206 * to go through a regular reset on wakeup.
1207 */
1208 }
1209#endif
Johannes Berg94f9b972011-07-14 16:48:54 +02001210 /* everything else happens only if HW was up & running */
1211 if (!local->open_count)
1212 goto wake_up;
1213
1214 /*
1215 * Upon resume hardware can sometimes be goofy due to
1216 * various platform / driver / bus issues, so restarting
1217 * the device may at times not work immediately. Propagate
1218 * the error.
1219 */
1220 res = drv_start(local);
1221 if (res) {
1222 WARN(local->suspended, "Hardware became unavailable "
1223 "upon resume. This could be a software issue "
1224 "prior to suspend or a hardware issue.\n");
1225 return res;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001226 }
1227
Yogesh Ashok Powar7f281972011-12-30 16:34:25 +05301228 /* setup fragmentation threshold */
1229 drv_set_frag_threshold(local, hw->wiphy->frag_threshold);
1230
1231 /* setup RTS threshold */
1232 drv_set_rts_threshold(local, hw->wiphy->rts_threshold);
1233
1234 /* reset coverage class */
1235 drv_set_coverage_class(local, hw->wiphy->coverage_class);
1236
Johannes Berg94f9b972011-07-14 16:48:54 +02001237 ieee80211_led_radio(local, true);
1238 ieee80211_mod_tpt_led_trig(local,
1239 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
1240
Johannes Bergf2753dd2009-04-14 10:09:24 +02001241 /* add interfaces */
1242 list_for_each_entry(sdata, &local->interfaces, list) {
1243 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1244 sdata->vif.type != NL80211_IFTYPE_MONITOR &&
Johannes Berg1ed32e42009-12-23 13:15:45 +01001245 ieee80211_sdata_running(sdata))
Johannes Berg7b7eab62011-11-03 14:41:13 +01001246 res = drv_add_interface(local, sdata);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001247 }
1248
1249 /* add STAs back */
Johannes Berg34e89502010-02-03 13:59:58 +01001250 mutex_lock(&local->sta_mtx);
1251 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Bergf09603a2012-01-20 13:55:21 +01001252 if (sta->uploaded) {
1253 enum ieee80211_sta_state state;
1254
Johannes Bergf09603a2012-01-20 13:55:21 +01001255 for (state = IEEE80211_STA_NOTEXIST;
Meenakshi Venkataraman0a9ba912012-05-30 11:39:33 +02001256 state < sta->sta_state; state++)
Johannes Bergf09603a2012-01-20 13:55:21 +01001257 WARN_ON(drv_sta_state(local, sta->sdata, sta,
1258 state, state + 1));
1259 }
Johannes Bergf2753dd2009-04-14 10:09:24 +02001260 }
Johannes Berg34e89502010-02-03 13:59:58 +01001261 mutex_unlock(&local->sta_mtx);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001262
Eliad Peller2683d652011-07-14 20:29:42 +03001263 /* reconfigure tx conf */
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001264 list_for_each_entry(sdata, &local->interfaces, list) {
1265 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1266 sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1267 !ieee80211_sdata_running(sdata))
1268 continue;
1269
1270 for (i = 0; i < hw->queues; i++)
1271 drv_conf_tx(local, sdata, i, &sdata->tx_conf[i]);
1272 }
Eliad Peller2683d652011-07-14 20:29:42 +03001273
Johannes Bergf2753dd2009-04-14 10:09:24 +02001274 /* reconfigure hardware */
1275 ieee80211_hw_config(local, ~0);
1276
Johannes Bergf2753dd2009-04-14 10:09:24 +02001277 ieee80211_configure_filter(local);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001278
1279 /* Finally also reconfigure all the BSS information */
1280 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Bergac8dd502010-05-05 09:44:02 +02001281 u32 changed;
1282
Johannes Berg9607e6b2009-12-23 13:15:31 +01001283 if (!ieee80211_sdata_running(sdata))
Johannes Bergf2753dd2009-04-14 10:09:24 +02001284 continue;
Johannes Bergac8dd502010-05-05 09:44:02 +02001285
1286 /* common change flags for all interface types */
1287 changed = BSS_CHANGED_ERP_CTS_PROT |
1288 BSS_CHANGED_ERP_PREAMBLE |
1289 BSS_CHANGED_ERP_SLOT |
1290 BSS_CHANGED_HT |
1291 BSS_CHANGED_BASIC_RATES |
1292 BSS_CHANGED_BEACON_INT |
1293 BSS_CHANGED_BSSID |
Johannes Berg4ced3f72010-07-19 16:39:04 +02001294 BSS_CHANGED_CQM |
Eliad Peller55de47f2011-11-01 15:16:55 +02001295 BSS_CHANGED_QOS |
1296 BSS_CHANGED_IDLE;
Johannes Bergac8dd502010-05-05 09:44:02 +02001297
Johannes Bergf2753dd2009-04-14 10:09:24 +02001298 switch (sdata->vif.type) {
1299 case NL80211_IFTYPE_STATION:
Eliad Peller0d392e92011-12-12 14:10:49 +02001300 changed |= BSS_CHANGED_ASSOC |
1301 BSS_CHANGED_ARP_FILTER;
Eliad Pellera7b545f2011-02-08 18:43:19 +02001302 mutex_lock(&sdata->u.mgd.mtx);
Johannes Bergac8dd502010-05-05 09:44:02 +02001303 ieee80211_bss_info_change_notify(sdata, changed);
Eliad Pellera7b545f2011-02-08 18:43:19 +02001304 mutex_unlock(&sdata->u.mgd.mtx);
Johannes Bergac8dd502010-05-05 09:44:02 +02001305 break;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001306 case NL80211_IFTYPE_ADHOC:
Johannes Bergac8dd502010-05-05 09:44:02 +02001307 changed |= BSS_CHANGED_IBSS;
1308 /* fall through */
Johannes Bergf2753dd2009-04-14 10:09:24 +02001309 case NL80211_IFTYPE_AP:
Arik Nemtsove7979ac2011-11-22 19:33:18 +02001310 changed |= BSS_CHANGED_SSID;
1311
1312 if (sdata->vif.type == NL80211_IFTYPE_AP)
1313 changed |= BSS_CHANGED_AP_PROBE_RESP;
1314
Arik Nemtsov78274932011-09-04 11:11:32 +03001315 /* fall through */
Johannes Bergf2753dd2009-04-14 10:09:24 +02001316 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergac8dd502010-05-05 09:44:02 +02001317 changed |= BSS_CHANGED_BEACON |
1318 BSS_CHANGED_BEACON_ENABLED;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001319 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001320 break;
1321 case NL80211_IFTYPE_WDS:
1322 break;
1323 case NL80211_IFTYPE_AP_VLAN:
1324 case NL80211_IFTYPE_MONITOR:
1325 /* ignore virtual */
1326 break;
1327 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f72010-08-12 15:38:38 +02001328 case NUM_NL80211_IFTYPES:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001329 case NL80211_IFTYPE_P2P_CLIENT:
1330 case NL80211_IFTYPE_P2P_GO:
Johannes Bergf2753dd2009-04-14 10:09:24 +02001331 WARN_ON(1);
1332 break;
1333 }
1334 }
1335
Eyal Shapira8e1b23b2011-11-09 12:29:06 +02001336 ieee80211_recalc_ps(local, -1);
1337
Johannes Berg2a419052010-06-10 10:21:29 +02001338 /*
Eliad Peller6e1b1b22012-01-26 13:36:05 +02001339 * The sta might be in psm against the ap (e.g. because
1340 * this was the state before a hw restart), so we
1341 * explicitly send a null packet in order to make sure
1342 * it'll sync against the ap (and get out of psm).
1343 */
1344 if (!(local->hw.conf.flags & IEEE80211_CONF_PS)) {
1345 list_for_each_entry(sdata, &local->interfaces, list) {
1346 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1347 continue;
Johannes Berge0ed51d2012-11-08 14:06:28 +01001348 if (!sdata->u.mgd.associated)
1349 continue;
Eliad Peller6e1b1b22012-01-26 13:36:05 +02001350
1351 ieee80211_send_nullfunc(local, sdata, 0);
1352 }
1353 }
1354
Eyal Shapirab5b3f262012-05-29 02:00:22 -07001355 /* add back keys */
1356 list_for_each_entry(sdata, &local->interfaces, list)
1357 if (ieee80211_sdata_running(sdata))
1358 ieee80211_enable_keys(sdata);
1359
1360 wake_up:
Eliad Peller6e1b1b22012-01-26 13:36:05 +02001361 /*
Johannes Berg2a419052010-06-10 10:21:29 +02001362 * Clear the WLAN_STA_BLOCK_BA flag so new aggregation
1363 * sessions can be established after a resume.
1364 *
1365 * Also tear down aggregation sessions since reconfiguring
1366 * them in a hardware restart scenario is not easily done
1367 * right now, and the hardware will have lost information
1368 * about the sessions, but we and the AP still think they
1369 * are active. This is really a workaround though.
1370 */
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001371 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
Johannes Berg2a419052010-06-10 10:21:29 +02001372 mutex_lock(&local->sta_mtx);
1373
1374 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Berg53f73c02010-10-05 19:37:40 +02001375 ieee80211_sta_tear_down_BA_sessions(sta, true);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001376 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001377 }
Johannes Berg2a419052010-06-10 10:21:29 +02001378
1379 mutex_unlock(&local->sta_mtx);
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001380 }
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001381
Johannes Bergf2753dd2009-04-14 10:09:24 +02001382 ieee80211_wake_queues_by_reason(hw,
1383 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
1384
Johannes Berg5bb644a2009-05-17 11:40:42 +02001385 /*
1386 * If this is for hw restart things are still running.
1387 * We may want to change that later, however.
1388 */
Johannes Bergceb99fe2009-11-19 14:29:39 +01001389 if (!local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001390 return 0;
1391
1392#ifdef CONFIG_PM
Johannes Bergceb99fe2009-11-19 14:29:39 +01001393 /* first set suspended false, then resuming */
Johannes Berg5bb644a2009-05-17 11:40:42 +02001394 local->suspended = false;
Johannes Bergceb99fe2009-11-19 14:29:39 +01001395 mb();
1396 local->resuming = false;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001397
1398 list_for_each_entry(sdata, &local->interfaces, list) {
1399 switch(sdata->vif.type) {
1400 case NL80211_IFTYPE_STATION:
1401 ieee80211_sta_restart(sdata);
1402 break;
1403 case NL80211_IFTYPE_ADHOC:
1404 ieee80211_ibss_restart(sdata);
1405 break;
1406 case NL80211_IFTYPE_MESH_POINT:
1407 ieee80211_mesh_restart(sdata);
1408 break;
1409 default:
1410 break;
1411 }
1412 }
1413
Johannes Berg26d59532011-04-01 13:52:48 +02001414 mod_timer(&local->sta_cleanup, jiffies + 1);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001415
Johannes Berg34e89502010-02-03 13:59:58 +01001416 mutex_lock(&local->sta_mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001417 list_for_each_entry(sta, &local->sta_list, list)
1418 mesh_plink_restart(sta);
Johannes Berg34e89502010-02-03 13:59:58 +01001419 mutex_unlock(&local->sta_mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001420#else
1421 WARN_ON(1);
1422#endif
Johannes Bergf2753dd2009-04-14 10:09:24 +02001423 return 0;
1424}
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001425
Johannes Berg95acac62011-07-12 12:30:59 +02001426void ieee80211_resume_disconnect(struct ieee80211_vif *vif)
1427{
1428 struct ieee80211_sub_if_data *sdata;
1429 struct ieee80211_local *local;
1430 struct ieee80211_key *key;
1431
1432 if (WARN_ON(!vif))
1433 return;
1434
1435 sdata = vif_to_sdata(vif);
1436 local = sdata->local;
1437
1438 if (WARN_ON(!local->resuming))
1439 return;
1440
1441 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1442 return;
1443
1444 sdata->flags |= IEEE80211_SDATA_DISCONNECT_RESUME;
1445
1446 mutex_lock(&local->key_mtx);
1447 list_for_each_entry(key, &sdata->key_list, list)
1448 key->flags |= KEY_FLAG_TAINTED;
1449 mutex_unlock(&local->key_mtx);
1450}
1451EXPORT_SYMBOL_GPL(ieee80211_resume_disconnect);
1452
Johannes Berg0f782312009-12-01 13:37:02 +01001453static int check_mgd_smps(struct ieee80211_if_managed *ifmgd,
1454 enum ieee80211_smps_mode *smps_mode)
1455{
1456 if (ifmgd->associated) {
1457 *smps_mode = ifmgd->ap_smps;
1458
1459 if (*smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1460 if (ifmgd->powersave)
1461 *smps_mode = IEEE80211_SMPS_DYNAMIC;
1462 else
1463 *smps_mode = IEEE80211_SMPS_OFF;
1464 }
1465
1466 return 1;
1467 }
1468
1469 return 0;
1470}
1471
1472/* must hold iflist_mtx */
Johannes Berg025e6be2010-10-05 10:41:47 +02001473void ieee80211_recalc_smps(struct ieee80211_local *local)
Johannes Berg0f782312009-12-01 13:37:02 +01001474{
1475 struct ieee80211_sub_if_data *sdata;
1476 enum ieee80211_smps_mode smps_mode = IEEE80211_SMPS_OFF;
1477 int count = 0;
1478
Johannes Berg46a5eba2010-09-15 13:28:15 +02001479 lockdep_assert_held(&local->iflist_mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01001480
1481 /*
1482 * This function could be improved to handle multiple
1483 * interfaces better, but right now it makes any
1484 * non-station interfaces force SM PS to be turned
1485 * off. If there are multiple station interfaces it
1486 * could also use the best possible mode, e.g. if
1487 * one is in static and the other in dynamic then
1488 * dynamic is ok.
1489 */
1490
1491 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg26a58452010-08-27 12:35:55 +02001492 if (!ieee80211_sdata_running(sdata))
Johannes Berg0f782312009-12-01 13:37:02 +01001493 continue;
1494 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1495 goto set;
Johannes Berg025e6be2010-10-05 10:41:47 +02001496
1497 count += check_mgd_smps(&sdata->u.mgd, &smps_mode);
Johannes Berg0f782312009-12-01 13:37:02 +01001498
1499 if (count > 1) {
1500 smps_mode = IEEE80211_SMPS_OFF;
1501 break;
1502 }
1503 }
1504
1505 if (smps_mode == local->smps_mode)
1506 return;
1507
1508 set:
1509 local->smps_mode = smps_mode;
1510 /* changed flag is auto-detected for this */
1511 ieee80211_hw_config(local, 0);
1512}
Johannes Berg8e664fb2009-12-23 13:15:38 +01001513
1514static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
1515{
1516 int i;
1517
1518 for (i = 0; i < n_ids; i++)
1519 if (ids[i] == id)
1520 return true;
1521 return false;
1522}
1523
1524/**
1525 * ieee80211_ie_split - split an IE buffer according to ordering
1526 *
1527 * @ies: the IE buffer
1528 * @ielen: the length of the IE buffer
1529 * @ids: an array with element IDs that are allowed before
1530 * the split
1531 * @n_ids: the size of the element ID array
1532 * @offset: offset where to start splitting in the buffer
1533 *
1534 * This function splits an IE buffer by updating the @offset
1535 * variable to point to the location where the buffer should be
1536 * split.
1537 *
1538 * It assumes that the given IE buffer is well-formed, this
1539 * has to be guaranteed by the caller!
1540 *
1541 * It also assumes that the IEs in the buffer are ordered
1542 * correctly, if not the result of using this function will not
1543 * be ordered correctly either, i.e. it does no reordering.
1544 *
1545 * The function returns the offset where the next part of the
1546 * buffer starts, which may be @ielen if the entire (remainder)
1547 * of the buffer should be used.
1548 */
1549size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
1550 const u8 *ids, int n_ids, size_t offset)
1551{
1552 size_t pos = offset;
1553
1554 while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos]))
1555 pos += 2 + ies[pos + 1];
1556
1557 return pos;
1558}
1559
1560size_t ieee80211_ie_split_vendor(const u8 *ies, size_t ielen, size_t offset)
1561{
1562 size_t pos = offset;
1563
1564 while (pos < ielen && ies[pos] != WLAN_EID_VENDOR_SPECIFIC)
1565 pos += 2 + ies[pos + 1];
1566
1567 return pos;
1568}
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001569
1570static void _ieee80211_enable_rssi_reports(struct ieee80211_sub_if_data *sdata,
1571 int rssi_min_thold,
1572 int rssi_max_thold)
1573{
1574 trace_api_enable_rssi_reports(sdata, rssi_min_thold, rssi_max_thold);
1575
1576 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1577 return;
1578
1579 /*
1580 * Scale up threshold values before storing it, as the RSSI averaging
1581 * algorithm uses a scaled up value as well. Change this scaling
1582 * factor if the RSSI averaging algorithm changes.
1583 */
1584 sdata->u.mgd.rssi_min_thold = rssi_min_thold*16;
1585 sdata->u.mgd.rssi_max_thold = rssi_max_thold*16;
1586}
1587
1588void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
1589 int rssi_min_thold,
1590 int rssi_max_thold)
1591{
1592 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1593
1594 WARN_ON(rssi_min_thold == rssi_max_thold ||
1595 rssi_min_thold > rssi_max_thold);
1596
1597 _ieee80211_enable_rssi_reports(sdata, rssi_min_thold,
1598 rssi_max_thold);
1599}
1600EXPORT_SYMBOL(ieee80211_enable_rssi_reports);
1601
1602void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif)
1603{
1604 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1605
1606 _ieee80211_enable_rssi_reports(sdata, 0, 0);
1607}
1608EXPORT_SYMBOL(ieee80211_disable_rssi_reports);
Arik Nemtsov768db342011-09-28 14:12:51 +03001609
Ben Greearef96a8422011-11-18 11:32:00 -08001610u8 *ieee80211_ie_build_ht_cap(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
Alexander Simon42e7aa72011-10-26 14:47:26 -07001611 u16 cap)
1612{
1613 __le16 tmp;
1614
1615 *pos++ = WLAN_EID_HT_CAPABILITY;
1616 *pos++ = sizeof(struct ieee80211_ht_cap);
1617 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
1618
1619 /* capability flags */
1620 tmp = cpu_to_le16(cap);
1621 memcpy(pos, &tmp, sizeof(u16));
1622 pos += sizeof(u16);
1623
1624 /* AMPDU parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001625 *pos++ = ht_cap->ampdu_factor |
1626 (ht_cap->ampdu_density <<
Alexander Simon42e7aa72011-10-26 14:47:26 -07001627 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
1628
1629 /* MCS set */
Ben Greearef96a8422011-11-18 11:32:00 -08001630 memcpy(pos, &ht_cap->mcs, sizeof(ht_cap->mcs));
1631 pos += sizeof(ht_cap->mcs);
Alexander Simon42e7aa72011-10-26 14:47:26 -07001632
1633 /* extended capabilities */
1634 pos += sizeof(__le16);
1635
1636 /* BF capabilities */
1637 pos += sizeof(__le32);
1638
1639 /* antenna selection */
1640 pos += sizeof(u8);
1641
1642 return pos;
1643}
1644
Mahesh Palivela5e89ac72012-07-02 11:25:12 +00001645u8 *ieee80211_ie_build_vht_cap(u8 *pos, struct ieee80211_sta_vht_cap *vht_cap,
1646 u32 cap)
1647{
1648 __le32 tmp;
1649
1650 *pos++ = WLAN_EID_VHT_CAPABILITY;
Mahesh Palivela8d200ae2012-10-10 11:25:40 +00001651 *pos++ = sizeof(struct ieee80211_vht_cap);
1652 memset(pos, 0, sizeof(struct ieee80211_vht_cap));
Mahesh Palivela5e89ac72012-07-02 11:25:12 +00001653
1654 /* capability flags */
1655 tmp = cpu_to_le32(cap);
1656 memcpy(pos, &tmp, sizeof(u32));
1657 pos += sizeof(u32);
1658
1659 /* VHT MCS set */
1660 memcpy(pos, &vht_cap->vht_mcs, sizeof(vht_cap->vht_mcs));
1661 pos += sizeof(vht_cap->vht_mcs);
1662
1663 return pos;
1664}
1665
Alexander Simon42e7aa72011-10-26 14:47:26 -07001666u8 *ieee80211_ie_build_ht_info(u8 *pos,
1667 struct ieee80211_sta_ht_cap *ht_cap,
1668 struct ieee80211_channel *channel,
1669 enum nl80211_channel_type channel_type)
1670{
1671 struct ieee80211_ht_info *ht_info;
1672 /* Build HT Information */
1673 *pos++ = WLAN_EID_HT_INFORMATION;
1674 *pos++ = sizeof(struct ieee80211_ht_info);
1675 ht_info = (struct ieee80211_ht_info *)pos;
1676 ht_info->control_chan =
1677 ieee80211_frequency_to_channel(channel->center_freq);
1678 switch (channel_type) {
1679 case NL80211_CHAN_HT40MINUS:
1680 ht_info->ht_param = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
1681 break;
1682 case NL80211_CHAN_HT40PLUS:
1683 ht_info->ht_param = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
1684 break;
1685 case NL80211_CHAN_HT20:
1686 default:
1687 ht_info->ht_param = IEEE80211_HT_PARAM_CHA_SEC_NONE;
1688 break;
1689 }
1690 if (ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40)
1691 ht_info->ht_param |= IEEE80211_HT_PARAM_CHAN_WIDTH_ANY;
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01001692
1693 /*
1694 * Note: According to 802.11n-2009 9.13.3.1, HT Protection field and
1695 * RIFS Mode are reserved in IBSS mode, therefore keep them at 0
1696 */
Alexander Simon42e7aa72011-10-26 14:47:26 -07001697 ht_info->operation_mode = 0x0000;
1698 ht_info->stbc_param = 0x0000;
1699
1700 /* It seems that Basic MCS set and Supported MCS set
1701 are identical for the first 10 bytes */
1702 memset(&ht_info->basic_set, 0, 16);
1703 memcpy(&ht_info->basic_set, &ht_cap->mcs, 10);
1704
1705 return pos + sizeof(struct ieee80211_ht_info);
1706}
1707
1708enum nl80211_channel_type
1709ieee80211_ht_info_to_channel_type(struct ieee80211_ht_info *ht_info)
1710{
1711 enum nl80211_channel_type channel_type;
1712
1713 if (!ht_info)
1714 return NL80211_CHAN_NO_HT;
1715
1716 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
1717 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
1718 channel_type = NL80211_CHAN_HT20;
1719 break;
1720 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
1721 channel_type = NL80211_CHAN_HT40PLUS;
1722 break;
1723 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
1724 channel_type = NL80211_CHAN_HT40MINUS;
1725 break;
1726 default:
1727 channel_type = NL80211_CHAN_NO_HT;
1728 }
1729
1730 return channel_type;
1731}
1732
Arik Nemtsov768db342011-09-28 14:12:51 +03001733int ieee80211_add_srates_ie(struct ieee80211_vif *vif, struct sk_buff *skb)
1734{
1735 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1736 struct ieee80211_local *local = sdata->local;
1737 struct ieee80211_supported_band *sband;
1738 int rate;
1739 u8 i, rates, *pos;
1740
1741 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1742 rates = sband->n_bitrates;
1743 if (rates > 8)
1744 rates = 8;
1745
1746 if (skb_tailroom(skb) < rates + 2)
1747 return -ENOMEM;
1748
1749 pos = skb_put(skb, rates + 2);
1750 *pos++ = WLAN_EID_SUPP_RATES;
1751 *pos++ = rates;
1752 for (i = 0; i < rates; i++) {
1753 rate = sband->bitrates[i].bitrate;
1754 *pos++ = (u8) (rate / 5);
1755 }
1756
1757 return 0;
1758}
1759
1760int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, struct sk_buff *skb)
1761{
1762 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1763 struct ieee80211_local *local = sdata->local;
1764 struct ieee80211_supported_band *sband;
1765 int rate;
1766 u8 i, exrates, *pos;
1767
1768 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1769 exrates = sband->n_bitrates;
1770 if (exrates > 8)
1771 exrates -= 8;
1772 else
1773 exrates = 0;
1774
1775 if (skb_tailroom(skb) < exrates + 2)
1776 return -ENOMEM;
1777
1778 if (exrates) {
1779 pos = skb_put(skb, exrates + 2);
1780 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1781 *pos++ = exrates;
1782 for (i = 8; i < sband->n_bitrates; i++) {
1783 rate = sband->bitrates[i].bitrate;
1784 *pos++ = (u8) (rate / 5);
1785 }
1786 }
1787 return 0;
1788}