NFC: NCI code identation fixes
[linux-2.6-block.git] / net / mac80211 / util.c
CommitLineData
c2d1560a
JB
1/*
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>
bc3b2d7f 16#include <linux/export.h>
c2d1560a
JB
17#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>
c2d1560a 22#include <linux/bitmap.h>
dd76986b 23#include <linux/crc32.h>
881d966b 24#include <net/net_namespace.h>
c2d1560a 25#include <net/cfg80211.h>
dabeb344 26#include <net/rtnetlink.h>
c2d1560a
JB
27
28#include "ieee80211_i.h"
24487981 29#include "driver-ops.h"
2c8dccc7 30#include "rate.h"
ee385855 31#include "mesh.h"
c2d1560a 32#include "wme.h"
f2753ddb 33#include "led.h"
fffd0934 34#include "wep.h"
c2d1560a
JB
35
36/* privid for wiphys to determine whether they belong to us or not */
37void *mac80211_wiphy_privid = &mac80211_wiphy_privid;
38
9a95371a
LR
39struct 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);
c2d1560a 48
71364716 49u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
05c914fe 50 enum nl80211_iftype type)
c2d1560a 51{
a494bb1c 52 __le16 fc = hdr->frame_control;
c2d1560a 53
98f0b0a3
RR
54 /* drop ACK/CTS frames and incorrect hdr len (ctrl) */
55 if (len < 16)
c2d1560a
JB
56 return NULL;
57
a494bb1c 58 if (ieee80211_is_data(fc)) {
98f0b0a3
RR
59 if (len < 24) /* drop incorrect hdr len (data) */
60 return NULL;
a494bb1c
HH
61
62 if (ieee80211_has_a4(fc))
c2d1560a 63 return NULL;
a494bb1c
HH
64 if (ieee80211_has_tods(fc))
65 return hdr->addr1;
66 if (ieee80211_has_fromds(fc))
c2d1560a 67 return hdr->addr2;
a494bb1c
HH
68
69 return hdr->addr3;
70 }
71
72 if (ieee80211_is_mgmt(fc)) {
98f0b0a3
RR
73 if (len < 24) /* drop incorrect hdr len (mgmt) */
74 return NULL;
c2d1560a 75 return hdr->addr3;
a494bb1c
HH
76 }
77
78 if (ieee80211_is_ctl(fc)) {
79 if(ieee80211_is_pspoll(fc))
c2d1560a 80 return hdr->addr1;
a494bb1c
HH
81
82 if (ieee80211_is_back_req(fc)) {
71364716 83 switch (type) {
05c914fe 84 case NL80211_IFTYPE_STATION:
71364716 85 return hdr->addr2;
05c914fe
JB
86 case NL80211_IFTYPE_AP:
87 case NL80211_IFTYPE_AP_VLAN:
71364716
RR
88 return hdr->addr1;
89 default:
a494bb1c 90 break; /* fall through to the return */
71364716
RR
91 }
92 }
c2d1560a
JB
93 }
94
95 return NULL;
96}
97
5cf121c3 98void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx)
c2d1560a 99{
252b86c4 100 struct sk_buff *skb;
2de8e0d9
JB
101 struct ieee80211_hdr *hdr;
102
252b86c4 103 skb_queue_walk(&tx->skbs, skb) {
2de8e0d9
JB
104 hdr = (struct ieee80211_hdr *) skb->data;
105 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
252b86c4 106 }
c2d1560a
JB
107}
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
8318d78a 123 if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ || erp) {
c2d1560a
JB
124 /*
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 */
c2d1560a
JB
137 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 */
32bfd35d
JB
163__le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
164 struct ieee80211_vif *vif,
8318d78a
JB
165 size_t frame_len,
166 struct ieee80211_rate *rate)
c2d1560a
JB
167{
168 struct ieee80211_local *local = hw_to_local(hw);
25d834e1 169 struct ieee80211_sub_if_data *sdata;
c2d1560a
JB
170 u16 dur;
171 int erp;
25d834e1 172 bool short_preamble = false;
c2d1560a 173
8318d78a 174 erp = 0;
25d834e1
JB
175 if (vif) {
176 sdata = vif_to_sdata(vif);
bda3933a 177 short_preamble = sdata->vif.bss_conf.use_short_preamble;
25d834e1
JB
178 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
179 erp = rate->flags & IEEE80211_RATE_ERP_G;
180 }
8318d78a
JB
181
182 dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, erp,
25d834e1 183 short_preamble);
c2d1560a
JB
184
185 return cpu_to_le16(dur);
186}
187EXPORT_SYMBOL(ieee80211_generic_frame_duration);
188
32bfd35d
JB
189__le16 ieee80211_rts_duration(struct ieee80211_hw *hw,
190 struct ieee80211_vif *vif, size_t frame_len,
e039fa4a 191 const struct ieee80211_tx_info *frame_txctl)
c2d1560a
JB
192{
193 struct ieee80211_local *local = hw_to_local(hw);
194 struct ieee80211_rate *rate;
25d834e1 195 struct ieee80211_sub_if_data *sdata;
471b3efd 196 bool short_preamble;
c2d1560a
JB
197 int erp;
198 u16 dur;
2e92e6f2
JB
199 struct ieee80211_supported_band *sband;
200
201 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
c2d1560a 202
25d834e1 203 short_preamble = false;
7e9ed188 204
e039fa4a 205 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
8318d78a
JB
206
207 erp = 0;
25d834e1
JB
208 if (vif) {
209 sdata = vif_to_sdata(vif);
bda3933a 210 short_preamble = sdata->vif.bss_conf.use_short_preamble;
25d834e1
JB
211 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
212 erp = rate->flags & IEEE80211_RATE_ERP_G;
213 }
c2d1560a
JB
214
215 /* CTS duration */
8318d78a 216 dur = ieee80211_frame_duration(local, 10, rate->bitrate,
c2d1560a
JB
217 erp, short_preamble);
218 /* Data frame duration */
8318d78a 219 dur += ieee80211_frame_duration(local, frame_len, rate->bitrate,
c2d1560a
JB
220 erp, short_preamble);
221 /* ACK duration */
8318d78a 222 dur += ieee80211_frame_duration(local, 10, rate->bitrate,
c2d1560a
JB
223 erp, short_preamble);
224
225 return cpu_to_le16(dur);
226}
227EXPORT_SYMBOL(ieee80211_rts_duration);
228
32bfd35d
JB
229__le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw,
230 struct ieee80211_vif *vif,
c2d1560a 231 size_t frame_len,
e039fa4a 232 const struct ieee80211_tx_info *frame_txctl)
c2d1560a
JB
233{
234 struct ieee80211_local *local = hw_to_local(hw);
235 struct ieee80211_rate *rate;
25d834e1 236 struct ieee80211_sub_if_data *sdata;
471b3efd 237 bool short_preamble;
c2d1560a
JB
238 int erp;
239 u16 dur;
2e92e6f2
JB
240 struct ieee80211_supported_band *sband;
241
242 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
c2d1560a 243
25d834e1 244 short_preamble = false;
7e9ed188 245
e039fa4a 246 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
8318d78a 247 erp = 0;
25d834e1
JB
248 if (vif) {
249 sdata = vif_to_sdata(vif);
bda3933a 250 short_preamble = sdata->vif.bss_conf.use_short_preamble;
25d834e1
JB
251 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
252 erp = rate->flags & IEEE80211_RATE_ERP_G;
253 }
c2d1560a
JB
254
255 /* Data frame duration */
8318d78a 256 dur = ieee80211_frame_duration(local, frame_len, rate->bitrate,
c2d1560a 257 erp, short_preamble);
e039fa4a 258 if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) {
c2d1560a 259 /* ACK duration */
8318d78a 260 dur += ieee80211_frame_duration(local, 10, rate->bitrate,
c2d1560a
JB
261 erp, short_preamble);
262 }
263
264 return cpu_to_le16(dur);
265}
266EXPORT_SYMBOL(ieee80211_ctstoself_duration);
267
ce7c9111
KV
268static void __ieee80211_wake_queue(struct ieee80211_hw *hw, int queue,
269 enum queue_stop_reason reason)
c2d1560a
JB
270{
271 struct ieee80211_local *local = hw_to_local(hw);
cf0277e7 272 struct ieee80211_sub_if_data *sdata;
c2d1560a 273
b5878a2d
JB
274 trace_wake_queue(local, queue, reason);
275
e4e72fb4
JB
276 if (WARN_ON(queue >= hw->queues))
277 return;
ce7c9111 278
96f5e66e
JB
279 __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
7236fe29
JB
285 if (skb_queue_empty(&local->pending[queue])) {
286 rcu_read_lock();
5b714c6a
JB
287 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
288 if (test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))
289 continue;
2337db8d 290 netif_wake_subqueue(sdata->dev, queue);
5b714c6a 291 }
7236fe29
JB
292 rcu_read_unlock();
293 } else
3b8d81e0 294 tasklet_schedule(&local->tx_pending_tasklet);
c2d1560a 295}
ce7c9111 296
96f5e66e
JB
297void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue,
298 enum queue_stop_reason reason)
ce7c9111
KV
299{
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}
c2d1560a
JB
313EXPORT_SYMBOL(ieee80211_wake_queue);
314
ce7c9111
KV
315static void __ieee80211_stop_queue(struct ieee80211_hw *hw, int queue,
316 enum queue_stop_reason reason)
c2d1560a
JB
317{
318 struct ieee80211_local *local = hw_to_local(hw);
cf0277e7 319 struct ieee80211_sub_if_data *sdata;
c2d1560a 320
b5878a2d
JB
321 trace_stop_queue(local, queue, reason);
322
e4e72fb4
JB
323 if (WARN_ON(queue >= hw->queues))
324 return;
96f5e66e 325
2a577d98 326 __set_bit(reason, &local->queue_stop_reasons[queue]);
cf0277e7
JB
327
328 rcu_read_lock();
329 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2337db8d 330 netif_stop_subqueue(sdata->dev, queue);
cf0277e7 331 rcu_read_unlock();
c2d1560a 332}
ce7c9111 333
96f5e66e
JB
334void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue,
335 enum queue_stop_reason reason)
ce7c9111
KV
336{
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}
c2d1560a
JB
350EXPORT_SYMBOL(ieee80211_stop_queue);
351
8f77f384
JB
352void 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);
a7bc376c
JB
358 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
359
360 if (WARN_ON(!info->control.vif)) {
0819663d 361 kfree_skb(skb);
a7bc376c
JB
362 return;
363 }
8f77f384
JB
364
365 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
366 __ieee80211_stop_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
3b8d81e0 367 __skb_queue_tail(&local->pending[queue], skb);
8f77f384
JB
368 __ieee80211_wake_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
369 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
370}
371
b0b97a8a
JB
372void ieee80211_add_pending_skbs_fn(struct ieee80211_local *local,
373 struct sk_buff_head *skbs,
374 void (*fn)(void *data), void *data)
8f77f384
JB
375{
376 struct ieee80211_hw *hw = &local->hw;
377 struct sk_buff *skb;
378 unsigned long flags;
b0b97a8a 379 int queue, i;
8f77f384
JB
380
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))) {
a7bc376c
JB
387 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
388
389 if (WARN_ON(!info->control.vif)) {
0819663d 390 kfree_skb(skb);
a7bc376c
JB
391 continue;
392 }
393
8f77f384 394 queue = skb_get_queue_mapping(skb);
3b8d81e0 395 __skb_queue_tail(&local->pending[queue], skb);
8f77f384
JB
396 }
397
50a9432d
JB
398 if (fn)
399 fn(data);
400
3b8d81e0 401 for (i = 0; i < hw->queues; i++)
8f77f384
JB
402 __ieee80211_wake_queue(hw, i,
403 IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
8f77f384 404 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
8f77f384
JB
405}
406
b0b97a8a
JB
407void ieee80211_add_pending_skbs(struct ieee80211_local *local,
408 struct sk_buff_head *skbs)
50a9432d 409{
b0b97a8a 410 ieee80211_add_pending_skbs_fn(local, skbs, NULL, NULL);
50a9432d
JB
411}
412
ce7c9111
KV
413void ieee80211_stop_queues_by_reason(struct ieee80211_hw *hw,
414 enum queue_stop_reason reason)
c2d1560a 415{
ce7c9111
KV
416 struct ieee80211_local *local = hw_to_local(hw);
417 unsigned long flags;
c2d1560a
JB
418 int i;
419
ce7c9111
KV
420 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
421
96f5e66e 422 for (i = 0; i < hw->queues; i++)
ce7c9111
KV
423 __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);
c2d1560a
JB
432}
433EXPORT_SYMBOL(ieee80211_stop_queues);
434
92ab8535
TW
435int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue)
436{
437 struct ieee80211_local *local = hw_to_local(hw);
3b8d81e0
JB
438 unsigned long flags;
439 int ret;
96f5e66e 440
e4e72fb4
JB
441 if (WARN_ON(queue >= hw->queues))
442 return true;
96f5e66e 443
3b8d81e0
JB
444 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;
92ab8535
TW
448}
449EXPORT_SYMBOL(ieee80211_queue_stopped);
450
ce7c9111
KV
451void ieee80211_wake_queues_by_reason(struct ieee80211_hw *hw,
452 enum queue_stop_reason reason)
c2d1560a 453{
ce7c9111
KV
454 struct ieee80211_local *local = hw_to_local(hw);
455 unsigned long flags;
c2d1560a
JB
456 int i;
457
ce7c9111
KV
458 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
459
e4e72fb4 460 for (i = 0; i < hw->queues; i++)
ce7c9111
KV
461 __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);
c2d1560a
JB
469}
470EXPORT_SYMBOL(ieee80211_wake_queues);
dabeb344 471
32bfd35d
JB
472void ieee80211_iterate_active_interfaces(
473 struct ieee80211_hw *hw,
474 void (*iterator)(void *data, u8 *mac,
475 struct ieee80211_vif *vif),
476 void *data)
dabeb344
JB
477{
478 struct ieee80211_local *local = hw_to_local(hw);
479 struct ieee80211_sub_if_data *sdata;
480
c771c9d8 481 mutex_lock(&local->iflist_mtx);
2f561feb
ID
482
483 list_for_each_entry(sdata, &local->interfaces, list) {
484 switch (sdata->vif.type) {
05c914fe
JB
485 case NL80211_IFTYPE_MONITOR:
486 case NL80211_IFTYPE_AP_VLAN:
2f561feb 487 continue;
2ca27bcf 488 default:
2f561feb
ID
489 break;
490 }
9607e6b6 491 if (ieee80211_sdata_running(sdata))
47846c9b 492 iterator(data, sdata->vif.addr,
2f561feb
ID
493 &sdata->vif);
494 }
495
c771c9d8 496 mutex_unlock(&local->iflist_mtx);
2f561feb
ID
497}
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
e38bad47 509 rcu_read_lock();
dabeb344 510
e38bad47 511 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
51fb61e7 512 switch (sdata->vif.type) {
05c914fe
JB
513 case NL80211_IFTYPE_MONITOR:
514 case NL80211_IFTYPE_AP_VLAN:
dabeb344 515 continue;
2ca27bcf 516 default:
dabeb344
JB
517 break;
518 }
9607e6b6 519 if (ieee80211_sdata_running(sdata))
47846c9b 520 iterator(data, sdata->vif.addr,
32bfd35d 521 &sdata->vif);
dabeb344 522 }
e38bad47
JB
523
524 rcu_read_unlock();
dabeb344 525}
2f561feb 526EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic);
37ffc8da 527
42935eca
LR
528/*
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{
ceb99fe0
JB
537 if (WARN(local->suspended && !local->resuming,
538 "queueing ieee80211 work while going to suspend\n"))
539 return false;
42935eca
LR
540
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
dd76986b
JB
568u32 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;
575
576 memset(elems, 0, sizeof(*elems));
577 elems->ie_start = start;
578 elems->total_len = len;
579
580 while (left >= 2) {
581 u8 id, elen;
582
583 id = *pos++;
584 elen = *pos++;
585 left -= 2;
586
587 if (elen > left)
588 break;
589
590 if (calc_crc && id < 64 && (filter & (1ULL << id)))
591 crc = crc32_be(crc, pos - 2, elen + 2);
592
593 switch (id) {
594 case WLAN_EID_SSID:
595 elems->ssid = pos;
596 elems->ssid_len = elen;
597 break;
598 case WLAN_EID_SUPP_RATES:
599 elems->supp_rates = pos;
600 elems->supp_rates_len = elen;
601 break;
602 case WLAN_EID_FH_PARAMS:
603 elems->fh_params = pos;
604 elems->fh_params_len = elen;
605 break;
606 case WLAN_EID_DS_PARAMS:
607 elems->ds_params = pos;
608 elems->ds_params_len = elen;
609 break;
610 case WLAN_EID_CF_PARAMS:
611 elems->cf_params = pos;
612 elems->cf_params_len = elen;
613 break;
614 case WLAN_EID_TIM:
615 if (elen >= sizeof(struct ieee80211_tim_ie)) {
616 elems->tim = (void *)pos;
617 elems->tim_len = elen;
618 }
619 break;
620 case WLAN_EID_IBSS_PARAMS:
621 elems->ibss_params = pos;
622 elems->ibss_params_len = elen;
623 break;
624 case WLAN_EID_CHALLENGE:
625 elems->challenge = pos;
626 elems->challenge_len = elen;
627 break;
628 case WLAN_EID_VENDOR_SPECIFIC:
629 if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 &&
630 pos[2] == 0xf2) {
631 /* Microsoft OUI (00:50:F2) */
632
633 if (calc_crc)
634 crc = crc32_be(crc, pos - 2, elen + 2);
635
636 if (pos[3] == 1) {
637 /* OUI Type 1 - WPA IE */
638 elems->wpa = pos;
639 elems->wpa_len = elen;
640 } else if (elen >= 5 && pos[3] == 2) {
641 /* OUI Type 2 - WMM IE */
642 if (pos[4] == 0) {
643 elems->wmm_info = pos;
644 elems->wmm_info_len = elen;
645 } else if (pos[4] == 1) {
646 elems->wmm_param = pos;
647 elems->wmm_param_len = elen;
648 }
649 }
650 }
651 break;
652 case WLAN_EID_RSN:
653 elems->rsn = pos;
654 elems->rsn_len = elen;
655 break;
656 case WLAN_EID_ERP_INFO:
657 elems->erp_info = pos;
658 elems->erp_info_len = elen;
659 break;
660 case WLAN_EID_EXT_SUPP_RATES:
661 elems->ext_supp_rates = pos;
662 elems->ext_supp_rates_len = elen;
663 break;
664 case WLAN_EID_HT_CAPABILITY:
665 if (elen >= sizeof(struct ieee80211_ht_cap))
666 elems->ht_cap_elem = (void *)pos;
667 break;
668 case WLAN_EID_HT_INFORMATION:
669 if (elen >= sizeof(struct ieee80211_ht_info))
670 elems->ht_info_elem = (void *)pos;
671 break;
672 case WLAN_EID_MESH_ID:
673 elems->mesh_id = pos;
674 elems->mesh_id_len = elen;
675 break;
676 case WLAN_EID_MESH_CONFIG:
677 if (elen >= sizeof(struct ieee80211_meshconf_ie))
678 elems->mesh_config = (void *)pos;
679 break;
680 case WLAN_EID_PEER_MGMT:
681 elems->peering = pos;
682 elems->peering_len = elen;
683 break;
684 case WLAN_EID_PREQ:
685 elems->preq = pos;
686 elems->preq_len = elen;
687 break;
688 case WLAN_EID_PREP:
689 elems->prep = pos;
690 elems->prep_len = elen;
691 break;
692 case WLAN_EID_PERR:
693 elems->perr = pos;
694 elems->perr_len = elen;
695 break;
696 case WLAN_EID_RANN:
697 if (elen >= sizeof(struct ieee80211_rann_ie))
698 elems->rann = (void *)pos;
699 break;
700 case WLAN_EID_CHANNEL_SWITCH:
701 elems->ch_switch_elem = pos;
702 elems->ch_switch_elem_len = elen;
703 break;
704 case WLAN_EID_QUIET:
705 if (!elems->quiet_elem) {
706 elems->quiet_elem = pos;
707 elems->quiet_elem_len = elen;
708 }
709 elems->num_of_quiet_elem++;
710 break;
711 case WLAN_EID_COUNTRY:
712 elems->country_elem = pos;
713 elems->country_elem_len = elen;
714 break;
715 case WLAN_EID_PWR_CONSTRAINT:
716 elems->pwr_constr_elem = pos;
717 elems->pwr_constr_elem_len = elen;
718 break;
719 case WLAN_EID_TIMEOUT_INTERVAL:
720 elems->timeout_int = pos;
721 elems->timeout_int_len = elen;
722 break;
723 default:
724 break;
725 }
726
727 left -= elen;
728 pos += elen;
729 }
730
731 return crc;
732}
733
37ffc8da
JB
734void ieee802_11_parse_elems(u8 *start, size_t len,
735 struct ieee802_11_elems *elems)
d91f36db
JB
736{
737 ieee802_11_parse_elems_crc(start, len, elems, 0, 0);
738}
739
3abead59
JB
740void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
741 bool bss_notify)
5825fe10
JB
742{
743 struct ieee80211_local *local = sdata->local;
744 struct ieee80211_tx_queue_params qparam;
aa837e1d
JB
745 int queue;
746 bool use_11b;
747 int aCWmin, aCWmax;
5825fe10
JB
748
749 if (!local->ops->conf_tx)
750 return;
751
752 memset(&qparam, 0, sizeof(qparam));
753
aa837e1d
JB
754 use_11b = (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) &&
755 !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE);
5825fe10 756
005e472b 757 for (queue = 0; queue < local->hw.queues; queue++) {
aa837e1d
JB
758 /* Set defaults according to 802.11-2007 Table 7-37 */
759 aCWmax = 1023;
760 if (use_11b)
761 aCWmin = 31;
762 else
763 aCWmin = 15;
764
765 switch (queue) {
766 case 3: /* AC_BK */
7ba10a8e
JB
767 qparam.cw_max = aCWmax;
768 qparam.cw_min = aCWmin;
aa837e1d
JB
769 qparam.txop = 0;
770 qparam.aifs = 7;
771 break;
772 default: /* never happens but let's not leave undefined */
773 case 2: /* AC_BE */
7ba10a8e
JB
774 qparam.cw_max = aCWmax;
775 qparam.cw_min = aCWmin;
aa837e1d
JB
776 qparam.txop = 0;
777 qparam.aifs = 3;
778 break;
779 case 1: /* AC_VI */
780 qparam.cw_max = aCWmin;
781 qparam.cw_min = (aCWmin + 1) / 2 - 1;
782 if (use_11b)
783 qparam.txop = 6016/32;
784 else
785 qparam.txop = 3008/32;
786 qparam.aifs = 2;
787 break;
788 case 0: /* AC_VO */
789 qparam.cw_max = (aCWmin + 1) / 2 - 1;
790 qparam.cw_min = (aCWmin + 1) / 4 - 1;
791 if (use_11b)
792 qparam.txop = 3264/32;
793 else
794 qparam.txop = 1504/32;
795 qparam.aifs = 2;
796 break;
797 }
5825fe10 798
ab13315a
KV
799 qparam.uapsd = false;
800
f6f3def3
EP
801 sdata->tx_conf[queue] = qparam;
802 drv_conf_tx(local, sdata, queue, &qparam);
aa837e1d 803 }
e1b3ec1a
SG
804
805 /* after reinitialize QoS TX queues setting to default,
806 * disable QoS at all */
d9734979
S
807
808 if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
809 sdata->vif.bss_conf.qos =
810 sdata->vif.type != NL80211_IFTYPE_STATION;
3abead59
JB
811 if (bss_notify)
812 ieee80211_bss_info_change_notify(sdata,
813 BSS_CHANGED_QOS);
d9734979 814 }
5825fe10 815}
e50db65c 816
46900298
JB
817void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
818 const size_t supp_rates_len,
819 const u8 *supp_rates)
820{
821 struct ieee80211_local *local = sdata->local;
822 int i, have_higher_than_11mbit = 0;
823
824 /* cf. IEEE 802.11 9.2.12 */
825 for (i = 0; i < supp_rates_len; i++)
826 if ((supp_rates[i] & 0x7f) * 5 > 110)
827 have_higher_than_11mbit = 1;
828
829 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
830 have_higher_than_11mbit)
831 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
832 else
833 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
834
3abead59 835 ieee80211_set_wmm_default(sdata, true);
46900298
JB
836}
837
881d948c 838u32 ieee80211_mandatory_rates(struct ieee80211_local *local,
96dd22ac
JB
839 enum ieee80211_band band)
840{
841 struct ieee80211_supported_band *sband;
842 struct ieee80211_rate *bitrates;
881d948c 843 u32 mandatory_rates;
96dd22ac
JB
844 enum ieee80211_rate_flags mandatory_flag;
845 int i;
846
847 sband = local->hw.wiphy->bands[band];
848 if (!sband) {
849 WARN_ON(1);
850 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
851 }
852
853 if (band == IEEE80211_BAND_2GHZ)
854 mandatory_flag = IEEE80211_RATE_MANDATORY_B;
855 else
856 mandatory_flag = IEEE80211_RATE_MANDATORY_A;
857
858 bitrates = sband->bitrates;
859 mandatory_rates = 0;
860 for (i = 0; i < sband->n_bitrates; i++)
861 if (bitrates[i].flags & mandatory_flag)
862 mandatory_rates |= BIT(i);
863 return mandatory_rates;
864}
46900298
JB
865
866void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
867 u16 transaction, u16 auth_alg,
efa6a09d
AQ
868 u8 *extra, size_t extra_len, const u8 *da,
869 const u8 *bssid, const u8 *key, u8 key_len, u8 key_idx)
46900298
JB
870{
871 struct ieee80211_local *local = sdata->local;
872 struct sk_buff *skb;
873 struct ieee80211_mgmt *mgmt;
fffd0934 874 int err;
46900298
JB
875
876 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
65fc73ac 877 sizeof(*mgmt) + 6 + extra_len);
d15b8459 878 if (!skb)
46900298 879 return;
d15b8459 880
46900298
JB
881 skb_reserve(skb, local->hw.extra_tx_headroom);
882
883 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
884 memset(mgmt, 0, 24 + 6);
885 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
886 IEEE80211_STYPE_AUTH);
efa6a09d 887 memcpy(mgmt->da, da, ETH_ALEN);
47846c9b 888 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
46900298
JB
889 memcpy(mgmt->bssid, bssid, ETH_ALEN);
890 mgmt->u.auth.auth_alg = cpu_to_le16(auth_alg);
891 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
892 mgmt->u.auth.status_code = cpu_to_le16(0);
893 if (extra)
894 memcpy(skb_put(skb, extra_len), extra, extra_len);
46900298 895
fffd0934
JB
896 if (auth_alg == WLAN_AUTH_SHARED_KEY && transaction == 3) {
897 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
898 err = ieee80211_wep_encrypt(local, skb, key, key_len, key_idx);
899 WARN_ON(err);
900 }
901
62ae67be
JB
902 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
903 ieee80211_tx_skb(sdata, skb);
46900298
JB
904}
905
de95a54b 906int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
4d36ec58 907 const u8 *ie, size_t ie_len,
651b5225
JM
908 enum ieee80211_band band, u32 rate_mask,
909 u8 channel)
de95a54b
JB
910{
911 struct ieee80211_supported_band *sband;
8e664fb3
JB
912 u8 *pos;
913 size_t offset = 0, noffset;
914 int supp_rates_len, i;
8dcb2003
JM
915 u8 rates[32];
916 int num_rates;
917 int ext_rates_len;
de95a54b 918
4d36ec58 919 sband = local->hw.wiphy->bands[band];
de95a54b
JB
920
921 pos = buffer;
922
8dcb2003
JM
923 num_rates = 0;
924 for (i = 0; i < sband->n_bitrates; i++) {
925 if ((BIT(i) & rate_mask) == 0)
926 continue; /* skip rate */
927 rates[num_rates++] = (u8) (sband->bitrates[i].bitrate / 5);
928 }
929
930 supp_rates_len = min_t(int, num_rates, 8);
8e664fb3 931
de95a54b 932 *pos++ = WLAN_EID_SUPP_RATES;
8e664fb3 933 *pos++ = supp_rates_len;
8dcb2003
JM
934 memcpy(pos, rates, supp_rates_len);
935 pos += supp_rates_len;
8e664fb3
JB
936
937 /* insert "request information" if in custom IEs */
938 if (ie && ie_len) {
939 static const u8 before_extrates[] = {
940 WLAN_EID_SSID,
941 WLAN_EID_SUPP_RATES,
942 WLAN_EID_REQUEST,
943 };
944 noffset = ieee80211_ie_split(ie, ie_len,
945 before_extrates,
946 ARRAY_SIZE(before_extrates),
947 offset);
948 memcpy(pos, ie + offset, noffset - offset);
949 pos += noffset - offset;
950 offset = noffset;
951 }
952
8dcb2003
JM
953 ext_rates_len = num_rates - supp_rates_len;
954 if (ext_rates_len > 0) {
8e664fb3 955 *pos++ = WLAN_EID_EXT_SUPP_RATES;
8dcb2003
JM
956 *pos++ = ext_rates_len;
957 memcpy(pos, rates + supp_rates_len, ext_rates_len);
958 pos += ext_rates_len;
8e664fb3
JB
959 }
960
651b5225
JM
961 if (channel && sband->band == IEEE80211_BAND_2GHZ) {
962 *pos++ = WLAN_EID_DS_PARAMS;
963 *pos++ = 1;
964 *pos++ = channel;
965 }
966
8e664fb3
JB
967 /* insert custom IEs that go before HT */
968 if (ie && ie_len) {
969 static const u8 before_ht[] = {
970 WLAN_EID_SSID,
971 WLAN_EID_SUPP_RATES,
972 WLAN_EID_REQUEST,
973 WLAN_EID_EXT_SUPP_RATES,
974 WLAN_EID_DS_PARAMS,
975 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
976 };
977 noffset = ieee80211_ie_split(ie, ie_len,
978 before_ht, ARRAY_SIZE(before_ht),
979 offset);
980 memcpy(pos, ie + offset, noffset - offset);
981 pos += noffset - offset;
982 offset = noffset;
de95a54b
JB
983 }
984
42e7aa77 985 if (sband->ht_cap.ht_supported)
ef96a842
BG
986 pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
987 sband->ht_cap.cap);
5ef2d41a 988
de95a54b
JB
989 /*
990 * If adding more here, adjust code in main.c
991 * that calculates local->scan_ies_len.
992 */
993
8e664fb3
JB
994 /* add any remaining custom IEs */
995 if (ie && ie_len) {
996 noffset = ie_len;
997 memcpy(pos, ie + offset, noffset - offset);
998 pos += noffset - offset;
de95a54b
JB
999 }
1000
1001 return pos - buffer;
1002}
1003
a619a4c0 1004struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
85a237fe 1005 u8 *dst, u32 ratemask,
a619a4c0 1006 const u8 *ssid, size_t ssid_len,
a806c558
PS
1007 const u8 *ie, size_t ie_len,
1008 bool directed)
46900298
JB
1009{
1010 struct ieee80211_local *local = sdata->local;
46900298
JB
1011 struct sk_buff *skb;
1012 struct ieee80211_mgmt *mgmt;
7c12ce8b
KV
1013 size_t buf_len;
1014 u8 *buf;
651b5225 1015 u8 chan;
7c12ce8b
KV
1016
1017 /* FIXME: come up with a proper value */
1018 buf = kmalloc(200 + ie_len, GFP_KERNEL);
d15b8459 1019 if (!buf)
a619a4c0 1020 return NULL;
46900298 1021
a806c558
PS
1022 /*
1023 * Do not send DS Channel parameter for directed probe requests
1024 * in order to maximize the chance that we get a response. Some
1025 * badly-behaved APs don't respond when this parameter is included.
1026 */
1027 if (directed)
1028 chan = 0;
1029 else
1030 chan = ieee80211_frequency_to_channel(
1031 local->hw.conf.channel->center_freq);
651b5225 1032
7c12ce8b 1033 buf_len = ieee80211_build_preq_ies(local, buf, ie, ie_len,
8dcb2003 1034 local->hw.conf.channel->band,
85a237fe 1035 ratemask, chan);
7c12ce8b
KV
1036
1037 skb = ieee80211_probereq_get(&local->hw, &sdata->vif,
1038 ssid, ssid_len,
1039 buf, buf_len);
5b2bbf75
JB
1040 if (!skb)
1041 goto out;
7c12ce8b 1042
46900298 1043 if (dst) {
7c12ce8b 1044 mgmt = (struct ieee80211_mgmt *) skb->data;
46900298
JB
1045 memcpy(mgmt->da, dst, ETH_ALEN);
1046 memcpy(mgmt->bssid, dst, ETH_ALEN);
46900298 1047 }
46900298 1048
62ae67be 1049 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
5b2bbf75
JB
1050
1051 out:
145b6d1a 1052 kfree(buf);
a619a4c0
JO
1053
1054 return skb;
1055}
1056
1057void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
1058 const u8 *ssid, size_t ssid_len,
a806c558 1059 const u8 *ie, size_t ie_len,
aad14ceb 1060 u32 ratemask, bool directed, bool no_cck)
a619a4c0
JO
1061{
1062 struct sk_buff *skb;
1063
85a237fe
JB
1064 skb = ieee80211_build_probe_req(sdata, dst, ratemask, ssid, ssid_len,
1065 ie, ie_len, directed);
aad14ceb
RM
1066 if (skb) {
1067 if (no_cck)
1068 IEEE80211_SKB_CB(skb)->flags |=
1069 IEEE80211_TX_CTL_NO_CCK_RATE;
a619a4c0 1070 ieee80211_tx_skb(sdata, skb);
aad14ceb 1071 }
46900298
JB
1072}
1073
1074u32 ieee80211_sta_get_rates(struct ieee80211_local *local,
1075 struct ieee802_11_elems *elems,
1076 enum ieee80211_band band)
1077{
1078 struct ieee80211_supported_band *sband;
1079 struct ieee80211_rate *bitrates;
1080 size_t num_rates;
1081 u32 supp_rates;
1082 int i, j;
1083 sband = local->hw.wiphy->bands[band];
1084
1085 if (!sband) {
1086 WARN_ON(1);
1087 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1088 }
1089
1090 bitrates = sband->bitrates;
1091 num_rates = sband->n_bitrates;
1092 supp_rates = 0;
1093 for (i = 0; i < elems->supp_rates_len +
1094 elems->ext_supp_rates_len; i++) {
1095 u8 rate = 0;
1096 int own_rate;
1097 if (i < elems->supp_rates_len)
1098 rate = elems->supp_rates[i];
1099 else if (elems->ext_supp_rates)
1100 rate = elems->ext_supp_rates
1101 [i - elems->supp_rates_len];
1102 own_rate = 5 * (rate & 0x7f);
1103 for (j = 0; j < num_rates; j++)
1104 if (bitrates[j].bitrate == own_rate)
1105 supp_rates |= BIT(j);
1106 }
1107 return supp_rates;
1108}
f2753ddb 1109
84f6a01c
JB
1110void ieee80211_stop_device(struct ieee80211_local *local)
1111{
1112 ieee80211_led_radio(local, false);
67408c8c 1113 ieee80211_mod_tpt_led_trig(local, 0, IEEE80211_TPT_LEDTRIG_FL_RADIO);
84f6a01c
JB
1114
1115 cancel_work_sync(&local->reconfig_filter);
84f6a01c
JB
1116
1117 flush_workqueue(local->workqueue);
678f415f 1118 drv_stop(local);
84f6a01c
JB
1119}
1120
f2753ddb
JB
1121int ieee80211_reconfig(struct ieee80211_local *local)
1122{
1123 struct ieee80211_hw *hw = &local->hw;
1124 struct ieee80211_sub_if_data *sdata;
f2753ddb 1125 struct sta_info *sta;
2683d65b 1126 int res, i;
5bb644a0 1127
eecc4800 1128#ifdef CONFIG_PM
ceb99fe0
JB
1129 if (local->suspended)
1130 local->resuming = true;
f2753ddb 1131
eecc4800
JB
1132 if (local->wowlan) {
1133 local->wowlan = false;
1134 res = drv_resume(local);
1135 if (res < 0) {
1136 local->resuming = false;
1137 return res;
1138 }
1139 if (res == 0)
1140 goto wake_up;
1141 WARN_ON(res > 1);
1142 /*
1143 * res is 1, which means the driver requested
1144 * to go through a regular reset on wakeup.
1145 */
1146 }
1147#endif
94f9b97b
JB
1148 /* everything else happens only if HW was up & running */
1149 if (!local->open_count)
1150 goto wake_up;
f2753ddb 1151
94f9b97b
JB
1152 /*
1153 * Upon resume hardware can sometimes be goofy due to
1154 * various platform / driver / bus issues, so restarting
1155 * the device may at times not work immediately. Propagate
1156 * the error.
1157 */
1158 res = drv_start(local);
1159 if (res) {
1160 WARN(local->suspended, "Hardware became unavailable "
1161 "upon resume. This could be a software issue "
1162 "prior to suspend or a hardware issue.\n");
1163 return res;
f2753ddb
JB
1164 }
1165
7f281975
YAP
1166 /* setup fragmentation threshold */
1167 drv_set_frag_threshold(local, hw->wiphy->frag_threshold);
1168
1169 /* setup RTS threshold */
1170 drv_set_rts_threshold(local, hw->wiphy->rts_threshold);
1171
1172 /* reset coverage class */
1173 drv_set_coverage_class(local, hw->wiphy->coverage_class);
1174
94f9b97b
JB
1175 ieee80211_led_radio(local, true);
1176 ieee80211_mod_tpt_led_trig(local,
1177 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
1178
f2753ddb
JB
1179 /* add interfaces */
1180 list_for_each_entry(sdata, &local->interfaces, list) {
1181 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1182 sdata->vif.type != NL80211_IFTYPE_MONITOR &&
1ed32e4f 1183 ieee80211_sdata_running(sdata))
7b7eab6f 1184 res = drv_add_interface(local, sdata);
f2753ddb
JB
1185 }
1186
1187 /* add STAs back */
34e89507
JB
1188 mutex_lock(&local->sta_mtx);
1189 list_for_each_entry(sta, &local->sta_list, list) {
f09603a2
JB
1190 if (sta->uploaded) {
1191 enum ieee80211_sta_state state;
1192
f09603a2
JB
1193 for (state = IEEE80211_STA_NOTEXIST;
1194 state < sta->sta_state - 1; state++)
1195 WARN_ON(drv_sta_state(local, sta->sdata, sta,
1196 state, state + 1));
1197 }
f2753ddb 1198 }
34e89507 1199 mutex_unlock(&local->sta_mtx);
f2753ddb 1200
2683d65b 1201 /* reconfigure tx conf */
f6f3def3
EP
1202 list_for_each_entry(sdata, &local->interfaces, list) {
1203 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1204 sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1205 !ieee80211_sdata_running(sdata))
1206 continue;
1207
1208 for (i = 0; i < hw->queues; i++)
1209 drv_conf_tx(local, sdata, i, &sdata->tx_conf[i]);
1210 }
2683d65b 1211
f2753ddb
JB
1212 /* reconfigure hardware */
1213 ieee80211_hw_config(local, ~0);
1214
f2753ddb 1215 ieee80211_configure_filter(local);
f2753ddb
JB
1216
1217 /* Finally also reconfigure all the BSS information */
1218 list_for_each_entry(sdata, &local->interfaces, list) {
ac8dd506
JB
1219 u32 changed;
1220
9607e6b6 1221 if (!ieee80211_sdata_running(sdata))
f2753ddb 1222 continue;
ac8dd506
JB
1223
1224 /* common change flags for all interface types */
1225 changed = BSS_CHANGED_ERP_CTS_PROT |
1226 BSS_CHANGED_ERP_PREAMBLE |
1227 BSS_CHANGED_ERP_SLOT |
1228 BSS_CHANGED_HT |
1229 BSS_CHANGED_BASIC_RATES |
1230 BSS_CHANGED_BEACON_INT |
1231 BSS_CHANGED_BSSID |
4ced3f74 1232 BSS_CHANGED_CQM |
55de47f6
EP
1233 BSS_CHANGED_QOS |
1234 BSS_CHANGED_IDLE;
ac8dd506 1235
f2753ddb
JB
1236 switch (sdata->vif.type) {
1237 case NL80211_IFTYPE_STATION:
0d392e93
EP
1238 changed |= BSS_CHANGED_ASSOC |
1239 BSS_CHANGED_ARP_FILTER;
a7b545f7 1240 mutex_lock(&sdata->u.mgd.mtx);
ac8dd506 1241 ieee80211_bss_info_change_notify(sdata, changed);
a7b545f7 1242 mutex_unlock(&sdata->u.mgd.mtx);
ac8dd506 1243 break;
f2753ddb 1244 case NL80211_IFTYPE_ADHOC:
ac8dd506
JB
1245 changed |= BSS_CHANGED_IBSS;
1246 /* fall through */
f2753ddb 1247 case NL80211_IFTYPE_AP:
e7979ac7
AN
1248 changed |= BSS_CHANGED_SSID;
1249
1250 if (sdata->vif.type == NL80211_IFTYPE_AP)
1251 changed |= BSS_CHANGED_AP_PROBE_RESP;
1252
7827493b 1253 /* fall through */
f2753ddb 1254 case NL80211_IFTYPE_MESH_POINT:
ac8dd506
JB
1255 changed |= BSS_CHANGED_BEACON |
1256 BSS_CHANGED_BEACON_ENABLED;
2d0ddec5 1257 ieee80211_bss_info_change_notify(sdata, changed);
f2753ddb
JB
1258 break;
1259 case NL80211_IFTYPE_WDS:
1260 break;
1261 case NL80211_IFTYPE_AP_VLAN:
1262 case NL80211_IFTYPE_MONITOR:
1263 /* ignore virtual */
1264 break;
1265 case NL80211_IFTYPE_UNSPECIFIED:
2e161f78 1266 case NUM_NL80211_IFTYPES:
2ca27bcf
JB
1267 case NL80211_IFTYPE_P2P_CLIENT:
1268 case NL80211_IFTYPE_P2P_GO:
f2753ddb
JB
1269 WARN_ON(1);
1270 break;
1271 }
1272 }
1273
8e1b23b9
ES
1274 ieee80211_recalc_ps(local, -1);
1275
6e1b1b24
EP
1276 /*
1277 * The sta might be in psm against the ap (e.g. because
1278 * this was the state before a hw restart), so we
1279 * explicitly send a null packet in order to make sure
1280 * it'll sync against the ap (and get out of psm).
1281 */
1282 if (!(local->hw.conf.flags & IEEE80211_CONF_PS)) {
1283 list_for_each_entry(sdata, &local->interfaces, list) {
1284 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1285 continue;
1286
1287 ieee80211_send_nullfunc(local, sdata, 0);
1288 }
1289 }
1290
2a419056
JB
1291 /*
1292 * Clear the WLAN_STA_BLOCK_BA flag so new aggregation
1293 * sessions can be established after a resume.
1294 *
1295 * Also tear down aggregation sessions since reconfiguring
1296 * them in a hardware restart scenario is not easily done
1297 * right now, and the hardware will have lost information
1298 * about the sessions, but we and the AP still think they
1299 * are active. This is really a workaround though.
1300 */
74e2bd1f 1301 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
2a419056
JB
1302 mutex_lock(&local->sta_mtx);
1303
1304 list_for_each_entry(sta, &local->sta_list, list) {
53f73c09 1305 ieee80211_sta_tear_down_BA_sessions(sta, true);
c2c98fde 1306 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
74e2bd1f 1307 }
2a419056
JB
1308
1309 mutex_unlock(&local->sta_mtx);
74e2bd1f 1310 }
74e2bd1f 1311
f2753ddb
JB
1312 /* add back keys */
1313 list_for_each_entry(sdata, &local->interfaces, list)
9607e6b6 1314 if (ieee80211_sdata_running(sdata))
f2753ddb
JB
1315 ieee80211_enable_keys(sdata);
1316
eecc4800 1317 wake_up:
f2753ddb
JB
1318 ieee80211_wake_queues_by_reason(hw,
1319 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
1320
5bb644a0
JB
1321 /*
1322 * If this is for hw restart things are still running.
1323 * We may want to change that later, however.
1324 */
ceb99fe0 1325 if (!local->suspended)
5bb644a0
JB
1326 return 0;
1327
1328#ifdef CONFIG_PM
ceb99fe0 1329 /* first set suspended false, then resuming */
5bb644a0 1330 local->suspended = false;
ceb99fe0
JB
1331 mb();
1332 local->resuming = false;
5bb644a0
JB
1333
1334 list_for_each_entry(sdata, &local->interfaces, list) {
1335 switch(sdata->vif.type) {
1336 case NL80211_IFTYPE_STATION:
1337 ieee80211_sta_restart(sdata);
1338 break;
1339 case NL80211_IFTYPE_ADHOC:
1340 ieee80211_ibss_restart(sdata);
1341 break;
1342 case NL80211_IFTYPE_MESH_POINT:
1343 ieee80211_mesh_restart(sdata);
1344 break;
1345 default:
1346 break;
1347 }
1348 }
1349
26d59535 1350 mod_timer(&local->sta_cleanup, jiffies + 1);
5bb644a0 1351
34e89507 1352 mutex_lock(&local->sta_mtx);
5bb644a0
JB
1353 list_for_each_entry(sta, &local->sta_list, list)
1354 mesh_plink_restart(sta);
34e89507 1355 mutex_unlock(&local->sta_mtx);
5bb644a0
JB
1356#else
1357 WARN_ON(1);
1358#endif
f2753ddb
JB
1359 return 0;
1360}
42935eca 1361
95acac61
JB
1362void ieee80211_resume_disconnect(struct ieee80211_vif *vif)
1363{
1364 struct ieee80211_sub_if_data *sdata;
1365 struct ieee80211_local *local;
1366 struct ieee80211_key *key;
1367
1368 if (WARN_ON(!vif))
1369 return;
1370
1371 sdata = vif_to_sdata(vif);
1372 local = sdata->local;
1373
1374 if (WARN_ON(!local->resuming))
1375 return;
1376
1377 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1378 return;
1379
1380 sdata->flags |= IEEE80211_SDATA_DISCONNECT_RESUME;
1381
1382 mutex_lock(&local->key_mtx);
1383 list_for_each_entry(key, &sdata->key_list, list)
1384 key->flags |= KEY_FLAG_TAINTED;
1385 mutex_unlock(&local->key_mtx);
1386}
1387EXPORT_SYMBOL_GPL(ieee80211_resume_disconnect);
1388
0f78231b
JB
1389static int check_mgd_smps(struct ieee80211_if_managed *ifmgd,
1390 enum ieee80211_smps_mode *smps_mode)
1391{
1392 if (ifmgd->associated) {
1393 *smps_mode = ifmgd->ap_smps;
1394
1395 if (*smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1396 if (ifmgd->powersave)
1397 *smps_mode = IEEE80211_SMPS_DYNAMIC;
1398 else
1399 *smps_mode = IEEE80211_SMPS_OFF;
1400 }
1401
1402 return 1;
1403 }
1404
1405 return 0;
1406}
1407
1408/* must hold iflist_mtx */
025e6be2 1409void ieee80211_recalc_smps(struct ieee80211_local *local)
0f78231b
JB
1410{
1411 struct ieee80211_sub_if_data *sdata;
1412 enum ieee80211_smps_mode smps_mode = IEEE80211_SMPS_OFF;
1413 int count = 0;
1414
46a5ebaf 1415 lockdep_assert_held(&local->iflist_mtx);
0f78231b
JB
1416
1417 /*
1418 * This function could be improved to handle multiple
1419 * interfaces better, but right now it makes any
1420 * non-station interfaces force SM PS to be turned
1421 * off. If there are multiple station interfaces it
1422 * could also use the best possible mode, e.g. if
1423 * one is in static and the other in dynamic then
1424 * dynamic is ok.
1425 */
1426
1427 list_for_each_entry(sdata, &local->interfaces, list) {
26a58456 1428 if (!ieee80211_sdata_running(sdata))
0f78231b
JB
1429 continue;
1430 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1431 goto set;
025e6be2
JB
1432
1433 count += check_mgd_smps(&sdata->u.mgd, &smps_mode);
0f78231b
JB
1434
1435 if (count > 1) {
1436 smps_mode = IEEE80211_SMPS_OFF;
1437 break;
1438 }
1439 }
1440
1441 if (smps_mode == local->smps_mode)
1442 return;
1443
1444 set:
1445 local->smps_mode = smps_mode;
1446 /* changed flag is auto-detected for this */
1447 ieee80211_hw_config(local, 0);
1448}
8e664fb3
JB
1449
1450static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
1451{
1452 int i;
1453
1454 for (i = 0; i < n_ids; i++)
1455 if (ids[i] == id)
1456 return true;
1457 return false;
1458}
1459
1460/**
1461 * ieee80211_ie_split - split an IE buffer according to ordering
1462 *
1463 * @ies: the IE buffer
1464 * @ielen: the length of the IE buffer
1465 * @ids: an array with element IDs that are allowed before
1466 * the split
1467 * @n_ids: the size of the element ID array
1468 * @offset: offset where to start splitting in the buffer
1469 *
1470 * This function splits an IE buffer by updating the @offset
1471 * variable to point to the location where the buffer should be
1472 * split.
1473 *
1474 * It assumes that the given IE buffer is well-formed, this
1475 * has to be guaranteed by the caller!
1476 *
1477 * It also assumes that the IEs in the buffer are ordered
1478 * correctly, if not the result of using this function will not
1479 * be ordered correctly either, i.e. it does no reordering.
1480 *
1481 * The function returns the offset where the next part of the
1482 * buffer starts, which may be @ielen if the entire (remainder)
1483 * of the buffer should be used.
1484 */
1485size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
1486 const u8 *ids, int n_ids, size_t offset)
1487{
1488 size_t pos = offset;
1489
1490 while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos]))
1491 pos += 2 + ies[pos + 1];
1492
1493 return pos;
1494}
1495
1496size_t ieee80211_ie_split_vendor(const u8 *ies, size_t ielen, size_t offset)
1497{
1498 size_t pos = offset;
1499
1500 while (pos < ielen && ies[pos] != WLAN_EID_VENDOR_SPECIFIC)
1501 pos += 2 + ies[pos + 1];
1502
1503 return pos;
1504}
615f7b9b
MV
1505
1506static void _ieee80211_enable_rssi_reports(struct ieee80211_sub_if_data *sdata,
1507 int rssi_min_thold,
1508 int rssi_max_thold)
1509{
1510 trace_api_enable_rssi_reports(sdata, rssi_min_thold, rssi_max_thold);
1511
1512 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1513 return;
1514
1515 /*
1516 * Scale up threshold values before storing it, as the RSSI averaging
1517 * algorithm uses a scaled up value as well. Change this scaling
1518 * factor if the RSSI averaging algorithm changes.
1519 */
1520 sdata->u.mgd.rssi_min_thold = rssi_min_thold*16;
1521 sdata->u.mgd.rssi_max_thold = rssi_max_thold*16;
1522}
1523
1524void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
1525 int rssi_min_thold,
1526 int rssi_max_thold)
1527{
1528 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1529
1530 WARN_ON(rssi_min_thold == rssi_max_thold ||
1531 rssi_min_thold > rssi_max_thold);
1532
1533 _ieee80211_enable_rssi_reports(sdata, rssi_min_thold,
1534 rssi_max_thold);
1535}
1536EXPORT_SYMBOL(ieee80211_enable_rssi_reports);
1537
1538void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif)
1539{
1540 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1541
1542 _ieee80211_enable_rssi_reports(sdata, 0, 0);
1543}
1544EXPORT_SYMBOL(ieee80211_disable_rssi_reports);
768db343 1545
ef96a842 1546u8 *ieee80211_ie_build_ht_cap(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
42e7aa77
AS
1547 u16 cap)
1548{
1549 __le16 tmp;
1550
1551 *pos++ = WLAN_EID_HT_CAPABILITY;
1552 *pos++ = sizeof(struct ieee80211_ht_cap);
1553 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
1554
1555 /* capability flags */
1556 tmp = cpu_to_le16(cap);
1557 memcpy(pos, &tmp, sizeof(u16));
1558 pos += sizeof(u16);
1559
1560 /* AMPDU parameters */
ef96a842
BG
1561 *pos++ = ht_cap->ampdu_factor |
1562 (ht_cap->ampdu_density <<
42e7aa77
AS
1563 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
1564
1565 /* MCS set */
ef96a842
BG
1566 memcpy(pos, &ht_cap->mcs, sizeof(ht_cap->mcs));
1567 pos += sizeof(ht_cap->mcs);
42e7aa77
AS
1568
1569 /* extended capabilities */
1570 pos += sizeof(__le16);
1571
1572 /* BF capabilities */
1573 pos += sizeof(__le32);
1574
1575 /* antenna selection */
1576 pos += sizeof(u8);
1577
1578 return pos;
1579}
1580
1581u8 *ieee80211_ie_build_ht_info(u8 *pos,
1582 struct ieee80211_sta_ht_cap *ht_cap,
1583 struct ieee80211_channel *channel,
1584 enum nl80211_channel_type channel_type)
1585{
1586 struct ieee80211_ht_info *ht_info;
1587 /* Build HT Information */
1588 *pos++ = WLAN_EID_HT_INFORMATION;
1589 *pos++ = sizeof(struct ieee80211_ht_info);
1590 ht_info = (struct ieee80211_ht_info *)pos;
1591 ht_info->control_chan =
1592 ieee80211_frequency_to_channel(channel->center_freq);
1593 switch (channel_type) {
1594 case NL80211_CHAN_HT40MINUS:
1595 ht_info->ht_param = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
1596 break;
1597 case NL80211_CHAN_HT40PLUS:
1598 ht_info->ht_param = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
1599 break;
1600 case NL80211_CHAN_HT20:
1601 default:
1602 ht_info->ht_param = IEEE80211_HT_PARAM_CHA_SEC_NONE;
1603 break;
1604 }
1605 if (ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40)
1606 ht_info->ht_param |= IEEE80211_HT_PARAM_CHAN_WIDTH_ANY;
ff3cc5f4
SW
1607
1608 /*
1609 * Note: According to 802.11n-2009 9.13.3.1, HT Protection field and
1610 * RIFS Mode are reserved in IBSS mode, therefore keep them at 0
1611 */
42e7aa77
AS
1612 ht_info->operation_mode = 0x0000;
1613 ht_info->stbc_param = 0x0000;
1614
1615 /* It seems that Basic MCS set and Supported MCS set
1616 are identical for the first 10 bytes */
1617 memset(&ht_info->basic_set, 0, 16);
1618 memcpy(&ht_info->basic_set, &ht_cap->mcs, 10);
1619
1620 return pos + sizeof(struct ieee80211_ht_info);
1621}
1622
1623enum nl80211_channel_type
1624ieee80211_ht_info_to_channel_type(struct ieee80211_ht_info *ht_info)
1625{
1626 enum nl80211_channel_type channel_type;
1627
1628 if (!ht_info)
1629 return NL80211_CHAN_NO_HT;
1630
1631 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
1632 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
1633 channel_type = NL80211_CHAN_HT20;
1634 break;
1635 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
1636 channel_type = NL80211_CHAN_HT40PLUS;
1637 break;
1638 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
1639 channel_type = NL80211_CHAN_HT40MINUS;
1640 break;
1641 default:
1642 channel_type = NL80211_CHAN_NO_HT;
1643 }
1644
1645 return channel_type;
1646}
1647
768db343
AN
1648int ieee80211_add_srates_ie(struct ieee80211_vif *vif, struct sk_buff *skb)
1649{
1650 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1651 struct ieee80211_local *local = sdata->local;
1652 struct ieee80211_supported_band *sband;
1653 int rate;
1654 u8 i, rates, *pos;
1655
1656 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1657 rates = sband->n_bitrates;
1658 if (rates > 8)
1659 rates = 8;
1660
1661 if (skb_tailroom(skb) < rates + 2)
1662 return -ENOMEM;
1663
1664 pos = skb_put(skb, rates + 2);
1665 *pos++ = WLAN_EID_SUPP_RATES;
1666 *pos++ = rates;
1667 for (i = 0; i < rates; i++) {
1668 rate = sband->bitrates[i].bitrate;
1669 *pos++ = (u8) (rate / 5);
1670 }
1671
1672 return 0;
1673}
1674
1675int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, struct sk_buff *skb)
1676{
1677 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1678 struct ieee80211_local *local = sdata->local;
1679 struct ieee80211_supported_band *sband;
1680 int rate;
1681 u8 i, exrates, *pos;
1682
1683 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1684 exrates = sband->n_bitrates;
1685 if (exrates > 8)
1686 exrates -= 8;
1687 else
1688 exrates = 0;
1689
1690 if (skb_tailroom(skb) < exrates + 2)
1691 return -ENOMEM;
1692
1693 if (exrates) {
1694 pos = skb_put(skb, exrates + 2);
1695 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1696 *pos++ = exrates;
1697 for (i = 8; i < sband->n_bitrates; i++) {
1698 rate = sband->bitrates[i].bitrate;
1699 *pos++ = (u8) (rate / 5);
1700 }
1701 }
1702 return 0;
1703}