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>
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.
11 * utilities for mac80211
14 #include <net/mac80211.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/bitmap.h>
23 #include <net/net_namespace.h>
24 #include <net/cfg80211.h>
25 #include <net/rtnetlink.h>
27 #include "ieee80211_i.h"
32 /* privid for wiphys to determine whether they belong to us or not */
33 void *mac80211_wiphy_privid = &mac80211_wiphy_privid;
35 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
36 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
37 const unsigned char rfc1042_header[] __aligned(2) =
38 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
40 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
41 const unsigned char bridge_tunnel_header[] __aligned(2) =
42 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
45 u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
46 enum ieee80211_if_types type)
48 __le16 fc = hdr->frame_control;
50 /* drop ACK/CTS frames and incorrect hdr len (ctrl) */
54 if (ieee80211_is_data(fc)) {
55 if (len < 24) /* drop incorrect hdr len (data) */
58 if (ieee80211_has_a4(fc))
60 if (ieee80211_has_tods(fc))
62 if (ieee80211_has_fromds(fc))
68 if (ieee80211_is_mgmt(fc)) {
69 if (len < 24) /* drop incorrect hdr len (mgmt) */
74 if (ieee80211_is_ctl(fc)) {
75 if(ieee80211_is_pspoll(fc))
78 if (ieee80211_is_back_req(fc)) {
80 case IEEE80211_IF_TYPE_STA:
82 case IEEE80211_IF_TYPE_AP:
83 case IEEE80211_IF_TYPE_VLAN:
86 break; /* fall through to the return */
94 int ieee80211_get_hdrlen(u16 fc)
98 switch (fc & IEEE80211_FCTL_FTYPE) {
99 case IEEE80211_FTYPE_DATA:
100 if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
101 hdrlen = 30; /* Addr4 */
103 * The QoS Control field is two bytes and its presence is
104 * indicated by the IEEE80211_STYPE_QOS_DATA bit. Add 2 to
105 * hdrlen if that bit is set.
106 * This works by masking out the bit and shifting it to
107 * bit position 1 so the result has the value 0 or 2.
109 hdrlen += (fc & IEEE80211_STYPE_QOS_DATA)
110 >> (ilog2(IEEE80211_STYPE_QOS_DATA)-1);
112 case IEEE80211_FTYPE_CTL:
114 * ACK and CTS are 10 bytes, all others 16. To see how
115 * to get this condition consider
116 * subtype mask: 0b0000000011110000 (0x00F0)
117 * ACK subtype: 0b0000000011010000 (0x00D0)
118 * CTS subtype: 0b0000000011000000 (0x00C0)
119 * bits that matter: ^^^ (0x00E0)
120 * value of those: 0b0000000011000000 (0x00C0)
122 if ((fc & 0xE0) == 0xC0)
131 EXPORT_SYMBOL(ieee80211_get_hdrlen);
133 unsigned int ieee80211_hdrlen(__le16 fc)
135 unsigned int hdrlen = 24;
137 if (ieee80211_is_data(fc)) {
138 if (ieee80211_has_a4(fc))
140 if (ieee80211_is_data_qos(fc))
141 hdrlen += IEEE80211_QOS_CTL_LEN;
145 if (ieee80211_is_ctl(fc)) {
147 * ACK and CTS are 10 bytes, all others 16. To see how
148 * to get this condition consider
149 * subtype mask: 0b0000000011110000 (0x00F0)
150 * ACK subtype: 0b0000000011010000 (0x00D0)
151 * CTS subtype: 0b0000000011000000 (0x00C0)
152 * bits that matter: ^^^ (0x00E0)
153 * value of those: 0b0000000011000000 (0x00C0)
155 if ((fc & cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0))
163 EXPORT_SYMBOL(ieee80211_hdrlen);
165 unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb)
167 const struct ieee80211_hdr *hdr = (const struct ieee80211_hdr *)skb->data;
170 if (unlikely(skb->len < 10))
172 hdrlen = ieee80211_hdrlen(hdr->frame_control);
173 if (unlikely(hdrlen > skb->len))
177 EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb);
179 int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr)
181 int ae = meshhdr->flags & IEEE80211S_FLAGS_AE;
197 void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx)
199 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
201 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
202 if (tx->extra_frag) {
203 struct ieee80211_hdr *fhdr;
205 for (i = 0; i < tx->num_extra_frag; i++) {
206 fhdr = (struct ieee80211_hdr *)
207 tx->extra_frag[i]->data;
208 fhdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
213 int ieee80211_frame_duration(struct ieee80211_local *local, size_t len,
214 int rate, int erp, int short_preamble)
218 /* calculate duration (in microseconds, rounded up to next higher
219 * integer if it includes a fractional microsecond) to send frame of
220 * len bytes (does not include FCS) at the given rate. Duration will
223 * rate is in 100 kbps, so divident is multiplied by 10 in the
224 * DIV_ROUND_UP() operations.
227 if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ || erp) {
231 * N_DBPS = DATARATE x 4
232 * N_SYM = Ceiling((16+8xLENGTH+6) / N_DBPS)
233 * (16 = SIGNAL time, 6 = tail bits)
234 * TXTIME = T_PREAMBLE + T_SIGNAL + T_SYM x N_SYM + Signal Ext
237 * 802.11a - 17.5.2: aSIFSTime = 16 usec
238 * 802.11g - 19.8.4: aSIFSTime = 10 usec +
239 * signal ext = 6 usec
241 dur = 16; /* SIFS + signal ext */
242 dur += 16; /* 17.3.2.3: T_PREAMBLE = 16 usec */
243 dur += 4; /* 17.3.2.3: T_SIGNAL = 4 usec */
244 dur += 4 * DIV_ROUND_UP((16 + 8 * (len + 4) + 6) * 10,
245 4 * rate); /* T_SYM x N_SYM */
248 * 802.11b or 802.11g with 802.11b compatibility:
249 * 18.3.4: TXTIME = PreambleLength + PLCPHeaderTime +
250 * Ceiling(((LENGTH+PBCC)x8)/DATARATE). PBCC=0.
252 * 802.11 (DS): 15.3.3, 802.11b: 18.3.4
253 * aSIFSTime = 10 usec
254 * aPreambleLength = 144 usec or 72 usec with short preamble
255 * aPLCPHeaderLength = 48 usec or 24 usec with short preamble
257 dur = 10; /* aSIFSTime = 10 usec */
258 dur += short_preamble ? (72 + 24) : (144 + 48);
260 dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate);
266 /* Exported duration function for driver use */
267 __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
268 struct ieee80211_vif *vif,
270 struct ieee80211_rate *rate)
272 struct ieee80211_local *local = hw_to_local(hw);
273 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
278 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
279 erp = rate->flags & IEEE80211_RATE_ERP_G;
281 dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, erp,
282 sdata->bss_conf.use_short_preamble);
284 return cpu_to_le16(dur);
286 EXPORT_SYMBOL(ieee80211_generic_frame_duration);
288 __le16 ieee80211_rts_duration(struct ieee80211_hw *hw,
289 struct ieee80211_vif *vif, size_t frame_len,
290 const struct ieee80211_tx_info *frame_txctl)
292 struct ieee80211_local *local = hw_to_local(hw);
293 struct ieee80211_rate *rate;
294 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
298 struct ieee80211_supported_band *sband;
300 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
302 short_preamble = sdata->bss_conf.use_short_preamble;
304 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
307 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
308 erp = rate->flags & IEEE80211_RATE_ERP_G;
311 dur = ieee80211_frame_duration(local, 10, rate->bitrate,
312 erp, short_preamble);
313 /* Data frame duration */
314 dur += ieee80211_frame_duration(local, frame_len, rate->bitrate,
315 erp, short_preamble);
317 dur += ieee80211_frame_duration(local, 10, rate->bitrate,
318 erp, short_preamble);
320 return cpu_to_le16(dur);
322 EXPORT_SYMBOL(ieee80211_rts_duration);
324 __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw,
325 struct ieee80211_vif *vif,
327 const struct ieee80211_tx_info *frame_txctl)
329 struct ieee80211_local *local = hw_to_local(hw);
330 struct ieee80211_rate *rate;
331 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
335 struct ieee80211_supported_band *sband;
337 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
339 short_preamble = sdata->bss_conf.use_short_preamble;
341 rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
343 if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
344 erp = rate->flags & IEEE80211_RATE_ERP_G;
346 /* Data frame duration */
347 dur = ieee80211_frame_duration(local, frame_len, rate->bitrate,
348 erp, short_preamble);
349 if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) {
351 dur += ieee80211_frame_duration(local, 10, rate->bitrate,
352 erp, short_preamble);
355 return cpu_to_le16(dur);
357 EXPORT_SYMBOL(ieee80211_ctstoself_duration);
359 void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue)
361 struct ieee80211_local *local = hw_to_local(hw);
363 if (test_bit(queue, local->queues_pending)) {
364 tasklet_schedule(&local->tx_pending_tasklet);
366 if (ieee80211_is_multiqueue(local)) {
367 netif_wake_subqueue(local->mdev, queue);
370 netif_wake_queue(local->mdev);
374 EXPORT_SYMBOL(ieee80211_wake_queue);
376 void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue)
378 struct ieee80211_local *local = hw_to_local(hw);
380 if (ieee80211_is_multiqueue(local)) {
381 netif_stop_subqueue(local->mdev, queue);
384 netif_stop_queue(local->mdev);
387 EXPORT_SYMBOL(ieee80211_stop_queue);
389 void ieee80211_stop_queues(struct ieee80211_hw *hw)
393 for (i = 0; i < ieee80211_num_queues(hw); i++)
394 ieee80211_stop_queue(hw, i);
396 EXPORT_SYMBOL(ieee80211_stop_queues);
398 void ieee80211_wake_queues(struct ieee80211_hw *hw)
402 for (i = 0; i < hw->queues + hw->ampdu_queues; i++)
403 ieee80211_wake_queue(hw, i);
405 EXPORT_SYMBOL(ieee80211_wake_queues);
407 void ieee80211_iterate_active_interfaces(
408 struct ieee80211_hw *hw,
409 void (*iterator)(void *data, u8 *mac,
410 struct ieee80211_vif *vif),
413 struct ieee80211_local *local = hw_to_local(hw);
414 struct ieee80211_sub_if_data *sdata;
418 list_for_each_entry(sdata, &local->interfaces, list) {
419 switch (sdata->vif.type) {
420 case IEEE80211_IF_TYPE_INVALID:
421 case IEEE80211_IF_TYPE_MNTR:
422 case IEEE80211_IF_TYPE_VLAN:
424 case IEEE80211_IF_TYPE_AP:
425 case IEEE80211_IF_TYPE_STA:
426 case IEEE80211_IF_TYPE_IBSS:
427 case IEEE80211_IF_TYPE_WDS:
428 case IEEE80211_IF_TYPE_MESH_POINT:
431 if (sdata->dev == local->mdev)
433 if (netif_running(sdata->dev))
434 iterator(data, sdata->dev->dev_addr,
440 EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces);
442 void ieee80211_iterate_active_interfaces_atomic(
443 struct ieee80211_hw *hw,
444 void (*iterator)(void *data, u8 *mac,
445 struct ieee80211_vif *vif),
448 struct ieee80211_local *local = hw_to_local(hw);
449 struct ieee80211_sub_if_data *sdata;
453 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
454 switch (sdata->vif.type) {
455 case IEEE80211_IF_TYPE_INVALID:
456 case IEEE80211_IF_TYPE_MNTR:
457 case IEEE80211_IF_TYPE_VLAN:
459 case IEEE80211_IF_TYPE_AP:
460 case IEEE80211_IF_TYPE_STA:
461 case IEEE80211_IF_TYPE_IBSS:
462 case IEEE80211_IF_TYPE_WDS:
463 case IEEE80211_IF_TYPE_MESH_POINT:
466 if (sdata->dev == local->mdev)
468 if (netif_running(sdata->dev))
469 iterator(data, sdata->dev->dev_addr,
475 EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic);