Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +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 | * |
| 12 | * Transmit and frame generation functions. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/slab.h> |
| 17 | #include <linux/skbuff.h> |
| 18 | #include <linux/etherdevice.h> |
| 19 | #include <linux/bitmap.h> |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 20 | #include <linux/rcupdate.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 21 | #include <net/net_namespace.h> |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 22 | #include <net/ieee80211_radiotap.h> |
| 23 | #include <net/cfg80211.h> |
| 24 | #include <net/mac80211.h> |
| 25 | #include <asm/unaligned.h> |
| 26 | |
| 27 | #include "ieee80211_i.h" |
| 28 | #include "ieee80211_led.h" |
| 29 | #include "wep.h" |
| 30 | #include "wpa.h" |
| 31 | #include "wme.h" |
| 32 | #include "ieee80211_rate.h" |
| 33 | |
| 34 | #define IEEE80211_TX_OK 0 |
| 35 | #define IEEE80211_TX_AGAIN 1 |
| 36 | #define IEEE80211_TX_FRAG_AGAIN 2 |
| 37 | |
| 38 | /* misc utils */ |
| 39 | |
| 40 | static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata, |
| 41 | struct ieee80211_hdr *hdr) |
| 42 | { |
| 43 | /* Set the sequence number for this frame. */ |
| 44 | hdr->seq_ctrl = cpu_to_le16(sdata->sequence); |
| 45 | |
| 46 | /* Increase the sequence number. */ |
| 47 | sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ; |
| 48 | } |
| 49 | |
| 50 | #ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP |
| 51 | static void ieee80211_dump_frame(const char *ifname, const char *title, |
| 52 | const struct sk_buff *skb) |
| 53 | { |
| 54 | const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 55 | u16 fc; |
| 56 | int hdrlen; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 57 | DECLARE_MAC_BUF(mac); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 58 | |
| 59 | printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len); |
| 60 | if (skb->len < 4) { |
| 61 | printk("\n"); |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | fc = le16_to_cpu(hdr->frame_control); |
| 66 | hdrlen = ieee80211_get_hdrlen(fc); |
| 67 | if (hdrlen > skb->len) |
| 68 | hdrlen = skb->len; |
| 69 | if (hdrlen >= 4) |
| 70 | printk(" FC=0x%04x DUR=0x%04x", |
| 71 | fc, le16_to_cpu(hdr->duration_id)); |
| 72 | if (hdrlen >= 10) |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 73 | printk(" A1=%s", print_mac(mac, hdr->addr1)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 74 | if (hdrlen >= 16) |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 75 | printk(" A2=%s", print_mac(mac, hdr->addr2)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 76 | if (hdrlen >= 24) |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 77 | printk(" A3=%s", print_mac(mac, hdr->addr3)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 78 | if (hdrlen >= 30) |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 79 | printk(" A4=%s", print_mac(mac, hdr->addr4)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 80 | printk("\n"); |
| 81 | } |
| 82 | #else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */ |
| 83 | static inline void ieee80211_dump_frame(const char *ifname, const char *title, |
| 84 | struct sk_buff *skb) |
| 85 | { |
| 86 | } |
| 87 | #endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */ |
| 88 | |
| 89 | static u16 ieee80211_duration(struct ieee80211_txrx_data *tx, int group_addr, |
| 90 | int next_frag_len) |
| 91 | { |
| 92 | int rate, mrate, erp, dur, i; |
| 93 | struct ieee80211_rate *txrate = tx->u.tx.rate; |
| 94 | struct ieee80211_local *local = tx->local; |
| 95 | struct ieee80211_hw_mode *mode = tx->u.tx.mode; |
| 96 | |
| 97 | erp = txrate->flags & IEEE80211_RATE_ERP; |
| 98 | |
| 99 | /* |
| 100 | * data and mgmt (except PS Poll): |
| 101 | * - during CFP: 32768 |
| 102 | * - during contention period: |
| 103 | * if addr1 is group address: 0 |
| 104 | * if more fragments = 0 and addr1 is individual address: time to |
| 105 | * transmit one ACK plus SIFS |
| 106 | * if more fragments = 1 and addr1 is individual address: time to |
| 107 | * transmit next fragment plus 2 x ACK plus 3 x SIFS |
| 108 | * |
| 109 | * IEEE 802.11, 9.6: |
| 110 | * - control response frame (CTS or ACK) shall be transmitted using the |
| 111 | * same rate as the immediately previous frame in the frame exchange |
| 112 | * sequence, if this rate belongs to the PHY mandatory rates, or else |
| 113 | * at the highest possible rate belonging to the PHY rates in the |
| 114 | * BSSBasicRateSet |
| 115 | */ |
| 116 | |
| 117 | if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) { |
| 118 | /* TODO: These control frames are not currently sent by |
| 119 | * 80211.o, but should they be implemented, this function |
| 120 | * needs to be updated to support duration field calculation. |
| 121 | * |
| 122 | * RTS: time needed to transmit pending data/mgmt frame plus |
| 123 | * one CTS frame plus one ACK frame plus 3 x SIFS |
| 124 | * CTS: duration of immediately previous RTS minus time |
| 125 | * required to transmit CTS and its SIFS |
| 126 | * ACK: 0 if immediately previous directed data/mgmt had |
| 127 | * more=0, with more=1 duration in ACK frame is duration |
| 128 | * from previous frame minus time needed to transmit ACK |
| 129 | * and its SIFS |
| 130 | * PS Poll: BIT(15) | BIT(14) | aid |
| 131 | */ |
| 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | /* data/mgmt */ |
| 136 | if (0 /* FIX: data/mgmt during CFP */) |
| 137 | return 32768; |
| 138 | |
| 139 | if (group_addr) /* Group address as the destination - no ACK */ |
| 140 | return 0; |
| 141 | |
| 142 | /* Individual destination address: |
| 143 | * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes) |
| 144 | * CTS and ACK frames shall be transmitted using the highest rate in |
| 145 | * basic rate set that is less than or equal to the rate of the |
| 146 | * immediately previous frame and that is using the same modulation |
| 147 | * (CCK or OFDM). If no basic rate set matches with these requirements, |
| 148 | * the highest mandatory rate of the PHY that is less than or equal to |
| 149 | * the rate of the previous frame is used. |
| 150 | * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps |
| 151 | */ |
| 152 | rate = -1; |
| 153 | mrate = 10; /* use 1 Mbps if everything fails */ |
| 154 | for (i = 0; i < mode->num_rates; i++) { |
| 155 | struct ieee80211_rate *r = &mode->rates[i]; |
| 156 | if (r->rate > txrate->rate) |
| 157 | break; |
| 158 | |
| 159 | if (IEEE80211_RATE_MODULATION(txrate->flags) != |
| 160 | IEEE80211_RATE_MODULATION(r->flags)) |
| 161 | continue; |
| 162 | |
| 163 | if (r->flags & IEEE80211_RATE_BASIC) |
| 164 | rate = r->rate; |
| 165 | else if (r->flags & IEEE80211_RATE_MANDATORY) |
| 166 | mrate = r->rate; |
| 167 | } |
| 168 | if (rate == -1) { |
| 169 | /* No matching basic rate found; use highest suitable mandatory |
| 170 | * PHY rate */ |
| 171 | rate = mrate; |
| 172 | } |
| 173 | |
| 174 | /* Time needed to transmit ACK |
| 175 | * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up |
| 176 | * to closest integer */ |
| 177 | |
| 178 | dur = ieee80211_frame_duration(local, 10, rate, erp, |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 179 | tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 180 | |
| 181 | if (next_frag_len) { |
| 182 | /* Frame is fragmented: duration increases with time needed to |
| 183 | * transmit next fragment plus ACK and 2 x SIFS. */ |
| 184 | dur *= 2; /* ACK + SIFS */ |
| 185 | /* next fragment */ |
| 186 | dur += ieee80211_frame_duration(local, next_frag_len, |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 187 | txrate->rate, erp, |
| 188 | tx->sdata->flags & |
| 189 | IEEE80211_SDATA_SHORT_PREAMBLE); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | return dur; |
| 193 | } |
| 194 | |
| 195 | static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local, |
| 196 | int queue) |
| 197 | { |
| 198 | return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]); |
| 199 | } |
| 200 | |
| 201 | static inline int __ieee80211_queue_pending(const struct ieee80211_local *local, |
| 202 | int queue) |
| 203 | { |
| 204 | return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]); |
| 205 | } |
| 206 | |
| 207 | static int inline is_ieee80211_device(struct net_device *dev, |
| 208 | struct net_device *master) |
| 209 | { |
| 210 | return (wdev_priv(dev->ieee80211_ptr) == |
| 211 | wdev_priv(master->ieee80211_ptr)); |
| 212 | } |
| 213 | |
| 214 | /* tx handlers */ |
| 215 | |
| 216 | static ieee80211_txrx_result |
| 217 | ieee80211_tx_h_check_assoc(struct ieee80211_txrx_data *tx) |
| 218 | { |
| 219 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 220 | struct sk_buff *skb = tx->skb; |
| 221 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 222 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 223 | u32 sta_flags; |
| 224 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 225 | if (unlikely(tx->flags & IEEE80211_TXRXD_TX_INJECTED)) |
| 226 | return TXRX_CONTINUE; |
| 227 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 228 | if (unlikely(tx->local->sta_sw_scanning) && |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 229 | ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT || |
| 230 | (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ)) |
| 231 | return TXRX_DROP; |
| 232 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 233 | if (tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 234 | return TXRX_CONTINUE; |
| 235 | |
| 236 | sta_flags = tx->sta ? tx->sta->flags : 0; |
| 237 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 238 | if (likely(tx->flags & IEEE80211_TXRXD_TXUNICAST)) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 239 | if (unlikely(!(sta_flags & WLAN_STA_ASSOC) && |
| 240 | tx->sdata->type != IEEE80211_IF_TYPE_IBSS && |
| 241 | (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) { |
| 242 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 243 | DECLARE_MAC_BUF(mac); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 244 | printk(KERN_DEBUG "%s: dropped data frame to not " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 245 | "associated station %s\n", |
| 246 | tx->dev->name, print_mac(mac, hdr->addr1)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 247 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 248 | I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc); |
| 249 | return TXRX_DROP; |
| 250 | } |
| 251 | } else { |
| 252 | if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA && |
| 253 | tx->local->num_sta == 0 && |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 254 | tx->sdata->type != IEEE80211_IF_TYPE_IBSS)) { |
| 255 | /* |
| 256 | * No associated STAs - no need to send multicast |
| 257 | * frames. |
| 258 | */ |
| 259 | return TXRX_DROP; |
| 260 | } |
| 261 | return TXRX_CONTINUE; |
| 262 | } |
| 263 | |
Johannes Berg | f9d540e | 2007-09-28 14:02:09 +0200 | [diff] [blame] | 264 | if (unlikely(/* !injected && */ tx->sdata->ieee802_1x && |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 265 | !(sta_flags & WLAN_STA_AUTHORIZED))) { |
| 266 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 267 | DECLARE_MAC_BUF(mac); |
| 268 | printk(KERN_DEBUG "%s: dropped frame to %s" |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 269 | " (unauthorized port)\n", tx->dev->name, |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 270 | print_mac(mac, hdr->addr1)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 271 | #endif |
| 272 | I802_DEBUG_INC(tx->local->tx_handlers_drop_unauth_port); |
| 273 | return TXRX_DROP; |
| 274 | } |
| 275 | |
| 276 | return TXRX_CONTINUE; |
| 277 | } |
| 278 | |
| 279 | static ieee80211_txrx_result |
| 280 | ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx) |
| 281 | { |
| 282 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data; |
| 283 | |
| 284 | if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24) |
| 285 | ieee80211_include_sequence(tx->sdata, hdr); |
| 286 | |
| 287 | return TXRX_CONTINUE; |
| 288 | } |
| 289 | |
| 290 | /* This function is called whenever the AP is about to exceed the maximum limit |
| 291 | * of buffered frames for power saving STAs. This situation should not really |
| 292 | * happen often during normal operation, so dropping the oldest buffered packet |
| 293 | * from each queue should be OK to make some room for new frames. */ |
| 294 | static void purge_old_ps_buffers(struct ieee80211_local *local) |
| 295 | { |
| 296 | int total = 0, purged = 0; |
| 297 | struct sk_buff *skb; |
| 298 | struct ieee80211_sub_if_data *sdata; |
| 299 | struct sta_info *sta; |
| 300 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 301 | /* |
| 302 | * virtual interfaces are protected by RCU |
| 303 | */ |
| 304 | rcu_read_lock(); |
| 305 | |
| 306 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 307 | struct ieee80211_if_ap *ap; |
| 308 | if (sdata->dev == local->mdev || |
| 309 | sdata->type != IEEE80211_IF_TYPE_AP) |
| 310 | continue; |
| 311 | ap = &sdata->u.ap; |
| 312 | skb = skb_dequeue(&ap->ps_bc_buf); |
| 313 | if (skb) { |
| 314 | purged++; |
| 315 | dev_kfree_skb(skb); |
| 316 | } |
| 317 | total += skb_queue_len(&ap->ps_bc_buf); |
| 318 | } |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 319 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 320 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 321 | read_lock_bh(&local->sta_lock); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 322 | list_for_each_entry(sta, &local->sta_list, list) { |
| 323 | skb = skb_dequeue(&sta->ps_tx_buf); |
| 324 | if (skb) { |
| 325 | purged++; |
| 326 | dev_kfree_skb(skb); |
| 327 | } |
| 328 | total += skb_queue_len(&sta->ps_tx_buf); |
| 329 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 330 | read_unlock_bh(&local->sta_lock); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 331 | |
| 332 | local->total_ps_buffered = total; |
| 333 | printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n", |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 334 | wiphy_name(local->hw.wiphy), purged); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | static inline ieee80211_txrx_result |
| 338 | ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx) |
| 339 | { |
| 340 | /* broadcast/multicast frame */ |
| 341 | /* If any of the associated stations is in power save mode, |
| 342 | * the frame is buffered to be sent after DTIM beacon frame */ |
| 343 | if ((tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) && |
| 344 | tx->sdata->type != IEEE80211_IF_TYPE_WDS && |
| 345 | tx->sdata->bss && atomic_read(&tx->sdata->bss->num_sta_ps) && |
| 346 | !(tx->fc & IEEE80211_FCTL_ORDER)) { |
| 347 | if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER) |
| 348 | purge_old_ps_buffers(tx->local); |
| 349 | if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >= |
| 350 | AP_MAX_BC_BUFFER) { |
| 351 | if (net_ratelimit()) { |
| 352 | printk(KERN_DEBUG "%s: BC TX buffer full - " |
| 353 | "dropping the oldest frame\n", |
| 354 | tx->dev->name); |
| 355 | } |
| 356 | dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf)); |
| 357 | } else |
| 358 | tx->local->total_ps_buffered++; |
| 359 | skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb); |
| 360 | return TXRX_QUEUED; |
| 361 | } |
| 362 | |
| 363 | return TXRX_CONTINUE; |
| 364 | } |
| 365 | |
| 366 | static inline ieee80211_txrx_result |
| 367 | ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx) |
| 368 | { |
| 369 | struct sta_info *sta = tx->sta; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 370 | DECLARE_MAC_BUF(mac); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 371 | |
| 372 | if (unlikely(!sta || |
| 373 | ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT && |
| 374 | (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP))) |
| 375 | return TXRX_CONTINUE; |
| 376 | |
| 377 | if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) { |
| 378 | struct ieee80211_tx_packet_data *pkt_data; |
| 379 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 380 | printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries " |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 381 | "before %d)\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 382 | print_mac(mac, sta->addr), sta->aid, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 383 | skb_queue_len(&sta->ps_tx_buf)); |
| 384 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 385 | sta->flags |= WLAN_STA_TIM; |
| 386 | if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER) |
| 387 | purge_old_ps_buffers(tx->local); |
| 388 | if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) { |
| 389 | struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf); |
| 390 | if (net_ratelimit()) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 391 | printk(KERN_DEBUG "%s: STA %s TX " |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 392 | "buffer full - dropping oldest frame\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 393 | tx->dev->name, print_mac(mac, sta->addr)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 394 | } |
| 395 | dev_kfree_skb(old); |
| 396 | } else |
| 397 | tx->local->total_ps_buffered++; |
| 398 | /* Queue frame to be sent after STA sends an PS Poll frame */ |
| 399 | if (skb_queue_empty(&sta->ps_tx_buf)) { |
| 400 | if (tx->local->ops->set_tim) |
| 401 | tx->local->ops->set_tim(local_to_hw(tx->local), |
| 402 | sta->aid, 1); |
| 403 | if (tx->sdata->bss) |
| 404 | bss_tim_set(tx->local, tx->sdata->bss, sta->aid); |
| 405 | } |
| 406 | pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb; |
| 407 | pkt_data->jiffies = jiffies; |
| 408 | skb_queue_tail(&sta->ps_tx_buf, tx->skb); |
| 409 | return TXRX_QUEUED; |
| 410 | } |
| 411 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 412 | else if (unlikely(sta->flags & WLAN_STA_PS)) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 413 | printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll " |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 414 | "set -> send frame\n", tx->dev->name, |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 415 | print_mac(mac, sta->addr)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 416 | } |
| 417 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 418 | sta->pspoll = 0; |
| 419 | |
| 420 | return TXRX_CONTINUE; |
| 421 | } |
| 422 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 423 | static ieee80211_txrx_result |
| 424 | ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx) |
| 425 | { |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 426 | if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 427 | return TXRX_CONTINUE; |
| 428 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 429 | if (tx->flags & IEEE80211_TXRXD_TXUNICAST) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 430 | return ieee80211_tx_h_unicast_ps_buf(tx); |
| 431 | else |
| 432 | return ieee80211_tx_h_multicast_ps_buf(tx); |
| 433 | } |
| 434 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 435 | static ieee80211_txrx_result |
| 436 | ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx) |
| 437 | { |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 438 | struct ieee80211_key *key; |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame^] | 439 | const struct ieee80211_hdr *hdr; |
| 440 | u16 fc; |
| 441 | |
| 442 | hdr = (const struct ieee80211_hdr *) tx->skb->data; |
| 443 | fc = le16_to_cpu(hdr->frame_control); |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 444 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 445 | if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT)) |
| 446 | tx->key = NULL; |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 447 | else if (tx->sta && (key = rcu_dereference(tx->sta->key))) |
| 448 | tx->key = key; |
| 449 | else if ((key = rcu_dereference(tx->sdata->default_key))) |
| 450 | tx->key = key; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 451 | else if (tx->sdata->drop_unencrypted && |
Ron Rindjunsky | 76ee65b | 2007-11-22 19:49:12 +0200 | [diff] [blame^] | 452 | !(tx->sdata->eapol && |
| 453 | ieee80211_is_eapol(tx->skb, ieee80211_get_hdrlen(fc)))) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 454 | I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted); |
| 455 | return TXRX_DROP; |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 456 | } else { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 457 | tx->key = NULL; |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 458 | tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT; |
| 459 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 460 | |
| 461 | if (tx->key) { |
| 462 | tx->key->tx_rx_count++; |
Johannes Berg | 011bfcc | 2007-09-17 01:29:25 -0400 | [diff] [blame] | 463 | /* TODO: add threshold stuff again */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | return TXRX_CONTINUE; |
| 467 | } |
| 468 | |
| 469 | static ieee80211_txrx_result |
| 470 | ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx) |
| 471 | { |
| 472 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data; |
| 473 | size_t hdrlen, per_fragm, num_fragm, payload_len, left; |
| 474 | struct sk_buff **frags, *first, *frag; |
| 475 | int i; |
| 476 | u16 seq; |
| 477 | u8 *pos; |
| 478 | int frag_threshold = tx->local->fragmentation_threshold; |
| 479 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 480 | if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 481 | return TXRX_CONTINUE; |
| 482 | |
| 483 | first = tx->skb; |
| 484 | |
| 485 | hdrlen = ieee80211_get_hdrlen(tx->fc); |
| 486 | payload_len = first->len - hdrlen; |
| 487 | per_fragm = frag_threshold - hdrlen - FCS_LEN; |
Ilpo Järvinen | 172589c | 2007-08-28 15:50:33 -0700 | [diff] [blame] | 488 | num_fragm = DIV_ROUND_UP(payload_len, per_fragm); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 489 | |
| 490 | frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC); |
| 491 | if (!frags) |
| 492 | goto fail; |
| 493 | |
| 494 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS); |
| 495 | seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ; |
| 496 | pos = first->data + hdrlen + per_fragm; |
| 497 | left = payload_len - per_fragm; |
| 498 | for (i = 0; i < num_fragm - 1; i++) { |
| 499 | struct ieee80211_hdr *fhdr; |
| 500 | size_t copylen; |
| 501 | |
| 502 | if (left <= 0) |
| 503 | goto fail; |
| 504 | |
| 505 | /* reserve enough extra head and tail room for possible |
| 506 | * encryption */ |
| 507 | frag = frags[i] = |
| 508 | dev_alloc_skb(tx->local->tx_headroom + |
| 509 | frag_threshold + |
| 510 | IEEE80211_ENCRYPT_HEADROOM + |
| 511 | IEEE80211_ENCRYPT_TAILROOM); |
| 512 | if (!frag) |
| 513 | goto fail; |
| 514 | /* Make sure that all fragments use the same priority so |
| 515 | * that they end up using the same TX queue */ |
| 516 | frag->priority = first->priority; |
| 517 | skb_reserve(frag, tx->local->tx_headroom + |
| 518 | IEEE80211_ENCRYPT_HEADROOM); |
| 519 | fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen); |
| 520 | memcpy(fhdr, first->data, hdrlen); |
| 521 | if (i == num_fragm - 2) |
| 522 | fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS); |
| 523 | fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG)); |
| 524 | copylen = left > per_fragm ? per_fragm : left; |
| 525 | memcpy(skb_put(frag, copylen), pos, copylen); |
| 526 | |
| 527 | pos += copylen; |
| 528 | left -= copylen; |
| 529 | } |
| 530 | skb_trim(first, hdrlen + per_fragm); |
| 531 | |
| 532 | tx->u.tx.num_extra_frag = num_fragm - 1; |
| 533 | tx->u.tx.extra_frag = frags; |
| 534 | |
| 535 | return TXRX_CONTINUE; |
| 536 | |
| 537 | fail: |
| 538 | printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name); |
| 539 | if (frags) { |
| 540 | for (i = 0; i < num_fragm - 1; i++) |
| 541 | if (frags[i]) |
| 542 | dev_kfree_skb(frags[i]); |
| 543 | kfree(frags); |
| 544 | } |
| 545 | I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment); |
| 546 | return TXRX_DROP; |
| 547 | } |
| 548 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 549 | static ieee80211_txrx_result |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 550 | ieee80211_tx_h_encrypt(struct ieee80211_txrx_data *tx) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 551 | { |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 552 | if (!tx->key) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 553 | return TXRX_CONTINUE; |
| 554 | |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 555 | switch (tx->key->conf.alg) { |
| 556 | case ALG_WEP: |
| 557 | return ieee80211_crypto_wep_encrypt(tx); |
| 558 | case ALG_TKIP: |
| 559 | return ieee80211_crypto_tkip_encrypt(tx); |
| 560 | case ALG_CCMP: |
| 561 | return ieee80211_crypto_ccmp_encrypt(tx); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 562 | } |
| 563 | |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 564 | /* not reached */ |
| 565 | WARN_ON(1); |
| 566 | return TXRX_DROP; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | static ieee80211_txrx_result |
| 570 | ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx) |
| 571 | { |
| 572 | struct rate_control_extra extra; |
| 573 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 574 | if (likely(!tx->u.tx.rate)) { |
| 575 | memset(&extra, 0, sizeof(extra)); |
| 576 | extra.mode = tx->u.tx.mode; |
| 577 | extra.ethertype = tx->ethertype; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 578 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 579 | tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev, |
| 580 | tx->skb, &extra); |
| 581 | if (unlikely(extra.probe != NULL)) { |
| 582 | tx->u.tx.control->flags |= |
| 583 | IEEE80211_TXCTL_RATE_CTRL_PROBE; |
| 584 | tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG; |
| 585 | tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val; |
| 586 | tx->u.tx.rate = extra.probe; |
| 587 | } else |
| 588 | tx->u.tx.control->alt_retry_rate = -1; |
| 589 | |
| 590 | if (!tx->u.tx.rate) |
| 591 | return TXRX_DROP; |
| 592 | } else |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 593 | tx->u.tx.control->alt_retry_rate = -1; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 594 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 595 | if (tx->u.tx.mode->mode == MODE_IEEE80211G && |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 596 | (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) && |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 597 | (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 598 | tx->u.tx.last_frag_rate = tx->u.tx.rate; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 599 | if (extra.probe) |
| 600 | tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG; |
| 601 | else |
| 602 | tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 603 | tx->u.tx.rate = extra.nonerp; |
| 604 | tx->u.tx.control->rate = extra.nonerp; |
| 605 | tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE; |
| 606 | } else { |
| 607 | tx->u.tx.last_frag_rate = tx->u.tx.rate; |
| 608 | tx->u.tx.control->rate = tx->u.tx.rate; |
| 609 | } |
| 610 | tx->u.tx.control->tx_rate = tx->u.tx.rate->val; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 611 | |
| 612 | return TXRX_CONTINUE; |
| 613 | } |
| 614 | |
| 615 | static ieee80211_txrx_result |
| 616 | ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx) |
| 617 | { |
| 618 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 619 | u16 fc = le16_to_cpu(hdr->frame_control); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 620 | u16 dur; |
| 621 | struct ieee80211_tx_control *control = tx->u.tx.control; |
| 622 | struct ieee80211_hw_mode *mode = tx->u.tx.mode; |
| 623 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 624 | if (!control->retry_limit) { |
| 625 | if (!is_multicast_ether_addr(hdr->addr1)) { |
| 626 | if (tx->skb->len + FCS_LEN > tx->local->rts_threshold |
| 627 | && tx->local->rts_threshold < |
| 628 | IEEE80211_MAX_RTS_THRESHOLD) { |
| 629 | control->flags |= |
| 630 | IEEE80211_TXCTL_USE_RTS_CTS; |
| 631 | control->flags |= |
| 632 | IEEE80211_TXCTL_LONG_RETRY_LIMIT; |
| 633 | control->retry_limit = |
| 634 | tx->local->long_retry_limit; |
| 635 | } else { |
| 636 | control->retry_limit = |
| 637 | tx->local->short_retry_limit; |
| 638 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 639 | } else { |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 640 | control->retry_limit = 1; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 641 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 642 | } |
| 643 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 644 | if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) { |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 645 | /* Do not use multiple retry rates when sending fragmented |
| 646 | * frames. |
| 647 | * TODO: The last fragment could still use multiple retry |
| 648 | * rates. */ |
| 649 | control->alt_retry_rate = -1; |
| 650 | } |
| 651 | |
| 652 | /* Use CTS protection for unicast frames sent using extended rates if |
| 653 | * there are associated non-ERP stations and RTS/CTS is not configured |
| 654 | * for the frame. */ |
| 655 | if (mode->mode == MODE_IEEE80211G && |
| 656 | (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) && |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 657 | (tx->flags & IEEE80211_TXRXD_TXUNICAST) && |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 658 | (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) && |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 659 | !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS)) |
| 660 | control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT; |
| 661 | |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 662 | /* Transmit data frames using short preambles if the driver supports |
| 663 | * short preambles at the selected rate and short preambles are |
| 664 | * available on the network at the current point in time. */ |
| 665 | if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) && |
| 666 | (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) && |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 667 | (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) && |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 668 | (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) { |
| 669 | tx->u.tx.control->tx_rate = tx->u.tx.rate->val2; |
| 670 | } |
| 671 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 672 | /* Setup duration field for the first fragment of the frame. Duration |
| 673 | * for remaining fragments will be updated when they are being sent |
| 674 | * to low-level driver in ieee80211_tx(). */ |
| 675 | dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1), |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 676 | (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ? |
| 677 | tx->u.tx.extra_frag[0]->len : 0); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 678 | hdr->duration_id = cpu_to_le16(dur); |
| 679 | |
| 680 | if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) || |
| 681 | (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) { |
| 682 | struct ieee80211_rate *rate; |
| 683 | |
| 684 | /* Do not use multiple retry rates when using RTS/CTS */ |
| 685 | control->alt_retry_rate = -1; |
| 686 | |
| 687 | /* Use min(data rate, max base rate) as CTS/RTS rate */ |
| 688 | rate = tx->u.tx.rate; |
| 689 | while (rate > mode->rates && |
| 690 | !(rate->flags & IEEE80211_RATE_BASIC)) |
| 691 | rate--; |
| 692 | |
| 693 | control->rts_cts_rate = rate->val; |
| 694 | control->rts_rate = rate; |
| 695 | } |
| 696 | |
| 697 | if (tx->sta) { |
| 698 | tx->sta->tx_packets++; |
| 699 | tx->sta->tx_fragments++; |
| 700 | tx->sta->tx_bytes += tx->skb->len; |
| 701 | if (tx->u.tx.extra_frag) { |
| 702 | int i; |
| 703 | tx->sta->tx_fragments += tx->u.tx.num_extra_frag; |
| 704 | for (i = 0; i < tx->u.tx.num_extra_frag; i++) { |
| 705 | tx->sta->tx_bytes += |
| 706 | tx->u.tx.extra_frag[i]->len; |
| 707 | } |
| 708 | } |
| 709 | } |
| 710 | |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 711 | /* |
| 712 | * Tell hardware to not encrypt when we had sw crypto. |
| 713 | * Because we use the same flag to internally indicate that |
| 714 | * no (software) encryption should be done, we have to set it |
| 715 | * after all crypto handlers. |
| 716 | */ |
| 717 | if (tx->key && !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) |
| 718 | tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT; |
| 719 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 720 | return TXRX_CONTINUE; |
| 721 | } |
| 722 | |
| 723 | static ieee80211_txrx_result |
| 724 | ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx) |
| 725 | { |
| 726 | struct ieee80211_local *local = tx->local; |
| 727 | struct ieee80211_hw_mode *mode = tx->u.tx.mode; |
| 728 | struct sk_buff *skb = tx->skb; |
| 729 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 730 | u32 load = 0, hdrtime; |
| 731 | |
| 732 | /* TODO: this could be part of tx_status handling, so that the number |
| 733 | * of retries would be known; TX rate should in that case be stored |
| 734 | * somewhere with the packet */ |
| 735 | |
| 736 | /* Estimate total channel use caused by this frame */ |
| 737 | |
| 738 | /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values, |
| 739 | * 1 usec = 1/8 * (1080 / 10) = 13.5 */ |
| 740 | |
| 741 | if (mode->mode == MODE_IEEE80211A || |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 742 | (mode->mode == MODE_IEEE80211G && |
| 743 | tx->u.tx.rate->flags & IEEE80211_RATE_ERP)) |
| 744 | hdrtime = CHAN_UTIL_HDR_SHORT; |
| 745 | else |
| 746 | hdrtime = CHAN_UTIL_HDR_LONG; |
| 747 | |
| 748 | load = hdrtime; |
| 749 | if (!is_multicast_ether_addr(hdr->addr1)) |
| 750 | load += hdrtime; |
| 751 | |
| 752 | if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS) |
| 753 | load += 2 * hdrtime; |
| 754 | else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) |
| 755 | load += hdrtime; |
| 756 | |
| 757 | load += skb->len * tx->u.tx.rate->rate_inv; |
| 758 | |
| 759 | if (tx->u.tx.extra_frag) { |
| 760 | int i; |
| 761 | for (i = 0; i < tx->u.tx.num_extra_frag; i++) { |
| 762 | load += 2 * hdrtime; |
| 763 | load += tx->u.tx.extra_frag[i]->len * |
| 764 | tx->u.tx.rate->rate; |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | /* Divide channel_use by 8 to avoid wrapping around the counter */ |
| 769 | load >>= CHAN_UTIL_SHIFT; |
| 770 | local->channel_use_raw += load; |
| 771 | if (tx->sta) |
| 772 | tx->sta->channel_use_raw += load; |
| 773 | tx->sdata->channel_use_raw += load; |
| 774 | |
| 775 | return TXRX_CONTINUE; |
| 776 | } |
| 777 | |
| 778 | /* TODO: implement register/unregister functions for adding TX/RX handlers |
| 779 | * into ordered list */ |
| 780 | |
| 781 | ieee80211_tx_handler ieee80211_tx_handlers[] = |
| 782 | { |
| 783 | ieee80211_tx_h_check_assoc, |
| 784 | ieee80211_tx_h_sequence, |
| 785 | ieee80211_tx_h_ps_buf, |
| 786 | ieee80211_tx_h_select_key, |
| 787 | ieee80211_tx_h_michael_mic_add, |
| 788 | ieee80211_tx_h_fragment, |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 789 | ieee80211_tx_h_encrypt, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 790 | ieee80211_tx_h_rate_ctrl, |
| 791 | ieee80211_tx_h_misc, |
| 792 | ieee80211_tx_h_load_stats, |
| 793 | NULL |
| 794 | }; |
| 795 | |
| 796 | /* actual transmit path */ |
| 797 | |
| 798 | /* |
| 799 | * deal with packet injection down monitor interface |
| 800 | * with Radiotap Header -- only called for monitor mode interface |
| 801 | */ |
| 802 | static ieee80211_txrx_result |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 803 | __ieee80211_parse_tx_radiotap(struct ieee80211_txrx_data *tx, |
| 804 | struct sk_buff *skb) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 805 | { |
| 806 | /* |
| 807 | * this is the moment to interpret and discard the radiotap header that |
| 808 | * must be at the start of the packet injected in Monitor mode |
| 809 | * |
| 810 | * Need to take some care with endian-ness since radiotap |
| 811 | * args are little-endian |
| 812 | */ |
| 813 | |
| 814 | struct ieee80211_radiotap_iterator iterator; |
| 815 | struct ieee80211_radiotap_header *rthdr = |
| 816 | (struct ieee80211_radiotap_header *) skb->data; |
| 817 | struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode; |
| 818 | int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 819 | struct ieee80211_tx_control *control = tx->u.tx.control; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 820 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 821 | control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT; |
| 822 | tx->flags |= IEEE80211_TXRXD_TX_INJECTED; |
| 823 | tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 824 | |
| 825 | /* |
| 826 | * for every radiotap entry that is present |
| 827 | * (ieee80211_radiotap_iterator_next returns -ENOENT when no more |
| 828 | * entries present, or -EINVAL on error) |
| 829 | */ |
| 830 | |
| 831 | while (!ret) { |
| 832 | int i, target_rate; |
| 833 | |
| 834 | ret = ieee80211_radiotap_iterator_next(&iterator); |
| 835 | |
| 836 | if (ret) |
| 837 | continue; |
| 838 | |
| 839 | /* see if this argument is something we can use */ |
| 840 | switch (iterator.this_arg_index) { |
| 841 | /* |
| 842 | * You must take care when dereferencing iterator.this_arg |
| 843 | * for multibyte types... the pointer is not aligned. Use |
| 844 | * get_unaligned((type *)iterator.this_arg) to dereference |
| 845 | * iterator.this_arg for type "type" safely on all arches. |
| 846 | */ |
| 847 | case IEEE80211_RADIOTAP_RATE: |
| 848 | /* |
| 849 | * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps |
| 850 | * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps |
| 851 | */ |
| 852 | target_rate = (*iterator.this_arg) * 5; |
| 853 | for (i = 0; i < mode->num_rates; i++) { |
| 854 | struct ieee80211_rate *r = &mode->rates[i]; |
| 855 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 856 | if (r->rate == target_rate) { |
| 857 | tx->u.tx.rate = r; |
| 858 | break; |
| 859 | } |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 860 | } |
| 861 | break; |
| 862 | |
| 863 | case IEEE80211_RADIOTAP_ANTENNA: |
| 864 | /* |
| 865 | * radiotap uses 0 for 1st ant, mac80211 is 1 for |
| 866 | * 1st ant |
| 867 | */ |
| 868 | control->antenna_sel_tx = (*iterator.this_arg) + 1; |
| 869 | break; |
| 870 | |
| 871 | case IEEE80211_RADIOTAP_DBM_TX_POWER: |
| 872 | control->power_level = *iterator.this_arg; |
| 873 | break; |
| 874 | |
| 875 | case IEEE80211_RADIOTAP_FLAGS: |
| 876 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) { |
| 877 | /* |
| 878 | * this indicates that the skb we have been |
| 879 | * handed has the 32-bit FCS CRC at the end... |
| 880 | * we should react to that by snipping it off |
| 881 | * because it will be recomputed and added |
| 882 | * on transmission |
| 883 | */ |
| 884 | if (skb->len < (iterator.max_length + FCS_LEN)) |
| 885 | return TXRX_DROP; |
| 886 | |
| 887 | skb_trim(skb, skb->len - FCS_LEN); |
| 888 | } |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 889 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP) |
| 890 | control->flags &= |
| 891 | ~IEEE80211_TXCTL_DO_NOT_ENCRYPT; |
| 892 | if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG) |
| 893 | tx->flags |= IEEE80211_TXRXD_FRAGMENTED; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 894 | break; |
| 895 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 896 | /* |
| 897 | * Please update the file |
| 898 | * Documentation/networking/mac80211-injection.txt |
| 899 | * when parsing new fields here. |
| 900 | */ |
| 901 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 902 | default: |
| 903 | break; |
| 904 | } |
| 905 | } |
| 906 | |
| 907 | if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */ |
| 908 | return TXRX_DROP; |
| 909 | |
| 910 | /* |
| 911 | * remove the radiotap header |
| 912 | * iterator->max_length was sanity-checked against |
| 913 | * skb->len by iterator init |
| 914 | */ |
| 915 | skb_pull(skb, iterator.max_length); |
| 916 | |
| 917 | return TXRX_CONTINUE; |
| 918 | } |
| 919 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 920 | /* |
| 921 | * initialises @tx |
| 922 | */ |
| 923 | static ieee80211_txrx_result |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 924 | __ieee80211_tx_prepare(struct ieee80211_txrx_data *tx, |
| 925 | struct sk_buff *skb, |
| 926 | struct net_device *dev, |
| 927 | struct ieee80211_tx_control *control) |
| 928 | { |
| 929 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 930 | struct ieee80211_hdr *hdr; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 931 | struct ieee80211_sub_if_data *sdata; |
| 932 | ieee80211_txrx_result res = TXRX_CONTINUE; |
| 933 | |
| 934 | int hdrlen; |
| 935 | |
| 936 | memset(tx, 0, sizeof(*tx)); |
| 937 | tx->skb = skb; |
| 938 | tx->dev = dev; /* use original interface */ |
| 939 | tx->local = local; |
| 940 | tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 941 | tx->u.tx.control = control; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 942 | /* |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 943 | * Set this flag (used below to indicate "automatic fragmentation"), |
| 944 | * it will be cleared/left by radiotap as desired. |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 945 | */ |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 946 | tx->flags |= IEEE80211_TXRXD_FRAGMENTED; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 947 | |
| 948 | /* process and remove the injection radiotap header */ |
| 949 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 950 | if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) { |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 951 | if (__ieee80211_parse_tx_radiotap(tx, skb) == TXRX_DROP) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 952 | return TXRX_DROP; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 953 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 954 | /* |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 955 | * __ieee80211_parse_tx_radiotap has now removed |
| 956 | * the radiotap header that was present and pre-filled |
| 957 | * 'tx' with tx control information. |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 958 | */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 959 | } |
| 960 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 961 | hdr = (struct ieee80211_hdr *) skb->data; |
| 962 | |
warmcat | 2433879 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 963 | tx->sta = sta_info_get(local, hdr->addr1); |
| 964 | tx->fc = le16_to_cpu(hdr->frame_control); |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 965 | |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 966 | if (is_multicast_ether_addr(hdr->addr1)) { |
| 967 | tx->flags &= ~IEEE80211_TXRXD_TXUNICAST; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 968 | control->flags |= IEEE80211_TXCTL_NO_ACK; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 969 | } else { |
| 970 | tx->flags |= IEEE80211_TXRXD_TXUNICAST; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 971 | control->flags &= ~IEEE80211_TXCTL_NO_ACK; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 972 | } |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 973 | |
| 974 | if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) { |
| 975 | if ((tx->flags & IEEE80211_TXRXD_TXUNICAST) && |
| 976 | skb->len + FCS_LEN > local->fragmentation_threshold && |
| 977 | !local->ops->set_frag_threshold) |
| 978 | tx->flags |= IEEE80211_TXRXD_FRAGMENTED; |
| 979 | else |
| 980 | tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED; |
| 981 | } |
| 982 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 983 | if (!tx->sta) |
| 984 | control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK; |
| 985 | else if (tx->sta->clear_dst_mask) { |
| 986 | control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK; |
| 987 | tx->sta->clear_dst_mask = 0; |
| 988 | } |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 989 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 990 | hdrlen = ieee80211_get_hdrlen(tx->fc); |
| 991 | if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) { |
| 992 | u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)]; |
| 993 | tx->ethertype = (pos[0] << 8) | pos[1]; |
| 994 | } |
| 995 | control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT; |
| 996 | |
| 997 | return res; |
| 998 | } |
| 999 | |
| 1000 | /* Device in tx->dev has a reference added; use dev_put(tx->dev) when |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1001 | * finished with it. |
| 1002 | * |
| 1003 | * NB: @tx is uninitialised when passed in here |
| 1004 | */ |
| 1005 | static int ieee80211_tx_prepare(struct ieee80211_txrx_data *tx, |
| 1006 | struct sk_buff *skb, |
| 1007 | struct net_device *mdev, |
| 1008 | struct ieee80211_tx_control *control) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1009 | { |
| 1010 | struct ieee80211_tx_packet_data *pkt_data; |
| 1011 | struct net_device *dev; |
| 1012 | |
| 1013 | pkt_data = (struct ieee80211_tx_packet_data *)skb->cb; |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1014 | dev = dev_get_by_index(&init_net, pkt_data->ifindex); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1015 | if (unlikely(dev && !is_ieee80211_device(dev, mdev))) { |
| 1016 | dev_put(dev); |
| 1017 | dev = NULL; |
| 1018 | } |
| 1019 | if (unlikely(!dev)) |
| 1020 | return -ENODEV; |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1021 | /* initialises tx with control */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1022 | __ieee80211_tx_prepare(tx, skb, dev, control); |
| 1023 | return 0; |
| 1024 | } |
| 1025 | |
| 1026 | static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb, |
| 1027 | struct ieee80211_txrx_data *tx) |
| 1028 | { |
| 1029 | struct ieee80211_tx_control *control = tx->u.tx.control; |
| 1030 | int ret, i; |
| 1031 | |
| 1032 | if (!ieee80211_qdisc_installed(local->mdev) && |
| 1033 | __ieee80211_queue_stopped(local, 0)) { |
| 1034 | netif_stop_queue(local->mdev); |
| 1035 | return IEEE80211_TX_AGAIN; |
| 1036 | } |
| 1037 | if (skb) { |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1038 | ieee80211_dump_frame(wiphy_name(local->hw.wiphy), |
| 1039 | "TX to low-level driver", skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1040 | ret = local->ops->tx(local_to_hw(local), skb, control); |
| 1041 | if (ret) |
| 1042 | return IEEE80211_TX_AGAIN; |
| 1043 | local->mdev->trans_start = jiffies; |
| 1044 | ieee80211_led_tx(local, 1); |
| 1045 | } |
| 1046 | if (tx->u.tx.extra_frag) { |
| 1047 | control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS | |
| 1048 | IEEE80211_TXCTL_USE_CTS_PROTECT | |
| 1049 | IEEE80211_TXCTL_CLEAR_DST_MASK | |
| 1050 | IEEE80211_TXCTL_FIRST_FRAGMENT); |
| 1051 | for (i = 0; i < tx->u.tx.num_extra_frag; i++) { |
| 1052 | if (!tx->u.tx.extra_frag[i]) |
| 1053 | continue; |
| 1054 | if (__ieee80211_queue_stopped(local, control->queue)) |
| 1055 | return IEEE80211_TX_FRAG_AGAIN; |
| 1056 | if (i == tx->u.tx.num_extra_frag) { |
| 1057 | control->tx_rate = tx->u.tx.last_frag_hwrate; |
| 1058 | control->rate = tx->u.tx.last_frag_rate; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1059 | if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1060 | control->flags |= |
| 1061 | IEEE80211_TXCTL_RATE_CTRL_PROBE; |
| 1062 | else |
| 1063 | control->flags &= |
| 1064 | ~IEEE80211_TXCTL_RATE_CTRL_PROBE; |
| 1065 | } |
| 1066 | |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1067 | ieee80211_dump_frame(wiphy_name(local->hw.wiphy), |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1068 | "TX to low-level driver", |
| 1069 | tx->u.tx.extra_frag[i]); |
| 1070 | ret = local->ops->tx(local_to_hw(local), |
| 1071 | tx->u.tx.extra_frag[i], |
| 1072 | control); |
| 1073 | if (ret) |
| 1074 | return IEEE80211_TX_FRAG_AGAIN; |
| 1075 | local->mdev->trans_start = jiffies; |
| 1076 | ieee80211_led_tx(local, 1); |
| 1077 | tx->u.tx.extra_frag[i] = NULL; |
| 1078 | } |
| 1079 | kfree(tx->u.tx.extra_frag); |
| 1080 | tx->u.tx.extra_frag = NULL; |
| 1081 | } |
| 1082 | return IEEE80211_TX_OK; |
| 1083 | } |
| 1084 | |
| 1085 | static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb, |
Johannes Berg | f9d540e | 2007-09-28 14:02:09 +0200 | [diff] [blame] | 1086 | struct ieee80211_tx_control *control) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1087 | { |
| 1088 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1089 | struct sta_info *sta; |
| 1090 | ieee80211_tx_handler *handler; |
| 1091 | struct ieee80211_txrx_data tx; |
| 1092 | ieee80211_txrx_result res = TXRX_DROP, res_prepare; |
| 1093 | int ret, i; |
| 1094 | |
| 1095 | WARN_ON(__ieee80211_queue_pending(local, control->queue)); |
| 1096 | |
| 1097 | if (unlikely(skb->len < 10)) { |
| 1098 | dev_kfree_skb(skb); |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1102 | /* initialises tx */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1103 | res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control); |
| 1104 | |
| 1105 | if (res_prepare == TXRX_DROP) { |
| 1106 | dev_kfree_skb(skb); |
| 1107 | return 0; |
| 1108 | } |
| 1109 | |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1110 | /* |
| 1111 | * key references are protected using RCU and this requires that |
| 1112 | * we are in a read-site RCU section during receive processing |
| 1113 | */ |
| 1114 | rcu_read_lock(); |
| 1115 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1116 | sta = tx.sta; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1117 | tx.u.tx.mode = local->hw.conf.mode; |
| 1118 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1119 | for (handler = local->tx_handlers; *handler != NULL; |
| 1120 | handler++) { |
| 1121 | res = (*handler)(&tx); |
| 1122 | if (res != TXRX_CONTINUE) |
| 1123 | break; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1124 | } |
| 1125 | |
| 1126 | skb = tx.skb; /* handlers are allowed to change skb */ |
| 1127 | |
| 1128 | if (sta) |
| 1129 | sta_info_put(sta); |
| 1130 | |
| 1131 | if (unlikely(res == TXRX_DROP)) { |
| 1132 | I802_DEBUG_INC(local->tx_handlers_drop); |
| 1133 | goto drop; |
| 1134 | } |
| 1135 | |
| 1136 | if (unlikely(res == TXRX_QUEUED)) { |
| 1137 | I802_DEBUG_INC(local->tx_handlers_queued); |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1138 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1139 | return 0; |
| 1140 | } |
| 1141 | |
| 1142 | if (tx.u.tx.extra_frag) { |
| 1143 | for (i = 0; i < tx.u.tx.num_extra_frag; i++) { |
| 1144 | int next_len, dur; |
| 1145 | struct ieee80211_hdr *hdr = |
| 1146 | (struct ieee80211_hdr *) |
| 1147 | tx.u.tx.extra_frag[i]->data; |
| 1148 | |
| 1149 | if (i + 1 < tx.u.tx.num_extra_frag) { |
| 1150 | next_len = tx.u.tx.extra_frag[i + 1]->len; |
| 1151 | } else { |
| 1152 | next_len = 0; |
| 1153 | tx.u.tx.rate = tx.u.tx.last_frag_rate; |
| 1154 | tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val; |
| 1155 | } |
| 1156 | dur = ieee80211_duration(&tx, 0, next_len); |
| 1157 | hdr->duration_id = cpu_to_le16(dur); |
| 1158 | } |
| 1159 | } |
| 1160 | |
| 1161 | retry: |
| 1162 | ret = __ieee80211_tx(local, skb, &tx); |
| 1163 | if (ret) { |
| 1164 | struct ieee80211_tx_stored_packet *store = |
| 1165 | &local->pending_packet[control->queue]; |
| 1166 | |
| 1167 | if (ret == IEEE80211_TX_FRAG_AGAIN) |
| 1168 | skb = NULL; |
| 1169 | set_bit(IEEE80211_LINK_STATE_PENDING, |
| 1170 | &local->state[control->queue]); |
| 1171 | smp_mb(); |
| 1172 | /* When the driver gets out of buffers during sending of |
| 1173 | * fragments and calls ieee80211_stop_queue, there is |
| 1174 | * a small window between IEEE80211_LINK_STATE_XOFF and |
| 1175 | * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer |
| 1176 | * gets available in that window (i.e. driver calls |
| 1177 | * ieee80211_wake_queue), we would end up with ieee80211_tx |
| 1178 | * called with IEEE80211_LINK_STATE_PENDING. Prevent this by |
| 1179 | * continuing transmitting here when that situation is |
| 1180 | * possible to have happened. */ |
| 1181 | if (!__ieee80211_queue_stopped(local, control->queue)) { |
| 1182 | clear_bit(IEEE80211_LINK_STATE_PENDING, |
| 1183 | &local->state[control->queue]); |
| 1184 | goto retry; |
| 1185 | } |
| 1186 | memcpy(&store->control, control, |
| 1187 | sizeof(struct ieee80211_tx_control)); |
| 1188 | store->skb = skb; |
| 1189 | store->extra_frag = tx.u.tx.extra_frag; |
| 1190 | store->num_extra_frag = tx.u.tx.num_extra_frag; |
| 1191 | store->last_frag_hwrate = tx.u.tx.last_frag_hwrate; |
| 1192 | store->last_frag_rate = tx.u.tx.last_frag_rate; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1193 | store->last_frag_rate_ctrl_probe = |
| 1194 | !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1195 | } |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1196 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1197 | return 0; |
| 1198 | |
| 1199 | drop: |
| 1200 | if (skb) |
| 1201 | dev_kfree_skb(skb); |
| 1202 | for (i = 0; i < tx.u.tx.num_extra_frag; i++) |
| 1203 | if (tx.u.tx.extra_frag[i]) |
| 1204 | dev_kfree_skb(tx.u.tx.extra_frag[i]); |
| 1205 | kfree(tx.u.tx.extra_frag); |
Johannes Berg | d4e46a3 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1206 | rcu_read_unlock(); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1207 | return 0; |
| 1208 | } |
| 1209 | |
| 1210 | /* device xmit handlers */ |
| 1211 | |
| 1212 | int ieee80211_master_start_xmit(struct sk_buff *skb, |
| 1213 | struct net_device *dev) |
| 1214 | { |
| 1215 | struct ieee80211_tx_control control; |
| 1216 | struct ieee80211_tx_packet_data *pkt_data; |
| 1217 | struct net_device *odev = NULL; |
| 1218 | struct ieee80211_sub_if_data *osdata; |
| 1219 | int headroom; |
| 1220 | int ret; |
| 1221 | |
| 1222 | /* |
| 1223 | * copy control out of the skb so other people can use skb->cb |
| 1224 | */ |
| 1225 | pkt_data = (struct ieee80211_tx_packet_data *)skb->cb; |
| 1226 | memset(&control, 0, sizeof(struct ieee80211_tx_control)); |
| 1227 | |
| 1228 | if (pkt_data->ifindex) |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1229 | odev = dev_get_by_index(&init_net, pkt_data->ifindex); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1230 | if (unlikely(odev && !is_ieee80211_device(odev, dev))) { |
| 1231 | dev_put(odev); |
| 1232 | odev = NULL; |
| 1233 | } |
| 1234 | if (unlikely(!odev)) { |
| 1235 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 1236 | printk(KERN_DEBUG "%s: Discarded packet with nonexistent " |
| 1237 | "originating device\n", dev->name); |
| 1238 | #endif |
| 1239 | dev_kfree_skb(skb); |
| 1240 | return 0; |
| 1241 | } |
| 1242 | osdata = IEEE80211_DEV_TO_SUB_IF(odev); |
| 1243 | |
| 1244 | headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM; |
| 1245 | if (skb_headroom(skb) < headroom) { |
| 1246 | if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) { |
| 1247 | dev_kfree_skb(skb); |
| 1248 | dev_put(odev); |
| 1249 | return 0; |
| 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | control.ifindex = odev->ifindex; |
| 1254 | control.type = osdata->type; |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1255 | if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1256 | control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS; |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1257 | if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1258 | control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT; |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1259 | if (pkt_data->flags & IEEE80211_TXPD_REQUEUE) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1260 | control.flags |= IEEE80211_TXCTL_REQUEUE; |
| 1261 | control.queue = pkt_data->queue; |
| 1262 | |
Johannes Berg | f9d540e | 2007-09-28 14:02:09 +0200 | [diff] [blame] | 1263 | ret = ieee80211_tx(odev, skb, &control); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1264 | dev_put(odev); |
| 1265 | |
| 1266 | return ret; |
| 1267 | } |
| 1268 | |
| 1269 | int ieee80211_monitor_start_xmit(struct sk_buff *skb, |
| 1270 | struct net_device *dev) |
| 1271 | { |
| 1272 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1273 | struct ieee80211_tx_packet_data *pkt_data; |
| 1274 | struct ieee80211_radiotap_header *prthdr = |
| 1275 | (struct ieee80211_radiotap_header *)skb->data; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1276 | u16 len_rthdr; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1277 | |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1278 | /* check for not even having the fixed radiotap header part */ |
| 1279 | if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header))) |
| 1280 | goto fail; /* too short to be possibly valid */ |
| 1281 | |
| 1282 | /* is it a header version we can trust to find length from? */ |
| 1283 | if (unlikely(prthdr->it_version)) |
| 1284 | goto fail; /* only version 0 is supported */ |
| 1285 | |
| 1286 | /* then there must be a radiotap header with a length we can use */ |
| 1287 | len_rthdr = ieee80211_get_radiotap_len(skb->data); |
| 1288 | |
| 1289 | /* does the skb contain enough to deliver on the alleged length? */ |
| 1290 | if (unlikely(skb->len < len_rthdr)) |
| 1291 | goto fail; /* skb too short for claimed rt header extent */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1292 | |
| 1293 | skb->dev = local->mdev; |
| 1294 | |
| 1295 | pkt_data = (struct ieee80211_tx_packet_data *)skb->cb; |
| 1296 | memset(pkt_data, 0, sizeof(*pkt_data)); |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1297 | /* needed because we set skb device to master */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1298 | pkt_data->ifindex = dev->ifindex; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1299 | |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1300 | pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1301 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1302 | /* |
| 1303 | * fix up the pointers accounting for the radiotap |
| 1304 | * header still being in there. We are being given |
| 1305 | * a precooked IEEE80211 header so no need for |
| 1306 | * normal processing |
| 1307 | */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1308 | skb_set_mac_header(skb, len_rthdr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1309 | /* |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1310 | * these are just fixed to the end of the rt area since we |
| 1311 | * don't have any better information and at this point, nobody cares |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1312 | */ |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1313 | skb_set_network_header(skb, len_rthdr); |
| 1314 | skb_set_transport_header(skb, len_rthdr); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1315 | |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1316 | /* pass the radiotap header up to the next stage intact */ |
| 1317 | dev_queue_xmit(skb); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1318 | return NETDEV_TX_OK; |
Andy Green | 9b8a74e | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1319 | |
| 1320 | fail: |
| 1321 | dev_kfree_skb(skb); |
| 1322 | return NETDEV_TX_OK; /* meaning, we dealt with the skb */ |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | /** |
| 1326 | * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type |
| 1327 | * subinterfaces (wlan#, WDS, and VLAN interfaces) |
| 1328 | * @skb: packet to be sent |
| 1329 | * @dev: incoming interface |
| 1330 | * |
| 1331 | * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will |
| 1332 | * not be freed, and caller is responsible for either retrying later or freeing |
| 1333 | * skb). |
| 1334 | * |
| 1335 | * This function takes in an Ethernet header and encapsulates it with suitable |
| 1336 | * IEEE 802.11 header based on which interface the packet is coming in. The |
| 1337 | * encapsulated packet will then be passed to master interface, wlan#.11, for |
| 1338 | * transmission (through low-level driver). |
| 1339 | */ |
| 1340 | int ieee80211_subif_start_xmit(struct sk_buff *skb, |
| 1341 | struct net_device *dev) |
| 1342 | { |
| 1343 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1344 | struct ieee80211_tx_packet_data *pkt_data; |
| 1345 | struct ieee80211_sub_if_data *sdata; |
| 1346 | int ret = 1, head_need; |
| 1347 | u16 ethertype, hdrlen, fc; |
| 1348 | struct ieee80211_hdr hdr; |
| 1349 | const u8 *encaps_data; |
| 1350 | int encaps_len, skip_header_bytes; |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1351 | int nh_pos, h_pos; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1352 | struct sta_info *sta; |
| 1353 | |
| 1354 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1355 | if (unlikely(skb->len < ETH_HLEN)) { |
| 1356 | printk(KERN_DEBUG "%s: short skb (len=%d)\n", |
| 1357 | dev->name, skb->len); |
| 1358 | ret = 0; |
| 1359 | goto fail; |
| 1360 | } |
| 1361 | |
| 1362 | nh_pos = skb_network_header(skb) - skb->data; |
| 1363 | h_pos = skb_transport_header(skb) - skb->data; |
| 1364 | |
| 1365 | /* convert Ethernet header to proper 802.11 header (based on |
| 1366 | * operation mode) */ |
| 1367 | ethertype = (skb->data[12] << 8) | skb->data[13]; |
| 1368 | /* TODO: handling for 802.1x authorized/unauthorized port */ |
| 1369 | fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA; |
| 1370 | |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1371 | switch (sdata->type) { |
| 1372 | case IEEE80211_IF_TYPE_AP: |
| 1373 | case IEEE80211_IF_TYPE_VLAN: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1374 | fc |= IEEE80211_FCTL_FROMDS; |
| 1375 | /* DA BSSID SA */ |
| 1376 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 1377 | memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN); |
| 1378 | memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN); |
| 1379 | hdrlen = 24; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1380 | break; |
| 1381 | case IEEE80211_IF_TYPE_WDS: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1382 | fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS; |
| 1383 | /* RA TA DA SA */ |
| 1384 | memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN); |
| 1385 | memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN); |
| 1386 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 1387 | memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN); |
| 1388 | hdrlen = 30; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1389 | break; |
| 1390 | case IEEE80211_IF_TYPE_STA: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1391 | fc |= IEEE80211_FCTL_TODS; |
| 1392 | /* BSSID SA DA */ |
| 1393 | memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN); |
| 1394 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 1395 | memcpy(hdr.addr3, skb->data, ETH_ALEN); |
| 1396 | hdrlen = 24; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1397 | break; |
| 1398 | case IEEE80211_IF_TYPE_IBSS: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1399 | /* DA SA BSSID */ |
| 1400 | memcpy(hdr.addr1, skb->data, ETH_ALEN); |
| 1401 | memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN); |
| 1402 | memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN); |
| 1403 | hdrlen = 24; |
Johannes Berg | cf96683 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1404 | break; |
| 1405 | default: |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1406 | ret = 0; |
| 1407 | goto fail; |
| 1408 | } |
| 1409 | |
| 1410 | /* receiver is QoS enabled, use a QoS type frame */ |
| 1411 | sta = sta_info_get(local, hdr.addr1); |
| 1412 | if (sta) { |
| 1413 | if (sta->flags & WLAN_STA_WME) { |
| 1414 | fc |= IEEE80211_STYPE_QOS_DATA; |
| 1415 | hdrlen += 2; |
| 1416 | } |
| 1417 | sta_info_put(sta); |
| 1418 | } |
| 1419 | |
| 1420 | hdr.frame_control = cpu_to_le16(fc); |
| 1421 | hdr.duration_id = 0; |
| 1422 | hdr.seq_ctrl = 0; |
| 1423 | |
| 1424 | skip_header_bytes = ETH_HLEN; |
| 1425 | if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) { |
| 1426 | encaps_data = bridge_tunnel_header; |
| 1427 | encaps_len = sizeof(bridge_tunnel_header); |
| 1428 | skip_header_bytes -= 2; |
| 1429 | } else if (ethertype >= 0x600) { |
| 1430 | encaps_data = rfc1042_header; |
| 1431 | encaps_len = sizeof(rfc1042_header); |
| 1432 | skip_header_bytes -= 2; |
| 1433 | } else { |
| 1434 | encaps_data = NULL; |
| 1435 | encaps_len = 0; |
| 1436 | } |
| 1437 | |
| 1438 | skb_pull(skb, skip_header_bytes); |
| 1439 | nh_pos -= skip_header_bytes; |
| 1440 | h_pos -= skip_header_bytes; |
| 1441 | |
| 1442 | /* TODO: implement support for fragments so that there is no need to |
| 1443 | * reallocate and copy payload; it might be enough to support one |
| 1444 | * extra fragment that would be copied in the beginning of the frame |
| 1445 | * data.. anyway, it would be nice to include this into skb structure |
| 1446 | * somehow |
| 1447 | * |
| 1448 | * There are few options for this: |
| 1449 | * use skb->cb as an extra space for 802.11 header |
| 1450 | * allocate new buffer if not enough headroom |
| 1451 | * make sure that there is enough headroom in every skb by increasing |
| 1452 | * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and |
| 1453 | * alloc_skb() (net/core/skbuff.c) |
| 1454 | */ |
| 1455 | head_need = hdrlen + encaps_len + local->tx_headroom; |
| 1456 | head_need -= skb_headroom(skb); |
| 1457 | |
| 1458 | /* We are going to modify skb data, so make a copy of it if happens to |
| 1459 | * be cloned. This could happen, e.g., with Linux bridge code passing |
| 1460 | * us broadcast frames. */ |
| 1461 | |
| 1462 | if (head_need > 0 || skb_cloned(skb)) { |
| 1463 | #if 0 |
| 1464 | printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes " |
| 1465 | "of headroom\n", dev->name, head_need); |
| 1466 | #endif |
| 1467 | |
| 1468 | if (skb_cloned(skb)) |
| 1469 | I802_DEBUG_INC(local->tx_expand_skb_head_cloned); |
| 1470 | else |
| 1471 | I802_DEBUG_INC(local->tx_expand_skb_head); |
| 1472 | /* Since we have to reallocate the buffer, make sure that there |
| 1473 | * is enough room for possible WEP IV/ICV and TKIP (8 bytes |
| 1474 | * before payload and 12 after). */ |
| 1475 | if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8), |
| 1476 | 12, GFP_ATOMIC)) { |
| 1477 | printk(KERN_DEBUG "%s: failed to reallocate TX buffer" |
| 1478 | "\n", dev->name); |
| 1479 | goto fail; |
| 1480 | } |
| 1481 | } |
| 1482 | |
| 1483 | if (encaps_data) { |
| 1484 | memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len); |
| 1485 | nh_pos += encaps_len; |
| 1486 | h_pos += encaps_len; |
| 1487 | } |
Johannes Berg | c29b9b9 | 2007-09-14 11:10:24 -0400 | [diff] [blame] | 1488 | |
| 1489 | if (fc & IEEE80211_STYPE_QOS_DATA) { |
| 1490 | __le16 *qos_control; |
| 1491 | |
| 1492 | qos_control = (__le16*) skb_push(skb, 2); |
| 1493 | memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2); |
| 1494 | /* |
| 1495 | * Maybe we could actually set some fields here, for now just |
| 1496 | * initialise to zero to indicate no special operation. |
| 1497 | */ |
| 1498 | *qos_control = 0; |
| 1499 | } else |
| 1500 | memcpy(skb_push(skb, hdrlen), &hdr, hdrlen); |
| 1501 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1502 | nh_pos += hdrlen; |
| 1503 | h_pos += hdrlen; |
| 1504 | |
| 1505 | pkt_data = (struct ieee80211_tx_packet_data *)skb->cb; |
| 1506 | memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data)); |
| 1507 | pkt_data->ifindex = dev->ifindex; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1508 | |
| 1509 | skb->dev = local->mdev; |
Stephen Hemminger | 68aae11 | 2007-08-24 11:29:34 -0700 | [diff] [blame] | 1510 | dev->stats.tx_packets++; |
| 1511 | dev->stats.tx_bytes += skb->len; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1512 | |
| 1513 | /* Update skb pointers to various headers since this modified frame |
| 1514 | * is going to go through Linux networking code that may potentially |
| 1515 | * need things like pointer to IP header. */ |
| 1516 | skb_set_mac_header(skb, 0); |
| 1517 | skb_set_network_header(skb, nh_pos); |
| 1518 | skb_set_transport_header(skb, h_pos); |
| 1519 | |
| 1520 | dev->trans_start = jiffies; |
| 1521 | dev_queue_xmit(skb); |
| 1522 | |
| 1523 | return 0; |
| 1524 | |
| 1525 | fail: |
| 1526 | if (!ret) |
| 1527 | dev_kfree_skb(skb); |
| 1528 | |
| 1529 | return ret; |
| 1530 | } |
| 1531 | |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1532 | /* helper functions for pending packets for when queues are stopped */ |
| 1533 | |
| 1534 | void ieee80211_clear_tx_pending(struct ieee80211_local *local) |
| 1535 | { |
| 1536 | int i, j; |
| 1537 | struct ieee80211_tx_stored_packet *store; |
| 1538 | |
| 1539 | for (i = 0; i < local->hw.queues; i++) { |
| 1540 | if (!__ieee80211_queue_pending(local, i)) |
| 1541 | continue; |
| 1542 | store = &local->pending_packet[i]; |
| 1543 | kfree_skb(store->skb); |
| 1544 | for (j = 0; j < store->num_extra_frag; j++) |
| 1545 | kfree_skb(store->extra_frag[j]); |
| 1546 | kfree(store->extra_frag); |
| 1547 | clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]); |
| 1548 | } |
| 1549 | } |
| 1550 | |
| 1551 | void ieee80211_tx_pending(unsigned long data) |
| 1552 | { |
| 1553 | struct ieee80211_local *local = (struct ieee80211_local *)data; |
| 1554 | struct net_device *dev = local->mdev; |
| 1555 | struct ieee80211_tx_stored_packet *store; |
| 1556 | struct ieee80211_txrx_data tx; |
| 1557 | int i, ret, reschedule = 0; |
| 1558 | |
| 1559 | netif_tx_lock_bh(dev); |
| 1560 | for (i = 0; i < local->hw.queues; i++) { |
| 1561 | if (__ieee80211_queue_stopped(local, i)) |
| 1562 | continue; |
| 1563 | if (!__ieee80211_queue_pending(local, i)) { |
| 1564 | reschedule = 1; |
| 1565 | continue; |
| 1566 | } |
| 1567 | store = &local->pending_packet[i]; |
| 1568 | tx.u.tx.control = &store->control; |
| 1569 | tx.u.tx.extra_frag = store->extra_frag; |
| 1570 | tx.u.tx.num_extra_frag = store->num_extra_frag; |
| 1571 | tx.u.tx.last_frag_hwrate = store->last_frag_hwrate; |
| 1572 | tx.u.tx.last_frag_rate = store->last_frag_rate; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1573 | tx.flags = 0; |
| 1574 | if (store->last_frag_rate_ctrl_probe) |
| 1575 | tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1576 | ret = __ieee80211_tx(local, store->skb, &tx); |
| 1577 | if (ret) { |
| 1578 | if (ret == IEEE80211_TX_FRAG_AGAIN) |
| 1579 | store->skb = NULL; |
| 1580 | } else { |
| 1581 | clear_bit(IEEE80211_LINK_STATE_PENDING, |
| 1582 | &local->state[i]); |
| 1583 | reschedule = 1; |
| 1584 | } |
| 1585 | } |
| 1586 | netif_tx_unlock_bh(dev); |
| 1587 | if (reschedule) { |
| 1588 | if (!ieee80211_qdisc_installed(dev)) { |
| 1589 | if (!__ieee80211_queue_stopped(local, 0)) |
| 1590 | netif_wake_queue(dev); |
| 1591 | } else |
| 1592 | netif_schedule(dev); |
| 1593 | } |
| 1594 | } |
| 1595 | |
| 1596 | /* functions for drivers to get certain frames */ |
| 1597 | |
| 1598 | static void ieee80211_beacon_add_tim(struct ieee80211_local *local, |
| 1599 | struct ieee80211_if_ap *bss, |
| 1600 | struct sk_buff *skb) |
| 1601 | { |
| 1602 | u8 *pos, *tim; |
| 1603 | int aid0 = 0; |
| 1604 | int i, have_bits = 0, n1, n2; |
| 1605 | |
| 1606 | /* Generate bitmap for TIM only if there are any STAs in power save |
| 1607 | * mode. */ |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 1608 | read_lock_bh(&local->sta_lock); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1609 | if (atomic_read(&bss->num_sta_ps) > 0) |
| 1610 | /* in the hope that this is faster than |
| 1611 | * checking byte-for-byte */ |
| 1612 | have_bits = !bitmap_empty((unsigned long*)bss->tim, |
| 1613 | IEEE80211_MAX_AID+1); |
| 1614 | |
| 1615 | if (bss->dtim_count == 0) |
| 1616 | bss->dtim_count = bss->dtim_period - 1; |
| 1617 | else |
| 1618 | bss->dtim_count--; |
| 1619 | |
| 1620 | tim = pos = (u8 *) skb_put(skb, 6); |
| 1621 | *pos++ = WLAN_EID_TIM; |
| 1622 | *pos++ = 4; |
| 1623 | *pos++ = bss->dtim_count; |
| 1624 | *pos++ = bss->dtim_period; |
| 1625 | |
| 1626 | if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf)) |
| 1627 | aid0 = 1; |
| 1628 | |
| 1629 | if (have_bits) { |
| 1630 | /* Find largest even number N1 so that bits numbered 1 through |
| 1631 | * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits |
| 1632 | * (N2 + 1) x 8 through 2007 are 0. */ |
| 1633 | n1 = 0; |
| 1634 | for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) { |
| 1635 | if (bss->tim[i]) { |
| 1636 | n1 = i & 0xfe; |
| 1637 | break; |
| 1638 | } |
| 1639 | } |
| 1640 | n2 = n1; |
| 1641 | for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) { |
| 1642 | if (bss->tim[i]) { |
| 1643 | n2 = i; |
| 1644 | break; |
| 1645 | } |
| 1646 | } |
| 1647 | |
| 1648 | /* Bitmap control */ |
| 1649 | *pos++ = n1 | aid0; |
| 1650 | /* Part Virt Bitmap */ |
| 1651 | memcpy(pos, bss->tim + n1, n2 - n1 + 1); |
| 1652 | |
| 1653 | tim[1] = n2 - n1 + 4; |
| 1654 | skb_put(skb, n2 - n1); |
| 1655 | } else { |
| 1656 | *pos++ = aid0; /* Bitmap control */ |
| 1657 | *pos++ = 0; /* Part Virt Bitmap */ |
| 1658 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 1659 | read_unlock_bh(&local->sta_lock); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1660 | } |
| 1661 | |
| 1662 | struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id, |
| 1663 | struct ieee80211_tx_control *control) |
| 1664 | { |
| 1665 | struct ieee80211_local *local = hw_to_local(hw); |
| 1666 | struct sk_buff *skb; |
| 1667 | struct net_device *bdev; |
| 1668 | struct ieee80211_sub_if_data *sdata = NULL; |
| 1669 | struct ieee80211_if_ap *ap = NULL; |
| 1670 | struct ieee80211_rate *rate; |
| 1671 | struct rate_control_extra extra; |
| 1672 | u8 *b_head, *b_tail; |
| 1673 | int bh_len, bt_len; |
| 1674 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1675 | bdev = dev_get_by_index(&init_net, if_id); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1676 | if (bdev) { |
| 1677 | sdata = IEEE80211_DEV_TO_SUB_IF(bdev); |
| 1678 | ap = &sdata->u.ap; |
| 1679 | dev_put(bdev); |
| 1680 | } |
| 1681 | |
| 1682 | if (!ap || sdata->type != IEEE80211_IF_TYPE_AP || |
| 1683 | !ap->beacon_head) { |
| 1684 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 1685 | if (net_ratelimit()) |
| 1686 | printk(KERN_DEBUG "no beacon data avail for idx=%d " |
| 1687 | "(%s)\n", if_id, bdev ? bdev->name : "N/A"); |
| 1688 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 1689 | return NULL; |
| 1690 | } |
| 1691 | |
| 1692 | /* Assume we are generating the normal beacon locally */ |
| 1693 | b_head = ap->beacon_head; |
| 1694 | b_tail = ap->beacon_tail; |
| 1695 | bh_len = ap->beacon_head_len; |
| 1696 | bt_len = ap->beacon_tail_len; |
| 1697 | |
| 1698 | skb = dev_alloc_skb(local->tx_headroom + |
| 1699 | bh_len + bt_len + 256 /* maximum TIM len */); |
| 1700 | if (!skb) |
| 1701 | return NULL; |
| 1702 | |
| 1703 | skb_reserve(skb, local->tx_headroom); |
| 1704 | memcpy(skb_put(skb, bh_len), b_head, bh_len); |
| 1705 | |
| 1706 | ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data); |
| 1707 | |
| 1708 | ieee80211_beacon_add_tim(local, ap, skb); |
| 1709 | |
| 1710 | if (b_tail) { |
| 1711 | memcpy(skb_put(skb, bt_len), b_tail, bt_len); |
| 1712 | } |
| 1713 | |
| 1714 | if (control) { |
| 1715 | memset(&extra, 0, sizeof(extra)); |
| 1716 | extra.mode = local->oper_hw_mode; |
| 1717 | |
| 1718 | rate = rate_control_get_rate(local, local->mdev, skb, &extra); |
| 1719 | if (!rate) { |
| 1720 | if (net_ratelimit()) { |
| 1721 | printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate " |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1722 | "found\n", wiphy_name(local->hw.wiphy)); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1723 | } |
| 1724 | dev_kfree_skb(skb); |
| 1725 | return NULL; |
| 1726 | } |
| 1727 | |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1728 | control->tx_rate = |
| 1729 | ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) && |
| 1730 | (rate->flags & IEEE80211_RATE_PREAMBLE2)) ? |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1731 | rate->val2 : rate->val; |
| 1732 | control->antenna_sel_tx = local->hw.conf.antenna_sel_tx; |
| 1733 | control->power_level = local->hw.conf.power_level; |
| 1734 | control->flags |= IEEE80211_TXCTL_NO_ACK; |
| 1735 | control->retry_limit = 1; |
| 1736 | control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK; |
| 1737 | } |
| 1738 | |
| 1739 | ap->num_beacons++; |
| 1740 | return skb; |
| 1741 | } |
| 1742 | EXPORT_SYMBOL(ieee80211_beacon_get); |
| 1743 | |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1744 | void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1745 | const void *frame, size_t frame_len, |
| 1746 | const struct ieee80211_tx_control *frame_txctl, |
| 1747 | struct ieee80211_rts *rts) |
| 1748 | { |
| 1749 | const struct ieee80211_hdr *hdr = frame; |
| 1750 | u16 fctl; |
| 1751 | |
| 1752 | fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS; |
| 1753 | rts->frame_control = cpu_to_le16(fctl); |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1754 | rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1755 | memcpy(rts->ra, hdr->addr1, sizeof(rts->ra)); |
| 1756 | memcpy(rts->ta, hdr->addr2, sizeof(rts->ta)); |
| 1757 | } |
| 1758 | EXPORT_SYMBOL(ieee80211_rts_get); |
| 1759 | |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1760 | void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id, |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1761 | const void *frame, size_t frame_len, |
| 1762 | const struct ieee80211_tx_control *frame_txctl, |
| 1763 | struct ieee80211_cts *cts) |
| 1764 | { |
| 1765 | const struct ieee80211_hdr *hdr = frame; |
| 1766 | u16 fctl; |
| 1767 | |
| 1768 | fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS; |
| 1769 | cts->frame_control = cpu_to_le16(fctl); |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1770 | cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1771 | memcpy(cts->ra, hdr->addr1, sizeof(cts->ra)); |
| 1772 | } |
| 1773 | EXPORT_SYMBOL(ieee80211_ctstoself_get); |
| 1774 | |
| 1775 | struct sk_buff * |
| 1776 | ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id, |
| 1777 | struct ieee80211_tx_control *control) |
| 1778 | { |
| 1779 | struct ieee80211_local *local = hw_to_local(hw); |
| 1780 | struct sk_buff *skb; |
| 1781 | struct sta_info *sta; |
| 1782 | ieee80211_tx_handler *handler; |
| 1783 | struct ieee80211_txrx_data tx; |
| 1784 | ieee80211_txrx_result res = TXRX_DROP; |
| 1785 | struct net_device *bdev; |
| 1786 | struct ieee80211_sub_if_data *sdata; |
| 1787 | struct ieee80211_if_ap *bss = NULL; |
| 1788 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 1789 | bdev = dev_get_by_index(&init_net, if_id); |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1790 | if (bdev) { |
| 1791 | sdata = IEEE80211_DEV_TO_SUB_IF(bdev); |
| 1792 | bss = &sdata->u.ap; |
| 1793 | dev_put(bdev); |
| 1794 | } |
| 1795 | if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head) |
| 1796 | return NULL; |
| 1797 | |
| 1798 | if (bss->dtim_count != 0) |
| 1799 | return NULL; /* send buffered bc/mc only after DTIM beacon */ |
| 1800 | memset(control, 0, sizeof(*control)); |
| 1801 | while (1) { |
| 1802 | skb = skb_dequeue(&bss->ps_bc_buf); |
| 1803 | if (!skb) |
| 1804 | return NULL; |
| 1805 | local->total_ps_buffered--; |
| 1806 | |
| 1807 | if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) { |
| 1808 | struct ieee80211_hdr *hdr = |
| 1809 | (struct ieee80211_hdr *) skb->data; |
| 1810 | /* more buffered multicast/broadcast frames ==> set |
| 1811 | * MoreData flag in IEEE 802.11 header to inform PS |
| 1812 | * STAs */ |
| 1813 | hdr->frame_control |= |
| 1814 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 1815 | } |
| 1816 | |
Johannes Berg | 58d4185 | 2007-09-26 17:53:18 +0200 | [diff] [blame] | 1817 | if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control)) |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1818 | break; |
| 1819 | dev_kfree_skb_any(skb); |
| 1820 | } |
| 1821 | sta = tx.sta; |
Jiri Slaby | badffb7 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1822 | tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED; |
Tomas Winkler | 475fa49 | 2007-09-02 22:58:21 +0300 | [diff] [blame] | 1823 | tx.u.tx.mode = local->hw.conf.mode; |
Johannes Berg | e2ebc74 | 2007-07-27 15:43:22 +0200 | [diff] [blame] | 1824 | |
| 1825 | for (handler = local->tx_handlers; *handler != NULL; handler++) { |
| 1826 | res = (*handler)(&tx); |
| 1827 | if (res == TXRX_DROP || res == TXRX_QUEUED) |
| 1828 | break; |
| 1829 | } |
| 1830 | dev_put(tx.dev); |
| 1831 | skb = tx.skb; /* handlers are allowed to change skb */ |
| 1832 | |
| 1833 | if (res == TXRX_DROP) { |
| 1834 | I802_DEBUG_INC(local->tx_handlers_drop); |
| 1835 | dev_kfree_skb(skb); |
| 1836 | skb = NULL; |
| 1837 | } else if (res == TXRX_QUEUED) { |
| 1838 | I802_DEBUG_INC(local->tx_handlers_queued); |
| 1839 | skb = NULL; |
| 1840 | } |
| 1841 | |
| 1842 | if (sta) |
| 1843 | sta_info_put(sta); |
| 1844 | |
| 1845 | return skb; |
| 1846 | } |
| 1847 | EXPORT_SYMBOL(ieee80211_get_buffered_bc); |