Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 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> |
| 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> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 23 | #include <net/net_namespace.h> |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 24 | #include <net/cfg80211.h> |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 25 | #include <net/rtnetlink.h> |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 26 | |
| 27 | #include "ieee80211_i.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 28 | #include "rate.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 29 | #include "mesh.h" |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 30 | #include "wme.h" |
| 31 | |
| 32 | /* privid for wiphys to determine whether they belong to us or not */ |
| 33 | void *mac80211_wiphy_privid = &mac80211_wiphy_privid; |
| 34 | |
| 35 | /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */ |
| 36 | /* Ethernet-II snap header (RFC1042 for most EtherTypes) */ |
Senthil Balasubramanian | c97c23e | 2008-05-28 23:15:32 +0530 | [diff] [blame] | 37 | const unsigned char rfc1042_header[] __aligned(2) = |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 38 | { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 }; |
| 39 | |
| 40 | /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */ |
Senthil Balasubramanian | c97c23e | 2008-05-28 23:15:32 +0530 | [diff] [blame] | 41 | const unsigned char bridge_tunnel_header[] __aligned(2) = |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 42 | { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 }; |
| 43 | |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 44 | |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 45 | u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len, |
| 46 | enum ieee80211_if_types type) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 47 | { |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 48 | __le16 fc = hdr->frame_control; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 49 | |
Ron Rindjunsky | 98f0b0a | 2007-12-18 17:23:53 +0200 | [diff] [blame] | 50 | /* drop ACK/CTS frames and incorrect hdr len (ctrl) */ |
| 51 | if (len < 16) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 52 | return NULL; |
| 53 | |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 54 | if (ieee80211_is_data(fc)) { |
Ron Rindjunsky | 98f0b0a | 2007-12-18 17:23:53 +0200 | [diff] [blame] | 55 | if (len < 24) /* drop incorrect hdr len (data) */ |
| 56 | return NULL; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 57 | |
| 58 | if (ieee80211_has_a4(fc)) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 59 | return NULL; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 60 | if (ieee80211_has_tods(fc)) |
| 61 | return hdr->addr1; |
| 62 | if (ieee80211_has_fromds(fc)) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 63 | return hdr->addr2; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 64 | |
| 65 | return hdr->addr3; |
| 66 | } |
| 67 | |
| 68 | if (ieee80211_is_mgmt(fc)) { |
Ron Rindjunsky | 98f0b0a | 2007-12-18 17:23:53 +0200 | [diff] [blame] | 69 | if (len < 24) /* drop incorrect hdr len (mgmt) */ |
| 70 | return NULL; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 71 | return hdr->addr3; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | if (ieee80211_is_ctl(fc)) { |
| 75 | if(ieee80211_is_pspoll(fc)) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 76 | return hdr->addr1; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 77 | |
| 78 | if (ieee80211_is_back_req(fc)) { |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 79 | switch (type) { |
| 80 | case IEEE80211_IF_TYPE_STA: |
| 81 | return hdr->addr2; |
| 82 | case IEEE80211_IF_TYPE_AP: |
| 83 | case IEEE80211_IF_TYPE_VLAN: |
| 84 | return hdr->addr1; |
| 85 | default: |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 86 | break; /* fall through to the return */ |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 87 | } |
| 88 | } |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | return NULL; |
| 92 | } |
| 93 | |
| 94 | int ieee80211_get_hdrlen(u16 fc) |
| 95 | { |
| 96 | int hdrlen = 24; |
| 97 | |
| 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 */ |
| 102 | /* |
| 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. |
| 108 | */ |
| 109 | hdrlen += (fc & IEEE80211_STYPE_QOS_DATA) |
| 110 | >> (ilog2(IEEE80211_STYPE_QOS_DATA)-1); |
| 111 | break; |
| 112 | case IEEE80211_FTYPE_CTL: |
| 113 | /* |
| 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) |
| 121 | */ |
| 122 | if ((fc & 0xE0) == 0xC0) |
| 123 | hdrlen = 10; |
| 124 | else |
| 125 | hdrlen = 16; |
| 126 | break; |
| 127 | } |
| 128 | |
| 129 | return hdrlen; |
| 130 | } |
| 131 | EXPORT_SYMBOL(ieee80211_get_hdrlen); |
| 132 | |
Harvey Harrison | 6693be7 | 2008-06-11 14:21:57 -0700 | [diff] [blame] | 133 | unsigned int ieee80211_hdrlen(__le16 fc) |
| 134 | { |
| 135 | unsigned int hdrlen = 24; |
| 136 | |
| 137 | if (ieee80211_is_data(fc)) { |
| 138 | if (ieee80211_has_a4(fc)) |
| 139 | hdrlen = 30; |
| 140 | if (ieee80211_is_data_qos(fc)) |
| 141 | hdrlen += IEEE80211_QOS_CTL_LEN; |
| 142 | goto out; |
| 143 | } |
| 144 | |
| 145 | if (ieee80211_is_ctl(fc)) { |
| 146 | /* |
| 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) |
| 154 | */ |
| 155 | if ((fc & cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0)) |
| 156 | hdrlen = 10; |
| 157 | else |
| 158 | hdrlen = 16; |
| 159 | } |
| 160 | out: |
| 161 | return hdrlen; |
| 162 | } |
| 163 | EXPORT_SYMBOL(ieee80211_hdrlen); |
| 164 | |
Harvey Harrison | c9c6950 | 2008-06-11 14:21:57 -0700 | [diff] [blame] | 165 | unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 166 | { |
Harvey Harrison | c9c6950 | 2008-06-11 14:21:57 -0700 | [diff] [blame] | 167 | const struct ieee80211_hdr *hdr = (const struct ieee80211_hdr *)skb->data; |
| 168 | unsigned int hdrlen; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 169 | |
| 170 | if (unlikely(skb->len < 10)) |
| 171 | return 0; |
Harvey Harrison | c9c6950 | 2008-06-11 14:21:57 -0700 | [diff] [blame] | 172 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 173 | if (unlikely(hdrlen > skb->len)) |
| 174 | return 0; |
| 175 | return hdrlen; |
| 176 | } |
| 177 | EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb); |
| 178 | |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 179 | int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr) |
| 180 | { |
| 181 | int ae = meshhdr->flags & IEEE80211S_FLAGS_AE; |
| 182 | /* 7.1.3.5a.2 */ |
| 183 | switch (ae) { |
| 184 | case 0: |
Luis Carlos Cobo | ef26925 | 2008-05-05 12:02:35 -0700 | [diff] [blame] | 185 | return 6; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 186 | case 1: |
Luis Carlos Cobo | ef26925 | 2008-05-05 12:02:35 -0700 | [diff] [blame] | 187 | return 12; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 188 | case 2: |
Luis Carlos Cobo | ef26925 | 2008-05-05 12:02:35 -0700 | [diff] [blame] | 189 | return 18; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 190 | case 3: |
Luis Carlos Cobo | ef26925 | 2008-05-05 12:02:35 -0700 | [diff] [blame] | 191 | return 24; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 192 | default: |
Luis Carlos Cobo | ef26925 | 2008-05-05 12:02:35 -0700 | [diff] [blame] | 193 | return 6; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 194 | } |
| 195 | } |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 196 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 197 | void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 198 | { |
| 199 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data; |
| 200 | |
| 201 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 202 | if (tx->extra_frag) { |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 203 | struct ieee80211_hdr *fhdr; |
| 204 | int i; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 205 | for (i = 0; i < tx->num_extra_frag; i++) { |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 206 | fhdr = (struct ieee80211_hdr *) |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 207 | tx->extra_frag[i]->data; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 208 | fhdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
| 209 | } |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | int ieee80211_frame_duration(struct ieee80211_local *local, size_t len, |
| 214 | int rate, int erp, int short_preamble) |
| 215 | { |
| 216 | int dur; |
| 217 | |
| 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 |
| 221 | * also include SIFS. |
| 222 | * |
| 223 | * rate is in 100 kbps, so divident is multiplied by 10 in the |
| 224 | * DIV_ROUND_UP() operations. |
| 225 | */ |
| 226 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 227 | if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ || erp) { |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 228 | /* |
| 229 | * OFDM: |
| 230 | * |
| 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 |
| 235 | * |
| 236 | * T_SYM = 4 usec |
| 237 | * 802.11a - 17.5.2: aSIFSTime = 16 usec |
| 238 | * 802.11g - 19.8.4: aSIFSTime = 10 usec + |
| 239 | * signal ext = 6 usec |
| 240 | */ |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 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 */ |
| 246 | } else { |
| 247 | /* |
| 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. |
| 251 | * |
| 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 |
| 256 | */ |
| 257 | dur = 10; /* aSIFSTime = 10 usec */ |
| 258 | dur += short_preamble ? (72 + 24) : (144 + 48); |
| 259 | |
| 260 | dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate); |
| 261 | } |
| 262 | |
| 263 | return dur; |
| 264 | } |
| 265 | |
| 266 | /* Exported duration function for driver use */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 267 | __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw, |
| 268 | struct ieee80211_vif *vif, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 269 | size_t frame_len, |
| 270 | struct ieee80211_rate *rate) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 271 | { |
| 272 | struct ieee80211_local *local = hw_to_local(hw); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 273 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 274 | u16 dur; |
| 275 | int erp; |
| 276 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 277 | erp = 0; |
| 278 | if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 279 | erp = rate->flags & IEEE80211_RATE_ERP_G; |
| 280 | |
| 281 | dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, erp, |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 282 | sdata->bss_conf.use_short_preamble); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 283 | |
| 284 | return cpu_to_le16(dur); |
| 285 | } |
| 286 | EXPORT_SYMBOL(ieee80211_generic_frame_duration); |
| 287 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 288 | __le16 ieee80211_rts_duration(struct ieee80211_hw *hw, |
| 289 | struct ieee80211_vif *vif, size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 290 | const struct ieee80211_tx_info *frame_txctl) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 291 | { |
| 292 | struct ieee80211_local *local = hw_to_local(hw); |
| 293 | struct ieee80211_rate *rate; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 294 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 295 | bool short_preamble; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 296 | int erp; |
| 297 | u16 dur; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 298 | struct ieee80211_supported_band *sband; |
| 299 | |
| 300 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 301 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 302 | short_preamble = sdata->bss_conf.use_short_preamble; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 303 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 304 | rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 305 | |
| 306 | erp = 0; |
| 307 | if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 308 | erp = rate->flags & IEEE80211_RATE_ERP_G; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 309 | |
| 310 | /* CTS duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 311 | dur = ieee80211_frame_duration(local, 10, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 312 | erp, short_preamble); |
| 313 | /* Data frame duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 314 | dur += ieee80211_frame_duration(local, frame_len, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 315 | erp, short_preamble); |
| 316 | /* ACK duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 317 | dur += ieee80211_frame_duration(local, 10, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 318 | erp, short_preamble); |
| 319 | |
| 320 | return cpu_to_le16(dur); |
| 321 | } |
| 322 | EXPORT_SYMBOL(ieee80211_rts_duration); |
| 323 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 324 | __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, |
| 325 | struct ieee80211_vif *vif, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 326 | size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 327 | const struct ieee80211_tx_info *frame_txctl) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 328 | { |
| 329 | struct ieee80211_local *local = hw_to_local(hw); |
| 330 | struct ieee80211_rate *rate; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 331 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 332 | bool short_preamble; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 333 | int erp; |
| 334 | u16 dur; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 335 | struct ieee80211_supported_band *sband; |
| 336 | |
| 337 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 338 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 339 | short_preamble = sdata->bss_conf.use_short_preamble; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 340 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 341 | rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 342 | erp = 0; |
| 343 | if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 344 | erp = rate->flags & IEEE80211_RATE_ERP_G; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 345 | |
| 346 | /* Data frame duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 347 | dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 348 | erp, short_preamble); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 349 | if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) { |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 350 | /* ACK duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 351 | dur += ieee80211_frame_duration(local, 10, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 352 | erp, short_preamble); |
| 353 | } |
| 354 | |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 355 | return cpu_to_le16(dur); |
| 356 | } |
| 357 | EXPORT_SYMBOL(ieee80211_ctstoself_duration); |
| 358 | |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 359 | void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue) |
| 360 | { |
| 361 | struct ieee80211_local *local = hw_to_local(hw); |
| 362 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 363 | if (test_bit(queue, local->queues_pending)) { |
| 364 | tasklet_schedule(&local->tx_pending_tasklet); |
| 365 | } else { |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 366 | netif_wake_subqueue(local->mdev, queue); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | EXPORT_SYMBOL(ieee80211_wake_queue); |
| 370 | |
| 371 | void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue) |
| 372 | { |
| 373 | struct ieee80211_local *local = hw_to_local(hw); |
| 374 | |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 375 | netif_stop_subqueue(local->mdev, queue); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 376 | } |
| 377 | EXPORT_SYMBOL(ieee80211_stop_queue); |
| 378 | |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 379 | void ieee80211_stop_queues(struct ieee80211_hw *hw) |
| 380 | { |
| 381 | int i; |
| 382 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 383 | for (i = 0; i < ieee80211_num_queues(hw); i++) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 384 | ieee80211_stop_queue(hw, i); |
| 385 | } |
| 386 | EXPORT_SYMBOL(ieee80211_stop_queues); |
| 387 | |
| 388 | void ieee80211_wake_queues(struct ieee80211_hw *hw) |
| 389 | { |
| 390 | int i; |
| 391 | |
Johannes Berg | c468047 | 2008-05-15 12:55:25 +0200 | [diff] [blame] | 392 | for (i = 0; i < hw->queues + hw->ampdu_queues; i++) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 393 | ieee80211_wake_queue(hw, i); |
| 394 | } |
| 395 | EXPORT_SYMBOL(ieee80211_wake_queues); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 396 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 397 | void ieee80211_iterate_active_interfaces( |
| 398 | struct ieee80211_hw *hw, |
| 399 | void (*iterator)(void *data, u8 *mac, |
| 400 | struct ieee80211_vif *vif), |
| 401 | void *data) |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 402 | { |
| 403 | struct ieee80211_local *local = hw_to_local(hw); |
| 404 | struct ieee80211_sub_if_data *sdata; |
| 405 | |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 406 | rtnl_lock(); |
| 407 | |
| 408 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 409 | switch (sdata->vif.type) { |
| 410 | case IEEE80211_IF_TYPE_INVALID: |
| 411 | case IEEE80211_IF_TYPE_MNTR: |
| 412 | case IEEE80211_IF_TYPE_VLAN: |
| 413 | continue; |
| 414 | case IEEE80211_IF_TYPE_AP: |
| 415 | case IEEE80211_IF_TYPE_STA: |
| 416 | case IEEE80211_IF_TYPE_IBSS: |
| 417 | case IEEE80211_IF_TYPE_WDS: |
| 418 | case IEEE80211_IF_TYPE_MESH_POINT: |
| 419 | break; |
| 420 | } |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 421 | if (netif_running(sdata->dev)) |
| 422 | iterator(data, sdata->dev->dev_addr, |
| 423 | &sdata->vif); |
| 424 | } |
| 425 | |
| 426 | rtnl_unlock(); |
| 427 | } |
| 428 | EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces); |
| 429 | |
| 430 | void ieee80211_iterate_active_interfaces_atomic( |
| 431 | struct ieee80211_hw *hw, |
| 432 | void (*iterator)(void *data, u8 *mac, |
| 433 | struct ieee80211_vif *vif), |
| 434 | void *data) |
| 435 | { |
| 436 | struct ieee80211_local *local = hw_to_local(hw); |
| 437 | struct ieee80211_sub_if_data *sdata; |
| 438 | |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 439 | rcu_read_lock(); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 440 | |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 441 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 442 | switch (sdata->vif.type) { |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 443 | case IEEE80211_IF_TYPE_INVALID: |
| 444 | case IEEE80211_IF_TYPE_MNTR: |
| 445 | case IEEE80211_IF_TYPE_VLAN: |
| 446 | continue; |
| 447 | case IEEE80211_IF_TYPE_AP: |
| 448 | case IEEE80211_IF_TYPE_STA: |
| 449 | case IEEE80211_IF_TYPE_IBSS: |
| 450 | case IEEE80211_IF_TYPE_WDS: |
Johannes Berg | 6032f93 | 2008-02-23 15:17:07 +0100 | [diff] [blame] | 451 | case IEEE80211_IF_TYPE_MESH_POINT: |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 452 | break; |
| 453 | } |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 454 | if (netif_running(sdata->dev)) |
| 455 | iterator(data, sdata->dev->dev_addr, |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 456 | &sdata->vif); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 457 | } |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 458 | |
| 459 | rcu_read_unlock(); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 460 | } |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 461 | EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic); |