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