blob: 003b6addf5facbdc0ae0f314170d562b046b2058 [file] [log] [blame]
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Fietkauf14543ee2009-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 Fietkauf14543ee2009-11-10 20:10:05 +010046 return true;
47}
48
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -070057
Felix Fietkauf14543ee2009-11-10 20:10:05 +010058 if (!nl80211_params_check(type, params))
Jiri Bencf0706e82007-05-05 11:45:53 -070059 return -EINVAL;
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -070071{
Johannes Berg463d0182009-07-14 00:33:35 +020072 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
Jiri Bencf0706e82007-05-05 11:45:53 -070073
Johannes Berg75636522008-07-09 14:40:35 +020074 return 0;
Jiri Bencf0706e82007-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 Fietkauf14543ee2009-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 Malinen3cfcf6ac2009-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
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300146 key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key,
147 params->seq_len, params->seq);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100148 if (!key)
149 return -ENOMEM;
150
Johannes Bergad0e2b52010-06-01 10:19:19 +0200151 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200152
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100153 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100154 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100155 if (!sta) {
156 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200157 err = -ENOENT;
158 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100159 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100160 }
161
Johannes Bergdb4d1162008-02-25 16:27:45 +0100162 ieee80211_key_link(key, sdata, sta);
163
Johannes Berg3b967662008-04-08 17:56:52 +0200164 err = 0;
165 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200166 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200167
168 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100169}
170
171static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200172 u8 key_idx, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100173{
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 Bergad0e2b52010-06-01 10:19:19 +0200180 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200181
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100182 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200183 ret = -ENOENT;
184
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100185 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100186 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200187 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100188
Johannes Bergdb4d1162008-02-25 16:27:45 +0100189 if (sta->key) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100190 ieee80211_key_free(sta->key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100191 WARN_ON(sta->key);
Johannes Berg3b967662008-04-08 17:56:52 +0200192 ret = 0;
193 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100194
Johannes Berg3b967662008-04-08 17:56:52 +0200195 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100196 }
197
Johannes Berg3b967662008-04-08 17:56:52 +0200198 if (!sdata->keys[key_idx]) {
199 ret = -ENOENT;
200 goto out_unlock;
201 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100202
Johannes Bergd0709a62008-02-25 16:27:46 +0100203 ieee80211_key_free(sdata->keys[key_idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100204 WARN_ON(sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100205
Johannes Berg3b967662008-04-08 17:56:52 +0200206 ret = 0;
207 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200208 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200209
210 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100211}
212
Johannes Berg62da92f2007-12-19 02:03:31 +0100213static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200214 u8 key_idx, const u8 *mac_addr, void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100215 void (*callback)(void *cookie,
216 struct key_params *params))
217{
Johannes Berg14db74b2008-07-29 13:22:52 +0200218 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100219 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 Berg14db74b2008-07-29 13:22:52 +0200227 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
228
Johannes Berg3b967662008-04-08 17:56:52 +0200229 rcu_read_lock();
230
Johannes Berg62da92f2007-12-19 02:03:31 +0100231 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100232 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100233 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(&params, 0, sizeof(params));
244
245 switch (key->conf.alg) {
246 case ALG_TKIP:
247 params.cipher = WLAN_CIPHER_SUITE_TKIP;
248
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700249 iv32 = key->u.tkip.tx.iv32;
250 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100251
Johannes Berg24487982009-04-23 18:52:52 +0200252 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 Berg62da92f2007-12-19 02:03:31 +0100256
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 Malinen3cfcf6ac2009-01-08 13:32:02 +0200283 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 Berg62da92f2007-12-19 02:03:31 +0100294 }
295
296 params.key = key->conf.key;
297 params.key_len = key->conf.keylen;
298
299 callback(cookie, &params);
300 err = 0;
301
302 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200303 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100304 return err;
305}
306
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100307static int ieee80211_config_default_key(struct wiphy *wiphy,
308 struct net_device *dev,
309 u8 key_idx)
310{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200311 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100312
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100313 ieee80211_set_default_key(sdata, key_idx);
314
315 return 0;
316}
317
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200318static 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 Coboc5dd9c22008-02-23 15:17:17 +0100334static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
335{
Johannes Bergd0709a62008-02-25 16:27:46 +0100336 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100337
Johannes Bergf5ea9122009-08-07 16:17:38 +0200338 sinfo->generation = sdata->local->sta_generation;
339
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100340 sinfo->filled = STATION_INFO_INACTIVE_TIME |
341 STATION_INFO_RX_BYTES |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100342 STATION_INFO_TX_BYTES |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200343 STATION_INFO_RX_PACKETS |
344 STATION_INFO_TX_PACKETS |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100345 STATION_INFO_TX_BITRATE;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100346
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 Malinen98c8a60a2009-02-17 13:24:57 +0200350 sinfo->rx_packets = sta->rx_packets;
351 sinfo->tx_packets = sta->tx_packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100352
John W. Linville19deffb2009-12-08 17:10:13 -0500353 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
354 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Henning Rogge420e7fa2008-12-11 22:04:19 +0100355 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 Berg902acc72008-02-23 15:17:19 +0100376 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100377#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100378 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 Coboc5dd9c22008-02-23 15:17:17 +0100385#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100386 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100387}
388
389
390static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
391 int idx, u8 *mac, struct station_info *sinfo)
392{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100393 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100394 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100395 int ret = -ENOENT;
396
397 rcu_read_lock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100398
Johannes Berg3b53fde82009-11-16 12:00:37 +0100399 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100400 if (sta) {
401 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200402 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100403 sta_set_sinfo(sta, sinfo);
404 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100405
Johannes Bergd0709a62008-02-25 16:27:46 +0100406 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100407
Johannes Bergd0709a62008-02-25 16:27:46 +0100408 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100409}
410
Holger Schurig12897232010-04-19 10:23:57 +0200411static 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 Berg7bbdd2d2007-12-19 02:03:37 +0100422static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100423 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100424{
Johannes Bergabe60632009-11-25 17:46:18 +0100425 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100426 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100427 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100428
Johannes Bergd0709a62008-02-25 16:27:46 +0100429 rcu_read_lock();
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100430
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100431 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100432 if (sta) {
433 ret = 0;
434 sta_set_sinfo(sta, sinfo);
435 }
436
437 rcu_read_unlock();
438
439 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100440}
441
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100442/*
443 * This handles both adding a beacon and setting new beacon info
444 */
445static 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 Berg57c4d7b2009-04-23 16:10:04 +0200463 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 Berg5dfdaf52007-12-19 02:03:33 +0100468 }
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 Berg19885c42010-02-05 11:45:06 +0100527 sdata->vif.bss_conf.dtim_period = new->dtim_period;
528
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100529 rcu_assign_pointer(sdata->u.ap.beacon, new);
530
531 synchronize_rcu();
532
533 kfree(old);
534
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200535 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
536 BSS_CHANGED_BEACON);
537 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100538}
539
540static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
541 struct beacon_parameters *params)
542{
Johannes Berg14db74b2008-07-29 13:22:52 +0200543 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100544 struct beacon_data *old;
545
Johannes Berg14db74b2008-07-29 13:22:52 +0200546 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
547
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100548 old = sdata->u.ap.beacon;
549
550 if (old)
551 return -EALREADY;
552
553 return ieee80211_config_beacon(sdata, params);
554}
555
556static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
557 struct beacon_parameters *params)
558{
Johannes Berg14db74b2008-07-29 13:22:52 +0200559 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100560 struct beacon_data *old;
561
Johannes Berg14db74b2008-07-29 13:22:52 +0200562 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
563
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100564 old = sdata->u.ap.beacon;
565
566 if (!old)
567 return -ENOENT;
568
569 return ieee80211_config_beacon(sdata, params);
570}
571
572static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
573{
Johannes Berg14db74b2008-07-29 13:22:52 +0200574 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100575 struct beacon_data *old;
576
Johannes Berg14db74b2008-07-29 13:22:52 +0200577 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
578
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100579 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 Berg2d0ddec2009-04-23 16:13:26 +0200588 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
589 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100590}
591
Johannes Berg4fd69312007-12-19 02:03:35 +0100592/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
593struct 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
603static 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 Berg17741cd2008-09-11 00:02:02 +0200620 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100621 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 Bergd0709a62008-02-25 16:27:46 +0100630 skb->dev = sta->sdata->dev;
631 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100632 memset(skb->cb, 0, sizeof(skb->cb));
633 netif_rx(skb);
634}
635
636static 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 Berg8318d782008-01-24 19:38:38 +0100642 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100643 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300644 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100645
Johannes Bergae5eb022008-10-14 16:58:37 +0200646 sband = local->hw.wiphy->bands[local->oper_channel->band];
647
Johannes Bergeccb8e82009-05-11 21:57:56 +0300648 spin_lock_bh(&sta->lock);
649 mask = params->sta_flags_mask;
650 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100651
Johannes Bergeccb8e82009-05-11 21:57:56 +0300652 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100653 sta->flags &= ~WLAN_STA_AUTHORIZED;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300654 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Johannes Berg4fd69312007-12-19 02:03:35 +0100655 sta->flags |= WLAN_STA_AUTHORIZED;
Johannes Berg4fd69312007-12-19 02:03:35 +0100656 }
657
Johannes Bergeccb8e82009-05-11 21:57:56 +0300658 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 Berg73651ee2008-02-25 16:27:47 +0100677 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +0200678 * 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 Berg73651ee2008-02-25 16:27:47 +0100685 * 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 Berg4fd69312007-12-19 02:03:35 +0100691 if (params->listen_interval >= 0)
692 sta->listen_interval = params->listen_interval;
693
694 if (params->supported_rates) {
695 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100696
Johannes Berg4fd69312007-12-19 02:03:35 +0100697 for (i = 0; i < params->supported_rates_len; i++) {
698 int rate = (params->supported_rates[i] & 0x7f) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +0100699 for (j = 0; j < sband->n_bitrates; j++) {
700 if (sband->bitrates[j].bitrate == rate)
Johannes Berg4fd69312007-12-19 02:03:35 +0100701 rates |= BIT(j);
702 }
703 }
Johannes Berg323ce792008-09-11 02:45:11 +0200704 sta->sta.supp_rates[local->oper_channel->band] = rates;
Johannes Berg4fd69312007-12-19 02:03:35 +0100705 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100706
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200707 if (params->ht_capa)
Johannes Bergae5eb022008-10-14 16:58:37 +0200708 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
709 params->ht_capa,
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200710 &sta->sta.ht_cap);
Jouni Malinen36aedc902008-08-25 11:58:58 +0300711
Johannes Berg902acc72008-02-23 15:17:19 +0100712 if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100713 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 Berg902acc72008-02-23 15:17:19 +0100721 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100722}
723
724static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
725 u8 *mac, struct station_parameters *params)
726{
Johannes Berg14db74b2008-07-29 13:22:52 +0200727 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100728 struct sta_info *sta;
729 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +0100730 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200731 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +0100732
Johannes Berg4fd69312007-12-19 02:03:35 +0100733 if (params->vlan) {
734 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
735
Johannes Berg05c914f2008-09-11 00:01:58 +0200736 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
737 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +0100738 return -EINVAL;
739 } else
740 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
741
Johannes Berg47846c92009-11-25 17:46:19 +0100742 if (compare_ether_addr(mac, sdata->vif.addr) == 0)
Johannes Berg03e44972008-02-27 09:56:40 +0100743 return -EINVAL;
744
745 if (is_multicast_ether_addr(mac))
746 return -EINVAL;
747
748 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +0100749 if (!sta)
750 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +0100751
752 sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
753
754 sta_apply_parameters(local, sta, params);
755
Johannes Berg4b7679a2008-09-18 18:14:18 +0200756 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +0100757
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200758 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
759 sdata->vif.type == NL80211_IFTYPE_AP;
760
Johannes Berg34e89502010-02-03 13:59:58 +0100761 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100762 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +0100763 rcu_read_unlock();
764 return err;
765 }
766
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200767 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +0100768 ieee80211_send_layer2_update(sta);
769
770 rcu_read_unlock();
771
Johannes Berg4fd69312007-12-19 02:03:35 +0100772 return 0;
773}
774
775static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
776 u8 *mac)
777{
Johannes Berg14db74b2008-07-29 13:22:52 +0200778 struct ieee80211_local *local = wiphy_priv(wiphy);
779 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100780
Johannes Berg14db74b2008-07-29 13:22:52 +0200781 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
782
Johannes Berg34e89502010-02-03 13:59:58 +0100783 if (mac)
784 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200785
Johannes Berg34e89502010-02-03 13:59:58 +0100786 sta_info_flush(local, sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +0100787 return 0;
788}
789
790static int ieee80211_change_station(struct wiphy *wiphy,
791 struct net_device *dev,
792 u8 *mac,
793 struct station_parameters *params)
794{
Johannes Bergabe60632009-11-25 17:46:18 +0100795 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +0200796 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100797 struct sta_info *sta;
798 struct ieee80211_sub_if_data *vlansdata;
799
Johannes Berg98dd6a52008-04-10 15:36:09 +0200800 rcu_read_lock();
801
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100802 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200803 if (!sta) {
804 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100805 return -ENOENT;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200806 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100807
Johannes Bergd0709a62008-02-25 16:27:46 +0100808 if (params->vlan && params->vlan != sta->sdata->dev) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100809 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
810
Johannes Berg05c914f2008-09-11 00:01:58 +0200811 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
812 vlansdata->vif.type != NL80211_IFTYPE_AP) {
Johannes Berg98dd6a52008-04-10 15:36:09 +0200813 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100814 return -EINVAL;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200815 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100816
Johannes Berg9bc383d2009-11-19 11:55:19 +0100817 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +0100818 if (vlansdata->u.vlan.sta) {
819 rcu_read_unlock();
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100820 return -EBUSY;
Johannes Berg33054432009-11-20 10:09:14 +0100821 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100822
823 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
824 }
825
Johannes Berg14db74b2008-07-29 13:22:52 +0200826 sta->sdata = vlansdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100827 ieee80211_send_layer2_update(sta);
828 }
829
830 sta_apply_parameters(local, sta, params);
831
Johannes Berg98dd6a52008-04-10 15:36:09 +0200832 rcu_read_unlock();
833
Johannes Berg4fd69312007-12-19 02:03:35 +0100834 return 0;
835}
836
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100837#ifdef CONFIG_MAC80211_MESH
838static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
839 u8 *dst, u8 *next_hop)
840{
Johannes Berg14db74b2008-07-29 13:22:52 +0200841 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100842 struct mesh_path *mpath;
843 struct sta_info *sta;
844 int err;
845
Johannes Berg14db74b2008-07-29 13:22:52 +0200846 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
847
Johannes Bergd0709a62008-02-25 16:27:46 +0100848 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100849 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100850 if (!sta) {
851 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100852 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +0100853 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100854
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200855 err = mesh_path_add(dst, sdata);
Johannes Bergd0709a62008-02-25 16:27:46 +0100856 if (err) {
857 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100858 return err;
Johannes Bergd0709a62008-02-25 16:27:46 +0100859 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100860
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200861 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100862 if (!mpath) {
863 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100864 return -ENXIO;
865 }
866 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100867
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100868 rcu_read_unlock();
869 return 0;
870}
871
872static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
873 u8 *dst)
874{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200875 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100876
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200877 if (dst)
878 return mesh_path_del(dst, sdata);
879
880 mesh_path_flush(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100881 return 0;
882}
883
884static int ieee80211_change_mpath(struct wiphy *wiphy,
885 struct net_device *dev,
886 u8 *dst, u8 *next_hop)
887{
Johannes Berg14db74b2008-07-29 13:22:52 +0200888 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100889 struct mesh_path *mpath;
890 struct sta_info *sta;
891
Johannes Berg14db74b2008-07-29 13:22:52 +0200892 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
893
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100894 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +0100895
Johannes Bergabe60632009-11-25 17:46:18 +0100896 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100897 if (!sta) {
898 rcu_read_unlock();
899 return -ENOENT;
900 }
901
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200902 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100903 if (!mpath) {
904 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100905 return -ENOENT;
906 }
907
908 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100909
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100910 rcu_read_unlock();
911 return 0;
912}
913
914static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
915 struct mpath_info *pinfo)
916{
917 if (mpath->next_hop)
Johannes Berg17741cd2008-09-11 00:02:02 +0200918 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100919 else
920 memset(next_hop, 0, ETH_ALEN);
921
Johannes Bergf5ea9122009-08-07 16:17:38 +0200922 pinfo->generation = mesh_paths_generation;
923
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100924 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +0000925 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100926 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 Paulod19b3bf2009-11-09 23:46:55 +0000933 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100934 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 Paulod19b3bf2009-11-09 23:46:55 +0000945 if (mpath->flags & MESH_PATH_SN_VALID)
946 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100947 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
955static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
956 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
957
958{
Johannes Berg14db74b2008-07-29 13:22:52 +0200959 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100960 struct mesh_path *mpath;
961
Johannes Berg14db74b2008-07-29 13:22:52 +0200962 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
963
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100964 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200965 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100966 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
976static 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 Berg14db74b2008-07-29 13:22:52 +0200980 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100981 struct mesh_path *mpath;
982
Johannes Berg14db74b2008-07-29 13:22:52 +0200983 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
984
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100985 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200986 mpath = mesh_path_lookup_by_idx(idx, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100987 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.com93da9cc2008-10-21 12:03:48 -0700996
997static 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.com93da9cc2008-10-21 12:03:48 -07001004 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1005 return 0;
1006}
1007
1008static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1009{
1010 return (mask >> (parm-1)) & 0x1;
1011}
1012
1013static 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 Paulo63c57232009-11-09 23:46:57 +00001019 struct ieee80211_if_mesh *ifmsh;
1020
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001021 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001022 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001023
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001024 /* 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 Paulo63c57232009-11-09 23:46:57 +00001057 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1058 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1059 ieee80211_mesh_root_setup(ifmsh);
1060 }
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001061 return 0;
1062}
1063
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001064#endif
1065
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001066static int ieee80211_change_bss(struct wiphy *wiphy,
1067 struct net_device *dev,
1068 struct bss_parameters *params)
1069{
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001070 struct ieee80211_sub_if_data *sdata;
1071 u32 changed = 0;
1072
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001073 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1074
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001075 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001076 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001077 changed |= BSS_CHANGED_ERP_CTS_PROT;
1078 }
1079 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001080 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001081 params->use_short_preamble;
1082 changed |= BSS_CHANGED_ERP_PREAMBLE;
1083 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001084
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 Malinen9f1ba902008-08-07 20:07:01 +03001091 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001092 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001093 params->use_short_slot_time;
1094 changed |= BSS_CHANGED_ERP_SLOT;
1095 }
1096
Jouni Malinen90c97a02008-10-30 16:59:22 +02001097 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 Fietkau7b7b5e52010-04-27 01:23:36 +02001115 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 Malinen9f1ba902008-08-07 20:07:01 +03001122 ieee80211_bss_info_change_notify(sdata, changed);
1123
1124 return 0;
1125}
1126
Jouni Malinen31888482008-10-30 16:59:24 +02001127static 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 Valoab133152010-01-12 10:42:31 +02001141
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 Berg24487982009-04-23 18:52:52 +02001148 if (drv_conf_tx(local, params->queue, &p)) {
Jouni Malinen31888482008-10-30 16:59:24 +02001149 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +02001150 "parameters for queue %d\n",
1151 wiphy_name(local->hw.wiphy), params->queue);
Jouni Malinen31888482008-10-30 16:59:24 +02001152 return -EINVAL;
1153 }
1154
Stanislaw Gruszka0af26b22010-03-29 12:18:36 +02001155 /* enable WMM or activate new settings */
1156 local->hw.conf.flags |= IEEE80211_CONF_QOS;
1157 drv_config(local, IEEE80211_CONF_CHANGE_QOS);
1158
Jouni Malinen31888482008-10-30 16:59:24 +02001159 return 0;
1160}
1161
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001162static int ieee80211_set_channel(struct wiphy *wiphy,
Johannes Bergf444de02010-05-05 15:25:02 +02001163 struct net_device *netdev,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001164 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +05301165 enum nl80211_channel_type channel_type)
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001166{
1167 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg0aaffa92010-05-05 15:28:27 +02001168 struct ieee80211_sub_if_data *sdata = NULL;
1169
1170 if (netdev)
1171 sdata = IEEE80211_DEV_TO_SUB_IF(netdev);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001172
Johannes Bergf444de02010-05-05 15:25:02 +02001173 switch (ieee80211_get_channel_mode(local, NULL)) {
1174 case CHAN_MODE_HOPPING:
1175 return -EBUSY;
1176 case CHAN_MODE_FIXED:
Johannes Berg0aaffa92010-05-05 15:28:27 +02001177 if (local->oper_channel != chan)
1178 return -EBUSY;
1179 if (!sdata && local->_oper_channel_type == channel_type)
Johannes Bergf444de02010-05-05 15:25:02 +02001180 return 0;
Johannes Berg0aaffa92010-05-05 15:28:27 +02001181 break;
Johannes Bergf444de02010-05-05 15:25:02 +02001182 case CHAN_MODE_UNDEFINED:
1183 break;
1184 }
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001185
1186 local->oper_channel = chan;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001187
Johannes Berg0aaffa92010-05-05 15:28:27 +02001188 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 Malinen72bdcf32008-11-26 16:15:24 +02001196}
1197
Bob Copeland665af4f2009-01-19 11:20:53 -05001198#ifdef CONFIG_PM
1199static int ieee80211_suspend(struct wiphy *wiphy)
1200{
1201 return __ieee80211_suspend(wiphy_priv(wiphy));
1202}
1203
1204static 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 Berg2a519312009-02-10 21:25:55 +01001213static 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 Berg2a519312009-02-10 21:25:55 +01001219 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1220
1221 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1222 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Jouni Malinen357303e2009-04-16 18:44:53 +03001223 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
1224 (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon))
Johannes Berg2a519312009-02-10 21:25:55 +01001225 return -EOPNOTSUPP;
1226
1227 return ieee80211_request_scan(sdata, req);
1228}
1229
Jouni Malinen636a5d32009-03-19 13:39:22 +02001230static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1231 struct cfg80211_auth_request *req)
1232{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001233 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001234}
1235
1236static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1237 struct cfg80211_assoc_request *req)
1238{
Johannes Bergf444de02010-05-05 15:25:02 +02001239 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 Berg77fdaa12009-07-07 03:45:17 +02001253 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001254}
1255
1256static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +02001257 struct cfg80211_deauth_request *req,
1258 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001259{
Johannes Berg667503dd2009-07-07 03:56:11 +02001260 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1261 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001262}
1263
1264static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +02001265 struct cfg80211_disassoc_request *req,
1266 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001267{
Johannes Berg667503dd2009-07-07 03:56:11 +02001268 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1269 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001270}
1271
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001272static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1273 struct cfg80211_ibss_params *params)
1274{
Johannes Bergf444de02010-05-05 15:25:02 +02001275 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001276 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1277
Johannes Bergf444de02010-05-05 15:25:02 +02001278 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 Bergaf8cdcd2009-04-19 21:25:43 +02001291 return ieee80211_ibss_join(sdata, params);
1292}
1293
1294static 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 Malinenb9a5f8ca2009-04-20 18:39:05 +02001301static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1302{
1303 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001304 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001305
Lukáš Turek310bc672009-12-21 22:50:48 +01001306 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 Malinenb9a5f8ca2009-04-20 18:39:05 +02001313 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001314 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001315
Johannes Berg24487982009-04-23 18:52:52 +02001316 if (err)
1317 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001318 }
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 Berg7643a2c2009-06-02 13:01:39 +02001331static int ieee80211_set_tx_power(struct wiphy *wiphy,
1332 enum tx_power_setting type, int dbm)
1333{
1334 struct ieee80211_local *local = wiphy_priv(wiphy);
1335 struct ieee80211_channel *chan = local->hw.conf.channel;
1336 u32 changes = 0;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001337
1338 switch (type) {
1339 case TX_POWER_AUTOMATIC:
1340 local->user_power_level = -1;
1341 break;
1342 case TX_POWER_LIMITED:
1343 if (dbm < 0)
1344 return -EINVAL;
1345 local->user_power_level = dbm;
1346 break;
1347 case TX_POWER_FIXED:
1348 if (dbm < 0)
1349 return -EINVAL;
1350 /* TODO: move to cfg80211 when it knows the channel */
1351 if (dbm > chan->max_power)
1352 return -EINVAL;
1353 local->user_power_level = dbm;
1354 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001355 }
1356
1357 ieee80211_hw_config(local, changes);
1358
1359 return 0;
1360}
1361
1362static 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 Berg7643a2c2009-06-02 13:01:39 +02001368 return 0;
1369}
1370
Johannes Bergab737a42009-07-01 21:26:58 +02001371static 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 Berg1f87f7d2009-06-02 13:01:41 +02001381static 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 Bergaff89a92009-07-01 21:26:51 +02001388#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg99783e22009-07-07 03:54:43 +02001389static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001390{
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 Berg0f782312009-12-01 13:37:02 +01001400int __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 Berg0aaffa92010-05-05 15:28:27 +02001419 sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) {
Johannes Berg0f782312009-12-01 13:37:02 +01001420 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 Berg0c1ad2c2009-12-23 13:15:39 +01001426 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01001427
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 Bergbc92afd2009-07-01 21:26:57 +02001444static 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 Bergbc92afd2009-07-01 21:26:57 +02001449
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01001450 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1451 return -EOPNOTSUPP;
1452
Johannes Bergbc92afd2009-07-01 21:26:57 +02001453 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1454 return -EOPNOTSUPP;
1455
1456 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03001457 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001458 return 0;
1459
1460 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001461 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02001462
Johannes Berg0f782312009-12-01 13:37:02 +01001463 /* 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 Bergbc92afd2009-07-01 21:26:57 +02001468 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 Oikarinena97c13c2010-03-23 09:02:34 +02001476static 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 Oikarinena97c13c2010-03-23 09:02:34 +02001485 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 Malinen17e4ec12010-03-29 23:28:30 -07001492 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 Oikarinena97c13c2010-03-23 09:02:34 +02001498 /* 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 Berg99303802009-07-01 21:26:59 +02001505static 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 Berg2c7e6bc2009-12-04 09:26:38 +01001512 int i;
Johannes Berg99303802009-07-01 21:26:59 +02001513
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001514 /*
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 Berg99303802009-07-01 21:26:59 +02001522
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001523 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1524 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Johannes Berg99303802009-07-01 21:26:59 +02001525
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001526 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02001527}
1528
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001529static 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
1542static 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 Malinen026331c2010-02-15 12:53:10 +02001551static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev,
1552 struct ieee80211_channel *chan,
1553 enum nl80211_channel_type channel_type,
Johannes Berg252aa632010-05-19 12:17:12 +02001554 bool channel_type_valid,
Jouni Malinen026331c2010-02-15 12:53:10 +02001555 const u8 *buf, size_t len, u64 *cookie)
1556{
Johannes Berg9d38d852010-06-09 17:20:33 +02001557 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 Malinen026331c2010-02-15 12:53:10 +02001606}
1607
Jiri Bencf0706e82007-05-05 11:45:53 -07001608struct cfg80211_ops mac80211_config_ops = {
1609 .add_virtual_intf = ieee80211_add_iface,
1610 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02001611 .change_virtual_intf = ieee80211_change_iface,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001612 .add_key = ieee80211_add_key,
1613 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01001614 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001615 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001616 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001617 .add_beacon = ieee80211_add_beacon,
1618 .set_beacon = ieee80211_set_beacon,
1619 .del_beacon = ieee80211_del_beacon,
Johannes Berg4fd69312007-12-19 02:03:35 +01001620 .add_station = ieee80211_add_station,
1621 .del_station = ieee80211_del_station,
1622 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01001623 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001624 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02001625 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001626#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.com93da9cc2008-10-21 12:03:48 -07001632 .set_mesh_params = ieee80211_set_mesh_params,
1633 .get_mesh_params = ieee80211_get_mesh_params,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001634#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001635 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02001636 .set_txq_params = ieee80211_set_txq_params,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001637 .set_channel = ieee80211_set_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05001638 .suspend = ieee80211_suspend,
1639 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01001640 .scan = ieee80211_scan,
Jouni Malinen636a5d32009-03-19 13:39:22 +02001641 .auth = ieee80211_auth,
1642 .assoc = ieee80211_assoc,
1643 .deauth = ieee80211_deauth,
1644 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001645 .join_ibss = ieee80211_join_ibss,
1646 .leave_ibss = ieee80211_leave_ibss,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001647 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02001648 .set_tx_power = ieee80211_set_tx_power,
1649 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02001650 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001651 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02001652 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001653 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02001654 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001655 .remain_on_channel = ieee80211_remain_on_channel,
1656 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Jouni Malinen026331c2010-02-15 12:53:10 +02001657 .action = ieee80211_action,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001658 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Jiri Bencf0706e82007-05-05 11:45:53 -07001659};