blob: 2b62307825d4333c909d726afac8e2985d0ee051 [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 Berg3b8d81e02009-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 Berg3b8d81e02009-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 Berg3b8d81e02009-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 Berg3b8d81e02009-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
Kalle Valoce7c9112008-12-18 23:35:20 +0200407void ieee80211_stop_queues_by_reason(struct ieee80211_hw *hw,
408 enum queue_stop_reason reason)
Johannes Bergc2d15602007-07-27 15:43:23 +0200409{
Kalle Valoce7c9112008-12-18 23:35:20 +0200410 struct ieee80211_local *local = hw_to_local(hw);
411 unsigned long flags;
Johannes Bergc2d15602007-07-27 15:43:23 +0200412 int i;
413
Kalle Valoce7c9112008-12-18 23:35:20 +0200414 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
415
Johannes Berg96f5e662009-02-12 00:51:53 +0100416 for (i = 0; i < hw->queues; i++)
Kalle Valoce7c9112008-12-18 23:35:20 +0200417 __ieee80211_stop_queue(hw, i, reason);
418
419 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
420}
421
422void ieee80211_stop_queues(struct ieee80211_hw *hw)
423{
424 ieee80211_stop_queues_by_reason(hw,
425 IEEE80211_QUEUE_STOP_REASON_DRIVER);
Johannes Bergc2d15602007-07-27 15:43:23 +0200426}
427EXPORT_SYMBOL(ieee80211_stop_queues);
428
Tomas Winkler92ab8532008-07-24 21:02:04 +0300429int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue)
430{
431 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200432 unsigned long flags;
433 int ret;
Johannes Berg96f5e662009-02-12 00:51:53 +0100434
Johannes Berge4e72fb2009-03-23 17:28:42 +0100435 if (WARN_ON(queue >= hw->queues))
436 return true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100437
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200438 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
439 ret = !!local->queue_stop_reasons[queue];
440 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
441 return ret;
Tomas Winkler92ab8532008-07-24 21:02:04 +0300442}
443EXPORT_SYMBOL(ieee80211_queue_stopped);
444
Kalle Valoce7c9112008-12-18 23:35:20 +0200445void ieee80211_wake_queues_by_reason(struct ieee80211_hw *hw,
446 enum queue_stop_reason reason)
Johannes Bergc2d15602007-07-27 15:43:23 +0200447{
Kalle Valoce7c9112008-12-18 23:35:20 +0200448 struct ieee80211_local *local = hw_to_local(hw);
449 unsigned long flags;
Johannes Bergc2d15602007-07-27 15:43:23 +0200450 int i;
451
Kalle Valoce7c9112008-12-18 23:35:20 +0200452 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
453
Johannes Berge4e72fb2009-03-23 17:28:42 +0100454 for (i = 0; i < hw->queues; i++)
Kalle Valoce7c9112008-12-18 23:35:20 +0200455 __ieee80211_wake_queue(hw, i, reason);
456
457 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
458}
459
460void ieee80211_wake_queues(struct ieee80211_hw *hw)
461{
462 ieee80211_wake_queues_by_reason(hw, IEEE80211_QUEUE_STOP_REASON_DRIVER);
Johannes Bergc2d15602007-07-27 15:43:23 +0200463}
464EXPORT_SYMBOL(ieee80211_wake_queues);
Johannes Bergdabeb342007-11-09 01:57:29 +0100465
Johannes Berg32bfd352007-12-19 01:31:26 +0100466void ieee80211_iterate_active_interfaces(
467 struct ieee80211_hw *hw,
468 void (*iterator)(void *data, u8 *mac,
469 struct ieee80211_vif *vif),
470 void *data)
Johannes Bergdabeb342007-11-09 01:57:29 +0100471{
472 struct ieee80211_local *local = hw_to_local(hw);
473 struct ieee80211_sub_if_data *sdata;
474
Johannes Bergc771c9d2009-01-23 22:54:03 +0100475 mutex_lock(&local->iflist_mtx);
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200476
477 list_for_each_entry(sdata, &local->interfaces, list) {
478 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200479 case NL80211_IFTYPE_MONITOR:
480 case NL80211_IFTYPE_AP_VLAN:
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200481 continue;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200482 default:
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200483 break;
484 }
Johannes Berg9607e6b2009-12-23 13:15:31 +0100485 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100486 iterator(data, sdata->vif.addr,
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200487 &sdata->vif);
488 }
489
Johannes Bergc771c9d2009-01-23 22:54:03 +0100490 mutex_unlock(&local->iflist_mtx);
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200491}
492EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces);
493
494void ieee80211_iterate_active_interfaces_atomic(
495 struct ieee80211_hw *hw,
496 void (*iterator)(void *data, u8 *mac,
497 struct ieee80211_vif *vif),
498 void *data)
499{
500 struct ieee80211_local *local = hw_to_local(hw);
501 struct ieee80211_sub_if_data *sdata;
502
Johannes Berge38bad42007-11-28 10:55:32 +0100503 rcu_read_lock();
Johannes Bergdabeb342007-11-09 01:57:29 +0100504
Johannes Berge38bad42007-11-28 10:55:32 +0100505 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100506 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200507 case NL80211_IFTYPE_MONITOR:
508 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergdabeb342007-11-09 01:57:29 +0100509 continue;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200510 default:
Johannes Bergdabeb342007-11-09 01:57:29 +0100511 break;
512 }
Johannes Berg9607e6b2009-12-23 13:15:31 +0100513 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100514 iterator(data, sdata->vif.addr,
Johannes Berg32bfd352007-12-19 01:31:26 +0100515 &sdata->vif);
Johannes Bergdabeb342007-11-09 01:57:29 +0100516 }
Johannes Berge38bad42007-11-28 10:55:32 +0100517
518 rcu_read_unlock();
Johannes Bergdabeb342007-11-09 01:57:29 +0100519}
Ivo van Doorn2f561fe2008-05-10 13:40:49 +0200520EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic);
Johannes Berg37ffc8d2008-09-08 16:40:36 +0200521
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400522/*
523 * Nothing should have been stuffed into the workqueue during
524 * the suspend->resume cycle. If this WARN is seen then there
525 * is a bug with either the driver suspend or something in
526 * mac80211 stuffing into the workqueue which we haven't yet
527 * cleared during mac80211's suspend cycle.
528 */
529static bool ieee80211_can_queue_work(struct ieee80211_local *local)
530{
Johannes Bergceb99fe2009-11-19 14:29:39 +0100531 if (WARN(local->suspended && !local->resuming,
532 "queueing ieee80211 work while going to suspend\n"))
533 return false;
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400534
535 return true;
536}
537
538void ieee80211_queue_work(struct ieee80211_hw *hw, struct work_struct *work)
539{
540 struct ieee80211_local *local = hw_to_local(hw);
541
542 if (!ieee80211_can_queue_work(local))
543 return;
544
545 queue_work(local->workqueue, work);
546}
547EXPORT_SYMBOL(ieee80211_queue_work);
548
549void ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
550 struct delayed_work *dwork,
551 unsigned long delay)
552{
553 struct ieee80211_local *local = hw_to_local(hw);
554
555 if (!ieee80211_can_queue_work(local))
556 return;
557
558 queue_delayed_work(local->workqueue, dwork, delay);
559}
560EXPORT_SYMBOL(ieee80211_queue_delayed_work);
561
Johannes Bergdd769862011-11-18 16:54:50 +0100562u32 ieee802_11_parse_elems_crc(u8 *start, size_t len,
563 struct ieee802_11_elems *elems,
564 u64 filter, u32 crc)
565{
566 size_t left = len;
567 u8 *pos = start;
568 bool calc_crc = filter != 0;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800569 DECLARE_BITMAP(seen_elems, 256);
Johannes Bergdd769862011-11-18 16:54:50 +0100570
Paul Stewartfcff4f12012-02-23 17:59:53 -0800571 bitmap_zero(seen_elems, 256);
Johannes Bergdd769862011-11-18 16:54:50 +0100572 memset(elems, 0, sizeof(*elems));
573 elems->ie_start = start;
574 elems->total_len = len;
575
576 while (left >= 2) {
577 u8 id, elen;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800578 bool elem_parse_failed;
Johannes Bergdd769862011-11-18 16:54:50 +0100579
580 id = *pos++;
581 elen = *pos++;
582 left -= 2;
583
Paul Stewartfcff4f12012-02-23 17:59:53 -0800584 if (elen > left) {
585 elems->parse_error = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100586 break;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800587 }
588
589 if (id != WLAN_EID_VENDOR_SPECIFIC &&
590 id != WLAN_EID_QUIET &&
591 test_bit(id, seen_elems)) {
592 elems->parse_error = true;
593 left -= elen;
594 pos += elen;
595 continue;
596 }
Johannes Bergdd769862011-11-18 16:54:50 +0100597
598 if (calc_crc && id < 64 && (filter & (1ULL << id)))
599 crc = crc32_be(crc, pos - 2, elen + 2);
600
Paul Stewartfcff4f12012-02-23 17:59:53 -0800601 elem_parse_failed = false;
602
Johannes Bergdd769862011-11-18 16:54:50 +0100603 switch (id) {
604 case WLAN_EID_SSID:
605 elems->ssid = pos;
606 elems->ssid_len = elen;
607 break;
608 case WLAN_EID_SUPP_RATES:
609 elems->supp_rates = pos;
610 elems->supp_rates_len = elen;
611 break;
612 case WLAN_EID_FH_PARAMS:
613 elems->fh_params = pos;
614 elems->fh_params_len = elen;
615 break;
616 case WLAN_EID_DS_PARAMS:
617 elems->ds_params = pos;
618 elems->ds_params_len = elen;
619 break;
620 case WLAN_EID_CF_PARAMS:
621 elems->cf_params = pos;
622 elems->cf_params_len = elen;
623 break;
624 case WLAN_EID_TIM:
625 if (elen >= sizeof(struct ieee80211_tim_ie)) {
626 elems->tim = (void *)pos;
627 elems->tim_len = elen;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800628 } else
629 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100630 break;
631 case WLAN_EID_IBSS_PARAMS:
632 elems->ibss_params = pos;
633 elems->ibss_params_len = elen;
634 break;
635 case WLAN_EID_CHALLENGE:
636 elems->challenge = pos;
637 elems->challenge_len = elen;
638 break;
639 case WLAN_EID_VENDOR_SPECIFIC:
640 if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 &&
641 pos[2] == 0xf2) {
642 /* Microsoft OUI (00:50:F2) */
643
644 if (calc_crc)
645 crc = crc32_be(crc, pos - 2, elen + 2);
646
647 if (pos[3] == 1) {
648 /* OUI Type 1 - WPA IE */
649 elems->wpa = pos;
650 elems->wpa_len = elen;
651 } else if (elen >= 5 && pos[3] == 2) {
652 /* OUI Type 2 - WMM IE */
653 if (pos[4] == 0) {
654 elems->wmm_info = pos;
655 elems->wmm_info_len = elen;
656 } else if (pos[4] == 1) {
657 elems->wmm_param = pos;
658 elems->wmm_param_len = elen;
659 }
660 }
661 }
662 break;
663 case WLAN_EID_RSN:
664 elems->rsn = pos;
665 elems->rsn_len = elen;
666 break;
667 case WLAN_EID_ERP_INFO:
668 elems->erp_info = pos;
669 elems->erp_info_len = elen;
670 break;
671 case WLAN_EID_EXT_SUPP_RATES:
672 elems->ext_supp_rates = pos;
673 elems->ext_supp_rates_len = elen;
674 break;
675 case WLAN_EID_HT_CAPABILITY:
676 if (elen >= sizeof(struct ieee80211_ht_cap))
677 elems->ht_cap_elem = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800678 else
679 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100680 break;
Johannes Berg074d46d2012-03-15 19:45:16 +0100681 case WLAN_EID_HT_OPERATION:
682 if (elen >= sizeof(struct ieee80211_ht_operation))
683 elems->ht_operation = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800684 else
685 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100686 break;
687 case WLAN_EID_MESH_ID:
688 elems->mesh_id = pos;
689 elems->mesh_id_len = elen;
690 break;
691 case WLAN_EID_MESH_CONFIG:
692 if (elen >= sizeof(struct ieee80211_meshconf_ie))
693 elems->mesh_config = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800694 else
695 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100696 break;
697 case WLAN_EID_PEER_MGMT:
698 elems->peering = pos;
699 elems->peering_len = elen;
700 break;
701 case WLAN_EID_PREQ:
702 elems->preq = pos;
703 elems->preq_len = elen;
704 break;
705 case WLAN_EID_PREP:
706 elems->prep = pos;
707 elems->prep_len = elen;
708 break;
709 case WLAN_EID_PERR:
710 elems->perr = pos;
711 elems->perr_len = elen;
712 break;
713 case WLAN_EID_RANN:
714 if (elen >= sizeof(struct ieee80211_rann_ie))
715 elems->rann = (void *)pos;
Paul Stewartfcff4f12012-02-23 17:59:53 -0800716 else
717 elem_parse_failed = true;
Johannes Bergdd769862011-11-18 16:54:50 +0100718 break;
719 case WLAN_EID_CHANNEL_SWITCH:
720 elems->ch_switch_elem = pos;
721 elems->ch_switch_elem_len = elen;
722 break;
723 case WLAN_EID_QUIET:
724 if (!elems->quiet_elem) {
725 elems->quiet_elem = pos;
726 elems->quiet_elem_len = elen;
727 }
728 elems->num_of_quiet_elem++;
729 break;
730 case WLAN_EID_COUNTRY:
731 elems->country_elem = pos;
732 elems->country_elem_len = elen;
733 break;
734 case WLAN_EID_PWR_CONSTRAINT:
735 elems->pwr_constr_elem = pos;
736 elems->pwr_constr_elem_len = elen;
737 break;
738 case WLAN_EID_TIMEOUT_INTERVAL:
739 elems->timeout_int = pos;
740 elems->timeout_int_len = elen;
741 break;
742 default:
743 break;
744 }
745
Paul Stewartfcff4f12012-02-23 17:59:53 -0800746 if (elem_parse_failed)
747 elems->parse_error = true;
748 else
749 set_bit(id, seen_elems);
750
Johannes Bergdd769862011-11-18 16:54:50 +0100751 left -= elen;
752 pos += elen;
753 }
754
Paul Stewartfcff4f12012-02-23 17:59:53 -0800755 if (left != 0)
756 elems->parse_error = true;
757
Johannes Bergdd769862011-11-18 16:54:50 +0100758 return crc;
759}
760
Johannes Berg37ffc8d2008-09-08 16:40:36 +0200761void ieee802_11_parse_elems(u8 *start, size_t len,
762 struct ieee802_11_elems *elems)
763{
Johannes Bergd91f36d2009-04-16 13:17:26 +0200764 ieee802_11_parse_elems_crc(start, len, elems, 0, 0);
765}
766
Johannes Berg3abead52012-03-02 15:56:59 +0100767void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
768 bool bss_notify)
Johannes Berg5825fe102008-09-09 12:56:01 +0200769{
770 struct ieee80211_local *local = sdata->local;
771 struct ieee80211_tx_queue_params qparam;
Johannes Berg54bcbc62012-03-28 11:04:25 +0200772 int ac;
Johannes Bergaa837e12009-05-07 16:16:24 +0200773 bool use_11b;
774 int aCWmin, aCWmax;
Johannes Berg5825fe102008-09-09 12:56:01 +0200775
776 if (!local->ops->conf_tx)
777 return;
778
Johannes Berg54bcbc62012-03-28 11:04:25 +0200779 if (local->hw.queues < IEEE80211_NUM_ACS)
780 return;
781
Johannes Berg5825fe102008-09-09 12:56:01 +0200782 memset(&qparam, 0, sizeof(qparam));
783
Johannes Bergaa837e12009-05-07 16:16:24 +0200784 use_11b = (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) &&
785 !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE);
Johannes Berg5825fe102008-09-09 12:56:01 +0200786
Johannes Berg54bcbc62012-03-28 11:04:25 +0200787 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Bergaa837e12009-05-07 16:16:24 +0200788 /* Set defaults according to 802.11-2007 Table 7-37 */
789 aCWmax = 1023;
790 if (use_11b)
791 aCWmin = 31;
792 else
793 aCWmin = 15;
Johannes Berg5825fe102008-09-09 12:56:01 +0200794
Johannes Berg54bcbc62012-03-28 11:04:25 +0200795 switch (ac) {
Johannes Berg1d98fb12012-03-27 14:18:40 +0200796 case IEEE80211_AC_BK:
Johannes Berg7ba10a82009-05-27 09:41:06 +0200797 qparam.cw_max = aCWmax;
798 qparam.cw_min = aCWmin;
Johannes Bergaa837e12009-05-07 16:16:24 +0200799 qparam.txop = 0;
800 qparam.aifs = 7;
801 break;
802 default: /* never happens but let's not leave undefined */
Johannes Berg1d98fb12012-03-27 14:18:40 +0200803 case IEEE80211_AC_BE:
Johannes Berg7ba10a82009-05-27 09:41:06 +0200804 qparam.cw_max = aCWmax;
805 qparam.cw_min = aCWmin;
Johannes Bergaa837e12009-05-07 16:16:24 +0200806 qparam.txop = 0;
807 qparam.aifs = 3;
808 break;
Johannes Berg1d98fb12012-03-27 14:18:40 +0200809 case IEEE80211_AC_VI:
Johannes Bergaa837e12009-05-07 16:16:24 +0200810 qparam.cw_max = aCWmin;
811 qparam.cw_min = (aCWmin + 1) / 2 - 1;
812 if (use_11b)
813 qparam.txop = 6016/32;
814 else
815 qparam.txop = 3008/32;
816 qparam.aifs = 2;
817 break;
Johannes Berg1d98fb12012-03-27 14:18:40 +0200818 case IEEE80211_AC_VO:
Johannes Bergaa837e12009-05-07 16:16:24 +0200819 qparam.cw_max = (aCWmin + 1) / 2 - 1;
820 qparam.cw_min = (aCWmin + 1) / 4 - 1;
821 if (use_11b)
822 qparam.txop = 3264/32;
823 else
824 qparam.txop = 1504/32;
825 qparam.aifs = 2;
826 break;
827 }
Johannes Berg5825fe102008-09-09 12:56:01 +0200828
Kalle Valoab133152010-01-12 10:42:31 +0200829 qparam.uapsd = false;
830
Johannes Berg54bcbc62012-03-28 11:04:25 +0200831 sdata->tx_conf[ac] = qparam;
832 drv_conf_tx(local, sdata, ac, &qparam);
Johannes Bergaa837e12009-05-07 16:16:24 +0200833 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +0200834
835 /* after reinitialize QoS TX queues setting to default,
836 * disable QoS at all */
Sujithd9734972010-07-23 10:47:11 +0530837
838 if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
839 sdata->vif.bss_conf.qos =
840 sdata->vif.type != NL80211_IFTYPE_STATION;
Johannes Berg3abead52012-03-02 15:56:59 +0100841 if (bss_notify)
842 ieee80211_bss_info_change_notify(sdata,
843 BSS_CHANGED_QOS);
Sujithd9734972010-07-23 10:47:11 +0530844 }
Johannes Berg5825fe102008-09-09 12:56:01 +0200845}
Johannes Berge50db652008-09-09 15:07:09 +0200846
Johannes Berg46900292009-02-15 12:44:28 +0100847void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
848 const size_t supp_rates_len,
849 const u8 *supp_rates)
850{
851 struct ieee80211_local *local = sdata->local;
852 int i, have_higher_than_11mbit = 0;
853
854 /* cf. IEEE 802.11 9.2.12 */
855 for (i = 0; i < supp_rates_len; i++)
856 if ((supp_rates[i] & 0x7f) * 5 > 110)
857 have_higher_than_11mbit = 1;
858
859 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
860 have_higher_than_11mbit)
861 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
862 else
863 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
864
Johannes Berg3abead52012-03-02 15:56:59 +0100865 ieee80211_set_wmm_default(sdata, true);
Johannes Berg46900292009-02-15 12:44:28 +0100866}
867
Johannes Berg881d9482009-01-21 15:13:48 +0100868u32 ieee80211_mandatory_rates(struct ieee80211_local *local,
Johannes Berg96dd22a2008-09-11 00:01:57 +0200869 enum ieee80211_band band)
870{
871 struct ieee80211_supported_band *sband;
872 struct ieee80211_rate *bitrates;
Johannes Berg881d9482009-01-21 15:13:48 +0100873 u32 mandatory_rates;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200874 enum ieee80211_rate_flags mandatory_flag;
875 int i;
876
877 sband = local->hw.wiphy->bands[band];
878 if (!sband) {
879 WARN_ON(1);
880 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
881 }
882
883 if (band == IEEE80211_BAND_2GHZ)
884 mandatory_flag = IEEE80211_RATE_MANDATORY_B;
885 else
886 mandatory_flag = IEEE80211_RATE_MANDATORY_A;
887
888 bitrates = sband->bitrates;
889 mandatory_rates = 0;
890 for (i = 0; i < sband->n_bitrates; i++)
891 if (bitrates[i].flags & mandatory_flag)
892 mandatory_rates |= BIT(i);
893 return mandatory_rates;
894}
Johannes Berg46900292009-02-15 12:44:28 +0100895
896void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
897 u16 transaction, u16 auth_alg,
Antonio Quartulliefa6a092012-01-09 19:43:06 +0100898 u8 *extra, size_t extra_len, const u8 *da,
899 const u8 *bssid, const u8 *key, u8 key_len, u8 key_idx)
Johannes Berg46900292009-02-15 12:44:28 +0100900{
901 struct ieee80211_local *local = sdata->local;
902 struct sk_buff *skb;
903 struct ieee80211_mgmt *mgmt;
Johannes Bergfffd0932009-07-08 14:22:54 +0200904 int err;
Johannes Berg46900292009-02-15 12:44:28 +0100905
906 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200907 sizeof(*mgmt) + 6 + extra_len);
Joe Perchesd15b8452011-08-29 14:17:31 -0700908 if (!skb)
Johannes Berg46900292009-02-15 12:44:28 +0100909 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700910
Johannes Berg46900292009-02-15 12:44:28 +0100911 skb_reserve(skb, local->hw.extra_tx_headroom);
912
913 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
914 memset(mgmt, 0, 24 + 6);
915 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
916 IEEE80211_STYPE_AUTH);
Antonio Quartulliefa6a092012-01-09 19:43:06 +0100917 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100918 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100919 memcpy(mgmt->bssid, bssid, ETH_ALEN);
920 mgmt->u.auth.auth_alg = cpu_to_le16(auth_alg);
921 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
922 mgmt->u.auth.status_code = cpu_to_le16(0);
923 if (extra)
924 memcpy(skb_put(skb, extra_len), extra, extra_len);
Johannes Berg46900292009-02-15 12:44:28 +0100925
Johannes Bergfffd0932009-07-08 14:22:54 +0200926 if (auth_alg == WLAN_AUTH_SHARED_KEY && transaction == 3) {
927 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
928 err = ieee80211_wep_encrypt(local, skb, key, key_len, key_idx);
929 WARN_ON(err);
930 }
931
Johannes Berg62ae67b2009-11-18 18:42:05 +0100932 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
933 ieee80211_tx_skb(sdata, skb);
Johannes Berg46900292009-02-15 12:44:28 +0100934}
935
Johannes Bergde95a542009-04-01 11:58:36 +0200936int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
Johannes Berg4d36ec52009-10-27 20:59:55 +0100937 const u8 *ie, size_t ie_len,
Jouni Malinen651b5222010-08-28 19:37:51 +0300938 enum ieee80211_band band, u32 rate_mask,
939 u8 channel)
Johannes Bergde95a542009-04-01 11:58:36 +0200940{
941 struct ieee80211_supported_band *sband;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100942 u8 *pos;
943 size_t offset = 0, noffset;
944 int supp_rates_len, i;
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300945 u8 rates[32];
946 int num_rates;
947 int ext_rates_len;
Johannes Bergde95a542009-04-01 11:58:36 +0200948
Johannes Berg4d36ec52009-10-27 20:59:55 +0100949 sband = local->hw.wiphy->bands[band];
Johannes Bergde95a542009-04-01 11:58:36 +0200950
951 pos = buffer;
952
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300953 num_rates = 0;
954 for (i = 0; i < sband->n_bitrates; i++) {
955 if ((BIT(i) & rate_mask) == 0)
956 continue; /* skip rate */
957 rates[num_rates++] = (u8) (sband->bitrates[i].bitrate / 5);
958 }
959
960 supp_rates_len = min_t(int, num_rates, 8);
Johannes Berg8e664fb2009-12-23 13:15:38 +0100961
Johannes Bergde95a542009-04-01 11:58:36 +0200962 *pos++ = WLAN_EID_SUPP_RATES;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100963 *pos++ = supp_rates_len;
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300964 memcpy(pos, rates, supp_rates_len);
965 pos += supp_rates_len;
Johannes Bergde95a542009-04-01 11:58:36 +0200966
Johannes Berg8e664fb2009-12-23 13:15:38 +0100967 /* insert "request information" if in custom IEs */
968 if (ie && ie_len) {
969 static const u8 before_extrates[] = {
970 WLAN_EID_SSID,
971 WLAN_EID_SUPP_RATES,
972 WLAN_EID_REQUEST,
973 };
974 noffset = ieee80211_ie_split(ie, ie_len,
975 before_extrates,
976 ARRAY_SIZE(before_extrates),
977 offset);
978 memcpy(pos, ie + offset, noffset - offset);
979 pos += noffset - offset;
980 offset = noffset;
981 }
Johannes Bergde95a542009-04-01 11:58:36 +0200982
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300983 ext_rates_len = num_rates - supp_rates_len;
984 if (ext_rates_len > 0) {
Johannes Berg8e664fb2009-12-23 13:15:38 +0100985 *pos++ = WLAN_EID_EXT_SUPP_RATES;
Jouni Malinen8dcb2002010-08-28 19:36:10 +0300986 *pos++ = ext_rates_len;
987 memcpy(pos, rates + supp_rates_len, ext_rates_len);
988 pos += ext_rates_len;
Johannes Berg8e664fb2009-12-23 13:15:38 +0100989 }
990
Jouni Malinen651b5222010-08-28 19:37:51 +0300991 if (channel && sband->band == IEEE80211_BAND_2GHZ) {
992 *pos++ = WLAN_EID_DS_PARAMS;
993 *pos++ = 1;
994 *pos++ = channel;
995 }
996
Johannes Berg8e664fb2009-12-23 13:15:38 +0100997 /* insert custom IEs that go before HT */
998 if (ie && ie_len) {
999 static const u8 before_ht[] = {
1000 WLAN_EID_SSID,
1001 WLAN_EID_SUPP_RATES,
1002 WLAN_EID_REQUEST,
1003 WLAN_EID_EXT_SUPP_RATES,
1004 WLAN_EID_DS_PARAMS,
1005 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
1006 };
1007 noffset = ieee80211_ie_split(ie, ie_len,
1008 before_ht, ARRAY_SIZE(before_ht),
1009 offset);
1010 memcpy(pos, ie + offset, noffset - offset);
1011 pos += noffset - offset;
1012 offset = noffset;
Johannes Bergde95a542009-04-01 11:58:36 +02001013 }
1014
Alexander Simon42e7aa72011-10-26 14:47:26 -07001015 if (sband->ht_cap.ht_supported)
Ben Greearef96a8422011-11-18 11:32:00 -08001016 pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
1017 sband->ht_cap.cap);
Johannes Berg5ef2d412009-03-31 12:12:07 +02001018
Johannes Bergde95a542009-04-01 11:58:36 +02001019 /*
1020 * If adding more here, adjust code in main.c
1021 * that calculates local->scan_ies_len.
1022 */
1023
Johannes Berg8e664fb2009-12-23 13:15:38 +01001024 /* add any remaining custom IEs */
1025 if (ie && ie_len) {
1026 noffset = ie_len;
1027 memcpy(pos, ie + offset, noffset - offset);
1028 pos += noffset - offset;
Johannes Bergde95a542009-04-01 11:58:36 +02001029 }
1030
1031 return pos - buffer;
1032}
1033
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001034struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
Johannes Berg85a237f2011-07-18 18:08:36 +02001035 u8 *dst, u32 ratemask,
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001036 const u8 *ssid, size_t ssid_len,
Paul Stewarta806c552011-06-23 09:00:11 -08001037 const u8 *ie, size_t ie_len,
1038 bool directed)
Johannes Berg46900292009-02-15 12:44:28 +01001039{
1040 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001041 struct sk_buff *skb;
1042 struct ieee80211_mgmt *mgmt;
Kalle Valo7c12ce82010-01-05 20:16:44 +02001043 size_t buf_len;
1044 u8 *buf;
Jouni Malinen651b5222010-08-28 19:37:51 +03001045 u8 chan;
Johannes Berg46900292009-02-15 12:44:28 +01001046
Kalle Valo7c12ce82010-01-05 20:16:44 +02001047 /* FIXME: come up with a proper value */
1048 buf = kmalloc(200 + ie_len, GFP_KERNEL);
Joe Perchesd15b8452011-08-29 14:17:31 -07001049 if (!buf)
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001050 return NULL;
Johannes Berg46900292009-02-15 12:44:28 +01001051
Paul Stewarta806c552011-06-23 09:00:11 -08001052 /*
1053 * Do not send DS Channel parameter for directed probe requests
1054 * in order to maximize the chance that we get a response. Some
1055 * badly-behaved APs don't respond when this parameter is included.
1056 */
1057 if (directed)
1058 chan = 0;
1059 else
1060 chan = ieee80211_frequency_to_channel(
1061 local->hw.conf.channel->center_freq);
Jouni Malinen651b5222010-08-28 19:37:51 +03001062
Kalle Valo7c12ce82010-01-05 20:16:44 +02001063 buf_len = ieee80211_build_preq_ies(local, buf, ie, ie_len,
Jouni Malinen8dcb2002010-08-28 19:36:10 +03001064 local->hw.conf.channel->band,
Johannes Berg85a237f2011-07-18 18:08:36 +02001065 ratemask, chan);
Kalle Valo7c12ce82010-01-05 20:16:44 +02001066
1067 skb = ieee80211_probereq_get(&local->hw, &sdata->vif,
1068 ssid, ssid_len,
1069 buf, buf_len);
Johannes Berg5b2bbf72011-11-08 13:04:41 +01001070 if (!skb)
1071 goto out;
Kalle Valo7c12ce82010-01-05 20:16:44 +02001072
Johannes Berg46900292009-02-15 12:44:28 +01001073 if (dst) {
Kalle Valo7c12ce82010-01-05 20:16:44 +02001074 mgmt = (struct ieee80211_mgmt *) skb->data;
Johannes Berg46900292009-02-15 12:44:28 +01001075 memcpy(mgmt->da, dst, ETH_ALEN);
1076 memcpy(mgmt->bssid, dst, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01001077 }
Johannes Berg46900292009-02-15 12:44:28 +01001078
Johannes Berg62ae67b2009-11-18 18:42:05 +01001079 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg5b2bbf72011-11-08 13:04:41 +01001080
1081 out:
Ming Lei145b6d12010-01-15 21:44:21 +08001082 kfree(buf);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001083
1084 return skb;
1085}
1086
1087void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
1088 const u8 *ssid, size_t ssid_len,
Paul Stewarta806c552011-06-23 09:00:11 -08001089 const u8 *ie, size_t ie_len,
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301090 u32 ratemask, bool directed, bool no_cck)
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001091{
1092 struct sk_buff *skb;
1093
Johannes Berg85a237f2011-07-18 18:08:36 +02001094 skb = ieee80211_build_probe_req(sdata, dst, ratemask, ssid, ssid_len,
1095 ie, ie_len, directed);
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301096 if (skb) {
1097 if (no_cck)
1098 IEEE80211_SKB_CB(skb)->flags |=
1099 IEEE80211_TX_CTL_NO_CCK_RATE;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001100 ieee80211_tx_skb(sdata, skb);
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05301101 }
Johannes Berg46900292009-02-15 12:44:28 +01001102}
1103
1104u32 ieee80211_sta_get_rates(struct ieee80211_local *local,
1105 struct ieee802_11_elems *elems,
1106 enum ieee80211_band band)
1107{
1108 struct ieee80211_supported_band *sband;
1109 struct ieee80211_rate *bitrates;
1110 size_t num_rates;
1111 u32 supp_rates;
1112 int i, j;
1113 sband = local->hw.wiphy->bands[band];
1114
1115 if (!sband) {
1116 WARN_ON(1);
1117 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1118 }
1119
1120 bitrates = sband->bitrates;
1121 num_rates = sband->n_bitrates;
1122 supp_rates = 0;
1123 for (i = 0; i < elems->supp_rates_len +
1124 elems->ext_supp_rates_len; i++) {
1125 u8 rate = 0;
1126 int own_rate;
1127 if (i < elems->supp_rates_len)
1128 rate = elems->supp_rates[i];
1129 else if (elems->ext_supp_rates)
1130 rate = elems->ext_supp_rates
1131 [i - elems->supp_rates_len];
1132 own_rate = 5 * (rate & 0x7f);
1133 for (j = 0; j < num_rates; j++)
1134 if (bitrates[j].bitrate == own_rate)
1135 supp_rates |= BIT(j);
1136 }
1137 return supp_rates;
1138}
Johannes Bergf2753dd2009-04-14 10:09:24 +02001139
Johannes Berg84f6a012009-08-20 20:02:20 +02001140void ieee80211_stop_device(struct ieee80211_local *local)
1141{
1142 ieee80211_led_radio(local, false);
Johannes Berg67408c82010-11-30 08:59:23 +01001143 ieee80211_mod_tpt_led_trig(local, 0, IEEE80211_TPT_LEDTRIG_FL_RADIO);
Johannes Berg84f6a012009-08-20 20:02:20 +02001144
1145 cancel_work_sync(&local->reconfig_filter);
Johannes Berg84f6a012009-08-20 20:02:20 +02001146
1147 flush_workqueue(local->workqueue);
Lennert Buytenhek678f4152010-01-10 14:07:53 +01001148 drv_stop(local);
Johannes Berg84f6a012009-08-20 20:02:20 +02001149}
1150
Johannes Bergf2753dd2009-04-14 10:09:24 +02001151int ieee80211_reconfig(struct ieee80211_local *local)
1152{
1153 struct ieee80211_hw *hw = &local->hw;
1154 struct ieee80211_sub_if_data *sdata;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001155 struct sta_info *sta;
Eliad Peller2683d652011-07-14 20:29:42 +03001156 int res, i;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001157
Johannes Bergeecc4802011-05-04 15:37:29 +02001158#ifdef CONFIG_PM
Johannes Bergceb99fe2009-11-19 14:29:39 +01001159 if (local->suspended)
1160 local->resuming = true;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001161
Johannes Bergeecc4802011-05-04 15:37:29 +02001162 if (local->wowlan) {
1163 local->wowlan = false;
1164 res = drv_resume(local);
1165 if (res < 0) {
1166 local->resuming = false;
1167 return res;
1168 }
1169 if (res == 0)
1170 goto wake_up;
1171 WARN_ON(res > 1);
1172 /*
1173 * res is 1, which means the driver requested
1174 * to go through a regular reset on wakeup.
1175 */
1176 }
1177#endif
Johannes Berg94f9b972011-07-14 16:48:54 +02001178 /* everything else happens only if HW was up & running */
1179 if (!local->open_count)
1180 goto wake_up;
1181
1182 /*
1183 * Upon resume hardware can sometimes be goofy due to
1184 * various platform / driver / bus issues, so restarting
1185 * the device may at times not work immediately. Propagate
1186 * the error.
1187 */
1188 res = drv_start(local);
1189 if (res) {
1190 WARN(local->suspended, "Hardware became unavailable "
1191 "upon resume. This could be a software issue "
1192 "prior to suspend or a hardware issue.\n");
1193 return res;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001194 }
1195
Yogesh Ashok Powar7f281972011-12-30 16:34:25 +05301196 /* setup fragmentation threshold */
1197 drv_set_frag_threshold(local, hw->wiphy->frag_threshold);
1198
1199 /* setup RTS threshold */
1200 drv_set_rts_threshold(local, hw->wiphy->rts_threshold);
1201
1202 /* reset coverage class */
1203 drv_set_coverage_class(local, hw->wiphy->coverage_class);
1204
Johannes Berg94f9b972011-07-14 16:48:54 +02001205 ieee80211_led_radio(local, true);
1206 ieee80211_mod_tpt_led_trig(local,
1207 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
1208
Johannes Bergf2753dd2009-04-14 10:09:24 +02001209 /* add interfaces */
1210 list_for_each_entry(sdata, &local->interfaces, list) {
1211 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1212 sdata->vif.type != NL80211_IFTYPE_MONITOR &&
Johannes Berg1ed32e42009-12-23 13:15:45 +01001213 ieee80211_sdata_running(sdata))
Johannes Berg7b7eab62011-11-03 14:41:13 +01001214 res = drv_add_interface(local, sdata);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001215 }
1216
1217 /* add STAs back */
Johannes Berg34e89502010-02-03 13:59:58 +01001218 mutex_lock(&local->sta_mtx);
1219 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Bergf09603a2012-01-20 13:55:21 +01001220 if (sta->uploaded) {
1221 enum ieee80211_sta_state state;
1222
Johannes Bergf09603a2012-01-20 13:55:21 +01001223 for (state = IEEE80211_STA_NOTEXIST;
1224 state < sta->sta_state - 1; state++)
1225 WARN_ON(drv_sta_state(local, sta->sdata, sta,
1226 state, state + 1));
1227 }
Johannes Bergf2753dd2009-04-14 10:09:24 +02001228 }
Johannes Berg34e89502010-02-03 13:59:58 +01001229 mutex_unlock(&local->sta_mtx);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001230
Eliad Peller2683d652011-07-14 20:29:42 +03001231 /* reconfigure tx conf */
Johannes Berg54bcbc62012-03-28 11:04:25 +02001232 if (hw->queues >= IEEE80211_NUM_ACS) {
1233 list_for_each_entry(sdata, &local->interfaces, list) {
1234 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1235 sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1236 !ieee80211_sdata_running(sdata))
1237 continue;
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001238
Johannes Berg54bcbc62012-03-28 11:04:25 +02001239 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1240 drv_conf_tx(local, sdata, i,
1241 &sdata->tx_conf[i]);
1242 }
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001243 }
Eliad Peller2683d652011-07-14 20:29:42 +03001244
Johannes Bergf2753dd2009-04-14 10:09:24 +02001245 /* reconfigure hardware */
1246 ieee80211_hw_config(local, ~0);
1247
Johannes Bergf2753dd2009-04-14 10:09:24 +02001248 ieee80211_configure_filter(local);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001249
1250 /* Finally also reconfigure all the BSS information */
1251 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Bergac8dd502010-05-05 09:44:02 +02001252 u32 changed;
1253
Johannes Berg9607e6b2009-12-23 13:15:31 +01001254 if (!ieee80211_sdata_running(sdata))
Johannes Bergf2753dd2009-04-14 10:09:24 +02001255 continue;
Johannes Bergac8dd502010-05-05 09:44:02 +02001256
1257 /* common change flags for all interface types */
1258 changed = BSS_CHANGED_ERP_CTS_PROT |
1259 BSS_CHANGED_ERP_PREAMBLE |
1260 BSS_CHANGED_ERP_SLOT |
1261 BSS_CHANGED_HT |
1262 BSS_CHANGED_BASIC_RATES |
1263 BSS_CHANGED_BEACON_INT |
1264 BSS_CHANGED_BSSID |
Johannes Berg4ced3f72010-07-19 16:39:04 +02001265 BSS_CHANGED_CQM |
Eliad Peller55de47f2011-11-01 15:16:55 +02001266 BSS_CHANGED_QOS |
1267 BSS_CHANGED_IDLE;
Johannes Bergac8dd502010-05-05 09:44:02 +02001268
Johannes Bergf2753dd2009-04-14 10:09:24 +02001269 switch (sdata->vif.type) {
1270 case NL80211_IFTYPE_STATION:
Eliad Peller0d392e92011-12-12 14:10:49 +02001271 changed |= BSS_CHANGED_ASSOC |
1272 BSS_CHANGED_ARP_FILTER;
Eliad Pellera7b545f2011-02-08 18:43:19 +02001273 mutex_lock(&sdata->u.mgd.mtx);
Johannes Bergac8dd502010-05-05 09:44:02 +02001274 ieee80211_bss_info_change_notify(sdata, changed);
Eliad Pellera7b545f2011-02-08 18:43:19 +02001275 mutex_unlock(&sdata->u.mgd.mtx);
Johannes Bergac8dd502010-05-05 09:44:02 +02001276 break;
Johannes Bergf2753dd2009-04-14 10:09:24 +02001277 case NL80211_IFTYPE_ADHOC:
Johannes Bergac8dd502010-05-05 09:44:02 +02001278 changed |= BSS_CHANGED_IBSS;
1279 /* fall through */
Johannes Bergf2753dd2009-04-14 10:09:24 +02001280 case NL80211_IFTYPE_AP:
Arik Nemtsove7979ac2011-11-22 19:33:18 +02001281 changed |= BSS_CHANGED_SSID;
1282
1283 if (sdata->vif.type == NL80211_IFTYPE_AP)
1284 changed |= BSS_CHANGED_AP_PROBE_RESP;
1285
Arik Nemtsov78274932011-09-04 11:11:32 +03001286 /* fall through */
Johannes Bergf2753dd2009-04-14 10:09:24 +02001287 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergac8dd502010-05-05 09:44:02 +02001288 changed |= BSS_CHANGED_BEACON |
1289 BSS_CHANGED_BEACON_ENABLED;
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001290 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Bergf2753dd2009-04-14 10:09:24 +02001291 break;
1292 case NL80211_IFTYPE_WDS:
1293 break;
1294 case NL80211_IFTYPE_AP_VLAN:
1295 case NL80211_IFTYPE_MONITOR:
1296 /* ignore virtual */
1297 break;
1298 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f72010-08-12 15:38:38 +02001299 case NUM_NL80211_IFTYPES:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001300 case NL80211_IFTYPE_P2P_CLIENT:
1301 case NL80211_IFTYPE_P2P_GO:
Johannes Bergf2753dd2009-04-14 10:09:24 +02001302 WARN_ON(1);
1303 break;
1304 }
1305 }
1306
Eyal Shapira8e1b23b2011-11-09 12:29:06 +02001307 ieee80211_recalc_ps(local, -1);
1308
Johannes Berg2a419052010-06-10 10:21:29 +02001309 /*
Eliad Peller6e1b1b22012-01-26 13:36:05 +02001310 * The sta might be in psm against the ap (e.g. because
1311 * this was the state before a hw restart), so we
1312 * explicitly send a null packet in order to make sure
1313 * it'll sync against the ap (and get out of psm).
1314 */
1315 if (!(local->hw.conf.flags & IEEE80211_CONF_PS)) {
1316 list_for_each_entry(sdata, &local->interfaces, list) {
1317 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1318 continue;
1319
1320 ieee80211_send_nullfunc(local, sdata, 0);
1321 }
1322 }
1323
1324 /*
Johannes Berg2a419052010-06-10 10:21:29 +02001325 * Clear the WLAN_STA_BLOCK_BA flag so new aggregation
1326 * sessions can be established after a resume.
1327 *
1328 * Also tear down aggregation sessions since reconfiguring
1329 * them in a hardware restart scenario is not easily done
1330 * right now, and the hardware will have lost information
1331 * about the sessions, but we and the AP still think they
1332 * are active. This is really a workaround though.
1333 */
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001334 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
Johannes Berg2a419052010-06-10 10:21:29 +02001335 mutex_lock(&local->sta_mtx);
1336
1337 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Berg53f73c02010-10-05 19:37:40 +02001338 ieee80211_sta_tear_down_BA_sessions(sta, true);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001339 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001340 }
Johannes Berg2a419052010-06-10 10:21:29 +02001341
1342 mutex_unlock(&local->sta_mtx);
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001343 }
Wey-Yi Guy74e2bd12010-02-03 09:28:55 -08001344
Johannes Bergf2753dd2009-04-14 10:09:24 +02001345 /* add back keys */
1346 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg9607e6b2009-12-23 13:15:31 +01001347 if (ieee80211_sdata_running(sdata))
Johannes Bergf2753dd2009-04-14 10:09:24 +02001348 ieee80211_enable_keys(sdata);
1349
Johannes Bergeecc4802011-05-04 15:37:29 +02001350 wake_up:
Johannes Bergf2753dd2009-04-14 10:09:24 +02001351 ieee80211_wake_queues_by_reason(hw,
1352 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
1353
Johannes Berg5bb644a2009-05-17 11:40:42 +02001354 /*
1355 * If this is for hw restart things are still running.
1356 * We may want to change that later, however.
1357 */
Johannes Bergceb99fe2009-11-19 14:29:39 +01001358 if (!local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001359 return 0;
1360
1361#ifdef CONFIG_PM
Johannes Bergceb99fe2009-11-19 14:29:39 +01001362 /* first set suspended false, then resuming */
Johannes Berg5bb644a2009-05-17 11:40:42 +02001363 local->suspended = false;
Johannes Bergceb99fe2009-11-19 14:29:39 +01001364 mb();
1365 local->resuming = false;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001366
1367 list_for_each_entry(sdata, &local->interfaces, list) {
1368 switch(sdata->vif.type) {
1369 case NL80211_IFTYPE_STATION:
1370 ieee80211_sta_restart(sdata);
1371 break;
1372 case NL80211_IFTYPE_ADHOC:
1373 ieee80211_ibss_restart(sdata);
1374 break;
1375 case NL80211_IFTYPE_MESH_POINT:
1376 ieee80211_mesh_restart(sdata);
1377 break;
1378 default:
1379 break;
1380 }
1381 }
1382
Johannes Berg26d59532011-04-01 13:52:48 +02001383 mod_timer(&local->sta_cleanup, jiffies + 1);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001384
Johannes Berg34e89502010-02-03 13:59:58 +01001385 mutex_lock(&local->sta_mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001386 list_for_each_entry(sta, &local->sta_list, list)
1387 mesh_plink_restart(sta);
Johannes Berg34e89502010-02-03 13:59:58 +01001388 mutex_unlock(&local->sta_mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02001389#else
1390 WARN_ON(1);
1391#endif
Johannes Bergf2753dd2009-04-14 10:09:24 +02001392 return 0;
1393}
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001394
Johannes Berg95acac62011-07-12 12:30:59 +02001395void ieee80211_resume_disconnect(struct ieee80211_vif *vif)
1396{
1397 struct ieee80211_sub_if_data *sdata;
1398 struct ieee80211_local *local;
1399 struct ieee80211_key *key;
1400
1401 if (WARN_ON(!vif))
1402 return;
1403
1404 sdata = vif_to_sdata(vif);
1405 local = sdata->local;
1406
1407 if (WARN_ON(!local->resuming))
1408 return;
1409
1410 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1411 return;
1412
1413 sdata->flags |= IEEE80211_SDATA_DISCONNECT_RESUME;
1414
1415 mutex_lock(&local->key_mtx);
1416 list_for_each_entry(key, &sdata->key_list, list)
1417 key->flags |= KEY_FLAG_TAINTED;
1418 mutex_unlock(&local->key_mtx);
1419}
1420EXPORT_SYMBOL_GPL(ieee80211_resume_disconnect);
1421
Johannes Berg0f782312009-12-01 13:37:02 +01001422static int check_mgd_smps(struct ieee80211_if_managed *ifmgd,
1423 enum ieee80211_smps_mode *smps_mode)
1424{
1425 if (ifmgd->associated) {
1426 *smps_mode = ifmgd->ap_smps;
1427
1428 if (*smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1429 if (ifmgd->powersave)
1430 *smps_mode = IEEE80211_SMPS_DYNAMIC;
1431 else
1432 *smps_mode = IEEE80211_SMPS_OFF;
1433 }
1434
1435 return 1;
1436 }
1437
1438 return 0;
1439}
1440
1441/* must hold iflist_mtx */
Johannes Berg025e6be2010-10-05 10:41:47 +02001442void ieee80211_recalc_smps(struct ieee80211_local *local)
Johannes Berg0f782312009-12-01 13:37:02 +01001443{
1444 struct ieee80211_sub_if_data *sdata;
1445 enum ieee80211_smps_mode smps_mode = IEEE80211_SMPS_OFF;
1446 int count = 0;
1447
Johannes Berg46a5eba2010-09-15 13:28:15 +02001448 lockdep_assert_held(&local->iflist_mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01001449
1450 /*
1451 * This function could be improved to handle multiple
1452 * interfaces better, but right now it makes any
1453 * non-station interfaces force SM PS to be turned
1454 * off. If there are multiple station interfaces it
1455 * could also use the best possible mode, e.g. if
1456 * one is in static and the other in dynamic then
1457 * dynamic is ok.
1458 */
1459
1460 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg26a58452010-08-27 12:35:55 +02001461 if (!ieee80211_sdata_running(sdata))
Johannes Berg0f782312009-12-01 13:37:02 +01001462 continue;
1463 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1464 goto set;
Johannes Berg025e6be2010-10-05 10:41:47 +02001465
1466 count += check_mgd_smps(&sdata->u.mgd, &smps_mode);
Johannes Berg0f782312009-12-01 13:37:02 +01001467
1468 if (count > 1) {
1469 smps_mode = IEEE80211_SMPS_OFF;
1470 break;
1471 }
1472 }
1473
1474 if (smps_mode == local->smps_mode)
1475 return;
1476
1477 set:
1478 local->smps_mode = smps_mode;
1479 /* changed flag is auto-detected for this */
1480 ieee80211_hw_config(local, 0);
1481}
Johannes Berg8e664fb2009-12-23 13:15:38 +01001482
1483static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
1484{
1485 int i;
1486
1487 for (i = 0; i < n_ids; i++)
1488 if (ids[i] == id)
1489 return true;
1490 return false;
1491}
1492
1493/**
1494 * ieee80211_ie_split - split an IE buffer according to ordering
1495 *
1496 * @ies: the IE buffer
1497 * @ielen: the length of the IE buffer
1498 * @ids: an array with element IDs that are allowed before
1499 * the split
1500 * @n_ids: the size of the element ID array
1501 * @offset: offset where to start splitting in the buffer
1502 *
1503 * This function splits an IE buffer by updating the @offset
1504 * variable to point to the location where the buffer should be
1505 * split.
1506 *
1507 * It assumes that the given IE buffer is well-formed, this
1508 * has to be guaranteed by the caller!
1509 *
1510 * It also assumes that the IEs in the buffer are ordered
1511 * correctly, if not the result of using this function will not
1512 * be ordered correctly either, i.e. it does no reordering.
1513 *
1514 * The function returns the offset where the next part of the
1515 * buffer starts, which may be @ielen if the entire (remainder)
1516 * of the buffer should be used.
1517 */
1518size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
1519 const u8 *ids, int n_ids, size_t offset)
1520{
1521 size_t pos = offset;
1522
1523 while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos]))
1524 pos += 2 + ies[pos + 1];
1525
1526 return pos;
1527}
1528
1529size_t ieee80211_ie_split_vendor(const u8 *ies, size_t ielen, size_t offset)
1530{
1531 size_t pos = offset;
1532
1533 while (pos < ielen && ies[pos] != WLAN_EID_VENDOR_SPECIFIC)
1534 pos += 2 + ies[pos + 1];
1535
1536 return pos;
1537}
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001538
1539static void _ieee80211_enable_rssi_reports(struct ieee80211_sub_if_data *sdata,
1540 int rssi_min_thold,
1541 int rssi_max_thold)
1542{
1543 trace_api_enable_rssi_reports(sdata, rssi_min_thold, rssi_max_thold);
1544
1545 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1546 return;
1547
1548 /*
1549 * Scale up threshold values before storing it, as the RSSI averaging
1550 * algorithm uses a scaled up value as well. Change this scaling
1551 * factor if the RSSI averaging algorithm changes.
1552 */
1553 sdata->u.mgd.rssi_min_thold = rssi_min_thold*16;
1554 sdata->u.mgd.rssi_max_thold = rssi_max_thold*16;
1555}
1556
1557void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
1558 int rssi_min_thold,
1559 int rssi_max_thold)
1560{
1561 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1562
1563 WARN_ON(rssi_min_thold == rssi_max_thold ||
1564 rssi_min_thold > rssi_max_thold);
1565
1566 _ieee80211_enable_rssi_reports(sdata, rssi_min_thold,
1567 rssi_max_thold);
1568}
1569EXPORT_SYMBOL(ieee80211_enable_rssi_reports);
1570
1571void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif)
1572{
1573 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1574
1575 _ieee80211_enable_rssi_reports(sdata, 0, 0);
1576}
1577EXPORT_SYMBOL(ieee80211_disable_rssi_reports);
Arik Nemtsov768db342011-09-28 14:12:51 +03001578
Ben Greearef96a8422011-11-18 11:32:00 -08001579u8 *ieee80211_ie_build_ht_cap(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
Alexander Simon42e7aa72011-10-26 14:47:26 -07001580 u16 cap)
1581{
1582 __le16 tmp;
1583
1584 *pos++ = WLAN_EID_HT_CAPABILITY;
1585 *pos++ = sizeof(struct ieee80211_ht_cap);
1586 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
1587
1588 /* capability flags */
1589 tmp = cpu_to_le16(cap);
1590 memcpy(pos, &tmp, sizeof(u16));
1591 pos += sizeof(u16);
1592
1593 /* AMPDU parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001594 *pos++ = ht_cap->ampdu_factor |
1595 (ht_cap->ampdu_density <<
Alexander Simon42e7aa72011-10-26 14:47:26 -07001596 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
1597
1598 /* MCS set */
Ben Greearef96a8422011-11-18 11:32:00 -08001599 memcpy(pos, &ht_cap->mcs, sizeof(ht_cap->mcs));
1600 pos += sizeof(ht_cap->mcs);
Alexander Simon42e7aa72011-10-26 14:47:26 -07001601
1602 /* extended capabilities */
1603 pos += sizeof(__le16);
1604
1605 /* BF capabilities */
1606 pos += sizeof(__le32);
1607
1608 /* antenna selection */
1609 pos += sizeof(u8);
1610
1611 return pos;
1612}
1613
Johannes Berg074d46d2012-03-15 19:45:16 +01001614u8 *ieee80211_ie_build_ht_oper(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
Alexander Simon42e7aa72011-10-26 14:47:26 -07001615 struct ieee80211_channel *channel,
1616 enum nl80211_channel_type channel_type)
1617{
Johannes Berg074d46d2012-03-15 19:45:16 +01001618 struct ieee80211_ht_operation *ht_oper;
Alexander Simon42e7aa72011-10-26 14:47:26 -07001619 /* Build HT Information */
Johannes Berg074d46d2012-03-15 19:45:16 +01001620 *pos++ = WLAN_EID_HT_OPERATION;
1621 *pos++ = sizeof(struct ieee80211_ht_operation);
1622 ht_oper = (struct ieee80211_ht_operation *)pos;
1623 ht_oper->primary_chan =
Alexander Simon42e7aa72011-10-26 14:47:26 -07001624 ieee80211_frequency_to_channel(channel->center_freq);
1625 switch (channel_type) {
1626 case NL80211_CHAN_HT40MINUS:
Johannes Berg074d46d2012-03-15 19:45:16 +01001627 ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Alexander Simon42e7aa72011-10-26 14:47:26 -07001628 break;
1629 case NL80211_CHAN_HT40PLUS:
Johannes Berg074d46d2012-03-15 19:45:16 +01001630 ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Alexander Simon42e7aa72011-10-26 14:47:26 -07001631 break;
1632 case NL80211_CHAN_HT20:
1633 default:
Johannes Berg074d46d2012-03-15 19:45:16 +01001634 ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Alexander Simon42e7aa72011-10-26 14:47:26 -07001635 break;
1636 }
1637 if (ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40)
Johannes Berg074d46d2012-03-15 19:45:16 +01001638 ht_oper->ht_param |= IEEE80211_HT_PARAM_CHAN_WIDTH_ANY;
Simon Wunderlichff3cc5f2011-11-30 16:56:33 +01001639
1640 /*
1641 * Note: According to 802.11n-2009 9.13.3.1, HT Protection field and
1642 * RIFS Mode are reserved in IBSS mode, therefore keep them at 0
1643 */
Johannes Berg074d46d2012-03-15 19:45:16 +01001644 ht_oper->operation_mode = 0x0000;
1645 ht_oper->stbc_param = 0x0000;
Alexander Simon42e7aa72011-10-26 14:47:26 -07001646
1647 /* It seems that Basic MCS set and Supported MCS set
1648 are identical for the first 10 bytes */
Johannes Berg074d46d2012-03-15 19:45:16 +01001649 memset(&ht_oper->basic_set, 0, 16);
1650 memcpy(&ht_oper->basic_set, &ht_cap->mcs, 10);
Alexander Simon42e7aa72011-10-26 14:47:26 -07001651
Johannes Berg074d46d2012-03-15 19:45:16 +01001652 return pos + sizeof(struct ieee80211_ht_operation);
Alexander Simon42e7aa72011-10-26 14:47:26 -07001653}
1654
1655enum nl80211_channel_type
Johannes Berg074d46d2012-03-15 19:45:16 +01001656ieee80211_ht_oper_to_channel_type(struct ieee80211_ht_operation *ht_oper)
Alexander Simon42e7aa72011-10-26 14:47:26 -07001657{
1658 enum nl80211_channel_type channel_type;
1659
Johannes Berg074d46d2012-03-15 19:45:16 +01001660 if (!ht_oper)
Alexander Simon42e7aa72011-10-26 14:47:26 -07001661 return NL80211_CHAN_NO_HT;
1662
Johannes Berg074d46d2012-03-15 19:45:16 +01001663 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Alexander Simon42e7aa72011-10-26 14:47:26 -07001664 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
1665 channel_type = NL80211_CHAN_HT20;
1666 break;
1667 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
1668 channel_type = NL80211_CHAN_HT40PLUS;
1669 break;
1670 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
1671 channel_type = NL80211_CHAN_HT40MINUS;
1672 break;
1673 default:
1674 channel_type = NL80211_CHAN_NO_HT;
1675 }
1676
1677 return channel_type;
1678}
1679
Arik Nemtsov768db342011-09-28 14:12:51 +03001680int ieee80211_add_srates_ie(struct ieee80211_vif *vif, struct sk_buff *skb)
1681{
1682 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1683 struct ieee80211_local *local = sdata->local;
1684 struct ieee80211_supported_band *sband;
1685 int rate;
1686 u8 i, rates, *pos;
1687
1688 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1689 rates = sband->n_bitrates;
1690 if (rates > 8)
1691 rates = 8;
1692
1693 if (skb_tailroom(skb) < rates + 2)
1694 return -ENOMEM;
1695
1696 pos = skb_put(skb, rates + 2);
1697 *pos++ = WLAN_EID_SUPP_RATES;
1698 *pos++ = rates;
1699 for (i = 0; i < rates; i++) {
1700 rate = sband->bitrates[i].bitrate;
1701 *pos++ = (u8) (rate / 5);
1702 }
1703
1704 return 0;
1705}
1706
1707int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, struct sk_buff *skb)
1708{
1709 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1710 struct ieee80211_local *local = sdata->local;
1711 struct ieee80211_supported_band *sband;
1712 int rate;
1713 u8 i, exrates, *pos;
1714
1715 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1716 exrates = sband->n_bitrates;
1717 if (exrates > 8)
1718 exrates -= 8;
1719 else
1720 exrates = 0;
1721
1722 if (skb_tailroom(skb) < exrates + 2)
1723 return -ENOMEM;
1724
1725 if (exrates) {
1726 pos = skb_put(skb, exrates + 2);
1727 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1728 *pos++ = exrates;
1729 for (i = 8; i < sband->n_bitrates; i++) {
1730 rate = sband->bitrates[i].bitrate;
1731 *pos++ = (u8) (rate / 5);
1732 }
1733 }
1734 return 0;
1735}