mac80211: make retry limits part of hw config
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / mac80211 / main.c
CommitLineData
f0706e82
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 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <net/mac80211.h>
12#include <net/ieee80211_radiotap.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/netdevice.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/if_arp.h>
21#include <linux/wireless.h>
22#include <linux/rtnetlink.h>
f0706e82 23#include <linux/bitmap.h>
881d966b 24#include <net/net_namespace.h>
f0706e82
JB
25#include <net/cfg80211.h>
26
f0706e82 27#include "ieee80211_i.h"
2c8dccc7 28#include "rate.h"
f7a92144 29#include "mesh.h"
f0706e82 30#include "wep.h"
f0706e82
JB
31#include "wme.h"
32#include "aes_ccm.h"
2c8dccc7 33#include "led.h"
e0eb6859 34#include "cfg.h"
e9f207f0
JB
35#include "debugfs.h"
36#include "debugfs_netdev.h"
f0706e82 37
b306f453
JB
38/*
39 * For seeing transmitted packets on monitor interfaces
40 * we have a radiotap header too.
41 */
42struct ieee80211_tx_status_rtap_hdr {
43 struct ieee80211_radiotap_header hdr;
44 __le16 tx_flags;
45 u8 data_retries;
46} __attribute__ ((packed));
47
f0706e82 48
4150c572 49/* must be called under mdev tx lock */
0d143fe1 50void ieee80211_configure_filter(struct ieee80211_local *local)
4150c572
JB
51{
52 unsigned int changed_flags;
53 unsigned int new_flags = 0;
54
53918994 55 if (atomic_read(&local->iff_promiscs))
4150c572
JB
56 new_flags |= FIF_PROMISC_IN_BSS;
57
53918994 58 if (atomic_read(&local->iff_allmultis))
4150c572
JB
59 new_flags |= FIF_ALLMULTI;
60
61 if (local->monitors)
8cc9a739
MW
62 new_flags |= FIF_BCN_PRBRESP_PROMISC;
63
64 if (local->fif_fcsfail)
65 new_flags |= FIF_FCSFAIL;
66
67 if (local->fif_plcpfail)
68 new_flags |= FIF_PLCPFAIL;
69
70 if (local->fif_control)
71 new_flags |= FIF_CONTROL;
72
73 if (local->fif_other_bss)
74 new_flags |= FIF_OTHER_BSS;
4150c572
JB
75
76 changed_flags = local->filter_flags ^ new_flags;
77
78 /* be a bit nasty */
79 new_flags |= (1<<31);
80
81 local->ops->configure_filter(local_to_hw(local),
82 changed_flags, &new_flags,
83 local->mdev->mc_count,
84 local->mdev->mc_list);
85
86 WARN_ON(new_flags & (1<<31));
87
88 local->filter_flags = new_flags & ~(1<<31);
89}
90
b2c258fb 91/* master interface */
f0706e82 92
0d143fe1
JB
93static int header_parse_80211(const struct sk_buff *skb, unsigned char *haddr)
94{
95 memcpy(haddr, skb_mac_header(skb) + 10, ETH_ALEN); /* addr2 */
96 return ETH_ALEN;
97}
98
99static const struct header_ops ieee80211_header_ops = {
100 .create = eth_header,
101 .parse = header_parse_80211,
102 .rebuild = eth_rebuild_header,
103 .cache = eth_header_cache,
104 .cache_update = eth_header_cache_update,
105};
106
b2c258fb
JB
107static int ieee80211_master_open(struct net_device *dev)
108{
133b8226
JB
109 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
110 struct ieee80211_local *local = mpriv->local;
b2c258fb
JB
111 struct ieee80211_sub_if_data *sdata;
112 int res = -EOPNOTSUPP;
f0706e82 113
79010420
JB
114 /* we hold the RTNL here so can safely walk the list */
115 list_for_each_entry(sdata, &local->interfaces, list) {
3e122be0 116 if (netif_running(sdata->dev)) {
b2c258fb
JB
117 res = 0;
118 break;
119 }
120 }
36d6825b
JB
121
122 if (res)
123 return res;
124
51cb6db0 125 netif_tx_start_all_queues(local->mdev);
36d6825b
JB
126
127 return 0;
b2c258fb 128}
f0706e82 129
b2c258fb 130static int ieee80211_master_stop(struct net_device *dev)
f0706e82 131{
133b8226
JB
132 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
133 struct ieee80211_local *local = mpriv->local;
b2c258fb 134 struct ieee80211_sub_if_data *sdata;
f0706e82 135
79010420
JB
136 /* we hold the RTNL here so can safely walk the list */
137 list_for_each_entry(sdata, &local->interfaces, list)
3e122be0 138 if (netif_running(sdata->dev))
b2c258fb 139 dev_close(sdata->dev);
f0706e82 140
b2c258fb
JB
141 return 0;
142}
f0706e82 143
4150c572
JB
144static void ieee80211_master_set_multicast_list(struct net_device *dev)
145{
133b8226
JB
146 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
147 struct ieee80211_local *local = mpriv->local;
4150c572
JB
148
149 ieee80211_configure_filter(local);
150}
151
b2c258fb
JB
152/* everything else */
153
9d139c81 154int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
b2c258fb 155{
9d139c81 156 struct ieee80211_local *local = sdata->local;
b2c258fb 157 struct ieee80211_if_conf conf;
b2c258fb 158
9d139c81
JB
159 if (WARN_ON(!netif_running(sdata->dev)))
160 return 0;
161
7a725f73
JB
162 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
163 return -EINVAL;
164
9d139c81 165 if (!local->ops->config_interface)
f0706e82 166 return 0;
f0706e82 167
b2c258fb 168 memset(&conf, 0, sizeof(conf));
9d139c81
JB
169 conf.changed = changed;
170
05c914fe
JB
171 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
172 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
4150c572 173 conf.bssid = sdata->u.sta.bssid;
b2c258fb
JB
174 conf.ssid = sdata->u.sta.ssid;
175 conf.ssid_len = sdata->u.sta.ssid_len;
05c914fe 176 } else if (sdata->vif.type == NL80211_IFTYPE_AP) {
9d139c81 177 conf.bssid = sdata->dev->dev_addr;
b2c258fb
JB
178 conf.ssid = sdata->u.ap.ssid;
179 conf.ssid_len = sdata->u.ap.ssid_len;
9d139c81
JB
180 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
181 u8 zero[ETH_ALEN] = { 0 };
182 conf.bssid = zero;
183 conf.ssid = zero;
184 conf.ssid_len = 0;
185 } else {
186 WARN_ON(1);
187 return -EINVAL;
f0706e82 188 }
f0706e82 189
9d139c81
JB
190 if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID)))
191 return -EINVAL;
f0706e82 192
9d139c81
JB
193 if (WARN_ON(!conf.ssid && (changed & IEEE80211_IFCC_SSID)))
194 return -EINVAL;
f0706e82 195
9d139c81
JB
196 return local->ops->config_interface(local_to_hw(local),
197 &sdata->vif, &conf);
b2c258fb 198}
f0706e82 199
e8975581 200int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
b2c258fb 201{
b2c258fb
JB
202 struct ieee80211_channel *chan;
203 int ret = 0;
e8975581 204 int power;
f0706e82 205
c2b13452 206 if (local->sw_scanning)
b2c258fb 207 chan = local->scan_channel;
8318d78a 208 else
b2c258fb 209 chan = local->oper_channel;
f0706e82 210
e8975581
JB
211 if (chan != local->hw.conf.channel) {
212 local->hw.conf.channel = chan;
213 changed |= IEEE80211_CONF_CHANGE_CHANNEL;
214 }
215
8318d78a
JB
216
217 if (!local->hw.conf.power_level)
e8975581 218 power = chan->max_power;
8318d78a 219 else
e8975581
JB
220 power = min(chan->max_power, local->hw.conf.power_level);
221 if (local->hw.conf.power_level != power) {
222 changed |= IEEE80211_CONF_CHANGE_POWER;
223 local->hw.conf.power_level = power;
224 }
b2c258fb 225
e8975581
JB
226 if (changed && local->open_count) {
227 ret = local->ops->config(local_to_hw(local), changed);
d73782fd
JB
228 /*
229 * HW reconfiguration should never fail, the driver has told
230 * us what it can support so it should live up to that promise.
231 */
232 WARN_ON(ret);
233 }
f0706e82 234
b2c258fb
JB
235 return ret;
236}
f0706e82 237
471b3efd
JB
238void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
239 u32 changed)
d9430a32 240{
471b3efd
JB
241 struct ieee80211_local *local = sdata->local;
242
7a725f73
JB
243 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
244 return;
245
471b3efd
JB
246 if (!changed)
247 return;
248
249 if (local->ops->bss_info_changed)
250 local->ops->bss_info_changed(local_to_hw(local),
251 &sdata->vif,
252 &sdata->bss_conf,
253 changed);
d9430a32
DD
254}
255
f698d856 256u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
d9430a32 257{
7a5158ef
JB
258 sdata->bss_conf.use_cts_prot = false;
259 sdata->bss_conf.use_short_preamble = false;
260 sdata->bss_conf.use_short_slot = false;
261 return BSS_CHANGED_ERP_CTS_PROT |
262 BSS_CHANGED_ERP_PREAMBLE |
263 BSS_CHANGED_ERP_SLOT;
d9430a32
DD
264}
265
f0706e82 266void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
e039fa4a 267 struct sk_buff *skb)
f0706e82
JB
268{
269 struct ieee80211_local *local = hw_to_local(hw);
e039fa4a 270 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
f0706e82
JB
271 int tmp;
272
273 skb->dev = local->mdev;
f0706e82 274 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
e039fa4a 275 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
f0706e82
JB
276 &local->skb_queue : &local->skb_queue_unreliable, skb);
277 tmp = skb_queue_len(&local->skb_queue) +
278 skb_queue_len(&local->skb_queue_unreliable);
279 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
280 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
f0706e82
JB
281 dev_kfree_skb_irq(skb);
282 tmp--;
283 I802_DEBUG_INC(local->tx_status_drop);
284 }
285 tasklet_schedule(&local->tasklet);
286}
287EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
288
289static void ieee80211_tasklet_handler(unsigned long data)
290{
291 struct ieee80211_local *local = (struct ieee80211_local *) data;
292 struct sk_buff *skb;
293 struct ieee80211_rx_status rx_status;
eadc8d9e 294 struct ieee80211_ra_tid *ra_tid;
f0706e82
JB
295
296 while ((skb = skb_dequeue(&local->skb_queue)) ||
297 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
298 switch (skb->pkt_type) {
299 case IEEE80211_RX_MSG:
300 /* status is in skb->cb */
301 memcpy(&rx_status, skb->cb, sizeof(rx_status));
51fb61e7 302 /* Clear skb->pkt_type in order to not confuse kernel
f0706e82
JB
303 * netstack. */
304 skb->pkt_type = 0;
305 __ieee80211_rx(local_to_hw(local), skb, &rx_status);
306 break;
307 case IEEE80211_TX_STATUS_MSG:
f0706e82 308 skb->pkt_type = 0;
e039fa4a 309 ieee80211_tx_status(local_to_hw(local), skb);
f0706e82 310 break;
eadc8d9e
RR
311 case IEEE80211_DELBA_MSG:
312 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
313 ieee80211_stop_tx_ba_cb(local_to_hw(local),
314 ra_tid->ra, ra_tid->tid);
315 dev_kfree_skb(skb);
316 break;
317 case IEEE80211_ADDBA_MSG:
318 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
319 ieee80211_start_tx_ba_cb(local_to_hw(local),
320 ra_tid->ra, ra_tid->tid);
321 dev_kfree_skb(skb);
322 break ;
f4ea83dd
JB
323 default:
324 WARN_ON(1);
f0706e82
JB
325 dev_kfree_skb(skb);
326 break;
327 }
328 }
329}
330
f0706e82
JB
331/* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
332 * make a prepared TX frame (one that has been given to hw) to look like brand
333 * new IEEE 802.11 frame that is ready to go through TX processing again.
d0f09804 334 */
f0706e82
JB
335static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
336 struct ieee80211_key *key,
e039fa4a 337 struct sk_buff *skb)
f0706e82 338{
62bf1d76
HH
339 unsigned int hdrlen, iv_len, mic_len;
340 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
f0706e82 341
62bf1d76 342 hdrlen = ieee80211_hdrlen(hdr->frame_control);
f0706e82
JB
343
344 if (!key)
345 goto no_key;
346
8f20fc24 347 switch (key->conf.alg) {
f0706e82
JB
348 case ALG_WEP:
349 iv_len = WEP_IV_LEN;
350 mic_len = WEP_ICV_LEN;
351 break;
352 case ALG_TKIP:
353 iv_len = TKIP_IV_LEN;
354 mic_len = TKIP_ICV_LEN;
355 break;
356 case ALG_CCMP:
357 iv_len = CCMP_HDR_LEN;
358 mic_len = CCMP_MIC_LEN;
359 break;
360 default:
361 goto no_key;
362 }
363
62bf1d76 364 if (skb->len >= hdrlen + mic_len &&
11a843b7 365 !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
f0706e82 366 skb_trim(skb, skb->len - mic_len);
62bf1d76 367 if (skb->len >= hdrlen + iv_len) {
f0706e82 368 memmove(skb->data + iv_len, skb->data, hdrlen);
62bf1d76 369 hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len);
f0706e82
JB
370 }
371
372no_key:
62bf1d76
HH
373 if (ieee80211_is_data_qos(hdr->frame_control)) {
374 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
375 memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data,
376 hdrlen - IEEE80211_QOS_CTL_LEN);
377 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
f0706e82
JB
378 }
379}
380
d46e144b
JB
381static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
382 struct sta_info *sta,
e039fa4a 383 struct sk_buff *skb)
d46e144b 384{
e039fa4a
JB
385 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
386
d46e144b
JB
387 sta->tx_filtered_count++;
388
389 /*
390 * Clear the TX filter mask for this STA when sending the next
391 * packet. If the STA went to power save mode, this will happen
f6d97104 392 * when it wakes up for the next time.
d46e144b 393 */
07346f81 394 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
d46e144b
JB
395
396 /*
397 * This code races in the following way:
398 *
399 * (1) STA sends frame indicating it will go to sleep and does so
400 * (2) hardware/firmware adds STA to filter list, passes frame up
401 * (3) hardware/firmware processes TX fifo and suppresses a frame
402 * (4) we get TX status before having processed the frame and
403 * knowing that the STA has gone to sleep.
404 *
405 * This is actually quite unlikely even when both those events are
406 * processed from interrupts coming in quickly after one another or
407 * even at the same time because we queue both TX status events and
408 * RX frames to be processed by a tasklet and process them in the
409 * same order that they were received or TX status last. Hence, there
410 * is no race as long as the frame RX is processed before the next TX
411 * status, which drivers can ensure, see below.
412 *
413 * Note that this can only happen if the hardware or firmware can
414 * actually add STAs to the filter list, if this is done by the
415 * driver in response to set_tim() (which will only reduce the race
416 * this whole filtering tries to solve, not completely solve it)
417 * this situation cannot happen.
418 *
419 * To completely solve this race drivers need to make sure that they
420 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
421 * functions and
422 * (b) always process RX events before TX status events if ordering
423 * can be unknown, for example with different interrupt status
424 * bits.
425 */
07346f81 426 if (test_sta_flags(sta, WLAN_STA_PS) &&
d46e144b 427 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
e039fa4a 428 ieee80211_remove_tx_extra(local, sta->key, skb);
d46e144b
JB
429 skb_queue_tail(&sta->tx_filtered, skb);
430 return;
431 }
432
07346f81 433 if (!test_sta_flags(sta, WLAN_STA_PS) &&
e039fa4a 434 !(info->flags & IEEE80211_TX_CTL_REQUEUE)) {
d46e144b 435 /* Software retry the packet once */
e039fa4a
JB
436 info->flags |= IEEE80211_TX_CTL_REQUEUE;
437 ieee80211_remove_tx_extra(local, sta->key, skb);
d46e144b
JB
438 dev_queue_xmit(skb);
439 return;
440 }
441
f4ea83dd 442#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
d46e144b
JB
443 if (net_ratelimit())
444 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
445 "queue_len=%d PS=%d @%lu\n",
446 wiphy_name(local->hw.wiphy),
447 skb_queue_len(&sta->tx_filtered),
07346f81 448 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
f4ea83dd 449#endif
d46e144b
JB
450 dev_kfree_skb(skb);
451}
452
e039fa4a 453void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
f0706e82
JB
454{
455 struct sk_buff *skb2;
456 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
457 struct ieee80211_local *local = hw_to_local(hw);
e039fa4a 458 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
f0706e82 459 u16 frag, type;
429a3805 460 __le16 fc;
4b7679a5 461 struct ieee80211_supported_band *sband;
b306f453
JB
462 struct ieee80211_tx_status_rtap_hdr *rthdr;
463 struct ieee80211_sub_if_data *sdata;
3d30d949 464 struct net_device *prev_dev = NULL;
429a3805 465 struct sta_info *sta;
f0706e82 466
d0709a65
JB
467 rcu_read_lock();
468
95dac040
JB
469 sta = sta_info_get(local, hdr->addr1);
470
471 if (sta) {
472 if (info->status.excessive_retries &&
473 test_sta_flags(sta, WLAN_STA_PS)) {
474 /*
475 * The STA is in power save mode, so assume
476 * that this TX packet failed because of that.
477 */
478 ieee80211_handle_filtered_frame(local, sta, skb);
479 rcu_read_unlock();
480 return;
f0706e82 481 }
f0706e82 482
95dac040
JB
483 fc = hdr->frame_control;
484
485 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
486 (ieee80211_is_data_qos(fc))) {
487 u16 tid, ssn;
488 u8 *qc;
429a3805 489
429a3805
RR
490 qc = ieee80211_get_qos_ctl(hdr);
491 tid = qc[0] & 0xf;
492 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
493 & IEEE80211_SCTL_SEQ);
f698d856 494 ieee80211_send_bar(sta->sdata, hdr->addr1,
429a3805
RR
495 tid, ssn);
496 }
429a3805 497
95dac040 498 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
e039fa4a 499 ieee80211_handle_filtered_frame(local, sta, skb);
d0709a65 500 rcu_read_unlock();
f0706e82 501 return;
95dac040
JB
502 } else {
503 if (info->status.excessive_retries)
504 sta->tx_retry_failed++;
505 sta->tx_retry_count += info->status.retry_count;
f0706e82 506 }
95dac040 507
4b7679a5
JB
508 sband = local->hw.wiphy->bands[info->band];
509 rate_control_tx_status(local, sband, sta, skb);
95dac040 510 }
f0706e82 511
d0709a65
JB
512 rcu_read_unlock();
513
f0706e82
JB
514 ieee80211_led_tx(local, 0);
515
516 /* SNMP counters
517 * Fragments are passed to low-level drivers as separate skbs, so these
518 * are actually fragments, not frames. Update frame counters only for
519 * the first fragment of the frame. */
520
521 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
522 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
523
e039fa4a 524 if (info->flags & IEEE80211_TX_STAT_ACK) {
f0706e82
JB
525 if (frag == 0) {
526 local->dot11TransmittedFrameCount++;
527 if (is_multicast_ether_addr(hdr->addr1))
528 local->dot11MulticastTransmittedFrameCount++;
e039fa4a 529 if (info->status.retry_count > 0)
f0706e82 530 local->dot11RetryCount++;
e039fa4a 531 if (info->status.retry_count > 1)
f0706e82
JB
532 local->dot11MultipleRetryCount++;
533 }
534
535 /* This counter shall be incremented for an acknowledged MPDU
536 * with an individual address in the address 1 field or an MPDU
537 * with a multicast address in the address 1 field of type Data
538 * or Management. */
539 if (!is_multicast_ether_addr(hdr->addr1) ||
540 type == IEEE80211_FTYPE_DATA ||
541 type == IEEE80211_FTYPE_MGMT)
542 local->dot11TransmittedFragmentCount++;
543 } else {
544 if (frag == 0)
545 local->dot11FailedCount++;
546 }
547
b306f453
JB
548 /* this was a transmitted frame, but now we want to reuse it */
549 skb_orphan(skb);
550
3d30d949
MW
551 /*
552 * This is a bit racy but we can avoid a lot of work
553 * with this test...
554 */
555 if (!local->monitors && !local->cooked_mntrs) {
f0706e82
JB
556 dev_kfree_skb(skb);
557 return;
558 }
559
b306f453 560 /* send frame to monitor interfaces now */
f0706e82 561
b306f453
JB
562 if (skb_headroom(skb) < sizeof(*rthdr)) {
563 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
f0706e82
JB
564 dev_kfree_skb(skb);
565 return;
566 }
f0706e82 567
988c0f72 568 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
b306f453
JB
569 skb_push(skb, sizeof(*rthdr));
570
571 memset(rthdr, 0, sizeof(*rthdr));
572 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
573 rthdr->hdr.it_present =
574 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
575 (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
576
e039fa4a 577 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
b306f453
JB
578 !is_multicast_ether_addr(hdr->addr1))
579 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
580
e039fa4a
JB
581 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) &&
582 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT))
b306f453 583 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
e039fa4a 584 else if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS)
b306f453
JB
585 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
586
e039fa4a 587 rthdr->data_retries = info->status.retry_count;
b306f453 588
3d30d949
MW
589 /* XXX: is this sufficient for BPF? */
590 skb_set_mac_header(skb, 0);
591 skb->ip_summed = CHECKSUM_UNNECESSARY;
592 skb->pkt_type = PACKET_OTHERHOST;
593 skb->protocol = htons(ETH_P_802_2);
594 memset(skb->cb, 0, sizeof(skb->cb));
595
79010420 596 rcu_read_lock();
79010420 597 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
05c914fe 598 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
b306f453
JB
599 if (!netif_running(sdata->dev))
600 continue;
3d30d949
MW
601
602 if (prev_dev) {
79010420 603 skb2 = skb_clone(skb, GFP_ATOMIC);
3d30d949
MW
604 if (skb2) {
605 skb2->dev = prev_dev;
606 netif_rx(skb2);
607 }
608 }
609
610 prev_dev = sdata->dev;
b306f453
JB
611 }
612 }
3d30d949
MW
613 if (prev_dev) {
614 skb->dev = prev_dev;
615 netif_rx(skb);
616 skb = NULL;
617 }
79010420 618 rcu_read_unlock();
3d30d949 619 dev_kfree_skb(skb);
f0706e82
JB
620}
621EXPORT_SYMBOL(ieee80211_tx_status);
622
f0706e82
JB
623struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
624 const struct ieee80211_ops *ops)
625{
f0706e82 626 struct ieee80211_local *local;
f0706e82
JB
627 int priv_size;
628 struct wiphy *wiphy;
629
630 /* Ensure 32-byte alignment of our private data and hw private data.
631 * We use the wiphy priv data for both our ieee80211_local and for
632 * the driver's private data
633 *
634 * In memory it'll be like this:
635 *
636 * +-------------------------+
637 * | struct wiphy |
638 * +-------------------------+
639 * | struct ieee80211_local |
640 * +-------------------------+
641 * | driver's private data |
642 * +-------------------------+
643 *
644 */
645 priv_size = ((sizeof(struct ieee80211_local) +
646 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
647 priv_data_len;
648
649 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
650
651 if (!wiphy)
652 return NULL;
653
654 wiphy->privid = mac80211_wiphy_privid;
655
656 local = wiphy_priv(wiphy);
657 local->hw.wiphy = wiphy;
658
659 local->hw.priv = (char *)local +
660 ((sizeof(struct ieee80211_local) +
661 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
662
4480f15c 663 BUG_ON(!ops->tx);
4150c572
JB
664 BUG_ON(!ops->start);
665 BUG_ON(!ops->stop);
4480f15c
JB
666 BUG_ON(!ops->config);
667 BUG_ON(!ops->add_interface);
4150c572
JB
668 BUG_ON(!ops->remove_interface);
669 BUG_ON(!ops->configure_filter);
f0706e82
JB
670 local->ops = ops;
671
f0706e82
JB
672 local->hw.queues = 1; /* default */
673
f0706e82
JB
674 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
675 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
9124b077
JB
676 local->hw.conf.long_frame_max_tx_count = 4;
677 local->hw.conf.short_frame_max_tx_count = 7;
e8975581 678 local->hw.conf.radio_enabled = true;
f0706e82 679
79010420 680 INIT_LIST_HEAD(&local->interfaces);
f0706e82 681
b16bd15c
JB
682 spin_lock_init(&local->key_lock);
683
c2b13452 684 INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work);
f0706e82
JB
685
686 sta_info_init(local);
687
f0706e82
JB
688 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
689 (unsigned long)local);
690 tasklet_disable(&local->tx_pending_tasklet);
691
692 tasklet_init(&local->tasklet,
693 ieee80211_tasklet_handler,
694 (unsigned long) local);
695 tasklet_disable(&local->tasklet);
696
697 skb_queue_head_init(&local->skb_queue);
698 skb_queue_head_init(&local->skb_queue_unreliable);
699
700 return local_to_hw(local);
701}
702EXPORT_SYMBOL(ieee80211_alloc_hw);
703
704int ieee80211_register_hw(struct ieee80211_hw *hw)
705{
706 struct ieee80211_local *local = hw_to_local(hw);
707 const char *name;
708 int result;
8318d78a 709 enum ieee80211_band band;
96d51056 710 struct net_device *mdev;
133b8226 711 struct ieee80211_master_priv *mpriv;
8318d78a
JB
712
713 /*
714 * generic code guarantees at least one band,
715 * set this very early because much code assumes
716 * that hw.conf.channel is assigned
717 */
718 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
719 struct ieee80211_supported_band *sband;
720
721 sband = local->hw.wiphy->bands[band];
722 if (sband) {
723 /* init channel we're on */
724 local->hw.conf.channel =
725 local->oper_channel =
726 local->scan_channel = &sband->channels[0];
727 break;
728 }
729 }
f0706e82 730
f59ac048
LR
731 /* if low-level driver supports AP, we also support VLAN */
732 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
733 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
734
735 /* mac80211 always supports monitor */
736 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
737
f0706e82
JB
738 result = wiphy_register(local->hw.wiphy);
739 if (result < 0)
740 return result;
741
e2530083
JB
742 /*
743 * We use the number of queues for feature tests (QoS, HT) internally
744 * so restrict them appropriately.
745 */
e2530083
JB
746 if (hw->queues > IEEE80211_MAX_QUEUES)
747 hw->queues = IEEE80211_MAX_QUEUES;
748 if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES)
749 hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES;
750 if (hw->queues < 4)
751 hw->ampdu_queues = 0;
e2530083 752
133b8226 753 mdev = alloc_netdev_mq(sizeof(struct ieee80211_master_priv),
e2530083
JB
754 "wmaster%d", ether_setup,
755 ieee80211_num_queues(hw));
96d51056
JB
756 if (!mdev)
757 goto fail_mdev_alloc;
758
133b8226
JB
759 mpriv = netdev_priv(mdev);
760 mpriv->local = local;
96d51056
JB
761 local->mdev = mdev;
762
3e122be0 763 ieee80211_rx_bss_list_init(local);
96d51056
JB
764
765 mdev->hard_start_xmit = ieee80211_master_start_xmit;
766 mdev->open = ieee80211_master_open;
767 mdev->stop = ieee80211_master_stop;
768 mdev->type = ARPHRD_IEEE80211;
769 mdev->header_ops = &ieee80211_header_ops;
770 mdev->set_multicast_list = ieee80211_master_set_multicast_list;
771
f0706e82 772 name = wiphy_dev(local->hw.wiphy)->driver->name;
59959a61 773 local->hw.workqueue = create_freezeable_workqueue(name);
f0706e82
JB
774 if (!local->hw.workqueue) {
775 result = -ENOMEM;
776 goto fail_workqueue;
777 }
778
b306f453
JB
779 /*
780 * The hardware needs headroom for sending the frame,
781 * and we need some headroom for passing the frame to monitor
782 * interfaces, but never both at the same time.
783 */
33ccad35
JB
784 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
785 sizeof(struct ieee80211_tx_status_rtap_hdr));
b306f453 786
e9f207f0
JB
787 debugfs_hw_add(local);
788
dc0ae30c
TW
789 if (local->hw.conf.beacon_int < 10)
790 local->hw.conf.beacon_int = 100;
f0706e82 791
ea95bba4
TW
792 if (local->hw.max_listen_interval == 0)
793 local->hw.max_listen_interval = 1;
794
795 local->hw.conf.listen_interval = local->hw.max_listen_interval;
796
566bfe5a
BR
797 local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
798 IEEE80211_HW_SIGNAL_DB |
799 IEEE80211_HW_SIGNAL_DBM) ?
f0706e82 800 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
566bfe5a 801 local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
f0706e82 802 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
566bfe5a 803 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
f0706e82
JB
804 local->wstats_flags |= IW_QUAL_DBM;
805
806 result = sta_info_start(local);
807 if (result < 0)
808 goto fail_sta_info;
809
810 rtnl_lock();
811 result = dev_alloc_name(local->mdev, local->mdev->name);
812 if (result < 0)
813 goto fail_dev;
814
815 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
816 SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
817
818 result = register_netdevice(local->mdev);
819 if (result < 0)
820 goto fail_dev;
821
830f9038
JB
822 result = ieee80211_init_rate_ctrl_alg(local,
823 hw->rate_control_algorithm);
f0706e82
JB
824 if (result < 0) {
825 printk(KERN_DEBUG "%s: Failed to initialize rate control "
dd1cd4c6 826 "algorithm\n", wiphy_name(local->hw.wiphy));
f0706e82
JB
827 goto fail_rate;
828 }
829
830 result = ieee80211_wep_init(local);
831
832 if (result < 0) {
023a04be
JF
833 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
834 wiphy_name(local->hw.wiphy), result);
f0706e82
JB
835 goto fail_wep;
836 }
837
51cb6db0 838 local->mdev->select_queue = ieee80211_select_queue;
f0706e82
JB
839
840 /* add one default STA interface */
3e122be0 841 result = ieee80211_if_add(local, "wlan%d", NULL,
05c914fe 842 NL80211_IFTYPE_STATION, NULL);
f0706e82
JB
843 if (result)
844 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
dd1cd4c6 845 wiphy_name(local->hw.wiphy));
f0706e82 846
f0706e82
JB
847 rtnl_unlock();
848
849 ieee80211_led_init(local);
850
851 return 0;
852
853fail_wep:
854 rate_control_deinitialize(local);
855fail_rate:
856 unregister_netdevice(local->mdev);
339a7c41 857 local->mdev = NULL;
f0706e82
JB
858fail_dev:
859 rtnl_unlock();
860 sta_info_stop(local);
861fail_sta_info:
e9f207f0 862 debugfs_hw_del(local);
f0706e82
JB
863 destroy_workqueue(local->hw.workqueue);
864fail_workqueue:
3e122be0
JB
865 if (local->mdev)
866 free_netdev(local->mdev);
96d51056 867fail_mdev_alloc:
f0706e82
JB
868 wiphy_unregister(local->hw.wiphy);
869 return result;
870}
871EXPORT_SYMBOL(ieee80211_register_hw);
872
f0706e82
JB
873void ieee80211_unregister_hw(struct ieee80211_hw *hw)
874{
875 struct ieee80211_local *local = hw_to_local(hw);
f0706e82
JB
876
877 tasklet_kill(&local->tx_pending_tasklet);
878 tasklet_kill(&local->tasklet);
879
880 rtnl_lock();
881
79010420
JB
882 /*
883 * At this point, interface list manipulations are fine
884 * because the driver cannot be handing us frames any
885 * more and the tasklet is killed.
886 */
5b2812e9 887
75636525
JB
888 /* First, we remove all virtual interfaces. */
889 ieee80211_remove_interfaces(local);
5b2812e9
JB
890
891 /* then, finally, remove the master interface */
3e122be0 892 unregister_netdevice(local->mdev);
f0706e82
JB
893
894 rtnl_unlock();
895
3e122be0 896 ieee80211_rx_bss_list_deinit(local);
f0706e82
JB
897 ieee80211_clear_tx_pending(local);
898 sta_info_stop(local);
899 rate_control_deinitialize(local);
e9f207f0 900 debugfs_hw_del(local);
f0706e82 901
f0706e82
JB
902 if (skb_queue_len(&local->skb_queue)
903 || skb_queue_len(&local->skb_queue_unreliable))
904 printk(KERN_WARNING "%s: skb_queue not empty\n",
dd1cd4c6 905 wiphy_name(local->hw.wiphy));
f0706e82
JB
906 skb_queue_purge(&local->skb_queue);
907 skb_queue_purge(&local->skb_queue_unreliable);
908
909 destroy_workqueue(local->hw.workqueue);
910 wiphy_unregister(local->hw.wiphy);
911 ieee80211_wep_free(local);
912 ieee80211_led_exit(local);
3e122be0 913 free_netdev(local->mdev);
f0706e82
JB
914}
915EXPORT_SYMBOL(ieee80211_unregister_hw);
916
917void ieee80211_free_hw(struct ieee80211_hw *hw)
918{
919 struct ieee80211_local *local = hw_to_local(hw);
920
f0706e82
JB
921 wiphy_free(local->hw.wiphy);
922}
923EXPORT_SYMBOL(ieee80211_free_hw);
924
f0706e82
JB
925static int __init ieee80211_init(void)
926{
927 struct sk_buff *skb;
928 int ret;
929
e039fa4a
JB
930 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
931 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
c6a1fa12 932 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
f0706e82 933
cccf129f
FF
934 ret = rc80211_minstrel_init();
935 if (ret)
936 return ret;
937
4b475898 938 ret = rc80211_pid_init();
ad018375 939 if (ret)
51cb6db0 940 return ret;
f0706e82 941
e9f207f0
JB
942 ieee80211_debugfs_netdev_init();
943
f0706e82
JB
944 return 0;
945}
946
f0706e82
JB
947static void __exit ieee80211_exit(void)
948{
4b475898 949 rc80211_pid_exit();
cccf129f 950 rc80211_minstrel_exit();
ac71c691 951
3b96766f
JB
952 /*
953 * For key todo, it'll be empty by now but the work
954 * might still be scheduled.
955 */
956 flush_scheduled_work();
957
f7a92144
LCC
958 if (mesh_allocated)
959 ieee80211s_stop();
902acc78 960
e9f207f0 961 ieee80211_debugfs_netdev_exit();
f0706e82
JB
962}
963
964
ca9938fe 965subsys_initcall(ieee80211_init);
f0706e82
JB
966module_exit(ieee80211_exit);
967
968MODULE_DESCRIPTION("IEEE 802.11 subsystem");
969MODULE_LICENSE("GPL");