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> |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 23 | #include <linux/crc32.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 24 | #include <net/net_namespace.h> |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 25 | #include <net/cfg80211.h> |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 26 | #include <net/rtnetlink.h> |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 27 | |
| 28 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 29 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 30 | #include "rate.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 31 | #include "mesh.h" |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 32 | #include "wme.h" |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 33 | #include "led.h" |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 34 | #include "wep.h" |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 35 | |
| 36 | /* privid for wiphys to determine whether they belong to us or not */ |
| 37 | void *mac80211_wiphy_privid = &mac80211_wiphy_privid; |
| 38 | |
Luis R. Rodriguez | 9a95371 | 2009-01-22 15:05:53 -0800 | [diff] [blame] | 39 | struct ieee80211_hw *wiphy_to_ieee80211_hw(struct wiphy *wiphy) |
| 40 | { |
| 41 | struct ieee80211_local *local; |
| 42 | BUG_ON(!wiphy); |
| 43 | |
| 44 | local = wiphy_priv(wiphy); |
| 45 | return &local->hw; |
| 46 | } |
| 47 | EXPORT_SYMBOL(wiphy_to_ieee80211_hw); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 48 | |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 49 | u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 50 | enum nl80211_iftype type) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 51 | { |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 52 | __le16 fc = hdr->frame_control; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 53 | |
Ron Rindjunsky | 98f0b0a | 2007-12-18 17:23:53 +0200 | [diff] [blame] | 54 | /* drop ACK/CTS frames and incorrect hdr len (ctrl) */ |
| 55 | if (len < 16) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 56 | return NULL; |
| 57 | |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 58 | if (ieee80211_is_data(fc)) { |
Ron Rindjunsky | 98f0b0a | 2007-12-18 17:23:53 +0200 | [diff] [blame] | 59 | if (len < 24) /* drop incorrect hdr len (data) */ |
| 60 | return NULL; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 61 | |
| 62 | if (ieee80211_has_a4(fc)) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 63 | return NULL; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 64 | if (ieee80211_has_tods(fc)) |
| 65 | return hdr->addr1; |
| 66 | if (ieee80211_has_fromds(fc)) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 67 | return hdr->addr2; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 68 | |
| 69 | return hdr->addr3; |
| 70 | } |
| 71 | |
| 72 | if (ieee80211_is_mgmt(fc)) { |
Ron Rindjunsky | 98f0b0a | 2007-12-18 17:23:53 +0200 | [diff] [blame] | 73 | if (len < 24) /* drop incorrect hdr len (mgmt) */ |
| 74 | return NULL; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 75 | return hdr->addr3; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | if (ieee80211_is_ctl(fc)) { |
| 79 | if(ieee80211_is_pspoll(fc)) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 80 | return hdr->addr1; |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 81 | |
| 82 | if (ieee80211_is_back_req(fc)) { |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 83 | switch (type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 84 | case NL80211_IFTYPE_STATION: |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 85 | return hdr->addr2; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 86 | case NL80211_IFTYPE_AP: |
| 87 | case NL80211_IFTYPE_AP_VLAN: |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 88 | return hdr->addr1; |
| 89 | default: |
Harvey Harrison | a494bb1 | 2008-06-11 14:21:58 -0700 | [diff] [blame] | 90 | break; /* fall through to the return */ |
Ron Rindjunsky | 7136471 | 2007-12-25 17:00:36 +0200 | [diff] [blame] | 91 | } |
| 92 | } |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | return NULL; |
| 96 | } |
| 97 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 98 | void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 99 | { |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 100 | struct sk_buff *skb = tx->skb; |
| 101 | struct ieee80211_hdr *hdr; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 102 | |
Johannes Berg | 2de8e0d | 2009-03-23 17:28:35 +0100 | [diff] [blame] | 103 | do { |
| 104 | hdr = (struct ieee80211_hdr *) skb->data; |
| 105 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
| 106 | } while ((skb = skb->next)); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | int ieee80211_frame_duration(struct ieee80211_local *local, size_t len, |
| 110 | int rate, int erp, int short_preamble) |
| 111 | { |
| 112 | int dur; |
| 113 | |
| 114 | /* calculate duration (in microseconds, rounded up to next higher |
| 115 | * integer if it includes a fractional microsecond) to send frame of |
| 116 | * len bytes (does not include FCS) at the given rate. Duration will |
| 117 | * also include SIFS. |
| 118 | * |
| 119 | * rate is in 100 kbps, so divident is multiplied by 10 in the |
| 120 | * DIV_ROUND_UP() operations. |
| 121 | */ |
| 122 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 123 | if (local->hw.conf.channel->band == IEEE80211_BAND_5GHZ || erp) { |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 124 | /* |
| 125 | * OFDM: |
| 126 | * |
| 127 | * N_DBPS = DATARATE x 4 |
| 128 | * N_SYM = Ceiling((16+8xLENGTH+6) / N_DBPS) |
| 129 | * (16 = SIGNAL time, 6 = tail bits) |
| 130 | * TXTIME = T_PREAMBLE + T_SIGNAL + T_SYM x N_SYM + Signal Ext |
| 131 | * |
| 132 | * T_SYM = 4 usec |
| 133 | * 802.11a - 17.5.2: aSIFSTime = 16 usec |
| 134 | * 802.11g - 19.8.4: aSIFSTime = 10 usec + |
| 135 | * signal ext = 6 usec |
| 136 | */ |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 137 | dur = 16; /* SIFS + signal ext */ |
| 138 | dur += 16; /* 17.3.2.3: T_PREAMBLE = 16 usec */ |
| 139 | dur += 4; /* 17.3.2.3: T_SIGNAL = 4 usec */ |
| 140 | dur += 4 * DIV_ROUND_UP((16 + 8 * (len + 4) + 6) * 10, |
| 141 | 4 * rate); /* T_SYM x N_SYM */ |
| 142 | } else { |
| 143 | /* |
| 144 | * 802.11b or 802.11g with 802.11b compatibility: |
| 145 | * 18.3.4: TXTIME = PreambleLength + PLCPHeaderTime + |
| 146 | * Ceiling(((LENGTH+PBCC)x8)/DATARATE). PBCC=0. |
| 147 | * |
| 148 | * 802.11 (DS): 15.3.3, 802.11b: 18.3.4 |
| 149 | * aSIFSTime = 10 usec |
| 150 | * aPreambleLength = 144 usec or 72 usec with short preamble |
| 151 | * aPLCPHeaderLength = 48 usec or 24 usec with short preamble |
| 152 | */ |
| 153 | dur = 10; /* aSIFSTime = 10 usec */ |
| 154 | dur += short_preamble ? (72 + 24) : (144 + 48); |
| 155 | |
| 156 | dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate); |
| 157 | } |
| 158 | |
| 159 | return dur; |
| 160 | } |
| 161 | |
| 162 | /* Exported duration function for driver use */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 163 | __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw, |
| 164 | struct ieee80211_vif *vif, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 165 | size_t frame_len, |
| 166 | struct ieee80211_rate *rate) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 167 | { |
| 168 | struct ieee80211_local *local = hw_to_local(hw); |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 169 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 170 | u16 dur; |
| 171 | int erp; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 172 | bool short_preamble = false; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 173 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 174 | erp = 0; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 175 | if (vif) { |
| 176 | sdata = vif_to_sdata(vif); |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 177 | short_preamble = sdata->vif.bss_conf.use_short_preamble; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 178 | if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 179 | erp = rate->flags & IEEE80211_RATE_ERP_G; |
| 180 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 181 | |
| 182 | dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, erp, |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 183 | short_preamble); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 184 | |
| 185 | return cpu_to_le16(dur); |
| 186 | } |
| 187 | EXPORT_SYMBOL(ieee80211_generic_frame_duration); |
| 188 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 189 | __le16 ieee80211_rts_duration(struct ieee80211_hw *hw, |
| 190 | struct ieee80211_vif *vif, size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 191 | const struct ieee80211_tx_info *frame_txctl) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 192 | { |
| 193 | struct ieee80211_local *local = hw_to_local(hw); |
| 194 | struct ieee80211_rate *rate; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 195 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 196 | bool short_preamble; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 197 | int erp; |
| 198 | u16 dur; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 199 | struct ieee80211_supported_band *sband; |
| 200 | |
| 201 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 202 | |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 203 | short_preamble = false; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 204 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 205 | rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 206 | |
| 207 | erp = 0; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 208 | if (vif) { |
| 209 | sdata = vif_to_sdata(vif); |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 210 | short_preamble = sdata->vif.bss_conf.use_short_preamble; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 211 | if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 212 | erp = rate->flags & IEEE80211_RATE_ERP_G; |
| 213 | } |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 214 | |
| 215 | /* CTS duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 216 | dur = ieee80211_frame_duration(local, 10, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 217 | erp, short_preamble); |
| 218 | /* Data frame duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 219 | dur += ieee80211_frame_duration(local, frame_len, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 220 | erp, short_preamble); |
| 221 | /* ACK duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 222 | dur += ieee80211_frame_duration(local, 10, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 223 | erp, short_preamble); |
| 224 | |
| 225 | return cpu_to_le16(dur); |
| 226 | } |
| 227 | EXPORT_SYMBOL(ieee80211_rts_duration); |
| 228 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 229 | __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, |
| 230 | struct ieee80211_vif *vif, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 231 | size_t frame_len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 232 | const struct ieee80211_tx_info *frame_txctl) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 233 | { |
| 234 | struct ieee80211_local *local = hw_to_local(hw); |
| 235 | struct ieee80211_rate *rate; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 236 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 237 | bool short_preamble; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 238 | int erp; |
| 239 | u16 dur; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 240 | struct ieee80211_supported_band *sband; |
| 241 | |
| 242 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 243 | |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 244 | short_preamble = false; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 245 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 246 | rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 247 | erp = 0; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 248 | if (vif) { |
| 249 | sdata = vif_to_sdata(vif); |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 250 | short_preamble = sdata->vif.bss_conf.use_short_preamble; |
Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 251 | if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) |
| 252 | erp = rate->flags & IEEE80211_RATE_ERP_G; |
| 253 | } |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 254 | |
| 255 | /* Data frame duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 256 | dur = ieee80211_frame_duration(local, frame_len, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 257 | erp, short_preamble); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 258 | if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) { |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 259 | /* ACK duration */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 260 | dur += ieee80211_frame_duration(local, 10, rate->bitrate, |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 261 | erp, short_preamble); |
| 262 | } |
| 263 | |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 264 | return cpu_to_le16(dur); |
| 265 | } |
| 266 | EXPORT_SYMBOL(ieee80211_ctstoself_duration); |
| 267 | |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 268 | static void __ieee80211_wake_queue(struct ieee80211_hw *hw, int queue, |
| 269 | enum queue_stop_reason reason) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 270 | { |
| 271 | struct ieee80211_local *local = hw_to_local(hw); |
| 272 | |
Johannes Berg | e4e72fb | 2009-03-23 17:28:42 +0100 | [diff] [blame] | 273 | if (WARN_ON(queue >= hw->queues)) |
| 274 | return; |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 275 | |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 276 | __clear_bit(reason, &local->queue_stop_reasons[queue]); |
| 277 | |
| 278 | if (local->queue_stop_reasons[queue] != 0) |
| 279 | /* someone still has this queue stopped */ |
| 280 | return; |
| 281 | |
Johannes Berg | 3b8d81e | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 282 | if (!skb_queue_empty(&local->pending[queue])) |
| 283 | tasklet_schedule(&local->tx_pending_tasklet); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 284 | } |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 285 | |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 286 | void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue, |
| 287 | enum queue_stop_reason reason) |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 288 | { |
| 289 | struct ieee80211_local *local = hw_to_local(hw); |
| 290 | unsigned long flags; |
| 291 | |
| 292 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 293 | __ieee80211_wake_queue(hw, queue, reason); |
| 294 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 295 | } |
| 296 | |
| 297 | void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue) |
| 298 | { |
| 299 | ieee80211_wake_queue_by_reason(hw, queue, |
| 300 | IEEE80211_QUEUE_STOP_REASON_DRIVER); |
| 301 | } |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 302 | EXPORT_SYMBOL(ieee80211_wake_queue); |
| 303 | |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 304 | static void __ieee80211_stop_queue(struct ieee80211_hw *hw, int queue, |
| 305 | enum queue_stop_reason reason) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 306 | { |
| 307 | struct ieee80211_local *local = hw_to_local(hw); |
| 308 | |
Johannes Berg | e4e72fb | 2009-03-23 17:28:42 +0100 | [diff] [blame] | 309 | if (WARN_ON(queue >= hw->queues)) |
| 310 | return; |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 311 | |
Johannes Berg | 2a577d9 | 2009-03-23 17:28:37 +0100 | [diff] [blame] | 312 | __set_bit(reason, &local->queue_stop_reasons[queue]); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 313 | } |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 314 | |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 315 | void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue, |
| 316 | enum queue_stop_reason reason) |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 317 | { |
| 318 | struct ieee80211_local *local = hw_to_local(hw); |
| 319 | unsigned long flags; |
| 320 | |
| 321 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 322 | __ieee80211_stop_queue(hw, queue, reason); |
| 323 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 324 | } |
| 325 | |
| 326 | void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue) |
| 327 | { |
| 328 | ieee80211_stop_queue_by_reason(hw, queue, |
| 329 | IEEE80211_QUEUE_STOP_REASON_DRIVER); |
| 330 | } |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 331 | EXPORT_SYMBOL(ieee80211_stop_queue); |
| 332 | |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 333 | void ieee80211_add_pending_skb(struct ieee80211_local *local, |
| 334 | struct sk_buff *skb) |
| 335 | { |
| 336 | struct ieee80211_hw *hw = &local->hw; |
| 337 | unsigned long flags; |
| 338 | int queue = skb_get_queue_mapping(skb); |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 339 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 340 | |
| 341 | if (WARN_ON(!info->control.vif)) { |
Roel Kluin | 0819663 | 2009-10-06 15:52:35 +0200 | [diff] [blame] | 342 | kfree_skb(skb); |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 343 | return; |
| 344 | } |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 345 | |
| 346 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 347 | __ieee80211_stop_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD); |
Johannes Berg | 3b8d81e | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 348 | __skb_queue_tail(&local->pending[queue], skb); |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 349 | __ieee80211_wake_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD); |
| 350 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 351 | } |
| 352 | |
| 353 | int ieee80211_add_pending_skbs(struct ieee80211_local *local, |
| 354 | struct sk_buff_head *skbs) |
| 355 | { |
| 356 | struct ieee80211_hw *hw = &local->hw; |
| 357 | struct sk_buff *skb; |
| 358 | unsigned long flags; |
| 359 | int queue, ret = 0, i; |
| 360 | |
| 361 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 362 | for (i = 0; i < hw->queues; i++) |
| 363 | __ieee80211_stop_queue(hw, i, |
| 364 | IEEE80211_QUEUE_STOP_REASON_SKB_ADD); |
| 365 | |
| 366 | while ((skb = skb_dequeue(skbs))) { |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 367 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 368 | |
| 369 | if (WARN_ON(!info->control.vif)) { |
Roel Kluin | 0819663 | 2009-10-06 15:52:35 +0200 | [diff] [blame] | 370 | kfree_skb(skb); |
Johannes Berg | a7bc376 | 2009-07-27 10:33:31 +0200 | [diff] [blame] | 371 | continue; |
| 372 | } |
| 373 | |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 374 | ret++; |
| 375 | queue = skb_get_queue_mapping(skb); |
Johannes Berg | 3b8d81e | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 376 | __skb_queue_tail(&local->pending[queue], skb); |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 377 | } |
| 378 | |
Johannes Berg | 3b8d81e | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 379 | for (i = 0; i < hw->queues; i++) |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 380 | __ieee80211_wake_queue(hw, i, |
| 381 | IEEE80211_QUEUE_STOP_REASON_SKB_ADD); |
Johannes Berg | 8f77f38 | 2009-06-07 21:58:37 +0200 | [diff] [blame] | 382 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 383 | |
| 384 | return ret; |
| 385 | } |
| 386 | |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 387 | void ieee80211_stop_queues_by_reason(struct ieee80211_hw *hw, |
| 388 | enum queue_stop_reason reason) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 389 | { |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 390 | struct ieee80211_local *local = hw_to_local(hw); |
| 391 | unsigned long flags; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 392 | int i; |
| 393 | |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 394 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 395 | |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 396 | for (i = 0; i < hw->queues; i++) |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 397 | __ieee80211_stop_queue(hw, i, reason); |
| 398 | |
| 399 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 400 | } |
| 401 | |
| 402 | void ieee80211_stop_queues(struct ieee80211_hw *hw) |
| 403 | { |
| 404 | ieee80211_stop_queues_by_reason(hw, |
| 405 | IEEE80211_QUEUE_STOP_REASON_DRIVER); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 406 | } |
| 407 | EXPORT_SYMBOL(ieee80211_stop_queues); |
| 408 | |
Tomas Winkler | 92ab853 | 2008-07-24 21:02:04 +0300 | [diff] [blame] | 409 | int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue) |
| 410 | { |
| 411 | struct ieee80211_local *local = hw_to_local(hw); |
Johannes Berg | 3b8d81e | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 412 | unsigned long flags; |
| 413 | int ret; |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 414 | |
Johannes Berg | e4e72fb | 2009-03-23 17:28:42 +0100 | [diff] [blame] | 415 | if (WARN_ON(queue >= hw->queues)) |
| 416 | return true; |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 417 | |
Johannes Berg | 3b8d81e | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 418 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 419 | ret = !!local->queue_stop_reasons[queue]; |
| 420 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 421 | return ret; |
Tomas Winkler | 92ab853 | 2008-07-24 21:02:04 +0300 | [diff] [blame] | 422 | } |
| 423 | EXPORT_SYMBOL(ieee80211_queue_stopped); |
| 424 | |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 425 | void ieee80211_wake_queues_by_reason(struct ieee80211_hw *hw, |
| 426 | enum queue_stop_reason reason) |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 427 | { |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 428 | struct ieee80211_local *local = hw_to_local(hw); |
| 429 | unsigned long flags; |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 430 | int i; |
| 431 | |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 432 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 433 | |
Johannes Berg | e4e72fb | 2009-03-23 17:28:42 +0100 | [diff] [blame] | 434 | for (i = 0; i < hw->queues; i++) |
Kalle Valo | ce7c911 | 2008-12-18 23:35:20 +0200 | [diff] [blame] | 435 | __ieee80211_wake_queue(hw, i, reason); |
| 436 | |
| 437 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 438 | } |
| 439 | |
| 440 | void ieee80211_wake_queues(struct ieee80211_hw *hw) |
| 441 | { |
| 442 | ieee80211_wake_queues_by_reason(hw, IEEE80211_QUEUE_STOP_REASON_DRIVER); |
Johannes Berg | c2d1560 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 443 | } |
| 444 | EXPORT_SYMBOL(ieee80211_wake_queues); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 445 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 446 | void ieee80211_iterate_active_interfaces( |
| 447 | struct ieee80211_hw *hw, |
| 448 | void (*iterator)(void *data, u8 *mac, |
| 449 | struct ieee80211_vif *vif), |
| 450 | void *data) |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 451 | { |
| 452 | struct ieee80211_local *local = hw_to_local(hw); |
| 453 | struct ieee80211_sub_if_data *sdata; |
| 454 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 455 | mutex_lock(&local->iflist_mtx); |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 456 | |
| 457 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 458 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 459 | case __NL80211_IFTYPE_AFTER_LAST: |
| 460 | case NL80211_IFTYPE_UNSPECIFIED: |
| 461 | case NL80211_IFTYPE_MONITOR: |
| 462 | case NL80211_IFTYPE_AP_VLAN: |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 463 | continue; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 464 | case NL80211_IFTYPE_AP: |
| 465 | case NL80211_IFTYPE_STATION: |
| 466 | case NL80211_IFTYPE_ADHOC: |
| 467 | case NL80211_IFTYPE_WDS: |
| 468 | case NL80211_IFTYPE_MESH_POINT: |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 469 | break; |
| 470 | } |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 471 | if (netif_running(sdata->dev)) |
| 472 | iterator(data, sdata->dev->dev_addr, |
| 473 | &sdata->vif); |
| 474 | } |
| 475 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 476 | mutex_unlock(&local->iflist_mtx); |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 477 | } |
| 478 | EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces); |
| 479 | |
| 480 | void ieee80211_iterate_active_interfaces_atomic( |
| 481 | struct ieee80211_hw *hw, |
| 482 | void (*iterator)(void *data, u8 *mac, |
| 483 | struct ieee80211_vif *vif), |
| 484 | void *data) |
| 485 | { |
| 486 | struct ieee80211_local *local = hw_to_local(hw); |
| 487 | struct ieee80211_sub_if_data *sdata; |
| 488 | |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 489 | rcu_read_lock(); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 490 | |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 491 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 492 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 493 | case __NL80211_IFTYPE_AFTER_LAST: |
| 494 | case NL80211_IFTYPE_UNSPECIFIED: |
| 495 | case NL80211_IFTYPE_MONITOR: |
| 496 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 497 | continue; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 498 | case NL80211_IFTYPE_AP: |
| 499 | case NL80211_IFTYPE_STATION: |
| 500 | case NL80211_IFTYPE_ADHOC: |
| 501 | case NL80211_IFTYPE_WDS: |
| 502 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 503 | break; |
| 504 | } |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 505 | if (netif_running(sdata->dev)) |
| 506 | iterator(data, sdata->dev->dev_addr, |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 507 | &sdata->vif); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 508 | } |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 509 | |
| 510 | rcu_read_unlock(); |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 511 | } |
Ivo van Doorn | 2f561fe | 2008-05-10 13:40:49 +0200 | [diff] [blame] | 512 | EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic); |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 513 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 514 | /* |
| 515 | * Nothing should have been stuffed into the workqueue during |
| 516 | * the suspend->resume cycle. If this WARN is seen then there |
| 517 | * is a bug with either the driver suspend or something in |
| 518 | * mac80211 stuffing into the workqueue which we haven't yet |
| 519 | * cleared during mac80211's suspend cycle. |
| 520 | */ |
| 521 | static bool ieee80211_can_queue_work(struct ieee80211_local *local) |
| 522 | { |
Johannes Berg | ceb99fe | 2009-11-19 14:29:39 +0100 | [diff] [blame] | 523 | if (WARN(local->suspended && !local->resuming, |
| 524 | "queueing ieee80211 work while going to suspend\n")) |
| 525 | return false; |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 526 | |
| 527 | return true; |
| 528 | } |
| 529 | |
| 530 | void ieee80211_queue_work(struct ieee80211_hw *hw, struct work_struct *work) |
| 531 | { |
| 532 | struct ieee80211_local *local = hw_to_local(hw); |
| 533 | |
| 534 | if (!ieee80211_can_queue_work(local)) |
| 535 | return; |
| 536 | |
| 537 | queue_work(local->workqueue, work); |
| 538 | } |
| 539 | EXPORT_SYMBOL(ieee80211_queue_work); |
| 540 | |
| 541 | void ieee80211_queue_delayed_work(struct ieee80211_hw *hw, |
| 542 | struct delayed_work *dwork, |
| 543 | unsigned long delay) |
| 544 | { |
| 545 | struct ieee80211_local *local = hw_to_local(hw); |
| 546 | |
| 547 | if (!ieee80211_can_queue_work(local)) |
| 548 | return; |
| 549 | |
| 550 | queue_delayed_work(local->workqueue, dwork, delay); |
| 551 | } |
| 552 | EXPORT_SYMBOL(ieee80211_queue_delayed_work); |
| 553 | |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 554 | void ieee802_11_parse_elems(u8 *start, size_t len, |
| 555 | struct ieee802_11_elems *elems) |
| 556 | { |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 557 | ieee802_11_parse_elems_crc(start, len, elems, 0, 0); |
| 558 | } |
| 559 | |
| 560 | u32 ieee802_11_parse_elems_crc(u8 *start, size_t len, |
| 561 | struct ieee802_11_elems *elems, |
| 562 | u64 filter, u32 crc) |
| 563 | { |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 564 | size_t left = len; |
| 565 | u8 *pos = start; |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 566 | bool calc_crc = filter != 0; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 567 | |
| 568 | memset(elems, 0, sizeof(*elems)); |
| 569 | elems->ie_start = start; |
| 570 | elems->total_len = len; |
| 571 | |
| 572 | while (left >= 2) { |
| 573 | u8 id, elen; |
| 574 | |
| 575 | id = *pos++; |
| 576 | elen = *pos++; |
| 577 | left -= 2; |
| 578 | |
| 579 | if (elen > left) |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 580 | break; |
| 581 | |
Vasanthakumar Thiagarajan | 1814077 | 2009-12-04 17:41:34 +0530 | [diff] [blame^] | 582 | if (calc_crc && id < 64 && (filter & (1ULL << id))) |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 583 | crc = crc32_be(crc, pos - 2, elen + 2); |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 584 | |
| 585 | switch (id) { |
| 586 | case WLAN_EID_SSID: |
| 587 | elems->ssid = pos; |
| 588 | elems->ssid_len = elen; |
| 589 | break; |
| 590 | case WLAN_EID_SUPP_RATES: |
| 591 | elems->supp_rates = pos; |
| 592 | elems->supp_rates_len = elen; |
| 593 | break; |
| 594 | case WLAN_EID_FH_PARAMS: |
| 595 | elems->fh_params = pos; |
| 596 | elems->fh_params_len = elen; |
| 597 | break; |
| 598 | case WLAN_EID_DS_PARAMS: |
| 599 | elems->ds_params = pos; |
| 600 | elems->ds_params_len = elen; |
| 601 | break; |
| 602 | case WLAN_EID_CF_PARAMS: |
| 603 | elems->cf_params = pos; |
| 604 | elems->cf_params_len = elen; |
| 605 | break; |
| 606 | case WLAN_EID_TIM: |
Johannes Berg | e7ec86f | 2009-04-18 17:33:24 +0200 | [diff] [blame] | 607 | if (elen >= sizeof(struct ieee80211_tim_ie)) { |
| 608 | elems->tim = (void *)pos; |
| 609 | elems->tim_len = elen; |
| 610 | } |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 611 | break; |
| 612 | case WLAN_EID_IBSS_PARAMS: |
| 613 | elems->ibss_params = pos; |
| 614 | elems->ibss_params_len = elen; |
| 615 | break; |
| 616 | case WLAN_EID_CHALLENGE: |
| 617 | elems->challenge = pos; |
| 618 | elems->challenge_len = elen; |
| 619 | break; |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 620 | case WLAN_EID_VENDOR_SPECIFIC: |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 621 | if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 && |
| 622 | pos[2] == 0xf2) { |
| 623 | /* Microsoft OUI (00:50:F2) */ |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 624 | |
| 625 | if (calc_crc) |
| 626 | crc = crc32_be(crc, pos - 2, elen + 2); |
| 627 | |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 628 | if (pos[3] == 1) { |
| 629 | /* OUI Type 1 - WPA IE */ |
| 630 | elems->wpa = pos; |
| 631 | elems->wpa_len = elen; |
| 632 | } else if (elen >= 5 && pos[3] == 2) { |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 633 | /* OUI Type 2 - WMM IE */ |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 634 | if (pos[4] == 0) { |
| 635 | elems->wmm_info = pos; |
| 636 | elems->wmm_info_len = elen; |
| 637 | } else if (pos[4] == 1) { |
| 638 | elems->wmm_param = pos; |
| 639 | elems->wmm_param_len = elen; |
| 640 | } |
| 641 | } |
| 642 | } |
| 643 | break; |
| 644 | case WLAN_EID_RSN: |
| 645 | elems->rsn = pos; |
| 646 | elems->rsn_len = elen; |
| 647 | break; |
| 648 | case WLAN_EID_ERP_INFO: |
| 649 | elems->erp_info = pos; |
| 650 | elems->erp_info_len = elen; |
| 651 | break; |
| 652 | case WLAN_EID_EXT_SUPP_RATES: |
| 653 | elems->ext_supp_rates = pos; |
| 654 | elems->ext_supp_rates_len = elen; |
| 655 | break; |
| 656 | case WLAN_EID_HT_CAPABILITY: |
Johannes Berg | 0991481 | 2008-10-07 19:31:17 +0200 | [diff] [blame] | 657 | if (elen >= sizeof(struct ieee80211_ht_cap)) |
| 658 | elems->ht_cap_elem = (void *)pos; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 659 | break; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 660 | case WLAN_EID_HT_INFORMATION: |
| 661 | if (elen >= sizeof(struct ieee80211_ht_info)) |
Johannes Berg | 0991481 | 2008-10-07 19:31:17 +0200 | [diff] [blame] | 662 | elems->ht_info_elem = (void *)pos; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 663 | break; |
| 664 | case WLAN_EID_MESH_ID: |
| 665 | elems->mesh_id = pos; |
| 666 | elems->mesh_id_len = elen; |
| 667 | break; |
| 668 | case WLAN_EID_MESH_CONFIG: |
Rui Paulo | 136cfa2 | 2009-11-18 18:40:00 +0000 | [diff] [blame] | 669 | if (elen >= sizeof(struct ieee80211_meshconf_ie)) |
| 670 | elems->mesh_config = (void *)pos; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 671 | break; |
| 672 | case WLAN_EID_PEER_LINK: |
| 673 | elems->peer_link = pos; |
| 674 | elems->peer_link_len = elen; |
| 675 | break; |
| 676 | case WLAN_EID_PREQ: |
| 677 | elems->preq = pos; |
| 678 | elems->preq_len = elen; |
| 679 | break; |
| 680 | case WLAN_EID_PREP: |
| 681 | elems->prep = pos; |
| 682 | elems->prep_len = elen; |
| 683 | break; |
| 684 | case WLAN_EID_PERR: |
| 685 | elems->perr = pos; |
| 686 | elems->perr_len = elen; |
| 687 | break; |
Rui Paulo | 90a5e16 | 2009-11-11 00:01:31 +0000 | [diff] [blame] | 688 | case WLAN_EID_RANN: |
| 689 | if (elen >= sizeof(struct ieee80211_rann_ie)) |
| 690 | elems->rann = (void *)pos; |
| 691 | break; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 692 | case WLAN_EID_CHANNEL_SWITCH: |
| 693 | elems->ch_switch_elem = pos; |
| 694 | elems->ch_switch_elem_len = elen; |
| 695 | break; |
| 696 | case WLAN_EID_QUIET: |
| 697 | if (!elems->quiet_elem) { |
| 698 | elems->quiet_elem = pos; |
| 699 | elems->quiet_elem_len = elen; |
| 700 | } |
| 701 | elems->num_of_quiet_elem++; |
| 702 | break; |
| 703 | case WLAN_EID_COUNTRY: |
| 704 | elems->country_elem = pos; |
| 705 | elems->country_elem_len = elen; |
| 706 | break; |
| 707 | case WLAN_EID_PWR_CONSTRAINT: |
| 708 | elems->pwr_constr_elem = pos; |
| 709 | elems->pwr_constr_elem_len = elen; |
| 710 | break; |
Jouni Malinen | f797eb7 | 2009-01-19 18:48:46 +0200 | [diff] [blame] | 711 | case WLAN_EID_TIMEOUT_INTERVAL: |
| 712 | elems->timeout_int = pos; |
| 713 | elems->timeout_int_len = elen; |
Jouni Malinen | 63a5ab8 | 2009-01-08 13:32:09 +0200 | [diff] [blame] | 714 | break; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 715 | default: |
| 716 | break; |
| 717 | } |
| 718 | |
| 719 | left -= elen; |
| 720 | pos += elen; |
| 721 | } |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 722 | |
| 723 | return crc; |
Johannes Berg | 37ffc8d | 2008-09-08 16:40:36 +0200 | [diff] [blame] | 724 | } |
Johannes Berg | 5825fe1 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 725 | |
| 726 | void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata) |
| 727 | { |
| 728 | struct ieee80211_local *local = sdata->local; |
| 729 | struct ieee80211_tx_queue_params qparam; |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 730 | int queue; |
| 731 | bool use_11b; |
| 732 | int aCWmin, aCWmax; |
Johannes Berg | 5825fe1 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 733 | |
| 734 | if (!local->ops->conf_tx) |
| 735 | return; |
| 736 | |
| 737 | memset(&qparam, 0, sizeof(qparam)); |
| 738 | |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 739 | use_11b = (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) && |
| 740 | !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE); |
Johannes Berg | 5825fe1 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 741 | |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 742 | for (queue = 0; queue < local_to_hw(local)->queues; queue++) { |
| 743 | /* Set defaults according to 802.11-2007 Table 7-37 */ |
| 744 | aCWmax = 1023; |
| 745 | if (use_11b) |
| 746 | aCWmin = 31; |
| 747 | else |
| 748 | aCWmin = 15; |
Johannes Berg | 5825fe1 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 749 | |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 750 | switch (queue) { |
| 751 | case 3: /* AC_BK */ |
Johannes Berg | 7ba10a8 | 2009-05-27 09:41:06 +0200 | [diff] [blame] | 752 | qparam.cw_max = aCWmax; |
| 753 | qparam.cw_min = aCWmin; |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 754 | qparam.txop = 0; |
| 755 | qparam.aifs = 7; |
| 756 | break; |
| 757 | default: /* never happens but let's not leave undefined */ |
| 758 | case 2: /* AC_BE */ |
Johannes Berg | 7ba10a8 | 2009-05-27 09:41:06 +0200 | [diff] [blame] | 759 | qparam.cw_max = aCWmax; |
| 760 | qparam.cw_min = aCWmin; |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 761 | qparam.txop = 0; |
| 762 | qparam.aifs = 3; |
| 763 | break; |
| 764 | case 1: /* AC_VI */ |
| 765 | qparam.cw_max = aCWmin; |
| 766 | qparam.cw_min = (aCWmin + 1) / 2 - 1; |
| 767 | if (use_11b) |
| 768 | qparam.txop = 6016/32; |
| 769 | else |
| 770 | qparam.txop = 3008/32; |
| 771 | qparam.aifs = 2; |
| 772 | break; |
| 773 | case 0: /* AC_VO */ |
| 774 | qparam.cw_max = (aCWmin + 1) / 2 - 1; |
| 775 | qparam.cw_min = (aCWmin + 1) / 4 - 1; |
| 776 | if (use_11b) |
| 777 | qparam.txop = 3264/32; |
| 778 | else |
| 779 | qparam.txop = 1504/32; |
| 780 | qparam.aifs = 2; |
| 781 | break; |
| 782 | } |
Johannes Berg | 5825fe1 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 783 | |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 784 | drv_conf_tx(local, queue, &qparam); |
| 785 | } |
Johannes Berg | 5825fe1 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 786 | } |
Johannes Berg | e50db65 | 2008-09-09 15:07:09 +0200 | [diff] [blame] | 787 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 788 | void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata, |
| 789 | const size_t supp_rates_len, |
| 790 | const u8 *supp_rates) |
| 791 | { |
| 792 | struct ieee80211_local *local = sdata->local; |
| 793 | int i, have_higher_than_11mbit = 0; |
| 794 | |
| 795 | /* cf. IEEE 802.11 9.2.12 */ |
| 796 | for (i = 0; i < supp_rates_len; i++) |
| 797 | if ((supp_rates[i] & 0x7f) * 5 > 110) |
| 798 | have_higher_than_11mbit = 1; |
| 799 | |
| 800 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 801 | have_higher_than_11mbit) |
| 802 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; |
| 803 | else |
| 804 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; |
| 805 | |
| 806 | ieee80211_set_wmm_default(sdata); |
| 807 | } |
| 808 | |
Johannes Berg | 881d948 | 2009-01-21 15:13:48 +0100 | [diff] [blame] | 809 | u32 ieee80211_mandatory_rates(struct ieee80211_local *local, |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 810 | enum ieee80211_band band) |
| 811 | { |
| 812 | struct ieee80211_supported_band *sband; |
| 813 | struct ieee80211_rate *bitrates; |
Johannes Berg | 881d948 | 2009-01-21 15:13:48 +0100 | [diff] [blame] | 814 | u32 mandatory_rates; |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 815 | enum ieee80211_rate_flags mandatory_flag; |
| 816 | int i; |
| 817 | |
| 818 | sband = local->hw.wiphy->bands[band]; |
| 819 | if (!sband) { |
| 820 | WARN_ON(1); |
| 821 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 822 | } |
| 823 | |
| 824 | if (band == IEEE80211_BAND_2GHZ) |
| 825 | mandatory_flag = IEEE80211_RATE_MANDATORY_B; |
| 826 | else |
| 827 | mandatory_flag = IEEE80211_RATE_MANDATORY_A; |
| 828 | |
| 829 | bitrates = sband->bitrates; |
| 830 | mandatory_rates = 0; |
| 831 | for (i = 0; i < sband->n_bitrates; i++) |
| 832 | if (bitrates[i].flags & mandatory_flag) |
| 833 | mandatory_rates |= BIT(i); |
| 834 | return mandatory_rates; |
| 835 | } |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 836 | |
| 837 | void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata, |
| 838 | u16 transaction, u16 auth_alg, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 839 | u8 *extra, size_t extra_len, const u8 *bssid, |
| 840 | const u8 *key, u8 key_len, u8 key_idx) |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 841 | { |
| 842 | struct ieee80211_local *local = sdata->local; |
| 843 | struct sk_buff *skb; |
| 844 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 845 | int err; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 846 | |
| 847 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
Jouni Malinen | 65fc73a | 2009-03-20 21:21:16 +0200 | [diff] [blame] | 848 | sizeof(*mgmt) + 6 + extra_len); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 849 | if (!skb) { |
| 850 | printk(KERN_DEBUG "%s: failed to allocate buffer for auth " |
| 851 | "frame\n", sdata->dev->name); |
| 852 | return; |
| 853 | } |
| 854 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 855 | |
| 856 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6); |
| 857 | memset(mgmt, 0, 24 + 6); |
| 858 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 859 | IEEE80211_STYPE_AUTH); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 860 | memcpy(mgmt->da, bssid, ETH_ALEN); |
| 861 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 862 | memcpy(mgmt->bssid, bssid, ETH_ALEN); |
| 863 | mgmt->u.auth.auth_alg = cpu_to_le16(auth_alg); |
| 864 | mgmt->u.auth.auth_transaction = cpu_to_le16(transaction); |
| 865 | mgmt->u.auth.status_code = cpu_to_le16(0); |
| 866 | if (extra) |
| 867 | memcpy(skb_put(skb, extra_len), extra, extra_len); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 868 | |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 869 | if (auth_alg == WLAN_AUTH_SHARED_KEY && transaction == 3) { |
| 870 | mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
| 871 | err = ieee80211_wep_encrypt(local, skb, key, key_len, key_idx); |
| 872 | WARN_ON(err); |
| 873 | } |
| 874 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 875 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 876 | ieee80211_tx_skb(sdata, skb); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 877 | } |
| 878 | |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 879 | int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer, |
Johannes Berg | 4d36ec5 | 2009-10-27 20:59:55 +0100 | [diff] [blame] | 880 | const u8 *ie, size_t ie_len, |
| 881 | enum ieee80211_band band) |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 882 | { |
| 883 | struct ieee80211_supported_band *sband; |
| 884 | u8 *pos, *supp_rates_len, *esupp_rates_len = NULL; |
| 885 | int i; |
| 886 | |
Johannes Berg | 4d36ec5 | 2009-10-27 20:59:55 +0100 | [diff] [blame] | 887 | sband = local->hw.wiphy->bands[band]; |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 888 | |
| 889 | pos = buffer; |
| 890 | |
| 891 | *pos++ = WLAN_EID_SUPP_RATES; |
| 892 | supp_rates_len = pos; |
| 893 | *pos++ = 0; |
| 894 | |
| 895 | for (i = 0; i < sband->n_bitrates; i++) { |
| 896 | struct ieee80211_rate *rate = &sband->bitrates[i]; |
| 897 | |
| 898 | if (esupp_rates_len) { |
| 899 | *esupp_rates_len += 1; |
| 900 | } else if (*supp_rates_len == 8) { |
| 901 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
| 902 | esupp_rates_len = pos; |
| 903 | *pos++ = 1; |
| 904 | } else |
| 905 | *supp_rates_len += 1; |
| 906 | |
| 907 | *pos++ = rate->bitrate / 5; |
| 908 | } |
| 909 | |
Johannes Berg | 5ef2d41 | 2009-03-31 12:12:07 +0200 | [diff] [blame] | 910 | if (sband->ht_cap.ht_supported) { |
| 911 | __le16 tmp = cpu_to_le16(sband->ht_cap.cap); |
| 912 | |
| 913 | *pos++ = WLAN_EID_HT_CAPABILITY; |
| 914 | *pos++ = sizeof(struct ieee80211_ht_cap); |
| 915 | memset(pos, 0, sizeof(struct ieee80211_ht_cap)); |
| 916 | memcpy(pos, &tmp, sizeof(u16)); |
| 917 | pos += sizeof(u16); |
| 918 | /* TODO: needs a define here for << 2 */ |
| 919 | *pos++ = sband->ht_cap.ampdu_factor | |
| 920 | (sband->ht_cap.ampdu_density << 2); |
| 921 | memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs)); |
| 922 | pos += sizeof(sband->ht_cap.mcs); |
| 923 | pos += 2 + 4 + 1; /* ext info, BF cap, antsel */ |
| 924 | } |
| 925 | |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 926 | /* |
| 927 | * If adding more here, adjust code in main.c |
| 928 | * that calculates local->scan_ies_len. |
| 929 | */ |
| 930 | |
| 931 | if (ie) { |
| 932 | memcpy(pos, ie, ie_len); |
| 933 | pos += ie_len; |
| 934 | } |
| 935 | |
| 936 | return pos - buffer; |
| 937 | } |
| 938 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 939 | void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst, |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 940 | const u8 *ssid, size_t ssid_len, |
| 941 | const u8 *ie, size_t ie_len) |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 942 | { |
| 943 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 944 | struct sk_buff *skb; |
| 945 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 946 | u8 *pos; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 947 | |
| 948 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) + 200 + |
Jouni Malinen | 65fc73a | 2009-03-20 21:21:16 +0200 | [diff] [blame] | 949 | ie_len); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 950 | if (!skb) { |
| 951 | printk(KERN_DEBUG "%s: failed to allocate buffer for probe " |
| 952 | "request\n", sdata->dev->name); |
| 953 | return; |
| 954 | } |
| 955 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 956 | |
| 957 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 958 | memset(mgmt, 0, 24); |
| 959 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 960 | IEEE80211_STYPE_PROBE_REQ); |
| 961 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 962 | if (dst) { |
| 963 | memcpy(mgmt->da, dst, ETH_ALEN); |
| 964 | memcpy(mgmt->bssid, dst, ETH_ALEN); |
| 965 | } else { |
| 966 | memset(mgmt->da, 0xff, ETH_ALEN); |
| 967 | memset(mgmt->bssid, 0xff, ETH_ALEN); |
| 968 | } |
| 969 | pos = skb_put(skb, 2 + ssid_len); |
| 970 | *pos++ = WLAN_EID_SSID; |
| 971 | *pos++ = ssid_len; |
| 972 | memcpy(pos, ssid, ssid_len); |
Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 973 | pos += ssid_len; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 974 | |
Johannes Berg | 4d36ec5 | 2009-10-27 20:59:55 +0100 | [diff] [blame] | 975 | skb_put(skb, ieee80211_build_preq_ies(local, pos, ie, ie_len, |
| 976 | local->hw.conf.channel->band)); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 977 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 978 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 979 | ieee80211_tx_skb(sdata, skb); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | u32 ieee80211_sta_get_rates(struct ieee80211_local *local, |
| 983 | struct ieee802_11_elems *elems, |
| 984 | enum ieee80211_band band) |
| 985 | { |
| 986 | struct ieee80211_supported_band *sband; |
| 987 | struct ieee80211_rate *bitrates; |
| 988 | size_t num_rates; |
| 989 | u32 supp_rates; |
| 990 | int i, j; |
| 991 | sband = local->hw.wiphy->bands[band]; |
| 992 | |
| 993 | if (!sband) { |
| 994 | WARN_ON(1); |
| 995 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 996 | } |
| 997 | |
| 998 | bitrates = sband->bitrates; |
| 999 | num_rates = sband->n_bitrates; |
| 1000 | supp_rates = 0; |
| 1001 | for (i = 0; i < elems->supp_rates_len + |
| 1002 | elems->ext_supp_rates_len; i++) { |
| 1003 | u8 rate = 0; |
| 1004 | int own_rate; |
| 1005 | if (i < elems->supp_rates_len) |
| 1006 | rate = elems->supp_rates[i]; |
| 1007 | else if (elems->ext_supp_rates) |
| 1008 | rate = elems->ext_supp_rates |
| 1009 | [i - elems->supp_rates_len]; |
| 1010 | own_rate = 5 * (rate & 0x7f); |
| 1011 | for (j = 0; j < num_rates; j++) |
| 1012 | if (bitrates[j].bitrate == own_rate) |
| 1013 | supp_rates |= BIT(j); |
| 1014 | } |
| 1015 | return supp_rates; |
| 1016 | } |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1017 | |
Johannes Berg | 84f6a01 | 2009-08-20 20:02:20 +0200 | [diff] [blame] | 1018 | void ieee80211_stop_device(struct ieee80211_local *local) |
| 1019 | { |
| 1020 | ieee80211_led_radio(local, false); |
| 1021 | |
| 1022 | cancel_work_sync(&local->reconfig_filter); |
| 1023 | drv_stop(local); |
| 1024 | |
| 1025 | flush_workqueue(local->workqueue); |
| 1026 | } |
| 1027 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1028 | int ieee80211_reconfig(struct ieee80211_local *local) |
| 1029 | { |
| 1030 | struct ieee80211_hw *hw = &local->hw; |
| 1031 | struct ieee80211_sub_if_data *sdata; |
| 1032 | struct ieee80211_if_init_conf conf; |
| 1033 | struct sta_info *sta; |
| 1034 | unsigned long flags; |
| 1035 | int res; |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 1036 | |
Johannes Berg | ceb99fe | 2009-11-19 14:29:39 +0100 | [diff] [blame] | 1037 | if (local->suspended) |
| 1038 | local->resuming = true; |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1039 | |
| 1040 | /* restart hardware */ |
| 1041 | if (local->open_count) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1042 | res = drv_start(local); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1043 | |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 1044 | ieee80211_led_radio(local, true); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | /* add interfaces */ |
| 1048 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1049 | if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 1050 | sdata->vif.type != NL80211_IFTYPE_MONITOR && |
| 1051 | netif_running(sdata->dev)) { |
| 1052 | conf.vif = &sdata->vif; |
| 1053 | conf.type = sdata->vif.type; |
| 1054 | conf.mac_addr = sdata->dev->dev_addr; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1055 | res = drv_add_interface(local, &conf); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | /* add STAs back */ |
| 1060 | if (local->ops->sta_notify) { |
| 1061 | spin_lock_irqsave(&local->sta_lock, flags); |
| 1062 | list_for_each_entry(sta, &local->sta_list, list) { |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 1063 | sdata = sta->sdata; |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1064 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 1065 | sdata = container_of(sdata->bss, |
| 1066 | struct ieee80211_sub_if_data, |
| 1067 | u.ap); |
| 1068 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1069 | drv_sta_notify(local, &sdata->vif, STA_NOTIFY_ADD, |
| 1070 | &sta->sta); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1071 | } |
| 1072 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 1073 | } |
| 1074 | |
| 1075 | /* Clear Suspend state so that ADDBA requests can be processed */ |
| 1076 | |
| 1077 | rcu_read_lock(); |
| 1078 | |
| 1079 | if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) { |
| 1080 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 1081 | clear_sta_flags(sta, WLAN_STA_SUSPEND); |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | rcu_read_unlock(); |
| 1086 | |
| 1087 | /* setup RTS threshold */ |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1088 | drv_set_rts_threshold(local, hw->wiphy->rts_threshold); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1089 | |
| 1090 | /* reconfigure hardware */ |
| 1091 | ieee80211_hw_config(local, ~0); |
| 1092 | |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1093 | ieee80211_configure_filter(local); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1094 | |
| 1095 | /* Finally also reconfigure all the BSS information */ |
| 1096 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1097 | u32 changed = ~0; |
| 1098 | if (!netif_running(sdata->dev)) |
| 1099 | continue; |
| 1100 | switch (sdata->vif.type) { |
| 1101 | case NL80211_IFTYPE_STATION: |
| 1102 | /* disable beacon change bits */ |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1103 | changed &= ~(BSS_CHANGED_BEACON | |
| 1104 | BSS_CHANGED_BEACON_ENABLED); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1105 | /* fall through */ |
| 1106 | case NL80211_IFTYPE_ADHOC: |
| 1107 | case NL80211_IFTYPE_AP: |
| 1108 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1109 | ieee80211_bss_info_change_notify(sdata, changed); |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1110 | break; |
| 1111 | case NL80211_IFTYPE_WDS: |
| 1112 | break; |
| 1113 | case NL80211_IFTYPE_AP_VLAN: |
| 1114 | case NL80211_IFTYPE_MONITOR: |
| 1115 | /* ignore virtual */ |
| 1116 | break; |
| 1117 | case NL80211_IFTYPE_UNSPECIFIED: |
| 1118 | case __NL80211_IFTYPE_AFTER_LAST: |
| 1119 | WARN_ON(1); |
| 1120 | break; |
| 1121 | } |
| 1122 | } |
| 1123 | |
| 1124 | /* add back keys */ |
| 1125 | list_for_each_entry(sdata, &local->interfaces, list) |
| 1126 | if (netif_running(sdata->dev)) |
| 1127 | ieee80211_enable_keys(sdata); |
| 1128 | |
| 1129 | ieee80211_wake_queues_by_reason(hw, |
| 1130 | IEEE80211_QUEUE_STOP_REASON_SUSPEND); |
| 1131 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 1132 | /* |
| 1133 | * If this is for hw restart things are still running. |
| 1134 | * We may want to change that later, however. |
| 1135 | */ |
Johannes Berg | ceb99fe | 2009-11-19 14:29:39 +0100 | [diff] [blame] | 1136 | if (!local->suspended) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 1137 | return 0; |
| 1138 | |
| 1139 | #ifdef CONFIG_PM |
Johannes Berg | ceb99fe | 2009-11-19 14:29:39 +0100 | [diff] [blame] | 1140 | /* first set suspended false, then resuming */ |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 1141 | local->suspended = false; |
Johannes Berg | ceb99fe | 2009-11-19 14:29:39 +0100 | [diff] [blame] | 1142 | mb(); |
| 1143 | local->resuming = false; |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 1144 | |
| 1145 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1146 | switch(sdata->vif.type) { |
| 1147 | case NL80211_IFTYPE_STATION: |
| 1148 | ieee80211_sta_restart(sdata); |
| 1149 | break; |
| 1150 | case NL80211_IFTYPE_ADHOC: |
| 1151 | ieee80211_ibss_restart(sdata); |
| 1152 | break; |
| 1153 | case NL80211_IFTYPE_MESH_POINT: |
| 1154 | ieee80211_mesh_restart(sdata); |
| 1155 | break; |
| 1156 | default: |
| 1157 | break; |
| 1158 | } |
| 1159 | } |
| 1160 | |
| 1161 | add_timer(&local->sta_cleanup); |
| 1162 | |
| 1163 | spin_lock_irqsave(&local->sta_lock, flags); |
| 1164 | list_for_each_entry(sta, &local->sta_list, list) |
| 1165 | mesh_plink_restart(sta); |
| 1166 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 1167 | #else |
| 1168 | WARN_ON(1); |
| 1169 | #endif |
Johannes Berg | f2753dd | 2009-04-14 10:09:24 +0200 | [diff] [blame] | 1170 | return 0; |
| 1171 | } |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1172 | |