Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * mac80211 configuration hooks for cfg80211 |
| 3 | * |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 4 | * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 5 | * |
| 6 | * This file is GPLv2 as found in COPYING. |
| 7 | */ |
| 8 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 9 | #include <linux/ieee80211.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 10 | #include <linux/nl80211.h> |
| 11 | #include <linux/rtnetlink.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 13 | #include <net/net_namespace.h> |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 14 | #include <linux/rcupdate.h> |
Arik Nemtsov | dfe018b | 2011-09-28 14:12:52 +0300 | [diff] [blame] | 15 | #include <linux/if_ether.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 16 | #include <net/cfg80211.h> |
| 17 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 18 | #include "driver-ops.h" |
Michael Wu | e0eb685 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 19 | #include "cfg.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 20 | #include "rate.h" |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 21 | #include "mesh.h" |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 22 | |
Johannes Berg | 552bff0 | 2012-09-19 09:26:06 +0200 | [diff] [blame] | 23 | static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy, |
| 24 | const char *name, |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 25 | enum nl80211_iftype type, |
| 26 | u32 *flags, |
| 27 | struct vif_params *params) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 28 | { |
| 29 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 30 | struct wireless_dev *wdev; |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 31 | struct ieee80211_sub_if_data *sdata; |
| 32 | int err; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 33 | |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 34 | err = ieee80211_if_add(local, name, &wdev, type, params); |
Johannes Berg | f9e10ce | 2010-12-03 09:20:42 +0100 | [diff] [blame] | 35 | if (err) |
| 36 | return ERR_PTR(err); |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 37 | |
Johannes Berg | f9e10ce | 2010-12-03 09:20:42 +0100 | [diff] [blame] | 38 | if (type == NL80211_IFTYPE_MONITOR && flags) { |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 39 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
Johannes Berg | f9e10ce | 2010-12-03 09:20:42 +0100 | [diff] [blame] | 40 | sdata->u.mntr_flags = *flags; |
| 41 | } |
| 42 | |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 43 | return wdev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 46 | static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 47 | { |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 48 | ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 49 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 50 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Johannes Berg | e36d56b | 2009-06-09 21:04:43 +0200 | [diff] [blame] | 53 | static int ieee80211_change_iface(struct wiphy *wiphy, |
| 54 | struct net_device *dev, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 55 | enum nl80211_iftype type, u32 *flags, |
| 56 | struct vif_params *params) |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 57 | { |
Johannes Berg | 9607e6b66 | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 58 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 59 | int ret; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 60 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 61 | ret = ieee80211_if_change_type(sdata, type); |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 62 | if (ret) |
| 63 | return ret; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 64 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 65 | if (type == NL80211_IFTYPE_AP_VLAN && |
| 66 | params && params->use_4addr == 0) |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 67 | RCU_INIT_POINTER(sdata->u.vlan.sta, NULL); |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 68 | else if (type == NL80211_IFTYPE_STATION && |
| 69 | params && params->use_4addr >= 0) |
| 70 | sdata->u.mgd.use_4addr = params->use_4addr; |
| 71 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 72 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) { |
| 73 | struct ieee80211_local *local = sdata->local; |
| 74 | |
| 75 | if (ieee80211_sdata_running(sdata)) { |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 76 | u32 mask = MONITOR_FLAG_COOK_FRAMES | |
| 77 | MONITOR_FLAG_ACTIVE; |
| 78 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 79 | /* |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 80 | * Prohibit MONITOR_FLAG_COOK_FRAMES and |
| 81 | * MONITOR_FLAG_ACTIVE to be changed while the |
| 82 | * interface is up. |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 83 | * Else we would need to add a lot of cruft |
| 84 | * to update everything: |
| 85 | * cooked_mntrs, monitor and all fif_* counters |
| 86 | * reconfigure hardware |
| 87 | */ |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 88 | if ((*flags & mask) != (sdata->u.mntr_flags & mask)) |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 89 | return -EBUSY; |
| 90 | |
| 91 | ieee80211_adjust_monitor_flags(sdata, -1); |
| 92 | sdata->u.mntr_flags = *flags; |
| 93 | ieee80211_adjust_monitor_flags(sdata, 1); |
| 94 | |
| 95 | ieee80211_configure_filter(local); |
| 96 | } else { |
| 97 | /* |
| 98 | * Because the interface is down, ieee80211_do_stop |
| 99 | * and ieee80211_do_open take care of "everything" |
| 100 | * mentioned in the comment above. |
| 101 | */ |
| 102 | sdata->u.mntr_flags = *flags; |
| 103 | } |
| 104 | } |
Felix Fietkau | f7917af | 2010-04-27 00:26:34 +0200 | [diff] [blame] | 105 | |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 106 | return 0; |
| 107 | } |
| 108 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 109 | static int ieee80211_start_p2p_device(struct wiphy *wiphy, |
| 110 | struct wireless_dev *wdev) |
| 111 | { |
Luciano Coelho | b6a5501 | 2014-02-27 11:07:21 +0200 | [diff] [blame] | 112 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 113 | int ret; |
| 114 | |
| 115 | mutex_lock(&sdata->local->chanctx_mtx); |
| 116 | ret = ieee80211_check_combinations(sdata, NULL, 0, 0); |
| 117 | mutex_unlock(&sdata->local->chanctx_mtx); |
| 118 | if (ret < 0) |
| 119 | return ret; |
| 120 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 121 | return ieee80211_do_open(wdev, true); |
| 122 | } |
| 123 | |
| 124 | static void ieee80211_stop_p2p_device(struct wiphy *wiphy, |
| 125 | struct wireless_dev *wdev) |
| 126 | { |
| 127 | ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev)); |
| 128 | } |
| 129 | |
Simon Wunderlich | b53be79 | 2011-11-18 14:20:44 +0100 | [diff] [blame] | 130 | static int ieee80211_set_noack_map(struct wiphy *wiphy, |
| 131 | struct net_device *dev, |
| 132 | u16 noack_map) |
| 133 | { |
| 134 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 135 | |
| 136 | sdata->noack_map = noack_map; |
| 137 | return 0; |
| 138 | } |
| 139 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 140 | static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 141 | u8 key_idx, bool pairwise, const u8 *mac_addr, |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 142 | struct key_params *params) |
| 143 | { |
Johannes Berg | 26a5845 | 2010-08-27 12:35:55 +0200 | [diff] [blame] | 144 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 145 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 146 | struct sta_info *sta = NULL; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 147 | const struct ieee80211_cipher_scheme *cs = NULL; |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 148 | struct ieee80211_key *key; |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 149 | int err; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 150 | |
Johannes Berg | 26a5845 | 2010-08-27 12:35:55 +0200 | [diff] [blame] | 151 | if (!ieee80211_sdata_running(sdata)) |
Johannes Berg | ad0e2b5 | 2010-06-01 10:19:19 +0200 | [diff] [blame] | 152 | return -ENETDOWN; |
| 153 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 154 | /* reject WEP and TKIP keys if WEP failed to initialize */ |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 155 | switch (params->cipher) { |
| 156 | case WLAN_CIPHER_SUITE_WEP40: |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 157 | case WLAN_CIPHER_SUITE_TKIP: |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 158 | case WLAN_CIPHER_SUITE_WEP104: |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 159 | if (IS_ERR(local->wep_tx_tfm)) |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 160 | return -EINVAL; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 161 | break; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 162 | case WLAN_CIPHER_SUITE_CCMP: |
| 163 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 164 | case WLAN_CIPHER_SUITE_GCMP: |
| 165 | break; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 166 | default: |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 167 | cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type); |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 168 | break; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 171 | key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len, |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 172 | params->key, params->seq_len, params->seq, |
| 173 | cs); |
Ben Hutchings | 1ac62ba | 2010-08-01 17:37:03 +0100 | [diff] [blame] | 174 | if (IS_ERR(key)) |
| 175 | return PTR_ERR(key); |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 176 | |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 177 | if (pairwise) |
| 178 | key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE; |
| 179 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 180 | mutex_lock(&local->sta_mtx); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 181 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 182 | if (mac_addr) { |
Thomas Pedersen | ff973af | 2011-05-03 16:57:12 -0700 | [diff] [blame] | 183 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 184 | sta = sta_info_get(sdata, mac_addr); |
| 185 | else |
| 186 | sta = sta_info_get_bss(sdata, mac_addr); |
Johannes Berg | 1626e0f | 2013-01-11 14:34:25 +0100 | [diff] [blame] | 187 | /* |
| 188 | * The ASSOC test makes sure the driver is ready to |
| 189 | * receive the key. When wpa_supplicant has roamed |
| 190 | * using FT, it attempts to set the key before |
| 191 | * association has completed, this rejects that attempt |
| 192 | * so it will set the key again after assocation. |
| 193 | * |
| 194 | * TODO: accept the key if we have a station entry and |
| 195 | * add it to the device after the station. |
| 196 | */ |
| 197 | if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) { |
Johannes Berg | 79cf2df | 2013-03-06 22:53:52 +0100 | [diff] [blame] | 198 | ieee80211_key_free_unused(key); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 199 | err = -ENOENT; |
| 200 | goto out_unlock; |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 201 | } |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 202 | } |
| 203 | |
Johannes Berg | e548c49 | 2012-09-04 17:08:23 +0200 | [diff] [blame] | 204 | switch (sdata->vif.type) { |
| 205 | case NL80211_IFTYPE_STATION: |
| 206 | if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED) |
| 207 | key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; |
| 208 | break; |
| 209 | case NL80211_IFTYPE_AP: |
| 210 | case NL80211_IFTYPE_AP_VLAN: |
| 211 | /* Keys without a station are used for TX only */ |
| 212 | if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP)) |
| 213 | key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; |
| 214 | break; |
| 215 | case NL80211_IFTYPE_ADHOC: |
| 216 | /* no MFP (yet) */ |
| 217 | break; |
| 218 | case NL80211_IFTYPE_MESH_POINT: |
| 219 | #ifdef CONFIG_MAC80211_MESH |
| 220 | if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE) |
| 221 | key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; |
| 222 | break; |
| 223 | #endif |
| 224 | case NL80211_IFTYPE_WDS: |
| 225 | case NL80211_IFTYPE_MONITOR: |
| 226 | case NL80211_IFTYPE_P2P_DEVICE: |
| 227 | case NL80211_IFTYPE_UNSPECIFIED: |
| 228 | case NUM_NL80211_IFTYPES: |
| 229 | case NL80211_IFTYPE_P2P_CLIENT: |
| 230 | case NL80211_IFTYPE_P2P_GO: |
| 231 | /* shouldn't happen */ |
| 232 | WARN_ON_ONCE(1); |
| 233 | break; |
| 234 | } |
| 235 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 236 | if (sta) |
| 237 | sta->cipher_scheme = cs; |
| 238 | |
Johannes Berg | 3ffc2a9 | 2010-08-27 14:26:52 +0300 | [diff] [blame] | 239 | err = ieee80211_key_link(key, sdata, sta); |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 240 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 241 | out_unlock: |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 242 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 243 | |
| 244 | return err; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 248 | u8 key_idx, bool pairwise, const u8 *mac_addr) |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 249 | { |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 250 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 251 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 252 | struct sta_info *sta; |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 253 | struct ieee80211_key *key = NULL; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 254 | int ret; |
| 255 | |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 256 | mutex_lock(&local->sta_mtx); |
| 257 | mutex_lock(&local->key_mtx); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 258 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 259 | if (mac_addr) { |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 260 | ret = -ENOENT; |
| 261 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 262 | sta = sta_info_get_bss(sdata, mac_addr); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 263 | if (!sta) |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 264 | goto out_unlock; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 265 | |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 266 | if (pairwise) |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 267 | key = key_mtx_dereference(local, sta->ptk[key_idx]); |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 268 | else |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 269 | key = key_mtx_dereference(local, sta->gtk[key_idx]); |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 270 | } else |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 271 | key = key_mtx_dereference(local, sdata->keys[key_idx]); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 272 | |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 273 | if (!key) { |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 274 | ret = -ENOENT; |
| 275 | goto out_unlock; |
| 276 | } |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 277 | |
Johannes Berg | 3b8d9c2 | 2013-03-06 22:58:23 +0100 | [diff] [blame] | 278 | ieee80211_key_free(key, true); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 279 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 280 | ret = 0; |
| 281 | out_unlock: |
Johannes Berg | 5c0c364 | 2011-05-12 14:31:49 +0200 | [diff] [blame] | 282 | mutex_unlock(&local->key_mtx); |
| 283 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 284 | |
| 285 | return ret; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 286 | } |
| 287 | |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 288 | static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 289 | u8 key_idx, bool pairwise, const u8 *mac_addr, |
| 290 | void *cookie, |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 291 | void (*callback)(void *cookie, |
| 292 | struct key_params *params)) |
| 293 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 294 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 295 | struct sta_info *sta = NULL; |
| 296 | u8 seq[6] = {0}; |
| 297 | struct key_params params; |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 298 | struct ieee80211_key *key = NULL; |
Johannes Berg | aba83a0b | 2011-07-06 21:59:39 +0200 | [diff] [blame] | 299 | u64 pn64; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 300 | u32 iv32; |
| 301 | u16 iv16; |
| 302 | int err = -ENOENT; |
| 303 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 304 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 305 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 306 | rcu_read_lock(); |
| 307 | |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 308 | if (mac_addr) { |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 309 | sta = sta_info_get_bss(sdata, mac_addr); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 310 | if (!sta) |
| 311 | goto out; |
| 312 | |
Max Stepanov | 354e159 | 2013-12-08 13:30:52 +0200 | [diff] [blame] | 313 | if (pairwise && key_idx < NUM_DEFAULT_KEYS) |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 314 | key = rcu_dereference(sta->ptk[key_idx]); |
Max Stepanov | 31f1f4e | 2013-12-08 13:31:29 +0200 | [diff] [blame] | 315 | else if (!pairwise && |
| 316 | key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) |
Johannes Berg | a3836e0 | 2011-05-12 15:11:37 +0200 | [diff] [blame] | 317 | key = rcu_dereference(sta->gtk[key_idx]); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 318 | } else |
Johannes Berg | a3836e0 | 2011-05-12 15:11:37 +0200 | [diff] [blame] | 319 | key = rcu_dereference(sdata->keys[key_idx]); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 320 | |
| 321 | if (!key) |
| 322 | goto out; |
| 323 | |
| 324 | memset(¶ms, 0, sizeof(params)); |
| 325 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 326 | params.cipher = key->conf.cipher; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 327 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 328 | switch (key->conf.cipher) { |
| 329 | case WLAN_CIPHER_SUITE_TKIP: |
Harvey Harrison | b0f76b3 | 2008-05-14 16:26:19 -0700 | [diff] [blame] | 330 | iv32 = key->u.tkip.tx.iv32; |
| 331 | iv16 = key->u.tkip.tx.iv16; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 332 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 333 | if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) |
| 334 | drv_get_tkip_seq(sdata->local, |
| 335 | key->conf.hw_key_idx, |
| 336 | &iv32, &iv16); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 337 | |
| 338 | seq[0] = iv16 & 0xff; |
| 339 | seq[1] = (iv16 >> 8) & 0xff; |
| 340 | seq[2] = iv32 & 0xff; |
| 341 | seq[3] = (iv32 >> 8) & 0xff; |
| 342 | seq[4] = (iv32 >> 16) & 0xff; |
| 343 | seq[5] = (iv32 >> 24) & 0xff; |
| 344 | params.seq = seq; |
| 345 | params.seq_len = 6; |
| 346 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 347 | case WLAN_CIPHER_SUITE_CCMP: |
Johannes Berg | aba83a0b | 2011-07-06 21:59:39 +0200 | [diff] [blame] | 348 | pn64 = atomic64_read(&key->u.ccmp.tx_pn); |
| 349 | seq[0] = pn64; |
| 350 | seq[1] = pn64 >> 8; |
| 351 | seq[2] = pn64 >> 16; |
| 352 | seq[3] = pn64 >> 24; |
| 353 | seq[4] = pn64 >> 32; |
| 354 | seq[5] = pn64 >> 40; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 355 | params.seq = seq; |
| 356 | params.seq_len = 6; |
| 357 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 358 | case WLAN_CIPHER_SUITE_AES_CMAC: |
Johannes Berg | 75396ae | 2011-07-06 22:00:35 +0200 | [diff] [blame] | 359 | pn64 = atomic64_read(&key->u.aes_cmac.tx_pn); |
| 360 | seq[0] = pn64; |
| 361 | seq[1] = pn64 >> 8; |
| 362 | seq[2] = pn64 >> 16; |
| 363 | seq[3] = pn64 >> 24; |
| 364 | seq[4] = pn64 >> 32; |
| 365 | seq[5] = pn64 >> 40; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 366 | params.seq = seq; |
| 367 | params.seq_len = 6; |
| 368 | break; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | params.key = key->conf.key; |
| 372 | params.key_len = key->conf.keylen; |
| 373 | |
| 374 | callback(cookie, ¶ms); |
| 375 | err = 0; |
| 376 | |
| 377 | out: |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 378 | rcu_read_unlock(); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 379 | return err; |
| 380 | } |
| 381 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 382 | static int ieee80211_config_default_key(struct wiphy *wiphy, |
| 383 | struct net_device *dev, |
Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 384 | u8 key_idx, bool uni, |
| 385 | bool multi) |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 386 | { |
Johannes Berg | ad0e2b5 | 2010-06-01 10:19:19 +0200 | [diff] [blame] | 387 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 388 | |
Johannes Berg | f7e0104 | 2010-12-09 19:49:02 +0100 | [diff] [blame] | 389 | ieee80211_set_default_key(sdata, key_idx, uni, multi); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 390 | |
| 391 | return 0; |
| 392 | } |
| 393 | |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 394 | static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy, |
| 395 | struct net_device *dev, |
| 396 | u8 key_idx) |
| 397 | { |
Johannes Berg | 66c5242 | 2010-07-22 13:58:51 +0200 | [diff] [blame] | 398 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 399 | |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 400 | ieee80211_set_default_mgmt_key(sdata, key_idx); |
| 401 | |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 402 | return 0; |
| 403 | } |
| 404 | |
Thomas Pedersen | 6b62bf3 | 2012-03-05 15:31:48 -0800 | [diff] [blame] | 405 | void sta_set_rate_info_tx(struct sta_info *sta, |
| 406 | const struct ieee80211_tx_rate *rate, |
| 407 | struct rate_info *rinfo) |
| 408 | { |
| 409 | rinfo->flags = 0; |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 410 | if (rate->flags & IEEE80211_TX_RC_MCS) { |
Thomas Pedersen | 6b62bf3 | 2012-03-05 15:31:48 -0800 | [diff] [blame] | 411 | rinfo->flags |= RATE_INFO_FLAGS_MCS; |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 412 | rinfo->mcs = rate->idx; |
| 413 | } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) { |
| 414 | rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS; |
| 415 | rinfo->mcs = ieee80211_rate_get_vht_mcs(rate); |
| 416 | rinfo->nss = ieee80211_rate_get_vht_nss(rate); |
| 417 | } else { |
| 418 | struct ieee80211_supported_band *sband; |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 419 | int shift = ieee80211_vif_get_shift(&sta->sdata->vif); |
| 420 | u16 brate; |
| 421 | |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 422 | sband = sta->local->hw.wiphy->bands[ |
| 423 | ieee80211_get_sdata_band(sta->sdata)]; |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 424 | brate = sband->bitrates[rate->idx].bitrate; |
| 425 | rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift); |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 426 | } |
Thomas Pedersen | 6b62bf3 | 2012-03-05 15:31:48 -0800 | [diff] [blame] | 427 | if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) |
| 428 | rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH; |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 429 | if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH) |
| 430 | rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH; |
| 431 | if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH) |
| 432 | rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH; |
Thomas Pedersen | 6b62bf3 | 2012-03-05 15:31:48 -0800 | [diff] [blame] | 433 | if (rate->flags & IEEE80211_TX_RC_SHORT_GI) |
| 434 | rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI; |
Thomas Pedersen | 6b62bf3 | 2012-03-05 15:31:48 -0800 | [diff] [blame] | 435 | } |
| 436 | |
Saravana | 003e676 | 2012-11-28 18:29:38 +0530 | [diff] [blame] | 437 | void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo) |
| 438 | { |
| 439 | rinfo->flags = 0; |
| 440 | |
| 441 | if (sta->last_rx_rate_flag & RX_FLAG_HT) { |
| 442 | rinfo->flags |= RATE_INFO_FLAGS_MCS; |
| 443 | rinfo->mcs = sta->last_rx_rate_idx; |
| 444 | } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) { |
| 445 | rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS; |
| 446 | rinfo->nss = sta->last_rx_rate_vht_nss; |
| 447 | rinfo->mcs = sta->last_rx_rate_idx; |
| 448 | } else { |
| 449 | struct ieee80211_supported_band *sband; |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 450 | int shift = ieee80211_vif_get_shift(&sta->sdata->vif); |
| 451 | u16 brate; |
Saravana | 003e676 | 2012-11-28 18:29:38 +0530 | [diff] [blame] | 452 | |
| 453 | sband = sta->local->hw.wiphy->bands[ |
| 454 | ieee80211_get_sdata_band(sta->sdata)]; |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 455 | brate = sband->bitrates[sta->last_rx_rate_idx].bitrate; |
| 456 | rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift); |
Saravana | 003e676 | 2012-11-28 18:29:38 +0530 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | if (sta->last_rx_rate_flag & RX_FLAG_40MHZ) |
| 460 | rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH; |
| 461 | if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI) |
| 462 | rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI; |
Emmanuel Grumbach | 1b8d242 | 2014-02-05 16:37:11 +0200 | [diff] [blame] | 463 | if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ) |
Saravana | 003e676 | 2012-11-28 18:29:38 +0530 | [diff] [blame] | 464 | rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH; |
Emmanuel Grumbach | 1b8d242 | 2014-02-05 16:37:11 +0200 | [diff] [blame] | 465 | if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80P80MHZ) |
Saravana | 003e676 | 2012-11-28 18:29:38 +0530 | [diff] [blame] | 466 | rinfo->flags |= RATE_INFO_FLAGS_80P80_MHZ_WIDTH; |
Emmanuel Grumbach | 1b8d242 | 2014-02-05 16:37:11 +0200 | [diff] [blame] | 467 | if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ) |
Saravana | 003e676 | 2012-11-28 18:29:38 +0530 | [diff] [blame] | 468 | rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH; |
| 469 | } |
| 470 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 471 | static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 472 | int idx, u8 *mac, struct station_info *sinfo) |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 473 | { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 474 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Victor Goldenshtein | 66572cf | 2012-06-21 10:56:46 +0300 | [diff] [blame] | 475 | struct ieee80211_local *local = sdata->local; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 476 | struct sta_info *sta; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 477 | int ret = -ENOENT; |
| 478 | |
Victor Goldenshtein | 66572cf | 2012-06-21 10:56:46 +0300 | [diff] [blame] | 479 | mutex_lock(&local->sta_mtx); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 480 | |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 481 | sta = sta_info_get_by_idx(sdata, idx); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 482 | if (sta) { |
| 483 | ret = 0; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 484 | memcpy(mac, sta->sta.addr, ETH_ALEN); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 485 | sta_set_sinfo(sta, sinfo); |
| 486 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 487 | |
Victor Goldenshtein | 66572cf | 2012-06-21 10:56:46 +0300 | [diff] [blame] | 488 | mutex_unlock(&local->sta_mtx); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 489 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 490 | return ret; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 491 | } |
| 492 | |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 493 | static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev, |
| 494 | int idx, struct survey_info *survey) |
| 495 | { |
| 496 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 497 | |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 498 | return drv_get_survey(local, idx, survey); |
| 499 | } |
| 500 | |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 501 | static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 502 | const u8 *mac, struct station_info *sinfo) |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 503 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 504 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Victor Goldenshtein | 66572cf | 2012-06-21 10:56:46 +0300 | [diff] [blame] | 505 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 506 | struct sta_info *sta; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 507 | int ret = -ENOENT; |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 508 | |
Victor Goldenshtein | 66572cf | 2012-06-21 10:56:46 +0300 | [diff] [blame] | 509 | mutex_lock(&local->sta_mtx); |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 510 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 511 | sta = sta_info_get_bss(sdata, mac); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 512 | if (sta) { |
| 513 | ret = 0; |
| 514 | sta_set_sinfo(sta, sinfo); |
| 515 | } |
| 516 | |
Victor Goldenshtein | 66572cf | 2012-06-21 10:56:46 +0300 | [diff] [blame] | 517 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 518 | |
| 519 | return ret; |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 520 | } |
| 521 | |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 522 | static int ieee80211_set_monitor_channel(struct wiphy *wiphy, |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 523 | struct cfg80211_chan_def *chandef) |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 524 | { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 525 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 526 | struct ieee80211_sub_if_data *sdata; |
| 527 | int ret = 0; |
| 528 | |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 529 | if (cfg80211_chandef_identical(&local->monitor_chandef, chandef)) |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 530 | return 0; |
| 531 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 532 | mutex_lock(&local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 533 | mutex_lock(&local->iflist_mtx); |
| 534 | if (local->use_chanctx) { |
| 535 | sdata = rcu_dereference_protected( |
| 536 | local->monitor_sdata, |
| 537 | lockdep_is_held(&local->iflist_mtx)); |
| 538 | if (sdata) { |
| 539 | ieee80211_vif_release_channel(sdata); |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 540 | ret = ieee80211_vif_use_channel(sdata, chandef, |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 541 | IEEE80211_CHANCTX_EXCLUSIVE); |
| 542 | } |
| 543 | } else if (local->open_count == local->monitors) { |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 544 | local->_oper_chandef = *chandef; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 545 | ieee80211_hw_config(local, 0); |
| 546 | } |
| 547 | |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 548 | if (ret == 0) |
| 549 | local->monitor_chandef = *chandef; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 550 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 551 | mutex_unlock(&local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 552 | |
| 553 | return ret; |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 554 | } |
| 555 | |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 556 | static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata, |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 557 | const u8 *resp, size_t resp_len, |
| 558 | const struct ieee80211_csa_settings *csa) |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 559 | { |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 560 | struct probe_resp *new, *old; |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 561 | |
| 562 | if (!resp || !resp_len) |
Sujith Manoharan | aba4e6f | 2012-08-22 14:21:07 +0530 | [diff] [blame] | 563 | return 1; |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 564 | |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 565 | old = sdata_dereference(sdata->u.ap.probe_resp, sdata); |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 566 | |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 567 | new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL); |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 568 | if (!new) |
| 569 | return -ENOMEM; |
| 570 | |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 571 | new->len = resp_len; |
| 572 | memcpy(new->data, resp, resp_len); |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 573 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 574 | if (csa) |
| 575 | memcpy(new->csa_counter_offsets, csa->counter_offsets_presp, |
| 576 | csa->n_counter_offsets_presp * |
| 577 | sizeof(new->csa_counter_offsets[0])); |
| 578 | |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 579 | rcu_assign_pointer(sdata->u.ap.probe_resp, new); |
Eyal Shapira | aa7a008 | 2012-08-06 14:26:16 +0300 | [diff] [blame] | 580 | if (old) |
| 581 | kfree_rcu(old, rcu_head); |
Arik Nemtsov | 0294582 | 2011-11-10 11:28:57 +0200 | [diff] [blame] | 582 | |
| 583 | return 0; |
| 584 | } |
| 585 | |
Luciano Coelho | 0ae0796 | 2013-12-08 09:42:25 +0200 | [diff] [blame] | 586 | static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata, |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 587 | struct cfg80211_beacon_data *params, |
| 588 | const struct ieee80211_csa_settings *csa) |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 589 | { |
| 590 | struct beacon_data *new, *old; |
| 591 | int new_head_len, new_tail_len; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 592 | int size, err; |
| 593 | u32 changed = BSS_CHANGED_BEACON; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 594 | |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 595 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 596 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 597 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 598 | /* Need to have a beacon head if we don't have one yet */ |
| 599 | if (!params->head && !old) |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 600 | return -EINVAL; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 601 | |
| 602 | /* new or old head? */ |
| 603 | if (params->head) |
| 604 | new_head_len = params->head_len; |
| 605 | else |
| 606 | new_head_len = old->head_len; |
| 607 | |
| 608 | /* new or old tail? */ |
| 609 | if (params->tail || !old) |
| 610 | /* params->tail_len will be zero for !params->tail */ |
| 611 | new_tail_len = params->tail_len; |
| 612 | else |
| 613 | new_tail_len = old->tail_len; |
| 614 | |
| 615 | size = sizeof(*new) + new_head_len + new_tail_len; |
| 616 | |
| 617 | new = kzalloc(size, GFP_KERNEL); |
| 618 | if (!new) |
| 619 | return -ENOMEM; |
| 620 | |
| 621 | /* start filling the new info now */ |
| 622 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 623 | /* |
| 624 | * pointers go into the block we allocated, |
| 625 | * memory is | beacon_data | head | tail | |
| 626 | */ |
| 627 | new->head = ((u8 *) new) + sizeof(*new); |
| 628 | new->tail = new->head + new_head_len; |
| 629 | new->head_len = new_head_len; |
| 630 | new->tail_len = new_tail_len; |
| 631 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 632 | if (csa) { |
| 633 | new->csa_current_counter = csa->count; |
| 634 | memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon, |
| 635 | csa->n_counter_offsets_beacon * |
| 636 | sizeof(new->csa_counter_offsets[0])); |
| 637 | } |
| 638 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 639 | /* copy in head */ |
| 640 | if (params->head) |
| 641 | memcpy(new->head, params->head, new_head_len); |
| 642 | else |
| 643 | memcpy(new->head, old->head, new_head_len); |
| 644 | |
| 645 | /* copy in optional tail */ |
| 646 | if (params->tail) |
| 647 | memcpy(new->tail, params->tail, new_tail_len); |
| 648 | else |
| 649 | if (old) |
| 650 | memcpy(new->tail, old->tail, new_tail_len); |
| 651 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 652 | err = ieee80211_set_probe_resp(sdata, params->probe_resp, |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 653 | params->probe_resp_len, csa); |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 654 | if (err < 0) |
| 655 | return err; |
| 656 | if (err == 0) |
| 657 | changed |= BSS_CHANGED_AP_PROBE_RESP; |
Johannes Berg | 19885c4 | 2010-02-05 11:45:06 +0100 | [diff] [blame] | 658 | |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 659 | rcu_assign_pointer(sdata->u.ap.beacon, new); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 660 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 661 | if (old) |
| 662 | kfree_rcu(old, rcu_head); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 663 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 664 | return changed; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 665 | } |
| 666 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 667 | static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev, |
| 668 | struct cfg80211_ap_settings *params) |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 669 | { |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 670 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 671 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 672 | struct beacon_data *old; |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 673 | struct ieee80211_sub_if_data *vlan; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 674 | u32 changed = BSS_CHANGED_BEACON_INT | |
| 675 | BSS_CHANGED_BEACON_ENABLED | |
| 676 | BSS_CHANGED_BEACON | |
Johannes Berg | 339afbf | 2012-11-14 15:21:17 +0100 | [diff] [blame] | 677 | BSS_CHANGED_SSID | |
| 678 | BSS_CHANGED_P2P_PS; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 679 | int err; |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 680 | |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 681 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 682 | if (old) |
| 683 | return -EALREADY; |
| 684 | |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 685 | /* TODO: make hostapd tell us what it wants */ |
| 686 | sdata->smps_mode = IEEE80211_SMPS_OFF; |
| 687 | sdata->needed_rx_chains = sdata->local->rx_chains; |
| 688 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 689 | mutex_lock(&local->mtx); |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 690 | err = ieee80211_vif_use_channel(sdata, ¶ms->chandef, |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 691 | IEEE80211_CHANCTX_SHARED); |
Michal Kazior | 4e141da | 2014-03-05 13:14:08 +0100 | [diff] [blame] | 692 | if (!err) |
| 693 | ieee80211_vif_copy_chanctx_to_vlans(sdata, false); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 694 | mutex_unlock(&local->mtx); |
Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 695 | if (err) |
| 696 | return err; |
| 697 | |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 698 | /* |
| 699 | * Apply control port protocol, this allows us to |
| 700 | * not encrypt dynamic WEP control frames. |
| 701 | */ |
| 702 | sdata->control_port_protocol = params->crypto.control_port_ethertype; |
| 703 | sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 704 | sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local, |
| 705 | ¶ms->crypto, |
| 706 | sdata->vif.type); |
| 707 | |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 708 | list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) { |
| 709 | vlan->control_port_protocol = |
| 710 | params->crypto.control_port_ethertype; |
| 711 | vlan->control_port_no_encrypt = |
| 712 | params->crypto.control_port_no_encrypt; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 713 | vlan->encrypt_headroom = |
| 714 | ieee80211_cs_headroom(sdata->local, |
| 715 | ¶ms->crypto, |
| 716 | vlan->vif.type); |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 717 | } |
| 718 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 719 | sdata->vif.bss_conf.beacon_int = params->beacon_interval; |
| 720 | sdata->vif.bss_conf.dtim_period = params->dtim_period; |
Johannes Berg | d6a8322 | 2012-12-14 14:06:28 +0100 | [diff] [blame] | 721 | sdata->vif.bss_conf.enable_beacon = true; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 722 | |
| 723 | sdata->vif.bss_conf.ssid_len = params->ssid_len; |
| 724 | if (params->ssid_len) |
| 725 | memcpy(sdata->vif.bss_conf.ssid, params->ssid, |
| 726 | params->ssid_len); |
| 727 | sdata->vif.bss_conf.hidden_ssid = |
| 728 | (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE); |
| 729 | |
Janusz Dziedzic | 67baf66 | 2013-03-21 15:47:56 +0100 | [diff] [blame] | 730 | memset(&sdata->vif.bss_conf.p2p_noa_attr, 0, |
| 731 | sizeof(sdata->vif.bss_conf.p2p_noa_attr)); |
| 732 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow = |
| 733 | params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK; |
| 734 | if (params->p2p_opp_ps) |
| 735 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |= |
| 736 | IEEE80211_P2P_OPPPS_ENABLE_BIT; |
Johannes Berg | 339afbf | 2012-11-14 15:21:17 +0100 | [diff] [blame] | 737 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 738 | err = ieee80211_assign_beacon(sdata, ¶ms->beacon, NULL); |
Emmanuel Grumbach | 0297ea1 | 2014-01-27 11:07:42 +0200 | [diff] [blame] | 739 | if (err < 0) { |
| 740 | ieee80211_vif_release_channel(sdata); |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 741 | return err; |
Emmanuel Grumbach | 0297ea1 | 2014-01-27 11:07:42 +0200 | [diff] [blame] | 742 | } |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 743 | changed |= err; |
| 744 | |
Johannes Berg | 1041638 | 2012-10-19 15:44:42 +0200 | [diff] [blame] | 745 | err = drv_start_ap(sdata->local, sdata); |
| 746 | if (err) { |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 747 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 748 | |
Johannes Berg | 1041638 | 2012-10-19 15:44:42 +0200 | [diff] [blame] | 749 | if (old) |
| 750 | kfree_rcu(old, rcu_head); |
| 751 | RCU_INIT_POINTER(sdata->u.ap.beacon, NULL); |
Emmanuel Grumbach | 0297ea1 | 2014-01-27 11:07:42 +0200 | [diff] [blame] | 752 | ieee80211_vif_release_channel(sdata); |
Johannes Berg | 1041638 | 2012-10-19 15:44:42 +0200 | [diff] [blame] | 753 | return err; |
| 754 | } |
| 755 | |
Thomas Pedersen | 057d5f4 | 2013-12-19 10:25:15 -0800 | [diff] [blame] | 756 | ieee80211_recalc_dtim(local, sdata); |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 757 | ieee80211_bss_info_change_notify(sdata, changed); |
| 758 | |
Johannes Berg | 3edaf3e | 2012-04-03 10:24:00 +0200 | [diff] [blame] | 759 | netif_carrier_on(dev); |
| 760 | list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) |
| 761 | netif_carrier_on(vlan->dev); |
| 762 | |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 763 | return 0; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 764 | } |
| 765 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 766 | static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 767 | struct cfg80211_beacon_data *params) |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 768 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 769 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 770 | struct beacon_data *old; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 771 | int err; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 772 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 773 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Michal Kazior | dbd7285 | 2014-01-29 07:56:21 +0100 | [diff] [blame] | 774 | sdata_assert_lock(sdata); |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 775 | |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 776 | /* don't allow changing the beacon while CSA is in place - offset |
| 777 | * of channel switch counter may change |
| 778 | */ |
| 779 | if (sdata->vif.csa_active) |
| 780 | return -EBUSY; |
| 781 | |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 782 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 783 | if (!old) |
| 784 | return -ENOENT; |
| 785 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 786 | err = ieee80211_assign_beacon(sdata, params, NULL); |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 787 | if (err < 0) |
| 788 | return err; |
| 789 | ieee80211_bss_info_change_notify(sdata, err); |
| 790 | return 0; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 791 | } |
| 792 | |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 793 | static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev) |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 794 | { |
Johannes Berg | 7b20b8e | 2012-10-25 19:02:42 +0200 | [diff] [blame] | 795 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 796 | struct ieee80211_sub_if_data *vlan; |
| 797 | struct ieee80211_local *local = sdata->local; |
| 798 | struct beacon_data *old_beacon; |
| 799 | struct probe_resp *old_probe_resp; |
Janusz Dziedzic | d2859df | 2013-11-06 13:55:51 +0100 | [diff] [blame] | 800 | struct cfg80211_chan_def chandef; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 801 | |
Michal Kazior | dbd7285 | 2014-01-29 07:56:21 +0100 | [diff] [blame] | 802 | sdata_assert_lock(sdata); |
| 803 | |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 804 | old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata); |
Johannes Berg | 7b20b8e | 2012-10-25 19:02:42 +0200 | [diff] [blame] | 805 | if (!old_beacon) |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 806 | return -ENOENT; |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 807 | old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 808 | |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 809 | /* abort any running channel switch */ |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 810 | mutex_lock(&local->mtx); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 811 | sdata->vif.csa_active = false; |
Luciano Coelho | a46992b | 2014-06-13 16:30:07 +0300 | [diff] [blame] | 812 | if (sdata->csa_block_tx) { |
| 813 | ieee80211_wake_vif_queues(local, sdata, |
| 814 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 815 | sdata->csa_block_tx = false; |
| 816 | } |
| 817 | |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 818 | mutex_unlock(&local->mtx); |
| 819 | |
Simon Wunderlich | 1f3b8a2 | 2013-11-21 18:19:53 +0100 | [diff] [blame] | 820 | kfree(sdata->u.ap.next_beacon); |
| 821 | sdata->u.ap.next_beacon = NULL; |
| 822 | |
Johannes Berg | 7b20b8e | 2012-10-25 19:02:42 +0200 | [diff] [blame] | 823 | /* turn off carrier for this interface and dependent VLANs */ |
Johannes Berg | 3edaf3e | 2012-04-03 10:24:00 +0200 | [diff] [blame] | 824 | list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) |
| 825 | netif_carrier_off(vlan->dev); |
| 826 | netif_carrier_off(dev); |
| 827 | |
Johannes Berg | 7b20b8e | 2012-10-25 19:02:42 +0200 | [diff] [blame] | 828 | /* remove beacon and probe response */ |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 829 | RCU_INIT_POINTER(sdata->u.ap.beacon, NULL); |
Johannes Berg | 7b20b8e | 2012-10-25 19:02:42 +0200 | [diff] [blame] | 830 | RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL); |
| 831 | kfree_rcu(old_beacon, rcu_head); |
| 832 | if (old_probe_resp) |
| 833 | kfree_rcu(old_probe_resp, rcu_head); |
Emmanuel Grumbach | 8ffcc70 | 2014-01-23 14:28:16 +0200 | [diff] [blame] | 834 | sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF; |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 835 | |
Johannes Berg | e716251 | 2013-12-04 23:18:37 +0100 | [diff] [blame] | 836 | __sta_info_flush(sdata, true); |
Johannes Berg | 7907c7d | 2013-12-04 23:47:09 +0100 | [diff] [blame] | 837 | ieee80211_free_keys(sdata, true); |
Johannes Berg | 75de911 | 2012-12-14 14:56:03 +0100 | [diff] [blame] | 838 | |
Johannes Berg | d6a8322 | 2012-12-14 14:06:28 +0100 | [diff] [blame] | 839 | sdata->vif.bss_conf.enable_beacon = false; |
Marek Puzyniak | 0eabccd | 2013-04-10 13:47:45 +0200 | [diff] [blame] | 840 | sdata->vif.bss_conf.ssid_len = 0; |
Johannes Berg | d6a8322 | 2012-12-14 14:06:28 +0100 | [diff] [blame] | 841 | clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 842 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED); |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 843 | |
Simon Wunderlich | a6b368f | 2013-06-11 10:44:39 +0200 | [diff] [blame] | 844 | if (sdata->wdev.cac_started) { |
Janusz Dziedzic | d2859df | 2013-11-06 13:55:51 +0100 | [diff] [blame] | 845 | chandef = sdata->vif.bss_conf.chandef; |
Simon Wunderlich | a6b368f | 2013-06-11 10:44:39 +0200 | [diff] [blame] | 846 | cancel_delayed_work_sync(&sdata->dfs_cac_timer_work); |
Janusz Dziedzic | d2859df | 2013-11-06 13:55:51 +0100 | [diff] [blame] | 847 | cfg80211_cac_event(sdata->dev, &chandef, |
| 848 | NL80211_RADAR_CAC_ABORTED, |
Simon Wunderlich | a6b368f | 2013-06-11 10:44:39 +0200 | [diff] [blame] | 849 | GFP_KERNEL); |
| 850 | } |
| 851 | |
Johannes Berg | 1041638 | 2012-10-19 15:44:42 +0200 | [diff] [blame] | 852 | drv_stop_ap(sdata->local, sdata); |
| 853 | |
Johannes Berg | 7b20b8e | 2012-10-25 19:02:42 +0200 | [diff] [blame] | 854 | /* free all potentially still buffered bcast frames */ |
| 855 | local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf); |
| 856 | skb_queue_purge(&sdata->u.ap.ps.bc_buf); |
| 857 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 858 | mutex_lock(&local->mtx); |
Michal Kazior | 4e141da | 2014-03-05 13:14:08 +0100 | [diff] [blame] | 859 | ieee80211_vif_copy_chanctx_to_vlans(sdata, true); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 860 | ieee80211_vif_release_channel(sdata); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 861 | mutex_unlock(&local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 862 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 863 | return 0; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 864 | } |
| 865 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 866 | /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */ |
| 867 | struct iapp_layer2_update { |
| 868 | u8 da[ETH_ALEN]; /* broadcast */ |
| 869 | u8 sa[ETH_ALEN]; /* STA addr */ |
| 870 | __be16 len; /* 6 */ |
| 871 | u8 dsap; /* 0 */ |
| 872 | u8 ssap; /* 0 */ |
| 873 | u8 control; |
| 874 | u8 xid_info[3]; |
Eric Dumazet | bc10502 | 2010-06-03 03:21:52 -0700 | [diff] [blame] | 875 | } __packed; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 876 | |
| 877 | static void ieee80211_send_layer2_update(struct sta_info *sta) |
| 878 | { |
| 879 | struct iapp_layer2_update *msg; |
| 880 | struct sk_buff *skb; |
| 881 | |
| 882 | /* Send Level 2 Update Frame to update forwarding tables in layer 2 |
| 883 | * bridge devices */ |
| 884 | |
| 885 | skb = dev_alloc_skb(sizeof(*msg)); |
| 886 | if (!skb) |
| 887 | return; |
| 888 | msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg)); |
| 889 | |
| 890 | /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID) |
| 891 | * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */ |
| 892 | |
Johannes Berg | e83e654 | 2012-07-13 16:23:07 +0200 | [diff] [blame] | 893 | eth_broadcast_addr(msg->da); |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 894 | memcpy(msg->sa, sta->sta.addr, ETH_ALEN); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 895 | msg->len = htons(6); |
| 896 | msg->dsap = 0; |
| 897 | msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */ |
| 898 | msg->control = 0xaf; /* XID response lsb.1111F101. |
| 899 | * F=0 (no poll command; unsolicited frame) */ |
| 900 | msg->xid_info[0] = 0x81; /* XID format identifier */ |
| 901 | msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */ |
| 902 | msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */ |
| 903 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 904 | skb->dev = sta->sdata->dev; |
| 905 | skb->protocol = eth_type_trans(skb, sta->sdata->dev); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 906 | memset(skb->cb, 0, sizeof(skb->cb)); |
John W. Linville | 06ee1c2 | 2010-07-19 11:52:59 -0400 | [diff] [blame] | 907 | netif_rx_ni(skb); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 908 | } |
| 909 | |
Johannes Berg | d582cff | 2012-10-26 17:53:44 +0200 | [diff] [blame] | 910 | static int sta_apply_auth_flags(struct ieee80211_local *local, |
| 911 | struct sta_info *sta, |
| 912 | u32 mask, u32 set) |
| 913 | { |
| 914 | int ret; |
| 915 | |
| 916 | if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) && |
| 917 | set & BIT(NL80211_STA_FLAG_AUTHENTICATED) && |
| 918 | !test_sta_flag(sta, WLAN_STA_AUTH)) { |
| 919 | ret = sta_info_move_state(sta, IEEE80211_STA_AUTH); |
| 920 | if (ret) |
| 921 | return ret; |
| 922 | } |
| 923 | |
| 924 | if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) && |
| 925 | set & BIT(NL80211_STA_FLAG_ASSOCIATED) && |
| 926 | !test_sta_flag(sta, WLAN_STA_ASSOC)) { |
| 927 | ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC); |
| 928 | if (ret) |
| 929 | return ret; |
| 930 | } |
| 931 | |
| 932 | if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
| 933 | if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) |
| 934 | ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED); |
| 935 | else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 936 | ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC); |
| 937 | else |
| 938 | ret = 0; |
| 939 | if (ret) |
| 940 | return ret; |
| 941 | } |
| 942 | |
| 943 | if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) && |
| 944 | !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) && |
| 945 | test_sta_flag(sta, WLAN_STA_ASSOC)) { |
| 946 | ret = sta_info_move_state(sta, IEEE80211_STA_AUTH); |
| 947 | if (ret) |
| 948 | return ret; |
| 949 | } |
| 950 | |
| 951 | if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) && |
| 952 | !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) && |
| 953 | test_sta_flag(sta, WLAN_STA_AUTH)) { |
| 954 | ret = sta_info_move_state(sta, IEEE80211_STA_NONE); |
| 955 | if (ret) |
| 956 | return ret; |
| 957 | } |
| 958 | |
| 959 | return 0; |
| 960 | } |
| 961 | |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 962 | static int sta_apply_parameters(struct ieee80211_local *local, |
| 963 | struct sta_info *sta, |
| 964 | struct station_parameters *params) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 965 | { |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 966 | int ret = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 967 | struct ieee80211_supported_band *sband; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 968 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 969 | enum ieee80211_band band = ieee80211_get_sdata_band(sdata); |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 970 | u32 mask, set; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 971 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 972 | sband = local->hw.wiphy->bands[band]; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 973 | |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 974 | mask = params->sta_flags_mask; |
| 975 | set = params->sta_flags_set; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 976 | |
Johannes Berg | d582cff | 2012-10-26 17:53:44 +0200 | [diff] [blame] | 977 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 978 | /* |
| 979 | * In mesh mode, ASSOCIATED isn't part of the nl80211 |
| 980 | * API but must follow AUTHENTICATED for driver state. |
| 981 | */ |
| 982 | if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED)) |
| 983 | mask |= BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 984 | if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) |
| 985 | set |= BIT(NL80211_STA_FLAG_ASSOCIATED); |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 986 | } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) { |
| 987 | /* |
| 988 | * TDLS -- everything follows authorized, but |
| 989 | * only becoming authorized is possible, not |
| 990 | * going back |
| 991 | */ |
| 992 | if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
| 993 | set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) | |
| 994 | BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 995 | mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) | |
| 996 | BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 997 | } |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 998 | } |
| 999 | |
Johannes Berg | d582cff | 2012-10-26 17:53:44 +0200 | [diff] [blame] | 1000 | ret = sta_apply_auth_flags(local, sta, mask, set); |
| 1001 | if (ret) |
| 1002 | return ret; |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1003 | |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1004 | if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) { |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1005 | if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1006 | set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE); |
| 1007 | else |
| 1008 | clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE); |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | if (mask & BIT(NL80211_STA_FLAG_WME)) { |
Arik Nemtsov | 39df600 | 2011-06-27 23:58:45 +0300 | [diff] [blame] | 1012 | if (set & BIT(NL80211_STA_FLAG_WME)) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1013 | set_sta_flag(sta, WLAN_STA_WME); |
Arik Nemtsov | 39df600 | 2011-06-27 23:58:45 +0300 | [diff] [blame] | 1014 | sta->sta.wme = true; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1015 | } else { |
| 1016 | clear_sta_flag(sta, WLAN_STA_WME); |
| 1017 | sta->sta.wme = false; |
Arik Nemtsov | 39df600 | 2011-06-27 23:58:45 +0300 | [diff] [blame] | 1018 | } |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1019 | } |
| 1020 | |
| 1021 | if (mask & BIT(NL80211_STA_FLAG_MFP)) { |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1022 | if (set & BIT(NL80211_STA_FLAG_MFP)) |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1023 | set_sta_flag(sta, WLAN_STA_MFP); |
| 1024 | else |
| 1025 | clear_sta_flag(sta, WLAN_STA_MFP); |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1026 | } |
Javier Cardona | b39c48f | 2011-04-07 15:08:30 -0700 | [diff] [blame] | 1027 | |
Arik Nemtsov | 07ba55d | 2011-09-28 14:12:53 +0300 | [diff] [blame] | 1028 | if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) { |
Arik Nemtsov | 07ba55d | 2011-09-28 14:12:53 +0300 | [diff] [blame] | 1029 | if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1030 | set_sta_flag(sta, WLAN_STA_TDLS_PEER); |
| 1031 | else |
| 1032 | clear_sta_flag(sta, WLAN_STA_TDLS_PEER); |
Arik Nemtsov | 07ba55d | 2011-09-28 14:12:53 +0300 | [diff] [blame] | 1033 | } |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 1034 | |
Johannes Berg | 3b9ce80 | 2011-09-27 20:56:12 +0200 | [diff] [blame] | 1035 | if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) { |
| 1036 | sta->sta.uapsd_queues = params->uapsd_queues; |
| 1037 | sta->sta.max_sp = params->max_sp; |
| 1038 | } |
Eliad Peller | 9533b4a | 2011-08-23 14:37:47 +0300 | [diff] [blame] | 1039 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1040 | /* |
Johannes Berg | 51b50fb | 2009-05-24 16:42:30 +0200 | [diff] [blame] | 1041 | * cfg80211 validates this (1-2007) and allows setting the AID |
| 1042 | * only when creating a new station entry |
| 1043 | */ |
| 1044 | if (params->aid) |
| 1045 | sta->sta.aid = params->aid; |
| 1046 | |
| 1047 | /* |
Johannes Berg | ba23d20 | 2012-12-27 17:32:09 +0100 | [diff] [blame] | 1048 | * Some of the following updates would be racy if called on an |
| 1049 | * existing station, via ieee80211_change_station(). However, |
| 1050 | * all such changes are rejected by cfg80211 except for updates |
| 1051 | * changing the supported rates on an existing but not yet used |
| 1052 | * TDLS peer. |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1053 | */ |
| 1054 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1055 | if (params->listen_interval >= 0) |
| 1056 | sta->listen_interval = params->listen_interval; |
| 1057 | |
| 1058 | if (params->supported_rates) { |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 1059 | ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef, |
| 1060 | sband, params->supported_rates, |
| 1061 | params->supported_rates_len, |
| 1062 | &sta->sta.supp_rates[band]); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1063 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1064 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 1065 | if (params->ht_capa) |
Ben Greear | ef96a842 | 2011-11-18 11:32:00 -0800 | [diff] [blame] | 1066 | ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband, |
Johannes Berg | e1a0c6b | 2013-02-07 11:47:44 +0100 | [diff] [blame] | 1067 | params->ht_capa, sta); |
Jouni Malinen | 36aedc9 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 1068 | |
Mahesh Palivela | f461be3e | 2012-10-11 08:04:52 +0000 | [diff] [blame] | 1069 | if (params->vht_capa) |
| 1070 | ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband, |
Johannes Berg | 4a34215 | 2013-02-07 11:58:58 +0100 | [diff] [blame] | 1071 | params->vht_capa, sta); |
Mahesh Palivela | f461be3e | 2012-10-11 08:04:52 +0000 | [diff] [blame] | 1072 | |
Marek Kwaczynski | b1bce14a | 2014-02-03 14:44:44 +0100 | [diff] [blame] | 1073 | if (params->opmode_notif_used) { |
Marek Kwaczynski | b1bce14a | 2014-02-03 14:44:44 +0100 | [diff] [blame] | 1074 | /* returned value is only needed for rc update, but the |
| 1075 | * rc isn't initialized here yet, so ignore it |
| 1076 | */ |
| 1077 | __ieee80211_vht_handle_opmode(sdata, sta, |
| 1078 | params->opmode_notif, |
| 1079 | band, false); |
| 1080 | } |
| 1081 | |
Javier Cardona | 9c3990a | 2011-05-03 16:57:11 -0700 | [diff] [blame] | 1082 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
Yogesh Ashok Powar | 4daf50f | 2011-05-12 09:32:17 -0400 | [diff] [blame] | 1083 | #ifdef CONFIG_MAC80211_MESH |
Thomas Pedersen | 39886b6 | 2013-02-13 12:14:19 -0800 | [diff] [blame] | 1084 | u32 changed = 0; |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1085 | |
| 1086 | if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) { |
Javier Cardona | 9c3990a | 2011-05-03 16:57:11 -0700 | [diff] [blame] | 1087 | switch (params->plink_state) { |
Javier Cardona | 57cf804 | 2011-05-13 10:45:43 -0700 | [diff] [blame] | 1088 | case NL80211_PLINK_ESTAB: |
Marco Porsch | 1617bab | 2013-01-07 16:04:49 +0100 | [diff] [blame] | 1089 | if (sta->plink_state != NL80211_PLINK_ESTAB) |
| 1090 | changed = mesh_plink_inc_estab_count( |
| 1091 | sdata); |
| 1092 | sta->plink_state = params->plink_state; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1093 | |
| 1094 | ieee80211_mps_sta_status_update(sta); |
Thomas Pedersen | 39886b6 | 2013-02-13 12:14:19 -0800 | [diff] [blame] | 1095 | changed |= ieee80211_mps_set_sta_local_pm(sta, |
| 1096 | sdata->u.mesh.mshcfg.power_mode); |
Marco Porsch | 1617bab | 2013-01-07 16:04:49 +0100 | [diff] [blame] | 1097 | break; |
| 1098 | case NL80211_PLINK_LISTEN: |
Javier Cardona | 57cf804 | 2011-05-13 10:45:43 -0700 | [diff] [blame] | 1099 | case NL80211_PLINK_BLOCKED: |
Marco Porsch | 1617bab | 2013-01-07 16:04:49 +0100 | [diff] [blame] | 1100 | case NL80211_PLINK_OPN_SNT: |
| 1101 | case NL80211_PLINK_OPN_RCVD: |
| 1102 | case NL80211_PLINK_CNF_RCVD: |
| 1103 | case NL80211_PLINK_HOLDING: |
| 1104 | if (sta->plink_state == NL80211_PLINK_ESTAB) |
| 1105 | changed = mesh_plink_dec_estab_count( |
| 1106 | sdata); |
Javier Cardona | 9c3990a | 2011-05-03 16:57:11 -0700 | [diff] [blame] | 1107 | sta->plink_state = params->plink_state; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1108 | |
| 1109 | ieee80211_mps_sta_status_update(sta); |
Marco Porsch | 446075d | 2013-10-15 12:29:24 +0200 | [diff] [blame] | 1110 | changed |= ieee80211_mps_set_sta_local_pm(sta, |
| 1111 | NL80211_MESH_POWER_UNKNOWN); |
Javier Cardona | 9c3990a | 2011-05-03 16:57:11 -0700 | [diff] [blame] | 1112 | break; |
| 1113 | default: |
| 1114 | /* nothing */ |
| 1115 | break; |
| 1116 | } |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | switch (params->plink_action) { |
| 1120 | case NL80211_PLINK_ACTION_NO_ACTION: |
| 1121 | /* nothing */ |
| 1122 | break; |
| 1123 | case NL80211_PLINK_ACTION_OPEN: |
| 1124 | changed |= mesh_plink_open(sta); |
| 1125 | break; |
| 1126 | case NL80211_PLINK_ACTION_BLOCK: |
| 1127 | changed |= mesh_plink_block(sta); |
| 1128 | break; |
Marco Porsch | 1617bab | 2013-01-07 16:04:49 +0100 | [diff] [blame] | 1129 | } |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1130 | |
| 1131 | if (params->local_pm) |
Thomas Pedersen | 39886b6 | 2013-02-13 12:14:19 -0800 | [diff] [blame] | 1132 | changed |= |
| 1133 | ieee80211_mps_set_sta_local_pm(sta, |
| 1134 | params->local_pm); |
Javier Lopez | 6c751ef | 2013-11-06 10:04:29 -0800 | [diff] [blame] | 1135 | ieee80211_mbss_info_change_notify(sdata, changed); |
Yogesh Ashok Powar | 4daf50f | 2011-05-12 09:32:17 -0400 | [diff] [blame] | 1136 | #endif |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 1137 | } |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1138 | |
| 1139 | return 0; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1143 | const u8 *mac, |
| 1144 | struct station_parameters *params) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1145 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1146 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1147 | struct sta_info *sta; |
| 1148 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1149 | int err; |
Jouni Malinen | b8d476c | 2008-12-12 17:08:31 +0200 | [diff] [blame] | 1150 | int layer2_update; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1151 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1152 | if (params->vlan) { |
| 1153 | sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
| 1154 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1155 | if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 1156 | sdata->vif.type != NL80211_IFTYPE_AP) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1157 | return -EINVAL; |
| 1158 | } else |
| 1159 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1160 | |
Joe Perches | b203ca3 | 2012-05-08 18:56:52 +0000 | [diff] [blame] | 1161 | if (ether_addr_equal(mac, sdata->vif.addr)) |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 1162 | return -EINVAL; |
| 1163 | |
| 1164 | if (is_multicast_ether_addr(mac)) |
| 1165 | return -EINVAL; |
| 1166 | |
| 1167 | sta = sta_info_alloc(sdata, mac, GFP_KERNEL); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1168 | if (!sta) |
| 1169 | return -ENOMEM; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1170 | |
Johannes Berg | d582cff | 2012-10-26 17:53:44 +0200 | [diff] [blame] | 1171 | /* |
| 1172 | * defaults -- if userspace wants something else we'll |
| 1173 | * change it accordingly in sta_apply_parameters() |
| 1174 | */ |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1175 | if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) { |
| 1176 | sta_info_pre_move_state(sta, IEEE80211_STA_AUTH); |
| 1177 | sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC); |
Arik Nemtsov | 0c4972c | 2014-05-01 10:17:27 +0300 | [diff] [blame] | 1178 | } else { |
| 1179 | sta->sta.tdls = true; |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1180 | } |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1181 | |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1182 | err = sta_apply_parameters(local, sta, params); |
| 1183 | if (err) { |
| 1184 | sta_info_free(local, sta); |
| 1185 | return err; |
| 1186 | } |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1187 | |
Arik Nemtsov | d64cf63 | 2011-11-07 23:24:39 +0200 | [diff] [blame] | 1188 | /* |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1189 | * for TDLS, rate control should be initialized only when |
| 1190 | * rates are known and station is marked authorized |
Arik Nemtsov | d64cf63 | 2011-11-07 23:24:39 +0200 | [diff] [blame] | 1191 | */ |
| 1192 | if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) |
| 1193 | rate_control_rate_init(sta); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1194 | |
Jouni Malinen | b8d476c | 2008-12-12 17:08:31 +0200 | [diff] [blame] | 1195 | layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN || |
| 1196 | sdata->vif.type == NL80211_IFTYPE_AP; |
| 1197 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 1198 | err = sta_info_insert_rcu(sta); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1199 | if (err) { |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1200 | rcu_read_unlock(); |
| 1201 | return err; |
| 1202 | } |
| 1203 | |
Jouni Malinen | b8d476c | 2008-12-12 17:08:31 +0200 | [diff] [blame] | 1204 | if (layer2_update) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1205 | ieee80211_send_layer2_update(sta); |
| 1206 | |
| 1207 | rcu_read_unlock(); |
| 1208 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1209 | return 0; |
| 1210 | } |
| 1211 | |
| 1212 | static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1213 | const u8 *mac) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1214 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1215 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1216 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1217 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1218 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 1219 | if (mac) |
| 1220 | return sta_info_destroy_addr_bss(sdata, mac); |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 1221 | |
Johannes Berg | b998e8b | 2012-12-13 23:07:46 +0100 | [diff] [blame] | 1222 | sta_info_flush(sdata); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1223 | return 0; |
| 1224 | } |
| 1225 | |
| 1226 | static int ieee80211_change_station(struct wiphy *wiphy, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1227 | struct net_device *dev, const u8 *mac, |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1228 | struct station_parameters *params) |
| 1229 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1230 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1231 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1232 | struct sta_info *sta; |
| 1233 | struct ieee80211_sub_if_data *vlansdata; |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1234 | enum cfg80211_station_type statype; |
Eliad Peller | 35b8862 | 2011-12-29 14:41:39 +0200 | [diff] [blame] | 1235 | int err; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1236 | |
Johannes Berg | 87be1e1 | 2011-12-14 12:20:29 +0100 | [diff] [blame] | 1237 | mutex_lock(&local->sta_mtx); |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 1238 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 1239 | sta = sta_info_get_bss(sdata, mac); |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 1240 | if (!sta) { |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1241 | err = -ENOENT; |
| 1242 | goto out_err; |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 1243 | } |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1244 | |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1245 | switch (sdata->vif.type) { |
| 1246 | case NL80211_IFTYPE_MESH_POINT: |
Thomas Pedersen | a6dad6a | 2013-03-04 13:06:12 -0800 | [diff] [blame] | 1247 | if (sdata->u.mesh.user_mpm) |
Thomas Pedersen | eef941e | 2013-03-04 13:06:11 -0800 | [diff] [blame] | 1248 | statype = CFG80211_STA_MESH_PEER_USER; |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1249 | else |
Thomas Pedersen | eef941e | 2013-03-04 13:06:11 -0800 | [diff] [blame] | 1250 | statype = CFG80211_STA_MESH_PEER_KERNEL; |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1251 | break; |
| 1252 | case NL80211_IFTYPE_ADHOC: |
| 1253 | statype = CFG80211_STA_IBSS; |
| 1254 | break; |
| 1255 | case NL80211_IFTYPE_STATION: |
| 1256 | if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) { |
| 1257 | statype = CFG80211_STA_AP_STA; |
| 1258 | break; |
| 1259 | } |
| 1260 | if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 1261 | statype = CFG80211_STA_TDLS_PEER_ACTIVE; |
| 1262 | else |
| 1263 | statype = CFG80211_STA_TDLS_PEER_SETUP; |
| 1264 | break; |
| 1265 | case NL80211_IFTYPE_AP: |
| 1266 | case NL80211_IFTYPE_AP_VLAN: |
| 1267 | statype = CFG80211_STA_AP_CLIENT; |
| 1268 | break; |
| 1269 | default: |
| 1270 | err = -EOPNOTSUPP; |
| 1271 | goto out_err; |
Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 1272 | } |
| 1273 | |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1274 | err = cfg80211_check_station_change(wiphy, params, statype); |
| 1275 | if (err) |
| 1276 | goto out_err; |
| 1277 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1278 | if (params->vlan && params->vlan != sta->sdata->dev) { |
Felix Fietkau | 7e3ed02 | 2012-04-23 19:49:03 +0200 | [diff] [blame] | 1279 | bool prev_4addr = false; |
| 1280 | bool new_4addr = false; |
| 1281 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1282 | vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
| 1283 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1284 | if (params->vlan->ieee80211_ptr->use_4addr) { |
Johannes Berg | 3305443 | 2009-11-20 10:09:14 +0100 | [diff] [blame] | 1285 | if (vlansdata->u.vlan.sta) { |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1286 | err = -EBUSY; |
| 1287 | goto out_err; |
Johannes Berg | 3305443 | 2009-11-20 10:09:14 +0100 | [diff] [blame] | 1288 | } |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1289 | |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 1290 | rcu_assign_pointer(vlansdata->u.vlan.sta, sta); |
Felix Fietkau | 7e3ed02 | 2012-04-23 19:49:03 +0200 | [diff] [blame] | 1291 | new_4addr = true; |
| 1292 | } |
| 1293 | |
| 1294 | if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 1295 | sta->sdata->u.vlan.sta) { |
Monam Agarwal | 0c2bef46 | 2014-03-24 00:51:43 +0530 | [diff] [blame] | 1296 | RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL); |
Felix Fietkau | 7e3ed02 | 2012-04-23 19:49:03 +0200 | [diff] [blame] | 1297 | prev_4addr = true; |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 1298 | } |
| 1299 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1300 | sta->sdata = vlansdata; |
Felix Fietkau | 7e3ed02 | 2012-04-23 19:49:03 +0200 | [diff] [blame] | 1301 | |
| 1302 | if (sta->sta_state == IEEE80211_STA_AUTHORIZED && |
| 1303 | prev_4addr != new_4addr) { |
| 1304 | if (new_4addr) |
| 1305 | atomic_dec(&sta->sdata->bss->num_mcast_sta); |
| 1306 | else |
| 1307 | atomic_inc(&sta->sdata->bss->num_mcast_sta); |
| 1308 | } |
| 1309 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1310 | ieee80211_send_layer2_update(sta); |
| 1311 | } |
| 1312 | |
Eliad Peller | 35b8862 | 2011-12-29 14:41:39 +0200 | [diff] [blame] | 1313 | err = sta_apply_parameters(local, sta, params); |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1314 | if (err) |
| 1315 | goto out_err; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1316 | |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1317 | /* When peer becomes authorized, init rate control as well */ |
| 1318 | if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) && |
| 1319 | test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
Arik Nemtsov | d64cf63 | 2011-11-07 23:24:39 +0200 | [diff] [blame] | 1320 | rate_control_rate_init(sta); |
| 1321 | |
Johannes Berg | 87be1e1 | 2011-12-14 12:20:29 +0100 | [diff] [blame] | 1322 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 1323 | |
Emmanuel Grumbach | 687da13 | 2013-10-01 16:45:43 +0300 | [diff] [blame] | 1324 | if ((sdata->vif.type == NL80211_IFTYPE_AP || |
| 1325 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN) && |
| 1326 | sta->known_smps_mode != sta->sdata->bss->req_smps && |
| 1327 | test_sta_flag(sta, WLAN_STA_AUTHORIZED) && |
| 1328 | sta_info_tx_streams(sta) != 1) { |
| 1329 | ht_dbg(sta->sdata, |
| 1330 | "%pM just authorized and MIMO capable - update SMPS\n", |
| 1331 | sta->sta.addr); |
| 1332 | ieee80211_send_smps_action(sta->sdata, |
| 1333 | sta->sdata->bss->req_smps, |
| 1334 | sta->sta.addr, |
| 1335 | sta->sdata->vif.bss_conf.bssid); |
| 1336 | } |
| 1337 | |
Jason Young | 808118c | 2011-03-10 16:43:19 -0800 | [diff] [blame] | 1338 | if (sdata->vif.type == NL80211_IFTYPE_STATION && |
Eliad Peller | ab09587 | 2012-07-27 12:33:22 +0300 | [diff] [blame] | 1339 | params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
Jason Young | 808118c | 2011-03-10 16:43:19 -0800 | [diff] [blame] | 1340 | ieee80211_recalc_ps(local, -1); |
Eliad Peller | ab09587 | 2012-07-27 12:33:22 +0300 | [diff] [blame] | 1341 | ieee80211_recalc_ps_vif(sdata); |
| 1342 | } |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1343 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1344 | return 0; |
Johannes Berg | 77ee7c8 | 2013-02-15 00:48:33 +0100 | [diff] [blame] | 1345 | out_err: |
| 1346 | mutex_unlock(&local->sta_mtx); |
| 1347 | return err; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1348 | } |
| 1349 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1350 | #ifdef CONFIG_MAC80211_MESH |
| 1351 | static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1352 | const u8 *dst, const u8 *next_hop) |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1353 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1354 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1355 | struct mesh_path *mpath; |
| 1356 | struct sta_info *sta; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1357 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1358 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1359 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1360 | rcu_read_lock(); |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1361 | sta = sta_info_get(sdata, next_hop); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1362 | if (!sta) { |
| 1363 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1364 | return -ENOENT; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1365 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1366 | |
Bob Copeland | ae76eef | 2013-03-29 09:38:39 -0400 | [diff] [blame] | 1367 | mpath = mesh_path_add(sdata, dst); |
| 1368 | if (IS_ERR(mpath)) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1369 | rcu_read_unlock(); |
Bob Copeland | ae76eef | 2013-03-29 09:38:39 -0400 | [diff] [blame] | 1370 | return PTR_ERR(mpath); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1371 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1372 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1373 | mesh_path_fix_nexthop(mpath, sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1374 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1375 | rcu_read_unlock(); |
| 1376 | return 0; |
| 1377 | } |
| 1378 | |
| 1379 | static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1380 | const u8 *dst) |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1381 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1382 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1383 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1384 | if (dst) |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1385 | return mesh_path_del(sdata, dst); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1386 | |
Javier Cardona | ece1a2e | 2011-08-29 13:23:04 -0700 | [diff] [blame] | 1387 | mesh_path_flush_by_iface(sdata); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1388 | return 0; |
| 1389 | } |
| 1390 | |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1391 | static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1392 | const u8 *dst, const u8 *next_hop) |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1393 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1394 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1395 | struct mesh_path *mpath; |
| 1396 | struct sta_info *sta; |
| 1397 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1398 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1399 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1400 | rcu_read_lock(); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1401 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1402 | sta = sta_info_get(sdata, next_hop); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1403 | if (!sta) { |
| 1404 | rcu_read_unlock(); |
| 1405 | return -ENOENT; |
| 1406 | } |
| 1407 | |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1408 | mpath = mesh_path_lookup(sdata, dst); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1409 | if (!mpath) { |
| 1410 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1411 | return -ENOENT; |
| 1412 | } |
| 1413 | |
| 1414 | mesh_path_fix_nexthop(mpath, sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1415 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1416 | rcu_read_unlock(); |
| 1417 | return 0; |
| 1418 | } |
| 1419 | |
| 1420 | static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop, |
| 1421 | struct mpath_info *pinfo) |
| 1422 | { |
Johannes Berg | a3836e0 | 2011-05-12 15:11:37 +0200 | [diff] [blame] | 1423 | struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop); |
| 1424 | |
| 1425 | if (next_hop_sta) |
| 1426 | memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1427 | else |
| 1428 | memset(next_hop, 0, ETH_ALEN); |
| 1429 | |
LEO Airwarosu Yoichi Shinoda | 7ce8c7a | 2012-08-27 22:28:16 +0900 | [diff] [blame] | 1430 | memset(pinfo, 0, sizeof(*pinfo)); |
| 1431 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1432 | pinfo->generation = mesh_paths_generation; |
| 1433 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1434 | pinfo->filled = MPATH_INFO_FRAME_QLEN | |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 1435 | MPATH_INFO_SN | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1436 | MPATH_INFO_METRIC | |
| 1437 | MPATH_INFO_EXPTIME | |
| 1438 | MPATH_INFO_DISCOVERY_TIMEOUT | |
| 1439 | MPATH_INFO_DISCOVERY_RETRIES | |
| 1440 | MPATH_INFO_FLAGS; |
| 1441 | |
| 1442 | pinfo->frame_qlen = mpath->frame_queue.qlen; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 1443 | pinfo->sn = mpath->sn; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1444 | pinfo->metric = mpath->metric; |
| 1445 | if (time_before(jiffies, mpath->exp_time)) |
| 1446 | pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies); |
| 1447 | pinfo->discovery_timeout = |
| 1448 | jiffies_to_msecs(mpath->discovery_timeout); |
| 1449 | pinfo->discovery_retries = mpath->discovery_retries; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1450 | if (mpath->flags & MESH_PATH_ACTIVE) |
| 1451 | pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE; |
| 1452 | if (mpath->flags & MESH_PATH_RESOLVING) |
| 1453 | pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 1454 | if (mpath->flags & MESH_PATH_SN_VALID) |
| 1455 | pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1456 | if (mpath->flags & MESH_PATH_FIXED) |
| 1457 | pinfo->flags |= NL80211_MPATH_FLAG_FIXED; |
LEO Airwarosu Yoichi Shinoda | 7ce8c7a | 2012-08-27 22:28:16 +0900 | [diff] [blame] | 1458 | if (mpath->flags & MESH_PATH_RESOLVED) |
| 1459 | pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1460 | } |
| 1461 | |
| 1462 | static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1463 | u8 *dst, u8 *next_hop, struct mpath_info *pinfo) |
| 1464 | |
| 1465 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1466 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1467 | struct mesh_path *mpath; |
| 1468 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1469 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1470 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1471 | rcu_read_lock(); |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1472 | mpath = mesh_path_lookup(sdata, dst); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1473 | if (!mpath) { |
| 1474 | rcu_read_unlock(); |
| 1475 | return -ENOENT; |
| 1476 | } |
| 1477 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 1478 | mpath_set_pinfo(mpath, next_hop, pinfo); |
| 1479 | rcu_read_unlock(); |
| 1480 | return 0; |
| 1481 | } |
| 1482 | |
| 1483 | static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1484 | int idx, u8 *dst, u8 *next_hop, |
| 1485 | struct mpath_info *pinfo) |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1486 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1487 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1488 | struct mesh_path *mpath; |
| 1489 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 1490 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1491 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1492 | rcu_read_lock(); |
Johannes Berg | bf7cd94 | 2013-02-15 14:40:31 +0100 | [diff] [blame] | 1493 | mpath = mesh_path_lookup_by_idx(sdata, idx); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1494 | if (!mpath) { |
| 1495 | rcu_read_unlock(); |
| 1496 | return -ENOENT; |
| 1497 | } |
| 1498 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 1499 | mpath_set_pinfo(mpath, next_hop, pinfo); |
| 1500 | rcu_read_unlock(); |
| 1501 | return 0; |
| 1502 | } |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1503 | |
Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 1504 | static int ieee80211_get_mesh_config(struct wiphy *wiphy, |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1505 | struct net_device *dev, |
| 1506 | struct mesh_config *conf) |
| 1507 | { |
| 1508 | struct ieee80211_sub_if_data *sdata; |
| 1509 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1510 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1511 | memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config)); |
| 1512 | return 0; |
| 1513 | } |
| 1514 | |
| 1515 | static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask) |
| 1516 | { |
| 1517 | return (mask >> (parm-1)) & 0x1; |
| 1518 | } |
| 1519 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1520 | static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh, |
| 1521 | const struct mesh_setup *setup) |
| 1522 | { |
| 1523 | u8 *new_ie; |
| 1524 | const u8 *old_ie; |
Chun-Yeow Yeoh | 4bb6234 | 2011-11-24 17:15:20 -0800 | [diff] [blame] | 1525 | struct ieee80211_sub_if_data *sdata = container_of(ifmsh, |
| 1526 | struct ieee80211_sub_if_data, u.mesh); |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1527 | |
Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 1528 | /* allocate information elements */ |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1529 | new_ie = NULL; |
Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 1530 | old_ie = ifmsh->ie; |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1531 | |
Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 1532 | if (setup->ie_len) { |
| 1533 | new_ie = kmemdup(setup->ie, setup->ie_len, |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1534 | GFP_KERNEL); |
| 1535 | if (!new_ie) |
| 1536 | return -ENOMEM; |
| 1537 | } |
Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 1538 | ifmsh->ie_len = setup->ie_len; |
| 1539 | ifmsh->ie = new_ie; |
| 1540 | kfree(old_ie); |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1541 | |
| 1542 | /* now copy the rest of the setup parameters */ |
| 1543 | ifmsh->mesh_id_len = setup->mesh_id_len; |
| 1544 | memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len); |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 1545 | ifmsh->mesh_sp_id = setup->sync_method; |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1546 | ifmsh->mesh_pp_id = setup->path_sel_proto; |
| 1547 | ifmsh->mesh_pm_id = setup->path_metric; |
Thomas Pedersen | a6dad6a | 2013-03-04 13:06:12 -0800 | [diff] [blame] | 1548 | ifmsh->user_mpm = setup->user_mpm; |
Colleen Twitty | 0d4261a | 2013-05-08 11:46:00 -0700 | [diff] [blame] | 1549 | ifmsh->mesh_auth_id = setup->auth_id; |
Javier Cardona | b130e5c | 2011-05-03 16:57:07 -0700 | [diff] [blame] | 1550 | ifmsh->security = IEEE80211_MESH_SEC_NONE; |
| 1551 | if (setup->is_authenticated) |
| 1552 | ifmsh->security |= IEEE80211_MESH_SEC_AUTHED; |
| 1553 | if (setup->is_secure) |
| 1554 | ifmsh->security |= IEEE80211_MESH_SEC_SECURED; |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1555 | |
Chun-Yeow Yeoh | 4bb6234 | 2011-11-24 17:15:20 -0800 | [diff] [blame] | 1556 | /* mcast rate setting in Mesh Node */ |
| 1557 | memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate, |
| 1558 | sizeof(setup->mcast_rate)); |
Ashok Nagarajan | ffb3cf3 | 2013-06-03 10:33:36 -0700 | [diff] [blame] | 1559 | sdata->vif.bss_conf.basic_rates = setup->basic_rates; |
Chun-Yeow Yeoh | 4bb6234 | 2011-11-24 17:15:20 -0800 | [diff] [blame] | 1560 | |
Marco Porsch | 9bdbf04 | 2013-01-07 16:04:51 +0100 | [diff] [blame] | 1561 | sdata->vif.bss_conf.beacon_int = setup->beacon_interval; |
| 1562 | sdata->vif.bss_conf.dtim_period = setup->dtim_period; |
| 1563 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1564 | return 0; |
| 1565 | } |
| 1566 | |
Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 1567 | static int ieee80211_update_mesh_config(struct wiphy *wiphy, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1568 | struct net_device *dev, u32 mask, |
| 1569 | const struct mesh_config *nconf) |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1570 | { |
| 1571 | struct mesh_config *conf; |
| 1572 | struct ieee80211_sub_if_data *sdata; |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 1573 | struct ieee80211_if_mesh *ifmsh; |
| 1574 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1575 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 1576 | ifmsh = &sdata->u.mesh; |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1577 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1578 | /* Set the config options which we are interested in setting */ |
| 1579 | conf = &(sdata->u.mesh.mshcfg); |
| 1580 | if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask)) |
| 1581 | conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout; |
| 1582 | if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask)) |
| 1583 | conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout; |
| 1584 | if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask)) |
| 1585 | conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout; |
| 1586 | if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask)) |
| 1587 | conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks; |
| 1588 | if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask)) |
| 1589 | conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries; |
| 1590 | if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask)) |
| 1591 | conf->dot11MeshTTL = nconf->dot11MeshTTL; |
Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 1592 | if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask)) |
Chun-Yeow Yeoh | 58886a9 | 2012-06-15 00:23:53 +0800 | [diff] [blame] | 1593 | conf->element_ttl = nconf->element_ttl; |
Thomas Pedersen | 146bb48 | 2013-03-04 13:06:14 -0800 | [diff] [blame] | 1594 | if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) { |
| 1595 | if (ifmsh->user_mpm) |
| 1596 | return -EBUSY; |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1597 | conf->auto_open_plinks = nconf->auto_open_plinks; |
Thomas Pedersen | 146bb48 | 2013-03-04 13:06:14 -0800 | [diff] [blame] | 1598 | } |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 1599 | if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask)) |
| 1600 | conf->dot11MeshNbrOffsetMaxNeighbor = |
| 1601 | nconf->dot11MeshNbrOffsetMaxNeighbor; |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1602 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask)) |
| 1603 | conf->dot11MeshHWMPmaxPREQretries = |
| 1604 | nconf->dot11MeshHWMPmaxPREQretries; |
| 1605 | if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask)) |
| 1606 | conf->path_refresh_time = nconf->path_refresh_time; |
| 1607 | if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask)) |
| 1608 | conf->min_discovery_timeout = nconf->min_discovery_timeout; |
| 1609 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask)) |
| 1610 | conf->dot11MeshHWMPactivePathTimeout = |
| 1611 | nconf->dot11MeshHWMPactivePathTimeout; |
| 1612 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask)) |
| 1613 | conf->dot11MeshHWMPpreqMinInterval = |
| 1614 | nconf->dot11MeshHWMPpreqMinInterval; |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 1615 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask)) |
| 1616 | conf->dot11MeshHWMPperrMinInterval = |
| 1617 | nconf->dot11MeshHWMPperrMinInterval; |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1618 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, |
| 1619 | mask)) |
| 1620 | conf->dot11MeshHWMPnetDiameterTraversalTime = |
| 1621 | nconf->dot11MeshHWMPnetDiameterTraversalTime; |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 1622 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) { |
| 1623 | conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode; |
| 1624 | ieee80211_mesh_root_setup(ifmsh); |
| 1625 | } |
Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 1626 | if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) { |
Thomas Pedersen | c6133661 | 2011-08-25 10:36:14 -0700 | [diff] [blame] | 1627 | /* our current gate announcement implementation rides on root |
| 1628 | * announcements, so require this ifmsh to also be a root node |
| 1629 | * */ |
| 1630 | if (nconf->dot11MeshGateAnnouncementProtocol && |
Chun-Yeow Yeoh | dbb912c | 2012-06-14 02:06:09 +0800 | [diff] [blame] | 1631 | !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) { |
| 1632 | conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN; |
Thomas Pedersen | c6133661 | 2011-08-25 10:36:14 -0700 | [diff] [blame] | 1633 | ieee80211_mesh_root_setup(ifmsh); |
| 1634 | } |
Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 1635 | conf->dot11MeshGateAnnouncementProtocol = |
| 1636 | nconf->dot11MeshGateAnnouncementProtocol; |
| 1637 | } |
Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 1638 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask)) |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 1639 | conf->dot11MeshHWMPRannInterval = |
| 1640 | nconf->dot11MeshHWMPRannInterval; |
Chun-Yeow Yeoh | 94f9065 | 2012-01-21 01:02:16 +0800 | [diff] [blame] | 1641 | if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask)) |
| 1642 | conf->dot11MeshForwarding = nconf->dot11MeshForwarding; |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 1643 | if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) { |
| 1644 | /* our RSSI threshold implementation is supported only for |
| 1645 | * devices that report signal in dBm. |
| 1646 | */ |
| 1647 | if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM)) |
| 1648 | return -ENOTSUPP; |
| 1649 | conf->rssi_threshold = nconf->rssi_threshold; |
| 1650 | } |
Ashok Nagarajan | 70c33ea | 2012-04-30 14:20:32 -0700 | [diff] [blame] | 1651 | if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) { |
| 1652 | conf->ht_opmode = nconf->ht_opmode; |
| 1653 | sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode; |
| 1654 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT); |
| 1655 | } |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 1656 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask)) |
| 1657 | conf->dot11MeshHWMPactivePathToRootTimeout = |
| 1658 | nconf->dot11MeshHWMPactivePathToRootTimeout; |
| 1659 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask)) |
| 1660 | conf->dot11MeshHWMProotInterval = |
| 1661 | nconf->dot11MeshHWMProotInterval; |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 1662 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask)) |
| 1663 | conf->dot11MeshHWMPconfirmationInterval = |
| 1664 | nconf->dot11MeshHWMPconfirmationInterval; |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1665 | if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) { |
| 1666 | conf->power_mode = nconf->power_mode; |
| 1667 | ieee80211_mps_local_status_update(sdata); |
| 1668 | } |
Thomas Pedersen | 2b5e196 | 2013-02-14 11:20:13 -0800 | [diff] [blame] | 1669 | if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask)) |
Marco Porsch | 3f52b7e | 2013-01-30 18:14:08 +0100 | [diff] [blame] | 1670 | conf->dot11MeshAwakeWindowDuration = |
| 1671 | nconf->dot11MeshAwakeWindowDuration; |
Colleen Twitty | 66de671 | 2013-06-03 09:53:40 -0700 | [diff] [blame] | 1672 | if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask)) |
| 1673 | conf->plink_timeout = nconf->plink_timeout; |
Thomas Pedersen | 2b5e196 | 2013-02-14 11:20:13 -0800 | [diff] [blame] | 1674 | ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON); |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1675 | return 0; |
| 1676 | } |
| 1677 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1678 | static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev, |
| 1679 | const struct mesh_config *conf, |
| 1680 | const struct mesh_setup *setup) |
| 1681 | { |
| 1682 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1683 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1684 | int err; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1685 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 1686 | memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config)); |
| 1687 | err = copy_mesh_setup(ifmsh, setup); |
| 1688 | if (err) |
| 1689 | return err; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 1690 | |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 1691 | /* can mesh use other SMPS modes? */ |
| 1692 | sdata->smps_mode = IEEE80211_SMPS_OFF; |
| 1693 | sdata->needed_rx_chains = sdata->local->rx_chains; |
| 1694 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 1695 | mutex_lock(&sdata->local->mtx); |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1696 | err = ieee80211_vif_use_channel(sdata, &setup->chandef, |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1697 | IEEE80211_CHANCTX_SHARED); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 1698 | mutex_unlock(&sdata->local->mtx); |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 1699 | if (err) |
| 1700 | return err; |
| 1701 | |
Thomas Pedersen | 2b5e196 | 2013-02-14 11:20:13 -0800 | [diff] [blame] | 1702 | return ieee80211_start_mesh(sdata); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1703 | } |
| 1704 | |
| 1705 | static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev) |
| 1706 | { |
| 1707 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1708 | |
| 1709 | ieee80211_stop_mesh(sdata); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 1710 | mutex_lock(&sdata->local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1711 | ieee80211_vif_release_channel(sdata); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 1712 | mutex_unlock(&sdata->local->mtx); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1713 | |
| 1714 | return 0; |
| 1715 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1716 | #endif |
| 1717 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1718 | static int ieee80211_change_bss(struct wiphy *wiphy, |
| 1719 | struct net_device *dev, |
| 1720 | struct bss_parameters *params) |
| 1721 | { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1722 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1723 | enum ieee80211_band band; |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1724 | u32 changed = 0; |
| 1725 | |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 1726 | if (!sdata_dereference(sdata->u.ap.beacon, sdata)) |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1727 | return -ENOENT; |
| 1728 | |
| 1729 | band = ieee80211_get_sdata_band(sdata); |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1730 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1731 | if (params->use_cts_prot >= 0) { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1732 | sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot; |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1733 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
| 1734 | } |
| 1735 | if (params->use_short_preamble >= 0) { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1736 | sdata->vif.bss_conf.use_short_preamble = |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1737 | params->use_short_preamble; |
| 1738 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
| 1739 | } |
Felix Fietkau | 43d3534 | 2010-01-15 03:00:48 +0100 | [diff] [blame] | 1740 | |
| 1741 | if (!sdata->vif.bss_conf.use_short_slot && |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1742 | band == IEEE80211_BAND_5GHZ) { |
Felix Fietkau | 43d3534 | 2010-01-15 03:00:48 +0100 | [diff] [blame] | 1743 | sdata->vif.bss_conf.use_short_slot = true; |
| 1744 | changed |= BSS_CHANGED_ERP_SLOT; |
| 1745 | } |
| 1746 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1747 | if (params->use_short_slot_time >= 0) { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1748 | sdata->vif.bss_conf.use_short_slot = |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1749 | params->use_short_slot_time; |
| 1750 | changed |= BSS_CHANGED_ERP_SLOT; |
| 1751 | } |
| 1752 | |
Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 1753 | if (params->basic_rates) { |
Simon Wunderlich | 2103dec | 2013-07-08 16:55:53 +0200 | [diff] [blame] | 1754 | ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef, |
| 1755 | wiphy->bands[band], |
| 1756 | params->basic_rates, |
| 1757 | params->basic_rates_len, |
| 1758 | &sdata->vif.bss_conf.basic_rates); |
Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 1759 | changed |= BSS_CHANGED_BASIC_RATES; |
| 1760 | } |
| 1761 | |
Felix Fietkau | 7b7b5e5 | 2010-04-27 01:23:36 +0200 | [diff] [blame] | 1762 | if (params->ap_isolate >= 0) { |
| 1763 | if (params->ap_isolate) |
| 1764 | sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS; |
| 1765 | else |
| 1766 | sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS; |
| 1767 | } |
| 1768 | |
Helmut Schaa | 80d7e40 | 2010-11-19 12:40:26 +0100 | [diff] [blame] | 1769 | if (params->ht_opmode >= 0) { |
| 1770 | sdata->vif.bss_conf.ht_operation_mode = |
| 1771 | (u16) params->ht_opmode; |
| 1772 | changed |= BSS_CHANGED_HT; |
| 1773 | } |
| 1774 | |
Johannes Berg | 339afbf | 2012-11-14 15:21:17 +0100 | [diff] [blame] | 1775 | if (params->p2p_ctwindow >= 0) { |
Janusz Dziedzic | 67baf66 | 2013-03-21 15:47:56 +0100 | [diff] [blame] | 1776 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &= |
| 1777 | ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK; |
| 1778 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |= |
| 1779 | params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK; |
Johannes Berg | 339afbf | 2012-11-14 15:21:17 +0100 | [diff] [blame] | 1780 | changed |= BSS_CHANGED_P2P_PS; |
| 1781 | } |
| 1782 | |
Janusz Dziedzic | 67baf66 | 2013-03-21 15:47:56 +0100 | [diff] [blame] | 1783 | if (params->p2p_opp_ps > 0) { |
| 1784 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |= |
| 1785 | IEEE80211_P2P_OPPPS_ENABLE_BIT; |
| 1786 | changed |= BSS_CHANGED_P2P_PS; |
| 1787 | } else if (params->p2p_opp_ps == 0) { |
| 1788 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &= |
| 1789 | ~IEEE80211_P2P_OPPPS_ENABLE_BIT; |
Johannes Berg | 339afbf | 2012-11-14 15:21:17 +0100 | [diff] [blame] | 1790 | changed |= BSS_CHANGED_P2P_PS; |
| 1791 | } |
| 1792 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1793 | ieee80211_bss_info_change_notify(sdata, changed); |
| 1794 | |
| 1795 | return 0; |
| 1796 | } |
| 1797 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1798 | static int ieee80211_set_txq_params(struct wiphy *wiphy, |
Eliad Peller | f70f01c | 2011-09-25 20:06:53 +0300 | [diff] [blame] | 1799 | struct net_device *dev, |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1800 | struct ieee80211_txq_params *params) |
| 1801 | { |
| 1802 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Eliad Peller | f6f3def | 2011-09-25 20:06:54 +0300 | [diff] [blame] | 1803 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1804 | struct ieee80211_tx_queue_params p; |
| 1805 | |
| 1806 | if (!local->ops->conf_tx) |
| 1807 | return -EOPNOTSUPP; |
| 1808 | |
Johannes Berg | 54bcbc6 | 2012-03-28 11:04:25 +0200 | [diff] [blame] | 1809 | if (local->hw.queues < IEEE80211_NUM_ACS) |
| 1810 | return -EOPNOTSUPP; |
| 1811 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1812 | memset(&p, 0, sizeof(p)); |
| 1813 | p.aifs = params->aifs; |
| 1814 | p.cw_max = params->cwmax; |
| 1815 | p.cw_min = params->cwmin; |
| 1816 | p.txop = params->txop; |
Kalle Valo | ab13315 | 2010-01-12 10:42:31 +0200 | [diff] [blame] | 1817 | |
| 1818 | /* |
| 1819 | * Setting tx queue params disables u-apsd because it's only |
| 1820 | * called in master mode. |
| 1821 | */ |
| 1822 | p.uapsd = false; |
| 1823 | |
Johannes Berg | a3304b0 | 2012-03-28 11:04:24 +0200 | [diff] [blame] | 1824 | sdata->tx_conf[params->ac] = p; |
| 1825 | if (drv_conf_tx(local, sdata, params->ac, &p)) { |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 1826 | wiphy_debug(local->hw.wiphy, |
Johannes Berg | a3304b0 | 2012-03-28 11:04:24 +0200 | [diff] [blame] | 1827 | "failed to set TX queue parameters for AC %d\n", |
| 1828 | params->ac); |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1829 | return -EINVAL; |
| 1830 | } |
| 1831 | |
Johannes Berg | 7d25745 | 2012-07-06 17:37:43 +0200 | [diff] [blame] | 1832 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS); |
| 1833 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1834 | return 0; |
| 1835 | } |
| 1836 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 1837 | #ifdef CONFIG_PM |
Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 1838 | static int ieee80211_suspend(struct wiphy *wiphy, |
| 1839 | struct cfg80211_wowlan *wowlan) |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 1840 | { |
Johannes Berg | eecc480 | 2011-05-04 15:37:29 +0200 | [diff] [blame] | 1841 | return __ieee80211_suspend(wiphy_priv(wiphy), wowlan); |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 1842 | } |
| 1843 | |
| 1844 | static int ieee80211_resume(struct wiphy *wiphy) |
| 1845 | { |
| 1846 | return __ieee80211_resume(wiphy_priv(wiphy)); |
| 1847 | } |
| 1848 | #else |
| 1849 | #define ieee80211_suspend NULL |
| 1850 | #define ieee80211_resume NULL |
| 1851 | #endif |
| 1852 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1853 | static int ieee80211_scan(struct wiphy *wiphy, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1854 | struct cfg80211_scan_request *req) |
| 1855 | { |
Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 1856 | struct ieee80211_sub_if_data *sdata; |
| 1857 | |
| 1858 | sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1859 | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1860 | switch (ieee80211_vif_type_p2p(&sdata->vif)) { |
| 1861 | case NL80211_IFTYPE_STATION: |
| 1862 | case NL80211_IFTYPE_ADHOC: |
| 1863 | case NL80211_IFTYPE_MESH_POINT: |
| 1864 | case NL80211_IFTYPE_P2P_CLIENT: |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1865 | case NL80211_IFTYPE_P2P_DEVICE: |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1866 | break; |
| 1867 | case NL80211_IFTYPE_P2P_GO: |
| 1868 | if (sdata->local->ops->hw_scan) |
| 1869 | break; |
Johannes Berg | e9d7732 | 2011-02-01 15:35:36 +0100 | [diff] [blame] | 1870 | /* |
| 1871 | * FIXME: implement NoA while scanning in software, |
| 1872 | * for now fall through to allow scanning only when |
| 1873 | * beaconing hasn't been configured yet |
| 1874 | */ |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1875 | case NL80211_IFTYPE_AP: |
Antonio Quartulli | 5c95b94 | 2012-10-16 08:39:22 +0200 | [diff] [blame] | 1876 | /* |
| 1877 | * If the scan has been forced (and the driver supports |
| 1878 | * forcing), don't care about being beaconing already. |
| 1879 | * This will create problems to the attached stations (e.g. all |
| 1880 | * the frames sent while scanning on other channel will be |
| 1881 | * lost) |
| 1882 | */ |
| 1883 | if (sdata->u.ap.beacon && |
| 1884 | (!(wiphy->features & NL80211_FEATURE_AP_SCAN) || |
| 1885 | !(req->flags & NL80211_SCAN_FLAG_AP))) |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1886 | return -EOPNOTSUPP; |
| 1887 | break; |
| 1888 | default: |
| 1889 | return -EOPNOTSUPP; |
| 1890 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1891 | |
| 1892 | return ieee80211_request_scan(sdata, req); |
| 1893 | } |
| 1894 | |
Luciano Coelho | 79f460c | 2011-05-11 17:09:36 +0300 | [diff] [blame] | 1895 | static int |
| 1896 | ieee80211_sched_scan_start(struct wiphy *wiphy, |
| 1897 | struct net_device *dev, |
| 1898 | struct cfg80211_sched_scan_request *req) |
| 1899 | { |
| 1900 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1901 | |
| 1902 | if (!sdata->local->ops->sched_scan_start) |
| 1903 | return -EOPNOTSUPP; |
| 1904 | |
| 1905 | return ieee80211_request_sched_scan_start(sdata, req); |
| 1906 | } |
| 1907 | |
| 1908 | static int |
Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 1909 | ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev) |
Luciano Coelho | 79f460c | 2011-05-11 17:09:36 +0300 | [diff] [blame] | 1910 | { |
| 1911 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1912 | |
| 1913 | if (!sdata->local->ops->sched_scan_stop) |
| 1914 | return -EOPNOTSUPP; |
| 1915 | |
Luciano Coelho | 85a9994 | 2011-05-12 16:28:29 +0300 | [diff] [blame] | 1916 | return ieee80211_request_sched_scan_stop(sdata); |
Luciano Coelho | 79f460c | 2011-05-11 17:09:36 +0300 | [diff] [blame] | 1917 | } |
| 1918 | |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1919 | static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev, |
| 1920 | struct cfg80211_auth_request *req) |
| 1921 | { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1922 | return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1923 | } |
| 1924 | |
| 1925 | static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev, |
| 1926 | struct cfg80211_assoc_request *req) |
| 1927 | { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1928 | return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1929 | } |
| 1930 | |
| 1931 | static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 63c9c5e | 2012-02-24 13:50:51 +0100 | [diff] [blame] | 1932 | struct cfg80211_deauth_request *req) |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1933 | { |
Johannes Berg | 63c9c5e | 2012-02-24 13:50:51 +0100 | [diff] [blame] | 1934 | return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1935 | } |
| 1936 | |
| 1937 | static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 63c9c5e | 2012-02-24 13:50:51 +0100 | [diff] [blame] | 1938 | struct cfg80211_disassoc_request *req) |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1939 | { |
Johannes Berg | 63c9c5e | 2012-02-24 13:50:51 +0100 | [diff] [blame] | 1940 | return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1941 | } |
| 1942 | |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 1943 | static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, |
| 1944 | struct cfg80211_ibss_params *params) |
| 1945 | { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1946 | return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params); |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 1947 | } |
| 1948 | |
| 1949 | static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev) |
| 1950 | { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1951 | return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev)); |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 1952 | } |
| 1953 | |
Antonio Quartulli | 391e53e | 2012-11-02 13:27:49 +0100 | [diff] [blame] | 1954 | static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev, |
| 1955 | int rate[IEEE80211_NUM_BANDS]) |
| 1956 | { |
| 1957 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1958 | |
Cong Ding | 9887dbf | 2013-02-06 17:23:45 +0100 | [diff] [blame] | 1959 | memcpy(sdata->vif.bss_conf.mcast_rate, rate, |
| 1960 | sizeof(int) * IEEE80211_NUM_BANDS); |
Antonio Quartulli | 391e53e | 2012-11-02 13:27:49 +0100 | [diff] [blame] | 1961 | |
| 1962 | return 0; |
| 1963 | } |
| 1964 | |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1965 | static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed) |
| 1966 | { |
| 1967 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1968 | int err; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1969 | |
Arik Nemtsov | f23a478 | 2010-11-08 11:51:06 +0200 | [diff] [blame] | 1970 | if (changed & WIPHY_PARAM_FRAG_THRESHOLD) { |
| 1971 | err = drv_set_frag_threshold(local, wiphy->frag_threshold); |
| 1972 | |
| 1973 | if (err) |
| 1974 | return err; |
| 1975 | } |
| 1976 | |
Lukáš Turek | 310bc67 | 2009-12-21 22:50:48 +0100 | [diff] [blame] | 1977 | if (changed & WIPHY_PARAM_COVERAGE_CLASS) { |
| 1978 | err = drv_set_coverage_class(local, wiphy->coverage_class); |
| 1979 | |
| 1980 | if (err) |
| 1981 | return err; |
| 1982 | } |
| 1983 | |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1984 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1985 | err = drv_set_rts_threshold(local, wiphy->rts_threshold); |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1986 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1987 | if (err) |
| 1988 | return err; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1989 | } |
| 1990 | |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 1991 | if (changed & WIPHY_PARAM_RETRY_SHORT) { |
| 1992 | if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY) |
| 1993 | return -EINVAL; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1994 | local->hw.conf.short_frame_max_tx_count = wiphy->retry_short; |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 1995 | } |
| 1996 | if (changed & WIPHY_PARAM_RETRY_LONG) { |
| 1997 | if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY) |
| 1998 | return -EINVAL; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1999 | local->hw.conf.long_frame_max_tx_count = wiphy->retry_long; |
Johannes Berg | 8bc83c2 | 2012-11-09 18:38:32 +0100 | [diff] [blame] | 2000 | } |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 2001 | if (changed & |
| 2002 | (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG)) |
| 2003 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS); |
| 2004 | |
| 2005 | return 0; |
| 2006 | } |
| 2007 | |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2008 | static int ieee80211_set_tx_power(struct wiphy *wiphy, |
Johannes Berg | c844211 | 2012-10-24 10:17:18 +0200 | [diff] [blame] | 2009 | struct wireless_dev *wdev, |
Juuso Oikarinen | fa61cf7 | 2010-06-23 12:12:37 +0300 | [diff] [blame] | 2010 | enum nl80211_tx_power_setting type, int mbm) |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2011 | { |
| 2012 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 2013 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2014 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 2015 | if (wdev) { |
| 2016 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 2017 | |
| 2018 | switch (type) { |
| 2019 | case NL80211_TX_POWER_AUTOMATIC: |
| 2020 | sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL; |
| 2021 | break; |
| 2022 | case NL80211_TX_POWER_LIMITED: |
| 2023 | case NL80211_TX_POWER_FIXED: |
| 2024 | if (mbm < 0 || (mbm % 100)) |
| 2025 | return -EOPNOTSUPP; |
| 2026 | sdata->user_power_level = MBM_TO_DBM(mbm); |
| 2027 | break; |
| 2028 | } |
| 2029 | |
| 2030 | ieee80211_recalc_txpower(sdata); |
| 2031 | |
| 2032 | return 0; |
| 2033 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 2034 | |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2035 | switch (type) { |
Juuso Oikarinen | fa61cf7 | 2010-06-23 12:12:37 +0300 | [diff] [blame] | 2036 | case NL80211_TX_POWER_AUTOMATIC: |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 2037 | local->user_power_level = IEEE80211_UNSET_POWER_LEVEL; |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2038 | break; |
Juuso Oikarinen | fa61cf7 | 2010-06-23 12:12:37 +0300 | [diff] [blame] | 2039 | case NL80211_TX_POWER_LIMITED: |
Juuso Oikarinen | fa61cf7 | 2010-06-23 12:12:37 +0300 | [diff] [blame] | 2040 | case NL80211_TX_POWER_FIXED: |
| 2041 | if (mbm < 0 || (mbm % 100)) |
| 2042 | return -EOPNOTSUPP; |
Juuso Oikarinen | fa61cf7 | 2010-06-23 12:12:37 +0300 | [diff] [blame] | 2043 | local->user_power_level = MBM_TO_DBM(mbm); |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2044 | break; |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2045 | } |
| 2046 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 2047 | mutex_lock(&local->iflist_mtx); |
| 2048 | list_for_each_entry(sdata, &local->interfaces, list) |
| 2049 | sdata->user_power_level = local->user_power_level; |
| 2050 | list_for_each_entry(sdata, &local->interfaces, list) |
| 2051 | ieee80211_recalc_txpower(sdata); |
| 2052 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2053 | |
| 2054 | return 0; |
| 2055 | } |
| 2056 | |
Johannes Berg | c844211 | 2012-10-24 10:17:18 +0200 | [diff] [blame] | 2057 | static int ieee80211_get_tx_power(struct wiphy *wiphy, |
| 2058 | struct wireless_dev *wdev, |
| 2059 | int *dbm) |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2060 | { |
| 2061 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 2062 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2063 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 2064 | if (!local->use_chanctx) |
| 2065 | *dbm = local->hw.conf.power_level; |
| 2066 | else |
| 2067 | *dbm = sdata->vif.bss_conf.txpower; |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2068 | |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 2069 | return 0; |
| 2070 | } |
| 2071 | |
Johannes Berg | ab737a4 | 2009-07-01 21:26:58 +0200 | [diff] [blame] | 2072 | static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 388ac77 | 2010-10-07 13:11:09 +0200 | [diff] [blame] | 2073 | const u8 *addr) |
Johannes Berg | ab737a4 | 2009-07-01 21:26:58 +0200 | [diff] [blame] | 2074 | { |
| 2075 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2076 | |
| 2077 | memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN); |
| 2078 | |
| 2079 | return 0; |
| 2080 | } |
| 2081 | |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 2082 | static void ieee80211_rfkill_poll(struct wiphy *wiphy) |
| 2083 | { |
| 2084 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2085 | |
| 2086 | drv_rfkill_poll(local); |
| 2087 | } |
| 2088 | |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 2089 | #ifdef CONFIG_NL80211_TESTMODE |
David Spinadel | fc73f11 | 2013-07-31 18:04:15 +0300 | [diff] [blame] | 2090 | static int ieee80211_testmode_cmd(struct wiphy *wiphy, |
| 2091 | struct wireless_dev *wdev, |
| 2092 | void *data, int len) |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 2093 | { |
| 2094 | struct ieee80211_local *local = wiphy_priv(wiphy); |
David Spinadel | 52981cd | 2013-07-31 18:06:22 +0300 | [diff] [blame] | 2095 | struct ieee80211_vif *vif = NULL; |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 2096 | |
| 2097 | if (!local->ops->testmode_cmd) |
| 2098 | return -EOPNOTSUPP; |
| 2099 | |
David Spinadel | 52981cd | 2013-07-31 18:06:22 +0300 | [diff] [blame] | 2100 | if (wdev) { |
| 2101 | struct ieee80211_sub_if_data *sdata; |
| 2102 | |
| 2103 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 2104 | if (sdata->flags & IEEE80211_SDATA_IN_DRIVER) |
| 2105 | vif = &sdata->vif; |
| 2106 | } |
| 2107 | |
| 2108 | return local->ops->testmode_cmd(&local->hw, vif, data, len); |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 2109 | } |
Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 2110 | |
| 2111 | static int ieee80211_testmode_dump(struct wiphy *wiphy, |
| 2112 | struct sk_buff *skb, |
| 2113 | struct netlink_callback *cb, |
| 2114 | void *data, int len) |
| 2115 | { |
| 2116 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2117 | |
| 2118 | if (!local->ops->testmode_dump) |
| 2119 | return -EOPNOTSUPP; |
| 2120 | |
| 2121 | return local->ops->testmode_dump(&local->hw, skb, cb, data, len); |
| 2122 | } |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 2123 | #endif |
| 2124 | |
Emmanuel Grumbach | 687da13 | 2013-10-01 16:45:43 +0300 | [diff] [blame] | 2125 | int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata, |
| 2126 | enum ieee80211_smps_mode smps_mode) |
| 2127 | { |
| 2128 | struct sta_info *sta; |
| 2129 | enum ieee80211_smps_mode old_req; |
| 2130 | int i; |
| 2131 | |
| 2132 | if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP)) |
| 2133 | return -EINVAL; |
| 2134 | |
| 2135 | if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT) |
| 2136 | return 0; |
| 2137 | |
| 2138 | old_req = sdata->u.ap.req_smps; |
| 2139 | sdata->u.ap.req_smps = smps_mode; |
| 2140 | |
| 2141 | /* AUTOMATIC doesn't mean much for AP - don't allow it */ |
| 2142 | if (old_req == smps_mode || |
| 2143 | smps_mode == IEEE80211_SMPS_AUTOMATIC) |
| 2144 | return 0; |
| 2145 | |
| 2146 | /* If no associated stations, there's no need to do anything */ |
| 2147 | if (!atomic_read(&sdata->u.ap.num_mcast_sta)) { |
| 2148 | sdata->smps_mode = smps_mode; |
| 2149 | ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps); |
| 2150 | return 0; |
| 2151 | } |
| 2152 | |
| 2153 | ht_dbg(sdata, |
| 2154 | "SMSP %d requested in AP mode, sending Action frame to %d stations\n", |
| 2155 | smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta)); |
| 2156 | |
| 2157 | mutex_lock(&sdata->local->sta_mtx); |
| 2158 | for (i = 0; i < STA_HASH_SIZE; i++) { |
| 2159 | for (sta = rcu_dereference_protected(sdata->local->sta_hash[i], |
| 2160 | lockdep_is_held(&sdata->local->sta_mtx)); |
| 2161 | sta; |
| 2162 | sta = rcu_dereference_protected(sta->hnext, |
| 2163 | lockdep_is_held(&sdata->local->sta_mtx))) { |
| 2164 | /* |
| 2165 | * Only stations associated to our AP and |
| 2166 | * associated VLANs |
| 2167 | */ |
| 2168 | if (sta->sdata->bss != &sdata->u.ap) |
| 2169 | continue; |
| 2170 | |
| 2171 | /* This station doesn't support MIMO - skip it */ |
| 2172 | if (sta_info_tx_streams(sta) == 1) |
| 2173 | continue; |
| 2174 | |
| 2175 | /* |
| 2176 | * Don't wake up a STA just to send the action frame |
| 2177 | * unless we are getting more restrictive. |
| 2178 | */ |
| 2179 | if (test_sta_flag(sta, WLAN_STA_PS_STA) && |
| 2180 | !ieee80211_smps_is_restrictive(sta->known_smps_mode, |
| 2181 | smps_mode)) { |
| 2182 | ht_dbg(sdata, |
| 2183 | "Won't send SMPS to sleeping STA %pM\n", |
| 2184 | sta->sta.addr); |
| 2185 | continue; |
| 2186 | } |
| 2187 | |
| 2188 | /* |
| 2189 | * If the STA is not authorized, wait until it gets |
| 2190 | * authorized and the action frame will be sent then. |
| 2191 | */ |
| 2192 | if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 2193 | continue; |
| 2194 | |
| 2195 | ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr); |
| 2196 | ieee80211_send_smps_action(sdata, smps_mode, |
| 2197 | sta->sta.addr, |
| 2198 | sdata->vif.bss_conf.bssid); |
| 2199 | } |
| 2200 | } |
| 2201 | mutex_unlock(&sdata->local->sta_mtx); |
| 2202 | |
| 2203 | sdata->smps_mode = smps_mode; |
| 2204 | ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps); |
| 2205 | |
| 2206 | return 0; |
| 2207 | } |
| 2208 | |
| 2209 | int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata, |
| 2210 | enum ieee80211_smps_mode smps_mode) |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2211 | { |
| 2212 | const u8 *ap; |
| 2213 | enum ieee80211_smps_mode old_req; |
| 2214 | int err; |
| 2215 | |
Johannes Berg | 8d61ffa | 2013-05-10 12:32:47 +0200 | [diff] [blame] | 2216 | lockdep_assert_held(&sdata->wdev.mtx); |
Johannes Berg | 243e6df | 2011-04-19 20:44:04 +0200 | [diff] [blame] | 2217 | |
Emmanuel Grumbach | 687da13 | 2013-10-01 16:45:43 +0300 | [diff] [blame] | 2218 | if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION)) |
| 2219 | return -EINVAL; |
| 2220 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2221 | old_req = sdata->u.mgd.req_smps; |
| 2222 | sdata->u.mgd.req_smps = smps_mode; |
| 2223 | |
| 2224 | if (old_req == smps_mode && |
| 2225 | smps_mode != IEEE80211_SMPS_AUTOMATIC) |
| 2226 | return 0; |
| 2227 | |
| 2228 | /* |
| 2229 | * If not associated, or current association is not an HT |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 2230 | * association, there's no need to do anything, just store |
| 2231 | * the new value until we associate. |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2232 | */ |
| 2233 | if (!sdata->u.mgd.associated || |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 2234 | sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT) |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2235 | return 0; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2236 | |
Johannes Berg | 0c1ad2c | 2009-12-23 13:15:39 +0100 | [diff] [blame] | 2237 | ap = sdata->u.mgd.associated->bssid; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2238 | |
| 2239 | if (smps_mode == IEEE80211_SMPS_AUTOMATIC) { |
| 2240 | if (sdata->u.mgd.powersave) |
| 2241 | smps_mode = IEEE80211_SMPS_DYNAMIC; |
| 2242 | else |
| 2243 | smps_mode = IEEE80211_SMPS_OFF; |
| 2244 | } |
| 2245 | |
| 2246 | /* send SM PS frame to AP */ |
| 2247 | err = ieee80211_send_smps_action(sdata, smps_mode, |
| 2248 | ap, ap); |
| 2249 | if (err) |
| 2250 | sdata->u.mgd.req_smps = old_req; |
| 2251 | |
| 2252 | return err; |
| 2253 | } |
| 2254 | |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2255 | static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev, |
| 2256 | bool enabled, int timeout) |
| 2257 | { |
| 2258 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2259 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2260 | |
Bob Copeland | 2d3db21 | 2013-10-29 18:11:59 -0400 | [diff] [blame] | 2261 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Benoit Papillault | e5de30c | 2010-01-15 12:21:37 +0100 | [diff] [blame] | 2262 | return -EOPNOTSUPP; |
| 2263 | |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2264 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) |
| 2265 | return -EOPNOTSUPP; |
| 2266 | |
| 2267 | if (enabled == sdata->u.mgd.powersave && |
Juuso Oikarinen | ff61638 | 2010-06-09 09:51:52 +0300 | [diff] [blame] | 2268 | timeout == local->dynamic_ps_forced_timeout) |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2269 | return 0; |
| 2270 | |
| 2271 | sdata->u.mgd.powersave = enabled; |
Juuso Oikarinen | ff61638 | 2010-06-09 09:51:52 +0300 | [diff] [blame] | 2272 | local->dynamic_ps_forced_timeout = timeout; |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2273 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2274 | /* no change, but if automatic follow powersave */ |
Johannes Berg | ed405be | 2013-06-03 13:51:59 +0200 | [diff] [blame] | 2275 | sdata_lock(sdata); |
Emmanuel Grumbach | 687da13 | 2013-10-01 16:45:43 +0300 | [diff] [blame] | 2276 | __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps); |
Johannes Berg | ed405be | 2013-06-03 13:51:59 +0200 | [diff] [blame] | 2277 | sdata_unlock(sdata); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2278 | |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2279 | if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) |
| 2280 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 2281 | |
| 2282 | ieee80211_recalc_ps(local, -1); |
Eliad Peller | ab09587 | 2012-07-27 12:33:22 +0300 | [diff] [blame] | 2283 | ieee80211_recalc_ps_vif(sdata); |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 2284 | |
| 2285 | return 0; |
| 2286 | } |
| 2287 | |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 2288 | static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy, |
| 2289 | struct net_device *dev, |
| 2290 | s32 rssi_thold, u32 rssi_hyst) |
| 2291 | { |
| 2292 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 2293 | struct ieee80211_vif *vif = &sdata->vif; |
| 2294 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
| 2295 | |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 2296 | if (rssi_thold == bss_conf->cqm_rssi_thold && |
| 2297 | rssi_hyst == bss_conf->cqm_rssi_hyst) |
| 2298 | return 0; |
| 2299 | |
| 2300 | bss_conf->cqm_rssi_thold = rssi_thold; |
| 2301 | bss_conf->cqm_rssi_hyst = rssi_hyst; |
| 2302 | |
| 2303 | /* tell the driver upon association, unless already associated */ |
Johannes Berg | ea08635 | 2012-01-19 09:29:58 +0100 | [diff] [blame] | 2304 | if (sdata->u.mgd.associated && |
| 2305 | sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI) |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 2306 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM); |
| 2307 | |
| 2308 | return 0; |
| 2309 | } |
| 2310 | |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 2311 | static int ieee80211_set_bitrate_mask(struct wiphy *wiphy, |
| 2312 | struct net_device *dev, |
| 2313 | const u8 *addr, |
| 2314 | const struct cfg80211_bitrate_mask *mask) |
| 2315 | { |
| 2316 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2317 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Sujith Manoharan | bdbfd6b | 2011-04-27 16:56:51 +0530 | [diff] [blame] | 2318 | int i, ret; |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 2319 | |
Eliad Peller | 554a43d | 2012-06-12 12:41:15 +0300 | [diff] [blame] | 2320 | if (!ieee80211_sdata_running(sdata)) |
| 2321 | return -ENETDOWN; |
| 2322 | |
Sujith Manoharan | bdbfd6b | 2011-04-27 16:56:51 +0530 | [diff] [blame] | 2323 | if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) { |
| 2324 | ret = drv_set_bitrate_mask(local, sdata, mask); |
| 2325 | if (ret) |
| 2326 | return ret; |
| 2327 | } |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 2328 | |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 2329 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) { |
Felix Fietkau | 2ffbe6d | 2013-04-16 13:38:42 +0200 | [diff] [blame] | 2330 | struct ieee80211_supported_band *sband = wiphy->bands[i]; |
| 2331 | int j; |
| 2332 | |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 2333 | sdata->rc_rateidx_mask[i] = mask->control[i].legacy; |
Janusz Dziedzic | d1e33e6 | 2013-12-05 10:02:15 +0100 | [diff] [blame] | 2334 | memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs, |
| 2335 | sizeof(mask->control[i].ht_mcs)); |
Felix Fietkau | 2ffbe6d | 2013-04-16 13:38:42 +0200 | [diff] [blame] | 2336 | |
| 2337 | sdata->rc_has_mcs_mask[i] = false; |
| 2338 | if (!sband) |
| 2339 | continue; |
| 2340 | |
| 2341 | for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++) |
| 2342 | if (~sdata->rc_rateidx_mcs_mask[i][j]) { |
| 2343 | sdata->rc_has_mcs_mask[i] = true; |
| 2344 | break; |
| 2345 | } |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 2346 | } |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 2347 | |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 2348 | return 0; |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 2349 | } |
| 2350 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2351 | static int ieee80211_start_roc_work(struct ieee80211_local *local, |
| 2352 | struct ieee80211_sub_if_data *sdata, |
| 2353 | struct ieee80211_channel *channel, |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2354 | unsigned int duration, u64 *cookie, |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2355 | struct sk_buff *txskb, |
| 2356 | enum ieee80211_roc_type type) |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2357 | { |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2358 | struct ieee80211_roc_work *roc, *tmp; |
| 2359 | bool queued = false; |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2360 | int ret; |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2361 | |
| 2362 | lockdep_assert_held(&local->mtx); |
| 2363 | |
Johannes Berg | fe57d9f | 2012-07-26 14:55:08 +0200 | [diff] [blame] | 2364 | if (local->use_chanctx && !local->ops->remain_on_channel) |
| 2365 | return -EOPNOTSUPP; |
| 2366 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2367 | roc = kzalloc(sizeof(*roc), GFP_KERNEL); |
| 2368 | if (!roc) |
| 2369 | return -ENOMEM; |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2370 | |
Ilan Peer | 2fae062 | 2013-12-19 13:25:29 +0200 | [diff] [blame] | 2371 | /* |
| 2372 | * If the duration is zero, then the driver |
| 2373 | * wouldn't actually do anything. Set it to |
| 2374 | * 10 for now. |
| 2375 | * |
| 2376 | * TODO: cancel the off-channel operation |
| 2377 | * when we get the SKB's TX status and |
| 2378 | * the wait time was zero before. |
| 2379 | */ |
| 2380 | if (!duration) |
| 2381 | duration = 10; |
| 2382 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2383 | roc->chan = channel; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2384 | roc->duration = duration; |
| 2385 | roc->req_duration = duration; |
| 2386 | roc->frame = txskb; |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2387 | roc->type = type; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2388 | roc->mgmt_tx_cookie = (unsigned long)txskb; |
| 2389 | roc->sdata = sdata; |
| 2390 | INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work); |
| 2391 | INIT_LIST_HEAD(&roc->dependents); |
| 2392 | |
Eliad Peller | 2f61743 | 2014-01-12 11:06:37 +0200 | [diff] [blame] | 2393 | /* |
| 2394 | * cookie is either the roc cookie (for normal roc) |
| 2395 | * or the SKB (for mgmt TX) |
| 2396 | */ |
| 2397 | if (!txskb) { |
| 2398 | /* local->mtx protects this */ |
| 2399 | local->roc_cookie_counter++; |
| 2400 | roc->cookie = local->roc_cookie_counter; |
| 2401 | /* wow, you wrapped 64 bits ... more likely a bug */ |
| 2402 | if (WARN_ON(roc->cookie == 0)) { |
| 2403 | roc->cookie = 1; |
| 2404 | local->roc_cookie_counter++; |
| 2405 | } |
| 2406 | *cookie = roc->cookie; |
| 2407 | } else { |
| 2408 | *cookie = (unsigned long)txskb; |
| 2409 | } |
| 2410 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2411 | /* if there's one pending or we're scanning, queue this one */ |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2412 | if (!list_empty(&local->roc_list) || |
| 2413 | local->scanning || local->radar_detect_enabled) |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2414 | goto out_check_combine; |
| 2415 | |
| 2416 | /* if not HW assist, just queue & schedule work */ |
| 2417 | if (!local->ops->remain_on_channel) { |
| 2418 | ieee80211_queue_delayed_work(&local->hw, &roc->work, 0); |
| 2419 | goto out_queue; |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2420 | } |
| 2421 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2422 | /* otherwise actually kick it off here (for error handling) */ |
| 2423 | |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2424 | ret = drv_remain_on_channel(local, sdata, channel, duration, type); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2425 | if (ret) { |
| 2426 | kfree(roc); |
| 2427 | return ret; |
| 2428 | } |
| 2429 | |
| 2430 | roc->started = true; |
| 2431 | goto out_queue; |
| 2432 | |
| 2433 | out_check_combine: |
| 2434 | list_for_each_entry(tmp, &local->roc_list, list) { |
Johannes Berg | 42d97a5 | 2012-11-08 18:31:02 +0100 | [diff] [blame] | 2435 | if (tmp->chan != channel || tmp->sdata != sdata) |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2436 | continue; |
| 2437 | |
| 2438 | /* |
| 2439 | * Extend this ROC if possible: |
| 2440 | * |
| 2441 | * If it hasn't started yet, just increase the duration |
| 2442 | * and add the new one to the list of dependents. |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2443 | * If the type of the new ROC has higher priority, modify the |
| 2444 | * type of the previous one to match that of the new one. |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2445 | */ |
| 2446 | if (!tmp->started) { |
| 2447 | list_add_tail(&roc->list, &tmp->dependents); |
| 2448 | tmp->duration = max(tmp->duration, roc->duration); |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2449 | tmp->type = max(tmp->type, roc->type); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2450 | queued = true; |
| 2451 | break; |
| 2452 | } |
| 2453 | |
| 2454 | /* If it has already started, it's more difficult ... */ |
| 2455 | if (local->ops->remain_on_channel) { |
| 2456 | unsigned long j = jiffies; |
| 2457 | |
| 2458 | /* |
| 2459 | * In the offloaded ROC case, if it hasn't begun, add |
| 2460 | * this new one to the dependent list to be handled |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2461 | * when the master one begins. If it has begun, |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2462 | * check that there's still a minimum time left and |
| 2463 | * if so, start this one, transmitting the frame, but |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2464 | * add it to the list directly after this one with |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2465 | * a reduced time so we'll ask the driver to execute |
| 2466 | * it right after finishing the previous one, in the |
| 2467 | * hope that it'll also be executed right afterwards, |
| 2468 | * effectively extending the old one. |
| 2469 | * If there's no minimum time left, just add it to the |
| 2470 | * normal list. |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2471 | * TODO: the ROC type is ignored here, assuming that it |
| 2472 | * is better to immediately use the current ROC. |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2473 | */ |
| 2474 | if (!tmp->hw_begun) { |
| 2475 | list_add_tail(&roc->list, &tmp->dependents); |
| 2476 | queued = true; |
| 2477 | break; |
| 2478 | } |
| 2479 | |
| 2480 | if (time_before(j + IEEE80211_ROC_MIN_LEFT, |
| 2481 | tmp->hw_start_time + |
| 2482 | msecs_to_jiffies(tmp->duration))) { |
| 2483 | int new_dur; |
| 2484 | |
| 2485 | ieee80211_handle_roc_started(roc); |
| 2486 | |
| 2487 | new_dur = roc->duration - |
| 2488 | jiffies_to_msecs(tmp->hw_start_time + |
| 2489 | msecs_to_jiffies( |
| 2490 | tmp->duration) - |
| 2491 | j); |
| 2492 | |
| 2493 | if (new_dur > 0) { |
| 2494 | /* add right after tmp */ |
| 2495 | list_add(&roc->list, &tmp->list); |
| 2496 | } else { |
| 2497 | list_add_tail(&roc->list, |
| 2498 | &tmp->dependents); |
| 2499 | } |
| 2500 | queued = true; |
| 2501 | } |
| 2502 | } else if (del_timer_sync(&tmp->work.timer)) { |
| 2503 | unsigned long new_end; |
| 2504 | |
| 2505 | /* |
| 2506 | * In the software ROC case, cancel the timer, if |
| 2507 | * that fails then the finish work is already |
| 2508 | * queued/pending and thus we queue the new ROC |
| 2509 | * normally, if that succeeds then we can extend |
| 2510 | * the timer duration and TX the frame (if any.) |
| 2511 | */ |
| 2512 | |
| 2513 | list_add_tail(&roc->list, &tmp->dependents); |
| 2514 | queued = true; |
| 2515 | |
| 2516 | new_end = jiffies + msecs_to_jiffies(roc->duration); |
| 2517 | |
| 2518 | /* ok, it was started & we canceled timer */ |
| 2519 | if (time_after(new_end, tmp->work.timer.expires)) |
| 2520 | mod_timer(&tmp->work.timer, new_end); |
| 2521 | else |
| 2522 | add_timer(&tmp->work.timer); |
| 2523 | |
| 2524 | ieee80211_handle_roc_started(roc); |
| 2525 | } |
| 2526 | break; |
| 2527 | } |
| 2528 | |
| 2529 | out_queue: |
| 2530 | if (!queued) |
| 2531 | list_add_tail(&roc->list, &local->roc_list); |
| 2532 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2533 | return 0; |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2534 | } |
| 2535 | |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 2536 | static int ieee80211_remain_on_channel(struct wiphy *wiphy, |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 2537 | struct wireless_dev *wdev, |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 2538 | struct ieee80211_channel *chan, |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 2539 | unsigned int duration, |
| 2540 | u64 *cookie) |
| 2541 | { |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 2542 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2543 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2544 | int ret; |
| 2545 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2546 | mutex_lock(&local->mtx); |
Johannes Berg | 42d97a5 | 2012-11-08 18:31:02 +0100 | [diff] [blame] | 2547 | ret = ieee80211_start_roc_work(local, sdata, chan, |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 2548 | duration, cookie, NULL, |
| 2549 | IEEE80211_ROC_TYPE_NORMAL); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2550 | mutex_unlock(&local->mtx); |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2551 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2552 | return ret; |
| 2553 | } |
| 2554 | |
| 2555 | static int ieee80211_cancel_roc(struct ieee80211_local *local, |
| 2556 | u64 cookie, bool mgmt_tx) |
| 2557 | { |
| 2558 | struct ieee80211_roc_work *roc, *tmp, *found = NULL; |
| 2559 | int ret; |
| 2560 | |
| 2561 | mutex_lock(&local->mtx); |
| 2562 | list_for_each_entry_safe(roc, tmp, &local->roc_list, list) { |
Johannes Berg | e979e33 | 2012-06-11 17:09:41 +0200 | [diff] [blame] | 2563 | struct ieee80211_roc_work *dep, *tmp2; |
| 2564 | |
| 2565 | list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) { |
Johannes Berg | 50febf6 | 2012-10-26 16:13:06 +0200 | [diff] [blame] | 2566 | if (!mgmt_tx && dep->cookie != cookie) |
Johannes Berg | e979e33 | 2012-06-11 17:09:41 +0200 | [diff] [blame] | 2567 | continue; |
| 2568 | else if (mgmt_tx && dep->mgmt_tx_cookie != cookie) |
| 2569 | continue; |
| 2570 | /* found dependent item -- just remove it */ |
| 2571 | list_del(&dep->list); |
| 2572 | mutex_unlock(&local->mtx); |
| 2573 | |
Johannes Berg | 3fbd45c | 2013-03-25 11:51:14 +0100 | [diff] [blame] | 2574 | ieee80211_roc_notify_destroy(dep, true); |
Johannes Berg | e979e33 | 2012-06-11 17:09:41 +0200 | [diff] [blame] | 2575 | return 0; |
| 2576 | } |
| 2577 | |
Johannes Berg | 50febf6 | 2012-10-26 16:13:06 +0200 | [diff] [blame] | 2578 | if (!mgmt_tx && roc->cookie != cookie) |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2579 | continue; |
| 2580 | else if (mgmt_tx && roc->mgmt_tx_cookie != cookie) |
| 2581 | continue; |
| 2582 | |
| 2583 | found = roc; |
| 2584 | break; |
| 2585 | } |
| 2586 | |
| 2587 | if (!found) { |
| 2588 | mutex_unlock(&local->mtx); |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2589 | return -ENOENT; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2590 | } |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2591 | |
Johannes Berg | e979e33 | 2012-06-11 17:09:41 +0200 | [diff] [blame] | 2592 | /* |
| 2593 | * We found the item to cancel, so do that. Note that it |
| 2594 | * may have dependents, which we also cancel (and send |
| 2595 | * the expired signal for.) Not doing so would be quite |
| 2596 | * tricky here, but we may need to fix it later. |
| 2597 | */ |
| 2598 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2599 | if (local->ops->remain_on_channel) { |
| 2600 | if (found->started) { |
| 2601 | ret = drv_cancel_remain_on_channel(local); |
| 2602 | if (WARN_ON_ONCE(ret)) { |
| 2603 | mutex_unlock(&local->mtx); |
| 2604 | return ret; |
| 2605 | } |
| 2606 | } |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2607 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2608 | list_del(&found->list); |
| 2609 | |
Johannes Berg | 0f6b3f5 | 2012-06-20 20:11:33 +0200 | [diff] [blame] | 2610 | if (found->started) |
| 2611 | ieee80211_start_next_roc(local); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2612 | mutex_unlock(&local->mtx); |
| 2613 | |
Johannes Berg | 3fbd45c | 2013-03-25 11:51:14 +0100 | [diff] [blame] | 2614 | ieee80211_roc_notify_destroy(found, true); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2615 | } else { |
| 2616 | /* work may be pending so use it all the time */ |
| 2617 | found->abort = true; |
| 2618 | ieee80211_queue_delayed_work(&local->hw, &found->work, 0); |
| 2619 | |
| 2620 | mutex_unlock(&local->mtx); |
| 2621 | |
| 2622 | /* work will clean up etc */ |
| 2623 | flush_delayed_work(&found->work); |
Johannes Berg | 3fbd45c | 2013-03-25 11:51:14 +0100 | [diff] [blame] | 2624 | WARN_ON(!found->to_be_freed); |
| 2625 | kfree(found); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2626 | } |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2627 | |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2628 | return 0; |
| 2629 | } |
| 2630 | |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 2631 | static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy, |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 2632 | struct wireless_dev *wdev, |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 2633 | u64 cookie) |
| 2634 | { |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 2635 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
Johannes Berg | 21f8358 | 2010-12-18 17:20:47 +0100 | [diff] [blame] | 2636 | struct ieee80211_local *local = sdata->local; |
| 2637 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 2638 | return ieee80211_cancel_roc(local, cookie, false); |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 2639 | } |
| 2640 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2641 | static int ieee80211_start_radar_detection(struct wiphy *wiphy, |
| 2642 | struct net_device *dev, |
Janusz Dziedzic | 31559f3 | 2014-02-21 19:46:13 +0100 | [diff] [blame] | 2643 | struct cfg80211_chan_def *chandef, |
| 2644 | u32 cac_time_ms) |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2645 | { |
| 2646 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2647 | struct ieee80211_local *local = sdata->local; |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2648 | int err; |
| 2649 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 2650 | mutex_lock(&local->mtx); |
| 2651 | if (!list_empty(&local->roc_list) || local->scanning) { |
| 2652 | err = -EBUSY; |
| 2653 | goto out_unlock; |
| 2654 | } |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2655 | |
| 2656 | /* whatever, but channel contexts should not complain about that one */ |
| 2657 | sdata->smps_mode = IEEE80211_SMPS_OFF; |
| 2658 | sdata->needed_rx_chains = local->rx_chains; |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2659 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2660 | err = ieee80211_vif_use_channel(sdata, chandef, |
| 2661 | IEEE80211_CHANCTX_SHARED); |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2662 | if (err) |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 2663 | goto out_unlock; |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2664 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2665 | ieee80211_queue_delayed_work(&sdata->local->hw, |
Janusz Dziedzic | 31559f3 | 2014-02-21 19:46:13 +0100 | [diff] [blame] | 2666 | &sdata->dfs_cac_timer_work, |
| 2667 | msecs_to_jiffies(cac_time_ms)); |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2668 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 2669 | out_unlock: |
| 2670 | mutex_unlock(&local->mtx); |
| 2671 | return err; |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 2672 | } |
| 2673 | |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2674 | static struct cfg80211_beacon_data * |
| 2675 | cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon) |
| 2676 | { |
| 2677 | struct cfg80211_beacon_data *new_beacon; |
| 2678 | u8 *pos; |
| 2679 | int len; |
| 2680 | |
| 2681 | len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len + |
| 2682 | beacon->proberesp_ies_len + beacon->assocresp_ies_len + |
| 2683 | beacon->probe_resp_len; |
| 2684 | |
| 2685 | new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL); |
| 2686 | if (!new_beacon) |
| 2687 | return NULL; |
| 2688 | |
| 2689 | pos = (u8 *)(new_beacon + 1); |
| 2690 | if (beacon->head_len) { |
| 2691 | new_beacon->head_len = beacon->head_len; |
| 2692 | new_beacon->head = pos; |
| 2693 | memcpy(pos, beacon->head, beacon->head_len); |
| 2694 | pos += beacon->head_len; |
| 2695 | } |
| 2696 | if (beacon->tail_len) { |
| 2697 | new_beacon->tail_len = beacon->tail_len; |
| 2698 | new_beacon->tail = pos; |
| 2699 | memcpy(pos, beacon->tail, beacon->tail_len); |
| 2700 | pos += beacon->tail_len; |
| 2701 | } |
| 2702 | if (beacon->beacon_ies_len) { |
| 2703 | new_beacon->beacon_ies_len = beacon->beacon_ies_len; |
| 2704 | new_beacon->beacon_ies = pos; |
| 2705 | memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len); |
| 2706 | pos += beacon->beacon_ies_len; |
| 2707 | } |
| 2708 | if (beacon->proberesp_ies_len) { |
| 2709 | new_beacon->proberesp_ies_len = beacon->proberesp_ies_len; |
| 2710 | new_beacon->proberesp_ies = pos; |
| 2711 | memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len); |
| 2712 | pos += beacon->proberesp_ies_len; |
| 2713 | } |
| 2714 | if (beacon->assocresp_ies_len) { |
| 2715 | new_beacon->assocresp_ies_len = beacon->assocresp_ies_len; |
| 2716 | new_beacon->assocresp_ies = pos; |
| 2717 | memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len); |
| 2718 | pos += beacon->assocresp_ies_len; |
| 2719 | } |
| 2720 | if (beacon->probe_resp_len) { |
| 2721 | new_beacon->probe_resp_len = beacon->probe_resp_len; |
| 2722 | beacon->probe_resp = pos; |
| 2723 | memcpy(pos, beacon->probe_resp, beacon->probe_resp_len); |
| 2724 | pos += beacon->probe_resp_len; |
| 2725 | } |
| 2726 | |
| 2727 | return new_beacon; |
| 2728 | } |
| 2729 | |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2730 | void ieee80211_csa_finish(struct ieee80211_vif *vif) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2731 | { |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2732 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 2733 | |
| 2734 | ieee80211_queue_work(&sdata->local->hw, |
| 2735 | &sdata->csa_finalize_work); |
| 2736 | } |
| 2737 | EXPORT_SYMBOL(ieee80211_csa_finish); |
| 2738 | |
Michal Kazior | 6619950 | 2014-04-09 15:11:00 +0200 | [diff] [blame] | 2739 | static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata, |
| 2740 | u32 *changed) |
| 2741 | { |
| 2742 | int err; |
| 2743 | |
| 2744 | switch (sdata->vif.type) { |
| 2745 | case NL80211_IFTYPE_AP: |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2746 | err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon, |
| 2747 | NULL); |
Michal Kazior | 6619950 | 2014-04-09 15:11:00 +0200 | [diff] [blame] | 2748 | kfree(sdata->u.ap.next_beacon); |
| 2749 | sdata->u.ap.next_beacon = NULL; |
| 2750 | |
| 2751 | if (err < 0) |
| 2752 | return err; |
| 2753 | *changed |= err; |
| 2754 | break; |
| 2755 | case NL80211_IFTYPE_ADHOC: |
| 2756 | err = ieee80211_ibss_finish_csa(sdata); |
| 2757 | if (err < 0) |
| 2758 | return err; |
| 2759 | *changed |= err; |
| 2760 | break; |
| 2761 | #ifdef CONFIG_MAC80211_MESH |
| 2762 | case NL80211_IFTYPE_MESH_POINT: |
| 2763 | err = ieee80211_mesh_finish_csa(sdata); |
| 2764 | if (err < 0) |
| 2765 | return err; |
| 2766 | *changed |= err; |
| 2767 | break; |
| 2768 | #endif |
| 2769 | default: |
| 2770 | WARN_ON(1); |
| 2771 | return -EINVAL; |
| 2772 | } |
| 2773 | |
| 2774 | return 0; |
| 2775 | } |
| 2776 | |
Michal Kazior | cf8767d | 2014-05-08 09:10:02 +0200 | [diff] [blame] | 2777 | static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata) |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2778 | { |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2779 | struct ieee80211_local *local = sdata->local; |
Michal Kazior | 6619950 | 2014-04-09 15:11:00 +0200 | [diff] [blame] | 2780 | u32 changed = 0; |
| 2781 | int err; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2782 | |
Michal Kazior | dbd7285 | 2014-01-29 07:56:21 +0100 | [diff] [blame] | 2783 | sdata_assert_lock(sdata); |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 2784 | lockdep_assert_held(&local->mtx); |
Michal Kazior | dbd7285 | 2014-01-29 07:56:21 +0100 | [diff] [blame] | 2785 | |
Michal Kazior | cc901de | 2014-01-29 07:56:20 +0100 | [diff] [blame] | 2786 | sdata->radar_required = sdata->csa_radar_required; |
Luciano Coelho | 33787fc | 2013-11-11 20:34:54 +0200 | [diff] [blame] | 2787 | err = ieee80211_vif_change_channel(sdata, &changed); |
Michal Kazior | cf8767d | 2014-05-08 09:10:02 +0200 | [diff] [blame] | 2788 | if (err < 0) |
| 2789 | return err; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2790 | |
Arik Nemtsov | 7578d57 | 2013-09-01 17:15:51 +0300 | [diff] [blame] | 2791 | if (!local->use_chanctx) { |
Luciano Coelho | 33787fc | 2013-11-11 20:34:54 +0200 | [diff] [blame] | 2792 | local->_oper_chandef = sdata->csa_chandef; |
Arik Nemtsov | 7578d57 | 2013-09-01 17:15:51 +0300 | [diff] [blame] | 2793 | ieee80211_hw_config(local, 0); |
| 2794 | } |
| 2795 | |
Simon Wunderlich | e487eae | 2013-11-21 18:19:51 +0100 | [diff] [blame] | 2796 | sdata->vif.csa_active = false; |
Michal Kazior | 97518af1 | 2014-01-29 07:56:18 +0100 | [diff] [blame] | 2797 | |
Michal Kazior | 6619950 | 2014-04-09 15:11:00 +0200 | [diff] [blame] | 2798 | err = ieee80211_set_after_csa_beacon(sdata, &changed); |
| 2799 | if (err) |
Michal Kazior | cf8767d | 2014-05-08 09:10:02 +0200 | [diff] [blame] | 2800 | return err; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2801 | |
Michal Kazior | faf046e | 2014-01-29 07:56:17 +0100 | [diff] [blame] | 2802 | ieee80211_bss_info_change_notify(sdata, changed); |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 2803 | cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef); |
| 2804 | |
Luciano Coelho | a46992b | 2014-06-13 16:30:07 +0300 | [diff] [blame] | 2805 | if (sdata->csa_block_tx) { |
| 2806 | ieee80211_wake_vif_queues(local, sdata, |
| 2807 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 2808 | sdata->csa_block_tx = false; |
| 2809 | } |
Michal Kazior | cf8767d | 2014-05-08 09:10:02 +0200 | [diff] [blame] | 2810 | |
| 2811 | return 0; |
| 2812 | } |
| 2813 | |
| 2814 | static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata) |
| 2815 | { |
| 2816 | if (__ieee80211_csa_finalize(sdata)) { |
| 2817 | sdata_info(sdata, "failed to finalize CSA, disconnecting\n"); |
| 2818 | cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev, |
| 2819 | GFP_KERNEL); |
| 2820 | } |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2821 | } |
| 2822 | |
| 2823 | void ieee80211_csa_finalize_work(struct work_struct *work) |
| 2824 | { |
| 2825 | struct ieee80211_sub_if_data *sdata = |
| 2826 | container_of(work, struct ieee80211_sub_if_data, |
| 2827 | csa_finalize_work); |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 2828 | struct ieee80211_local *local = sdata->local; |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2829 | |
| 2830 | sdata_lock(sdata); |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 2831 | mutex_lock(&local->mtx); |
| 2832 | |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2833 | /* AP might have been stopped while waiting for the lock. */ |
| 2834 | if (!sdata->vif.csa_active) |
| 2835 | goto unlock; |
| 2836 | |
| 2837 | if (!ieee80211_sdata_running(sdata)) |
| 2838 | goto unlock; |
| 2839 | |
| 2840 | ieee80211_csa_finalize(sdata); |
Simon Wunderlich | e487eae | 2013-11-21 18:19:51 +0100 | [diff] [blame] | 2841 | |
| 2842 | unlock: |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 2843 | mutex_unlock(&local->mtx); |
Simon Wunderlich | e487eae | 2013-11-21 18:19:51 +0100 | [diff] [blame] | 2844 | sdata_unlock(sdata); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2845 | } |
| 2846 | |
Michal Kazior | 37fa2bd | 2014-02-28 15:59:06 +0100 | [diff] [blame] | 2847 | static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata, |
| 2848 | struct cfg80211_csa_settings *params, |
| 2849 | u32 *changed) |
| 2850 | { |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2851 | struct ieee80211_csa_settings csa = {}; |
Michal Kazior | 37fa2bd | 2014-02-28 15:59:06 +0100 | [diff] [blame] | 2852 | int err; |
| 2853 | |
| 2854 | switch (sdata->vif.type) { |
| 2855 | case NL80211_IFTYPE_AP: |
| 2856 | sdata->u.ap.next_beacon = |
| 2857 | cfg80211_beacon_dup(¶ms->beacon_after); |
| 2858 | if (!sdata->u.ap.next_beacon) |
| 2859 | return -ENOMEM; |
| 2860 | |
| 2861 | /* |
| 2862 | * With a count of 0, we don't have to wait for any |
| 2863 | * TBTT before switching, so complete the CSA |
| 2864 | * immediately. In theory, with a count == 1 we |
| 2865 | * should delay the switch until just before the next |
| 2866 | * TBTT, but that would complicate things so we switch |
| 2867 | * immediately too. If we would delay the switch |
| 2868 | * until the next TBTT, we would have to set the probe |
| 2869 | * response here. |
| 2870 | * |
| 2871 | * TODO: A channel switch with count <= 1 without |
| 2872 | * sending a CSA action frame is kind of useless, |
| 2873 | * because the clients won't know we're changing |
| 2874 | * channels. The action frame must be implemented |
| 2875 | * either here or in the userspace. |
| 2876 | */ |
| 2877 | if (params->count <= 1) |
| 2878 | break; |
| 2879 | |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2880 | if ((params->n_counter_offsets_beacon > |
| 2881 | IEEE80211_MAX_CSA_COUNTERS_NUM) || |
| 2882 | (params->n_counter_offsets_presp > |
| 2883 | IEEE80211_MAX_CSA_COUNTERS_NUM)) |
| 2884 | return -EINVAL; |
Andrei Otcheretianski | 9a774c7 | 2014-05-09 14:11:46 +0300 | [diff] [blame] | 2885 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2886 | csa.counter_offsets_beacon = params->counter_offsets_beacon; |
| 2887 | csa.counter_offsets_presp = params->counter_offsets_presp; |
| 2888 | csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon; |
| 2889 | csa.n_counter_offsets_presp = params->n_counter_offsets_presp; |
| 2890 | csa.count = params->count; |
Andrei Otcheretianski | 0d06d9b | 2014-05-09 14:11:47 +0300 | [diff] [blame] | 2891 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 2892 | err = ieee80211_assign_beacon(sdata, ¶ms->beacon_csa, &csa); |
Michal Kazior | 37fa2bd | 2014-02-28 15:59:06 +0100 | [diff] [blame] | 2893 | if (err < 0) { |
| 2894 | kfree(sdata->u.ap.next_beacon); |
| 2895 | return err; |
| 2896 | } |
| 2897 | *changed |= err; |
| 2898 | |
| 2899 | break; |
| 2900 | case NL80211_IFTYPE_ADHOC: |
| 2901 | if (!sdata->vif.bss_conf.ibss_joined) |
| 2902 | return -EINVAL; |
| 2903 | |
| 2904 | if (params->chandef.width != sdata->u.ibss.chandef.width) |
| 2905 | return -EINVAL; |
| 2906 | |
| 2907 | switch (params->chandef.width) { |
| 2908 | case NL80211_CHAN_WIDTH_40: |
| 2909 | if (cfg80211_get_chandef_type(¶ms->chandef) != |
| 2910 | cfg80211_get_chandef_type(&sdata->u.ibss.chandef)) |
| 2911 | return -EINVAL; |
| 2912 | case NL80211_CHAN_WIDTH_5: |
| 2913 | case NL80211_CHAN_WIDTH_10: |
| 2914 | case NL80211_CHAN_WIDTH_20_NOHT: |
| 2915 | case NL80211_CHAN_WIDTH_20: |
| 2916 | break; |
| 2917 | default: |
| 2918 | return -EINVAL; |
| 2919 | } |
| 2920 | |
| 2921 | /* changes into another band are not supported */ |
| 2922 | if (sdata->u.ibss.chandef.chan->band != |
| 2923 | params->chandef.chan->band) |
| 2924 | return -EINVAL; |
| 2925 | |
| 2926 | /* see comments in the NL80211_IFTYPE_AP block */ |
| 2927 | if (params->count > 1) { |
| 2928 | err = ieee80211_ibss_csa_beacon(sdata, params); |
| 2929 | if (err < 0) |
| 2930 | return err; |
| 2931 | *changed |= err; |
| 2932 | } |
| 2933 | |
| 2934 | ieee80211_send_action_csa(sdata, params); |
| 2935 | |
| 2936 | break; |
| 2937 | #ifdef CONFIG_MAC80211_MESH |
| 2938 | case NL80211_IFTYPE_MESH_POINT: { |
| 2939 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 2940 | |
| 2941 | if (params->chandef.width != sdata->vif.bss_conf.chandef.width) |
| 2942 | return -EINVAL; |
| 2943 | |
| 2944 | /* changes into another band are not supported */ |
| 2945 | if (sdata->vif.bss_conf.chandef.chan->band != |
| 2946 | params->chandef.chan->band) |
| 2947 | return -EINVAL; |
| 2948 | |
| 2949 | if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) { |
| 2950 | ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT; |
| 2951 | if (!ifmsh->pre_value) |
| 2952 | ifmsh->pre_value = 1; |
| 2953 | else |
| 2954 | ifmsh->pre_value++; |
| 2955 | } |
| 2956 | |
| 2957 | /* see comments in the NL80211_IFTYPE_AP block */ |
| 2958 | if (params->count > 1) { |
| 2959 | err = ieee80211_mesh_csa_beacon(sdata, params); |
| 2960 | if (err < 0) { |
| 2961 | ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE; |
| 2962 | return err; |
| 2963 | } |
| 2964 | *changed |= err; |
| 2965 | } |
| 2966 | |
| 2967 | if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) |
| 2968 | ieee80211_send_action_csa(sdata, params); |
| 2969 | |
| 2970 | break; |
| 2971 | } |
| 2972 | #endif |
| 2973 | default: |
| 2974 | return -EOPNOTSUPP; |
| 2975 | } |
| 2976 | |
| 2977 | return 0; |
| 2978 | } |
| 2979 | |
Luciano Coelho | f29f58a | 2014-05-07 20:05:12 +0300 | [diff] [blame] | 2980 | static int |
| 2981 | __ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev, |
| 2982 | struct cfg80211_csa_settings *params) |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2983 | { |
| 2984 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2985 | struct ieee80211_local *local = sdata->local; |
Michal Kazior | 2b32713 | 2014-04-09 15:29:32 +0200 | [diff] [blame] | 2986 | struct ieee80211_chanctx_conf *conf; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2987 | struct ieee80211_chanctx *chanctx; |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 2988 | int err, num_chanctx, changed = 0; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2989 | |
Michal Kazior | dbd7285 | 2014-01-29 07:56:21 +0100 | [diff] [blame] | 2990 | sdata_assert_lock(sdata); |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 2991 | lockdep_assert_held(&local->mtx); |
Simon Wunderlich | 7ca133b | 2013-11-21 18:19:50 +0100 | [diff] [blame] | 2992 | |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 2993 | if (!list_empty(&local->roc_list) || local->scanning) |
| 2994 | return -EBUSY; |
| 2995 | |
| 2996 | if (sdata->wdev.cac_started) |
| 2997 | return -EBUSY; |
| 2998 | |
| 2999 | if (cfg80211_chandef_identical(¶ms->chandef, |
| 3000 | &sdata->vif.bss_conf.chandef)) |
| 3001 | return -EINVAL; |
| 3002 | |
Michal Kazior | 2b32713 | 2014-04-09 15:29:32 +0200 | [diff] [blame] | 3003 | mutex_lock(&local->chanctx_mtx); |
| 3004 | conf = rcu_dereference_protected(sdata->vif.chanctx_conf, |
| 3005 | lockdep_is_held(&local->chanctx_mtx)); |
| 3006 | if (!conf) { |
| 3007 | mutex_unlock(&local->chanctx_mtx); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3008 | return -EBUSY; |
| 3009 | } |
| 3010 | |
| 3011 | /* don't handle for multi-VIF cases */ |
Michal Kazior | 2b32713 | 2014-04-09 15:29:32 +0200 | [diff] [blame] | 3012 | chanctx = container_of(conf, struct ieee80211_chanctx, conf); |
Michal Kazior | c0166da | 2014-04-09 15:29:33 +0200 | [diff] [blame] | 3013 | if (ieee80211_chanctx_refcount(local, chanctx) > 1) { |
Michal Kazior | 2b32713 | 2014-04-09 15:29:32 +0200 | [diff] [blame] | 3014 | mutex_unlock(&local->chanctx_mtx); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3015 | return -EBUSY; |
| 3016 | } |
| 3017 | num_chanctx = 0; |
| 3018 | list_for_each_entry_rcu(chanctx, &local->chanctx_list, list) |
| 3019 | num_chanctx++; |
Michal Kazior | 2b32713 | 2014-04-09 15:29:32 +0200 | [diff] [blame] | 3020 | mutex_unlock(&local->chanctx_mtx); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3021 | |
| 3022 | if (num_chanctx > 1) |
| 3023 | return -EBUSY; |
| 3024 | |
| 3025 | /* don't allow another channel switch if one is already active. */ |
| 3026 | if (sdata->vif.csa_active) |
| 3027 | return -EBUSY; |
| 3028 | |
Michal Kazior | 37fa2bd | 2014-02-28 15:59:06 +0100 | [diff] [blame] | 3029 | err = ieee80211_set_csa_beacon(sdata, params, &changed); |
| 3030 | if (err) |
| 3031 | return err; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3032 | |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3033 | sdata->csa_radar_required = params->radar_required; |
Luciano Coelho | 33787fc | 2013-11-11 20:34:54 +0200 | [diff] [blame] | 3034 | sdata->csa_chandef = params->chandef; |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 3035 | sdata->csa_block_tx = params->block_tx; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3036 | sdata->vif.csa_active = true; |
| 3037 | |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 3038 | if (sdata->csa_block_tx) |
Luciano Coelho | a46992b | 2014-06-13 16:30:07 +0300 | [diff] [blame] | 3039 | ieee80211_stop_vif_queues(local, sdata, |
| 3040 | IEEE80211_QUEUE_STOP_REASON_CSA); |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 3041 | |
Luciano Coelho | 66e01cf | 2014-01-13 19:43:00 +0200 | [diff] [blame] | 3042 | if (changed) { |
| 3043 | ieee80211_bss_info_change_notify(sdata, changed); |
| 3044 | drv_channel_switch_beacon(sdata, ¶ms->chandef); |
| 3045 | } else { |
| 3046 | /* if the beacon didn't change, we can finalize immediately */ |
| 3047 | ieee80211_csa_finalize(sdata); |
| 3048 | } |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3049 | |
| 3050 | return 0; |
| 3051 | } |
| 3052 | |
Michal Kazior | 59af692 | 2014-04-09 15:10:59 +0200 | [diff] [blame] | 3053 | int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev, |
| 3054 | struct cfg80211_csa_settings *params) |
| 3055 | { |
| 3056 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3057 | struct ieee80211_local *local = sdata->local; |
| 3058 | int err; |
| 3059 | |
| 3060 | mutex_lock(&local->mtx); |
| 3061 | err = __ieee80211_channel_switch(wiphy, dev, params); |
| 3062 | mutex_unlock(&local->mtx); |
| 3063 | |
| 3064 | return err; |
| 3065 | } |
| 3066 | |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 3067 | static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev, |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3068 | struct cfg80211_mgmt_tx_params *params, |
| 3069 | u64 *cookie) |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 3070 | { |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 3071 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3072 | struct ieee80211_local *local = sdata->local; |
| 3073 | struct sk_buff *skb; |
| 3074 | struct sta_info *sta; |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3075 | const struct ieee80211_mgmt *mgmt = (void *)params->buf; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3076 | bool need_offchan = false; |
Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 3077 | u32 flags; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3078 | int ret; |
Andrei Otcheretianski | 387910c | 2014-05-09 14:11:45 +0300 | [diff] [blame] | 3079 | u8 *data; |
Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 3080 | |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3081 | if (params->dont_wait_for_ack) |
Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 3082 | flags = IEEE80211_TX_CTL_NO_ACK; |
| 3083 | else |
| 3084 | flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX | |
| 3085 | IEEE80211_TX_CTL_REQ_TX_STATUS; |
| 3086 | |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3087 | if (params->no_cck) |
Rajkumar Manoharan | aad14ce | 2011-09-25 14:53:31 +0530 | [diff] [blame] | 3088 | flags |= IEEE80211_TX_CTL_NO_CCK_RATE; |
| 3089 | |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3090 | switch (sdata->vif.type) { |
| 3091 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3092 | if (!sdata->vif.bss_conf.ibss_joined) |
| 3093 | need_offchan = true; |
| 3094 | /* fall through */ |
| 3095 | #ifdef CONFIG_MAC80211_MESH |
| 3096 | case NL80211_IFTYPE_MESH_POINT: |
| 3097 | if (ieee80211_vif_is_mesh(&sdata->vif) && |
| 3098 | !sdata->u.mesh.mesh_id_len) |
| 3099 | need_offchan = true; |
| 3100 | /* fall through */ |
| 3101 | #endif |
Johannes Berg | 663fcaf | 2010-09-30 21:06:09 +0200 | [diff] [blame] | 3102 | case NL80211_IFTYPE_AP: |
| 3103 | case NL80211_IFTYPE_AP_VLAN: |
| 3104 | case NL80211_IFTYPE_P2P_GO: |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3105 | if (sdata->vif.type != NL80211_IFTYPE_ADHOC && |
| 3106 | !ieee80211_vif_is_mesh(&sdata->vif) && |
| 3107 | !rcu_access_pointer(sdata->bss->beacon)) |
| 3108 | need_offchan = true; |
Johannes Berg | 663fcaf | 2010-09-30 21:06:09 +0200 | [diff] [blame] | 3109 | if (!ieee80211_is_action(mgmt->frame_control) || |
Thomas Pedersen | ac49e1a | 2013-06-20 23:50:58 -0700 | [diff] [blame] | 3110 | mgmt->u.action.category == WLAN_CATEGORY_PUBLIC || |
Simon Wunderlich | cd7760e | 2013-08-28 13:41:31 +0200 | [diff] [blame] | 3111 | mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED || |
| 3112 | mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3113 | break; |
| 3114 | rcu_read_lock(); |
| 3115 | sta = sta_info_get(sdata, mgmt->da); |
| 3116 | rcu_read_unlock(); |
| 3117 | if (!sta) |
| 3118 | return -ENOLINK; |
| 3119 | break; |
| 3120 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 663fcaf | 2010-09-30 21:06:09 +0200 | [diff] [blame] | 3121 | case NL80211_IFTYPE_P2P_CLIENT: |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3122 | if (!sdata->u.mgd.associated) |
| 3123 | need_offchan = true; |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3124 | break; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 3125 | case NL80211_IFTYPE_P2P_DEVICE: |
| 3126 | need_offchan = true; |
| 3127 | break; |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3128 | default: |
| 3129 | return -EOPNOTSUPP; |
| 3130 | } |
| 3131 | |
Antonio Quartulli | f7aeb6f | 2013-06-11 14:20:00 +0200 | [diff] [blame] | 3132 | /* configurations requiring offchan cannot work if no channel has been |
| 3133 | * specified |
| 3134 | */ |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3135 | if (need_offchan && !params->chan) |
Antonio Quartulli | f7aeb6f | 2013-06-11 14:20:00 +0200 | [diff] [blame] | 3136 | return -EINVAL; |
| 3137 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3138 | mutex_lock(&local->mtx); |
| 3139 | |
| 3140 | /* Check if the operating channel is the requested channel */ |
| 3141 | if (!need_offchan) { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3142 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 3143 | |
| 3144 | rcu_read_lock(); |
| 3145 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 3146 | |
Antonio Quartulli | f7aeb6f | 2013-06-11 14:20:00 +0200 | [diff] [blame] | 3147 | if (chanctx_conf) { |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3148 | need_offchan = params->chan && |
| 3149 | (params->chan != |
| 3150 | chanctx_conf->def.chan); |
| 3151 | } else if (!params->chan) { |
Antonio Quartulli | f7aeb6f | 2013-06-11 14:20:00 +0200 | [diff] [blame] | 3152 | ret = -EINVAL; |
| 3153 | rcu_read_unlock(); |
| 3154 | goto out_unlock; |
| 3155 | } else { |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3156 | need_offchan = true; |
Antonio Quartulli | f7aeb6f | 2013-06-11 14:20:00 +0200 | [diff] [blame] | 3157 | } |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3158 | rcu_read_unlock(); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3159 | } |
| 3160 | |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3161 | if (need_offchan && !params->offchan) { |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3162 | ret = -EBUSY; |
| 3163 | goto out_unlock; |
| 3164 | } |
| 3165 | |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3166 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3167 | if (!skb) { |
| 3168 | ret = -ENOMEM; |
| 3169 | goto out_unlock; |
| 3170 | } |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3171 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 3172 | |
Andrei Otcheretianski | 387910c | 2014-05-09 14:11:45 +0300 | [diff] [blame] | 3173 | data = skb_put(skb, params->len); |
| 3174 | memcpy(data, params->buf, params->len); |
| 3175 | |
| 3176 | /* Update CSA counters */ |
| 3177 | if (sdata->vif.csa_active && |
| 3178 | (sdata->vif.type == NL80211_IFTYPE_AP || |
| 3179 | sdata->vif.type == NL80211_IFTYPE_ADHOC) && |
| 3180 | params->n_csa_offsets) { |
| 3181 | int i; |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 3182 | struct beacon_data *beacon = NULL; |
Andrei Otcheretianski | 387910c | 2014-05-09 14:11:45 +0300 | [diff] [blame] | 3183 | |
Michal Kazior | af296bd | 2014-06-05 14:21:36 +0200 | [diff] [blame] | 3184 | rcu_read_lock(); |
| 3185 | |
| 3186 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 3187 | beacon = rcu_dereference(sdata->u.ap.beacon); |
| 3188 | else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 3189 | beacon = rcu_dereference(sdata->u.ibss.presp); |
| 3190 | else if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 3191 | beacon = rcu_dereference(sdata->u.mesh.beacon); |
| 3192 | |
| 3193 | if (beacon) |
| 3194 | for (i = 0; i < params->n_csa_offsets; i++) |
| 3195 | data[params->csa_offsets[i]] = |
| 3196 | beacon->csa_current_counter; |
| 3197 | |
| 3198 | rcu_read_unlock(); |
Andrei Otcheretianski | 387910c | 2014-05-09 14:11:45 +0300 | [diff] [blame] | 3199 | } |
Johannes Berg | 9d38d85 | 2010-06-09 17:20:33 +0200 | [diff] [blame] | 3200 | |
| 3201 | IEEE80211_SKB_CB(skb)->flags = flags; |
| 3202 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3203 | skb->dev = sdata->dev; |
| 3204 | |
| 3205 | if (!need_offchan) { |
Nicolas Cavallari | 7f9f78a | 2012-07-16 18:36:52 +0200 | [diff] [blame] | 3206 | *cookie = (unsigned long) skb; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3207 | ieee80211_tx_skb(sdata, skb); |
| 3208 | ret = 0; |
| 3209 | goto out_unlock; |
| 3210 | } |
| 3211 | |
Seth Forshee | 6c17b77 | 2013-02-11 11:21:07 -0600 | [diff] [blame] | 3212 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN | |
| 3213 | IEEE80211_TX_INTFL_OFFCHAN_TX_OK; |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3214 | if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 3215 | IEEE80211_SKB_CB(skb)->hw_queue = |
| 3216 | local->hw.offchannel_tx_hw_queue; |
| 3217 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3218 | /* This will handle all kinds of coalescing and immediate TX */ |
Andrei Otcheretianski | b176e62 | 2013-11-18 19:06:49 +0200 | [diff] [blame] | 3219 | ret = ieee80211_start_roc_work(local, sdata, params->chan, |
| 3220 | params->wait, cookie, skb, |
Ilan Peer | d339d5c | 2013-02-12 09:34:13 +0200 | [diff] [blame] | 3221 | IEEE80211_ROC_TYPE_MGMT_TX); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3222 | if (ret) |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 3223 | kfree_skb(skb); |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3224 | out_unlock: |
| 3225 | mutex_unlock(&local->mtx); |
| 3226 | return ret; |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 3227 | } |
| 3228 | |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 3229 | static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy, |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 3230 | struct wireless_dev *wdev, |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 3231 | u64 cookie) |
| 3232 | { |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 3233 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 3234 | |
Johannes Berg | 2eb278e | 2012-06-05 14:28:42 +0200 | [diff] [blame] | 3235 | return ieee80211_cancel_roc(local, cookie, true); |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 3236 | } |
| 3237 | |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 3238 | static void ieee80211_mgmt_frame_register(struct wiphy *wiphy, |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 3239 | struct wireless_dev *wdev, |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 3240 | u16 frame_type, bool reg) |
| 3241 | { |
| 3242 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3243 | |
Will Hawkins | 6abe056 | 2012-06-20 11:51:14 -0400 | [diff] [blame] | 3244 | switch (frame_type) { |
Will Hawkins | 6abe056 | 2012-06-20 11:51:14 -0400 | [diff] [blame] | 3245 | case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ: |
| 3246 | if (reg) |
| 3247 | local->probe_req_reg++; |
| 3248 | else |
| 3249 | local->probe_req_reg--; |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 3250 | |
Felix Fietkau | 35f5149 | 2012-10-31 15:50:34 +0100 | [diff] [blame] | 3251 | if (!local->open_count) |
| 3252 | break; |
| 3253 | |
Will Hawkins | 6abe056 | 2012-06-20 11:51:14 -0400 | [diff] [blame] | 3254 | ieee80211_queue_work(&local->hw, &local->reconfig_filter); |
| 3255 | break; |
| 3256 | default: |
| 3257 | break; |
| 3258 | } |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 3259 | } |
| 3260 | |
Bruno Randolf | 15d9675 | 2010-11-10 12:50:56 +0900 | [diff] [blame] | 3261 | static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant) |
| 3262 | { |
| 3263 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3264 | |
| 3265 | if (local->started) |
| 3266 | return -EOPNOTSUPP; |
| 3267 | |
| 3268 | return drv_set_antenna(local, tx_ant, rx_ant); |
| 3269 | } |
| 3270 | |
| 3271 | static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant) |
| 3272 | { |
| 3273 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3274 | |
| 3275 | return drv_get_antenna(local, tx_ant, rx_ant); |
| 3276 | } |
| 3277 | |
Johannes Berg | c68f4b8 | 2011-07-05 16:35:41 +0200 | [diff] [blame] | 3278 | static int ieee80211_set_rekey_data(struct wiphy *wiphy, |
| 3279 | struct net_device *dev, |
| 3280 | struct cfg80211_gtk_rekey_data *data) |
| 3281 | { |
| 3282 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3283 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3284 | |
| 3285 | if (!local->ops->set_rekey_data) |
| 3286 | return -EOPNOTSUPP; |
| 3287 | |
| 3288 | drv_set_rekey_data(local, sdata, data); |
| 3289 | |
| 3290 | return 0; |
| 3291 | } |
| 3292 | |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3293 | static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev, |
| 3294 | const u8 *peer, u64 *cookie) |
| 3295 | { |
| 3296 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3297 | struct ieee80211_local *local = sdata->local; |
| 3298 | struct ieee80211_qos_hdr *nullfunc; |
| 3299 | struct sk_buff *skb; |
| 3300 | int size = sizeof(*nullfunc); |
| 3301 | __le16 fc; |
| 3302 | bool qos; |
| 3303 | struct ieee80211_tx_info *info; |
| 3304 | struct sta_info *sta; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3305 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 3306 | enum ieee80211_band band; |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3307 | |
| 3308 | rcu_read_lock(); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3309 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 3310 | if (WARN_ON(!chanctx_conf)) { |
| 3311 | rcu_read_unlock(); |
| 3312 | return -EINVAL; |
| 3313 | } |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 3314 | band = chanctx_conf->def.chan->band; |
Felix Fietkau | 03bb7f4 | 2013-09-29 21:39:33 +0200 | [diff] [blame] | 3315 | sta = sta_info_get_bss(sdata, peer); |
Johannes Berg | b4487c2 | 2011-11-11 20:22:30 +0100 | [diff] [blame] | 3316 | if (sta) { |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3317 | qos = test_sta_flag(sta, WLAN_STA_WME); |
Johannes Berg | b4487c2 | 2011-11-11 20:22:30 +0100 | [diff] [blame] | 3318 | } else { |
| 3319 | rcu_read_unlock(); |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3320 | return -ENOLINK; |
Johannes Berg | b4487c2 | 2011-11-11 20:22:30 +0100 | [diff] [blame] | 3321 | } |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3322 | |
| 3323 | if (qos) { |
| 3324 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 3325 | IEEE80211_STYPE_QOS_NULLFUNC | |
| 3326 | IEEE80211_FCTL_FROMDS); |
| 3327 | } else { |
| 3328 | size -= 2; |
| 3329 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 3330 | IEEE80211_STYPE_NULLFUNC | |
| 3331 | IEEE80211_FCTL_FROMDS); |
| 3332 | } |
| 3333 | |
| 3334 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + size); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3335 | if (!skb) { |
| 3336 | rcu_read_unlock(); |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3337 | return -ENOMEM; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3338 | } |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3339 | |
| 3340 | skb->dev = dev; |
| 3341 | |
| 3342 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 3343 | |
| 3344 | nullfunc = (void *) skb_put(skb, size); |
| 3345 | nullfunc->frame_control = fc; |
| 3346 | nullfunc->duration_id = 0; |
| 3347 | memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN); |
| 3348 | memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN); |
| 3349 | memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN); |
| 3350 | nullfunc->seq_ctrl = 0; |
| 3351 | |
| 3352 | info = IEEE80211_SKB_CB(skb); |
| 3353 | |
| 3354 | info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS | |
| 3355 | IEEE80211_TX_INTFL_NL80211_FRAME_TX; |
| 3356 | |
| 3357 | skb_set_queue_mapping(skb, IEEE80211_AC_VO); |
| 3358 | skb->priority = 7; |
| 3359 | if (qos) |
| 3360 | nullfunc->qos_ctrl = cpu_to_le16(7); |
| 3361 | |
| 3362 | local_bh_disable(); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3363 | ieee80211_xmit(sdata, skb, band); |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3364 | local_bh_enable(); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3365 | rcu_read_unlock(); |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3366 | |
| 3367 | *cookie = (unsigned long) skb; |
| 3368 | return 0; |
| 3369 | } |
| 3370 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 3371 | static int ieee80211_cfg_get_channel(struct wiphy *wiphy, |
| 3372 | struct wireless_dev *wdev, |
| 3373 | struct cfg80211_chan_def *chandef) |
Johannes Berg | 5b7ccaf | 2012-07-12 19:45:08 +0200 | [diff] [blame] | 3374 | { |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3375 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
Felix Fietkau | cb601ff | 2013-02-23 19:02:14 +0100 | [diff] [blame] | 3376 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3377 | struct ieee80211_chanctx_conf *chanctx_conf; |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 3378 | int ret = -ENODATA; |
Johannes Berg | 5b7ccaf | 2012-07-12 19:45:08 +0200 | [diff] [blame] | 3379 | |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3380 | rcu_read_lock(); |
Johannes Berg | feda302 | 2013-02-28 09:59:22 +0100 | [diff] [blame] | 3381 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 3382 | if (chanctx_conf) { |
| 3383 | *chandef = chanctx_conf->def; |
| 3384 | ret = 0; |
| 3385 | } else if (local->open_count > 0 && |
| 3386 | local->open_count == local->monitors && |
| 3387 | sdata->vif.type == NL80211_IFTYPE_MONITOR) { |
| 3388 | if (local->use_chanctx) |
| 3389 | *chandef = local->monitor_chandef; |
| 3390 | else |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 3391 | *chandef = local->_oper_chandef; |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 3392 | ret = 0; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 3393 | } |
| 3394 | rcu_read_unlock(); |
| 3395 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 3396 | return ret; |
Johannes Berg | 5b7ccaf | 2012-07-12 19:45:08 +0200 | [diff] [blame] | 3397 | } |
| 3398 | |
Johannes Berg | 6d52563 | 2012-04-04 15:05:25 +0200 | [diff] [blame] | 3399 | #ifdef CONFIG_PM |
| 3400 | static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled) |
| 3401 | { |
| 3402 | drv_set_wakeup(wiphy_priv(wiphy), enabled); |
| 3403 | } |
| 3404 | #endif |
| 3405 | |
Kyeyoon Park | 32db6b5 | 2013-12-16 23:04:43 -0800 | [diff] [blame] | 3406 | static int ieee80211_set_qos_map(struct wiphy *wiphy, |
| 3407 | struct net_device *dev, |
| 3408 | struct cfg80211_qos_map *qos_map) |
| 3409 | { |
| 3410 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3411 | struct mac80211_qos_map *new_qos_map, *old_qos_map; |
| 3412 | |
| 3413 | if (qos_map) { |
| 3414 | new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL); |
| 3415 | if (!new_qos_map) |
| 3416 | return -ENOMEM; |
| 3417 | memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map)); |
| 3418 | } else { |
| 3419 | /* A NULL qos_map was passed to disable QoS mapping */ |
| 3420 | new_qos_map = NULL; |
| 3421 | } |
| 3422 | |
Johannes Berg | 194ff52 | 2013-12-30 23:12:37 +0100 | [diff] [blame] | 3423 | old_qos_map = sdata_dereference(sdata->qos_map, sdata); |
Kyeyoon Park | 32db6b5 | 2013-12-16 23:04:43 -0800 | [diff] [blame] | 3424 | rcu_assign_pointer(sdata->qos_map, new_qos_map); |
| 3425 | if (old_qos_map) |
| 3426 | kfree_rcu(old_qos_map, rcu_head); |
| 3427 | |
| 3428 | return 0; |
| 3429 | } |
| 3430 | |
Jouni Malinen | 3b1700b | 2014-04-28 11:22:25 +0300 | [diff] [blame] | 3431 | static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy, |
| 3432 | struct net_device *dev, |
| 3433 | struct cfg80211_chan_def *chandef) |
| 3434 | { |
| 3435 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3436 | int ret; |
| 3437 | u32 changed = 0; |
| 3438 | |
| 3439 | ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed); |
| 3440 | if (ret == 0) |
| 3441 | ieee80211_bss_info_change_notify(sdata, changed); |
| 3442 | |
| 3443 | return ret; |
| 3444 | } |
| 3445 | |
Johannes Berg | 8a47cea | 2014-01-20 23:55:44 +0100 | [diff] [blame] | 3446 | const struct cfg80211_ops mac80211_config_ops = { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3447 | .add_virtual_intf = ieee80211_add_iface, |
| 3448 | .del_virtual_intf = ieee80211_del_iface, |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 3449 | .change_virtual_intf = ieee80211_change_iface, |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 3450 | .start_p2p_device = ieee80211_start_p2p_device, |
| 3451 | .stop_p2p_device = ieee80211_stop_p2p_device, |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 3452 | .add_key = ieee80211_add_key, |
| 3453 | .del_key = ieee80211_del_key, |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 3454 | .get_key = ieee80211_get_key, |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 3455 | .set_default_key = ieee80211_config_default_key, |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 3456 | .set_default_mgmt_key = ieee80211_config_default_mgmt_key, |
Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 3457 | .start_ap = ieee80211_start_ap, |
| 3458 | .change_beacon = ieee80211_change_beacon, |
| 3459 | .stop_ap = ieee80211_stop_ap, |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 3460 | .add_station = ieee80211_add_station, |
| 3461 | .del_station = ieee80211_del_station, |
| 3462 | .change_station = ieee80211_change_station, |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 3463 | .get_station = ieee80211_get_station, |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 3464 | .dump_station = ieee80211_dump_station, |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 3465 | .dump_survey = ieee80211_dump_survey, |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 3466 | #ifdef CONFIG_MAC80211_MESH |
| 3467 | .add_mpath = ieee80211_add_mpath, |
| 3468 | .del_mpath = ieee80211_del_mpath, |
| 3469 | .change_mpath = ieee80211_change_mpath, |
| 3470 | .get_mpath = ieee80211_get_mpath, |
| 3471 | .dump_mpath = ieee80211_dump_mpath, |
Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3472 | .update_mesh_config = ieee80211_update_mesh_config, |
| 3473 | .get_mesh_config = ieee80211_get_mesh_config, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3474 | .join_mesh = ieee80211_join_mesh, |
| 3475 | .leave_mesh = ieee80211_leave_mesh, |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 3476 | #endif |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3477 | .change_bss = ieee80211_change_bss, |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 3478 | .set_txq_params = ieee80211_set_txq_params, |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 3479 | .set_monitor_channel = ieee80211_set_monitor_channel, |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 3480 | .suspend = ieee80211_suspend, |
| 3481 | .resume = ieee80211_resume, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 3482 | .scan = ieee80211_scan, |
Luciano Coelho | 79f460c | 2011-05-11 17:09:36 +0300 | [diff] [blame] | 3483 | .sched_scan_start = ieee80211_sched_scan_start, |
| 3484 | .sched_scan_stop = ieee80211_sched_scan_stop, |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 3485 | .auth = ieee80211_auth, |
| 3486 | .assoc = ieee80211_assoc, |
| 3487 | .deauth = ieee80211_deauth, |
| 3488 | .disassoc = ieee80211_disassoc, |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 3489 | .join_ibss = ieee80211_join_ibss, |
| 3490 | .leave_ibss = ieee80211_leave_ibss, |
Antonio Quartulli | 391e53e | 2012-11-02 13:27:49 +0100 | [diff] [blame] | 3491 | .set_mcast_rate = ieee80211_set_mcast_rate, |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 3492 | .set_wiphy_params = ieee80211_set_wiphy_params, |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 3493 | .set_tx_power = ieee80211_set_tx_power, |
| 3494 | .get_tx_power = ieee80211_get_tx_power, |
Johannes Berg | ab737a4 | 2009-07-01 21:26:58 +0200 | [diff] [blame] | 3495 | .set_wds_peer = ieee80211_set_wds_peer, |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 3496 | .rfkill_poll = ieee80211_rfkill_poll, |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 3497 | CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd) |
Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 3498 | CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump) |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 3499 | .set_power_mgmt = ieee80211_set_power_mgmt, |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 3500 | .set_bitrate_mask = ieee80211_set_bitrate_mask, |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 3501 | .remain_on_channel = ieee80211_remain_on_channel, |
| 3502 | .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel, |
Johannes Berg | 2e161f78 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 3503 | .mgmt_tx = ieee80211_mgmt_tx, |
Johannes Berg | f30221e | 2010-11-25 10:02:30 +0100 | [diff] [blame] | 3504 | .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait, |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 3505 | .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config, |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 3506 | .mgmt_frame_register = ieee80211_mgmt_frame_register, |
Bruno Randolf | 15d9675 | 2010-11-10 12:50:56 +0900 | [diff] [blame] | 3507 | .set_antenna = ieee80211_set_antenna, |
| 3508 | .get_antenna = ieee80211_get_antenna, |
Johannes Berg | c68f4b8 | 2011-07-05 16:35:41 +0200 | [diff] [blame] | 3509 | .set_rekey_data = ieee80211_set_rekey_data, |
Arik Nemtsov | dfe018b | 2011-09-28 14:12:52 +0300 | [diff] [blame] | 3510 | .tdls_oper = ieee80211_tdls_oper, |
| 3511 | .tdls_mgmt = ieee80211_tdls_mgmt, |
Johannes Berg | 0650073 | 2011-11-04 11:18:16 +0100 | [diff] [blame] | 3512 | .probe_client = ieee80211_probe_client, |
Simon Wunderlich | b53be79 | 2011-11-18 14:20:44 +0100 | [diff] [blame] | 3513 | .set_noack_map = ieee80211_set_noack_map, |
Johannes Berg | 6d52563 | 2012-04-04 15:05:25 +0200 | [diff] [blame] | 3514 | #ifdef CONFIG_PM |
| 3515 | .set_wakeup = ieee80211_set_wakeup, |
| 3516 | #endif |
Johannes Berg | 5b7ccaf | 2012-07-12 19:45:08 +0200 | [diff] [blame] | 3517 | .get_channel = ieee80211_cfg_get_channel, |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 3518 | .start_radar_detection = ieee80211_start_radar_detection, |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 3519 | .channel_switch = ieee80211_channel_switch, |
Kyeyoon Park | 32db6b5 | 2013-12-16 23:04:43 -0800 | [diff] [blame] | 3520 | .set_qos_map = ieee80211_set_qos_map, |
Jouni Malinen | 3b1700b | 2014-04-28 11:22:25 +0300 | [diff] [blame] | 3521 | .set_ap_chanwidth = ieee80211_set_ap_chanwidth, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3522 | }; |