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> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 12 | #include <net/net_namespace.h> |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 13 | #include <linux/rcupdate.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 14 | #include <net/cfg80211.h> |
| 15 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 16 | #include "driver-ops.h" |
Michael Wu | e0eb685 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 17 | #include "cfg.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 18 | #include "rate.h" |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 19 | #include "mesh.h" |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 20 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 21 | static bool nl80211_type_check(enum nl80211_iftype type) |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 22 | { |
| 23 | switch (type) { |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 24 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 25 | case NL80211_IFTYPE_STATION: |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 26 | case NL80211_IFTYPE_MONITOR: |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 27 | #ifdef CONFIG_MAC80211_MESH |
| 28 | case NL80211_IFTYPE_MESH_POINT: |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 29 | #endif |
Jouni Malinen | fbf1892 | 2008-10-30 19:50:30 +0200 | [diff] [blame] | 30 | case NL80211_IFTYPE_AP: |
| 31 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | b454048 | 2008-04-14 15:37:03 +0200 | [diff] [blame] | 32 | case NL80211_IFTYPE_WDS: |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 33 | return true; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 34 | default: |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 35 | return false; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 36 | } |
| 37 | } |
| 38 | |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 39 | static bool nl80211_params_check(enum nl80211_iftype type, |
| 40 | struct vif_params *params) |
| 41 | { |
| 42 | if (!nl80211_type_check(type)) |
| 43 | return false; |
| 44 | |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 45 | return true; |
| 46 | } |
| 47 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 48 | static int ieee80211_add_iface(struct wiphy *wiphy, char *name, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 49 | enum nl80211_iftype type, u32 *flags, |
| 50 | struct vif_params *params) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 51 | { |
| 52 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 53 | struct net_device *dev; |
| 54 | struct ieee80211_sub_if_data *sdata; |
| 55 | int err; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 56 | |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 57 | if (!nl80211_params_check(type, params)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 58 | return -EINVAL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 59 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 60 | err = ieee80211_if_add(local, name, &dev, type, params); |
| 61 | if (err || type != NL80211_IFTYPE_MONITOR || !flags) |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 62 | return err; |
| 63 | |
| 64 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 65 | sdata->u.mntr_flags = *flags; |
| 66 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 69 | static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 70 | { |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 71 | ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 72 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 73 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Johannes Berg | e36d56b | 2009-06-09 21:04:43 +0200 | [diff] [blame] | 76 | static int ieee80211_change_iface(struct wiphy *wiphy, |
| 77 | struct net_device *dev, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 78 | enum nl80211_iftype type, u32 *flags, |
| 79 | struct vif_params *params) |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 80 | { |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 81 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 82 | int ret; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 83 | |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 84 | if (ieee80211_sdata_running(sdata)) |
Johannes Berg | c1f9a76 | 2009-11-01 19:25:40 +0100 | [diff] [blame] | 85 | return -EBUSY; |
| 86 | |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 87 | if (!nl80211_params_check(type, params)) |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 88 | return -EINVAL; |
| 89 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 90 | ret = ieee80211_if_change_type(sdata, type); |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 91 | if (ret) |
| 92 | return ret; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 93 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 94 | if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len) |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 95 | ieee80211_sdata_set_mesh_id(sdata, |
| 96 | params->mesh_id_len, |
| 97 | params->mesh_id); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 98 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 99 | if (sdata->vif.type != NL80211_IFTYPE_MONITOR || !flags) |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 100 | return 0; |
| 101 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 102 | if (type == NL80211_IFTYPE_AP_VLAN && |
| 103 | params && params->use_4addr == 0) |
| 104 | rcu_assign_pointer(sdata->u.vlan.sta, NULL); |
| 105 | else if (type == NL80211_IFTYPE_STATION && |
| 106 | params && params->use_4addr >= 0) |
| 107 | sdata->u.mgd.use_4addr = params->use_4addr; |
| 108 | |
Michael Wu | 8cc9a73 | 2008-01-31 19:48:23 +0100 | [diff] [blame] | 109 | sdata->u.mntr_flags = *flags; |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 110 | return 0; |
| 111 | } |
| 112 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 113 | static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 4e94390 | 2009-05-09 20:06:47 +0200 | [diff] [blame] | 114 | u8 key_idx, const u8 *mac_addr, |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 115 | struct key_params *params) |
| 116 | { |
| 117 | struct ieee80211_sub_if_data *sdata; |
| 118 | struct sta_info *sta = NULL; |
| 119 | enum ieee80211_key_alg alg; |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 120 | struct ieee80211_key *key; |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 121 | int err; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 122 | |
| 123 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 124 | |
| 125 | switch (params->cipher) { |
| 126 | case WLAN_CIPHER_SUITE_WEP40: |
| 127 | case WLAN_CIPHER_SUITE_WEP104: |
| 128 | alg = ALG_WEP; |
| 129 | break; |
| 130 | case WLAN_CIPHER_SUITE_TKIP: |
| 131 | alg = ALG_TKIP; |
| 132 | break; |
| 133 | case WLAN_CIPHER_SUITE_CCMP: |
| 134 | alg = ALG_CCMP; |
| 135 | break; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 136 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 137 | alg = ALG_AES_CMAC; |
| 138 | break; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 139 | default: |
| 140 | return -EINVAL; |
| 141 | } |
| 142 | |
Jouni Malinen | faa8fdc | 2009-05-11 21:57:58 +0300 | [diff] [blame] | 143 | key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key, |
| 144 | params->seq_len, params->seq); |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 145 | if (!key) |
| 146 | return -ENOMEM; |
| 147 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 148 | rcu_read_lock(); |
| 149 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 150 | if (mac_addr) { |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 151 | sta = sta_info_get_bss(sdata, mac_addr); |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 152 | if (!sta) { |
| 153 | ieee80211_key_free(key); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 154 | err = -ENOENT; |
| 155 | goto out_unlock; |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 156 | } |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 157 | } |
| 158 | |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 159 | ieee80211_key_link(key, sdata, sta); |
| 160 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 161 | err = 0; |
| 162 | out_unlock: |
| 163 | rcu_read_unlock(); |
| 164 | |
| 165 | return err; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 4e94390 | 2009-05-09 20:06:47 +0200 | [diff] [blame] | 169 | u8 key_idx, const u8 *mac_addr) |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 170 | { |
| 171 | struct ieee80211_sub_if_data *sdata; |
| 172 | struct sta_info *sta; |
| 173 | int ret; |
| 174 | |
| 175 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 176 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 177 | rcu_read_lock(); |
| 178 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 179 | if (mac_addr) { |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 180 | ret = -ENOENT; |
| 181 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 182 | sta = sta_info_get_bss(sdata, mac_addr); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 183 | if (!sta) |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 184 | goto out_unlock; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 185 | |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 186 | if (sta->key) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 187 | ieee80211_key_free(sta->key); |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 188 | WARN_ON(sta->key); |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 189 | ret = 0; |
| 190 | } |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 191 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 192 | goto out_unlock; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 193 | } |
| 194 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 195 | if (!sdata->keys[key_idx]) { |
| 196 | ret = -ENOENT; |
| 197 | goto out_unlock; |
| 198 | } |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 199 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 200 | ieee80211_key_free(sdata->keys[key_idx]); |
Johannes Berg | db4d116 | 2008-02-25 16:27:45 +0100 | [diff] [blame] | 201 | WARN_ON(sdata->keys[key_idx]); |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 202 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 203 | ret = 0; |
| 204 | out_unlock: |
| 205 | rcu_read_unlock(); |
| 206 | |
| 207 | return ret; |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 208 | } |
| 209 | |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 210 | static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 4e94390 | 2009-05-09 20:06:47 +0200 | [diff] [blame] | 211 | u8 key_idx, const u8 *mac_addr, void *cookie, |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 212 | void (*callback)(void *cookie, |
| 213 | struct key_params *params)) |
| 214 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 215 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 216 | struct sta_info *sta = NULL; |
| 217 | u8 seq[6] = {0}; |
| 218 | struct key_params params; |
| 219 | struct ieee80211_key *key; |
| 220 | u32 iv32; |
| 221 | u16 iv16; |
| 222 | int err = -ENOENT; |
| 223 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 224 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 225 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 226 | rcu_read_lock(); |
| 227 | |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 228 | if (mac_addr) { |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 229 | sta = sta_info_get_bss(sdata, mac_addr); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 230 | if (!sta) |
| 231 | goto out; |
| 232 | |
| 233 | key = sta->key; |
| 234 | } else |
| 235 | key = sdata->keys[key_idx]; |
| 236 | |
| 237 | if (!key) |
| 238 | goto out; |
| 239 | |
| 240 | memset(¶ms, 0, sizeof(params)); |
| 241 | |
| 242 | switch (key->conf.alg) { |
| 243 | case ALG_TKIP: |
| 244 | params.cipher = WLAN_CIPHER_SUITE_TKIP; |
| 245 | |
Harvey Harrison | b0f76b3 | 2008-05-14 16:26:19 -0700 | [diff] [blame] | 246 | iv32 = key->u.tkip.tx.iv32; |
| 247 | iv16 = key->u.tkip.tx.iv16; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 248 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 249 | if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) |
| 250 | drv_get_tkip_seq(sdata->local, |
| 251 | key->conf.hw_key_idx, |
| 252 | &iv32, &iv16); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 253 | |
| 254 | seq[0] = iv16 & 0xff; |
| 255 | seq[1] = (iv16 >> 8) & 0xff; |
| 256 | seq[2] = iv32 & 0xff; |
| 257 | seq[3] = (iv32 >> 8) & 0xff; |
| 258 | seq[4] = (iv32 >> 16) & 0xff; |
| 259 | seq[5] = (iv32 >> 24) & 0xff; |
| 260 | params.seq = seq; |
| 261 | params.seq_len = 6; |
| 262 | break; |
| 263 | case ALG_CCMP: |
| 264 | params.cipher = WLAN_CIPHER_SUITE_CCMP; |
| 265 | seq[0] = key->u.ccmp.tx_pn[5]; |
| 266 | seq[1] = key->u.ccmp.tx_pn[4]; |
| 267 | seq[2] = key->u.ccmp.tx_pn[3]; |
| 268 | seq[3] = key->u.ccmp.tx_pn[2]; |
| 269 | seq[4] = key->u.ccmp.tx_pn[1]; |
| 270 | seq[5] = key->u.ccmp.tx_pn[0]; |
| 271 | params.seq = seq; |
| 272 | params.seq_len = 6; |
| 273 | break; |
| 274 | case ALG_WEP: |
| 275 | if (key->conf.keylen == 5) |
| 276 | params.cipher = WLAN_CIPHER_SUITE_WEP40; |
| 277 | else |
| 278 | params.cipher = WLAN_CIPHER_SUITE_WEP104; |
| 279 | break; |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 280 | case ALG_AES_CMAC: |
| 281 | params.cipher = WLAN_CIPHER_SUITE_AES_CMAC; |
| 282 | seq[0] = key->u.aes_cmac.tx_pn[5]; |
| 283 | seq[1] = key->u.aes_cmac.tx_pn[4]; |
| 284 | seq[2] = key->u.aes_cmac.tx_pn[3]; |
| 285 | seq[3] = key->u.aes_cmac.tx_pn[2]; |
| 286 | seq[4] = key->u.aes_cmac.tx_pn[1]; |
| 287 | seq[5] = key->u.aes_cmac.tx_pn[0]; |
| 288 | params.seq = seq; |
| 289 | params.seq_len = 6; |
| 290 | break; |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | params.key = key->conf.key; |
| 294 | params.key_len = key->conf.keylen; |
| 295 | |
| 296 | callback(cookie, ¶ms); |
| 297 | err = 0; |
| 298 | |
| 299 | out: |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 300 | rcu_read_unlock(); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 301 | return err; |
| 302 | } |
| 303 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 304 | static int ieee80211_config_default_key(struct wiphy *wiphy, |
| 305 | struct net_device *dev, |
| 306 | u8 key_idx) |
| 307 | { |
| 308 | struct ieee80211_sub_if_data *sdata; |
| 309 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 310 | rcu_read_lock(); |
| 311 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 312 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 313 | ieee80211_set_default_key(sdata, key_idx); |
| 314 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 315 | rcu_read_unlock(); |
| 316 | |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 317 | return 0; |
| 318 | } |
| 319 | |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 320 | static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy, |
| 321 | struct net_device *dev, |
| 322 | u8 key_idx) |
| 323 | { |
| 324 | struct ieee80211_sub_if_data *sdata; |
| 325 | |
| 326 | rcu_read_lock(); |
| 327 | |
| 328 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 329 | ieee80211_set_default_mgmt_key(sdata, key_idx); |
| 330 | |
| 331 | rcu_read_unlock(); |
| 332 | |
| 333 | return 0; |
| 334 | } |
| 335 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 336 | static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo) |
| 337 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 338 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 339 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 340 | sinfo->generation = sdata->local->sta_generation; |
| 341 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 342 | sinfo->filled = STATION_INFO_INACTIVE_TIME | |
| 343 | STATION_INFO_RX_BYTES | |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 344 | STATION_INFO_TX_BYTES | |
Jouni Malinen | 98c8a60a | 2009-02-17 13:24:57 +0200 | [diff] [blame] | 345 | STATION_INFO_RX_PACKETS | |
| 346 | STATION_INFO_TX_PACKETS | |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 347 | STATION_INFO_TX_BITRATE; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 348 | |
| 349 | sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx); |
| 350 | sinfo->rx_bytes = sta->rx_bytes; |
| 351 | sinfo->tx_bytes = sta->tx_bytes; |
Jouni Malinen | 98c8a60a | 2009-02-17 13:24:57 +0200 | [diff] [blame] | 352 | sinfo->rx_packets = sta->rx_packets; |
| 353 | sinfo->tx_packets = sta->tx_packets; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 354 | |
John W. Linville | 19deffb | 2009-12-08 17:10:13 -0500 | [diff] [blame] | 355 | if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) || |
| 356 | (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) { |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 357 | sinfo->filled |= STATION_INFO_SIGNAL; |
| 358 | sinfo->signal = (s8)sta->last_signal; |
| 359 | } |
| 360 | |
| 361 | sinfo->txrate.flags = 0; |
| 362 | if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS) |
| 363 | sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS; |
| 364 | if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH) |
| 365 | sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH; |
| 366 | if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI) |
| 367 | sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI; |
| 368 | |
| 369 | if (!(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)) { |
| 370 | struct ieee80211_supported_band *sband; |
| 371 | sband = sta->local->hw.wiphy->bands[ |
| 372 | sta->local->hw.conf.channel->band]; |
| 373 | sinfo->txrate.legacy = |
| 374 | sband->bitrates[sta->last_tx_rate.idx].bitrate; |
| 375 | } else |
| 376 | sinfo->txrate.mcs = sta->last_tx_rate.idx; |
| 377 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 378 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 379 | #ifdef CONFIG_MAC80211_MESH |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 380 | sinfo->filled |= STATION_INFO_LLID | |
| 381 | STATION_INFO_PLID | |
| 382 | STATION_INFO_PLINK_STATE; |
| 383 | |
| 384 | sinfo->llid = le16_to_cpu(sta->llid); |
| 385 | sinfo->plid = le16_to_cpu(sta->plid); |
| 386 | sinfo->plink_state = sta->plink_state; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 387 | #endif |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 388 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | |
| 392 | static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev, |
| 393 | int idx, u8 *mac, struct station_info *sinfo) |
| 394 | { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 395 | 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] | 396 | struct sta_info *sta; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 397 | int ret = -ENOENT; |
| 398 | |
| 399 | rcu_read_lock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 400 | |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 401 | sta = sta_info_get_by_idx(sdata, idx); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 402 | if (sta) { |
| 403 | ret = 0; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 404 | memcpy(mac, sta->sta.addr, ETH_ALEN); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 405 | sta_set_sinfo(sta, sinfo); |
| 406 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 407 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 408 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 409 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 410 | return ret; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 411 | } |
| 412 | |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame^] | 413 | static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev, |
| 414 | int idx, struct survey_info *survey) |
| 415 | { |
| 416 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 417 | |
| 418 | if (!local->ops->get_survey) |
| 419 | return -EOPNOTSUPP; |
| 420 | |
| 421 | return drv_get_survey(local, idx, survey); |
| 422 | } |
| 423 | |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 424 | 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] | 425 | u8 *mac, struct station_info *sinfo) |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 426 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 427 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 428 | struct sta_info *sta; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 429 | int ret = -ENOENT; |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 430 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 431 | rcu_read_lock(); |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 432 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 433 | sta = sta_info_get_bss(sdata, mac); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 434 | if (sta) { |
| 435 | ret = 0; |
| 436 | sta_set_sinfo(sta, sinfo); |
| 437 | } |
| 438 | |
| 439 | rcu_read_unlock(); |
| 440 | |
| 441 | return ret; |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 442 | } |
| 443 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 444 | /* |
| 445 | * This handles both adding a beacon and setting new beacon info |
| 446 | */ |
| 447 | static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata, |
| 448 | struct beacon_parameters *params) |
| 449 | { |
| 450 | struct beacon_data *new, *old; |
| 451 | int new_head_len, new_tail_len; |
| 452 | int size; |
| 453 | int err = -EINVAL; |
| 454 | |
| 455 | old = sdata->u.ap.beacon; |
| 456 | |
| 457 | /* head must not be zero-length */ |
| 458 | if (params->head && !params->head_len) |
| 459 | return -EINVAL; |
| 460 | |
| 461 | /* |
| 462 | * This is a kludge. beacon interval should really be part |
| 463 | * of the beacon information. |
| 464 | */ |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 465 | if (params->interval && |
| 466 | (sdata->vif.bss_conf.beacon_int != params->interval)) { |
| 467 | sdata->vif.bss_conf.beacon_int = params->interval; |
| 468 | ieee80211_bss_info_change_notify(sdata, |
| 469 | BSS_CHANGED_BEACON_INT); |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | /* Need to have a beacon head if we don't have one yet */ |
| 473 | if (!params->head && !old) |
| 474 | return err; |
| 475 | |
| 476 | /* sorry, no way to start beaconing without dtim period */ |
| 477 | if (!params->dtim_period && !old) |
| 478 | return err; |
| 479 | |
| 480 | /* new or old head? */ |
| 481 | if (params->head) |
| 482 | new_head_len = params->head_len; |
| 483 | else |
| 484 | new_head_len = old->head_len; |
| 485 | |
| 486 | /* new or old tail? */ |
| 487 | if (params->tail || !old) |
| 488 | /* params->tail_len will be zero for !params->tail */ |
| 489 | new_tail_len = params->tail_len; |
| 490 | else |
| 491 | new_tail_len = old->tail_len; |
| 492 | |
| 493 | size = sizeof(*new) + new_head_len + new_tail_len; |
| 494 | |
| 495 | new = kzalloc(size, GFP_KERNEL); |
| 496 | if (!new) |
| 497 | return -ENOMEM; |
| 498 | |
| 499 | /* start filling the new info now */ |
| 500 | |
| 501 | /* new or old dtim period? */ |
| 502 | if (params->dtim_period) |
| 503 | new->dtim_period = params->dtim_period; |
| 504 | else |
| 505 | new->dtim_period = old->dtim_period; |
| 506 | |
| 507 | /* |
| 508 | * pointers go into the block we allocated, |
| 509 | * memory is | beacon_data | head | tail | |
| 510 | */ |
| 511 | new->head = ((u8 *) new) + sizeof(*new); |
| 512 | new->tail = new->head + new_head_len; |
| 513 | new->head_len = new_head_len; |
| 514 | new->tail_len = new_tail_len; |
| 515 | |
| 516 | /* copy in head */ |
| 517 | if (params->head) |
| 518 | memcpy(new->head, params->head, new_head_len); |
| 519 | else |
| 520 | memcpy(new->head, old->head, new_head_len); |
| 521 | |
| 522 | /* copy in optional tail */ |
| 523 | if (params->tail) |
| 524 | memcpy(new->tail, params->tail, new_tail_len); |
| 525 | else |
| 526 | if (old) |
| 527 | memcpy(new->tail, old->tail, new_tail_len); |
| 528 | |
Johannes Berg | 19885c4 | 2010-02-05 11:45:06 +0100 | [diff] [blame] | 529 | sdata->vif.bss_conf.dtim_period = new->dtim_period; |
| 530 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 531 | rcu_assign_pointer(sdata->u.ap.beacon, new); |
| 532 | |
| 533 | synchronize_rcu(); |
| 534 | |
| 535 | kfree(old); |
| 536 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 537 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED | |
| 538 | BSS_CHANGED_BEACON); |
| 539 | return 0; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 543 | struct beacon_parameters *params) |
| 544 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 545 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 546 | struct beacon_data *old; |
| 547 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 548 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 549 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 550 | old = sdata->u.ap.beacon; |
| 551 | |
| 552 | if (old) |
| 553 | return -EALREADY; |
| 554 | |
| 555 | return ieee80211_config_beacon(sdata, params); |
| 556 | } |
| 557 | |
| 558 | static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 559 | struct beacon_parameters *params) |
| 560 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 561 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 562 | struct beacon_data *old; |
| 563 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 564 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 565 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 566 | old = sdata->u.ap.beacon; |
| 567 | |
| 568 | if (!old) |
| 569 | return -ENOENT; |
| 570 | |
| 571 | return ieee80211_config_beacon(sdata, params); |
| 572 | } |
| 573 | |
| 574 | static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev) |
| 575 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 576 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 577 | struct beacon_data *old; |
| 578 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 579 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 580 | |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 581 | old = sdata->u.ap.beacon; |
| 582 | |
| 583 | if (!old) |
| 584 | return -ENOENT; |
| 585 | |
| 586 | rcu_assign_pointer(sdata->u.ap.beacon, NULL); |
| 587 | synchronize_rcu(); |
| 588 | kfree(old); |
| 589 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 590 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED); |
| 591 | return 0; |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 592 | } |
| 593 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 594 | /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */ |
| 595 | struct iapp_layer2_update { |
| 596 | u8 da[ETH_ALEN]; /* broadcast */ |
| 597 | u8 sa[ETH_ALEN]; /* STA addr */ |
| 598 | __be16 len; /* 6 */ |
| 599 | u8 dsap; /* 0 */ |
| 600 | u8 ssap; /* 0 */ |
| 601 | u8 control; |
| 602 | u8 xid_info[3]; |
| 603 | } __attribute__ ((packed)); |
| 604 | |
| 605 | static void ieee80211_send_layer2_update(struct sta_info *sta) |
| 606 | { |
| 607 | struct iapp_layer2_update *msg; |
| 608 | struct sk_buff *skb; |
| 609 | |
| 610 | /* Send Level 2 Update Frame to update forwarding tables in layer 2 |
| 611 | * bridge devices */ |
| 612 | |
| 613 | skb = dev_alloc_skb(sizeof(*msg)); |
| 614 | if (!skb) |
| 615 | return; |
| 616 | msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg)); |
| 617 | |
| 618 | /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID) |
| 619 | * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */ |
| 620 | |
| 621 | memset(msg->da, 0xff, ETH_ALEN); |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 622 | memcpy(msg->sa, sta->sta.addr, ETH_ALEN); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 623 | msg->len = htons(6); |
| 624 | msg->dsap = 0; |
| 625 | msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */ |
| 626 | msg->control = 0xaf; /* XID response lsb.1111F101. |
| 627 | * F=0 (no poll command; unsolicited frame) */ |
| 628 | msg->xid_info[0] = 0x81; /* XID format identifier */ |
| 629 | msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */ |
| 630 | msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */ |
| 631 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 632 | skb->dev = sta->sdata->dev; |
| 633 | skb->protocol = eth_type_trans(skb, sta->sdata->dev); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 634 | memset(skb->cb, 0, sizeof(skb->cb)); |
| 635 | netif_rx(skb); |
| 636 | } |
| 637 | |
| 638 | static void sta_apply_parameters(struct ieee80211_local *local, |
| 639 | struct sta_info *sta, |
| 640 | struct station_parameters *params) |
| 641 | { |
| 642 | u32 rates; |
| 643 | int i, j; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 644 | struct ieee80211_supported_band *sband; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 645 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 646 | u32 mask, set; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 647 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 648 | sband = local->hw.wiphy->bands[local->oper_channel->band]; |
| 649 | |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 650 | spin_lock_bh(&sta->lock); |
| 651 | mask = params->sta_flags_mask; |
| 652 | set = params->sta_flags_set; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 653 | |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 654 | if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 655 | sta->flags &= ~WLAN_STA_AUTHORIZED; |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 656 | if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 657 | sta->flags |= WLAN_STA_AUTHORIZED; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 658 | } |
| 659 | |
Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 660 | if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) { |
| 661 | sta->flags &= ~WLAN_STA_SHORT_PREAMBLE; |
| 662 | if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) |
| 663 | sta->flags |= WLAN_STA_SHORT_PREAMBLE; |
| 664 | } |
| 665 | |
| 666 | if (mask & BIT(NL80211_STA_FLAG_WME)) { |
| 667 | sta->flags &= ~WLAN_STA_WME; |
| 668 | if (set & BIT(NL80211_STA_FLAG_WME)) |
| 669 | sta->flags |= WLAN_STA_WME; |
| 670 | } |
| 671 | |
| 672 | if (mask & BIT(NL80211_STA_FLAG_MFP)) { |
| 673 | sta->flags &= ~WLAN_STA_MFP; |
| 674 | if (set & BIT(NL80211_STA_FLAG_MFP)) |
| 675 | sta->flags |= WLAN_STA_MFP; |
| 676 | } |
| 677 | spin_unlock_bh(&sta->lock); |
| 678 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 679 | /* |
Johannes Berg | 51b50fb | 2009-05-24 16:42:30 +0200 | [diff] [blame] | 680 | * cfg80211 validates this (1-2007) and allows setting the AID |
| 681 | * only when creating a new station entry |
| 682 | */ |
| 683 | if (params->aid) |
| 684 | sta->sta.aid = params->aid; |
| 685 | |
| 686 | /* |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 687 | * FIXME: updating the following information is racy when this |
| 688 | * function is called from ieee80211_change_station(). |
| 689 | * However, all this information should be static so |
| 690 | * maybe we should just reject attemps to change it. |
| 691 | */ |
| 692 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 693 | if (params->listen_interval >= 0) |
| 694 | sta->listen_interval = params->listen_interval; |
| 695 | |
| 696 | if (params->supported_rates) { |
| 697 | rates = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 698 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 699 | for (i = 0; i < params->supported_rates_len; i++) { |
| 700 | int rate = (params->supported_rates[i] & 0x7f) * 5; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 701 | for (j = 0; j < sband->n_bitrates; j++) { |
| 702 | if (sband->bitrates[j].bitrate == rate) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 703 | rates |= BIT(j); |
| 704 | } |
| 705 | } |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 706 | sta->sta.supp_rates[local->oper_channel->band] = rates; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 707 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 708 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 709 | if (params->ht_capa) |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 710 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
| 711 | params->ht_capa, |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 712 | &sta->sta.ht_cap); |
Jouni Malinen | 36aedc9 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 713 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 714 | if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) { |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 715 | switch (params->plink_action) { |
| 716 | case PLINK_ACTION_OPEN: |
| 717 | mesh_plink_open(sta); |
| 718 | break; |
| 719 | case PLINK_ACTION_BLOCK: |
| 720 | mesh_plink_block(sta); |
| 721 | break; |
| 722 | } |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 723 | } |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev, |
| 727 | u8 *mac, struct station_parameters *params) |
| 728 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 729 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 730 | struct sta_info *sta; |
| 731 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 732 | int err; |
Jouni Malinen | b8d476c | 2008-12-12 17:08:31 +0200 | [diff] [blame] | 733 | int layer2_update; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 734 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 735 | if (params->vlan) { |
| 736 | sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
| 737 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 738 | if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 739 | sdata->vif.type != NL80211_IFTYPE_AP) |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 740 | return -EINVAL; |
| 741 | } else |
| 742 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 743 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 744 | if (compare_ether_addr(mac, sdata->vif.addr) == 0) |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 745 | return -EINVAL; |
| 746 | |
| 747 | if (is_multicast_ether_addr(mac)) |
| 748 | return -EINVAL; |
| 749 | |
| 750 | sta = sta_info_alloc(sdata, mac, GFP_KERNEL); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 751 | if (!sta) |
| 752 | return -ENOMEM; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 753 | |
| 754 | sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC; |
| 755 | |
| 756 | sta_apply_parameters(local, sta, params); |
| 757 | |
Johannes Berg | 4b7679a | 2008-09-18 18:14:18 +0200 | [diff] [blame] | 758 | rate_control_rate_init(sta); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 759 | |
Jouni Malinen | b8d476c | 2008-12-12 17:08:31 +0200 | [diff] [blame] | 760 | layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN || |
| 761 | sdata->vif.type == NL80211_IFTYPE_AP; |
| 762 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 763 | err = sta_info_insert_rcu(sta); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 764 | if (err) { |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 765 | rcu_read_unlock(); |
| 766 | return err; |
| 767 | } |
| 768 | |
Jouni Malinen | b8d476c | 2008-12-12 17:08:31 +0200 | [diff] [blame] | 769 | if (layer2_update) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 770 | ieee80211_send_layer2_update(sta); |
| 771 | |
| 772 | rcu_read_unlock(); |
| 773 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 774 | return 0; |
| 775 | } |
| 776 | |
| 777 | static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev, |
| 778 | u8 *mac) |
| 779 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 780 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 781 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 782 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 783 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 784 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 785 | if (mac) |
| 786 | return sta_info_destroy_addr_bss(sdata, mac); |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 787 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 788 | sta_info_flush(local, sdata); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 789 | return 0; |
| 790 | } |
| 791 | |
| 792 | static int ieee80211_change_station(struct wiphy *wiphy, |
| 793 | struct net_device *dev, |
| 794 | u8 *mac, |
| 795 | struct station_parameters *params) |
| 796 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 797 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 798 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 799 | struct sta_info *sta; |
| 800 | struct ieee80211_sub_if_data *vlansdata; |
| 801 | |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 802 | rcu_read_lock(); |
| 803 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 804 | sta = sta_info_get_bss(sdata, mac); |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 805 | if (!sta) { |
| 806 | rcu_read_unlock(); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 807 | return -ENOENT; |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 808 | } |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 809 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 810 | if (params->vlan && params->vlan != sta->sdata->dev) { |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 811 | vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
| 812 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 813 | if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 814 | vlansdata->vif.type != NL80211_IFTYPE_AP) { |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 815 | rcu_read_unlock(); |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 816 | return -EINVAL; |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 817 | } |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 818 | |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 819 | if (params->vlan->ieee80211_ptr->use_4addr) { |
Johannes Berg | 3305443 | 2009-11-20 10:09:14 +0100 | [diff] [blame] | 820 | if (vlansdata->u.vlan.sta) { |
| 821 | rcu_read_unlock(); |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 822 | return -EBUSY; |
Johannes Berg | 3305443 | 2009-11-20 10:09:14 +0100 | [diff] [blame] | 823 | } |
Felix Fietkau | f14543ee | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 824 | |
| 825 | rcu_assign_pointer(vlansdata->u.vlan.sta, sta); |
| 826 | } |
| 827 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 828 | sta->sdata = vlansdata; |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 829 | ieee80211_send_layer2_update(sta); |
| 830 | } |
| 831 | |
| 832 | sta_apply_parameters(local, sta, params); |
| 833 | |
Johannes Berg | 98dd6a5 | 2008-04-10 15:36:09 +0200 | [diff] [blame] | 834 | rcu_read_unlock(); |
| 835 | |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 836 | return 0; |
| 837 | } |
| 838 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 839 | #ifdef CONFIG_MAC80211_MESH |
| 840 | static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 841 | u8 *dst, u8 *next_hop) |
| 842 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 843 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 844 | struct mesh_path *mpath; |
| 845 | struct sta_info *sta; |
| 846 | int err; |
| 847 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 848 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 849 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 850 | rcu_read_lock(); |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 851 | sta = sta_info_get(sdata, next_hop); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 852 | if (!sta) { |
| 853 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 854 | return -ENOENT; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 855 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 856 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 857 | err = mesh_path_add(dst, sdata); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 858 | if (err) { |
| 859 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 860 | return err; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 861 | } |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 862 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 863 | mpath = mesh_path_lookup(dst, sdata); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 864 | if (!mpath) { |
| 865 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 866 | return -ENXIO; |
| 867 | } |
| 868 | mesh_path_fix_nexthop(mpath, sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 869 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 870 | rcu_read_unlock(); |
| 871 | return 0; |
| 872 | } |
| 873 | |
| 874 | static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 875 | u8 *dst) |
| 876 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 877 | 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] | 878 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 879 | if (dst) |
| 880 | return mesh_path_del(dst, sdata); |
| 881 | |
| 882 | mesh_path_flush(sdata); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 883 | return 0; |
| 884 | } |
| 885 | |
| 886 | static int ieee80211_change_mpath(struct wiphy *wiphy, |
| 887 | struct net_device *dev, |
| 888 | u8 *dst, u8 *next_hop) |
| 889 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 890 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 891 | struct mesh_path *mpath; |
| 892 | struct sta_info *sta; |
| 893 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 894 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 895 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 896 | rcu_read_lock(); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 897 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 898 | sta = sta_info_get(sdata, next_hop); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 899 | if (!sta) { |
| 900 | rcu_read_unlock(); |
| 901 | return -ENOENT; |
| 902 | } |
| 903 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 904 | mpath = mesh_path_lookup(dst, sdata); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 905 | if (!mpath) { |
| 906 | rcu_read_unlock(); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 907 | return -ENOENT; |
| 908 | } |
| 909 | |
| 910 | mesh_path_fix_nexthop(mpath, sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 911 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 912 | rcu_read_unlock(); |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop, |
| 917 | struct mpath_info *pinfo) |
| 918 | { |
| 919 | if (mpath->next_hop) |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 920 | memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 921 | else |
| 922 | memset(next_hop, 0, ETH_ALEN); |
| 923 | |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 924 | pinfo->generation = mesh_paths_generation; |
| 925 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 926 | pinfo->filled = MPATH_INFO_FRAME_QLEN | |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 927 | MPATH_INFO_SN | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 928 | MPATH_INFO_METRIC | |
| 929 | MPATH_INFO_EXPTIME | |
| 930 | MPATH_INFO_DISCOVERY_TIMEOUT | |
| 931 | MPATH_INFO_DISCOVERY_RETRIES | |
| 932 | MPATH_INFO_FLAGS; |
| 933 | |
| 934 | pinfo->frame_qlen = mpath->frame_queue.qlen; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 935 | pinfo->sn = mpath->sn; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 936 | pinfo->metric = mpath->metric; |
| 937 | if (time_before(jiffies, mpath->exp_time)) |
| 938 | pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies); |
| 939 | pinfo->discovery_timeout = |
| 940 | jiffies_to_msecs(mpath->discovery_timeout); |
| 941 | pinfo->discovery_retries = mpath->discovery_retries; |
| 942 | pinfo->flags = 0; |
| 943 | if (mpath->flags & MESH_PATH_ACTIVE) |
| 944 | pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE; |
| 945 | if (mpath->flags & MESH_PATH_RESOLVING) |
| 946 | pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING; |
Rui Paulo | d19b3bf | 2009-11-09 23:46:55 +0000 | [diff] [blame] | 947 | if (mpath->flags & MESH_PATH_SN_VALID) |
| 948 | pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 949 | if (mpath->flags & MESH_PATH_FIXED) |
| 950 | pinfo->flags |= NL80211_MPATH_FLAG_FIXED; |
| 951 | if (mpath->flags & MESH_PATH_RESOLVING) |
| 952 | pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING; |
| 953 | |
| 954 | pinfo->flags = mpath->flags; |
| 955 | } |
| 956 | |
| 957 | static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 958 | u8 *dst, u8 *next_hop, struct mpath_info *pinfo) |
| 959 | |
| 960 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 961 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 962 | struct mesh_path *mpath; |
| 963 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 964 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 965 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 966 | rcu_read_lock(); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 967 | mpath = mesh_path_lookup(dst, sdata); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 968 | if (!mpath) { |
| 969 | rcu_read_unlock(); |
| 970 | return -ENOENT; |
| 971 | } |
| 972 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 973 | mpath_set_pinfo(mpath, next_hop, pinfo); |
| 974 | rcu_read_unlock(); |
| 975 | return 0; |
| 976 | } |
| 977 | |
| 978 | static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 979 | int idx, u8 *dst, u8 *next_hop, |
| 980 | struct mpath_info *pinfo) |
| 981 | { |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 982 | struct ieee80211_sub_if_data *sdata; |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 983 | struct mesh_path *mpath; |
| 984 | |
Johannes Berg | 14db74b | 2008-07-29 13:22:52 +0200 | [diff] [blame] | 985 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 986 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 987 | rcu_read_lock(); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 988 | mpath = mesh_path_lookup_by_idx(idx, sdata); |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 989 | if (!mpath) { |
| 990 | rcu_read_unlock(); |
| 991 | return -ENOENT; |
| 992 | } |
| 993 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 994 | mpath_set_pinfo(mpath, next_hop, pinfo); |
| 995 | rcu_read_unlock(); |
| 996 | return 0; |
| 997 | } |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 998 | |
| 999 | static int ieee80211_get_mesh_params(struct wiphy *wiphy, |
| 1000 | struct net_device *dev, |
| 1001 | struct mesh_config *conf) |
| 1002 | { |
| 1003 | struct ieee80211_sub_if_data *sdata; |
| 1004 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1005 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1006 | memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config)); |
| 1007 | return 0; |
| 1008 | } |
| 1009 | |
| 1010 | static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask) |
| 1011 | { |
| 1012 | return (mask >> (parm-1)) & 0x1; |
| 1013 | } |
| 1014 | |
| 1015 | static int ieee80211_set_mesh_params(struct wiphy *wiphy, |
| 1016 | struct net_device *dev, |
| 1017 | const struct mesh_config *nconf, u32 mask) |
| 1018 | { |
| 1019 | struct mesh_config *conf; |
| 1020 | struct ieee80211_sub_if_data *sdata; |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 1021 | struct ieee80211_if_mesh *ifmsh; |
| 1022 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1023 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 1024 | ifmsh = &sdata->u.mesh; |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1025 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1026 | /* Set the config options which we are interested in setting */ |
| 1027 | conf = &(sdata->u.mesh.mshcfg); |
| 1028 | if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask)) |
| 1029 | conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout; |
| 1030 | if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask)) |
| 1031 | conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout; |
| 1032 | if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask)) |
| 1033 | conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout; |
| 1034 | if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask)) |
| 1035 | conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks; |
| 1036 | if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask)) |
| 1037 | conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries; |
| 1038 | if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask)) |
| 1039 | conf->dot11MeshTTL = nconf->dot11MeshTTL; |
| 1040 | if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) |
| 1041 | conf->auto_open_plinks = nconf->auto_open_plinks; |
| 1042 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask)) |
| 1043 | conf->dot11MeshHWMPmaxPREQretries = |
| 1044 | nconf->dot11MeshHWMPmaxPREQretries; |
| 1045 | if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask)) |
| 1046 | conf->path_refresh_time = nconf->path_refresh_time; |
| 1047 | if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask)) |
| 1048 | conf->min_discovery_timeout = nconf->min_discovery_timeout; |
| 1049 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask)) |
| 1050 | conf->dot11MeshHWMPactivePathTimeout = |
| 1051 | nconf->dot11MeshHWMPactivePathTimeout; |
| 1052 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask)) |
| 1053 | conf->dot11MeshHWMPpreqMinInterval = |
| 1054 | nconf->dot11MeshHWMPpreqMinInterval; |
| 1055 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, |
| 1056 | mask)) |
| 1057 | conf->dot11MeshHWMPnetDiameterTraversalTime = |
| 1058 | nconf->dot11MeshHWMPnetDiameterTraversalTime; |
Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 1059 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) { |
| 1060 | conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode; |
| 1061 | ieee80211_mesh_root_setup(ifmsh); |
| 1062 | } |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1063 | return 0; |
| 1064 | } |
| 1065 | |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1066 | #endif |
| 1067 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1068 | static int ieee80211_change_bss(struct wiphy *wiphy, |
| 1069 | struct net_device *dev, |
| 1070 | struct bss_parameters *params) |
| 1071 | { |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1072 | struct ieee80211_sub_if_data *sdata; |
| 1073 | u32 changed = 0; |
| 1074 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1075 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1076 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1077 | if (params->use_cts_prot >= 0) { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1078 | sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot; |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1079 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
| 1080 | } |
| 1081 | if (params->use_short_preamble >= 0) { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1082 | sdata->vif.bss_conf.use_short_preamble = |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1083 | params->use_short_preamble; |
| 1084 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
| 1085 | } |
Felix Fietkau | 43d3534 | 2010-01-15 03:00:48 +0100 | [diff] [blame] | 1086 | |
| 1087 | if (!sdata->vif.bss_conf.use_short_slot && |
| 1088 | sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) { |
| 1089 | sdata->vif.bss_conf.use_short_slot = true; |
| 1090 | changed |= BSS_CHANGED_ERP_SLOT; |
| 1091 | } |
| 1092 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1093 | if (params->use_short_slot_time >= 0) { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1094 | sdata->vif.bss_conf.use_short_slot = |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1095 | params->use_short_slot_time; |
| 1096 | changed |= BSS_CHANGED_ERP_SLOT; |
| 1097 | } |
| 1098 | |
Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 1099 | if (params->basic_rates) { |
| 1100 | int i, j; |
| 1101 | u32 rates = 0; |
| 1102 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1103 | struct ieee80211_supported_band *sband = |
| 1104 | wiphy->bands[local->oper_channel->band]; |
| 1105 | |
| 1106 | for (i = 0; i < params->basic_rates_len; i++) { |
| 1107 | int rate = (params->basic_rates[i] & 0x7f) * 5; |
| 1108 | for (j = 0; j < sband->n_bitrates; j++) { |
| 1109 | if (sband->bitrates[j].bitrate == rate) |
| 1110 | rates |= BIT(j); |
| 1111 | } |
| 1112 | } |
| 1113 | sdata->vif.bss_conf.basic_rates = rates; |
| 1114 | changed |= BSS_CHANGED_BASIC_RATES; |
| 1115 | } |
| 1116 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1117 | ieee80211_bss_info_change_notify(sdata, changed); |
| 1118 | |
| 1119 | return 0; |
| 1120 | } |
| 1121 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1122 | static int ieee80211_set_txq_params(struct wiphy *wiphy, |
| 1123 | struct ieee80211_txq_params *params) |
| 1124 | { |
| 1125 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1126 | struct ieee80211_tx_queue_params p; |
| 1127 | |
| 1128 | if (!local->ops->conf_tx) |
| 1129 | return -EOPNOTSUPP; |
| 1130 | |
| 1131 | memset(&p, 0, sizeof(p)); |
| 1132 | p.aifs = params->aifs; |
| 1133 | p.cw_max = params->cwmax; |
| 1134 | p.cw_min = params->cwmin; |
| 1135 | p.txop = params->txop; |
Kalle Valo | ab13315 | 2010-01-12 10:42:31 +0200 | [diff] [blame] | 1136 | |
| 1137 | /* |
| 1138 | * Setting tx queue params disables u-apsd because it's only |
| 1139 | * called in master mode. |
| 1140 | */ |
| 1141 | p.uapsd = false; |
| 1142 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1143 | if (drv_conf_tx(local, params->queue, &p)) { |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1144 | printk(KERN_DEBUG "%s: failed to set TX queue " |
Johannes Berg | 0bffe40 | 2009-06-09 16:18:32 +0200 | [diff] [blame] | 1145 | "parameters for queue %d\n", |
| 1146 | wiphy_name(local->hw.wiphy), params->queue); |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1147 | return -EINVAL; |
| 1148 | } |
| 1149 | |
Stanislaw Gruszka | 0af26b2 | 2010-03-29 12:18:36 +0200 | [diff] [blame] | 1150 | /* enable WMM or activate new settings */ |
| 1151 | local->hw.conf.flags |= IEEE80211_CONF_QOS; |
| 1152 | drv_config(local, IEEE80211_CONF_CHANGE_QOS); |
| 1153 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1154 | return 0; |
| 1155 | } |
| 1156 | |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1157 | static int ieee80211_set_channel(struct wiphy *wiphy, |
| 1158 | struct ieee80211_channel *chan, |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 1159 | enum nl80211_channel_type channel_type) |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1160 | { |
| 1161 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1162 | |
| 1163 | local->oper_channel = chan; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 1164 | local->oper_channel_type = channel_type; |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1165 | |
| 1166 | return ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL); |
| 1167 | } |
| 1168 | |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 1169 | #ifdef CONFIG_PM |
| 1170 | static int ieee80211_suspend(struct wiphy *wiphy) |
| 1171 | { |
| 1172 | return __ieee80211_suspend(wiphy_priv(wiphy)); |
| 1173 | } |
| 1174 | |
| 1175 | static int ieee80211_resume(struct wiphy *wiphy) |
| 1176 | { |
| 1177 | return __ieee80211_resume(wiphy_priv(wiphy)); |
| 1178 | } |
| 1179 | #else |
| 1180 | #define ieee80211_suspend NULL |
| 1181 | #define ieee80211_resume NULL |
| 1182 | #endif |
| 1183 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1184 | static int ieee80211_scan(struct wiphy *wiphy, |
| 1185 | struct net_device *dev, |
| 1186 | struct cfg80211_scan_request *req) |
| 1187 | { |
| 1188 | struct ieee80211_sub_if_data *sdata; |
| 1189 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1190 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1191 | |
| 1192 | if (sdata->vif.type != NL80211_IFTYPE_STATION && |
| 1193 | sdata->vif.type != NL80211_IFTYPE_ADHOC && |
Jouni Malinen | 357303e | 2009-04-16 18:44:53 +0300 | [diff] [blame] | 1194 | sdata->vif.type != NL80211_IFTYPE_MESH_POINT && |
| 1195 | (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon)) |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1196 | return -EOPNOTSUPP; |
| 1197 | |
| 1198 | return ieee80211_request_scan(sdata, req); |
| 1199 | } |
| 1200 | |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1201 | static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev, |
| 1202 | struct cfg80211_auth_request *req) |
| 1203 | { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1204 | return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev, |
| 1208 | struct cfg80211_assoc_request *req) |
| 1209 | { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1210 | return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1211 | } |
| 1212 | |
| 1213 | static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 1214 | struct cfg80211_deauth_request *req, |
| 1215 | void *cookie) |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1216 | { |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 1217 | return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), |
| 1218 | req, cookie); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 1222 | struct cfg80211_disassoc_request *req, |
| 1223 | void *cookie) |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1224 | { |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 1225 | return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), |
| 1226 | req, cookie); |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1227 | } |
| 1228 | |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 1229 | static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, |
| 1230 | struct cfg80211_ibss_params *params) |
| 1231 | { |
| 1232 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1233 | |
| 1234 | return ieee80211_ibss_join(sdata, params); |
| 1235 | } |
| 1236 | |
| 1237 | static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev) |
| 1238 | { |
| 1239 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1240 | |
| 1241 | return ieee80211_ibss_leave(sdata); |
| 1242 | } |
| 1243 | |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1244 | static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed) |
| 1245 | { |
| 1246 | struct ieee80211_local *local = wiphy_priv(wiphy); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1247 | int err; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1248 | |
Lukáš Turek | 310bc67 | 2009-12-21 22:50:48 +0100 | [diff] [blame] | 1249 | if (changed & WIPHY_PARAM_COVERAGE_CLASS) { |
| 1250 | err = drv_set_coverage_class(local, wiphy->coverage_class); |
| 1251 | |
| 1252 | if (err) |
| 1253 | return err; |
| 1254 | } |
| 1255 | |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1256 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1257 | err = drv_set_rts_threshold(local, wiphy->rts_threshold); |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1258 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1259 | if (err) |
| 1260 | return err; |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | if (changed & WIPHY_PARAM_RETRY_SHORT) |
| 1264 | local->hw.conf.short_frame_max_tx_count = wiphy->retry_short; |
| 1265 | if (changed & WIPHY_PARAM_RETRY_LONG) |
| 1266 | local->hw.conf.long_frame_max_tx_count = wiphy->retry_long; |
| 1267 | if (changed & |
| 1268 | (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG)) |
| 1269 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS); |
| 1270 | |
| 1271 | return 0; |
| 1272 | } |
| 1273 | |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 1274 | static int ieee80211_set_tx_power(struct wiphy *wiphy, |
| 1275 | enum tx_power_setting type, int dbm) |
| 1276 | { |
| 1277 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1278 | struct ieee80211_channel *chan = local->hw.conf.channel; |
| 1279 | u32 changes = 0; |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 1280 | |
| 1281 | switch (type) { |
| 1282 | case TX_POWER_AUTOMATIC: |
| 1283 | local->user_power_level = -1; |
| 1284 | break; |
| 1285 | case TX_POWER_LIMITED: |
| 1286 | if (dbm < 0) |
| 1287 | return -EINVAL; |
| 1288 | local->user_power_level = dbm; |
| 1289 | break; |
| 1290 | case TX_POWER_FIXED: |
| 1291 | if (dbm < 0) |
| 1292 | return -EINVAL; |
| 1293 | /* TODO: move to cfg80211 when it knows the channel */ |
| 1294 | if (dbm > chan->max_power) |
| 1295 | return -EINVAL; |
| 1296 | local->user_power_level = dbm; |
| 1297 | break; |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 1298 | } |
| 1299 | |
| 1300 | ieee80211_hw_config(local, changes); |
| 1301 | |
| 1302 | return 0; |
| 1303 | } |
| 1304 | |
| 1305 | static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm) |
| 1306 | { |
| 1307 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1308 | |
| 1309 | *dbm = local->hw.conf.power_level; |
| 1310 | |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 1311 | return 0; |
| 1312 | } |
| 1313 | |
Johannes Berg | ab737a4 | 2009-07-01 21:26:58 +0200 | [diff] [blame] | 1314 | static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev, |
| 1315 | u8 *addr) |
| 1316 | { |
| 1317 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1318 | |
| 1319 | memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN); |
| 1320 | |
| 1321 | return 0; |
| 1322 | } |
| 1323 | |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 1324 | static void ieee80211_rfkill_poll(struct wiphy *wiphy) |
| 1325 | { |
| 1326 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1327 | |
| 1328 | drv_rfkill_poll(local); |
| 1329 | } |
| 1330 | |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1331 | #ifdef CONFIG_NL80211_TESTMODE |
Johannes Berg | 99783e2 | 2009-07-07 03:54:43 +0200 | [diff] [blame] | 1332 | static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len) |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1333 | { |
| 1334 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1335 | |
| 1336 | if (!local->ops->testmode_cmd) |
| 1337 | return -EOPNOTSUPP; |
| 1338 | |
| 1339 | return local->ops->testmode_cmd(&local->hw, data, len); |
| 1340 | } |
| 1341 | #endif |
| 1342 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 1343 | int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata, |
| 1344 | enum ieee80211_smps_mode smps_mode) |
| 1345 | { |
| 1346 | const u8 *ap; |
| 1347 | enum ieee80211_smps_mode old_req; |
| 1348 | int err; |
| 1349 | |
| 1350 | old_req = sdata->u.mgd.req_smps; |
| 1351 | sdata->u.mgd.req_smps = smps_mode; |
| 1352 | |
| 1353 | if (old_req == smps_mode && |
| 1354 | smps_mode != IEEE80211_SMPS_AUTOMATIC) |
| 1355 | return 0; |
| 1356 | |
| 1357 | /* |
| 1358 | * If not associated, or current association is not an HT |
| 1359 | * association, there's no need to send an action frame. |
| 1360 | */ |
| 1361 | if (!sdata->u.mgd.associated || |
| 1362 | sdata->local->oper_channel_type == NL80211_CHAN_NO_HT) { |
| 1363 | mutex_lock(&sdata->local->iflist_mtx); |
| 1364 | ieee80211_recalc_smps(sdata->local, sdata); |
| 1365 | mutex_unlock(&sdata->local->iflist_mtx); |
| 1366 | return 0; |
| 1367 | } |
| 1368 | |
Johannes Berg | 0c1ad2c | 2009-12-23 13:15:39 +0100 | [diff] [blame] | 1369 | ap = sdata->u.mgd.associated->bssid; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 1370 | |
| 1371 | if (smps_mode == IEEE80211_SMPS_AUTOMATIC) { |
| 1372 | if (sdata->u.mgd.powersave) |
| 1373 | smps_mode = IEEE80211_SMPS_DYNAMIC; |
| 1374 | else |
| 1375 | smps_mode = IEEE80211_SMPS_OFF; |
| 1376 | } |
| 1377 | |
| 1378 | /* send SM PS frame to AP */ |
| 1379 | err = ieee80211_send_smps_action(sdata, smps_mode, |
| 1380 | ap, ap); |
| 1381 | if (err) |
| 1382 | sdata->u.mgd.req_smps = old_req; |
| 1383 | |
| 1384 | return err; |
| 1385 | } |
| 1386 | |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 1387 | static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev, |
| 1388 | bool enabled, int timeout) |
| 1389 | { |
| 1390 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1391 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1392 | struct ieee80211_conf *conf = &local->hw.conf; |
| 1393 | |
Benoit Papillault | e5de30c | 2010-01-15 12:21:37 +0100 | [diff] [blame] | 1394 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 1395 | return -EOPNOTSUPP; |
| 1396 | |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 1397 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) |
| 1398 | return -EOPNOTSUPP; |
| 1399 | |
| 1400 | if (enabled == sdata->u.mgd.powersave && |
| 1401 | timeout == conf->dynamic_ps_timeout) |
| 1402 | return 0; |
| 1403 | |
| 1404 | sdata->u.mgd.powersave = enabled; |
| 1405 | conf->dynamic_ps_timeout = timeout; |
| 1406 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 1407 | /* no change, but if automatic follow powersave */ |
| 1408 | mutex_lock(&sdata->u.mgd.mtx); |
| 1409 | __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps); |
| 1410 | mutex_unlock(&sdata->u.mgd.mtx); |
| 1411 | |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 1412 | if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) |
| 1413 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 1414 | |
| 1415 | ieee80211_recalc_ps(local, -1); |
| 1416 | |
| 1417 | return 0; |
| 1418 | } |
| 1419 | |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 1420 | static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy, |
| 1421 | struct net_device *dev, |
| 1422 | s32 rssi_thold, u32 rssi_hyst) |
| 1423 | { |
| 1424 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1425 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1426 | struct ieee80211_vif *vif = &sdata->vif; |
| 1427 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
| 1428 | |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 1429 | if (rssi_thold == bss_conf->cqm_rssi_thold && |
| 1430 | rssi_hyst == bss_conf->cqm_rssi_hyst) |
| 1431 | return 0; |
| 1432 | |
| 1433 | bss_conf->cqm_rssi_thold = rssi_thold; |
| 1434 | bss_conf->cqm_rssi_hyst = rssi_hyst; |
| 1435 | |
Jouni Malinen | 17e4ec1 | 2010-03-29 23:28:30 -0700 | [diff] [blame] | 1436 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) { |
| 1437 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 1438 | return -EOPNOTSUPP; |
| 1439 | return 0; |
| 1440 | } |
| 1441 | |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 1442 | /* tell the driver upon association, unless already associated */ |
| 1443 | if (sdata->u.mgd.associated) |
| 1444 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM); |
| 1445 | |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 1449 | static int ieee80211_set_bitrate_mask(struct wiphy *wiphy, |
| 1450 | struct net_device *dev, |
| 1451 | const u8 *addr, |
| 1452 | const struct cfg80211_bitrate_mask *mask) |
| 1453 | { |
| 1454 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1455 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Johannes Berg | 2c7e6bc | 2009-12-04 09:26:38 +0100 | [diff] [blame] | 1456 | int i; |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 1457 | |
Johannes Berg | 2c7e6bc | 2009-12-04 09:26:38 +0100 | [diff] [blame] | 1458 | /* |
| 1459 | * This _could_ be supported by providing a hook for |
| 1460 | * drivers for this function, but at this point it |
| 1461 | * doesn't seem worth bothering. |
| 1462 | */ |
| 1463 | if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) |
| 1464 | return -EOPNOTSUPP; |
| 1465 | |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 1466 | |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 1467 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) |
| 1468 | sdata->rc_rateidx_mask[i] = mask->control[i].legacy; |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 1469 | |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 1470 | return 0; |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 1471 | } |
| 1472 | |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 1473 | static int ieee80211_remain_on_channel(struct wiphy *wiphy, |
| 1474 | struct net_device *dev, |
| 1475 | struct ieee80211_channel *chan, |
| 1476 | enum nl80211_channel_type channel_type, |
| 1477 | unsigned int duration, |
| 1478 | u64 *cookie) |
| 1479 | { |
| 1480 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1481 | |
| 1482 | return ieee80211_wk_remain_on_channel(sdata, chan, channel_type, |
| 1483 | duration, cookie); |
| 1484 | } |
| 1485 | |
| 1486 | static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy, |
| 1487 | struct net_device *dev, |
| 1488 | u64 cookie) |
| 1489 | { |
| 1490 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1491 | |
| 1492 | return ieee80211_wk_cancel_remain_on_channel(sdata, cookie); |
| 1493 | } |
| 1494 | |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 1495 | static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev, |
| 1496 | struct ieee80211_channel *chan, |
| 1497 | enum nl80211_channel_type channel_type, |
| 1498 | const u8 *buf, size_t len, u64 *cookie) |
| 1499 | { |
| 1500 | return ieee80211_mgd_action(IEEE80211_DEV_TO_SUB_IF(dev), chan, |
| 1501 | channel_type, buf, len, cookie); |
| 1502 | } |
| 1503 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1504 | struct cfg80211_ops mac80211_config_ops = { |
| 1505 | .add_virtual_intf = ieee80211_add_iface, |
| 1506 | .del_virtual_intf = ieee80211_del_iface, |
Johannes Berg | 42613db | 2007-09-28 21:52:27 +0200 | [diff] [blame] | 1507 | .change_virtual_intf = ieee80211_change_iface, |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 1508 | .add_key = ieee80211_add_key, |
| 1509 | .del_key = ieee80211_del_key, |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 1510 | .get_key = ieee80211_get_key, |
Johannes Berg | e8cbb4c | 2007-12-19 02:03:30 +0100 | [diff] [blame] | 1511 | .set_default_key = ieee80211_config_default_key, |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 1512 | .set_default_mgmt_key = ieee80211_config_default_mgmt_key, |
Johannes Berg | 5dfdaf5 | 2007-12-19 02:03:33 +0100 | [diff] [blame] | 1513 | .add_beacon = ieee80211_add_beacon, |
| 1514 | .set_beacon = ieee80211_set_beacon, |
| 1515 | .del_beacon = ieee80211_del_beacon, |
Johannes Berg | 4fd6931 | 2007-12-19 02:03:35 +0100 | [diff] [blame] | 1516 | .add_station = ieee80211_add_station, |
| 1517 | .del_station = ieee80211_del_station, |
| 1518 | .change_station = ieee80211_change_station, |
Johannes Berg | 7bbdd2d | 2007-12-19 02:03:37 +0100 | [diff] [blame] | 1519 | .get_station = ieee80211_get_station, |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1520 | .dump_station = ieee80211_dump_station, |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame^] | 1521 | .dump_survey = ieee80211_dump_survey, |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1522 | #ifdef CONFIG_MAC80211_MESH |
| 1523 | .add_mpath = ieee80211_add_mpath, |
| 1524 | .del_mpath = ieee80211_del_mpath, |
| 1525 | .change_mpath = ieee80211_change_mpath, |
| 1526 | .get_mpath = ieee80211_get_mpath, |
| 1527 | .dump_mpath = ieee80211_dump_mpath, |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1528 | .set_mesh_params = ieee80211_set_mesh_params, |
| 1529 | .get_mesh_params = ieee80211_get_mesh_params, |
Luis Carlos Cobo | c5dd9c2 | 2008-02-23 15:17:17 +0100 | [diff] [blame] | 1530 | #endif |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1531 | .change_bss = ieee80211_change_bss, |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1532 | .set_txq_params = ieee80211_set_txq_params, |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1533 | .set_channel = ieee80211_set_channel, |
Bob Copeland | 665af4f | 2009-01-19 11:20:53 -0500 | [diff] [blame] | 1534 | .suspend = ieee80211_suspend, |
| 1535 | .resume = ieee80211_resume, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1536 | .scan = ieee80211_scan, |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1537 | .auth = ieee80211_auth, |
| 1538 | .assoc = ieee80211_assoc, |
| 1539 | .deauth = ieee80211_deauth, |
| 1540 | .disassoc = ieee80211_disassoc, |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 1541 | .join_ibss = ieee80211_join_ibss, |
| 1542 | .leave_ibss = ieee80211_leave_ibss, |
Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1543 | .set_wiphy_params = ieee80211_set_wiphy_params, |
Johannes Berg | 7643a2c | 2009-06-02 13:01:39 +0200 | [diff] [blame] | 1544 | .set_tx_power = ieee80211_set_tx_power, |
| 1545 | .get_tx_power = ieee80211_get_tx_power, |
Johannes Berg | ab737a4 | 2009-07-01 21:26:58 +0200 | [diff] [blame] | 1546 | .set_wds_peer = ieee80211_set_wds_peer, |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 1547 | .rfkill_poll = ieee80211_rfkill_poll, |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1548 | CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd) |
Johannes Berg | bc92afd | 2009-07-01 21:26:57 +0200 | [diff] [blame] | 1549 | .set_power_mgmt = ieee80211_set_power_mgmt, |
Johannes Berg | 9930380 | 2009-07-01 21:26:59 +0200 | [diff] [blame] | 1550 | .set_bitrate_mask = ieee80211_set_bitrate_mask, |
Johannes Berg | b8bc4b0 | 2009-12-23 13:15:42 +0100 | [diff] [blame] | 1551 | .remain_on_channel = ieee80211_remain_on_channel, |
| 1552 | .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel, |
Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 1553 | .action = ieee80211_action, |
Juuso Oikarinen | a97c13c | 2010-03-23 09:02:34 +0200 | [diff] [blame] | 1554 | .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1555 | }; |