Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
Johannes Berg | c5d54fb | 2013-03-26 21:54:24 +0100 | [diff] [blame] | 2 | * Interface handling |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 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 | */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/if_arp.h> |
| 16 | #include <linux/netdevice.h> |
| 17 | #include <linux/rtnetlink.h> |
| 18 | #include <net/mac80211.h> |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 19 | #include <net/ieee80211_radiotap.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 20 | #include "ieee80211_i.h" |
| 21 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 22 | #include "debugfs_netdev.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 23 | #include "mesh.h" |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 24 | #include "led.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 25 | #include "driver-ops.h" |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 26 | #include "wme.h" |
Bill Jordan | 1be7fe8 | 2010-10-01 11:20:41 -0400 | [diff] [blame] | 27 | #include "rate.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 28 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 29 | /** |
| 30 | * DOC: Interface list locking |
| 31 | * |
| 32 | * The interface list in each struct ieee80211_local is protected |
| 33 | * three-fold: |
| 34 | * |
| 35 | * (1) modifications may only be done under the RTNL |
| 36 | * (2) modifications and readers are protected against each other by |
| 37 | * the iflist_mtx. |
| 38 | * (3) modifications are done in an RCU manner so atomic readers |
| 39 | * can traverse the list in RCU-safe blocks. |
| 40 | * |
| 41 | * As a consequence, reads (traversals) of the list can be protected |
| 42 | * by either the RTNL, the iflist_mtx or RCU. |
| 43 | */ |
| 44 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 45 | bool __ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata) |
| 46 | { |
| 47 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 48 | int power; |
| 49 | |
| 50 | rcu_read_lock(); |
| 51 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 52 | if (!chanctx_conf) { |
| 53 | rcu_read_unlock(); |
| 54 | return false; |
| 55 | } |
| 56 | |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 57 | power = chanctx_conf->def.chan->max_power; |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 58 | rcu_read_unlock(); |
| 59 | |
| 60 | if (sdata->user_power_level != IEEE80211_UNSET_POWER_LEVEL) |
| 61 | power = min(power, sdata->user_power_level); |
| 62 | |
| 63 | if (sdata->ap_power_level != IEEE80211_UNSET_POWER_LEVEL) |
| 64 | power = min(power, sdata->ap_power_level); |
| 65 | |
| 66 | if (power != sdata->vif.bss_conf.txpower) { |
| 67 | sdata->vif.bss_conf.txpower = power; |
| 68 | ieee80211_hw_config(sdata->local, 0); |
| 69 | return true; |
| 70 | } |
| 71 | |
| 72 | return false; |
| 73 | } |
| 74 | |
| 75 | void ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata) |
| 76 | { |
| 77 | if (__ieee80211_recalc_txpower(sdata)) |
| 78 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_TXPOWER); |
| 79 | } |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 80 | |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 81 | static u32 ieee80211_idle_off(struct ieee80211_local *local) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 82 | { |
| 83 | if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE)) |
| 84 | return 0; |
| 85 | |
| 86 | local->hw.conf.flags &= ~IEEE80211_CONF_IDLE; |
| 87 | return IEEE80211_CONF_CHANGE_IDLE; |
| 88 | } |
| 89 | |
| 90 | static u32 ieee80211_idle_on(struct ieee80211_local *local) |
| 91 | { |
| 92 | if (local->hw.conf.flags & IEEE80211_CONF_IDLE) |
| 93 | return 0; |
| 94 | |
Johannes Berg | 39ecc01 | 2013-02-13 12:11:00 +0100 | [diff] [blame] | 95 | ieee80211_flush_queues(local, NULL); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 96 | |
| 97 | local->hw.conf.flags |= IEEE80211_CONF_IDLE; |
| 98 | return IEEE80211_CONF_CHANGE_IDLE; |
| 99 | } |
| 100 | |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 101 | void ieee80211_recalc_idle(struct ieee80211_local *local) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 102 | { |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 103 | bool working = false, scanning, active; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 104 | unsigned int led_trig_start = 0, led_trig_stop = 0; |
| 105 | struct ieee80211_roc_work *roc; |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 106 | u32 change; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 107 | |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 108 | lockdep_assert_held(&local->mtx); |
| 109 | |
Felix Fietkau | b759f4d | 2013-02-23 18:40:57 +0100 | [diff] [blame] | 110 | active = !list_empty(&local->chanctx_list) || local->monitors; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 111 | |
| 112 | if (!local->ops->remain_on_channel) { |
| 113 | list_for_each_entry(roc, &local->roc_list, list) { |
| 114 | working = true; |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 115 | break; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 116 | } |
| 117 | } |
| 118 | |
Johannes Berg | f1e3e05 | 2013-02-06 23:57:57 +0100 | [diff] [blame] | 119 | scanning = test_bit(SCAN_SW_SCANNING, &local->scanning) || |
| 120 | test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 121 | |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 122 | if (working || scanning) |
| 123 | led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK; |
| 124 | else |
| 125 | led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK; |
| 126 | |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 127 | if (active) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 128 | led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED; |
| 129 | else |
| 130 | led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED; |
| 131 | |
| 132 | ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop); |
| 133 | |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 134 | if (working || scanning || active) |
| 135 | change = ieee80211_idle_off(local); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 136 | else |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 137 | change = ieee80211_idle_on(local); |
| 138 | if (change) |
| 139 | ieee80211_hw_config(local, change); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 140 | } |
| 141 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 142 | static int ieee80211_change_mtu(struct net_device *dev, int new_mtu) |
| 143 | { |
Chaitanya | 09b1426 | 2012-12-21 17:15:17 +0530 | [diff] [blame] | 144 | if (new_mtu < 256 || new_mtu > IEEE80211_MAX_DATA_LEN) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 145 | return -EINVAL; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 146 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 147 | dev->mtu = new_mtu; |
| 148 | return 0; |
| 149 | } |
| 150 | |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 151 | static int ieee80211_verify_mac(struct ieee80211_local *local, u8 *addr) |
| 152 | { |
| 153 | struct ieee80211_sub_if_data *sdata; |
| 154 | u64 new, mask, tmp; |
| 155 | u8 *m; |
| 156 | int ret = 0; |
| 157 | |
| 158 | if (is_zero_ether_addr(local->hw.wiphy->addr_mask)) |
| 159 | return 0; |
| 160 | |
| 161 | m = addr; |
| 162 | new = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 163 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 164 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 165 | |
| 166 | m = local->hw.wiphy->addr_mask; |
| 167 | mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 168 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 169 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 170 | |
| 171 | |
| 172 | mutex_lock(&local->iflist_mtx); |
| 173 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 174 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) |
| 175 | continue; |
| 176 | |
| 177 | m = sdata->vif.addr; |
| 178 | tmp = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 179 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 180 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 181 | |
| 182 | if ((new & ~mask) != (tmp & ~mask)) { |
| 183 | ret = -EINVAL; |
| 184 | break; |
| 185 | } |
| 186 | } |
| 187 | mutex_unlock(&local->iflist_mtx); |
| 188 | |
| 189 | return ret; |
| 190 | } |
| 191 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 192 | static int ieee80211_change_mac(struct net_device *dev, void *addr) |
| 193 | { |
| 194 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Kalle Valo | fc5f757 | 2009-12-30 15:54:03 +0200 | [diff] [blame] | 195 | struct sockaddr *sa = addr; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 196 | int ret; |
| 197 | |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 198 | if (ieee80211_sdata_running(sdata)) |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 199 | return -EBUSY; |
| 200 | |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 201 | ret = ieee80211_verify_mac(sdata->local, sa->sa_data); |
| 202 | if (ret) |
| 203 | return ret; |
| 204 | |
Kalle Valo | fc5f757 | 2009-12-30 15:54:03 +0200 | [diff] [blame] | 205 | ret = eth_mac_addr(dev, sa); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 206 | |
| 207 | if (ret == 0) |
Kalle Valo | fc5f757 | 2009-12-30 15:54:03 +0200 | [diff] [blame] | 208 | memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 209 | |
| 210 | return ret; |
| 211 | } |
| 212 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 213 | static inline int identical_mac_addr_allowed(int type1, int type2) |
| 214 | { |
| 215 | return type1 == NL80211_IFTYPE_MONITOR || |
| 216 | type2 == NL80211_IFTYPE_MONITOR || |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 217 | type1 == NL80211_IFTYPE_P2P_DEVICE || |
| 218 | type2 == NL80211_IFTYPE_P2P_DEVICE || |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 219 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) || |
| 220 | (type1 == NL80211_IFTYPE_WDS && |
| 221 | (type2 == NL80211_IFTYPE_WDS || |
| 222 | type2 == NL80211_IFTYPE_AP)) || |
| 223 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) || |
| 224 | (type1 == NL80211_IFTYPE_AP_VLAN && |
| 225 | (type2 == NL80211_IFTYPE_AP || |
| 226 | type2 == NL80211_IFTYPE_AP_VLAN)); |
| 227 | } |
| 228 | |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 229 | static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata, |
| 230 | enum nl80211_iftype iftype) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 231 | { |
Johannes Berg | b4a4bf5 | 2008-09-26 13:34:54 +0200 | [diff] [blame] | 232 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 233 | struct ieee80211_sub_if_data *nsdata; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 234 | |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 235 | ASSERT_RTNL(); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 236 | |
| 237 | /* we hold the RTNL here so can safely walk the list */ |
| 238 | list_for_each_entry(nsdata, &local->interfaces, list) { |
Johannes Berg | 371a255 | 2012-06-19 15:54:05 +0200 | [diff] [blame] | 239 | if (nsdata != sdata && ieee80211_sdata_running(nsdata)) { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 240 | /* |
| 241 | * Allow only a single IBSS interface to be up at any |
| 242 | * time. This is restricted because beacon distribution |
| 243 | * cannot work properly if both are in the same IBSS. |
| 244 | * |
| 245 | * To remove this restriction we'd have to disallow them |
| 246 | * from setting the same SSID on different IBSS interfaces |
| 247 | * belonging to the same hardware. Then, however, we're |
| 248 | * faced with having to adopt two different TSF timers... |
| 249 | */ |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 250 | if (iftype == NL80211_IFTYPE_ADHOC && |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 251 | nsdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 252 | return -EBUSY; |
| 253 | |
| 254 | /* |
| 255 | * The remaining checks are only performed for interfaces |
| 256 | * with the same MAC address. |
| 257 | */ |
Johannes Berg | 371a255 | 2012-06-19 15:54:05 +0200 | [diff] [blame] | 258 | if (!ether_addr_equal(sdata->vif.addr, |
| 259 | nsdata->vif.addr)) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 260 | continue; |
| 261 | |
| 262 | /* |
| 263 | * check whether it may have the same address |
| 264 | */ |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 265 | if (!identical_mac_addr_allowed(iftype, |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 266 | nsdata->vif.type)) |
| 267 | return -ENOTUNIQ; |
| 268 | |
| 269 | /* |
| 270 | * can only add VLANs to enabled APs |
| 271 | */ |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 272 | if (iftype == NL80211_IFTYPE_AP_VLAN && |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 273 | nsdata->vif.type == NL80211_IFTYPE_AP) |
| 274 | sdata->bss = &nsdata->u.ap; |
| 275 | } |
| 276 | } |
| 277 | |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 278 | return 0; |
| 279 | } |
| 280 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 281 | static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata) |
| 282 | { |
| 283 | int n_queues = sdata->local->hw.queues; |
| 284 | int i; |
| 285 | |
Ilan Peer | 0ef24e5 | 2012-08-21 12:43:35 +0300 | [diff] [blame] | 286 | if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE) { |
| 287 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
| 288 | if (WARN_ON_ONCE(sdata->vif.hw_queue[i] == |
| 289 | IEEE80211_INVAL_HW_QUEUE)) |
| 290 | return -EINVAL; |
| 291 | if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >= |
| 292 | n_queues)) |
| 293 | return -EINVAL; |
| 294 | } |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 295 | } |
| 296 | |
Bob Copeland | 8ffb5c0 | 2013-02-15 10:18:34 -0500 | [diff] [blame] | 297 | if ((sdata->vif.type != NL80211_IFTYPE_AP && |
| 298 | sdata->vif.type != NL80211_IFTYPE_MESH_POINT) || |
Luciano Coelho | bb3e10f | 2012-04-12 16:09:49 +0300 | [diff] [blame] | 299 | !(sdata->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)) { |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 300 | sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE; |
| 301 | return 0; |
| 302 | } |
| 303 | |
| 304 | if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE)) |
| 305 | return -EINVAL; |
| 306 | |
| 307 | if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues)) |
| 308 | return -EINVAL; |
| 309 | |
| 310 | return 0; |
| 311 | } |
| 312 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 313 | void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata, |
| 314 | const int offset) |
| 315 | { |
| 316 | struct ieee80211_local *local = sdata->local; |
| 317 | u32 flags = sdata->u.mntr_flags; |
| 318 | |
| 319 | #define ADJUST(_f, _s) do { \ |
| 320 | if (flags & MONITOR_FLAG_##_f) \ |
| 321 | local->fif_##_s += offset; \ |
| 322 | } while (0) |
| 323 | |
| 324 | ADJUST(FCSFAIL, fcsfail); |
| 325 | ADJUST(PLCPFAIL, plcpfail); |
| 326 | ADJUST(CONTROL, control); |
| 327 | ADJUST(CONTROL, pspoll); |
| 328 | ADJUST(OTHER_BSS, other_bss); |
| 329 | |
| 330 | #undef ADJUST |
| 331 | } |
| 332 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 333 | static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata) |
| 334 | { |
| 335 | struct ieee80211_local *local = sdata->local; |
| 336 | int i; |
| 337 | |
| 338 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
| 339 | if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) |
| 340 | sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE; |
Johannes Berg | a9d3c05 | 2012-05-07 17:45:29 +0200 | [diff] [blame] | 341 | else if (local->hw.queues >= IEEE80211_NUM_ACS) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 342 | sdata->vif.hw_queue[i] = i; |
Johannes Berg | a9d3c05 | 2012-05-07 17:45:29 +0200 | [diff] [blame] | 343 | else |
| 344 | sdata->vif.hw_queue[i] = 0; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 345 | } |
| 346 | sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE; |
| 347 | } |
| 348 | |
Johannes Berg | 3c3e21e | 2013-03-27 23:20:27 +0100 | [diff] [blame] | 349 | int ieee80211_add_virtual_monitor(struct ieee80211_local *local) |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 350 | { |
| 351 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 352 | int ret = 0; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 353 | |
| 354 | if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF)) |
| 355 | return 0; |
| 356 | |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 357 | mutex_lock(&local->iflist_mtx); |
| 358 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 359 | if (local->monitor_sdata) |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 360 | goto out_unlock; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 361 | |
| 362 | sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL); |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 363 | if (!sdata) { |
| 364 | ret = -ENOMEM; |
| 365 | goto out_unlock; |
| 366 | } |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 367 | |
| 368 | /* set up data */ |
| 369 | sdata->local = local; |
| 370 | sdata->vif.type = NL80211_IFTYPE_MONITOR; |
| 371 | snprintf(sdata->name, IFNAMSIZ, "%s-monitor", |
| 372 | wiphy_name(local->hw.wiphy)); |
| 373 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 374 | ieee80211_set_default_queues(sdata); |
| 375 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 376 | ret = drv_add_interface(local, sdata); |
| 377 | if (WARN_ON(ret)) { |
| 378 | /* ok .. stupid driver, it asked for this! */ |
| 379 | kfree(sdata); |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 380 | goto out_unlock; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 381 | } |
| 382 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 383 | ret = ieee80211_check_queues(sdata); |
| 384 | if (ret) { |
| 385 | kfree(sdata); |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 386 | goto out_unlock; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 387 | } |
| 388 | |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 389 | ret = ieee80211_vif_use_channel(sdata, &local->monitor_chandef, |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 390 | IEEE80211_CHANCTX_EXCLUSIVE); |
| 391 | if (ret) { |
| 392 | drv_remove_interface(local, sdata); |
| 393 | kfree(sdata); |
| 394 | goto out_unlock; |
| 395 | } |
| 396 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 397 | rcu_assign_pointer(local->monitor_sdata, sdata); |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 398 | out_unlock: |
| 399 | mutex_unlock(&local->iflist_mtx); |
| 400 | return ret; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 401 | } |
| 402 | |
Johannes Berg | 3c3e21e | 2013-03-27 23:20:27 +0100 | [diff] [blame] | 403 | void ieee80211_del_virtual_monitor(struct ieee80211_local *local) |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 404 | { |
| 405 | struct ieee80211_sub_if_data *sdata; |
| 406 | |
| 407 | if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF)) |
| 408 | return; |
| 409 | |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 410 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 411 | |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 412 | sdata = rcu_dereference_protected(local->monitor_sdata, |
| 413 | lockdep_is_held(&local->iflist_mtx)); |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 414 | if (!sdata) |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 415 | goto out_unlock; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 416 | |
| 417 | rcu_assign_pointer(local->monitor_sdata, NULL); |
| 418 | synchronize_net(); |
| 419 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 420 | ieee80211_vif_release_channel(sdata); |
| 421 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 422 | drv_remove_interface(local, sdata); |
| 423 | |
| 424 | kfree(sdata); |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 425 | out_unlock: |
| 426 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 427 | } |
| 428 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 429 | /* |
| 430 | * NOTE: Be very careful when changing this function, it must NOT return |
| 431 | * an error on interface type changes that have been pre-checked, so most |
| 432 | * checks should be in ieee80211_check_concurrent_iface. |
| 433 | */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 434 | int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up) |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 435 | { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 436 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 437 | struct net_device *dev = wdev->netdev; |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 438 | struct ieee80211_local *local = sdata->local; |
| 439 | struct sta_info *sta; |
| 440 | u32 changed = 0; |
| 441 | int res; |
| 442 | u32 hw_reconf_flags = 0; |
| 443 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 444 | switch (sdata->vif.type) { |
| 445 | case NL80211_IFTYPE_WDS: |
| 446 | if (!is_valid_ether_addr(sdata->u.wds.remote_addr)) |
| 447 | return -ENOLINK; |
| 448 | break; |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 449 | case NL80211_IFTYPE_AP_VLAN: { |
| 450 | struct ieee80211_sub_if_data *master; |
| 451 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 452 | if (!sdata->bss) |
| 453 | return -ENOLINK; |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 454 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 455 | list_add(&sdata->u.vlan.list, &sdata->bss->vlans); |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 456 | |
| 457 | master = container_of(sdata->bss, |
| 458 | struct ieee80211_sub_if_data, u.ap); |
| 459 | sdata->control_port_protocol = |
| 460 | master->control_port_protocol; |
| 461 | sdata->control_port_no_encrypt = |
| 462 | master->control_port_no_encrypt; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 463 | break; |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 464 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 465 | case NL80211_IFTYPE_AP: |
| 466 | sdata->bss = &sdata->u.ap; |
| 467 | break; |
| 468 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 469 | case NL80211_IFTYPE_STATION: |
| 470 | case NL80211_IFTYPE_MONITOR: |
| 471 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 472 | case NL80211_IFTYPE_P2P_DEVICE: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 473 | /* no special treatment */ |
| 474 | break; |
| 475 | case NL80211_IFTYPE_UNSPECIFIED: |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 476 | case NUM_NL80211_IFTYPES: |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 477 | case NL80211_IFTYPE_P2P_CLIENT: |
| 478 | case NL80211_IFTYPE_P2P_GO: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 479 | /* cannot happen */ |
| 480 | WARN_ON(1); |
| 481 | break; |
| 482 | } |
| 483 | |
| 484 | if (local->open_count == 0) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 485 | res = drv_start(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 486 | if (res) |
| 487 | goto err_del_bss; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 488 | /* we're brought up, everything changes */ |
| 489 | hw_reconf_flags = ~0; |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 490 | ieee80211_led_radio(local, true); |
Johannes Berg | 67408c8 | 2010-11-30 08:59:23 +0100 | [diff] [blame] | 491 | ieee80211_mod_tpt_led_trig(local, |
| 492 | IEEE80211_TPT_LEDTRIG_FL_RADIO, 0); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | /* |
Johannes Berg | bf533e0 | 2010-08-27 12:35:56 +0200 | [diff] [blame] | 496 | * Copy the hopefully now-present MAC address to |
| 497 | * this interface, if it has the special null one. |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 498 | */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 499 | if (dev && is_zero_ether_addr(dev->dev_addr)) { |
Johannes Berg | bf533e0 | 2010-08-27 12:35:56 +0200 | [diff] [blame] | 500 | memcpy(dev->dev_addr, |
| 501 | local->hw.wiphy->perm_addr, |
| 502 | ETH_ALEN); |
| 503 | memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 504 | |
Johannes Berg | bf533e0 | 2010-08-27 12:35:56 +0200 | [diff] [blame] | 505 | if (!is_valid_ether_addr(dev->dev_addr)) { |
Johannes Berg | 4d6c36f | 2012-04-03 14:45:54 +0200 | [diff] [blame] | 506 | res = -EADDRNOTAVAIL; |
| 507 | goto err_stop; |
John W. Linville | 0adc23f | 2009-10-06 16:27:18 -0400 | [diff] [blame] | 508 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 509 | } |
| 510 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 511 | switch (sdata->vif.type) { |
| 512 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 513 | /* no need to tell driver, but set carrier and chanctx */ |
| 514 | if (rtnl_dereference(sdata->bss->beacon)) { |
| 515 | ieee80211_vif_vlan_copy_chanctx(sdata); |
Johannes Berg | 3edaf3e | 2012-04-03 10:24:00 +0200 | [diff] [blame] | 516 | netif_carrier_on(dev); |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 517 | } else { |
Johannes Berg | 3edaf3e | 2012-04-03 10:24:00 +0200 | [diff] [blame] | 518 | netif_carrier_off(dev); |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 519 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 520 | break; |
| 521 | case NL80211_IFTYPE_MONITOR: |
| 522 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) { |
| 523 | local->cooked_mntrs++; |
| 524 | break; |
| 525 | } |
| 526 | |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 527 | if (local->monitors == 0 && local->open_count == 0) { |
| 528 | res = ieee80211_add_virtual_monitor(local); |
| 529 | if (res) |
| 530 | goto err_stop; |
| 531 | } |
| 532 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 533 | /* must be before the call to ieee80211_configure_filter */ |
| 534 | local->monitors++; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 535 | if (local->monitors == 1) { |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 536 | local->hw.conf.flags |= IEEE80211_CONF_MONITOR; |
| 537 | hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 538 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 539 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 540 | ieee80211_adjust_monitor_flags(sdata, 1); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 541 | ieee80211_configure_filter(local); |
Felix Fietkau | 801d929 | 2013-03-02 19:05:47 +0100 | [diff] [blame] | 542 | mutex_lock(&local->mtx); |
| 543 | ieee80211_recalc_idle(local); |
| 544 | mutex_unlock(&local->mtx); |
David Gnedt | 53e9b1d | 2010-07-19 20:44:02 +0200 | [diff] [blame] | 545 | |
| 546 | netif_carrier_on(dev); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 547 | break; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 548 | default: |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 549 | if (coming_up) { |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 550 | ieee80211_del_virtual_monitor(local); |
| 551 | |
Johannes Berg | 7b7eab6 | 2011-11-03 14:41:13 +0100 | [diff] [blame] | 552 | res = drv_add_interface(local, sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 553 | if (res) |
| 554 | goto err_stop; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 555 | res = ieee80211_check_queues(sdata); |
| 556 | if (res) |
| 557 | goto err_del_interface; |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 558 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 559 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 560 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 561 | local->fif_pspoll++; |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 562 | local->fif_probe_req++; |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 563 | |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 564 | ieee80211_configure_filter(local); |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 565 | } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
| 566 | local->fif_probe_req++; |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 567 | } |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 568 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 569 | if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE) |
| 570 | changed |= ieee80211_reset_erp_info(sdata); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 571 | ieee80211_bss_info_change_notify(sdata, changed); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 572 | |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 573 | switch (sdata->vif.type) { |
| 574 | case NL80211_IFTYPE_STATION: |
| 575 | case NL80211_IFTYPE_ADHOC: |
| 576 | case NL80211_IFTYPE_AP: |
| 577 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 578 | netif_carrier_off(dev); |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 579 | break; |
Johannes Berg | 1411af1 | 2012-07-30 19:48:09 +0200 | [diff] [blame] | 580 | case NL80211_IFTYPE_WDS: |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 581 | case NL80211_IFTYPE_P2P_DEVICE: |
Johannes Berg | 1411af1 | 2012-07-30 19:48:09 +0200 | [diff] [blame] | 582 | break; |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 583 | default: |
Johannes Berg | a231082 | 2013-03-26 22:10:02 +0100 | [diff] [blame^] | 584 | /* not reached */ |
| 585 | WARN_ON(1); |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 586 | } |
Eliad Peller | 5903459 | 2011-10-16 10:57:31 +0200 | [diff] [blame] | 587 | |
| 588 | /* |
| 589 | * set default queue parameters so drivers don't |
| 590 | * need to initialise the hardware if the hardware |
| 591 | * doesn't start up with sane defaults |
| 592 | */ |
Johannes Berg | 3abead5 | 2012-03-02 15:56:59 +0100 | [diff] [blame] | 593 | ieee80211_set_wmm_default(sdata, true); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 594 | } |
| 595 | |
Johannes Berg | 2d2080c | 2010-09-15 15:13:13 +0200 | [diff] [blame] | 596 | set_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 597 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 598 | if (sdata->vif.type == NL80211_IFTYPE_WDS) { |
| 599 | /* Create STA entry for the WDS peer */ |
| 600 | sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr, |
| 601 | GFP_KERNEL); |
| 602 | if (!sta) { |
| 603 | res = -ENOMEM; |
| 604 | goto err_del_interface; |
| 605 | } |
| 606 | |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 607 | sta_info_pre_move_state(sta, IEEE80211_STA_AUTH); |
| 608 | sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC); |
| 609 | sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 610 | |
| 611 | res = sta_info_insert(sta); |
| 612 | if (res) { |
| 613 | /* STA has been freed */ |
| 614 | goto err_del_interface; |
| 615 | } |
Bill Jordan | 1be7fe8 | 2010-10-01 11:20:41 -0400 | [diff] [blame] | 616 | |
| 617 | rate_control_rate_init(sta); |
Johannes Berg | 1411af1 | 2012-07-30 19:48:09 +0200 | [diff] [blame] | 618 | netif_carrier_on(dev); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 619 | } else if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) { |
| 620 | rcu_assign_pointer(local->p2p_sdata, sdata); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 621 | } |
| 622 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 623 | /* |
| 624 | * set_multicast_list will be invoked by the networking core |
| 625 | * which will check whether any increments here were done in |
| 626 | * error and sync them down to the hardware as filter flags. |
| 627 | */ |
| 628 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 629 | atomic_inc(&local->iff_allmultis); |
| 630 | |
| 631 | if (sdata->flags & IEEE80211_SDATA_PROMISC) |
| 632 | atomic_inc(&local->iff_promiscs); |
| 633 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 634 | if (coming_up) |
| 635 | local->open_count++; |
| 636 | |
Eliad Peller | 5903459 | 2011-10-16 10:57:31 +0200 | [diff] [blame] | 637 | if (hw_reconf_flags) |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 638 | ieee80211_hw_config(local, hw_reconf_flags); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 639 | |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 640 | ieee80211_recalc_ps(local, -1); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 641 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 642 | if (dev) |
| 643 | netif_tx_start_all_queues(dev); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 644 | |
| 645 | return 0; |
| 646 | err_del_interface: |
Johannes Berg | 7b7eab6 | 2011-11-03 14:41:13 +0100 | [diff] [blame] | 647 | drv_remove_interface(local, sdata); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 648 | err_stop: |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 649 | if (!local->open_count) |
| 650 | drv_stop(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 651 | err_del_bss: |
| 652 | sdata->bss = NULL; |
| 653 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 654 | list_del(&sdata->u.vlan.list); |
Johannes Berg | 4d6c36f | 2012-04-03 14:45:54 +0200 | [diff] [blame] | 655 | /* might already be clear but that doesn't matter */ |
Johannes Berg | 2d2080c | 2010-09-15 15:13:13 +0200 | [diff] [blame] | 656 | clear_bit(SDATA_STATE_RUNNING, &sdata->state); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 657 | return res; |
| 658 | } |
| 659 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 660 | static int ieee80211_open(struct net_device *dev) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 661 | { |
| 662 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 663 | int err; |
| 664 | |
| 665 | /* fail early if user set an invalid address */ |
Mohammed Shafi Shajakhan | 2fcf2824 | 2011-07-12 15:19:04 +0530 | [diff] [blame] | 666 | if (!is_valid_ether_addr(dev->dev_addr)) |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 667 | return -EADDRNOTAVAIL; |
| 668 | |
| 669 | err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type); |
| 670 | if (err) |
| 671 | return err; |
| 672 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 673 | return ieee80211_do_open(&sdata->wdev, true); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, |
| 677 | bool going_down) |
| 678 | { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 679 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 680 | unsigned long flags; |
| 681 | struct sk_buff *skb, *tmp; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 682 | u32 hw_reconf_flags = 0; |
Johannes Berg | 09f4114 | 2012-12-13 23:26:57 +0100 | [diff] [blame] | 683 | int i, flushed; |
Michael Braun | 397a7a2 | 2013-02-13 16:49:15 +0100 | [diff] [blame] | 684 | struct ps_data *ps; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 685 | |
Rajkumar Manoharan | c29acf2 | 2011-05-14 09:43:28 +0530 | [diff] [blame] | 686 | clear_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 687 | |
Johannes Berg | e2fd5db | 2012-07-06 21:39:28 +0200 | [diff] [blame] | 688 | if (rcu_access_pointer(local->scan_sdata) == sdata) |
Brian Cavagnolo | 352ffad | 2010-11-04 16:59:28 -0700 | [diff] [blame] | 689 | ieee80211_scan_cancel(local); |
| 690 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 691 | /* |
| 692 | * Stop TX on this interface first. |
| 693 | */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 694 | if (sdata->dev) |
| 695 | netif_tx_stop_all_queues(sdata->dev); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 696 | |
Johannes Berg | c8f994e | 2013-03-27 22:49:19 +0100 | [diff] [blame] | 697 | ieee80211_roc_purge(local, sdata); |
Johannes Berg | af6b637 | 2009-12-23 13:15:35 +0100 | [diff] [blame] | 698 | |
Johannes Berg | 572078b | 2013-02-15 11:47:50 +0100 | [diff] [blame] | 699 | if (sdata->vif.type == NL80211_IFTYPE_STATION) |
| 700 | ieee80211_mgd_stop(sdata); |
| 701 | |
Johannes Berg | af6b637 | 2009-12-23 13:15:35 +0100 | [diff] [blame] | 702 | /* |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 703 | * Remove all stations associated with this interface. |
| 704 | * |
| 705 | * This must be done before calling ops->remove_interface() |
| 706 | * because otherwise we can later invoke ops->sta_notify() |
| 707 | * whenever the STAs are removed, and that invalidates driver |
| 708 | * assumptions about always getting a vif pointer that is valid |
| 709 | * (because if we remove a STA after ops->remove_interface() |
| 710 | * the driver will have removed the vif info already!) |
| 711 | * |
Johannes Berg | 09f4114 | 2012-12-13 23:26:57 +0100 | [diff] [blame] | 712 | * This is relevant only in WDS mode, in all other modes we've |
| 713 | * already removed all stations when disconnecting or similar, |
| 714 | * so warn otherwise. |
Johannes Berg | 051007d | 2012-12-13 23:49:02 +0100 | [diff] [blame] | 715 | * |
| 716 | * We call sta_info_flush_cleanup() later, to combine RCU waits. |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 717 | */ |
Johannes Berg | 051007d | 2012-12-13 23:49:02 +0100 | [diff] [blame] | 718 | flushed = sta_info_flush_defer(sdata); |
Johannes Berg | 09f4114 | 2012-12-13 23:26:57 +0100 | [diff] [blame] | 719 | WARN_ON_ONCE((sdata->vif.type != NL80211_IFTYPE_WDS && flushed > 0) || |
| 720 | (sdata->vif.type == NL80211_IFTYPE_WDS && flushed != 1)); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 721 | |
Johannes Berg | afdc7c1 | 2013-03-27 22:40:22 +0100 | [diff] [blame] | 722 | /* don't count this interface for promisc/allmulti while it is down */ |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 723 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 724 | atomic_dec(&local->iff_allmultis); |
| 725 | |
| 726 | if (sdata->flags & IEEE80211_SDATA_PROMISC) |
| 727 | atomic_dec(&local->iff_promiscs); |
| 728 | |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 729 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 730 | local->fif_pspoll--; |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 731 | local->fif_probe_req--; |
| 732 | } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
| 733 | local->fif_probe_req--; |
| 734 | } |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 735 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 736 | if (sdata->dev) { |
| 737 | netif_addr_lock_bh(sdata->dev); |
| 738 | spin_lock_bh(&local->filter_lock); |
| 739 | __hw_addr_unsync(&local->mc_list, &sdata->dev->mc, |
| 740 | sdata->dev->addr_len); |
| 741 | spin_unlock_bh(&local->filter_lock); |
| 742 | netif_addr_unlock_bh(sdata->dev); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 743 | } |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 744 | |
Vivek Natarajan | 7cbf0ba | 2008-12-24 00:34:37 -0800 | [diff] [blame] | 745 | del_timer_sync(&local->dynamic_ps_timer); |
| 746 | cancel_work_sync(&local->dynamic_ps_enable_work); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 747 | |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 748 | cancel_work_sync(&sdata->recalc_smps); |
| 749 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 750 | cancel_delayed_work_sync(&sdata->dfs_cac_timer_work); |
| 751 | |
| 752 | if (sdata->wdev.cac_started) { |
Johannes Berg | b2c0958b | 2013-03-27 23:24:53 +0100 | [diff] [blame] | 753 | WARN_ON(local->suspended); |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 754 | mutex_lock(&local->iflist_mtx); |
| 755 | ieee80211_vif_release_channel(sdata); |
| 756 | mutex_unlock(&local->iflist_mtx); |
| 757 | cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_ABORTED, |
| 758 | GFP_KERNEL); |
| 759 | } |
| 760 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 761 | /* APs need special treatment */ |
| 762 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Johannes Berg | 57c9fff | 2009-07-29 15:46:21 +0200 | [diff] [blame] | 763 | struct ieee80211_sub_if_data *vlan, *tmpsdata; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 764 | |
| 765 | /* down all dependent devices, that is VLANs */ |
Johannes Berg | 57c9fff | 2009-07-29 15:46:21 +0200 | [diff] [blame] | 766 | list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans, |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 767 | u.vlan.list) |
| 768 | dev_close(vlan->dev); |
| 769 | WARN_ON(!list_empty(&sdata->u.ap.vlans)); |
Michael Braun | 397a7a2 | 2013-02-13 16:49:15 +0100 | [diff] [blame] | 770 | } else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 771 | /* remove all packets in parent bc_buf pointing to this dev */ |
| 772 | ps = &sdata->bss->ps; |
| 773 | |
| 774 | spin_lock_irqsave(&ps->bc_buf.lock, flags); |
| 775 | skb_queue_walk_safe(&ps->bc_buf, skb, tmp) { |
| 776 | if (skb->dev == sdata->dev) { |
| 777 | __skb_unlink(skb, &ps->bc_buf); |
| 778 | local->total_ps_buffered--; |
| 779 | ieee80211_free_txskb(&local->hw, skb); |
| 780 | } |
| 781 | } |
| 782 | spin_unlock_irqrestore(&ps->bc_buf.lock, flags); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 783 | } |
| 784 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 785 | if (going_down) |
| 786 | local->open_count--; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 787 | |
| 788 | switch (sdata->vif.type) { |
| 789 | case NL80211_IFTYPE_AP_VLAN: |
| 790 | list_del(&sdata->u.vlan.list); |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 791 | rcu_assign_pointer(sdata->vif.chanctx_conf, NULL); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 792 | /* no need to tell driver */ |
| 793 | break; |
| 794 | case NL80211_IFTYPE_MONITOR: |
| 795 | if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) { |
| 796 | local->cooked_mntrs--; |
| 797 | break; |
| 798 | } |
| 799 | |
| 800 | local->monitors--; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 801 | if (local->monitors == 0) { |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 802 | local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR; |
| 803 | hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 804 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 805 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 806 | ieee80211_adjust_monitor_flags(sdata, -1); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 807 | break; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 808 | case NL80211_IFTYPE_P2P_DEVICE: |
| 809 | /* relies on synchronize_rcu() below */ |
| 810 | rcu_assign_pointer(local->p2p_sdata, NULL); |
| 811 | /* fall through */ |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 812 | default: |
Johannes Berg | 0b7dff4 | 2012-12-05 09:49:14 +0100 | [diff] [blame] | 813 | cancel_work_sync(&sdata->work); |
Johannes Berg | 35f20c1 | 2010-06-10 10:21:30 +0200 | [diff] [blame] | 814 | /* |
| 815 | * When we get here, the interface is marked down. |
Johannes Berg | 75de911 | 2012-12-14 14:56:03 +0100 | [diff] [blame] | 816 | * |
| 817 | * sta_info_flush_cleanup() requires rcu_barrier() |
| 818 | * first to wait for the station call_rcu() calls |
| 819 | * to complete, here we need at least sychronize_rcu() |
| 820 | * it to wait for the RX path in case it is using the |
| 821 | * interface and enqueuing frames at this very time on |
| 822 | * another CPU. |
Johannes Berg | 35f20c1 | 2010-06-10 10:21:30 +0200 | [diff] [blame] | 823 | */ |
Johannes Berg | 75de911 | 2012-12-14 14:56:03 +0100 | [diff] [blame] | 824 | rcu_barrier(); |
Johannes Berg | 051007d | 2012-12-13 23:49:02 +0100 | [diff] [blame] | 825 | sta_info_flush_cleanup(sdata); |
| 826 | |
Bob Copeland | 97af743 | 2009-07-29 10:13:03 +0200 | [diff] [blame] | 827 | /* |
Johannes Berg | b9dcf71 | 2010-08-27 12:35:54 +0200 | [diff] [blame] | 828 | * Free all remaining keys, there shouldn't be any, |
Johannes Berg | 7b4396b | 2013-02-23 01:14:20 +0100 | [diff] [blame] | 829 | * except maybe in WDS mode? |
Johannes Berg | b9dcf71 | 2010-08-27 12:35:54 +0200 | [diff] [blame] | 830 | */ |
Johannes Berg | ad0e2b5 | 2010-06-01 10:19:19 +0200 | [diff] [blame] | 831 | ieee80211_free_keys(sdata); |
Johannes Berg | b9dcf71 | 2010-08-27 12:35:54 +0200 | [diff] [blame] | 832 | |
Johannes Berg | 1861b84 | 2013-02-23 01:17:56 +0100 | [diff] [blame] | 833 | /* fall through */ |
| 834 | case NL80211_IFTYPE_AP: |
| 835 | skb_queue_purge(&sdata->skb_queue); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | sdata->bss = NULL; |
| 839 | |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 840 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 841 | for (i = 0; i < IEEE80211_MAX_QUEUES; i++) { |
| 842 | skb_queue_walk_safe(&local->pending[i], skb, tmp) { |
| 843 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 844 | if (info->control.vif == &sdata->vif) { |
| 845 | __skb_unlink(skb, &local->pending[i]); |
Felix Fietkau | d4fa14c | 2012-10-10 22:40:23 +0200 | [diff] [blame] | 846 | ieee80211_free_txskb(&local->hw, skb); |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 847 | } |
| 848 | } |
| 849 | } |
| 850 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 851 | |
Johannes Berg | b2c0958b | 2013-03-27 23:24:53 +0100 | [diff] [blame] | 852 | if (local->open_count == 0) |
| 853 | ieee80211_clear_tx_pending(local); |
| 854 | |
| 855 | /* |
| 856 | * If the interface goes down while suspended, presumably because |
| 857 | * the device was unplugged and that happens before our resume, |
| 858 | * then the driver is already unconfigured and the remainder of |
| 859 | * this function isn't needed. |
| 860 | * XXX: what about WoWLAN? If the device has software state, e.g. |
| 861 | * memory allocated, it might expect teardown commands from |
| 862 | * mac80211 here? |
| 863 | */ |
| 864 | if (local->suspended) { |
| 865 | WARN_ON(local->wowlan); |
| 866 | WARN_ON(rtnl_dereference(local->monitor_sdata)); |
| 867 | return; |
| 868 | } |
| 869 | |
| 870 | switch (sdata->vif.type) { |
| 871 | case NL80211_IFTYPE_AP_VLAN: |
| 872 | break; |
| 873 | case NL80211_IFTYPE_MONITOR: |
| 874 | if (local->monitors == 0) |
| 875 | ieee80211_del_virtual_monitor(local); |
| 876 | |
| 877 | mutex_lock(&local->mtx); |
| 878 | ieee80211_recalc_idle(local); |
| 879 | mutex_unlock(&local->mtx); |
| 880 | break; |
| 881 | default: |
| 882 | if (going_down) |
| 883 | drv_remove_interface(local, sdata); |
| 884 | } |
| 885 | |
| 886 | ieee80211_recalc_ps(local, -1); |
| 887 | |
| 888 | if (local->open_count == 0) { |
| 889 | ieee80211_stop_device(local); |
| 890 | |
| 891 | /* no reconfiguring after stop! */ |
| 892 | return; |
| 893 | } |
| 894 | |
| 895 | /* do after stop to avoid reconfiguring when we stop anyway */ |
| 896 | ieee80211_configure_filter(local); |
| 897 | ieee80211_hw_config(local, hw_reconf_flags); |
| 898 | |
| 899 | if (local->monitors == local->open_count) |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 900 | ieee80211_add_virtual_monitor(local); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 901 | } |
| 902 | |
| 903 | static int ieee80211_stop(struct net_device *dev) |
| 904 | { |
| 905 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 906 | |
| 907 | ieee80211_do_stop(sdata, true); |
Johannes Berg | 5061b0c | 2009-07-14 00:33:34 +0200 | [diff] [blame] | 908 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 909 | return 0; |
| 910 | } |
| 911 | |
| 912 | static void ieee80211_set_multicast_list(struct net_device *dev) |
| 913 | { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 914 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | b4a4bf5 | 2008-09-26 13:34:54 +0200 | [diff] [blame] | 915 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 916 | int allmulti, promisc, sdata_allmulti, sdata_promisc; |
| 917 | |
| 918 | allmulti = !!(dev->flags & IFF_ALLMULTI); |
| 919 | promisc = !!(dev->flags & IFF_PROMISC); |
| 920 | sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI); |
| 921 | sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC); |
| 922 | |
| 923 | if (allmulti != sdata_allmulti) { |
| 924 | if (dev->flags & IFF_ALLMULTI) |
| 925 | atomic_inc(&local->iff_allmultis); |
| 926 | else |
| 927 | atomic_dec(&local->iff_allmultis); |
| 928 | sdata->flags ^= IEEE80211_SDATA_ALLMULTI; |
| 929 | } |
| 930 | |
| 931 | if (promisc != sdata_promisc) { |
| 932 | if (dev->flags & IFF_PROMISC) |
| 933 | atomic_inc(&local->iff_promiscs); |
| 934 | else |
| 935 | atomic_dec(&local->iff_promiscs); |
| 936 | sdata->flags ^= IEEE80211_SDATA_PROMISC; |
| 937 | } |
Alexander Bondar | 488b366 | 2013-02-11 14:56:29 +0200 | [diff] [blame] | 938 | |
| 939 | /* |
| 940 | * TODO: If somebody needs this on AP interfaces, |
| 941 | * it can be enabled easily but multicast |
| 942 | * addresses from VLANs need to be synced. |
| 943 | */ |
| 944 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR && |
| 945 | sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 946 | sdata->vif.type != NL80211_IFTYPE_AP) |
| 947 | drv_set_multicast_list(local, sdata, &dev->mc); |
| 948 | |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 949 | spin_lock_bh(&local->filter_lock); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 950 | __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len); |
Johannes Berg | 3b8d81e0 | 2009-06-17 17:43:56 +0200 | [diff] [blame] | 951 | spin_unlock_bh(&local->filter_lock); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 952 | ieee80211_queue_work(&local->hw, &local->reconfig_filter); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 953 | } |
| 954 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 955 | /* |
| 956 | * Called when the netdev is removed or, by the code below, before |
| 957 | * the interface type changes. |
| 958 | */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 959 | static void ieee80211_teardown_sdata(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 960 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 961 | int flushed; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 962 | int i; |
| 963 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 964 | /* free extra data */ |
| 965 | ieee80211_free_keys(sdata); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 966 | |
Jouni Malinen | aee14ce | 2008-09-09 16:33:15 +0200 | [diff] [blame] | 967 | ieee80211_debugfs_remove_netdev(sdata); |
| 968 | |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 969 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 970 | __skb_queue_purge(&sdata->fragments[i].skb_list); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 971 | sdata->fragment_next = 0; |
| 972 | |
Johannes Berg | b9dcf71 | 2010-08-27 12:35:54 +0200 | [diff] [blame] | 973 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 974 | mesh_rmc_free(sdata); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 975 | |
Johannes Berg | b998e8b | 2012-12-13 23:07:46 +0100 | [diff] [blame] | 976 | flushed = sta_info_flush(sdata); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 977 | WARN_ON(flushed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 978 | } |
| 979 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 980 | static void ieee80211_uninit(struct net_device *dev) |
| 981 | { |
| 982 | ieee80211_teardown_sdata(IEEE80211_DEV_TO_SUB_IF(dev)); |
| 983 | } |
| 984 | |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 985 | static u16 ieee80211_netdev_select_queue(struct net_device *dev, |
| 986 | struct sk_buff *skb) |
| 987 | { |
| 988 | return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb); |
| 989 | } |
| 990 | |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 991 | static const struct net_device_ops ieee80211_dataif_ops = { |
| 992 | .ndo_open = ieee80211_open, |
| 993 | .ndo_stop = ieee80211_stop, |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 994 | .ndo_uninit = ieee80211_uninit, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 995 | .ndo_start_xmit = ieee80211_subif_start_xmit, |
Jiri Pirko | afc4b13 | 2011-08-16 06:29:01 +0000 | [diff] [blame] | 996 | .ndo_set_rx_mode = ieee80211_set_multicast_list, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 997 | .ndo_change_mtu = ieee80211_change_mtu, |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 998 | .ndo_set_mac_address = ieee80211_change_mac, |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 999 | .ndo_select_queue = ieee80211_netdev_select_queue, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1000 | }; |
| 1001 | |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 1002 | static u16 ieee80211_monitor_select_queue(struct net_device *dev, |
| 1003 | struct sk_buff *skb) |
| 1004 | { |
| 1005 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1006 | struct ieee80211_local *local = sdata->local; |
| 1007 | struct ieee80211_hdr *hdr; |
| 1008 | struct ieee80211_radiotap_header *rtap = (void *)skb->data; |
| 1009 | |
Johannes Berg | 32c5057 | 2012-03-28 11:04:29 +0200 | [diff] [blame] | 1010 | if (local->hw.queues < IEEE80211_NUM_ACS) |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 1011 | return 0; |
| 1012 | |
| 1013 | if (skb->len < 4 || |
Johannes Berg | b49bb57 | 2010-01-08 19:00:00 +0100 | [diff] [blame] | 1014 | skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */) |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 1015 | return 0; /* doesn't matter, frame will be dropped */ |
| 1016 | |
Johannes Berg | b49bb57 | 2010-01-08 19:00:00 +0100 | [diff] [blame] | 1017 | hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len)); |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 1018 | |
Yoni Divinsky | 00e96de | 2012-06-20 15:39:13 +0300 | [diff] [blame] | 1019 | return ieee80211_select_queue_80211(sdata, skb, hdr); |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 1020 | } |
| 1021 | |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1022 | static const struct net_device_ops ieee80211_monitorif_ops = { |
| 1023 | .ndo_open = ieee80211_open, |
| 1024 | .ndo_stop = ieee80211_stop, |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1025 | .ndo_uninit = ieee80211_uninit, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1026 | .ndo_start_xmit = ieee80211_monitor_start_xmit, |
Jiri Pirko | afc4b13 | 2011-08-16 06:29:01 +0000 | [diff] [blame] | 1027 | .ndo_set_rx_mode = ieee80211_set_multicast_list, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1028 | .ndo_change_mtu = ieee80211_change_mtu, |
| 1029 | .ndo_set_mac_address = eth_mac_addr, |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 1030 | .ndo_select_queue = ieee80211_monitor_select_queue, |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1031 | }; |
| 1032 | |
| 1033 | static void ieee80211_if_setup(struct net_device *dev) |
| 1034 | { |
| 1035 | ether_setup(dev); |
Neil Horman | 550fd08 | 2011-07-26 06:05:38 +0000 | [diff] [blame] | 1036 | dev->priv_flags &= ~IFF_TX_SKB_SHARING; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1037 | dev->netdev_ops = &ieee80211_dataif_ops; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1038 | dev->destructor = free_netdev; |
| 1039 | } |
| 1040 | |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1041 | static void ieee80211_iface_work(struct work_struct *work) |
| 1042 | { |
| 1043 | struct ieee80211_sub_if_data *sdata = |
| 1044 | container_of(work, struct ieee80211_sub_if_data, work); |
| 1045 | struct ieee80211_local *local = sdata->local; |
| 1046 | struct sk_buff *skb; |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1047 | struct sta_info *sta; |
Johannes Berg | c1475ca | 2010-06-10 10:21:37 +0200 | [diff] [blame] | 1048 | struct ieee80211_ra_tid *ra_tid; |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1049 | |
| 1050 | if (!ieee80211_sdata_running(sdata)) |
| 1051 | return; |
| 1052 | |
| 1053 | if (local->scanning) |
| 1054 | return; |
| 1055 | |
| 1056 | /* |
| 1057 | * ieee80211_queue_work() should have picked up most cases, |
| 1058 | * here we'll pick the rest. |
| 1059 | */ |
| 1060 | if (WARN(local->suspended, |
| 1061 | "interface work scheduled while going to suspend\n")) |
| 1062 | return; |
| 1063 | |
| 1064 | /* first process frames */ |
| 1065 | while ((skb = skb_dequeue(&sdata->skb_queue))) { |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1066 | struct ieee80211_mgmt *mgmt = (void *)skb->data; |
| 1067 | |
Johannes Berg | c1475ca | 2010-06-10 10:21:37 +0200 | [diff] [blame] | 1068 | if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_START) { |
| 1069 | ra_tid = (void *)&skb->cb; |
| 1070 | ieee80211_start_tx_ba_cb(&sdata->vif, ra_tid->ra, |
| 1071 | ra_tid->tid); |
| 1072 | } else if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_STOP) { |
| 1073 | ra_tid = (void *)&skb->cb; |
| 1074 | ieee80211_stop_tx_ba_cb(&sdata->vif, ra_tid->ra, |
| 1075 | ra_tid->tid); |
| 1076 | } else if (ieee80211_is_action(mgmt->frame_control) && |
| 1077 | mgmt->u.action.category == WLAN_CATEGORY_BACK) { |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1078 | int len = skb->len; |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1079 | |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1080 | mutex_lock(&local->sta_mtx); |
Felix Fietkau | 875ae5f | 2010-07-17 15:59:07 +0200 | [diff] [blame] | 1081 | sta = sta_info_get_bss(sdata, mgmt->sa); |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1082 | if (sta) { |
| 1083 | switch (mgmt->u.action.u.addba_req.action_code) { |
| 1084 | case WLAN_ACTION_ADDBA_REQ: |
| 1085 | ieee80211_process_addba_request( |
| 1086 | local, sta, mgmt, len); |
| 1087 | break; |
| 1088 | case WLAN_ACTION_ADDBA_RESP: |
| 1089 | ieee80211_process_addba_resp(local, sta, |
| 1090 | mgmt, len); |
| 1091 | break; |
| 1092 | case WLAN_ACTION_DELBA: |
| 1093 | ieee80211_process_delba(sdata, sta, |
| 1094 | mgmt, len); |
| 1095 | break; |
| 1096 | default: |
| 1097 | WARN_ON(1); |
| 1098 | break; |
| 1099 | } |
| 1100 | } |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1101 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1102 | } else if (ieee80211_is_data_qos(mgmt->frame_control)) { |
| 1103 | struct ieee80211_hdr *hdr = (void *)mgmt; |
| 1104 | /* |
| 1105 | * So the frame isn't mgmt, but frame_control |
| 1106 | * is at the right place anyway, of course, so |
| 1107 | * the if statement is correct. |
| 1108 | * |
| 1109 | * Warn if we have other data frame types here, |
| 1110 | * they must not get here. |
| 1111 | */ |
| 1112 | WARN_ON(hdr->frame_control & |
| 1113 | cpu_to_le16(IEEE80211_STYPE_NULLFUNC)); |
| 1114 | WARN_ON(!(hdr->seq_ctrl & |
| 1115 | cpu_to_le16(IEEE80211_SCTL_FRAG))); |
| 1116 | /* |
| 1117 | * This was a fragment of a frame, received while |
| 1118 | * a block-ack session was active. That cannot be |
| 1119 | * right, so terminate the session. |
| 1120 | */ |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1121 | mutex_lock(&local->sta_mtx); |
Felix Fietkau | 875ae5f | 2010-07-17 15:59:07 +0200 | [diff] [blame] | 1122 | sta = sta_info_get_bss(sdata, mgmt->sa); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1123 | if (sta) { |
| 1124 | u16 tid = *ieee80211_get_qos_ctl(hdr) & |
| 1125 | IEEE80211_QOS_CTL_TID_MASK; |
| 1126 | |
| 1127 | __ieee80211_stop_rx_ba_session( |
| 1128 | sta, tid, WLAN_BACK_RECIPIENT, |
Johannes Berg | 53f73c0 | 2010-10-05 19:37:40 +0200 | [diff] [blame] | 1129 | WLAN_REASON_QSTA_REQUIRE_SETUP, |
| 1130 | true); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1131 | } |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1132 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1133 | } else switch (sdata->vif.type) { |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1134 | case NL80211_IFTYPE_STATION: |
| 1135 | ieee80211_sta_rx_queued_mgmt(sdata, skb); |
| 1136 | break; |
| 1137 | case NL80211_IFTYPE_ADHOC: |
| 1138 | ieee80211_ibss_rx_queued_mgmt(sdata, skb); |
| 1139 | break; |
| 1140 | case NL80211_IFTYPE_MESH_POINT: |
| 1141 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 1142 | break; |
| 1143 | ieee80211_mesh_rx_queued_mgmt(sdata, skb); |
| 1144 | break; |
| 1145 | default: |
| 1146 | WARN(1, "frame for unexpected interface type"); |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1147 | break; |
| 1148 | } |
Johannes Berg | 36b3a62 | 2010-06-10 10:21:33 +0200 | [diff] [blame] | 1149 | |
| 1150 | kfree_skb(skb); |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | /* then other type-dependent work */ |
| 1154 | switch (sdata->vif.type) { |
| 1155 | case NL80211_IFTYPE_STATION: |
| 1156 | ieee80211_sta_work(sdata); |
| 1157 | break; |
| 1158 | case NL80211_IFTYPE_ADHOC: |
| 1159 | ieee80211_ibss_work(sdata); |
| 1160 | break; |
| 1161 | case NL80211_IFTYPE_MESH_POINT: |
| 1162 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 1163 | break; |
| 1164 | ieee80211_mesh_work(sdata); |
| 1165 | break; |
| 1166 | default: |
| 1167 | break; |
| 1168 | } |
| 1169 | } |
| 1170 | |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 1171 | static void ieee80211_recalc_smps_work(struct work_struct *work) |
| 1172 | { |
| 1173 | struct ieee80211_sub_if_data *sdata = |
| 1174 | container_of(work, struct ieee80211_sub_if_data, recalc_smps); |
| 1175 | |
| 1176 | ieee80211_recalc_smps(sdata); |
| 1177 | } |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1178 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1179 | /* |
| 1180 | * Helper function to initialise an interface to a specific type. |
| 1181 | */ |
| 1182 | static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1183 | enum nl80211_iftype type) |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1184 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1185 | /* clear type-dependent union */ |
| 1186 | memset(&sdata->u, 0, sizeof(sdata->u)); |
| 1187 | |
| 1188 | /* and set some type-dependent values */ |
| 1189 | sdata->vif.type = type; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1190 | sdata->vif.p2p = false; |
Johannes Berg | 60719ff | 2008-09-16 14:55:09 +0200 | [diff] [blame] | 1191 | sdata->wdev.iftype = type; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1192 | |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 1193 | sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE); |
| 1194 | sdata->control_port_no_encrypt = false; |
| 1195 | |
Simon Wunderlich | b53be79 | 2011-11-18 14:20:44 +0100 | [diff] [blame] | 1196 | sdata->noack_map = 0; |
| 1197 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1198 | /* only monitor/p2p-device differ */ |
| 1199 | if (sdata->dev) { |
| 1200 | sdata->dev->netdev_ops = &ieee80211_dataif_ops; |
| 1201 | sdata->dev->type = ARPHRD_ETHER; |
| 1202 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1203 | |
Johannes Berg | 35f20c1 | 2010-06-10 10:21:30 +0200 | [diff] [blame] | 1204 | skb_queue_head_init(&sdata->skb_queue); |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1205 | INIT_WORK(&sdata->work, ieee80211_iface_work); |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 1206 | INIT_WORK(&sdata->recalc_smps, ieee80211_recalc_smps_work); |
Johannes Berg | 35f20c1 | 2010-06-10 10:21:30 +0200 | [diff] [blame] | 1207 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1208 | switch (type) { |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1209 | case NL80211_IFTYPE_P2P_GO: |
| 1210 | type = NL80211_IFTYPE_AP; |
| 1211 | sdata->vif.type = type; |
| 1212 | sdata->vif.p2p = true; |
| 1213 | /* fall through */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1214 | case NL80211_IFTYPE_AP: |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1215 | skb_queue_head_init(&sdata->u.ap.ps.bc_buf); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1216 | INIT_LIST_HEAD(&sdata->u.ap.vlans); |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1217 | sdata->vif.bss_conf.bssid = sdata->vif.addr; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1218 | break; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1219 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1220 | type = NL80211_IFTYPE_STATION; |
| 1221 | sdata->vif.type = type; |
| 1222 | sdata->vif.p2p = true; |
| 1223 | /* fall through */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1224 | case NL80211_IFTYPE_STATION: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1225 | sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 1226 | ieee80211_sta_setup_sdata(sdata); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 1227 | break; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1228 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1229 | sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1230 | ieee80211_ibss_setup_sdata(sdata); |
| 1231 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1232 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1233 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 1234 | ieee80211_mesh_init_sdata(sdata); |
| 1235 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1236 | case NL80211_IFTYPE_MONITOR: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1237 | sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1238 | sdata->dev->netdev_ops = &ieee80211_monitorif_ops; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1239 | sdata->u.mntr_flags = MONITOR_FLAG_CONTROL | |
| 1240 | MONITOR_FLAG_OTHER_BSS; |
| 1241 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1242 | case NL80211_IFTYPE_WDS: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1243 | sdata->vif.bss_conf.bssid = NULL; |
| 1244 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1245 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1246 | break; |
Johannes Berg | 98104fde | 2012-06-16 00:19:54 +0200 | [diff] [blame] | 1247 | case NL80211_IFTYPE_P2P_DEVICE: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1248 | sdata->vif.bss_conf.bssid = sdata->vif.addr; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1249 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1250 | case NL80211_IFTYPE_UNSPECIFIED: |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1251 | case NUM_NL80211_IFTYPES: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1252 | BUG(); |
| 1253 | break; |
| 1254 | } |
| 1255 | |
| 1256 | ieee80211_debugfs_add_netdev(sdata); |
| 1257 | } |
| 1258 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1259 | static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata, |
| 1260 | enum nl80211_iftype type) |
| 1261 | { |
| 1262 | struct ieee80211_local *local = sdata->local; |
| 1263 | int ret, err; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1264 | enum nl80211_iftype internal_type = type; |
| 1265 | bool p2p = false; |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1266 | |
| 1267 | ASSERT_RTNL(); |
| 1268 | |
| 1269 | if (!local->ops->change_interface) |
| 1270 | return -EBUSY; |
| 1271 | |
| 1272 | switch (sdata->vif.type) { |
| 1273 | case NL80211_IFTYPE_AP: |
| 1274 | case NL80211_IFTYPE_STATION: |
| 1275 | case NL80211_IFTYPE_ADHOC: |
| 1276 | /* |
| 1277 | * Could maybe also all others here? |
| 1278 | * Just not sure how that interacts |
| 1279 | * with the RX/config path e.g. for |
| 1280 | * mesh. |
| 1281 | */ |
| 1282 | break; |
| 1283 | default: |
| 1284 | return -EBUSY; |
| 1285 | } |
| 1286 | |
| 1287 | switch (type) { |
| 1288 | case NL80211_IFTYPE_AP: |
| 1289 | case NL80211_IFTYPE_STATION: |
| 1290 | case NL80211_IFTYPE_ADHOC: |
| 1291 | /* |
| 1292 | * Could probably support everything |
| 1293 | * but WDS here (WDS do_open can fail |
| 1294 | * under memory pressure, which this |
| 1295 | * code isn't prepared to handle). |
| 1296 | */ |
| 1297 | break; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1298 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1299 | p2p = true; |
| 1300 | internal_type = NL80211_IFTYPE_STATION; |
| 1301 | break; |
| 1302 | case NL80211_IFTYPE_P2P_GO: |
| 1303 | p2p = true; |
| 1304 | internal_type = NL80211_IFTYPE_AP; |
| 1305 | break; |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1306 | default: |
| 1307 | return -EBUSY; |
| 1308 | } |
| 1309 | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1310 | ret = ieee80211_check_concurrent_iface(sdata, internal_type); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1311 | if (ret) |
| 1312 | return ret; |
| 1313 | |
| 1314 | ieee80211_do_stop(sdata, false); |
| 1315 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1316 | ieee80211_teardown_sdata(sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1317 | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1318 | ret = drv_change_interface(local, sdata, internal_type, p2p); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1319 | if (ret) |
| 1320 | type = sdata->vif.type; |
| 1321 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1322 | /* |
| 1323 | * Ignore return value here, there's not much we can do since |
| 1324 | * the driver changed the interface type internally already. |
| 1325 | * The warnings will hopefully make driver authors fix it :-) |
| 1326 | */ |
| 1327 | ieee80211_check_queues(sdata); |
| 1328 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1329 | ieee80211_setup_sdata(sdata, type); |
| 1330 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1331 | err = ieee80211_do_open(&sdata->wdev, false); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1332 | WARN(err, "type change: do_open returned %d", err); |
| 1333 | |
| 1334 | return ret; |
| 1335 | } |
| 1336 | |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1337 | int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1338 | enum nl80211_iftype type) |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1339 | { |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1340 | int ret; |
| 1341 | |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1342 | ASSERT_RTNL(); |
| 1343 | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1344 | if (type == ieee80211_vif_type_p2p(&sdata->vif)) |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1345 | return 0; |
| 1346 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1347 | if (ieee80211_sdata_running(sdata)) { |
| 1348 | ret = ieee80211_runtime_change_iftype(sdata, type); |
| 1349 | if (ret) |
| 1350 | return ret; |
| 1351 | } else { |
| 1352 | /* Purge and reset type-dependent state. */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1353 | ieee80211_teardown_sdata(sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1354 | ieee80211_setup_sdata(sdata, type); |
| 1355 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1356 | |
| 1357 | /* reset some values that shouldn't be kept across type changes */ |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1358 | sdata->drop_unencrypted = 0; |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1359 | if (type == NL80211_IFTYPE_STATION) |
| 1360 | sdata->u.mgd.use_4addr = false; |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1361 | |
| 1362 | return 0; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1363 | } |
| 1364 | |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1365 | static void ieee80211_assign_perm_addr(struct ieee80211_local *local, |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1366 | u8 *perm_addr, enum nl80211_iftype type) |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1367 | { |
| 1368 | struct ieee80211_sub_if_data *sdata; |
| 1369 | u64 mask, start, addr, val, inc; |
| 1370 | u8 *m; |
| 1371 | u8 tmp_addr[ETH_ALEN]; |
| 1372 | int i; |
| 1373 | |
| 1374 | /* default ... something at least */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1375 | memcpy(perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1376 | |
| 1377 | if (is_zero_ether_addr(local->hw.wiphy->addr_mask) && |
| 1378 | local->hw.wiphy->n_addresses <= 1) |
| 1379 | return; |
| 1380 | |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1381 | mutex_lock(&local->iflist_mtx); |
| 1382 | |
| 1383 | switch (type) { |
| 1384 | case NL80211_IFTYPE_MONITOR: |
| 1385 | /* doesn't matter */ |
| 1386 | break; |
| 1387 | case NL80211_IFTYPE_WDS: |
| 1388 | case NL80211_IFTYPE_AP_VLAN: |
| 1389 | /* match up with an AP interface */ |
| 1390 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1391 | if (sdata->vif.type != NL80211_IFTYPE_AP) |
| 1392 | continue; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1393 | memcpy(perm_addr, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1394 | break; |
| 1395 | } |
| 1396 | /* keep default if no AP interface present */ |
| 1397 | break; |
Johannes Berg | 6d71117 | 2012-06-19 17:19:44 +0200 | [diff] [blame] | 1398 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1399 | case NL80211_IFTYPE_P2P_GO: |
| 1400 | if (local->hw.flags & IEEE80211_HW_P2P_DEV_ADDR_FOR_INTF) { |
| 1401 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1402 | if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE) |
| 1403 | continue; |
| 1404 | if (!ieee80211_sdata_running(sdata)) |
| 1405 | continue; |
| 1406 | memcpy(perm_addr, sdata->vif.addr, ETH_ALEN); |
| 1407 | goto out_unlock; |
| 1408 | } |
| 1409 | } |
| 1410 | /* otherwise fall through */ |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1411 | default: |
| 1412 | /* assign a new address if possible -- try n_addresses first */ |
| 1413 | for (i = 0; i < local->hw.wiphy->n_addresses; i++) { |
| 1414 | bool used = false; |
| 1415 | |
| 1416 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1417 | if (memcmp(local->hw.wiphy->addresses[i].addr, |
| 1418 | sdata->vif.addr, ETH_ALEN) == 0) { |
| 1419 | used = true; |
| 1420 | break; |
| 1421 | } |
| 1422 | } |
| 1423 | |
| 1424 | if (!used) { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1425 | memcpy(perm_addr, |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1426 | local->hw.wiphy->addresses[i].addr, |
| 1427 | ETH_ALEN); |
| 1428 | break; |
| 1429 | } |
| 1430 | } |
| 1431 | |
| 1432 | /* try mask if available */ |
| 1433 | if (is_zero_ether_addr(local->hw.wiphy->addr_mask)) |
| 1434 | break; |
| 1435 | |
| 1436 | m = local->hw.wiphy->addr_mask; |
| 1437 | mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 1438 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 1439 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 1440 | |
| 1441 | if (__ffs64(mask) + hweight64(mask) != fls64(mask)) { |
| 1442 | /* not a contiguous mask ... not handled now! */ |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1443 | pr_info("not contiguous\n"); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1444 | break; |
| 1445 | } |
| 1446 | |
| 1447 | m = local->hw.wiphy->perm_addr; |
| 1448 | start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 1449 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 1450 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 1451 | |
| 1452 | inc = 1ULL<<__ffs64(mask); |
| 1453 | val = (start & mask); |
| 1454 | addr = (start & ~mask) | (val & mask); |
| 1455 | do { |
| 1456 | bool used = false; |
| 1457 | |
| 1458 | tmp_addr[5] = addr >> 0*8; |
| 1459 | tmp_addr[4] = addr >> 1*8; |
| 1460 | tmp_addr[3] = addr >> 2*8; |
| 1461 | tmp_addr[2] = addr >> 3*8; |
| 1462 | tmp_addr[1] = addr >> 4*8; |
| 1463 | tmp_addr[0] = addr >> 5*8; |
| 1464 | |
| 1465 | val += inc; |
| 1466 | |
| 1467 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1468 | if (memcmp(tmp_addr, sdata->vif.addr, |
| 1469 | ETH_ALEN) == 0) { |
| 1470 | used = true; |
| 1471 | break; |
| 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | if (!used) { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1476 | memcpy(perm_addr, tmp_addr, ETH_ALEN); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1477 | break; |
| 1478 | } |
| 1479 | addr = (start & ~mask) | (val & mask); |
| 1480 | } while (addr != start); |
| 1481 | |
| 1482 | break; |
| 1483 | } |
| 1484 | |
Johannes Berg | 6d71117 | 2012-06-19 17:19:44 +0200 | [diff] [blame] | 1485 | out_unlock: |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1486 | mutex_unlock(&local->iflist_mtx); |
| 1487 | } |
| 1488 | |
Johannes Berg | 97f97b1 | 2012-12-13 22:54:58 +0100 | [diff] [blame] | 1489 | static void ieee80211_cleanup_sdata_stas_wk(struct work_struct *wk) |
| 1490 | { |
| 1491 | struct ieee80211_sub_if_data *sdata; |
| 1492 | |
| 1493 | sdata = container_of(wk, struct ieee80211_sub_if_data, cleanup_stations_wk); |
| 1494 | |
| 1495 | ieee80211_cleanup_sdata_stas(sdata); |
| 1496 | } |
| 1497 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1498 | int ieee80211_if_add(struct ieee80211_local *local, const char *name, |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1499 | struct wireless_dev **new_wdev, enum nl80211_iftype type, |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 1500 | struct vif_params *params) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1501 | { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1502 | struct net_device *ndev = NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1503 | struct ieee80211_sub_if_data *sdata = NULL; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1504 | int ret, i; |
Johannes Berg | ded81f6 | 2012-03-28 11:04:26 +0200 | [diff] [blame] | 1505 | int txqs = 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1506 | |
| 1507 | ASSERT_RTNL(); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1508 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1509 | if (type == NL80211_IFTYPE_P2P_DEVICE) { |
| 1510 | struct wireless_dev *wdev; |
Johannes Berg | ded81f6 | 2012-03-28 11:04:26 +0200 | [diff] [blame] | 1511 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1512 | sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, |
| 1513 | GFP_KERNEL); |
| 1514 | if (!sdata) |
| 1515 | return -ENOMEM; |
| 1516 | wdev = &sdata->wdev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1517 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1518 | sdata->dev = NULL; |
| 1519 | strlcpy(sdata->name, name, IFNAMSIZ); |
| 1520 | ieee80211_assign_perm_addr(local, wdev->address, type); |
| 1521 | memcpy(sdata->vif.addr, wdev->address, ETH_ALEN); |
| 1522 | } else { |
| 1523 | if (local->hw.queues >= IEEE80211_NUM_ACS) |
| 1524 | txqs = IEEE80211_NUM_ACS; |
Johannes Berg | f3994ec | 2008-05-12 20:51:44 -0700 | [diff] [blame] | 1525 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1526 | ndev = alloc_netdev_mqs(sizeof(*sdata) + |
| 1527 | local->hw.vif_data_size, |
| 1528 | name, ieee80211_if_setup, txqs, 1); |
| 1529 | if (!ndev) |
| 1530 | return -ENOMEM; |
| 1531 | dev_net_set(ndev, wiphy_net(local->hw.wiphy)); |
Thadeu Lima de Souza Cascardo | 59e7e70 | 2011-06-02 17:28:37 -0300 | [diff] [blame] | 1532 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1533 | ndev->needed_headroom = local->tx_headroom + |
| 1534 | 4*6 /* four MAC addresses */ |
| 1535 | + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */ |
| 1536 | + 6 /* mesh */ |
| 1537 | + 8 /* rfc1042/bridge tunnel */ |
| 1538 | - ETH_HLEN /* ethernet hard_header_len */ |
| 1539 | + IEEE80211_ENCRYPT_HEADROOM; |
| 1540 | ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1541 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1542 | ret = dev_alloc_name(ndev, ndev->name); |
| 1543 | if (ret < 0) { |
| 1544 | free_netdev(ndev); |
| 1545 | return ret; |
| 1546 | } |
| 1547 | |
| 1548 | ieee80211_assign_perm_addr(local, ndev->perm_addr, type); |
| 1549 | memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN); |
| 1550 | SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy)); |
| 1551 | |
| 1552 | /* don't use IEEE80211_DEV_TO_SUB_IF -- it checks too much */ |
| 1553 | sdata = netdev_priv(ndev); |
| 1554 | ndev->ieee80211_ptr = &sdata->wdev; |
| 1555 | memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN); |
| 1556 | memcpy(sdata->name, ndev->name, IFNAMSIZ); |
| 1557 | |
| 1558 | sdata->dev = ndev; |
| 1559 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1560 | |
| 1561 | /* initialise type-independent data */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1562 | sdata->wdev.wiphy = local->hw.wiphy; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1563 | sdata->local = local; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1564 | |
| 1565 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
| 1566 | skb_queue_head_init(&sdata->fragments[i].skb_list); |
| 1567 | |
| 1568 | INIT_LIST_HEAD(&sdata->key_list); |
| 1569 | |
Johannes Berg | 97f97b1 | 2012-12-13 22:54:58 +0100 | [diff] [blame] | 1570 | spin_lock_init(&sdata->cleanup_stations_lock); |
| 1571 | INIT_LIST_HEAD(&sdata->cleanup_stations); |
| 1572 | INIT_WORK(&sdata->cleanup_stations_wk, ieee80211_cleanup_sdata_stas_wk); |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 1573 | INIT_DELAYED_WORK(&sdata->dfs_cac_timer_work, |
| 1574 | ieee80211_dfs_cac_timer_work); |
Johannes Berg | 8d1f7ec | 2013-02-23 00:59:03 +0100 | [diff] [blame] | 1575 | INIT_DELAYED_WORK(&sdata->dec_tailroom_needed_wk, |
| 1576 | ieee80211_delayed_tailroom_dec); |
Johannes Berg | 97f97b1 | 2012-12-13 22:54:58 +0100 | [diff] [blame] | 1577 | |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 1578 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) { |
| 1579 | struct ieee80211_supported_band *sband; |
| 1580 | sband = local->hw.wiphy->bands[i]; |
| 1581 | sdata->rc_rateidx_mask[i] = |
| 1582 | sband ? (1 << sband->n_bitrates) - 1 : 0; |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 1583 | if (sband) |
| 1584 | memcpy(sdata->rc_rateidx_mcs_mask[i], |
| 1585 | sband->ht_cap.mcs.rx_mask, |
| 1586 | sizeof(sdata->rc_rateidx_mcs_mask[i])); |
| 1587 | else |
| 1588 | memset(sdata->rc_rateidx_mcs_mask[i], 0, |
| 1589 | sizeof(sdata->rc_rateidx_mcs_mask[i])); |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 1590 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1591 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1592 | ieee80211_set_default_queues(sdata); |
| 1593 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 1594 | sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL; |
| 1595 | sdata->user_power_level = local->user_power_level; |
| 1596 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1597 | /* setup type-dependent data */ |
| 1598 | ieee80211_setup_sdata(sdata, type); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1599 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1600 | if (ndev) { |
| 1601 | if (params) { |
| 1602 | ndev->ieee80211_ptr->use_4addr = params->use_4addr; |
| 1603 | if (type == NL80211_IFTYPE_STATION) |
| 1604 | sdata->u.mgd.use_4addr = params->use_4addr; |
| 1605 | } |
| 1606 | |
| 1607 | ndev->features |= local->hw.netdev_features; |
| 1608 | |
| 1609 | ret = register_netdevice(ndev); |
| 1610 | if (ret) { |
| 1611 | free_netdev(ndev); |
| 1612 | return ret; |
| 1613 | } |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1614 | } |
| 1615 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1616 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1617 | list_add_tail_rcu(&sdata->list, &local->interfaces); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1618 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1619 | |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1620 | if (new_wdev) |
| 1621 | *new_wdev = &sdata->wdev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1622 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1623 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1624 | } |
| 1625 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1626 | void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1627 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1628 | ASSERT_RTNL(); |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 1629 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1630 | mutex_lock(&sdata->local->iflist_mtx); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1631 | list_del_rcu(&sdata->list); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1632 | mutex_unlock(&sdata->local->iflist_mtx); |
| 1633 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1634 | synchronize_rcu(); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1635 | |
| 1636 | if (sdata->dev) { |
| 1637 | unregister_netdevice(sdata->dev); |
| 1638 | } else { |
| 1639 | cfg80211_unregister_wdev(&sdata->wdev); |
| 1640 | kfree(sdata); |
| 1641 | } |
| 1642 | } |
| 1643 | |
| 1644 | void ieee80211_sdata_stop(struct ieee80211_sub_if_data *sdata) |
| 1645 | { |
| 1646 | if (WARN_ON_ONCE(!test_bit(SDATA_STATE_RUNNING, &sdata->state))) |
| 1647 | return; |
| 1648 | ieee80211_do_stop(sdata, true); |
| 1649 | ieee80211_teardown_sdata(sdata); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1650 | } |
| 1651 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1652 | /* |
| 1653 | * Remove all interfaces, may only be called at hardware unregistration |
| 1654 | * time because it doesn't do RCU-safe list removals. |
| 1655 | */ |
| 1656 | void ieee80211_remove_interfaces(struct ieee80211_local *local) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1657 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1658 | struct ieee80211_sub_if_data *sdata, *tmp; |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 1659 | LIST_HEAD(unreg_list); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1660 | LIST_HEAD(wdev_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1661 | |
| 1662 | ASSERT_RTNL(); |
| 1663 | |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 1664 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1665 | list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) { |
| 1666 | list_del(&sdata->list); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1667 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1668 | if (sdata->dev) |
| 1669 | unregister_netdevice_queue(sdata->dev, &unreg_list); |
| 1670 | else |
| 1671 | list_add(&sdata->list, &wdev_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1672 | } |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 1673 | mutex_unlock(&local->iflist_mtx); |
| 1674 | unregister_netdevice_many(&unreg_list); |
Eric W. Biederman | 5f04d50 | 2011-02-20 11:49:45 -0800 | [diff] [blame] | 1675 | list_del(&unreg_list); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1676 | |
| 1677 | list_for_each_entry_safe(sdata, tmp, &wdev_list, list) { |
| 1678 | list_del(&sdata->list); |
| 1679 | cfg80211_unregister_wdev(&sdata->wdev); |
| 1680 | kfree(sdata); |
| 1681 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1682 | } |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 1683 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1684 | static int netdev_notify(struct notifier_block *nb, |
| 1685 | unsigned long state, |
| 1686 | void *ndev) |
| 1687 | { |
| 1688 | struct net_device *dev = ndev; |
| 1689 | struct ieee80211_sub_if_data *sdata; |
| 1690 | |
| 1691 | if (state != NETDEV_CHANGENAME) |
| 1692 | return 0; |
| 1693 | |
| 1694 | if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy) |
| 1695 | return 0; |
| 1696 | |
| 1697 | if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid) |
| 1698 | return 0; |
| 1699 | |
| 1700 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1701 | |
Johannes Berg | 2f5265e | 2010-02-12 10:45:05 +0100 | [diff] [blame] | 1702 | memcpy(sdata->name, dev->name, IFNAMSIZ); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1703 | |
| 1704 | ieee80211_debugfs_rename_netdev(sdata); |
| 1705 | return 0; |
| 1706 | } |
| 1707 | |
| 1708 | static struct notifier_block mac80211_netdev_notifier = { |
| 1709 | .notifier_call = netdev_notify, |
| 1710 | }; |
| 1711 | |
| 1712 | int ieee80211_iface_init(void) |
| 1713 | { |
| 1714 | return register_netdevice_notifier(&mac80211_netdev_notifier); |
| 1715 | } |
| 1716 | |
| 1717 | void ieee80211_iface_exit(void) |
| 1718 | { |
| 1719 | unregister_netdevice_notifier(&mac80211_netdev_notifier); |
| 1720 | } |