blob: 5b8b4460b69f95f69dcd9e9786bb02d2b459aaa5 [file] [log] [blame]
Jiri Bencf0706e822007-05-05 11:45:53 -07001/*
2 * mac80211 configuration hooks for cfg80211
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e822007-05-05 11:45:53 -07005 *
6 * This file is GPLv2 as found in COPYING.
7 */
8
Johannes Berge8cbb4c2007-12-19 02:03:30 +01009#include <linux/ieee80211.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070010#include <linux/nl80211.h>
11#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070013#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010014#include <linux/rcupdate.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070015#include <net/cfg80211.h>
16#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020017#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040018#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040019#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010020#include "mesh.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010021
Johannes Berg05c914f2008-09-11 00:01:58 +020022static bool nl80211_type_check(enum nl80211_iftype type)
Johannes Berg42613db2007-09-28 21:52:27 +020023{
24 switch (type) {
Johannes Berg42613db2007-09-28 21:52:27 +020025 case NL80211_IFTYPE_ADHOC:
Johannes Berg42613db2007-09-28 21:52:27 +020026 case NL80211_IFTYPE_STATION:
Johannes Berg42613db2007-09-28 21:52:27 +020027 case NL80211_IFTYPE_MONITOR:
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010028#ifdef CONFIG_MAC80211_MESH
29 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010030#endif
Jouni Malinenfbf18922008-10-30 19:50:30 +020031 case NL80211_IFTYPE_AP:
32 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergb4540482008-04-14 15:37:03 +020033 case NL80211_IFTYPE_WDS:
Johannes Berg05c914f2008-09-11 00:01:58 +020034 return true;
Johannes Berg42613db2007-09-28 21:52:27 +020035 default:
Johannes Berg05c914f2008-09-11 00:01:58 +020036 return false;
Johannes Berg42613db2007-09-28 21:52:27 +020037 }
38}
39
Felix Fietkauf14543e2009-11-10 20:10:05 +010040static 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 Fietkauf14543e2009-11-10 20:10:05 +010046 return true;
47}
48
Jiri Bencf0706e822007-05-05 11:45:53 -070049static int ieee80211_add_iface(struct wiphy *wiphy, char *name,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010050 enum nl80211_iftype type, u32 *flags,
51 struct vif_params *params)
Jiri Bencf0706e822007-05-05 11:45:53 -070052{
53 struct ieee80211_local *local = wiphy_priv(wiphy);
Michael Wu8cc9a732008-01-31 19:48:23 +010054 struct net_device *dev;
55 struct ieee80211_sub_if_data *sdata;
56 int err;
Jiri Bencf0706e822007-05-05 11:45:53 -070057
Felix Fietkauf14543e2009-11-10 20:10:05 +010058 if (!nl80211_params_check(type, params))
Jiri Bencf0706e822007-05-05 11:45:53 -070059 return -EINVAL;
Jiri Bencf0706e822007-05-05 11:45:53 -070060
Johannes Berg05c914f2008-09-11 00:01:58 +020061 err = ieee80211_if_add(local, name, &dev, type, params);
62 if (err || type != NL80211_IFTYPE_MONITOR || !flags)
Michael Wu8cc9a732008-01-31 19:48:23 +010063 return err;
64
65 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
66 sdata->u.mntr_flags = *flags;
67 return 0;
Jiri Bencf0706e822007-05-05 11:45:53 -070068}
69
Johannes Berg463d0182009-07-14 00:33:35 +020070static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev)
Jiri Bencf0706e822007-05-05 11:45:53 -070071{
Johannes Berg463d0182009-07-14 00:33:35 +020072 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
Jiri Bencf0706e822007-05-05 11:45:53 -070073
Johannes Berg75636522008-07-09 14:40:35 +020074 return 0;
Jiri Bencf0706e822007-05-05 11:45:53 -070075}
76
Johannes Berge36d56b2009-06-09 21:04:43 +020077static int ieee80211_change_iface(struct wiphy *wiphy,
78 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010079 enum nl80211_iftype type, u32 *flags,
80 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020081{
Johannes Berg9607e6b2009-12-23 13:15:31 +010082 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020083 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020084
Johannes Berg9607e6b2009-12-23 13:15:31 +010085 if (ieee80211_sdata_running(sdata))
Johannes Bergc1f9a762009-11-01 19:25:40 +010086 return -EBUSY;
87
Felix Fietkauf14543e2009-11-10 20:10:05 +010088 if (!nl80211_params_check(type, params))
Johannes Berg42613db2007-09-28 21:52:27 +020089 return -EINVAL;
90
Johannes Berg05c914f2008-09-11 00:01:58 +020091 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020092 if (ret)
93 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020094
Johannes Berg902acc72008-02-23 15:17:19 +010095 if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len)
Johannes Berg472dbc42008-09-11 00:01:49 +020096 ieee80211_sdata_set_mesh_id(sdata,
97 params->mesh_id_len,
98 params->mesh_id);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010099
Johannes Berg9bc383d2009-11-19 11:55:19 +0100100 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 Fietkauf7917af2010-04-27 00:26:34 +0200107 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags)
108 sdata->u.mntr_flags = *flags;
109
Johannes Berg42613db2007-09-28 21:52:27 +0200110 return 0;
111}
112
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100113static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200114 u8 key_idx, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100115 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 Bergdb4d1162008-02-25 16:27:45 +0100120 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200121 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100122
Johannes Bergad0e2b52010-06-01 10:19:19 +0200123 if (!netif_running(dev))
124 return -ENETDOWN;
125
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100126 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 Malinen3cfcf6a2009-01-08 13:32:02 +0200139 case WLAN_CIPHER_SUITE_AES_CMAC:
140 alg = ALG_AES_CMAC;
141 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100142 default:
143 return -EINVAL;
144 }
145
John W. Linville34731872010-07-07 15:07:49 -0400146 /* reject WEP and TKIP keys if WEP failed to initialize */
147 if ((alg == ALG_WEP || alg == ALG_TKIP) &&
148 IS_ERR(sdata->local->wep_tx_tfm))
149 return -EINVAL;
150
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300151 key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key,
152 params->seq_len, params->seq);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100153 if (!key)
154 return -ENOMEM;
155
Johannes Bergad0e2b52010-06-01 10:19:19 +0200156 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200157
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100158 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100159 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100160 if (!sta) {
161 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200162 err = -ENOENT;
163 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100164 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100165 }
166
Johannes Bergdb4d1162008-02-25 16:27:45 +0100167 ieee80211_key_link(key, sdata, sta);
168
Johannes Berg3b967662008-04-08 17:56:52 +0200169 err = 0;
170 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200171 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200172
173 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100174}
175
176static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200177 u8 key_idx, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100178{
179 struct ieee80211_sub_if_data *sdata;
180 struct sta_info *sta;
181 int ret;
182
183 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
184
Johannes Bergad0e2b52010-06-01 10:19:19 +0200185 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200186
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100187 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200188 ret = -ENOENT;
189
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100190 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100191 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200192 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100193
Johannes Bergdb4d1162008-02-25 16:27:45 +0100194 if (sta->key) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100195 ieee80211_key_free(sta->key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100196 WARN_ON(sta->key);
Johannes Berg3b967662008-04-08 17:56:52 +0200197 ret = 0;
198 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100199
Johannes Berg3b967662008-04-08 17:56:52 +0200200 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100201 }
202
Johannes Berg3b967662008-04-08 17:56:52 +0200203 if (!sdata->keys[key_idx]) {
204 ret = -ENOENT;
205 goto out_unlock;
206 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100207
Johannes Bergd0709a62008-02-25 16:27:46 +0100208 ieee80211_key_free(sdata->keys[key_idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100209 WARN_ON(sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100210
Johannes Berg3b967662008-04-08 17:56:52 +0200211 ret = 0;
212 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200213 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200214
215 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100216}
217
Johannes Berg62da92f2007-12-19 02:03:31 +0100218static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200219 u8 key_idx, const u8 *mac_addr, void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100220 void (*callback)(void *cookie,
221 struct key_params *params))
222{
Johannes Berg14db74b2008-07-29 13:22:52 +0200223 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100224 struct sta_info *sta = NULL;
225 u8 seq[6] = {0};
226 struct key_params params;
227 struct ieee80211_key *key;
228 u32 iv32;
229 u16 iv16;
230 int err = -ENOENT;
231
Johannes Berg14db74b2008-07-29 13:22:52 +0200232 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
233
Johannes Berg3b967662008-04-08 17:56:52 +0200234 rcu_read_lock();
235
Johannes Berg62da92f2007-12-19 02:03:31 +0100236 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100237 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100238 if (!sta)
239 goto out;
240
241 key = sta->key;
242 } else
243 key = sdata->keys[key_idx];
244
245 if (!key)
246 goto out;
247
248 memset(&params, 0, sizeof(params));
249
250 switch (key->conf.alg) {
251 case ALG_TKIP:
252 params.cipher = WLAN_CIPHER_SUITE_TKIP;
253
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700254 iv32 = key->u.tkip.tx.iv32;
255 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100256
Johannes Berg24487982009-04-23 18:52:52 +0200257 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
258 drv_get_tkip_seq(sdata->local,
259 key->conf.hw_key_idx,
260 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100261
262 seq[0] = iv16 & 0xff;
263 seq[1] = (iv16 >> 8) & 0xff;
264 seq[2] = iv32 & 0xff;
265 seq[3] = (iv32 >> 8) & 0xff;
266 seq[4] = (iv32 >> 16) & 0xff;
267 seq[5] = (iv32 >> 24) & 0xff;
268 params.seq = seq;
269 params.seq_len = 6;
270 break;
271 case ALG_CCMP:
272 params.cipher = WLAN_CIPHER_SUITE_CCMP;
273 seq[0] = key->u.ccmp.tx_pn[5];
274 seq[1] = key->u.ccmp.tx_pn[4];
275 seq[2] = key->u.ccmp.tx_pn[3];
276 seq[3] = key->u.ccmp.tx_pn[2];
277 seq[4] = key->u.ccmp.tx_pn[1];
278 seq[5] = key->u.ccmp.tx_pn[0];
279 params.seq = seq;
280 params.seq_len = 6;
281 break;
282 case ALG_WEP:
283 if (key->conf.keylen == 5)
284 params.cipher = WLAN_CIPHER_SUITE_WEP40;
285 else
286 params.cipher = WLAN_CIPHER_SUITE_WEP104;
287 break;
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200288 case ALG_AES_CMAC:
289 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
290 seq[0] = key->u.aes_cmac.tx_pn[5];
291 seq[1] = key->u.aes_cmac.tx_pn[4];
292 seq[2] = key->u.aes_cmac.tx_pn[3];
293 seq[3] = key->u.aes_cmac.tx_pn[2];
294 seq[4] = key->u.aes_cmac.tx_pn[1];
295 seq[5] = key->u.aes_cmac.tx_pn[0];
296 params.seq = seq;
297 params.seq_len = 6;
298 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100299 }
300
301 params.key = key->conf.key;
302 params.key_len = key->conf.keylen;
303
304 callback(cookie, &params);
305 err = 0;
306
307 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200308 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100309 return err;
310}
311
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100312static int ieee80211_config_default_key(struct wiphy *wiphy,
313 struct net_device *dev,
314 u8 key_idx)
315{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200316 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100317
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100318 ieee80211_set_default_key(sdata, key_idx);
319
320 return 0;
321}
322
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200323static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
324 struct net_device *dev,
325 u8 key_idx)
326{
327 struct ieee80211_sub_if_data *sdata;
328
329 rcu_read_lock();
330
331 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
332 ieee80211_set_default_mgmt_key(sdata, key_idx);
333
334 rcu_read_unlock();
335
336 return 0;
337}
338
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100339static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
340{
Johannes Bergd0709a62008-02-25 16:27:46 +0100341 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100342
Johannes Bergf5ea9122009-08-07 16:17:38 +0200343 sinfo->generation = sdata->local->sta_generation;
344
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100345 sinfo->filled = STATION_INFO_INACTIVE_TIME |
346 STATION_INFO_RX_BYTES |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100347 STATION_INFO_TX_BYTES |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200348 STATION_INFO_RX_PACKETS |
349 STATION_INFO_TX_PACKETS |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100350 STATION_INFO_TX_BITRATE;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100351
352 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
353 sinfo->rx_bytes = sta->rx_bytes;
354 sinfo->tx_bytes = sta->tx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200355 sinfo->rx_packets = sta->rx_packets;
356 sinfo->tx_packets = sta->tx_packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100357
John W. Linville19deffb2009-12-08 17:10:13 -0500358 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
359 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Henning Rogge420e7fa2008-12-11 22:04:19 +0100360 sinfo->filled |= STATION_INFO_SIGNAL;
361 sinfo->signal = (s8)sta->last_signal;
362 }
363
364 sinfo->txrate.flags = 0;
365 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
366 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
367 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
368 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
369 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
370 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
371
372 if (!(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)) {
373 struct ieee80211_supported_band *sband;
374 sband = sta->local->hw.wiphy->bands[
375 sta->local->hw.conf.channel->band];
376 sinfo->txrate.legacy =
377 sband->bitrates[sta->last_tx_rate.idx].bitrate;
378 } else
379 sinfo->txrate.mcs = sta->last_tx_rate.idx;
380
Johannes Berg902acc72008-02-23 15:17:19 +0100381 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100382#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100383 sinfo->filled |= STATION_INFO_LLID |
384 STATION_INFO_PLID |
385 STATION_INFO_PLINK_STATE;
386
387 sinfo->llid = le16_to_cpu(sta->llid);
388 sinfo->plid = le16_to_cpu(sta->plid);
389 sinfo->plink_state = sta->plink_state;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100390#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100391 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100392}
393
394
395static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
396 int idx, u8 *mac, struct station_info *sinfo)
397{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100398 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100399 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100400 int ret = -ENOENT;
401
402 rcu_read_lock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100403
Johannes Berg3b53fde82009-11-16 12:00:37 +0100404 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100405 if (sta) {
406 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200407 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100408 sta_set_sinfo(sta, sinfo);
409 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100410
Johannes Bergd0709a62008-02-25 16:27:46 +0100411 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100412
Johannes Bergd0709a62008-02-25 16:27:46 +0100413 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100414}
415
Holger Schurig12897232010-04-19 10:23:57 +0200416static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
417 int idx, struct survey_info *survey)
418{
419 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
420
Holger Schurig12897232010-04-19 10:23:57 +0200421 return drv_get_survey(local, idx, survey);
422}
423
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100424static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100425 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100426{
Johannes Bergabe60632009-11-25 17:46:18 +0100427 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100428 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100429 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100430
Johannes Bergd0709a62008-02-25 16:27:46 +0100431 rcu_read_lock();
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100432
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100433 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100434 if (sta) {
435 ret = 0;
436 sta_set_sinfo(sta, sinfo);
437 }
438
439 rcu_read_unlock();
440
441 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100442}
443
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100444/*
445 * This handles both adding a beacon and setting new beacon info
446 */
447static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
448 struct beacon_parameters *params)
449{
450 struct beacon_data *new, *old;
451 int new_head_len, new_tail_len;
452 int size;
453 int err = -EINVAL;
454
455 old = sdata->u.ap.beacon;
456
457 /* head must not be zero-length */
458 if (params->head && !params->head_len)
459 return -EINVAL;
460
461 /*
462 * This is a kludge. beacon interval should really be part
463 * of the beacon information.
464 */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200465 if (params->interval &&
466 (sdata->vif.bss_conf.beacon_int != params->interval)) {
467 sdata->vif.bss_conf.beacon_int = params->interval;
468 ieee80211_bss_info_change_notify(sdata,
469 BSS_CHANGED_BEACON_INT);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100470 }
471
472 /* Need to have a beacon head if we don't have one yet */
473 if (!params->head && !old)
474 return err;
475
476 /* sorry, no way to start beaconing without dtim period */
477 if (!params->dtim_period && !old)
478 return err;
479
480 /* new or old head? */
481 if (params->head)
482 new_head_len = params->head_len;
483 else
484 new_head_len = old->head_len;
485
486 /* new or old tail? */
487 if (params->tail || !old)
488 /* params->tail_len will be zero for !params->tail */
489 new_tail_len = params->tail_len;
490 else
491 new_tail_len = old->tail_len;
492
493 size = sizeof(*new) + new_head_len + new_tail_len;
494
495 new = kzalloc(size, GFP_KERNEL);
496 if (!new)
497 return -ENOMEM;
498
499 /* start filling the new info now */
500
501 /* new or old dtim period? */
502 if (params->dtim_period)
503 new->dtim_period = params->dtim_period;
504 else
505 new->dtim_period = old->dtim_period;
506
507 /*
508 * pointers go into the block we allocated,
509 * memory is | beacon_data | head | tail |
510 */
511 new->head = ((u8 *) new) + sizeof(*new);
512 new->tail = new->head + new_head_len;
513 new->head_len = new_head_len;
514 new->tail_len = new_tail_len;
515
516 /* copy in head */
517 if (params->head)
518 memcpy(new->head, params->head, new_head_len);
519 else
520 memcpy(new->head, old->head, new_head_len);
521
522 /* copy in optional tail */
523 if (params->tail)
524 memcpy(new->tail, params->tail, new_tail_len);
525 else
526 if (old)
527 memcpy(new->tail, old->tail, new_tail_len);
528
Johannes Berg19885c42010-02-05 11:45:06 +0100529 sdata->vif.bss_conf.dtim_period = new->dtim_period;
530
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100531 rcu_assign_pointer(sdata->u.ap.beacon, new);
532
533 synchronize_rcu();
534
535 kfree(old);
536
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200537 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
538 BSS_CHANGED_BEACON);
539 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100540}
541
542static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
543 struct beacon_parameters *params)
544{
Johannes Berg14db74b2008-07-29 13:22:52 +0200545 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100546 struct beacon_data *old;
547
Johannes Berg14db74b2008-07-29 13:22:52 +0200548 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
549
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100550 old = sdata->u.ap.beacon;
551
552 if (old)
553 return -EALREADY;
554
555 return ieee80211_config_beacon(sdata, params);
556}
557
558static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
559 struct beacon_parameters *params)
560{
Johannes Berg14db74b2008-07-29 13:22:52 +0200561 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100562 struct beacon_data *old;
563
Johannes Berg14db74b2008-07-29 13:22:52 +0200564 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
565
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100566 old = sdata->u.ap.beacon;
567
568 if (!old)
569 return -ENOENT;
570
571 return ieee80211_config_beacon(sdata, params);
572}
573
574static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
575{
Johannes Berg14db74b2008-07-29 13:22:52 +0200576 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100577 struct beacon_data *old;
578
Johannes Berg14db74b2008-07-29 13:22:52 +0200579 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
580
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100581 old = sdata->u.ap.beacon;
582
583 if (!old)
584 return -ENOENT;
585
586 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
587 synchronize_rcu();
588 kfree(old);
589
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200590 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
591 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100592}
593
Johannes Berg4fd69312007-12-19 02:03:35 +0100594/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
595struct iapp_layer2_update {
596 u8 da[ETH_ALEN]; /* broadcast */
597 u8 sa[ETH_ALEN]; /* STA addr */
598 __be16 len; /* 6 */
599 u8 dsap; /* 0 */
600 u8 ssap; /* 0 */
601 u8 control;
602 u8 xid_info[3];
603} __attribute__ ((packed));
604
605static void ieee80211_send_layer2_update(struct sta_info *sta)
606{
607 struct iapp_layer2_update *msg;
608 struct sk_buff *skb;
609
610 /* Send Level 2 Update Frame to update forwarding tables in layer 2
611 * bridge devices */
612
613 skb = dev_alloc_skb(sizeof(*msg));
614 if (!skb)
615 return;
616 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
617
618 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
619 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
620
621 memset(msg->da, 0xff, ETH_ALEN);
Johannes Berg17741cd2008-09-11 00:02:02 +0200622 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100623 msg->len = htons(6);
624 msg->dsap = 0;
625 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
626 msg->control = 0xaf; /* XID response lsb.1111F101.
627 * F=0 (no poll command; unsolicited frame) */
628 msg->xid_info[0] = 0x81; /* XID format identifier */
629 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
630 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
631
Johannes Bergd0709a62008-02-25 16:27:46 +0100632 skb->dev = sta->sdata->dev;
633 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100634 memset(skb->cb, 0, sizeof(skb->cb));
635 netif_rx(skb);
636}
637
638static void sta_apply_parameters(struct ieee80211_local *local,
639 struct sta_info *sta,
640 struct station_parameters *params)
641{
642 u32 rates;
643 int i, j;
Johannes Berg8318d782008-01-24 19:38:38 +0100644 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100645 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300646 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100647
Johannes Bergae5eb022008-10-14 16:58:37 +0200648 sband = local->hw.wiphy->bands[local->oper_channel->band];
649
Johannes Bergeccb8e82009-05-11 21:57:56 +0300650 spin_lock_bh(&sta->lock);
651 mask = params->sta_flags_mask;
652 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100653
Johannes Bergeccb8e82009-05-11 21:57:56 +0300654 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100655 sta->flags &= ~WLAN_STA_AUTHORIZED;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300656 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Johannes Berg4fd69312007-12-19 02:03:35 +0100657 sta->flags |= WLAN_STA_AUTHORIZED;
Johannes Berg4fd69312007-12-19 02:03:35 +0100658 }
659
Johannes Bergeccb8e82009-05-11 21:57:56 +0300660 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
661 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
662 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
663 sta->flags |= WLAN_STA_SHORT_PREAMBLE;
664 }
665
666 if (mask & BIT(NL80211_STA_FLAG_WME)) {
667 sta->flags &= ~WLAN_STA_WME;
668 if (set & BIT(NL80211_STA_FLAG_WME))
669 sta->flags |= WLAN_STA_WME;
670 }
671
672 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
673 sta->flags &= ~WLAN_STA_MFP;
674 if (set & BIT(NL80211_STA_FLAG_MFP))
675 sta->flags |= WLAN_STA_MFP;
676 }
677 spin_unlock_bh(&sta->lock);
678
Johannes Berg73651ee2008-02-25 16:27:47 +0100679 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +0200680 * cfg80211 validates this (1-2007) and allows setting the AID
681 * only when creating a new station entry
682 */
683 if (params->aid)
684 sta->sta.aid = params->aid;
685
686 /*
Johannes Berg73651ee2008-02-25 16:27:47 +0100687 * FIXME: updating the following information is racy when this
688 * function is called from ieee80211_change_station().
689 * However, all this information should be static so
690 * maybe we should just reject attemps to change it.
691 */
692
Johannes Berg4fd69312007-12-19 02:03:35 +0100693 if (params->listen_interval >= 0)
694 sta->listen_interval = params->listen_interval;
695
696 if (params->supported_rates) {
697 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100698
Johannes Berg4fd69312007-12-19 02:03:35 +0100699 for (i = 0; i < params->supported_rates_len; i++) {
700 int rate = (params->supported_rates[i] & 0x7f) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +0100701 for (j = 0; j < sband->n_bitrates; j++) {
702 if (sband->bitrates[j].bitrate == rate)
Johannes Berg4fd69312007-12-19 02:03:35 +0100703 rates |= BIT(j);
704 }
705 }
Johannes Berg323ce792008-09-11 02:45:11 +0200706 sta->sta.supp_rates[local->oper_channel->band] = rates;
Johannes Berg4fd69312007-12-19 02:03:35 +0100707 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100708
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200709 if (params->ht_capa)
Johannes Bergae5eb022008-10-14 16:58:37 +0200710 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
711 params->ht_capa,
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200712 &sta->sta.ht_cap);
Jouni Malinen36aedc92008-08-25 11:58:58 +0300713
Johannes Berg902acc72008-02-23 15:17:19 +0100714 if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100715 switch (params->plink_action) {
716 case PLINK_ACTION_OPEN:
717 mesh_plink_open(sta);
718 break;
719 case PLINK_ACTION_BLOCK:
720 mesh_plink_block(sta);
721 break;
722 }
Johannes Berg902acc72008-02-23 15:17:19 +0100723 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100724}
725
726static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
727 u8 *mac, struct station_parameters *params)
728{
Johannes Berg14db74b2008-07-29 13:22:52 +0200729 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100730 struct sta_info *sta;
731 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +0100732 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200733 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +0100734
Johannes Berg4fd69312007-12-19 02:03:35 +0100735 if (params->vlan) {
736 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
737
Johannes Berg05c914f2008-09-11 00:01:58 +0200738 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
739 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +0100740 return -EINVAL;
741 } else
742 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
743
Johannes Berg47846c92009-11-25 17:46:19 +0100744 if (compare_ether_addr(mac, sdata->vif.addr) == 0)
Johannes Berg03e44972008-02-27 09:56:40 +0100745 return -EINVAL;
746
747 if (is_multicast_ether_addr(mac))
748 return -EINVAL;
749
750 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +0100751 if (!sta)
752 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +0100753
754 sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
755
756 sta_apply_parameters(local, sta, params);
757
Johannes Berg4b7679a2008-09-18 18:14:18 +0200758 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +0100759
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200760 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
761 sdata->vif.type == NL80211_IFTYPE_AP;
762
Johannes Berg34e89502010-02-03 13:59:58 +0100763 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100764 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +0100765 rcu_read_unlock();
766 return err;
767 }
768
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200769 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +0100770 ieee80211_send_layer2_update(sta);
771
772 rcu_read_unlock();
773
Johannes Berg4fd69312007-12-19 02:03:35 +0100774 return 0;
775}
776
777static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
778 u8 *mac)
779{
Johannes Berg14db74b2008-07-29 13:22:52 +0200780 struct ieee80211_local *local = wiphy_priv(wiphy);
781 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100782
Johannes Berg14db74b2008-07-29 13:22:52 +0200783 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
784
Johannes Berg34e89502010-02-03 13:59:58 +0100785 if (mac)
786 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200787
Johannes Berg34e89502010-02-03 13:59:58 +0100788 sta_info_flush(local, sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +0100789 return 0;
790}
791
792static int ieee80211_change_station(struct wiphy *wiphy,
793 struct net_device *dev,
794 u8 *mac,
795 struct station_parameters *params)
796{
Johannes Bergabe60632009-11-25 17:46:18 +0100797 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +0200798 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100799 struct sta_info *sta;
800 struct ieee80211_sub_if_data *vlansdata;
801
Johannes Berg98dd6a52008-04-10 15:36:09 +0200802 rcu_read_lock();
803
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100804 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200805 if (!sta) {
806 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100807 return -ENOENT;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200808 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100809
Johannes Bergd0709a62008-02-25 16:27:46 +0100810 if (params->vlan && params->vlan != sta->sdata->dev) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100811 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
812
Johannes Berg05c914f2008-09-11 00:01:58 +0200813 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
814 vlansdata->vif.type != NL80211_IFTYPE_AP) {
Johannes Berg98dd6a52008-04-10 15:36:09 +0200815 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100816 return -EINVAL;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200817 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100818
Johannes Berg9bc383d2009-11-19 11:55:19 +0100819 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +0100820 if (vlansdata->u.vlan.sta) {
821 rcu_read_unlock();
Felix Fietkauf14543e2009-11-10 20:10:05 +0100822 return -EBUSY;
Johannes Berg33054432009-11-20 10:09:14 +0100823 }
Felix Fietkauf14543e2009-11-10 20:10:05 +0100824
825 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
826 }
827
Johannes Berg14db74b2008-07-29 13:22:52 +0200828 sta->sdata = vlansdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100829 ieee80211_send_layer2_update(sta);
830 }
831
832 sta_apply_parameters(local, sta, params);
833
Johannes Berg98dd6a52008-04-10 15:36:09 +0200834 rcu_read_unlock();
835
Johannes Berg4fd69312007-12-19 02:03:35 +0100836 return 0;
837}
838
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100839#ifdef CONFIG_MAC80211_MESH
840static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
841 u8 *dst, u8 *next_hop)
842{
Johannes Berg14db74b2008-07-29 13:22:52 +0200843 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100844 struct mesh_path *mpath;
845 struct sta_info *sta;
846 int err;
847
Johannes Berg14db74b2008-07-29 13:22:52 +0200848 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
849
Johannes Bergd0709a62008-02-25 16:27:46 +0100850 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100851 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100852 if (!sta) {
853 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100854 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +0100855 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100856
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200857 err = mesh_path_add(dst, sdata);
Johannes Bergd0709a62008-02-25 16:27:46 +0100858 if (err) {
859 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100860 return err;
Johannes Bergd0709a62008-02-25 16:27:46 +0100861 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100862
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200863 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100864 if (!mpath) {
865 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100866 return -ENXIO;
867 }
868 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100869
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100870 rcu_read_unlock();
871 return 0;
872}
873
874static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
875 u8 *dst)
876{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200877 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100878
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200879 if (dst)
880 return mesh_path_del(dst, sdata);
881
882 mesh_path_flush(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100883 return 0;
884}
885
886static int ieee80211_change_mpath(struct wiphy *wiphy,
887 struct net_device *dev,
888 u8 *dst, u8 *next_hop)
889{
Johannes Berg14db74b2008-07-29 13:22:52 +0200890 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100891 struct mesh_path *mpath;
892 struct sta_info *sta;
893
Johannes Berg14db74b2008-07-29 13:22:52 +0200894 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
895
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100896 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +0100897
Johannes Bergabe60632009-11-25 17:46:18 +0100898 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100899 if (!sta) {
900 rcu_read_unlock();
901 return -ENOENT;
902 }
903
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200904 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100905 if (!mpath) {
906 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100907 return -ENOENT;
908 }
909
910 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100911
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100912 rcu_read_unlock();
913 return 0;
914}
915
916static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
917 struct mpath_info *pinfo)
918{
919 if (mpath->next_hop)
Johannes Berg17741cd2008-09-11 00:02:02 +0200920 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100921 else
922 memset(next_hop, 0, ETH_ALEN);
923
Johannes Bergf5ea9122009-08-07 16:17:38 +0200924 pinfo->generation = mesh_paths_generation;
925
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100926 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +0000927 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100928 MPATH_INFO_METRIC |
929 MPATH_INFO_EXPTIME |
930 MPATH_INFO_DISCOVERY_TIMEOUT |
931 MPATH_INFO_DISCOVERY_RETRIES |
932 MPATH_INFO_FLAGS;
933
934 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000935 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100936 pinfo->metric = mpath->metric;
937 if (time_before(jiffies, mpath->exp_time))
938 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
939 pinfo->discovery_timeout =
940 jiffies_to_msecs(mpath->discovery_timeout);
941 pinfo->discovery_retries = mpath->discovery_retries;
942 pinfo->flags = 0;
943 if (mpath->flags & MESH_PATH_ACTIVE)
944 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
945 if (mpath->flags & MESH_PATH_RESOLVING)
946 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000947 if (mpath->flags & MESH_PATH_SN_VALID)
948 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100949 if (mpath->flags & MESH_PATH_FIXED)
950 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
951 if (mpath->flags & MESH_PATH_RESOLVING)
952 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
953
954 pinfo->flags = mpath->flags;
955}
956
957static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
958 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
959
960{
Johannes Berg14db74b2008-07-29 13:22:52 +0200961 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100962 struct mesh_path *mpath;
963
Johannes Berg14db74b2008-07-29 13:22:52 +0200964 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
965
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100966 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200967 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100968 if (!mpath) {
969 rcu_read_unlock();
970 return -ENOENT;
971 }
972 memcpy(dst, mpath->dst, ETH_ALEN);
973 mpath_set_pinfo(mpath, next_hop, pinfo);
974 rcu_read_unlock();
975 return 0;
976}
977
978static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
979 int idx, u8 *dst, u8 *next_hop,
980 struct mpath_info *pinfo)
981{
Johannes Berg14db74b2008-07-29 13:22:52 +0200982 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100983 struct mesh_path *mpath;
984
Johannes Berg14db74b2008-07-29 13:22:52 +0200985 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
986
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100987 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200988 mpath = mesh_path_lookup_by_idx(idx, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100989 if (!mpath) {
990 rcu_read_unlock();
991 return -ENOENT;
992 }
993 memcpy(dst, mpath->dst, ETH_ALEN);
994 mpath_set_pinfo(mpath, next_hop, pinfo);
995 rcu_read_unlock();
996 return 0;
997}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700998
999static int ieee80211_get_mesh_params(struct wiphy *wiphy,
1000 struct net_device *dev,
1001 struct mesh_config *conf)
1002{
1003 struct ieee80211_sub_if_data *sdata;
1004 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1005
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001006 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1007 return 0;
1008}
1009
1010static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1011{
1012 return (mask >> (parm-1)) & 0x1;
1013}
1014
1015static int ieee80211_set_mesh_params(struct wiphy *wiphy,
1016 struct net_device *dev,
1017 const struct mesh_config *nconf, u32 mask)
1018{
1019 struct mesh_config *conf;
1020 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001021 struct ieee80211_if_mesh *ifmsh;
1022
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001023 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001024 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001025
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001026 /* Set the config options which we are interested in setting */
1027 conf = &(sdata->u.mesh.mshcfg);
1028 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1029 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1030 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1031 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1032 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1033 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1034 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1035 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1036 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1037 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1038 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1039 conf->dot11MeshTTL = nconf->dot11MeshTTL;
1040 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
1041 conf->auto_open_plinks = nconf->auto_open_plinks;
1042 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1043 conf->dot11MeshHWMPmaxPREQretries =
1044 nconf->dot11MeshHWMPmaxPREQretries;
1045 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1046 conf->path_refresh_time = nconf->path_refresh_time;
1047 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1048 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1049 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1050 conf->dot11MeshHWMPactivePathTimeout =
1051 nconf->dot11MeshHWMPactivePathTimeout;
1052 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1053 conf->dot11MeshHWMPpreqMinInterval =
1054 nconf->dot11MeshHWMPpreqMinInterval;
1055 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1056 mask))
1057 conf->dot11MeshHWMPnetDiameterTraversalTime =
1058 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001059 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1060 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1061 ieee80211_mesh_root_setup(ifmsh);
1062 }
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001063 return 0;
1064}
1065
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001066#endif
1067
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001068static int ieee80211_change_bss(struct wiphy *wiphy,
1069 struct net_device *dev,
1070 struct bss_parameters *params)
1071{
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001072 struct ieee80211_sub_if_data *sdata;
1073 u32 changed = 0;
1074
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001075 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1076
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001077 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001078 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001079 changed |= BSS_CHANGED_ERP_CTS_PROT;
1080 }
1081 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001082 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001083 params->use_short_preamble;
1084 changed |= BSS_CHANGED_ERP_PREAMBLE;
1085 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001086
1087 if (!sdata->vif.bss_conf.use_short_slot &&
1088 sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
1089 sdata->vif.bss_conf.use_short_slot = true;
1090 changed |= BSS_CHANGED_ERP_SLOT;
1091 }
1092
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001093 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001094 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001095 params->use_short_slot_time;
1096 changed |= BSS_CHANGED_ERP_SLOT;
1097 }
1098
Jouni Malinen90c97a02008-10-30 16:59:22 +02001099 if (params->basic_rates) {
1100 int i, j;
1101 u32 rates = 0;
1102 struct ieee80211_local *local = wiphy_priv(wiphy);
1103 struct ieee80211_supported_band *sband =
1104 wiphy->bands[local->oper_channel->band];
1105
1106 for (i = 0; i < params->basic_rates_len; i++) {
1107 int rate = (params->basic_rates[i] & 0x7f) * 5;
1108 for (j = 0; j < sband->n_bitrates; j++) {
1109 if (sband->bitrates[j].bitrate == rate)
1110 rates |= BIT(j);
1111 }
1112 }
1113 sdata->vif.bss_conf.basic_rates = rates;
1114 changed |= BSS_CHANGED_BASIC_RATES;
1115 }
1116
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001117 if (params->ap_isolate >= 0) {
1118 if (params->ap_isolate)
1119 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1120 else
1121 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1122 }
1123
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001124 ieee80211_bss_info_change_notify(sdata, changed);
1125
1126 return 0;
1127}
1128
Jouni Malinen31888482008-10-30 16:59:24 +02001129static int ieee80211_set_txq_params(struct wiphy *wiphy,
1130 struct ieee80211_txq_params *params)
1131{
1132 struct ieee80211_local *local = wiphy_priv(wiphy);
1133 struct ieee80211_tx_queue_params p;
1134
1135 if (!local->ops->conf_tx)
1136 return -EOPNOTSUPP;
1137
1138 memset(&p, 0, sizeof(p));
1139 p.aifs = params->aifs;
1140 p.cw_max = params->cwmax;
1141 p.cw_min = params->cwmin;
1142 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001143
1144 /*
1145 * Setting tx queue params disables u-apsd because it's only
1146 * called in master mode.
1147 */
1148 p.uapsd = false;
1149
Johannes Berg24487982009-04-23 18:52:52 +02001150 if (drv_conf_tx(local, params->queue, &p)) {
Jouni Malinen31888482008-10-30 16:59:24 +02001151 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +02001152 "parameters for queue %d\n",
1153 wiphy_name(local->hw.wiphy), params->queue);
Jouni Malinen31888482008-10-30 16:59:24 +02001154 return -EINVAL;
1155 }
1156
Stanislaw Gruszka0af26b22010-03-29 12:18:36 +02001157 /* enable WMM or activate new settings */
1158 local->hw.conf.flags |= IEEE80211_CONF_QOS;
1159 drv_config(local, IEEE80211_CONF_CHANGE_QOS);
1160
Jouni Malinen31888482008-10-30 16:59:24 +02001161 return 0;
1162}
1163
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001164static int ieee80211_set_channel(struct wiphy *wiphy,
Johannes Bergf444de02010-05-05 15:25:02 +02001165 struct net_device *netdev,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001166 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +05301167 enum nl80211_channel_type channel_type)
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001168{
1169 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg0aaffa92010-05-05 15:28:27 +02001170 struct ieee80211_sub_if_data *sdata = NULL;
1171
1172 if (netdev)
1173 sdata = IEEE80211_DEV_TO_SUB_IF(netdev);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001174
Johannes Bergf444de02010-05-05 15:25:02 +02001175 switch (ieee80211_get_channel_mode(local, NULL)) {
1176 case CHAN_MODE_HOPPING:
1177 return -EBUSY;
1178 case CHAN_MODE_FIXED:
Johannes Berg0aaffa92010-05-05 15:28:27 +02001179 if (local->oper_channel != chan)
1180 return -EBUSY;
1181 if (!sdata && local->_oper_channel_type == channel_type)
Johannes Bergf444de02010-05-05 15:25:02 +02001182 return 0;
Johannes Berg0aaffa92010-05-05 15:28:27 +02001183 break;
Johannes Bergf444de02010-05-05 15:25:02 +02001184 case CHAN_MODE_UNDEFINED:
1185 break;
1186 }
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001187
1188 local->oper_channel = chan;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001189
Johannes Berg0aaffa92010-05-05 15:28:27 +02001190 if (!ieee80211_set_channel_type(local, sdata, channel_type))
1191 return -EBUSY;
1192
1193 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
1194 if (sdata && sdata->vif.type != NL80211_IFTYPE_MONITOR)
1195 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1196
1197 return 0;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001198}
1199
Bob Copeland665af4f2009-01-19 11:20:53 -05001200#ifdef CONFIG_PM
1201static int ieee80211_suspend(struct wiphy *wiphy)
1202{
1203 return __ieee80211_suspend(wiphy_priv(wiphy));
1204}
1205
1206static int ieee80211_resume(struct wiphy *wiphy)
1207{
1208 return __ieee80211_resume(wiphy_priv(wiphy));
1209}
1210#else
1211#define ieee80211_suspend NULL
1212#define ieee80211_resume NULL
1213#endif
1214
Johannes Berg2a519312009-02-10 21:25:55 +01001215static int ieee80211_scan(struct wiphy *wiphy,
1216 struct net_device *dev,
1217 struct cfg80211_scan_request *req)
1218{
1219 struct ieee80211_sub_if_data *sdata;
1220
Johannes Berg2a519312009-02-10 21:25:55 +01001221 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1222
1223 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1224 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Jouni Malinen357303e2009-04-16 18:44:53 +03001225 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
1226 (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon))
Johannes Berg2a519312009-02-10 21:25:55 +01001227 return -EOPNOTSUPP;
1228
1229 return ieee80211_request_scan(sdata, req);
1230}
1231
Jouni Malinen636a5d32009-03-19 13:39:22 +02001232static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1233 struct cfg80211_auth_request *req)
1234{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001235 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001236}
1237
1238static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1239 struct cfg80211_assoc_request *req)
1240{
Johannes Bergf444de02010-05-05 15:25:02 +02001241 struct ieee80211_local *local = wiphy_priv(wiphy);
1242 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1243
1244 switch (ieee80211_get_channel_mode(local, sdata)) {
1245 case CHAN_MODE_HOPPING:
1246 return -EBUSY;
1247 case CHAN_MODE_FIXED:
1248 if (local->oper_channel == req->bss->channel)
1249 break;
1250 return -EBUSY;
1251 case CHAN_MODE_UNDEFINED:
1252 break;
1253 }
1254
Johannes Berg77fdaa12009-07-07 03:45:17 +02001255 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001256}
1257
1258static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001259 struct cfg80211_deauth_request *req,
1260 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001261{
Johannes Berg667503d2009-07-07 03:56:11 +02001262 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1263 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001264}
1265
1266static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001267 struct cfg80211_disassoc_request *req,
1268 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001269{
Johannes Berg667503d2009-07-07 03:56:11 +02001270 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1271 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001272}
1273
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001274static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1275 struct cfg80211_ibss_params *params)
1276{
Johannes Bergf444de02010-05-05 15:25:02 +02001277 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001278 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1279
Johannes Bergf444de02010-05-05 15:25:02 +02001280 switch (ieee80211_get_channel_mode(local, sdata)) {
1281 case CHAN_MODE_HOPPING:
1282 return -EBUSY;
1283 case CHAN_MODE_FIXED:
1284 if (!params->channel_fixed)
1285 return -EBUSY;
1286 if (local->oper_channel == params->channel)
1287 break;
1288 return -EBUSY;
1289 case CHAN_MODE_UNDEFINED:
1290 break;
1291 }
1292
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001293 return ieee80211_ibss_join(sdata, params);
1294}
1295
1296static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1297{
1298 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1299
1300 return ieee80211_ibss_leave(sdata);
1301}
1302
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001303static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1304{
1305 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001306 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001307
Lukáš Turek310bc672009-12-21 22:50:48 +01001308 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1309 err = drv_set_coverage_class(local, wiphy->coverage_class);
1310
1311 if (err)
1312 return err;
1313 }
1314
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001315 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001316 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001317
Johannes Berg24487982009-04-23 18:52:52 +02001318 if (err)
1319 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001320 }
1321
1322 if (changed & WIPHY_PARAM_RETRY_SHORT)
1323 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1324 if (changed & WIPHY_PARAM_RETRY_LONG)
1325 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1326 if (changed &
1327 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1328 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1329
1330 return 0;
1331}
1332
Johannes Berg7643a2c2009-06-02 13:01:39 +02001333static int ieee80211_set_tx_power(struct wiphy *wiphy,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001334 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02001335{
1336 struct ieee80211_local *local = wiphy_priv(wiphy);
1337 struct ieee80211_channel *chan = local->hw.conf.channel;
1338 u32 changes = 0;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001339
1340 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001341 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg7643a2c2009-06-02 13:01:39 +02001342 local->user_power_level = -1;
1343 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001344 case NL80211_TX_POWER_LIMITED:
1345 if (mbm < 0 || (mbm % 100))
1346 return -EOPNOTSUPP;
1347 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001348 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001349 case NL80211_TX_POWER_FIXED:
1350 if (mbm < 0 || (mbm % 100))
1351 return -EOPNOTSUPP;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001352 /* TODO: move to cfg80211 when it knows the channel */
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001353 if (MBM_TO_DBM(mbm) > chan->max_power)
Johannes Berg7643a2c2009-06-02 13:01:39 +02001354 return -EINVAL;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001355 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001356 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001357 }
1358
1359 ieee80211_hw_config(local, changes);
1360
1361 return 0;
1362}
1363
1364static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1365{
1366 struct ieee80211_local *local = wiphy_priv(wiphy);
1367
1368 *dbm = local->hw.conf.power_level;
1369
Johannes Berg7643a2c2009-06-02 13:01:39 +02001370 return 0;
1371}
1372
Johannes Bergab737a42009-07-01 21:26:58 +02001373static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
1374 u8 *addr)
1375{
1376 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1377
1378 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
1379
1380 return 0;
1381}
1382
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001383static void ieee80211_rfkill_poll(struct wiphy *wiphy)
1384{
1385 struct ieee80211_local *local = wiphy_priv(wiphy);
1386
1387 drv_rfkill_poll(local);
1388}
1389
Johannes Bergaff89a92009-07-01 21:26:51 +02001390#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg99783e22009-07-07 03:54:43 +02001391static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001392{
1393 struct ieee80211_local *local = wiphy_priv(wiphy);
1394
1395 if (!local->ops->testmode_cmd)
1396 return -EOPNOTSUPP;
1397
1398 return local->ops->testmode_cmd(&local->hw, data, len);
1399}
1400#endif
1401
Johannes Berg0f782312009-12-01 13:37:02 +01001402int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
1403 enum ieee80211_smps_mode smps_mode)
1404{
1405 const u8 *ap;
1406 enum ieee80211_smps_mode old_req;
1407 int err;
1408
1409 old_req = sdata->u.mgd.req_smps;
1410 sdata->u.mgd.req_smps = smps_mode;
1411
1412 if (old_req == smps_mode &&
1413 smps_mode != IEEE80211_SMPS_AUTOMATIC)
1414 return 0;
1415
1416 /*
1417 * If not associated, or current association is not an HT
1418 * association, there's no need to send an action frame.
1419 */
1420 if (!sdata->u.mgd.associated ||
Johannes Berg0aaffa92010-05-05 15:28:27 +02001421 sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) {
Johannes Berg0f782312009-12-01 13:37:02 +01001422 mutex_lock(&sdata->local->iflist_mtx);
1423 ieee80211_recalc_smps(sdata->local, sdata);
1424 mutex_unlock(&sdata->local->iflist_mtx);
1425 return 0;
1426 }
1427
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001428 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01001429
1430 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1431 if (sdata->u.mgd.powersave)
1432 smps_mode = IEEE80211_SMPS_DYNAMIC;
1433 else
1434 smps_mode = IEEE80211_SMPS_OFF;
1435 }
1436
1437 /* send SM PS frame to AP */
1438 err = ieee80211_send_smps_action(sdata, smps_mode,
1439 ap, ap);
1440 if (err)
1441 sdata->u.mgd.req_smps = old_req;
1442
1443 return err;
1444}
1445
Johannes Bergbc92afd2009-07-01 21:26:57 +02001446static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1447 bool enabled, int timeout)
1448{
1449 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1450 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02001451
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01001452 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1453 return -EOPNOTSUPP;
1454
Johannes Bergbc92afd2009-07-01 21:26:57 +02001455 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1456 return -EOPNOTSUPP;
1457
1458 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03001459 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001460 return 0;
1461
1462 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001463 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02001464
Johannes Berg0f782312009-12-01 13:37:02 +01001465 /* no change, but if automatic follow powersave */
1466 mutex_lock(&sdata->u.mgd.mtx);
1467 __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
1468 mutex_unlock(&sdata->u.mgd.mtx);
1469
Johannes Bergbc92afd2009-07-01 21:26:57 +02001470 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
1471 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1472
1473 ieee80211_recalc_ps(local, -1);
1474
1475 return 0;
1476}
1477
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001478static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
1479 struct net_device *dev,
1480 s32 rssi_thold, u32 rssi_hyst)
1481{
1482 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1483 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1484 struct ieee80211_vif *vif = &sdata->vif;
1485 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1486
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001487 if (rssi_thold == bss_conf->cqm_rssi_thold &&
1488 rssi_hyst == bss_conf->cqm_rssi_hyst)
1489 return 0;
1490
1491 bss_conf->cqm_rssi_thold = rssi_thold;
1492 bss_conf->cqm_rssi_hyst = rssi_hyst;
1493
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001494 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1495 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1496 return -EOPNOTSUPP;
1497 return 0;
1498 }
1499
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001500 /* tell the driver upon association, unless already associated */
1501 if (sdata->u.mgd.associated)
1502 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
1503
1504 return 0;
1505}
1506
Johannes Berg99303802009-07-01 21:26:59 +02001507static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
1508 struct net_device *dev,
1509 const u8 *addr,
1510 const struct cfg80211_bitrate_mask *mask)
1511{
1512 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1513 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001514 int i;
Johannes Berg99303802009-07-01 21:26:59 +02001515
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001516 /*
1517 * This _could_ be supported by providing a hook for
1518 * drivers for this function, but at this point it
1519 * doesn't seem worth bothering.
1520 */
1521 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
1522 return -EOPNOTSUPP;
1523
Johannes Berg99303802009-07-01 21:26:59 +02001524
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001525 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1526 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Johannes Berg99303802009-07-01 21:26:59 +02001527
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001528 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02001529}
1530
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001531static int ieee80211_remain_on_channel(struct wiphy *wiphy,
1532 struct net_device *dev,
1533 struct ieee80211_channel *chan,
1534 enum nl80211_channel_type channel_type,
1535 unsigned int duration,
1536 u64 *cookie)
1537{
1538 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1539
1540 return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
1541 duration, cookie);
1542}
1543
1544static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
1545 struct net_device *dev,
1546 u64 cookie)
1547{
1548 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1549
1550 return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
1551}
1552
Jouni Malinen026331c2010-02-15 12:53:10 +02001553static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev,
1554 struct ieee80211_channel *chan,
1555 enum nl80211_channel_type channel_type,
Johannes Berg252aa632010-05-19 12:17:12 +02001556 bool channel_type_valid,
Jouni Malinen026331c2010-02-15 12:53:10 +02001557 const u8 *buf, size_t len, u64 *cookie)
1558{
Johannes Berg9d38d852010-06-09 17:20:33 +02001559 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1560 struct ieee80211_local *local = sdata->local;
1561 struct sk_buff *skb;
1562 struct sta_info *sta;
1563 const struct ieee80211_mgmt *mgmt = (void *)buf;
1564 u32 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
1565 IEEE80211_TX_CTL_REQ_TX_STATUS;
1566
1567 /* Check that we are on the requested channel for transmission */
1568 if (chan != local->tmp_channel &&
1569 chan != local->oper_channel)
1570 return -EBUSY;
1571 if (channel_type_valid &&
1572 (channel_type != local->tmp_channel_type &&
1573 channel_type != local->_oper_channel_type))
1574 return -EBUSY;
1575
1576 switch (sdata->vif.type) {
1577 case NL80211_IFTYPE_ADHOC:
1578 if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC)
1579 break;
1580 rcu_read_lock();
1581 sta = sta_info_get(sdata, mgmt->da);
1582 rcu_read_unlock();
1583 if (!sta)
1584 return -ENOLINK;
1585 break;
1586 case NL80211_IFTYPE_STATION:
1587 if (!(sdata->u.mgd.flags & IEEE80211_STA_MFP_ENABLED))
1588 flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1589 break;
1590 default:
1591 return -EOPNOTSUPP;
1592 }
1593
1594 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
1595 if (!skb)
1596 return -ENOMEM;
1597 skb_reserve(skb, local->hw.extra_tx_headroom);
1598
1599 memcpy(skb_put(skb, len), buf, len);
1600
1601 IEEE80211_SKB_CB(skb)->flags = flags;
1602
1603 skb->dev = sdata->dev;
1604 ieee80211_tx_skb(sdata, skb);
1605
1606 *cookie = (unsigned long) skb;
1607 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02001608}
1609
Jiri Bencf0706e822007-05-05 11:45:53 -07001610struct cfg80211_ops mac80211_config_ops = {
1611 .add_virtual_intf = ieee80211_add_iface,
1612 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02001613 .change_virtual_intf = ieee80211_change_iface,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001614 .add_key = ieee80211_add_key,
1615 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01001616 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001617 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +02001618 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001619 .add_beacon = ieee80211_add_beacon,
1620 .set_beacon = ieee80211_set_beacon,
1621 .del_beacon = ieee80211_del_beacon,
Johannes Berg4fd69312007-12-19 02:03:35 +01001622 .add_station = ieee80211_add_station,
1623 .del_station = ieee80211_del_station,
1624 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01001625 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001626 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02001627 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001628#ifdef CONFIG_MAC80211_MESH
1629 .add_mpath = ieee80211_add_mpath,
1630 .del_mpath = ieee80211_del_mpath,
1631 .change_mpath = ieee80211_change_mpath,
1632 .get_mpath = ieee80211_get_mpath,
1633 .dump_mpath = ieee80211_dump_mpath,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001634 .set_mesh_params = ieee80211_set_mesh_params,
1635 .get_mesh_params = ieee80211_get_mesh_params,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001636#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001637 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02001638 .set_txq_params = ieee80211_set_txq_params,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001639 .set_channel = ieee80211_set_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05001640 .suspend = ieee80211_suspend,
1641 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01001642 .scan = ieee80211_scan,
Jouni Malinen636a5d32009-03-19 13:39:22 +02001643 .auth = ieee80211_auth,
1644 .assoc = ieee80211_assoc,
1645 .deauth = ieee80211_deauth,
1646 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001647 .join_ibss = ieee80211_join_ibss,
1648 .leave_ibss = ieee80211_leave_ibss,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001649 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02001650 .set_tx_power = ieee80211_set_tx_power,
1651 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02001652 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001653 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02001654 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001655 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02001656 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001657 .remain_on_channel = ieee80211_remain_on_channel,
1658 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Jouni Malinen026331c2010-02-15 12:53:10 +02001659 .action = ieee80211_action,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001660 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Jiri Bencf0706e822007-05-05 11:45:53 -07001661};