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