Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [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 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <net/mac80211.h> |
| 12 | #include <net/ieee80211_radiotap.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/skbuff.h> |
| 19 | #include <linux/etherdevice.h> |
| 20 | #include <linux/if_arp.h> |
| 21 | #include <linux/wireless.h> |
| 22 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 23 | #include <linux/bitmap.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 24 | #include <net/net_namespace.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 25 | #include <net/cfg80211.h> |
| 26 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 27 | #include "ieee80211_i.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 28 | #include "rate.h" |
Luis Carlos Cobo | f7a9214 | 2008-02-23 15:17:18 +0100 | [diff] [blame] | 29 | #include "mesh.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 30 | #include "wep.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 31 | #include "wme.h" |
| 32 | #include "aes_ccm.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 33 | #include "led.h" |
Michael Wu | e0eb685 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 34 | #include "cfg.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 35 | #include "debugfs.h" |
| 36 | #include "debugfs_netdev.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 37 | |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 38 | /* |
| 39 | * For seeing transmitted packets on monitor interfaces |
| 40 | * we have a radiotap header too. |
| 41 | */ |
| 42 | struct ieee80211_tx_status_rtap_hdr { |
| 43 | struct ieee80211_radiotap_header hdr; |
| 44 | __le16 tx_flags; |
| 45 | u8 data_retries; |
| 46 | } __attribute__ ((packed)); |
| 47 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 48 | /* common interface routines */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 49 | |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 50 | static int header_parse_80211(const struct sk_buff *skb, unsigned char *haddr) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 51 | { |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 52 | memcpy(haddr, skb_mac_header(skb) + 10, ETH_ALEN); /* addr2 */ |
| 53 | return ETH_ALEN; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 56 | /* must be called under mdev tx lock */ |
| 57 | static void ieee80211_configure_filter(struct ieee80211_local *local) |
| 58 | { |
| 59 | unsigned int changed_flags; |
| 60 | unsigned int new_flags = 0; |
| 61 | |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 62 | if (atomic_read(&local->iff_promiscs)) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 63 | new_flags |= FIF_PROMISC_IN_BSS; |
| 64 | |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 65 | if (atomic_read(&local->iff_allmultis)) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 66 | new_flags |= FIF_ALLMULTI; |
| 67 | |
| 68 | if (local->monitors) |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 69 | new_flags |= FIF_BCN_PRBRESP_PROMISC; |
| 70 | |
| 71 | if (local->fif_fcsfail) |
| 72 | new_flags |= FIF_FCSFAIL; |
| 73 | |
| 74 | if (local->fif_plcpfail) |
| 75 | new_flags |= FIF_PLCPFAIL; |
| 76 | |
| 77 | if (local->fif_control) |
| 78 | new_flags |= FIF_CONTROL; |
| 79 | |
| 80 | if (local->fif_other_bss) |
| 81 | new_flags |= FIF_OTHER_BSS; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 82 | |
| 83 | changed_flags = local->filter_flags ^ new_flags; |
| 84 | |
| 85 | /* be a bit nasty */ |
| 86 | new_flags |= (1<<31); |
| 87 | |
| 88 | local->ops->configure_filter(local_to_hw(local), |
| 89 | changed_flags, &new_flags, |
| 90 | local->mdev->mc_count, |
| 91 | local->mdev->mc_list); |
| 92 | |
| 93 | WARN_ON(new_flags & (1<<31)); |
| 94 | |
| 95 | local->filter_flags = new_flags & ~(1<<31); |
| 96 | } |
| 97 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 98 | /* master interface */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 99 | |
| 100 | static int ieee80211_master_open(struct net_device *dev) |
| 101 | { |
| 102 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 103 | struct ieee80211_sub_if_data *sdata; |
| 104 | int res = -EOPNOTSUPP; |
| 105 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 106 | /* we hold the RTNL here so can safely walk the list */ |
| 107 | list_for_each_entry(sdata, &local->interfaces, list) { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 108 | if (netif_running(sdata->dev)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 109 | res = 0; |
| 110 | break; |
| 111 | } |
| 112 | } |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 113 | |
| 114 | if (res) |
| 115 | return res; |
| 116 | |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 117 | netif_tx_start_all_queues(local->mdev); |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 118 | |
| 119 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static int ieee80211_master_stop(struct net_device *dev) |
| 123 | { |
| 124 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 125 | struct ieee80211_sub_if_data *sdata; |
| 126 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 127 | /* we hold the RTNL here so can safely walk the list */ |
| 128 | list_for_each_entry(sdata, &local->interfaces, list) |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 129 | if (netif_running(sdata->dev)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 130 | dev_close(sdata->dev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 131 | |
| 132 | return 0; |
| 133 | } |
| 134 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 135 | static void ieee80211_master_set_multicast_list(struct net_device *dev) |
| 136 | { |
| 137 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 138 | |
| 139 | ieee80211_configure_filter(local); |
| 140 | } |
| 141 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 142 | /* regular interfaces */ |
| 143 | |
| 144 | static int ieee80211_change_mtu(struct net_device *dev, int new_mtu) |
| 145 | { |
Luis Carlos Cobo | f7a9214 | 2008-02-23 15:17:18 +0100 | [diff] [blame] | 146 | int meshhdrlen; |
| 147 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 148 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 149 | meshhdrlen = (sdata->vif.type == NL80211_IFTYPE_MESH_POINT) ? 5 : 0; |
Luis Carlos Cobo | f7a9214 | 2008-02-23 15:17:18 +0100 | [diff] [blame] | 150 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 151 | /* FIX: what would be proper limits for MTU? |
| 152 | * This interface uses 802.3 frames. */ |
Luis Carlos Cobo | f7a9214 | 2008-02-23 15:17:18 +0100 | [diff] [blame] | 153 | if (new_mtu < 256 || |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 154 | new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6 - meshhdrlen) { |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 155 | return -EINVAL; |
| 156 | } |
| 157 | |
| 158 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 159 | printk(KERN_DEBUG "%s: setting MTU %d\n", dev->name, new_mtu); |
| 160 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 161 | dev->mtu = new_mtu; |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static inline int identical_mac_addr_allowed(int type1, int type2) |
| 166 | { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 167 | return type1 == NL80211_IFTYPE_MONITOR || |
| 168 | type2 == NL80211_IFTYPE_MONITOR || |
| 169 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) || |
| 170 | (type1 == NL80211_IFTYPE_WDS && |
| 171 | (type2 == NL80211_IFTYPE_WDS || |
| 172 | type2 == NL80211_IFTYPE_AP)) || |
| 173 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) || |
| 174 | (type1 == NL80211_IFTYPE_AP_VLAN && |
| 175 | (type2 == NL80211_IFTYPE_AP || |
| 176 | type2 == NL80211_IFTYPE_AP_VLAN)); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 177 | } |
| 178 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 179 | static int ieee80211_open(struct net_device *dev) |
| 180 | { |
| 181 | struct ieee80211_sub_if_data *sdata, *nsdata; |
| 182 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Tomas Winkler | fc32f92 | 2008-07-03 01:27:13 +0300 | [diff] [blame] | 183 | struct sta_info *sta; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 184 | struct ieee80211_if_init_conf conf; |
Tomas Winkler | fc32f92 | 2008-07-03 01:27:13 +0300 | [diff] [blame] | 185 | u32 changed = 0; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 186 | int res; |
Michael Buesch | ceffefd | 2008-02-10 14:16:52 +0100 | [diff] [blame] | 187 | bool need_hw_reconfig = 0; |
Luis Carlos Cobo | bdbe819 | 2008-08-14 10:40:48 -0700 | [diff] [blame] | 188 | u8 null_addr[ETH_ALEN] = {0}; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 189 | |
| 190 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 191 | |
Luis Carlos Cobo | bdbe819 | 2008-08-14 10:40:48 -0700 | [diff] [blame] | 192 | /* fail early if user set an invalid address */ |
| 193 | if (compare_ether_addr(dev->dev_addr, null_addr) && |
| 194 | !is_valid_ether_addr(dev->dev_addr)) |
| 195 | return -EADDRNOTAVAIL; |
| 196 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 197 | /* we hold the RTNL here so can safely walk the list */ |
| 198 | list_for_each_entry(nsdata, &local->interfaces, list) { |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 199 | struct net_device *ndev = nsdata->dev; |
| 200 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 201 | if (ndev != dev && netif_running(ndev)) { |
Johannes Berg | 665e8aa | 2008-02-21 01:10:07 +0100 | [diff] [blame] | 202 | /* |
| 203 | * Allow only a single IBSS interface to be up at any |
| 204 | * time. This is restricted because beacon distribution |
| 205 | * cannot work properly if both are in the same IBSS. |
| 206 | * |
| 207 | * To remove this restriction we'd have to disallow them |
| 208 | * from setting the same SSID on different IBSS interfaces |
| 209 | * belonging to the same hardware. Then, however, we're |
| 210 | * faced with having to adopt two different TSF timers... |
| 211 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 212 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC && |
| 213 | nsdata->vif.type == NL80211_IFTYPE_ADHOC) |
Johannes Berg | 665e8aa | 2008-02-21 01:10:07 +0100 | [diff] [blame] | 214 | return -EBUSY; |
| 215 | |
| 216 | /* |
Johannes Berg | 665e8aa | 2008-02-21 01:10:07 +0100 | [diff] [blame] | 217 | * The remaining checks are only performed for interfaces |
| 218 | * with the same MAC address. |
| 219 | */ |
| 220 | if (compare_ether_addr(dev->dev_addr, ndev->dev_addr)) |
| 221 | continue; |
| 222 | |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 223 | /* |
| 224 | * check whether it may have the same address |
| 225 | */ |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 226 | if (!identical_mac_addr_allowed(sdata->vif.type, |
| 227 | nsdata->vif.type)) |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 228 | return -ENOTUNIQ; |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 229 | |
| 230 | /* |
| 231 | * can only add VLANs to enabled APs |
| 232 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 233 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 234 | nsdata->vif.type == NL80211_IFTYPE_AP) |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 235 | sdata->bss = &nsdata->u.ap; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 236 | } |
| 237 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 238 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 239 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 240 | case NL80211_IFTYPE_WDS: |
Johannes Berg | e94e106 | 2008-04-24 14:16:36 +0200 | [diff] [blame] | 241 | if (!is_valid_ether_addr(sdata->u.wds.remote_addr)) |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 242 | return -ENOLINK; |
| 243 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 244 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 245 | if (!sdata->bss) |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 246 | return -ENOLINK; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 247 | list_add(&sdata->u.vlan.list, &sdata->bss->vlans); |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 248 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 249 | case NL80211_IFTYPE_AP: |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 250 | sdata->bss = &sdata->u.ap; |
| 251 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 252 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 253 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 254 | break; |
Luis Carlos Cobo | 8dbc172 | 2008-08-06 13:17:54 +0200 | [diff] [blame] | 255 | /* mesh ifaces must set allmulti to forward mcast traffic */ |
| 256 | atomic_inc(&local->iff_allmultis); |
| 257 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 258 | case NL80211_IFTYPE_STATION: |
| 259 | case NL80211_IFTYPE_MONITOR: |
| 260 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | fb1c1cd | 2007-09-26 15:19:43 +0200 | [diff] [blame] | 261 | /* no special treatment */ |
| 262 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 263 | case NL80211_IFTYPE_UNSPECIFIED: |
| 264 | case __NL80211_IFTYPE_AFTER_LAST: |
Johannes Berg | a289755 | 2007-09-28 14:01:25 +0200 | [diff] [blame] | 265 | /* cannot happen */ |
| 266 | WARN_ON(1); |
| 267 | break; |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 268 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 269 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 270 | if (local->open_count == 0) { |
| 271 | res = 0; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 272 | if (local->ops->start) |
| 273 | res = local->ops->start(local_to_hw(local)); |
| 274 | if (res) |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 275 | goto err_del_bss; |
Michael Buesch | ceffefd | 2008-02-10 14:16:52 +0100 | [diff] [blame] | 276 | need_hw_reconfig = 1; |
Ivo van Doorn | cdcb006f | 2008-01-07 19:45:24 +0100 | [diff] [blame] | 277 | ieee80211_led_radio(local, local->hw.conf.radio_enabled); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 278 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 279 | |
Luis Carlos Cobo | bdbe819 | 2008-08-14 10:40:48 -0700 | [diff] [blame] | 280 | /* |
| 281 | * Check all interfaces and copy the hopefully now-present |
| 282 | * MAC address to those that have the special null one. |
| 283 | */ |
| 284 | list_for_each_entry(nsdata, &local->interfaces, list) { |
| 285 | struct net_device *ndev = nsdata->dev; |
| 286 | |
| 287 | /* |
| 288 | * No need to check netif_running since we do not allow |
| 289 | * it to start up with this invalid address. |
| 290 | */ |
| 291 | if (compare_ether_addr(null_addr, ndev->dev_addr) == 0) |
| 292 | memcpy(ndev->dev_addr, |
| 293 | local->hw.wiphy->perm_addr, |
| 294 | ETH_ALEN); |
| 295 | } |
| 296 | |
| 297 | if (compare_ether_addr(null_addr, local->mdev->dev_addr) == 0) |
| 298 | memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, |
| 299 | ETH_ALEN); |
| 300 | |
| 301 | /* |
| 302 | * Validate the MAC address for this device. |
| 303 | */ |
| 304 | if (!is_valid_ether_addr(dev->dev_addr)) { |
| 305 | if (!local->open_count && local->ops->stop) |
| 306 | local->ops->stop(local_to_hw(local)); |
| 307 | return -EADDRNOTAVAIL; |
| 308 | } |
| 309 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 310 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 311 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 312 | /* no need to tell driver */ |
| 313 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 314 | case NL80211_IFTYPE_MONITOR: |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 315 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) { |
| 316 | local->cooked_mntrs++; |
| 317 | break; |
| 318 | } |
| 319 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 320 | /* must be before the call to ieee80211_configure_filter */ |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 321 | local->monitors++; |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 322 | if (local->monitors == 1) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 323 | local->hw.conf.flags |= IEEE80211_CONF_RADIOTAP; |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 324 | |
| 325 | if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL) |
| 326 | local->fif_fcsfail++; |
| 327 | if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL) |
| 328 | local->fif_plcpfail++; |
| 329 | if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL) |
| 330 | local->fif_control++; |
| 331 | if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS) |
| 332 | local->fif_other_bss++; |
| 333 | |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 334 | netif_addr_lock_bh(local->mdev); |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 335 | ieee80211_configure_filter(local); |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 336 | netif_addr_unlock_bh(local->mdev); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 337 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 338 | case NL80211_IFTYPE_STATION: |
| 339 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 340 | sdata->u.sta.flags &= ~IEEE80211_STA_PREV_BSSID_SET; |
| 341 | /* fall through */ |
| 342 | default: |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 343 | conf.vif = &sdata->vif; |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 344 | conf.type = sdata->vif.type; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 345 | conf.mac_addr = dev->dev_addr; |
| 346 | res = local->ops->add_interface(local_to_hw(local), &conf); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 347 | if (res) |
Johannes Berg | 636c5d4 | 2008-04-24 14:18:37 +0200 | [diff] [blame] | 348 | goto err_stop; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 349 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 350 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 351 | ieee80211_start_mesh(sdata); |
| 352 | changed |= ieee80211_reset_erp_info(sdata); |
Tomas Winkler | fc32f92 | 2008-07-03 01:27:13 +0300 | [diff] [blame] | 353 | ieee80211_bss_info_change_notify(sdata, changed); |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 354 | ieee80211_enable_keys(sdata); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 355 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 356 | if (sdata->vif.type == NL80211_IFTYPE_STATION && |
Johannes Berg | ddd3d2b | 2007-09-26 17:53:20 +0200 | [diff] [blame] | 357 | !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 358 | netif_carrier_off(dev); |
| 359 | else |
| 360 | netif_carrier_on(dev); |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 361 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 362 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 363 | if (sdata->vif.type == NL80211_IFTYPE_WDS) { |
Johannes Berg | 636c5d4 | 2008-04-24 14:18:37 +0200 | [diff] [blame] | 364 | /* Create STA entry for the WDS peer */ |
| 365 | sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr, |
| 366 | GFP_KERNEL); |
| 367 | if (!sta) { |
| 368 | res = -ENOMEM; |
| 369 | goto err_del_interface; |
| 370 | } |
| 371 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 372 | /* no locking required since STA is not live yet */ |
Johannes Berg | 636c5d4 | 2008-04-24 14:18:37 +0200 | [diff] [blame] | 373 | sta->flags |= WLAN_STA_AUTHORIZED; |
| 374 | |
| 375 | res = sta_info_insert(sta); |
| 376 | if (res) { |
| 377 | /* STA has been freed */ |
| 378 | goto err_del_interface; |
| 379 | } |
| 380 | } |
| 381 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 382 | if (local->open_count == 0) { |
| 383 | res = dev_open(local->mdev); |
| 384 | WARN_ON(res); |
Johannes Berg | 636c5d4 | 2008-04-24 14:18:37 +0200 | [diff] [blame] | 385 | if (res) |
| 386 | goto err_del_interface; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 387 | tasklet_enable(&local->tx_pending_tasklet); |
| 388 | tasklet_enable(&local->tasklet); |
| 389 | } |
| 390 | |
Johannes Berg | c1428b3 | 2007-11-16 02:54:53 +0100 | [diff] [blame] | 391 | /* |
| 392 | * set_multicast_list will be invoked by the networking core |
| 393 | * which will check whether any increments here were done in |
| 394 | * error and sync them down to the hardware as filter flags. |
| 395 | */ |
| 396 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 397 | atomic_inc(&local->iff_allmultis); |
| 398 | |
| 399 | if (sdata->flags & IEEE80211_SDATA_PROMISC) |
| 400 | atomic_inc(&local->iff_promiscs); |
| 401 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 402 | local->open_count++; |
Johannes Berg | 5825fe10 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 403 | if (need_hw_reconfig) { |
Michael Buesch | ceffefd | 2008-02-10 14:16:52 +0100 | [diff] [blame] | 404 | ieee80211_hw_config(local); |
Johannes Berg | 5825fe10 | 2008-09-09 12:56:01 +0200 | [diff] [blame] | 405 | /* |
| 406 | * set default queue parameters so drivers don't |
| 407 | * need to initialise the hardware if the hardware |
| 408 | * doesn't start up with sane defaults |
| 409 | */ |
| 410 | ieee80211_set_wmm_default(sdata); |
| 411 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 412 | |
Jan Niehusmann | 64f851e | 2008-03-23 20:23:56 +0100 | [diff] [blame] | 413 | /* |
| 414 | * ieee80211_sta_work is disabled while network interface |
| 415 | * is down. Therefore, some configuration changes may not |
| 416 | * yet be effective. Trigger execution of ieee80211_sta_work |
| 417 | * to fix this. |
| 418 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 419 | if (sdata->vif.type == NL80211_IFTYPE_STATION || |
| 420 | sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Jan Niehusmann | 64f851e | 2008-03-23 20:23:56 +0100 | [diff] [blame] | 421 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 422 | queue_work(local->hw.workqueue, &ifsta->work); |
| 423 | } |
| 424 | |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 425 | netif_tx_start_all_queues(dev); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 426 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 427 | return 0; |
Johannes Berg | 636c5d4 | 2008-04-24 14:18:37 +0200 | [diff] [blame] | 428 | err_del_interface: |
| 429 | local->ops->remove_interface(local_to_hw(local), &conf); |
| 430 | err_stop: |
| 431 | if (!local->open_count && local->ops->stop) |
| 432 | local->ops->stop(local_to_hw(local)); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 433 | err_del_bss: |
| 434 | sdata->bss = NULL; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 435 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 436 | list_del(&sdata->u.vlan.list); |
Johannes Berg | 636c5d4 | 2008-04-24 14:18:37 +0200 | [diff] [blame] | 437 | return res; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 438 | } |
| 439 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 440 | static int ieee80211_stop(struct net_device *dev) |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 441 | { |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 442 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 443 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 444 | struct ieee80211_if_init_conf conf; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 445 | struct sta_info *sta; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 446 | |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 447 | /* |
| 448 | * Stop TX on this interface first. |
| 449 | */ |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 450 | netif_tx_stop_all_queues(dev); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 451 | |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 452 | /* |
| 453 | * Now delete all active aggregation sessions. |
| 454 | */ |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 455 | rcu_read_lock(); |
| 456 | |
| 457 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 458 | if (sta->sdata == sdata) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 459 | ieee80211_sta_tear_down_BA_sessions(sdata, sta->addr); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 460 | } |
| 461 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 462 | rcu_read_unlock(); |
| 463 | |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 464 | /* |
| 465 | * Remove all stations associated with this interface. |
| 466 | * |
| 467 | * This must be done before calling ops->remove_interface() |
| 468 | * because otherwise we can later invoke ops->sta_notify() |
| 469 | * whenever the STAs are removed, and that invalidates driver |
| 470 | * assumptions about always getting a vif pointer that is valid |
| 471 | * (because if we remove a STA after ops->remove_interface() |
| 472 | * the driver will have removed the vif info already!) |
| 473 | * |
| 474 | * We could relax this and only unlink the stations from the |
| 475 | * hash table and list but keep them on a per-sdata list that |
| 476 | * will be inserted back again when the interface is brought |
| 477 | * up again, but I don't currently see a use case for that, |
| 478 | * except with WDS which gets a STA entry created when it is |
| 479 | * brought up. |
| 480 | */ |
| 481 | sta_info_flush(local, sdata); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 482 | |
Johannes Berg | c1428b3 | 2007-11-16 02:54:53 +0100 | [diff] [blame] | 483 | /* |
| 484 | * Don't count this interface for promisc/allmulti while it |
| 485 | * is down. dev_mc_unsync() will invoke set_multicast_list |
| 486 | * on the master interface which will sync these down to the |
| 487 | * hardware as filter flags. |
| 488 | */ |
| 489 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 490 | atomic_dec(&local->iff_allmultis); |
| 491 | |
| 492 | if (sdata->flags & IEEE80211_SDATA_PROMISC) |
| 493 | atomic_dec(&local->iff_promiscs); |
| 494 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 495 | dev_mc_unsync(local->mdev, dev); |
| 496 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 497 | /* APs need special treatment */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 498 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 499 | struct ieee80211_sub_if_data *vlan, *tmp; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 500 | struct beacon_data *old_beacon = sdata->u.ap.beacon; |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 501 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 502 | /* remove beacon */ |
| 503 | rcu_assign_pointer(sdata->u.ap.beacon, NULL); |
| 504 | synchronize_rcu(); |
| 505 | kfree(old_beacon); |
| 506 | |
| 507 | /* down all dependent devices, that is VLANs */ |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 508 | list_for_each_entry_safe(vlan, tmp, &sdata->u.ap.vlans, |
| 509 | u.vlan.list) |
| 510 | dev_close(vlan->dev); |
| 511 | WARN_ON(!list_empty(&sdata->u.ap.vlans)); |
| 512 | } |
| 513 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 514 | local->open_count--; |
| 515 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 516 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 517 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 518 | list_del(&sdata->u.vlan.list); |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 519 | /* no need to tell driver */ |
| 520 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 521 | case NL80211_IFTYPE_MONITOR: |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 522 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) { |
| 523 | local->cooked_mntrs--; |
| 524 | break; |
| 525 | } |
| 526 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 527 | local->monitors--; |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 528 | if (local->monitors == 0) |
Michael Wu | 8b393f1 | 2007-11-28 01:57:08 -0500 | [diff] [blame] | 529 | local->hw.conf.flags &= ~IEEE80211_CONF_RADIOTAP; |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 530 | |
| 531 | if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL) |
| 532 | local->fif_fcsfail--; |
| 533 | if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL) |
| 534 | local->fif_plcpfail--; |
| 535 | if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL) |
| 536 | local->fif_control--; |
| 537 | if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS) |
| 538 | local->fif_other_bss--; |
| 539 | |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 540 | netif_addr_lock_bh(local->mdev); |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 541 | ieee80211_configure_filter(local); |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 542 | netif_addr_unlock_bh(local->mdev); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 543 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 544 | case NL80211_IFTYPE_STATION: |
| 545 | case NL80211_IFTYPE_ADHOC: |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 546 | sdata->u.sta.state = IEEE80211_STA_MLME_DISABLED; |
Assaf Krauss | ad81b2f | 2008-06-04 20:27:59 +0300 | [diff] [blame] | 547 | memset(sdata->u.sta.bssid, 0, ETH_ALEN); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 548 | del_timer_sync(&sdata->u.sta.timer); |
Johannes Berg | 2a8a9a8 | 2007-08-28 17:01:52 -0400 | [diff] [blame] | 549 | /* |
Johannes Berg | b741343 | 2008-09-11 00:01:50 +0200 | [diff] [blame] | 550 | * If the timer fired while we waited for it, it will have |
| 551 | * requeued the work. Now the work will be running again |
| 552 | * but will not rearm the timer again because it checks |
| 553 | * whether the interface is running, which, at this point, |
| 554 | * it no longer is. |
| 555 | */ |
| 556 | cancel_work_sync(&sdata->u.sta.work); |
| 557 | /* |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 558 | * When we get here, the interface is marked down. |
| 559 | * Call synchronize_rcu() to wait for the RX path |
| 560 | * should it be using the interface and enqueuing |
| 561 | * frames at this very time on another CPU. |
Johannes Berg | 2a8a9a8 | 2007-08-28 17:01:52 -0400 | [diff] [blame] | 562 | */ |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 563 | synchronize_rcu(); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 564 | skb_queue_purge(&sdata->u.sta.skb_queue); |
Johannes Berg | 2a8a9a8 | 2007-08-28 17:01:52 -0400 | [diff] [blame] | 565 | |
Zhu Yi | a10605e | 2007-11-22 11:10:22 +0800 | [diff] [blame] | 566 | sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED; |
| 567 | kfree(sdata->u.sta.extra_ie); |
| 568 | sdata->u.sta.extra_ie = NULL; |
| 569 | sdata->u.sta.extra_ie_len = 0; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 570 | /* fall through */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 571 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 572 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 573 | /* allmulti is always set on mesh ifaces */ |
| 574 | atomic_dec(&local->iff_allmultis); |
| 575 | ieee80211_stop_mesh(sdata); |
| 576 | } |
| 577 | /* fall through */ |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 578 | default: |
Johannes Berg | 5bc7572 | 2008-09-11 00:01:51 +0200 | [diff] [blame] | 579 | if (local->scan_sdata == sdata) { |
| 580 | if (!local->ops->hw_scan) |
| 581 | cancel_delayed_work_sync(&local->scan_work); |
| 582 | /* |
| 583 | * The software scan can no longer run now, so we can |
| 584 | * clear out the scan_sdata reference. However, the |
| 585 | * hardware scan may still be running. The complete |
| 586 | * function must be prepared to handle a NULL value. |
| 587 | */ |
| 588 | local->scan_sdata = NULL; |
| 589 | /* |
| 590 | * The memory barrier guarantees that another CPU |
| 591 | * that is hardware-scanning will now see the fact |
| 592 | * that this interface is gone. |
| 593 | */ |
| 594 | smp_mb(); |
| 595 | /* |
| 596 | * If software scanning, complete the scan but since |
| 597 | * the scan_sdata is NULL already don't send out a |
| 598 | * scan event to userspace -- the scan is incomplete. |
| 599 | */ |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 600 | if (local->sw_scanning) |
Johannes Berg | 5bc7572 | 2008-09-11 00:01:51 +0200 | [diff] [blame] | 601 | ieee80211_scan_completed(&local->hw); |
| 602 | } |
| 603 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 604 | conf.vif = &sdata->vif; |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 605 | conf.type = sdata->vif.type; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 606 | conf.mac_addr = dev->dev_addr; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 607 | /* disable all keys for as long as this netdev is down */ |
| 608 | ieee80211_disable_keys(sdata); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 609 | local->ops->remove_interface(local_to_hw(local), &conf); |
| 610 | } |
| 611 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 612 | sdata->bss = NULL; |
| 613 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 614 | if (local->open_count == 0) { |
| 615 | if (netif_running(local->mdev)) |
| 616 | dev_close(local->mdev); |
| 617 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 618 | if (local->ops->stop) |
| 619 | local->ops->stop(local_to_hw(local)); |
| 620 | |
Ivo van Doorn | cdcb006f | 2008-01-07 19:45:24 +0100 | [diff] [blame] | 621 | ieee80211_led_radio(local, 0); |
| 622 | |
Ivo van Doorn | ea0c925 | 2008-07-03 19:02:44 +0200 | [diff] [blame] | 623 | flush_workqueue(local->hw.workqueue); |
| 624 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 625 | tasklet_disable(&local->tx_pending_tasklet); |
| 626 | tasklet_disable(&local->tasklet); |
| 627 | } |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 628 | |
| 629 | return 0; |
| 630 | } |
| 631 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 632 | static void ieee80211_set_multicast_list(struct net_device *dev) |
| 633 | { |
| 634 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 635 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 636 | int allmulti, promisc, sdata_allmulti, sdata_promisc; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 637 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 638 | allmulti = !!(dev->flags & IFF_ALLMULTI); |
| 639 | promisc = !!(dev->flags & IFF_PROMISC); |
Johannes Berg | b52f219 | 2007-11-16 01:49:11 +0100 | [diff] [blame] | 640 | sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI); |
| 641 | sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 642 | |
| 643 | if (allmulti != sdata_allmulti) { |
| 644 | if (dev->flags & IFF_ALLMULTI) |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 645 | atomic_inc(&local->iff_allmultis); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 646 | else |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 647 | atomic_dec(&local->iff_allmultis); |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 648 | sdata->flags ^= IEEE80211_SDATA_ALLMULTI; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 649 | } |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 650 | |
| 651 | if (promisc != sdata_promisc) { |
| 652 | if (dev->flags & IFF_PROMISC) |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 653 | atomic_inc(&local->iff_promiscs); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 654 | else |
Johannes Berg | 5391899 | 2007-09-26 15:19:47 +0200 | [diff] [blame] | 655 | atomic_dec(&local->iff_promiscs); |
Jiri Slaby | 13262ff | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 656 | sdata->flags ^= IEEE80211_SDATA_PROMISC; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 657 | } |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 658 | |
| 659 | dev_mc_sync(local->mdev, dev); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 660 | } |
| 661 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 662 | static const struct header_ops ieee80211_header_ops = { |
| 663 | .create = eth_header, |
| 664 | .parse = header_parse_80211, |
| 665 | .rebuild = eth_rebuild_header, |
| 666 | .cache = eth_header_cache, |
| 667 | .cache_update = eth_header_cache_update, |
| 668 | }; |
| 669 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 670 | void ieee80211_if_setup(struct net_device *dev) |
| 671 | { |
| 672 | ether_setup(dev); |
| 673 | dev->hard_start_xmit = ieee80211_subif_start_xmit; |
| 674 | dev->wireless_handlers = &ieee80211_iw_handler_def; |
| 675 | dev->set_multicast_list = ieee80211_set_multicast_list; |
| 676 | dev->change_mtu = ieee80211_change_mtu; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 677 | dev->open = ieee80211_open; |
| 678 | dev->stop = ieee80211_stop; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 679 | dev->destructor = free_netdev; |
Luis Carlos Cobo | bdbe819 | 2008-08-14 10:40:48 -0700 | [diff] [blame] | 680 | /* we will validate the address ourselves in ->open */ |
| 681 | dev->validate_addr = NULL; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 682 | } |
| 683 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 684 | /* everything else */ |
| 685 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 686 | int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed) |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 687 | { |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 688 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 689 | struct ieee80211_if_conf conf; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 690 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 691 | if (WARN_ON(!netif_running(sdata->dev))) |
| 692 | return 0; |
| 693 | |
| 694 | if (!local->ops->config_interface) |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 695 | return 0; |
| 696 | |
| 697 | memset(&conf, 0, sizeof(conf)); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 698 | conf.changed = changed; |
| 699 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 700 | if (sdata->vif.type == NL80211_IFTYPE_STATION || |
| 701 | sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 702 | conf.bssid = sdata->u.sta.bssid; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 703 | conf.ssid = sdata->u.sta.ssid; |
| 704 | conf.ssid_len = sdata->u.sta.ssid_len; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 705 | } else if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 706 | conf.bssid = sdata->dev->dev_addr; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 707 | conf.ssid = sdata->u.ap.ssid; |
| 708 | conf.ssid_len = sdata->u.ap.ssid_len; |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 709 | } else if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 710 | u8 zero[ETH_ALEN] = { 0 }; |
| 711 | conf.bssid = zero; |
| 712 | conf.ssid = zero; |
| 713 | conf.ssid_len = 0; |
| 714 | } else { |
| 715 | WARN_ON(1); |
| 716 | return -EINVAL; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 717 | } |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 718 | |
| 719 | if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID))) |
| 720 | return -EINVAL; |
| 721 | |
| 722 | if (WARN_ON(!conf.ssid && (changed & IEEE80211_IFCC_SSID))) |
| 723 | return -EINVAL; |
| 724 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 725 | return local->ops->config_interface(local_to_hw(local), |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 726 | &sdata->vif, &conf); |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 727 | } |
| 728 | |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 729 | int ieee80211_hw_config(struct ieee80211_local *local) |
| 730 | { |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 731 | struct ieee80211_channel *chan; |
| 732 | int ret = 0; |
| 733 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 734 | if (local->sw_scanning) |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 735 | chan = local->scan_channel; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 736 | else |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 737 | chan = local->oper_channel; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 738 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 739 | local->hw.conf.channel = chan; |
| 740 | |
| 741 | if (!local->hw.conf.power_level) |
| 742 | local->hw.conf.power_level = chan->max_power; |
| 743 | else |
| 744 | local->hw.conf.power_level = min(chan->max_power, |
| 745 | local->hw.conf.power_level); |
| 746 | |
| 747 | local->hw.conf.max_antenna_gain = chan->max_antenna_gain; |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 748 | |
| 749 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 750 | printk(KERN_DEBUG "%s: HW CONFIG: freq=%d\n", |
| 751 | wiphy_name(local->hw.wiphy), chan->center_freq); |
| 752 | #endif |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 753 | |
Michael Buesch | f7c4dae | 2007-09-24 18:41:49 +0200 | [diff] [blame] | 754 | if (local->open_count) |
Johannes Berg | b2c258f | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 755 | ret = local->ops->config(local_to_hw(local), &local->hw.conf); |
| 756 | |
| 757 | return ret; |
| 758 | } |
| 759 | |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 760 | /** |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 761 | * ieee80211_handle_ht should be used only after legacy configuration |
| 762 | * has been determined namely band, as ht configuration depends upon |
| 763 | * the hardware's HT abilities for a _specific_ band. |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 764 | */ |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 765 | u32 ieee80211_handle_ht(struct ieee80211_local *local, int enable_ht, |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 766 | struct ieee80211_ht_info *req_ht_cap, |
| 767 | struct ieee80211_ht_bss_info *req_bss_cap) |
| 768 | { |
| 769 | struct ieee80211_conf *conf = &local->hw.conf; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 770 | struct ieee80211_supported_band *sband; |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 771 | struct ieee80211_ht_info ht_conf; |
| 772 | struct ieee80211_ht_bss_info ht_bss_conf; |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 773 | u32 changed = 0; |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 774 | int i; |
| 775 | u8 max_tx_streams = IEEE80211_HT_CAP_MAX_STREAMS; |
| 776 | u8 tx_mcs_set_cap; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 777 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 778 | sband = local->hw.wiphy->bands[conf->channel->band]; |
| 779 | |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 780 | memset(&ht_conf, 0, sizeof(struct ieee80211_ht_info)); |
| 781 | memset(&ht_bss_conf, 0, sizeof(struct ieee80211_ht_bss_info)); |
| 782 | |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 783 | /* HT is not supported */ |
| 784 | if (!sband->ht_info.ht_supported) { |
| 785 | conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE; |
| 786 | goto out; |
| 787 | } |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 788 | |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 789 | /* disable HT */ |
| 790 | if (!enable_ht) { |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 791 | if (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) |
| 792 | changed |= BSS_CHANGED_HT; |
| 793 | conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE; |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 794 | conf->ht_conf.ht_supported = 0; |
| 795 | goto out; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 796 | } |
| 797 | |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 798 | |
| 799 | if (!(conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE)) |
| 800 | changed |= BSS_CHANGED_HT; |
| 801 | |
| 802 | conf->flags |= IEEE80211_CONF_SUPPORT_HT_MODE; |
| 803 | ht_conf.ht_supported = 1; |
| 804 | |
| 805 | ht_conf.cap = req_ht_cap->cap & sband->ht_info.cap; |
Tomas Winkler | 00c5ae2 | 2008-09-03 11:26:42 +0800 | [diff] [blame] | 806 | ht_conf.cap &= ~(IEEE80211_HT_CAP_SM_PS); |
| 807 | ht_conf.cap |= sband->ht_info.cap & IEEE80211_HT_CAP_SM_PS; |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 808 | ht_bss_conf.primary_channel = req_bss_cap->primary_channel; |
| 809 | ht_bss_conf.bss_cap = req_bss_cap->bss_cap; |
| 810 | ht_bss_conf.bss_op_mode = req_bss_cap->bss_op_mode; |
| 811 | |
| 812 | ht_conf.ampdu_factor = req_ht_cap->ampdu_factor; |
| 813 | ht_conf.ampdu_density = req_ht_cap->ampdu_density; |
| 814 | |
| 815 | /* Bits 96-100 */ |
| 816 | tx_mcs_set_cap = sband->ht_info.supp_mcs_set[12]; |
| 817 | |
| 818 | /* configure suppoerted Tx MCS according to requested MCS |
| 819 | * (based in most cases on Rx capabilities of peer) and self |
| 820 | * Tx MCS capabilities (as defined by low level driver HW |
| 821 | * Tx capabilities) */ |
| 822 | if (!(tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_DEFINED)) |
| 823 | goto check_changed; |
| 824 | |
| 825 | /* Counting from 0 therfore + 1 */ |
| 826 | if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_RX_DIFF) |
| 827 | max_tx_streams = ((tx_mcs_set_cap & |
| 828 | IEEE80211_HT_CAP_MCS_TX_STREAMS) >> 2) + 1; |
| 829 | |
| 830 | for (i = 0; i < max_tx_streams; i++) |
| 831 | ht_conf.supp_mcs_set[i] = |
| 832 | sband->ht_info.supp_mcs_set[i] & |
| 833 | req_ht_cap->supp_mcs_set[i]; |
| 834 | |
| 835 | if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_UEQM) |
| 836 | for (i = IEEE80211_SUPP_MCS_SET_UEQM; |
| 837 | i < IEEE80211_SUPP_MCS_SET_LEN; i++) |
| 838 | ht_conf.supp_mcs_set[i] = |
| 839 | sband->ht_info.supp_mcs_set[i] & |
| 840 | req_ht_cap->supp_mcs_set[i]; |
| 841 | |
| 842 | check_changed: |
| 843 | /* if bss configuration changed store the new one */ |
| 844 | if (memcmp(&conf->ht_conf, &ht_conf, sizeof(ht_conf)) || |
| 845 | memcmp(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf))) { |
| 846 | changed |= BSS_CHANGED_HT; |
| 847 | memcpy(&conf->ht_conf, &ht_conf, sizeof(ht_conf)); |
| 848 | memcpy(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf)); |
| 849 | } |
| 850 | out: |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 851 | return changed; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 852 | } |
| 853 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 854 | void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata, |
| 855 | u32 changed) |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 856 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 857 | struct ieee80211_local *local = sdata->local; |
| 858 | |
| 859 | if (!changed) |
| 860 | return; |
| 861 | |
| 862 | if (local->ops->bss_info_changed) |
| 863 | local->ops->bss_info_changed(local_to_hw(local), |
| 864 | &sdata->vif, |
| 865 | &sdata->bss_conf, |
| 866 | changed); |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 867 | } |
| 868 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 869 | u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata) |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 870 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 871 | sdata->bss_conf.use_cts_prot = 0; |
| 872 | sdata->bss_conf.use_short_preamble = 0; |
Tomas Winkler | fc32f92 | 2008-07-03 01:27:13 +0300 | [diff] [blame] | 873 | return BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_ERP_PREAMBLE; |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 874 | } |
| 875 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 876 | void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 877 | struct sk_buff *skb) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 878 | { |
| 879 | struct ieee80211_local *local = hw_to_local(hw); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 880 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 881 | int tmp; |
| 882 | |
| 883 | skb->dev = local->mdev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 884 | skb->pkt_type = IEEE80211_TX_STATUS_MSG; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 885 | skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ? |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 886 | &local->skb_queue : &local->skb_queue_unreliable, skb); |
| 887 | tmp = skb_queue_len(&local->skb_queue) + |
| 888 | skb_queue_len(&local->skb_queue_unreliable); |
| 889 | while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT && |
| 890 | (skb = skb_dequeue(&local->skb_queue_unreliable))) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 891 | dev_kfree_skb_irq(skb); |
| 892 | tmp--; |
| 893 | I802_DEBUG_INC(local->tx_status_drop); |
| 894 | } |
| 895 | tasklet_schedule(&local->tasklet); |
| 896 | } |
| 897 | EXPORT_SYMBOL(ieee80211_tx_status_irqsafe); |
| 898 | |
| 899 | static void ieee80211_tasklet_handler(unsigned long data) |
| 900 | { |
| 901 | struct ieee80211_local *local = (struct ieee80211_local *) data; |
| 902 | struct sk_buff *skb; |
| 903 | struct ieee80211_rx_status rx_status; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 904 | struct ieee80211_ra_tid *ra_tid; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 905 | |
| 906 | while ((skb = skb_dequeue(&local->skb_queue)) || |
| 907 | (skb = skb_dequeue(&local->skb_queue_unreliable))) { |
| 908 | switch (skb->pkt_type) { |
| 909 | case IEEE80211_RX_MSG: |
| 910 | /* status is in skb->cb */ |
| 911 | memcpy(&rx_status, skb->cb, sizeof(rx_status)); |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 912 | /* Clear skb->pkt_type in order to not confuse kernel |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 913 | * netstack. */ |
| 914 | skb->pkt_type = 0; |
| 915 | __ieee80211_rx(local_to_hw(local), skb, &rx_status); |
| 916 | break; |
| 917 | case IEEE80211_TX_STATUS_MSG: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 918 | skb->pkt_type = 0; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 919 | ieee80211_tx_status(local_to_hw(local), skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 920 | break; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 921 | case IEEE80211_DELBA_MSG: |
| 922 | ra_tid = (struct ieee80211_ra_tid *) &skb->cb; |
| 923 | ieee80211_stop_tx_ba_cb(local_to_hw(local), |
| 924 | ra_tid->ra, ra_tid->tid); |
| 925 | dev_kfree_skb(skb); |
| 926 | break; |
| 927 | case IEEE80211_ADDBA_MSG: |
| 928 | ra_tid = (struct ieee80211_ra_tid *) &skb->cb; |
| 929 | ieee80211_start_tx_ba_cb(local_to_hw(local), |
| 930 | ra_tid->ra, ra_tid->tid); |
| 931 | dev_kfree_skb(skb); |
| 932 | break ; |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 933 | default: |
| 934 | WARN_ON(1); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 935 | dev_kfree_skb(skb); |
| 936 | break; |
| 937 | } |
| 938 | } |
| 939 | } |
| 940 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 941 | /* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to |
| 942 | * make a prepared TX frame (one that has been given to hw) to look like brand |
| 943 | * new IEEE 802.11 frame that is ready to go through TX processing again. |
Johannes Berg | d0f0980 | 2008-07-29 11:32:07 +0200 | [diff] [blame] | 944 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 945 | static void ieee80211_remove_tx_extra(struct ieee80211_local *local, |
| 946 | struct ieee80211_key *key, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 947 | struct sk_buff *skb) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 948 | { |
Harvey Harrison | 62bf1d7 | 2008-07-15 18:44:05 -0700 | [diff] [blame] | 949 | unsigned int hdrlen, iv_len, mic_len; |
| 950 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 951 | |
Harvey Harrison | 62bf1d7 | 2008-07-15 18:44:05 -0700 | [diff] [blame] | 952 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 953 | |
| 954 | if (!key) |
| 955 | goto no_key; |
| 956 | |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 957 | switch (key->conf.alg) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 958 | case ALG_WEP: |
| 959 | iv_len = WEP_IV_LEN; |
| 960 | mic_len = WEP_ICV_LEN; |
| 961 | break; |
| 962 | case ALG_TKIP: |
| 963 | iv_len = TKIP_IV_LEN; |
| 964 | mic_len = TKIP_ICV_LEN; |
| 965 | break; |
| 966 | case ALG_CCMP: |
| 967 | iv_len = CCMP_HDR_LEN; |
| 968 | mic_len = CCMP_MIC_LEN; |
| 969 | break; |
| 970 | default: |
| 971 | goto no_key; |
| 972 | } |
| 973 | |
Harvey Harrison | 62bf1d7 | 2008-07-15 18:44:05 -0700 | [diff] [blame] | 974 | if (skb->len >= hdrlen + mic_len && |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 975 | !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 976 | skb_trim(skb, skb->len - mic_len); |
Harvey Harrison | 62bf1d7 | 2008-07-15 18:44:05 -0700 | [diff] [blame] | 977 | if (skb->len >= hdrlen + iv_len) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 978 | memmove(skb->data + iv_len, skb->data, hdrlen); |
Harvey Harrison | 62bf1d7 | 2008-07-15 18:44:05 -0700 | [diff] [blame] | 979 | hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | no_key: |
Harvey Harrison | 62bf1d7 | 2008-07-15 18:44:05 -0700 | [diff] [blame] | 983 | if (ieee80211_is_data_qos(hdr->frame_control)) { |
| 984 | hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA); |
| 985 | memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data, |
| 986 | hdrlen - IEEE80211_QOS_CTL_LEN); |
| 987 | skb_pull(skb, IEEE80211_QOS_CTL_LEN); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 988 | } |
| 989 | } |
| 990 | |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 991 | static void ieee80211_handle_filtered_frame(struct ieee80211_local *local, |
| 992 | struct sta_info *sta, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 993 | struct sk_buff *skb) |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 994 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 995 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 996 | |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 997 | sta->tx_filtered_count++; |
| 998 | |
| 999 | /* |
| 1000 | * Clear the TX filter mask for this STA when sending the next |
| 1001 | * packet. If the STA went to power save mode, this will happen |
Yi Zhu | f6d9710 | 2008-05-27 17:50:50 +0300 | [diff] [blame] | 1002 | * when it wakes up for the next time. |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1003 | */ |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1004 | set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT); |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1005 | |
| 1006 | /* |
| 1007 | * This code races in the following way: |
| 1008 | * |
| 1009 | * (1) STA sends frame indicating it will go to sleep and does so |
| 1010 | * (2) hardware/firmware adds STA to filter list, passes frame up |
| 1011 | * (3) hardware/firmware processes TX fifo and suppresses a frame |
| 1012 | * (4) we get TX status before having processed the frame and |
| 1013 | * knowing that the STA has gone to sleep. |
| 1014 | * |
| 1015 | * This is actually quite unlikely even when both those events are |
| 1016 | * processed from interrupts coming in quickly after one another or |
| 1017 | * even at the same time because we queue both TX status events and |
| 1018 | * RX frames to be processed by a tasklet and process them in the |
| 1019 | * same order that they were received or TX status last. Hence, there |
| 1020 | * is no race as long as the frame RX is processed before the next TX |
| 1021 | * status, which drivers can ensure, see below. |
| 1022 | * |
| 1023 | * Note that this can only happen if the hardware or firmware can |
| 1024 | * actually add STAs to the filter list, if this is done by the |
| 1025 | * driver in response to set_tim() (which will only reduce the race |
| 1026 | * this whole filtering tries to solve, not completely solve it) |
| 1027 | * this situation cannot happen. |
| 1028 | * |
| 1029 | * To completely solve this race drivers need to make sure that they |
| 1030 | * (a) don't mix the irq-safe/not irq-safe TX status/RX processing |
| 1031 | * functions and |
| 1032 | * (b) always process RX events before TX status events if ordering |
| 1033 | * can be unknown, for example with different interrupt status |
| 1034 | * bits. |
| 1035 | */ |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1036 | if (test_sta_flags(sta, WLAN_STA_PS) && |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1037 | skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1038 | ieee80211_remove_tx_extra(local, sta->key, skb); |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1039 | skb_queue_tail(&sta->tx_filtered, skb); |
| 1040 | return; |
| 1041 | } |
| 1042 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1043 | if (!test_sta_flags(sta, WLAN_STA_PS) && |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1044 | !(info->flags & IEEE80211_TX_CTL_REQUEUE)) { |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1045 | /* Software retry the packet once */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1046 | info->flags |= IEEE80211_TX_CTL_REQUEUE; |
| 1047 | ieee80211_remove_tx_extra(local, sta->key, skb); |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1048 | dev_queue_xmit(skb); |
| 1049 | return; |
| 1050 | } |
| 1051 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1052 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1053 | if (net_ratelimit()) |
| 1054 | printk(KERN_DEBUG "%s: dropped TX filtered frame, " |
| 1055 | "queue_len=%d PS=%d @%lu\n", |
| 1056 | wiphy_name(local->hw.wiphy), |
| 1057 | skb_queue_len(&sta->tx_filtered), |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1058 | !!test_sta_flags(sta, WLAN_STA_PS), jiffies); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1059 | #endif |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1060 | dev_kfree_skb(skb); |
| 1061 | } |
| 1062 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1063 | void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1064 | { |
| 1065 | struct sk_buff *skb2; |
| 1066 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 1067 | struct ieee80211_local *local = hw_to_local(hw); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1068 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1069 | u16 frag, type; |
Ron Rindjunsky | 429a380 | 2008-07-01 14:16:03 +0300 | [diff] [blame] | 1070 | __le16 fc; |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1071 | struct ieee80211_tx_status_rtap_hdr *rthdr; |
| 1072 | struct ieee80211_sub_if_data *sdata; |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1073 | struct net_device *prev_dev = NULL; |
Ron Rindjunsky | 429a380 | 2008-07-01 14:16:03 +0300 | [diff] [blame] | 1074 | struct sta_info *sta; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1075 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1076 | rcu_read_lock(); |
| 1077 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1078 | if (info->status.excessive_retries) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1079 | sta = sta_info_get(local, hdr->addr1); |
| 1080 | if (sta) { |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1081 | if (test_sta_flags(sta, WLAN_STA_PS)) { |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1082 | /* |
| 1083 | * The STA is in power save mode, so assume |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1084 | * that this TX packet failed because of that. |
| 1085 | */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1086 | ieee80211_handle_filtered_frame(local, sta, skb); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1087 | rcu_read_unlock(); |
Johannes Berg | d46e144 | 2008-02-20 23:59:33 +0100 | [diff] [blame] | 1088 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1089 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1090 | } |
| 1091 | } |
| 1092 | |
Ron Rindjunsky | 429a380 | 2008-07-01 14:16:03 +0300 | [diff] [blame] | 1093 | fc = hdr->frame_control; |
| 1094 | |
| 1095 | if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) && |
| 1096 | (ieee80211_is_data_qos(fc))) { |
| 1097 | u16 tid, ssn; |
| 1098 | u8 *qc; |
| 1099 | sta = sta_info_get(local, hdr->addr1); |
| 1100 | if (sta) { |
| 1101 | qc = ieee80211_get_qos_ctl(hdr); |
| 1102 | tid = qc[0] & 0xf; |
| 1103 | ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10) |
| 1104 | & IEEE80211_SCTL_SEQ); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1105 | ieee80211_send_bar(sta->sdata, hdr->addr1, |
Ron Rindjunsky | 429a380 | 2008-07-01 14:16:03 +0300 | [diff] [blame] | 1106 | tid, ssn); |
| 1107 | } |
| 1108 | } |
| 1109 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1110 | if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1111 | sta = sta_info_get(local, hdr->addr1); |
| 1112 | if (sta) { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1113 | ieee80211_handle_filtered_frame(local, sta, skb); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1114 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1115 | return; |
| 1116 | } |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 1117 | } else |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1118 | rate_control_tx_status(local->mdev, skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1119 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1120 | rcu_read_unlock(); |
| 1121 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1122 | ieee80211_led_tx(local, 0); |
| 1123 | |
| 1124 | /* SNMP counters |
| 1125 | * Fragments are passed to low-level drivers as separate skbs, so these |
| 1126 | * are actually fragments, not frames. Update frame counters only for |
| 1127 | * the first fragment of the frame. */ |
| 1128 | |
| 1129 | frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG; |
| 1130 | type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE; |
| 1131 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1132 | if (info->flags & IEEE80211_TX_STAT_ACK) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1133 | if (frag == 0) { |
| 1134 | local->dot11TransmittedFrameCount++; |
| 1135 | if (is_multicast_ether_addr(hdr->addr1)) |
| 1136 | local->dot11MulticastTransmittedFrameCount++; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1137 | if (info->status.retry_count > 0) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1138 | local->dot11RetryCount++; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1139 | if (info->status.retry_count > 1) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1140 | local->dot11MultipleRetryCount++; |
| 1141 | } |
| 1142 | |
| 1143 | /* This counter shall be incremented for an acknowledged MPDU |
| 1144 | * with an individual address in the address 1 field or an MPDU |
| 1145 | * with a multicast address in the address 1 field of type Data |
| 1146 | * or Management. */ |
| 1147 | if (!is_multicast_ether_addr(hdr->addr1) || |
| 1148 | type == IEEE80211_FTYPE_DATA || |
| 1149 | type == IEEE80211_FTYPE_MGMT) |
| 1150 | local->dot11TransmittedFragmentCount++; |
| 1151 | } else { |
| 1152 | if (frag == 0) |
| 1153 | local->dot11FailedCount++; |
| 1154 | } |
| 1155 | |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1156 | /* this was a transmitted frame, but now we want to reuse it */ |
| 1157 | skb_orphan(skb); |
| 1158 | |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1159 | /* |
| 1160 | * This is a bit racy but we can avoid a lot of work |
| 1161 | * with this test... |
| 1162 | */ |
| 1163 | if (!local->monitors && !local->cooked_mntrs) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1164 | dev_kfree_skb(skb); |
| 1165 | return; |
| 1166 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1167 | |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1168 | /* send frame to monitor interfaces now */ |
| 1169 | |
| 1170 | if (skb_headroom(skb) < sizeof(*rthdr)) { |
| 1171 | printk(KERN_ERR "ieee80211_tx_status: headroom too small\n"); |
| 1172 | dev_kfree_skb(skb); |
| 1173 | return; |
| 1174 | } |
| 1175 | |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 1176 | rthdr = (struct ieee80211_tx_status_rtap_hdr *) |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1177 | skb_push(skb, sizeof(*rthdr)); |
| 1178 | |
| 1179 | memset(rthdr, 0, sizeof(*rthdr)); |
| 1180 | rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr)); |
| 1181 | rthdr->hdr.it_present = |
| 1182 | cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) | |
| 1183 | (1 << IEEE80211_RADIOTAP_DATA_RETRIES)); |
| 1184 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1185 | if (!(info->flags & IEEE80211_TX_STAT_ACK) && |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1186 | !is_multicast_ether_addr(hdr->addr1)) |
| 1187 | rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL); |
| 1188 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1189 | if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) && |
| 1190 | (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT)) |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1191 | rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1192 | else if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1193 | rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS); |
| 1194 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1195 | rthdr->data_retries = info->status.retry_count; |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1196 | |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1197 | /* XXX: is this sufficient for BPF? */ |
| 1198 | skb_set_mac_header(skb, 0); |
| 1199 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 1200 | skb->pkt_type = PACKET_OTHERHOST; |
| 1201 | skb->protocol = htons(ETH_P_802_2); |
| 1202 | memset(skb->cb, 0, sizeof(skb->cb)); |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1203 | |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1204 | rcu_read_lock(); |
| 1205 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 1206 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) { |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1207 | if (!netif_running(sdata->dev)) |
| 1208 | continue; |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1209 | |
| 1210 | if (prev_dev) { |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1211 | skb2 = skb_clone(skb, GFP_ATOMIC); |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1212 | if (skb2) { |
| 1213 | skb2->dev = prev_dev; |
| 1214 | netif_rx(skb2); |
| 1215 | } |
| 1216 | } |
| 1217 | |
| 1218 | prev_dev = sdata->dev; |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1219 | } |
| 1220 | } |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1221 | if (prev_dev) { |
| 1222 | skb->dev = prev_dev; |
| 1223 | netif_rx(skb); |
| 1224 | skb = NULL; |
| 1225 | } |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1226 | rcu_read_unlock(); |
Michael Wu | 3d30d94 | 2008-01-31 19:48:27 +0100 | [diff] [blame] | 1227 | dev_kfree_skb(skb); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1228 | } |
| 1229 | EXPORT_SYMBOL(ieee80211_tx_status); |
| 1230 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1231 | struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len, |
| 1232 | const struct ieee80211_ops *ops) |
| 1233 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1234 | struct ieee80211_local *local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1235 | int priv_size; |
| 1236 | struct wiphy *wiphy; |
| 1237 | |
| 1238 | /* Ensure 32-byte alignment of our private data and hw private data. |
| 1239 | * We use the wiphy priv data for both our ieee80211_local and for |
| 1240 | * the driver's private data |
| 1241 | * |
| 1242 | * In memory it'll be like this: |
| 1243 | * |
| 1244 | * +-------------------------+ |
| 1245 | * | struct wiphy | |
| 1246 | * +-------------------------+ |
| 1247 | * | struct ieee80211_local | |
| 1248 | * +-------------------------+ |
| 1249 | * | driver's private data | |
| 1250 | * +-------------------------+ |
| 1251 | * |
| 1252 | */ |
| 1253 | priv_size = ((sizeof(struct ieee80211_local) + |
| 1254 | NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) + |
| 1255 | priv_data_len; |
| 1256 | |
| 1257 | wiphy = wiphy_new(&mac80211_config_ops, priv_size); |
| 1258 | |
| 1259 | if (!wiphy) |
| 1260 | return NULL; |
| 1261 | |
| 1262 | wiphy->privid = mac80211_wiphy_privid; |
| 1263 | |
| 1264 | local = wiphy_priv(wiphy); |
| 1265 | local->hw.wiphy = wiphy; |
| 1266 | |
| 1267 | local->hw.priv = (char *)local + |
| 1268 | ((sizeof(struct ieee80211_local) + |
| 1269 | NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST); |
| 1270 | |
Johannes Berg | 4480f15c | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 1271 | BUG_ON(!ops->tx); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1272 | BUG_ON(!ops->start); |
| 1273 | BUG_ON(!ops->stop); |
Johannes Berg | 4480f15c | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 1274 | BUG_ON(!ops->config); |
| 1275 | BUG_ON(!ops->add_interface); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1276 | BUG_ON(!ops->remove_interface); |
| 1277 | BUG_ON(!ops->configure_filter); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1278 | local->ops = ops; |
| 1279 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1280 | local->hw.queues = 1; /* default */ |
| 1281 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1282 | local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; |
| 1283 | local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD; |
| 1284 | local->short_retry_limit = 7; |
| 1285 | local->long_retry_limit = 4; |
| 1286 | local->hw.conf.radio_enabled = 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1287 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1288 | INIT_LIST_HEAD(&local->interfaces); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1289 | |
Johannes Berg | b16bd15 | 2008-04-11 21:40:35 +0200 | [diff] [blame] | 1290 | spin_lock_init(&local->key_lock); |
| 1291 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 1292 | INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1293 | |
| 1294 | sta_info_init(local); |
| 1295 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1296 | tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending, |
| 1297 | (unsigned long)local); |
| 1298 | tasklet_disable(&local->tx_pending_tasklet); |
| 1299 | |
| 1300 | tasklet_init(&local->tasklet, |
| 1301 | ieee80211_tasklet_handler, |
| 1302 | (unsigned long) local); |
| 1303 | tasklet_disable(&local->tasklet); |
| 1304 | |
| 1305 | skb_queue_head_init(&local->skb_queue); |
| 1306 | skb_queue_head_init(&local->skb_queue_unreliable); |
| 1307 | |
| 1308 | return local_to_hw(local); |
| 1309 | } |
| 1310 | EXPORT_SYMBOL(ieee80211_alloc_hw); |
| 1311 | |
| 1312 | int ieee80211_register_hw(struct ieee80211_hw *hw) |
| 1313 | { |
| 1314 | struct ieee80211_local *local = hw_to_local(hw); |
| 1315 | const char *name; |
| 1316 | int result; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1317 | enum ieee80211_band band; |
Johannes Berg | 96d5105 | 2008-02-08 09:48:13 +0100 | [diff] [blame] | 1318 | struct net_device *mdev; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1319 | struct wireless_dev *mwdev; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1320 | |
| 1321 | /* |
| 1322 | * generic code guarantees at least one band, |
| 1323 | * set this very early because much code assumes |
| 1324 | * that hw.conf.channel is assigned |
| 1325 | */ |
| 1326 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
| 1327 | struct ieee80211_supported_band *sband; |
| 1328 | |
| 1329 | sband = local->hw.wiphy->bands[band]; |
| 1330 | if (sband) { |
| 1331 | /* init channel we're on */ |
| 1332 | local->hw.conf.channel = |
| 1333 | local->oper_channel = |
| 1334 | local->scan_channel = &sband->channels[0]; |
| 1335 | break; |
| 1336 | } |
| 1337 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1338 | |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 1339 | /* if low-level driver supports AP, we also support VLAN */ |
| 1340 | if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) |
| 1341 | local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN); |
| 1342 | |
| 1343 | /* mac80211 always supports monitor */ |
| 1344 | local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR); |
| 1345 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1346 | result = wiphy_register(local->hw.wiphy); |
| 1347 | if (result < 0) |
| 1348 | return result; |
| 1349 | |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1350 | /* |
| 1351 | * We use the number of queues for feature tests (QoS, HT) internally |
| 1352 | * so restrict them appropriately. |
| 1353 | */ |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1354 | if (hw->queues > IEEE80211_MAX_QUEUES) |
| 1355 | hw->queues = IEEE80211_MAX_QUEUES; |
| 1356 | if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES) |
| 1357 | hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES; |
| 1358 | if (hw->queues < 4) |
| 1359 | hw->ampdu_queues = 0; |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1360 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1361 | mdev = alloc_netdev_mq(sizeof(struct wireless_dev), |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 1362 | "wmaster%d", ether_setup, |
| 1363 | ieee80211_num_queues(hw)); |
Johannes Berg | 96d5105 | 2008-02-08 09:48:13 +0100 | [diff] [blame] | 1364 | if (!mdev) |
| 1365 | goto fail_mdev_alloc; |
| 1366 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1367 | mwdev = netdev_priv(mdev); |
| 1368 | mdev->ieee80211_ptr = mwdev; |
| 1369 | mwdev->wiphy = local->hw.wiphy; |
Johannes Berg | 96d5105 | 2008-02-08 09:48:13 +0100 | [diff] [blame] | 1370 | |
| 1371 | local->mdev = mdev; |
| 1372 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1373 | ieee80211_rx_bss_list_init(local); |
Johannes Berg | 96d5105 | 2008-02-08 09:48:13 +0100 | [diff] [blame] | 1374 | |
| 1375 | mdev->hard_start_xmit = ieee80211_master_start_xmit; |
| 1376 | mdev->open = ieee80211_master_open; |
| 1377 | mdev->stop = ieee80211_master_stop; |
| 1378 | mdev->type = ARPHRD_IEEE80211; |
| 1379 | mdev->header_ops = &ieee80211_header_ops; |
| 1380 | mdev->set_multicast_list = ieee80211_master_set_multicast_list; |
| 1381 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1382 | name = wiphy_dev(local->hw.wiphy)->driver->name; |
Johannes Berg | 59959a6 | 2008-06-26 19:59:56 +0200 | [diff] [blame] | 1383 | local->hw.workqueue = create_freezeable_workqueue(name); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1384 | if (!local->hw.workqueue) { |
| 1385 | result = -ENOMEM; |
| 1386 | goto fail_workqueue; |
| 1387 | } |
| 1388 | |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1389 | /* |
| 1390 | * The hardware needs headroom for sending the frame, |
| 1391 | * and we need some headroom for passing the frame to monitor |
| 1392 | * interfaces, but never both at the same time. |
| 1393 | */ |
Jiri Benc | 33ccad3 | 2007-07-18 17:10:44 +0200 | [diff] [blame] | 1394 | local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom, |
| 1395 | sizeof(struct ieee80211_tx_status_rtap_hdr)); |
Johannes Berg | b306f45 | 2007-07-10 19:32:08 +0200 | [diff] [blame] | 1396 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1397 | debugfs_hw_add(local); |
| 1398 | |
Tomas Winkler | dc0ae30 | 2008-06-12 22:38:37 +0300 | [diff] [blame] | 1399 | if (local->hw.conf.beacon_int < 10) |
| 1400 | local->hw.conf.beacon_int = 100; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1401 | |
Tomas Winkler | ea95bba | 2008-07-18 13:53:00 +0800 | [diff] [blame] | 1402 | if (local->hw.max_listen_interval == 0) |
| 1403 | local->hw.max_listen_interval = 1; |
| 1404 | |
| 1405 | local->hw.conf.listen_interval = local->hw.max_listen_interval; |
| 1406 | |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 1407 | local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC | |
| 1408 | IEEE80211_HW_SIGNAL_DB | |
| 1409 | IEEE80211_HW_SIGNAL_DBM) ? |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1410 | IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID; |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 1411 | local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ? |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1412 | IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID; |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 1413 | if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1414 | local->wstats_flags |= IW_QUAL_DBM; |
| 1415 | |
| 1416 | result = sta_info_start(local); |
| 1417 | if (result < 0) |
| 1418 | goto fail_sta_info; |
| 1419 | |
| 1420 | rtnl_lock(); |
| 1421 | result = dev_alloc_name(local->mdev, local->mdev->name); |
| 1422 | if (result < 0) |
| 1423 | goto fail_dev; |
| 1424 | |
| 1425 | memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN); |
| 1426 | SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy)); |
| 1427 | |
| 1428 | result = register_netdevice(local->mdev); |
| 1429 | if (result < 0) |
| 1430 | goto fail_dev; |
| 1431 | |
Johannes Berg | 830f903 | 2007-10-28 14:51:05 +0100 | [diff] [blame] | 1432 | result = ieee80211_init_rate_ctrl_alg(local, |
| 1433 | hw->rate_control_algorithm); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1434 | if (result < 0) { |
| 1435 | printk(KERN_DEBUG "%s: Failed to initialize rate control " |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1436 | "algorithm\n", wiphy_name(local->hw.wiphy)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1437 | goto fail_rate; |
| 1438 | } |
| 1439 | |
| 1440 | result = ieee80211_wep_init(local); |
| 1441 | |
| 1442 | if (result < 0) { |
Jeremy Fitzhardinge | 023a04b | 2008-07-14 12:52:08 -0700 | [diff] [blame] | 1443 | printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n", |
| 1444 | wiphy_name(local->hw.wiphy), result); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1445 | goto fail_wep; |
| 1446 | } |
| 1447 | |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 1448 | local->mdev->select_queue = ieee80211_select_queue; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1449 | |
| 1450 | /* add one default STA interface */ |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1451 | result = ieee80211_if_add(local, "wlan%d", NULL, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame^] | 1452 | NL80211_IFTYPE_STATION, NULL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1453 | if (result) |
| 1454 | printk(KERN_WARNING "%s: Failed to add default virtual iface\n", |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1455 | wiphy_name(local->hw.wiphy)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1456 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1457 | rtnl_unlock(); |
| 1458 | |
| 1459 | ieee80211_led_init(local); |
| 1460 | |
| 1461 | return 0; |
| 1462 | |
| 1463 | fail_wep: |
| 1464 | rate_control_deinitialize(local); |
| 1465 | fail_rate: |
| 1466 | unregister_netdevice(local->mdev); |
Pavel Emelyanov | 339a7c4 | 2008-05-04 17:59:30 -0700 | [diff] [blame] | 1467 | local->mdev = NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1468 | fail_dev: |
| 1469 | rtnl_unlock(); |
| 1470 | sta_info_stop(local); |
| 1471 | fail_sta_info: |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1472 | debugfs_hw_del(local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1473 | destroy_workqueue(local->hw.workqueue); |
| 1474 | fail_workqueue: |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1475 | if (local->mdev) |
| 1476 | free_netdev(local->mdev); |
Johannes Berg | 96d5105 | 2008-02-08 09:48:13 +0100 | [diff] [blame] | 1477 | fail_mdev_alloc: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1478 | wiphy_unregister(local->hw.wiphy); |
| 1479 | return result; |
| 1480 | } |
| 1481 | EXPORT_SYMBOL(ieee80211_register_hw); |
| 1482 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1483 | void ieee80211_unregister_hw(struct ieee80211_hw *hw) |
| 1484 | { |
| 1485 | struct ieee80211_local *local = hw_to_local(hw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1486 | |
| 1487 | tasklet_kill(&local->tx_pending_tasklet); |
| 1488 | tasklet_kill(&local->tasklet); |
| 1489 | |
| 1490 | rtnl_lock(); |
| 1491 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1492 | /* |
| 1493 | * At this point, interface list manipulations are fine |
| 1494 | * because the driver cannot be handing us frames any |
| 1495 | * more and the tasklet is killed. |
| 1496 | */ |
Johannes Berg | 5b2812e | 2007-09-26 14:27:23 +0200 | [diff] [blame] | 1497 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1498 | /* First, we remove all virtual interfaces. */ |
| 1499 | ieee80211_remove_interfaces(local); |
Johannes Berg | 5b2812e | 2007-09-26 14:27:23 +0200 | [diff] [blame] | 1500 | |
| 1501 | /* then, finally, remove the master interface */ |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1502 | unregister_netdevice(local->mdev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1503 | |
| 1504 | rtnl_unlock(); |
| 1505 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1506 | ieee80211_rx_bss_list_deinit(local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1507 | ieee80211_clear_tx_pending(local); |
| 1508 | sta_info_stop(local); |
| 1509 | rate_control_deinitialize(local); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1510 | debugfs_hw_del(local); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1511 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1512 | if (skb_queue_len(&local->skb_queue) |
| 1513 | || skb_queue_len(&local->skb_queue_unreliable)) |
| 1514 | printk(KERN_WARNING "%s: skb_queue not empty\n", |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1515 | wiphy_name(local->hw.wiphy)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1516 | skb_queue_purge(&local->skb_queue); |
| 1517 | skb_queue_purge(&local->skb_queue_unreliable); |
| 1518 | |
| 1519 | destroy_workqueue(local->hw.workqueue); |
| 1520 | wiphy_unregister(local->hw.wiphy); |
| 1521 | ieee80211_wep_free(local); |
| 1522 | ieee80211_led_exit(local); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1523 | free_netdev(local->mdev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1524 | } |
| 1525 | EXPORT_SYMBOL(ieee80211_unregister_hw); |
| 1526 | |
| 1527 | void ieee80211_free_hw(struct ieee80211_hw *hw) |
| 1528 | { |
| 1529 | struct ieee80211_local *local = hw_to_local(hw); |
| 1530 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1531 | wiphy_free(local->hw.wiphy); |
| 1532 | } |
| 1533 | EXPORT_SYMBOL(ieee80211_free_hw); |
| 1534 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1535 | static int __init ieee80211_init(void) |
| 1536 | { |
| 1537 | struct sk_buff *skb; |
| 1538 | int ret; |
| 1539 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1540 | BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb)); |
| 1541 | BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) + |
| 1542 | IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1543 | |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 1544 | ret = rc80211_pid_init(); |
Mattias Nissler | ad01837 | 2007-12-19 01:25:57 +0100 | [diff] [blame] | 1545 | if (ret) |
David S. Miller | 51cb6db | 2008-07-15 03:34:57 -0700 | [diff] [blame] | 1546 | return ret; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1547 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1548 | ieee80211_debugfs_netdev_init(); |
| 1549 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1550 | return 0; |
| 1551 | } |
| 1552 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1553 | static void __exit ieee80211_exit(void) |
| 1554 | { |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 1555 | rc80211_pid_exit(); |
Johannes Berg | ac71c69 | 2007-10-28 14:17:44 +0100 | [diff] [blame] | 1556 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 1557 | /* |
| 1558 | * For key todo, it'll be empty by now but the work |
| 1559 | * might still be scheduled. |
| 1560 | */ |
| 1561 | flush_scheduled_work(); |
| 1562 | |
Luis Carlos Cobo | f7a9214 | 2008-02-23 15:17:18 +0100 | [diff] [blame] | 1563 | if (mesh_allocated) |
| 1564 | ieee80211s_stop(); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 1565 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1566 | ieee80211_debugfs_netdev_exit(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | |
Johannes Berg | ca9938fe | 2007-09-11 12:50:32 +0200 | [diff] [blame] | 1570 | subsys_initcall(ieee80211_init); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1571 | module_exit(ieee80211_exit); |
| 1572 | |
| 1573 | MODULE_DESCRIPTION("IEEE 802.11 subsystem"); |
| 1574 | MODULE_LICENSE("GPL"); |