Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 2 | * Interface handling (except master interface) |
| 3 | * |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 5 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 6 | * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz> |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 7 | * Copyright 2008, Johannes Berg <johannes@sipsolutions.net> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/if_arp.h> |
| 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/rtnetlink.h> |
| 17 | #include <net/mac80211.h> |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 18 | #include <net/ieee80211_radiotap.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 19 | #include "ieee80211_i.h" |
| 20 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 21 | #include "debugfs_netdev.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 22 | #include "mesh.h" |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 23 | #include "led.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 24 | #include "driver-ops.h" |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 25 | #include "wme.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 26 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 27 | /** |
| 28 | * DOC: Interface list locking |
| 29 | * |
| 30 | * The interface list in each struct ieee80211_local is protected |
| 31 | * three-fold: |
| 32 | * |
| 33 | * (1) modifications may only be done under the RTNL |
| 34 | * (2) modifications and readers are protected against each other by |
| 35 | * the iflist_mtx. |
| 36 | * (3) modifications are done in an RCU manner so atomic readers |
| 37 | * can traverse the list in RCU-safe blocks. |
| 38 | * |
| 39 | * As a consequence, reads (traversals) of the list can be protected |
| 40 | * by either the RTNL, the iflist_mtx or RCU. |
| 41 | */ |
| 42 | |
| 43 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 44 | static int ieee80211_change_mtu(struct net_device *dev, int new_mtu) |
| 45 | { |
| 46 | int meshhdrlen; |
| 47 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 48 | |
| 49 | meshhdrlen = (sdata->vif.type == NL80211_IFTYPE_MESH_POINT) ? 5 : 0; |
| 50 | |
| 51 | /* FIX: what would be proper limits for MTU? |
| 52 | * This interface uses 802.3 frames. */ |
| 53 | if (new_mtu < 256 || |
| 54 | new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6 - meshhdrlen) { |
| 55 | return -EINVAL; |
| 56 | } |
| 57 | |
| 58 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 59 | printk(KERN_DEBUG "%s: setting MTU %d\n", dev->name, new_mtu); |
| 60 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 61 | dev->mtu = new_mtu; |
| 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | static inline int identical_mac_addr_allowed(int type1, int type2) |
| 66 | { |
| 67 | return type1 == NL80211_IFTYPE_MONITOR || |
| 68 | type2 == NL80211_IFTYPE_MONITOR || |
| 69 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) || |
| 70 | (type1 == NL80211_IFTYPE_WDS && |
| 71 | (type2 == NL80211_IFTYPE_WDS || |
| 72 | type2 == NL80211_IFTYPE_AP)) || |
| 73 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) || |
| 74 | (type1 == NL80211_IFTYPE_AP_VLAN && |
| 75 | (type2 == NL80211_IFTYPE_AP || |
| 76 | type2 == NL80211_IFTYPE_AP_VLAN)); |
| 77 | } |
| 78 | |
| 79 | static int ieee80211_open(struct net_device *dev) |
| 80 | { |
Johannes Berg | b4a4bf5 | 2008-09-26 13:34:54 +0200 | [diff] [blame] | 81 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 82 | struct ieee80211_sub_if_data *nsdata; |
| 83 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 84 | struct sta_info *sta; |
| 85 | struct ieee80211_if_init_conf conf; |
| 86 | u32 changed = 0; |
| 87 | int res; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 88 | u32 hw_reconf_flags = 0; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 89 | u8 null_addr[ETH_ALEN] = {0}; |
| 90 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 91 | /* fail early if user set an invalid address */ |
| 92 | if (compare_ether_addr(dev->dev_addr, null_addr) && |
| 93 | !is_valid_ether_addr(dev->dev_addr)) |
| 94 | return -EADDRNOTAVAIL; |
| 95 | |
| 96 | /* we hold the RTNL here so can safely walk the list */ |
| 97 | list_for_each_entry(nsdata, &local->interfaces, list) { |
| 98 | struct net_device *ndev = nsdata->dev; |
| 99 | |
| 100 | if (ndev != dev && netif_running(ndev)) { |
| 101 | /* |
| 102 | * Allow only a single IBSS interface to be up at any |
| 103 | * time. This is restricted because beacon distribution |
| 104 | * cannot work properly if both are in the same IBSS. |
| 105 | * |
| 106 | * To remove this restriction we'd have to disallow them |
| 107 | * from setting the same SSID on different IBSS interfaces |
| 108 | * belonging to the same hardware. Then, however, we're |
| 109 | * faced with having to adopt two different TSF timers... |
| 110 | */ |
| 111 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC && |
| 112 | nsdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 113 | return -EBUSY; |
| 114 | |
| 115 | /* |
| 116 | * The remaining checks are only performed for interfaces |
| 117 | * with the same MAC address. |
| 118 | */ |
| 119 | if (compare_ether_addr(dev->dev_addr, ndev->dev_addr)) |
| 120 | continue; |
| 121 | |
| 122 | /* |
| 123 | * check whether it may have the same address |
| 124 | */ |
| 125 | if (!identical_mac_addr_allowed(sdata->vif.type, |
| 126 | nsdata->vif.type)) |
| 127 | return -ENOTUNIQ; |
| 128 | |
| 129 | /* |
| 130 | * can only add VLANs to enabled APs |
| 131 | */ |
| 132 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 133 | nsdata->vif.type == NL80211_IFTYPE_AP) |
| 134 | sdata->bss = &nsdata->u.ap; |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | switch (sdata->vif.type) { |
| 139 | case NL80211_IFTYPE_WDS: |
| 140 | if (!is_valid_ether_addr(sdata->u.wds.remote_addr)) |
| 141 | return -ENOLINK; |
| 142 | break; |
| 143 | case NL80211_IFTYPE_AP_VLAN: |
| 144 | if (!sdata->bss) |
| 145 | return -ENOLINK; |
| 146 | list_add(&sdata->u.vlan.list, &sdata->bss->vlans); |
| 147 | break; |
| 148 | case NL80211_IFTYPE_AP: |
| 149 | sdata->bss = &sdata->u.ap; |
| 150 | break; |
| 151 | case NL80211_IFTYPE_MESH_POINT: |
| 152 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 153 | break; |
| 154 | /* mesh ifaces must set allmulti to forward mcast traffic */ |
| 155 | atomic_inc(&local->iff_allmultis); |
| 156 | break; |
| 157 | case NL80211_IFTYPE_STATION: |
| 158 | case NL80211_IFTYPE_MONITOR: |
| 159 | case NL80211_IFTYPE_ADHOC: |
| 160 | /* no special treatment */ |
| 161 | break; |
| 162 | case NL80211_IFTYPE_UNSPECIFIED: |
| 163 | case __NL80211_IFTYPE_AFTER_LAST: |
| 164 | /* cannot happen */ |
| 165 | WARN_ON(1); |
| 166 | break; |
| 167 | } |
| 168 | |
| 169 | if (local->open_count == 0) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 170 | res = drv_start(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 171 | if (res) |
| 172 | goto err_del_bss; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 173 | /* we're brought up, everything changes */ |
| 174 | hw_reconf_flags = ~0; |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 175 | ieee80211_led_radio(local, true); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /* |
| 179 | * Check all interfaces and copy the hopefully now-present |
| 180 | * MAC address to those that have the special null one. |
| 181 | */ |
| 182 | list_for_each_entry(nsdata, &local->interfaces, list) { |
| 183 | struct net_device *ndev = nsdata->dev; |
| 184 | |
| 185 | /* |
| 186 | * No need to check netif_running since we do not allow |
| 187 | * it to start up with this invalid address. |
| 188 | */ |
John W. Linville | 0adc23f | 2009-10-06 16:27:18 -0400 | [diff] [blame] | 189 | if (compare_ether_addr(null_addr, ndev->dev_addr) == 0) { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 190 | memcpy(ndev->dev_addr, |
| 191 | local->hw.wiphy->perm_addr, |
| 192 | ETH_ALEN); |
John W. Linville | 0adc23f | 2009-10-06 16:27:18 -0400 | [diff] [blame] | 193 | memcpy(ndev->perm_addr, ndev->dev_addr, ETH_ALEN); |
| 194 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 195 | } |
| 196 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 197 | /* |
| 198 | * Validate the MAC address for this device. |
| 199 | */ |
| 200 | if (!is_valid_ether_addr(dev->dev_addr)) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 201 | if (!local->open_count) |
| 202 | drv_stop(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 203 | return -EADDRNOTAVAIL; |
| 204 | } |
| 205 | |
| 206 | switch (sdata->vif.type) { |
| 207 | case NL80211_IFTYPE_AP_VLAN: |
| 208 | /* no need to tell driver */ |
| 209 | break; |
| 210 | case NL80211_IFTYPE_MONITOR: |
| 211 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) { |
| 212 | local->cooked_mntrs++; |
| 213 | break; |
| 214 | } |
| 215 | |
| 216 | /* must be before the call to ieee80211_configure_filter */ |
| 217 | local->monitors++; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 218 | if (local->monitors == 1) { |
Johannes Berg | 0869aea | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 219 | local->hw.conf.flags |= IEEE80211_CONF_MONITOR; |
| 220 | hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 221 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 222 | |
| 223 | if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL) |
| 224 | local->fif_fcsfail++; |
| 225 | if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL) |
| 226 | local->fif_plcpfail++; |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 227 | if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL) { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 228 | local->fif_control++; |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 229 | local->fif_pspoll++; |
| 230 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 231 | if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS) |
| 232 | local->fif_other_bss++; |
| 233 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 234 | ieee80211_configure_filter(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 235 | break; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 236 | default: |
| 237 | conf.vif = &sdata->vif; |
| 238 | conf.type = sdata->vif.type; |
| 239 | conf.mac_addr = dev->dev_addr; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 240 | res = drv_add_interface(local, &conf); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 241 | if (res) |
| 242 | goto err_stop; |
| 243 | |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 244 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 245 | local->fif_other_bss++; |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 246 | ieee80211_configure_filter(local); |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 247 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 248 | ieee80211_start_mesh(sdata); |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 249 | } else if (sdata->vif.type == NL80211_IFTYPE_AP) { |
| 250 | local->fif_pspoll++; |
| 251 | |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 252 | ieee80211_configure_filter(local); |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 253 | } |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 254 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 255 | changed |= ieee80211_reset_erp_info(sdata); |
| 256 | ieee80211_bss_info_change_notify(sdata, changed); |
| 257 | ieee80211_enable_keys(sdata); |
| 258 | |
Johannes Berg | 7986cf9 | 2009-03-21 17:08:43 +0100 | [diff] [blame] | 259 | if (sdata->vif.type == NL80211_IFTYPE_STATION) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 260 | netif_carrier_off(dev); |
| 261 | else |
| 262 | netif_carrier_on(dev); |
| 263 | } |
| 264 | |
| 265 | if (sdata->vif.type == NL80211_IFTYPE_WDS) { |
| 266 | /* Create STA entry for the WDS peer */ |
| 267 | sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr, |
| 268 | GFP_KERNEL); |
| 269 | if (!sta) { |
| 270 | res = -ENOMEM; |
| 271 | goto err_del_interface; |
| 272 | } |
| 273 | |
| 274 | /* no locking required since STA is not live yet */ |
| 275 | sta->flags |= WLAN_STA_AUTHORIZED; |
| 276 | |
| 277 | res = sta_info_insert(sta); |
| 278 | if (res) { |
| 279 | /* STA has been freed */ |
| 280 | goto err_del_interface; |
| 281 | } |
| 282 | } |
| 283 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 284 | /* |
| 285 | * set_multicast_list will be invoked by the networking core |
| 286 | * which will check whether any increments here were done in |
| 287 | * error and sync them down to the hardware as filter flags. |
| 288 | */ |
| 289 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 290 | atomic_inc(&local->iff_allmultis); |
| 291 | |
| 292 | if (sdata->flags & IEEE80211_SDATA_PROMISC) |
| 293 | atomic_inc(&local->iff_promiscs); |
| 294 | |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 295 | hw_reconf_flags |= __ieee80211_recalc_idle(local); |
| 296 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 297 | local->open_count++; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 298 | if (hw_reconf_flags) { |
| 299 | ieee80211_hw_config(local, hw_reconf_flags); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 300 | /* |
| 301 | * set default queue parameters so drivers don't |
| 302 | * need to initialise the hardware if the hardware |
| 303 | * doesn't start up with sane defaults |
| 304 | */ |
| 305 | ieee80211_set_wmm_default(sdata); |
| 306 | } |
| 307 | |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 308 | ieee80211_recalc_ps(local, -1); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 309 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 310 | /* |
| 311 | * ieee80211_sta_work is disabled while network interface |
| 312 | * is down. Therefore, some configuration changes may not |
| 313 | * yet be effective. Trigger execution of ieee80211_sta_work |
| 314 | * to fix this. |
| 315 | */ |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 316 | if (sdata->vif.type == NL80211_IFTYPE_STATION) |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 317 | ieee80211_queue_work(&local->hw, &sdata->u.mgd.work); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 318 | |
John W. Linville | 8a5b33f | 2010-01-06 15:39:39 -0500 | [diff] [blame] | 319 | netif_tx_start_all_queues(dev); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 320 | |
| 321 | return 0; |
| 322 | err_del_interface: |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 323 | drv_remove_interface(local, &conf); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 324 | err_stop: |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 325 | if (!local->open_count) |
| 326 | drv_stop(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 327 | err_del_bss: |
| 328 | sdata->bss = NULL; |
| 329 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 330 | list_del(&sdata->u.vlan.list); |
| 331 | return res; |
| 332 | } |
| 333 | |
| 334 | static int ieee80211_stop(struct net_device *dev) |
| 335 | { |
| 336 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 337 | struct ieee80211_local *local = sdata->local; |
| 338 | struct ieee80211_if_init_conf conf; |
| 339 | struct sta_info *sta; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 340 | unsigned long flags; |
| 341 | struct sk_buff *skb, *tmp; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 342 | u32 hw_reconf_flags = 0; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 343 | int i; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 344 | |
| 345 | /* |
| 346 | * Stop TX on this interface first. |
| 347 | */ |
John W. Linville | 8a5b33f | 2010-01-06 15:39:39 -0500 | [diff] [blame] | 348 | netif_tx_stop_all_queues(dev); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 349 | |
| 350 | /* |
| 351 | * Now delete all active aggregation sessions. |
| 352 | */ |
| 353 | rcu_read_lock(); |
| 354 | |
| 355 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 356 | if (sta->sdata == sdata) |
Johannes Berg | 2dace10 | 2009-02-10 21:25:52 +0100 | [diff] [blame] | 357 | ieee80211_sta_tear_down_BA_sessions(sta); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | rcu_read_unlock(); |
| 361 | |
| 362 | /* |
| 363 | * Remove all stations associated with this interface. |
| 364 | * |
| 365 | * This must be done before calling ops->remove_interface() |
| 366 | * because otherwise we can later invoke ops->sta_notify() |
| 367 | * whenever the STAs are removed, and that invalidates driver |
| 368 | * assumptions about always getting a vif pointer that is valid |
| 369 | * (because if we remove a STA after ops->remove_interface() |
| 370 | * the driver will have removed the vif info already!) |
| 371 | * |
| 372 | * We could relax this and only unlink the stations from the |
| 373 | * hash table and list but keep them on a per-sdata list that |
| 374 | * will be inserted back again when the interface is brought |
| 375 | * up again, but I don't currently see a use case for that, |
| 376 | * except with WDS which gets a STA entry created when it is |
| 377 | * brought up. |
| 378 | */ |
| 379 | sta_info_flush(local, sdata); |
| 380 | |
| 381 | /* |
| 382 | * Don't count this interface for promisc/allmulti while it |
| 383 | * is down. dev_mc_unsync() will invoke set_multicast_list |
| 384 | * on the master interface which will sync these down to the |
| 385 | * hardware as filter flags. |
| 386 | */ |
| 387 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 388 | atomic_dec(&local->iff_allmultis); |
| 389 | |
| 390 | if (sdata->flags & IEEE80211_SDATA_PROMISC) |
| 391 | atomic_dec(&local->iff_promiscs); |
| 392 | |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 393 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 394 | local->fif_pspoll--; |
| 395 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 396 | netif_addr_lock_bh(dev); |
| 397 | spin_lock_bh(&local->filter_lock); |
| 398 | __dev_addr_unsync(&local->mc_list, &local->mc_count, |
| 399 | &dev->mc_list, &dev->mc_count); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 400 | spin_unlock_bh(&local->filter_lock); |
| 401 | netif_addr_unlock_bh(dev); |
| 402 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 403 | ieee80211_configure_filter(local); |
| 404 | |
Vivek Natarajan | 7cbf0ba | 2008-12-24 00:34:37 -0800 | [diff] [blame] | 405 | del_timer_sync(&local->dynamic_ps_timer); |
| 406 | cancel_work_sync(&local->dynamic_ps_enable_work); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 407 | |
| 408 | /* APs need special treatment */ |
| 409 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Johannes Berg | 57c9fff | 2009-07-29 15:46:21 +0200 | [diff] [blame] | 410 | struct ieee80211_sub_if_data *vlan, *tmpsdata; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 411 | struct beacon_data *old_beacon = sdata->u.ap.beacon; |
| 412 | |
| 413 | /* remove beacon */ |
| 414 | rcu_assign_pointer(sdata->u.ap.beacon, NULL); |
| 415 | synchronize_rcu(); |
| 416 | kfree(old_beacon); |
| 417 | |
| 418 | /* down all dependent devices, that is VLANs */ |
Johannes Berg | 57c9fff | 2009-07-29 15:46:21 +0200 | [diff] [blame] | 419 | list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans, |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 420 | u.vlan.list) |
| 421 | dev_close(vlan->dev); |
| 422 | WARN_ON(!list_empty(&sdata->u.ap.vlans)); |
| 423 | } |
| 424 | |
| 425 | local->open_count--; |
| 426 | |
| 427 | switch (sdata->vif.type) { |
| 428 | case NL80211_IFTYPE_AP_VLAN: |
| 429 | list_del(&sdata->u.vlan.list); |
| 430 | /* no need to tell driver */ |
| 431 | break; |
| 432 | case NL80211_IFTYPE_MONITOR: |
| 433 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) { |
| 434 | local->cooked_mntrs--; |
| 435 | break; |
| 436 | } |
| 437 | |
| 438 | local->monitors--; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 439 | if (local->monitors == 0) { |
Johannes Berg | 0869aea | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 440 | local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR; |
| 441 | hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 442 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 443 | |
| 444 | if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL) |
| 445 | local->fif_fcsfail--; |
| 446 | if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL) |
| 447 | local->fif_plcpfail--; |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 448 | if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL) { |
| 449 | local->fif_pspoll--; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 450 | local->fif_control--; |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 451 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 452 | if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS) |
| 453 | local->fif_other_bss--; |
| 454 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 455 | ieee80211_configure_filter(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 456 | break; |
| 457 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 458 | del_timer_sync(&sdata->u.mgd.chswitch_timer); |
| 459 | del_timer_sync(&sdata->u.mgd.timer); |
Johannes Berg | 0e2b628 | 2009-07-13 13:23:39 +0200 | [diff] [blame] | 460 | del_timer_sync(&sdata->u.mgd.conn_mon_timer); |
| 461 | del_timer_sync(&sdata->u.mgd.bcn_mon_timer); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 462 | /* |
Johannes Berg | 0e2b628 | 2009-07-13 13:23:39 +0200 | [diff] [blame] | 463 | * If any of the timers fired while we waited for it, it will |
| 464 | * have queued its work. Now the work will be running again |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 465 | * but will not rearm the timer again because it checks |
| 466 | * whether the interface is running, which, at this point, |
| 467 | * it no longer is. |
| 468 | */ |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 469 | cancel_work_sync(&sdata->u.mgd.work); |
| 470 | cancel_work_sync(&sdata->u.mgd.chswitch_work); |
Johannes Berg | 0e2b628 | 2009-07-13 13:23:39 +0200 | [diff] [blame] | 471 | cancel_work_sync(&sdata->u.mgd.monitor_work); |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 472 | cancel_work_sync(&sdata->u.mgd.beacon_loss_work); |
| 473 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 474 | /* |
| 475 | * When we get here, the interface is marked down. |
| 476 | * Call synchronize_rcu() to wait for the RX path |
| 477 | * should it be using the interface and enqueuing |
| 478 | * frames at this very time on another CPU. |
| 479 | */ |
| 480 | synchronize_rcu(); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 481 | skb_queue_purge(&sdata->u.mgd.skb_queue); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 482 | /* fall through */ |
| 483 | case NL80211_IFTYPE_ADHOC: |
| 484 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 485 | del_timer_sync(&sdata->u.ibss.timer); |
| 486 | cancel_work_sync(&sdata->u.ibss.work); |
| 487 | synchronize_rcu(); |
| 488 | skb_queue_purge(&sdata->u.ibss.skb_queue); |
| 489 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 490 | /* fall through */ |
| 491 | case NL80211_IFTYPE_MESH_POINT: |
| 492 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 493 | /* other_bss and allmulti are always set on mesh |
| 494 | * ifaces */ |
| 495 | local->fif_other_bss--; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 496 | atomic_dec(&local->iff_allmultis); |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 497 | |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 498 | ieee80211_configure_filter(local); |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 499 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 500 | ieee80211_stop_mesh(sdata); |
| 501 | } |
| 502 | /* fall through */ |
| 503 | default: |
Johannes Berg | 15db0b7 | 2009-08-25 16:33:47 +0200 | [diff] [blame] | 504 | if (local->scan_sdata == sdata) |
| 505 | ieee80211_scan_cancel(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 506 | |
Bob Copeland | 97af743 | 2009-07-29 10:13:03 +0200 | [diff] [blame] | 507 | /* |
| 508 | * Disable beaconing for AP and mesh, IBSS can't |
| 509 | * still be joined to a network at this point. |
| 510 | */ |
| 511 | if (sdata->vif.type == NL80211_IFTYPE_AP || |
| 512 | sdata->vif.type == NL80211_IFTYPE_MESH_POINT) { |
| 513 | ieee80211_bss_info_change_notify(sdata, |
| 514 | BSS_CHANGED_BEACON_ENABLED); |
| 515 | } |
| 516 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 517 | conf.vif = &sdata->vif; |
| 518 | conf.type = sdata->vif.type; |
| 519 | conf.mac_addr = dev->dev_addr; |
| 520 | /* disable all keys for as long as this netdev is down */ |
| 521 | ieee80211_disable_keys(sdata); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 522 | drv_remove_interface(local, &conf); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | sdata->bss = NULL; |
| 526 | |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 527 | hw_reconf_flags |= __ieee80211_recalc_idle(local); |
| 528 | |
| 529 | ieee80211_recalc_ps(local, -1); |
| 530 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 531 | if (local->open_count == 0) { |
Johannes Berg | ea77f12 | 2009-08-21 14:44:45 +0200 | [diff] [blame] | 532 | ieee80211_clear_tx_pending(local); |
Johannes Berg | 84f6a01 | 2009-08-20 20:02:20 +0200 | [diff] [blame] | 533 | ieee80211_stop_device(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 534 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 535 | /* no reconfiguring after stop! */ |
| 536 | hw_reconf_flags = 0; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 537 | } |
| 538 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 539 | /* do after stop to avoid reconfiguring when we stop anyway */ |
| 540 | if (hw_reconf_flags) |
| 541 | ieee80211_hw_config(local, hw_reconf_flags); |
| 542 | |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 543 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 544 | for (i = 0; i < IEEE80211_MAX_QUEUES; i++) { |
| 545 | skb_queue_walk_safe(&local->pending[i], skb, tmp) { |
| 546 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 547 | if (info->control.vif == &sdata->vif) { |
| 548 | __skb_unlink(skb, &local->pending[i]); |
| 549 | dev_kfree_skb_irq(skb); |
| 550 | } |
| 551 | } |
| 552 | } |
| 553 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 554 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 555 | return 0; |
| 556 | } |
| 557 | |
| 558 | static void ieee80211_set_multicast_list(struct net_device *dev) |
| 559 | { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 560 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | b4a4bf5 | 2008-09-26 13:34:54 +0200 | [diff] [blame] | 561 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 562 | int allmulti, promisc, sdata_allmulti, sdata_promisc; |
| 563 | |
| 564 | allmulti = !!(dev->flags & IFF_ALLMULTI); |
| 565 | promisc = !!(dev->flags & IFF_PROMISC); |
| 566 | sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI); |
| 567 | sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC); |
| 568 | |
| 569 | if (allmulti != sdata_allmulti) { |
| 570 | if (dev->flags & IFF_ALLMULTI) |
| 571 | atomic_inc(&local->iff_allmultis); |
| 572 | else |
| 573 | atomic_dec(&local->iff_allmultis); |
| 574 | sdata->flags ^= IEEE80211_SDATA_ALLMULTI; |
| 575 | } |
| 576 | |
| 577 | if (promisc != sdata_promisc) { |
| 578 | if (dev->flags & IFF_PROMISC) |
| 579 | atomic_inc(&local->iff_promiscs); |
| 580 | else |
| 581 | atomic_dec(&local->iff_promiscs); |
| 582 | sdata->flags ^= IEEE80211_SDATA_PROMISC; |
| 583 | } |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 584 | spin_lock_bh(&local->filter_lock); |
| 585 | __dev_addr_sync(&local->mc_list, &local->mc_count, |
| 586 | &dev->mc_list, &dev->mc_count); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 587 | spin_unlock_bh(&local->filter_lock); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 588 | ieee80211_queue_work(&local->hw, &local->reconfig_filter); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 589 | } |
| 590 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 591 | /* |
| 592 | * Called when the netdev is removed or, by the code below, before |
| 593 | * the interface type changes. |
| 594 | */ |
| 595 | static void ieee80211_teardown_sdata(struct net_device *dev) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 596 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 597 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 598 | struct ieee80211_local *local = sdata->local; |
| 599 | struct beacon_data *beacon; |
| 600 | struct sk_buff *skb; |
| 601 | int flushed; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 602 | int i; |
| 603 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 604 | /* free extra data */ |
| 605 | ieee80211_free_keys(sdata); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 606 | |
Jouni Malinen | aee14ce | 2008-09-09 16:33:15 +0200 | [diff] [blame] | 607 | ieee80211_debugfs_remove_netdev(sdata); |
| 608 | |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 609 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 610 | __skb_queue_purge(&sdata->fragments[i].skb_list); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 611 | sdata->fragment_next = 0; |
| 612 | |
| 613 | switch (sdata->vif.type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 614 | case NL80211_IFTYPE_AP: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 615 | beacon = sdata->u.ap.beacon; |
| 616 | rcu_assign_pointer(sdata->u.ap.beacon, NULL); |
| 617 | synchronize_rcu(); |
| 618 | kfree(beacon); |
| 619 | |
| 620 | while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) { |
| 621 | local->total_ps_buffered--; |
| 622 | dev_kfree_skb(skb); |
| 623 | } |
| 624 | |
| 625 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 626 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 627 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 628 | mesh_rmc_free(sdata); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 629 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 630 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 631 | if (WARN_ON(sdata->u.ibss.presp)) |
| 632 | kfree_skb(sdata->u.ibss.presp); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 633 | break; |
| 634 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 635 | case NL80211_IFTYPE_WDS: |
| 636 | case NL80211_IFTYPE_AP_VLAN: |
| 637 | case NL80211_IFTYPE_MONITOR: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 638 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 639 | case NL80211_IFTYPE_UNSPECIFIED: |
| 640 | case __NL80211_IFTYPE_AFTER_LAST: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 641 | BUG(); |
| 642 | break; |
| 643 | } |
| 644 | |
| 645 | flushed = sta_info_flush(local, sdata); |
| 646 | WARN_ON(flushed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 647 | } |
| 648 | |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 649 | static u16 ieee80211_netdev_select_queue(struct net_device *dev, |
| 650 | struct sk_buff *skb) |
| 651 | { |
| 652 | return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb); |
| 653 | } |
| 654 | |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 655 | static const struct net_device_ops ieee80211_dataif_ops = { |
| 656 | .ndo_open = ieee80211_open, |
| 657 | .ndo_stop = ieee80211_stop, |
| 658 | .ndo_uninit = ieee80211_teardown_sdata, |
| 659 | .ndo_start_xmit = ieee80211_subif_start_xmit, |
| 660 | .ndo_set_multicast_list = ieee80211_set_multicast_list, |
| 661 | .ndo_change_mtu = ieee80211_change_mtu, |
| 662 | .ndo_set_mac_address = eth_mac_addr, |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 663 | .ndo_select_queue = ieee80211_netdev_select_queue, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 664 | }; |
| 665 | |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 666 | static u16 ieee80211_monitor_select_queue(struct net_device *dev, |
| 667 | struct sk_buff *skb) |
| 668 | { |
| 669 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 670 | struct ieee80211_local *local = sdata->local; |
| 671 | struct ieee80211_hdr *hdr; |
| 672 | struct ieee80211_radiotap_header *rtap = (void *)skb->data; |
Felix Fietkau | 193e70e | 2010-01-11 06:47:00 +0100 | [diff] [blame] | 673 | u8 *p; |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 674 | |
| 675 | if (local->hw.queues < 4) |
| 676 | return 0; |
| 677 | |
| 678 | if (skb->len < 4 || |
Johannes Berg | b49bb57 | 2010-01-08 19:00:00 +0100 | [diff] [blame] | 679 | skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */) |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 680 | return 0; /* doesn't matter, frame will be dropped */ |
| 681 | |
Johannes Berg | b49bb57 | 2010-01-08 19:00:00 +0100 | [diff] [blame] | 682 | hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len)); |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 683 | |
Felix Fietkau | 193e70e | 2010-01-11 06:47:00 +0100 | [diff] [blame] | 684 | if (!ieee80211_is_data_qos(hdr->frame_control)) { |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 685 | skb->priority = 7; |
| 686 | return ieee802_1d_to_ac[skb->priority]; |
| 687 | } |
| 688 | |
Felix Fietkau | 193e70e | 2010-01-11 06:47:00 +0100 | [diff] [blame] | 689 | p = ieee80211_get_qos_ctl(hdr); |
| 690 | skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK; |
| 691 | |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 692 | return ieee80211_downgrade_queue(local, skb); |
| 693 | } |
| 694 | |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 695 | static const struct net_device_ops ieee80211_monitorif_ops = { |
| 696 | .ndo_open = ieee80211_open, |
| 697 | .ndo_stop = ieee80211_stop, |
| 698 | .ndo_uninit = ieee80211_teardown_sdata, |
| 699 | .ndo_start_xmit = ieee80211_monitor_start_xmit, |
| 700 | .ndo_set_multicast_list = ieee80211_set_multicast_list, |
| 701 | .ndo_change_mtu = ieee80211_change_mtu, |
| 702 | .ndo_set_mac_address = eth_mac_addr, |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 703 | .ndo_select_queue = ieee80211_monitor_select_queue, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 704 | }; |
| 705 | |
| 706 | static void ieee80211_if_setup(struct net_device *dev) |
| 707 | { |
| 708 | ether_setup(dev); |
| 709 | dev->netdev_ops = &ieee80211_dataif_ops; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 710 | dev->destructor = free_netdev; |
| 711 | } |
| 712 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 713 | /* |
| 714 | * Helper function to initialise an interface to a specific type. |
| 715 | */ |
| 716 | static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 717 | enum nl80211_iftype type) |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 718 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 719 | /* clear type-dependent union */ |
| 720 | memset(&sdata->u, 0, sizeof(sdata->u)); |
| 721 | |
| 722 | /* and set some type-dependent values */ |
| 723 | sdata->vif.type = type; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 724 | sdata->dev->netdev_ops = &ieee80211_dataif_ops; |
Johannes Berg | 60719ff | 2008-09-16 14:55:09 +0200 | [diff] [blame] | 725 | sdata->wdev.iftype = type; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 726 | |
| 727 | /* only monitor differs */ |
| 728 | sdata->dev->type = ARPHRD_ETHER; |
| 729 | |
| 730 | switch (type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 731 | case NL80211_IFTYPE_AP: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 732 | skb_queue_head_init(&sdata->u.ap.ps_bc_buf); |
| 733 | INIT_LIST_HEAD(&sdata->u.ap.vlans); |
| 734 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 735 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 736 | ieee80211_sta_setup_sdata(sdata); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 737 | break; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 738 | case NL80211_IFTYPE_ADHOC: |
| 739 | ieee80211_ibss_setup_sdata(sdata); |
| 740 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 741 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 742 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 743 | ieee80211_mesh_init_sdata(sdata); |
| 744 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 745 | case NL80211_IFTYPE_MONITOR: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 746 | sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 747 | sdata->dev->netdev_ops = &ieee80211_monitorif_ops; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 748 | sdata->u.mntr_flags = MONITOR_FLAG_CONTROL | |
| 749 | MONITOR_FLAG_OTHER_BSS; |
| 750 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 751 | case NL80211_IFTYPE_WDS: |
| 752 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 753 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 754 | case NL80211_IFTYPE_UNSPECIFIED: |
| 755 | case __NL80211_IFTYPE_AFTER_LAST: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 756 | BUG(); |
| 757 | break; |
| 758 | } |
| 759 | |
| 760 | ieee80211_debugfs_add_netdev(sdata); |
| 761 | } |
| 762 | |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 763 | int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 764 | enum nl80211_iftype type) |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 765 | { |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 766 | ASSERT_RTNL(); |
| 767 | |
| 768 | if (type == sdata->vif.type) |
| 769 | return 0; |
| 770 | |
Johannes Berg | e60c774 | 2008-11-26 23:31:40 +0100 | [diff] [blame] | 771 | /* Setting ad-hoc mode on non-IBSS channel is not supported. */ |
Pavel Roskin | dcebf45 | 2008-12-22 16:39:36 -0500 | [diff] [blame] | 772 | if (sdata->local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS && |
| 773 | type == NL80211_IFTYPE_ADHOC) |
Johannes Berg | e60c774 | 2008-11-26 23:31:40 +0100 | [diff] [blame] | 774 | return -EOPNOTSUPP; |
| 775 | |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 776 | /* |
| 777 | * We could, here, on changes between IBSS/STA/MESH modes, |
| 778 | * invoke an MLME function instead that disassociates etc. |
| 779 | * and goes into the requested mode. |
| 780 | */ |
| 781 | |
| 782 | if (netif_running(sdata->dev)) |
| 783 | return -EBUSY; |
| 784 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 785 | /* Purge and reset type-dependent state. */ |
| 786 | ieee80211_teardown_sdata(sdata->dev); |
| 787 | ieee80211_setup_sdata(sdata, type); |
| 788 | |
| 789 | /* reset some values that shouldn't be kept across type changes */ |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 790 | sdata->vif.bss_conf.basic_rates = |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 791 | ieee80211_mandatory_rates(sdata->local, |
| 792 | sdata->local->hw.conf.channel->band); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 793 | sdata->drop_unencrypted = 0; |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 794 | if (type == NL80211_IFTYPE_STATION) |
| 795 | sdata->u.mgd.use_4addr = false; |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 796 | |
| 797 | return 0; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 798 | } |
| 799 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 800 | int ieee80211_if_add(struct ieee80211_local *local, const char *name, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 801 | struct net_device **new_dev, enum nl80211_iftype type, |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 802 | struct vif_params *params) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 803 | { |
| 804 | struct net_device *ndev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 805 | struct ieee80211_sub_if_data *sdata = NULL; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 806 | int ret, i; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 807 | |
| 808 | ASSERT_RTNL(); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 809 | |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 810 | ndev = alloc_netdev_mq(sizeof(*sdata) + local->hw.vif_data_size, |
| 811 | name, ieee80211_if_setup, local->hw.queues); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 812 | if (!ndev) |
| 813 | return -ENOMEM; |
Johannes Berg | a272a72 | 2009-07-14 00:33:36 +0200 | [diff] [blame] | 814 | dev_net_set(ndev, wiphy_net(local->hw.wiphy)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 815 | |
Johannes Berg | f3994ec | 2008-05-12 20:51:44 -0700 | [diff] [blame] | 816 | ndev->needed_headroom = local->tx_headroom + |
| 817 | 4*6 /* four MAC addresses */ |
| 818 | + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */ |
| 819 | + 6 /* mesh */ |
| 820 | + 8 /* rfc1042/bridge tunnel */ |
| 821 | - ETH_HLEN /* ethernet hard_header_len */ |
| 822 | + IEEE80211_ENCRYPT_HEADROOM; |
| 823 | ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM; |
| 824 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 825 | ret = dev_alloc_name(ndev, ndev->name); |
| 826 | if (ret < 0) |
| 827 | goto fail; |
| 828 | |
| 829 | memcpy(ndev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN); |
John W. Linville | 0adc23f | 2009-10-06 16:27:18 -0400 | [diff] [blame] | 830 | memcpy(ndev->perm_addr, ndev->dev_addr, ETH_ALEN); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 831 | SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy)); |
| 832 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 833 | /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */ |
| 834 | sdata = netdev_priv(ndev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 835 | ndev->ieee80211_ptr = &sdata->wdev; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 836 | |
| 837 | /* initialise type-independent data */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 838 | sdata->wdev.wiphy = local->hw.wiphy; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 839 | sdata->local = local; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 840 | sdata->dev = ndev; |
| 841 | |
| 842 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
| 843 | skb_queue_head_init(&sdata->fragments[i].skb_list); |
| 844 | |
| 845 | INIT_LIST_HEAD(&sdata->key_list); |
| 846 | |
| 847 | sdata->force_unicast_rateidx = -1; |
| 848 | sdata->max_ratectrl_rateidx = -1; |
| 849 | |
| 850 | /* setup type-dependent data */ |
| 851 | ieee80211_setup_sdata(sdata, type); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 852 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 853 | if (params) { |
| 854 | ndev->ieee80211_ptr->use_4addr = params->use_4addr; |
| 855 | if (type == NL80211_IFTYPE_STATION) |
| 856 | sdata->u.mgd.use_4addr = params->use_4addr; |
| 857 | } |
| 858 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 859 | ret = register_netdevice(ndev); |
| 860 | if (ret) |
| 861 | goto fail; |
| 862 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 863 | if (ieee80211_vif_is_mesh(&sdata->vif) && |
| 864 | params && params->mesh_id_len) |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 865 | ieee80211_sdata_set_mesh_id(sdata, |
| 866 | params->mesh_id_len, |
| 867 | params->mesh_id); |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 868 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 869 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 870 | list_add_tail_rcu(&sdata->list, &local->interfaces); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 871 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 872 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 873 | if (new_dev) |
| 874 | *new_dev = ndev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 875 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 876 | return 0; |
| 877 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 878 | fail: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 879 | free_netdev(ndev); |
| 880 | return ret; |
| 881 | } |
| 882 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 883 | void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 884 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 885 | ASSERT_RTNL(); |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 886 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 887 | mutex_lock(&sdata->local->iflist_mtx); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 888 | list_del_rcu(&sdata->list); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 889 | mutex_unlock(&sdata->local->iflist_mtx); |
| 890 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 891 | synchronize_rcu(); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 892 | unregister_netdevice(sdata->dev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 895 | /* |
| 896 | * Remove all interfaces, may only be called at hardware unregistration |
| 897 | * time because it doesn't do RCU-safe list removals. |
| 898 | */ |
| 899 | void ieee80211_remove_interfaces(struct ieee80211_local *local) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 900 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 901 | struct ieee80211_sub_if_data *sdata, *tmp; |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 902 | LIST_HEAD(unreg_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 903 | |
| 904 | ASSERT_RTNL(); |
| 905 | |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 906 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 907 | list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) { |
| 908 | list_del(&sdata->list); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 909 | |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 910 | unregister_netdevice_queue(sdata->dev, &unreg_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 911 | } |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 912 | mutex_unlock(&local->iflist_mtx); |
| 913 | unregister_netdevice_many(&unreg_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 914 | } |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 915 | |
| 916 | static u32 ieee80211_idle_off(struct ieee80211_local *local, |
| 917 | const char *reason) |
| 918 | { |
| 919 | if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE)) |
| 920 | return 0; |
| 921 | |
| 922 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 923 | printk(KERN_DEBUG "%s: device no longer idle - %s\n", |
| 924 | wiphy_name(local->hw.wiphy), reason); |
| 925 | #endif |
| 926 | |
| 927 | local->hw.conf.flags &= ~IEEE80211_CONF_IDLE; |
| 928 | return IEEE80211_CONF_CHANGE_IDLE; |
| 929 | } |
| 930 | |
| 931 | static u32 ieee80211_idle_on(struct ieee80211_local *local) |
| 932 | { |
| 933 | if (local->hw.conf.flags & IEEE80211_CONF_IDLE) |
| 934 | return 0; |
| 935 | |
| 936 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 937 | printk(KERN_DEBUG "%s: device now idle\n", |
| 938 | wiphy_name(local->hw.wiphy)); |
| 939 | #endif |
| 940 | |
| 941 | local->hw.conf.flags |= IEEE80211_CONF_IDLE; |
| 942 | return IEEE80211_CONF_CHANGE_IDLE; |
| 943 | } |
| 944 | |
| 945 | u32 __ieee80211_recalc_idle(struct ieee80211_local *local) |
| 946 | { |
| 947 | struct ieee80211_sub_if_data *sdata; |
| 948 | int count = 0; |
| 949 | |
Helmut Schaa | fbe9c42 | 2009-07-23 12:14:04 +0200 | [diff] [blame] | 950 | if (local->scanning) |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 951 | return ieee80211_idle_off(local, "scanning"); |
| 952 | |
| 953 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 954 | if (!netif_running(sdata->dev)) |
| 955 | continue; |
| 956 | /* do not count disabled managed interfaces */ |
| 957 | if (sdata->vif.type == NL80211_IFTYPE_STATION && |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 958 | !sdata->u.mgd.associated && |
| 959 | list_empty(&sdata->u.mgd.work_list)) |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 960 | continue; |
| 961 | /* do not count unused IBSS interfaces */ |
| 962 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC && |
| 963 | !sdata->u.ibss.ssid_len) |
| 964 | continue; |
| 965 | /* count everything else */ |
| 966 | count++; |
| 967 | } |
| 968 | |
| 969 | if (!count) |
| 970 | return ieee80211_idle_on(local); |
| 971 | else |
| 972 | return ieee80211_idle_off(local, "in use"); |
| 973 | |
| 974 | return 0; |
| 975 | } |
| 976 | |
| 977 | void ieee80211_recalc_idle(struct ieee80211_local *local) |
| 978 | { |
| 979 | u32 chg; |
| 980 | |
| 981 | mutex_lock(&local->iflist_mtx); |
| 982 | chg = __ieee80211_recalc_idle(local); |
| 983 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 58905ca | 2009-05-07 14:23:01 +0200 | [diff] [blame] | 984 | if (chg) |
| 985 | ieee80211_hw_config(local, chg); |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 986 | } |