blob: edc872e22c9b6211fcd32342296462d871e64f88 [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 Berg05c914f2008-09-11 00:01:58 +0200100 if (sdata->vif.type != NL80211_IFTYPE_MONITOR || !flags)
Michael Wu8cc9a732008-01-31 19:48:23 +0100101 return 0;
102
Johannes Berg9bc383d2009-11-19 11:55:19 +0100103 if (type == NL80211_IFTYPE_AP_VLAN &&
104 params && params->use_4addr == 0)
105 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
106 else if (type == NL80211_IFTYPE_STATION &&
107 params && params->use_4addr >= 0)
108 sdata->u.mgd.use_4addr = params->use_4addr;
109
Michael Wu8cc9a732008-01-31 19:48:23 +0100110 sdata->u.mntr_flags = *flags;
Johannes Berg42613db2007-09-28 21:52:27 +0200111 return 0;
112}
113
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100114static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200115 u8 key_idx, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100116 struct key_params *params)
117{
118 struct ieee80211_sub_if_data *sdata;
119 struct sta_info *sta = NULL;
120 enum ieee80211_key_alg alg;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100121 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200122 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100123
124 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
125
126 switch (params->cipher) {
127 case WLAN_CIPHER_SUITE_WEP40:
128 case WLAN_CIPHER_SUITE_WEP104:
129 alg = ALG_WEP;
130 break;
131 case WLAN_CIPHER_SUITE_TKIP:
132 alg = ALG_TKIP;
133 break;
134 case WLAN_CIPHER_SUITE_CCMP:
135 alg = ALG_CCMP;
136 break;
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200137 case WLAN_CIPHER_SUITE_AES_CMAC:
138 alg = ALG_AES_CMAC;
139 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100140 default:
141 return -EINVAL;
142 }
143
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300144 key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key,
145 params->seq_len, params->seq);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100146 if (!key)
147 return -ENOMEM;
148
Johannes Berg3b967662008-04-08 17:56:52 +0200149 rcu_read_lock();
150
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100151 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100152 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100153 if (!sta) {
154 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200155 err = -ENOENT;
156 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100157 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100158 }
159
Johannes Bergdb4d1162008-02-25 16:27:45 +0100160 ieee80211_key_link(key, sdata, sta);
161
Johannes Berg3b967662008-04-08 17:56:52 +0200162 err = 0;
163 out_unlock:
164 rcu_read_unlock();
165
166 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100167}
168
169static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200170 u8 key_idx, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100171{
172 struct ieee80211_sub_if_data *sdata;
173 struct sta_info *sta;
174 int ret;
175
176 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
177
Johannes Berg3b967662008-04-08 17:56:52 +0200178 rcu_read_lock();
179
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100180 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200181 ret = -ENOENT;
182
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100183 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100184 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200185 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100186
Johannes Bergdb4d1162008-02-25 16:27:45 +0100187 if (sta->key) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100188 ieee80211_key_free(sta->key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100189 WARN_ON(sta->key);
Johannes Berg3b967662008-04-08 17:56:52 +0200190 ret = 0;
191 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100192
Johannes Berg3b967662008-04-08 17:56:52 +0200193 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100194 }
195
Johannes Berg3b967662008-04-08 17:56:52 +0200196 if (!sdata->keys[key_idx]) {
197 ret = -ENOENT;
198 goto out_unlock;
199 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100200
Johannes Bergd0709a62008-02-25 16:27:46 +0100201 ieee80211_key_free(sdata->keys[key_idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100202 WARN_ON(sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100203
Johannes Berg3b967662008-04-08 17:56:52 +0200204 ret = 0;
205 out_unlock:
206 rcu_read_unlock();
207
208 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100209}
210
Johannes Berg62da92f2007-12-19 02:03:31 +0100211static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200212 u8 key_idx, const u8 *mac_addr, void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100213 void (*callback)(void *cookie,
214 struct key_params *params))
215{
Johannes Berg14db74b2008-07-29 13:22:52 +0200216 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100217 struct sta_info *sta = NULL;
218 u8 seq[6] = {0};
219 struct key_params params;
220 struct ieee80211_key *key;
221 u32 iv32;
222 u16 iv16;
223 int err = -ENOENT;
224
Johannes Berg14db74b2008-07-29 13:22:52 +0200225 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
226
Johannes Berg3b967662008-04-08 17:56:52 +0200227 rcu_read_lock();
228
Johannes Berg62da92f2007-12-19 02:03:31 +0100229 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100230 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100231 if (!sta)
232 goto out;
233
234 key = sta->key;
235 } else
236 key = sdata->keys[key_idx];
237
238 if (!key)
239 goto out;
240
241 memset(&params, 0, sizeof(params));
242
243 switch (key->conf.alg) {
244 case ALG_TKIP:
245 params.cipher = WLAN_CIPHER_SUITE_TKIP;
246
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700247 iv32 = key->u.tkip.tx.iv32;
248 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100249
Johannes Berg24487982009-04-23 18:52:52 +0200250 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
251 drv_get_tkip_seq(sdata->local,
252 key->conf.hw_key_idx,
253 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100254
255 seq[0] = iv16 & 0xff;
256 seq[1] = (iv16 >> 8) & 0xff;
257 seq[2] = iv32 & 0xff;
258 seq[3] = (iv32 >> 8) & 0xff;
259 seq[4] = (iv32 >> 16) & 0xff;
260 seq[5] = (iv32 >> 24) & 0xff;
261 params.seq = seq;
262 params.seq_len = 6;
263 break;
264 case ALG_CCMP:
265 params.cipher = WLAN_CIPHER_SUITE_CCMP;
266 seq[0] = key->u.ccmp.tx_pn[5];
267 seq[1] = key->u.ccmp.tx_pn[4];
268 seq[2] = key->u.ccmp.tx_pn[3];
269 seq[3] = key->u.ccmp.tx_pn[2];
270 seq[4] = key->u.ccmp.tx_pn[1];
271 seq[5] = key->u.ccmp.tx_pn[0];
272 params.seq = seq;
273 params.seq_len = 6;
274 break;
275 case ALG_WEP:
276 if (key->conf.keylen == 5)
277 params.cipher = WLAN_CIPHER_SUITE_WEP40;
278 else
279 params.cipher = WLAN_CIPHER_SUITE_WEP104;
280 break;
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200281 case ALG_AES_CMAC:
282 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
283 seq[0] = key->u.aes_cmac.tx_pn[5];
284 seq[1] = key->u.aes_cmac.tx_pn[4];
285 seq[2] = key->u.aes_cmac.tx_pn[3];
286 seq[3] = key->u.aes_cmac.tx_pn[2];
287 seq[4] = key->u.aes_cmac.tx_pn[1];
288 seq[5] = key->u.aes_cmac.tx_pn[0];
289 params.seq = seq;
290 params.seq_len = 6;
291 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100292 }
293
294 params.key = key->conf.key;
295 params.key_len = key->conf.keylen;
296
297 callback(cookie, &params);
298 err = 0;
299
300 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200301 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100302 return err;
303}
304
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100305static int ieee80211_config_default_key(struct wiphy *wiphy,
306 struct net_device *dev,
307 u8 key_idx)
308{
309 struct ieee80211_sub_if_data *sdata;
310
Johannes Berg3b967662008-04-08 17:56:52 +0200311 rcu_read_lock();
312
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100313 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
314 ieee80211_set_default_key(sdata, key_idx);
315
Johannes Berg3b967662008-04-08 17:56:52 +0200316 rcu_read_unlock();
317
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100318 return 0;
319}
320
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200321static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
322 struct net_device *dev,
323 u8 key_idx)
324{
325 struct ieee80211_sub_if_data *sdata;
326
327 rcu_read_lock();
328
329 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
330 ieee80211_set_default_mgmt_key(sdata, key_idx);
331
332 rcu_read_unlock();
333
334 return 0;
335}
336
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100337static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
338{
Johannes Bergd0709a62008-02-25 16:27:46 +0100339 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100340
Johannes Bergf5ea9122009-08-07 16:17:38 +0200341 sinfo->generation = sdata->local->sta_generation;
342
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100343 sinfo->filled = STATION_INFO_INACTIVE_TIME |
344 STATION_INFO_RX_BYTES |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100345 STATION_INFO_TX_BYTES |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200346 STATION_INFO_RX_PACKETS |
347 STATION_INFO_TX_PACKETS |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100348 STATION_INFO_TX_BITRATE;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100349
350 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
351 sinfo->rx_bytes = sta->rx_bytes;
352 sinfo->tx_bytes = sta->tx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200353 sinfo->rx_packets = sta->rx_packets;
354 sinfo->tx_packets = sta->tx_packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100355
John W. Linville19deffb2009-12-08 17:10:13 -0500356 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
357 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Henning Rogge420e7fa2008-12-11 22:04:19 +0100358 sinfo->filled |= STATION_INFO_SIGNAL;
359 sinfo->signal = (s8)sta->last_signal;
360 }
361
362 sinfo->txrate.flags = 0;
363 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
364 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
365 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
366 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
367 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
368 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
369
370 if (!(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)) {
371 struct ieee80211_supported_band *sband;
372 sband = sta->local->hw.wiphy->bands[
373 sta->local->hw.conf.channel->band];
374 sinfo->txrate.legacy =
375 sband->bitrates[sta->last_tx_rate.idx].bitrate;
376 } else
377 sinfo->txrate.mcs = sta->last_tx_rate.idx;
378
Johannes Berg902acc72008-02-23 15:17:19 +0100379 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100380#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100381 sinfo->filled |= STATION_INFO_LLID |
382 STATION_INFO_PLID |
383 STATION_INFO_PLINK_STATE;
384
385 sinfo->llid = le16_to_cpu(sta->llid);
386 sinfo->plid = le16_to_cpu(sta->plid);
387 sinfo->plink_state = sta->plink_state;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100388#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100389 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100390}
391
392
393static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
394 int idx, u8 *mac, struct station_info *sinfo)
395{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100396 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100397 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100398 int ret = -ENOENT;
399
400 rcu_read_lock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100401
Johannes Berg3b53fde82009-11-16 12:00:37 +0100402 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100403 if (sta) {
404 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200405 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100406 sta_set_sinfo(sta, sinfo);
407 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100408
Johannes Bergd0709a62008-02-25 16:27:46 +0100409 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100410
Johannes Bergd0709a62008-02-25 16:27:46 +0100411 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100412}
413
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100414static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100415 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100416{
Johannes Bergabe60632009-11-25 17:46:18 +0100417 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100418 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100419 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100420
Johannes Bergd0709a62008-02-25 16:27:46 +0100421 rcu_read_lock();
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100422
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100423 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100424 if (sta) {
425 ret = 0;
426 sta_set_sinfo(sta, sinfo);
427 }
428
429 rcu_read_unlock();
430
431 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100432}
433
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100434/*
435 * This handles both adding a beacon and setting new beacon info
436 */
437static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
438 struct beacon_parameters *params)
439{
440 struct beacon_data *new, *old;
441 int new_head_len, new_tail_len;
442 int size;
443 int err = -EINVAL;
444
445 old = sdata->u.ap.beacon;
446
447 /* head must not be zero-length */
448 if (params->head && !params->head_len)
449 return -EINVAL;
450
451 /*
452 * This is a kludge. beacon interval should really be part
453 * of the beacon information.
454 */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200455 if (params->interval &&
456 (sdata->vif.bss_conf.beacon_int != params->interval)) {
457 sdata->vif.bss_conf.beacon_int = params->interval;
458 ieee80211_bss_info_change_notify(sdata,
459 BSS_CHANGED_BEACON_INT);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100460 }
461
462 /* Need to have a beacon head if we don't have one yet */
463 if (!params->head && !old)
464 return err;
465
466 /* sorry, no way to start beaconing without dtim period */
467 if (!params->dtim_period && !old)
468 return err;
469
470 /* new or old head? */
471 if (params->head)
472 new_head_len = params->head_len;
473 else
474 new_head_len = old->head_len;
475
476 /* new or old tail? */
477 if (params->tail || !old)
478 /* params->tail_len will be zero for !params->tail */
479 new_tail_len = params->tail_len;
480 else
481 new_tail_len = old->tail_len;
482
483 size = sizeof(*new) + new_head_len + new_tail_len;
484
485 new = kzalloc(size, GFP_KERNEL);
486 if (!new)
487 return -ENOMEM;
488
489 /* start filling the new info now */
490
491 /* new or old dtim period? */
492 if (params->dtim_period)
493 new->dtim_period = params->dtim_period;
494 else
495 new->dtim_period = old->dtim_period;
496
497 /*
498 * pointers go into the block we allocated,
499 * memory is | beacon_data | head | tail |
500 */
501 new->head = ((u8 *) new) + sizeof(*new);
502 new->tail = new->head + new_head_len;
503 new->head_len = new_head_len;
504 new->tail_len = new_tail_len;
505
506 /* copy in head */
507 if (params->head)
508 memcpy(new->head, params->head, new_head_len);
509 else
510 memcpy(new->head, old->head, new_head_len);
511
512 /* copy in optional tail */
513 if (params->tail)
514 memcpy(new->tail, params->tail, new_tail_len);
515 else
516 if (old)
517 memcpy(new->tail, old->tail, new_tail_len);
518
Johannes Berg19885c42010-02-05 11:45:06 +0100519 sdata->vif.bss_conf.dtim_period = new->dtim_period;
520
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100521 rcu_assign_pointer(sdata->u.ap.beacon, new);
522
523 synchronize_rcu();
524
525 kfree(old);
526
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200527 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
528 BSS_CHANGED_BEACON);
529 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100530}
531
532static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
533 struct beacon_parameters *params)
534{
Johannes Berg14db74b2008-07-29 13:22:52 +0200535 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100536 struct beacon_data *old;
537
Johannes Berg14db74b2008-07-29 13:22:52 +0200538 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
539
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100540 old = sdata->u.ap.beacon;
541
542 if (old)
543 return -EALREADY;
544
545 return ieee80211_config_beacon(sdata, params);
546}
547
548static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
549 struct beacon_parameters *params)
550{
Johannes Berg14db74b2008-07-29 13:22:52 +0200551 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100552 struct beacon_data *old;
553
Johannes Berg14db74b2008-07-29 13:22:52 +0200554 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
555
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100556 old = sdata->u.ap.beacon;
557
558 if (!old)
559 return -ENOENT;
560
561 return ieee80211_config_beacon(sdata, params);
562}
563
564static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
565{
Johannes Berg14db74b2008-07-29 13:22:52 +0200566 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100567 struct beacon_data *old;
568
Johannes Berg14db74b2008-07-29 13:22:52 +0200569 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
570
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100571 old = sdata->u.ap.beacon;
572
573 if (!old)
574 return -ENOENT;
575
576 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
577 synchronize_rcu();
578 kfree(old);
579
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200580 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
581 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100582}
583
Johannes Berg4fd69312007-12-19 02:03:35 +0100584/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
585struct iapp_layer2_update {
586 u8 da[ETH_ALEN]; /* broadcast */
587 u8 sa[ETH_ALEN]; /* STA addr */
588 __be16 len; /* 6 */
589 u8 dsap; /* 0 */
590 u8 ssap; /* 0 */
591 u8 control;
592 u8 xid_info[3];
593} __attribute__ ((packed));
594
595static void ieee80211_send_layer2_update(struct sta_info *sta)
596{
597 struct iapp_layer2_update *msg;
598 struct sk_buff *skb;
599
600 /* Send Level 2 Update Frame to update forwarding tables in layer 2
601 * bridge devices */
602
603 skb = dev_alloc_skb(sizeof(*msg));
604 if (!skb)
605 return;
606 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
607
608 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
609 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
610
611 memset(msg->da, 0xff, ETH_ALEN);
Johannes Berg17741cd2008-09-11 00:02:02 +0200612 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100613 msg->len = htons(6);
614 msg->dsap = 0;
615 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
616 msg->control = 0xaf; /* XID response lsb.1111F101.
617 * F=0 (no poll command; unsolicited frame) */
618 msg->xid_info[0] = 0x81; /* XID format identifier */
619 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
620 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
621
Johannes Bergd0709a62008-02-25 16:27:46 +0100622 skb->dev = sta->sdata->dev;
623 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100624 memset(skb->cb, 0, sizeof(skb->cb));
625 netif_rx(skb);
626}
627
628static void sta_apply_parameters(struct ieee80211_local *local,
629 struct sta_info *sta,
630 struct station_parameters *params)
631{
632 u32 rates;
633 int i, j;
Johannes Berg8318d782008-01-24 19:38:38 +0100634 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100635 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300636 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100637
Johannes Bergae5eb022008-10-14 16:58:37 +0200638 sband = local->hw.wiphy->bands[local->oper_channel->band];
639
Johannes Bergeccb8e82009-05-11 21:57:56 +0300640 spin_lock_bh(&sta->lock);
641 mask = params->sta_flags_mask;
642 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100643
Johannes Bergeccb8e82009-05-11 21:57:56 +0300644 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100645 sta->flags &= ~WLAN_STA_AUTHORIZED;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300646 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Johannes Berg4fd69312007-12-19 02:03:35 +0100647 sta->flags |= WLAN_STA_AUTHORIZED;
Johannes Berg4fd69312007-12-19 02:03:35 +0100648 }
649
Johannes Bergeccb8e82009-05-11 21:57:56 +0300650 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
651 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
652 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
653 sta->flags |= WLAN_STA_SHORT_PREAMBLE;
654 }
655
656 if (mask & BIT(NL80211_STA_FLAG_WME)) {
657 sta->flags &= ~WLAN_STA_WME;
658 if (set & BIT(NL80211_STA_FLAG_WME))
659 sta->flags |= WLAN_STA_WME;
660 }
661
662 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
663 sta->flags &= ~WLAN_STA_MFP;
664 if (set & BIT(NL80211_STA_FLAG_MFP))
665 sta->flags |= WLAN_STA_MFP;
666 }
667 spin_unlock_bh(&sta->lock);
668
Johannes Berg73651ee2008-02-25 16:27:47 +0100669 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +0200670 * cfg80211 validates this (1-2007) and allows setting the AID
671 * only when creating a new station entry
672 */
673 if (params->aid)
674 sta->sta.aid = params->aid;
675
676 /*
Johannes Berg73651ee2008-02-25 16:27:47 +0100677 * FIXME: updating the following information is racy when this
678 * function is called from ieee80211_change_station().
679 * However, all this information should be static so
680 * maybe we should just reject attemps to change it.
681 */
682
Johannes Berg4fd69312007-12-19 02:03:35 +0100683 if (params->listen_interval >= 0)
684 sta->listen_interval = params->listen_interval;
685
686 if (params->supported_rates) {
687 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100688
Johannes Berg4fd69312007-12-19 02:03:35 +0100689 for (i = 0; i < params->supported_rates_len; i++) {
690 int rate = (params->supported_rates[i] & 0x7f) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +0100691 for (j = 0; j < sband->n_bitrates; j++) {
692 if (sband->bitrates[j].bitrate == rate)
Johannes Berg4fd69312007-12-19 02:03:35 +0100693 rates |= BIT(j);
694 }
695 }
Johannes Berg323ce792008-09-11 02:45:11 +0200696 sta->sta.supp_rates[local->oper_channel->band] = rates;
Johannes Berg4fd69312007-12-19 02:03:35 +0100697 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100698
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200699 if (params->ht_capa)
Johannes Bergae5eb022008-10-14 16:58:37 +0200700 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
701 params->ht_capa,
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200702 &sta->sta.ht_cap);
Jouni Malinen36aedc92008-08-25 11:58:58 +0300703
Johannes Berg902acc72008-02-23 15:17:19 +0100704 if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100705 switch (params->plink_action) {
706 case PLINK_ACTION_OPEN:
707 mesh_plink_open(sta);
708 break;
709 case PLINK_ACTION_BLOCK:
710 mesh_plink_block(sta);
711 break;
712 }
Johannes Berg902acc72008-02-23 15:17:19 +0100713 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100714}
715
716static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
717 u8 *mac, struct station_parameters *params)
718{
Johannes Berg14db74b2008-07-29 13:22:52 +0200719 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100720 struct sta_info *sta;
721 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +0100722 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200723 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +0100724
Johannes Berg4fd69312007-12-19 02:03:35 +0100725 if (params->vlan) {
726 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
727
Johannes Berg05c914f2008-09-11 00:01:58 +0200728 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
729 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +0100730 return -EINVAL;
731 } else
732 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
733
Johannes Berg47846c92009-11-25 17:46:19 +0100734 if (compare_ether_addr(mac, sdata->vif.addr) == 0)
Johannes Berg03e44972008-02-27 09:56:40 +0100735 return -EINVAL;
736
737 if (is_multicast_ether_addr(mac))
738 return -EINVAL;
739
740 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +0100741 if (!sta)
742 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +0100743
744 sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
745
746 sta_apply_parameters(local, sta, params);
747
Johannes Berg4b7679a2008-09-18 18:14:18 +0200748 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +0100749
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200750 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
751 sdata->vif.type == NL80211_IFTYPE_AP;
752
Johannes Berg34e89502010-02-03 13:59:58 +0100753 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100754 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +0100755 rcu_read_unlock();
756 return err;
757 }
758
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200759 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +0100760 ieee80211_send_layer2_update(sta);
761
762 rcu_read_unlock();
763
Johannes Berg4fd69312007-12-19 02:03:35 +0100764 return 0;
765}
766
767static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
768 u8 *mac)
769{
Johannes Berg14db74b2008-07-29 13:22:52 +0200770 struct ieee80211_local *local = wiphy_priv(wiphy);
771 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100772
Johannes Berg14db74b2008-07-29 13:22:52 +0200773 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
774
Johannes Berg34e89502010-02-03 13:59:58 +0100775 if (mac)
776 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200777
Johannes Berg34e89502010-02-03 13:59:58 +0100778 sta_info_flush(local, sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +0100779 return 0;
780}
781
782static int ieee80211_change_station(struct wiphy *wiphy,
783 struct net_device *dev,
784 u8 *mac,
785 struct station_parameters *params)
786{
Johannes Bergabe60632009-11-25 17:46:18 +0100787 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +0200788 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100789 struct sta_info *sta;
790 struct ieee80211_sub_if_data *vlansdata;
791
Johannes Berg98dd6a52008-04-10 15:36:09 +0200792 rcu_read_lock();
793
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100794 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200795 if (!sta) {
796 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100797 return -ENOENT;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200798 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100799
Johannes Bergd0709a62008-02-25 16:27:46 +0100800 if (params->vlan && params->vlan != sta->sdata->dev) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100801 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
802
Johannes Berg05c914f2008-09-11 00:01:58 +0200803 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
804 vlansdata->vif.type != NL80211_IFTYPE_AP) {
Johannes Berg98dd6a52008-04-10 15:36:09 +0200805 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100806 return -EINVAL;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200807 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100808
Johannes Berg9bc383d2009-11-19 11:55:19 +0100809 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +0100810 if (vlansdata->u.vlan.sta) {
811 rcu_read_unlock();
Felix Fietkauf14543e2009-11-10 20:10:05 +0100812 return -EBUSY;
Johannes Berg33054432009-11-20 10:09:14 +0100813 }
Felix Fietkauf14543e2009-11-10 20:10:05 +0100814
815 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
816 }
817
Johannes Berg14db74b2008-07-29 13:22:52 +0200818 sta->sdata = vlansdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100819 ieee80211_send_layer2_update(sta);
820 }
821
822 sta_apply_parameters(local, sta, params);
823
Johannes Berg98dd6a52008-04-10 15:36:09 +0200824 rcu_read_unlock();
825
Johannes Berg4fd69312007-12-19 02:03:35 +0100826 return 0;
827}
828
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100829#ifdef CONFIG_MAC80211_MESH
830static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
831 u8 *dst, u8 *next_hop)
832{
Johannes Berg14db74b2008-07-29 13:22:52 +0200833 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100834 struct mesh_path *mpath;
835 struct sta_info *sta;
836 int err;
837
Johannes Berg14db74b2008-07-29 13:22:52 +0200838 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
839
Johannes Bergd0709a62008-02-25 16:27:46 +0100840 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100841 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100842 if (!sta) {
843 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100844 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +0100845 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100846
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200847 err = mesh_path_add(dst, sdata);
Johannes Bergd0709a62008-02-25 16:27:46 +0100848 if (err) {
849 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100850 return err;
Johannes Bergd0709a62008-02-25 16:27:46 +0100851 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100852
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200853 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100854 if (!mpath) {
855 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100856 return -ENXIO;
857 }
858 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100859
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100860 rcu_read_unlock();
861 return 0;
862}
863
864static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
865 u8 *dst)
866{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200867 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100868
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200869 if (dst)
870 return mesh_path_del(dst, sdata);
871
872 mesh_path_flush(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100873 return 0;
874}
875
876static int ieee80211_change_mpath(struct wiphy *wiphy,
877 struct net_device *dev,
878 u8 *dst, u8 *next_hop)
879{
Johannes Berg14db74b2008-07-29 13:22:52 +0200880 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100881 struct mesh_path *mpath;
882 struct sta_info *sta;
883
Johannes Berg14db74b2008-07-29 13:22:52 +0200884 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
885
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100886 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +0100887
Johannes Bergabe60632009-11-25 17:46:18 +0100888 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100889 if (!sta) {
890 rcu_read_unlock();
891 return -ENOENT;
892 }
893
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200894 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100895 if (!mpath) {
896 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100897 return -ENOENT;
898 }
899
900 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100901
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100902 rcu_read_unlock();
903 return 0;
904}
905
906static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
907 struct mpath_info *pinfo)
908{
909 if (mpath->next_hop)
Johannes Berg17741cd2008-09-11 00:02:02 +0200910 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100911 else
912 memset(next_hop, 0, ETH_ALEN);
913
Johannes Bergf5ea9122009-08-07 16:17:38 +0200914 pinfo->generation = mesh_paths_generation;
915
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100916 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +0000917 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100918 MPATH_INFO_METRIC |
919 MPATH_INFO_EXPTIME |
920 MPATH_INFO_DISCOVERY_TIMEOUT |
921 MPATH_INFO_DISCOVERY_RETRIES |
922 MPATH_INFO_FLAGS;
923
924 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000925 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100926 pinfo->metric = mpath->metric;
927 if (time_before(jiffies, mpath->exp_time))
928 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
929 pinfo->discovery_timeout =
930 jiffies_to_msecs(mpath->discovery_timeout);
931 pinfo->discovery_retries = mpath->discovery_retries;
932 pinfo->flags = 0;
933 if (mpath->flags & MESH_PATH_ACTIVE)
934 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
935 if (mpath->flags & MESH_PATH_RESOLVING)
936 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000937 if (mpath->flags & MESH_PATH_SN_VALID)
938 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100939 if (mpath->flags & MESH_PATH_FIXED)
940 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
941 if (mpath->flags & MESH_PATH_RESOLVING)
942 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
943
944 pinfo->flags = mpath->flags;
945}
946
947static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
948 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
949
950{
Johannes Berg14db74b2008-07-29 13:22:52 +0200951 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100952 struct mesh_path *mpath;
953
Johannes Berg14db74b2008-07-29 13:22:52 +0200954 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
955
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100956 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200957 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100958 if (!mpath) {
959 rcu_read_unlock();
960 return -ENOENT;
961 }
962 memcpy(dst, mpath->dst, ETH_ALEN);
963 mpath_set_pinfo(mpath, next_hop, pinfo);
964 rcu_read_unlock();
965 return 0;
966}
967
968static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
969 int idx, u8 *dst, u8 *next_hop,
970 struct mpath_info *pinfo)
971{
Johannes Berg14db74b2008-07-29 13:22:52 +0200972 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100973 struct mesh_path *mpath;
974
Johannes Berg14db74b2008-07-29 13:22:52 +0200975 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
976
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100977 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200978 mpath = mesh_path_lookup_by_idx(idx, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100979 if (!mpath) {
980 rcu_read_unlock();
981 return -ENOENT;
982 }
983 memcpy(dst, mpath->dst, ETH_ALEN);
984 mpath_set_pinfo(mpath, next_hop, pinfo);
985 rcu_read_unlock();
986 return 0;
987}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700988
989static int ieee80211_get_mesh_params(struct wiphy *wiphy,
990 struct net_device *dev,
991 struct mesh_config *conf)
992{
993 struct ieee80211_sub_if_data *sdata;
994 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
995
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700996 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
997 return 0;
998}
999
1000static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1001{
1002 return (mask >> (parm-1)) & 0x1;
1003}
1004
1005static int ieee80211_set_mesh_params(struct wiphy *wiphy,
1006 struct net_device *dev,
1007 const struct mesh_config *nconf, u32 mask)
1008{
1009 struct mesh_config *conf;
1010 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001011 struct ieee80211_if_mesh *ifmsh;
1012
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001013 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001014 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001015
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001016 /* Set the config options which we are interested in setting */
1017 conf = &(sdata->u.mesh.mshcfg);
1018 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1019 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1020 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1021 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1022 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1023 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1024 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1025 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1026 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1027 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1028 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1029 conf->dot11MeshTTL = nconf->dot11MeshTTL;
1030 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
1031 conf->auto_open_plinks = nconf->auto_open_plinks;
1032 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1033 conf->dot11MeshHWMPmaxPREQretries =
1034 nconf->dot11MeshHWMPmaxPREQretries;
1035 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1036 conf->path_refresh_time = nconf->path_refresh_time;
1037 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1038 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1039 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1040 conf->dot11MeshHWMPactivePathTimeout =
1041 nconf->dot11MeshHWMPactivePathTimeout;
1042 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1043 conf->dot11MeshHWMPpreqMinInterval =
1044 nconf->dot11MeshHWMPpreqMinInterval;
1045 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1046 mask))
1047 conf->dot11MeshHWMPnetDiameterTraversalTime =
1048 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001049 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1050 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1051 ieee80211_mesh_root_setup(ifmsh);
1052 }
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001053 return 0;
1054}
1055
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001056#endif
1057
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001058static int ieee80211_change_bss(struct wiphy *wiphy,
1059 struct net_device *dev,
1060 struct bss_parameters *params)
1061{
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001062 struct ieee80211_sub_if_data *sdata;
1063 u32 changed = 0;
1064
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001065 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1066
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001067 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001068 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001069 changed |= BSS_CHANGED_ERP_CTS_PROT;
1070 }
1071 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001072 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001073 params->use_short_preamble;
1074 changed |= BSS_CHANGED_ERP_PREAMBLE;
1075 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001076
1077 if (!sdata->vif.bss_conf.use_short_slot &&
1078 sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
1079 sdata->vif.bss_conf.use_short_slot = true;
1080 changed |= BSS_CHANGED_ERP_SLOT;
1081 }
1082
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001083 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001084 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001085 params->use_short_slot_time;
1086 changed |= BSS_CHANGED_ERP_SLOT;
1087 }
1088
Jouni Malinen90c97a02008-10-30 16:59:22 +02001089 if (params->basic_rates) {
1090 int i, j;
1091 u32 rates = 0;
1092 struct ieee80211_local *local = wiphy_priv(wiphy);
1093 struct ieee80211_supported_band *sband =
1094 wiphy->bands[local->oper_channel->band];
1095
1096 for (i = 0; i < params->basic_rates_len; i++) {
1097 int rate = (params->basic_rates[i] & 0x7f) * 5;
1098 for (j = 0; j < sband->n_bitrates; j++) {
1099 if (sband->bitrates[j].bitrate == rate)
1100 rates |= BIT(j);
1101 }
1102 }
1103 sdata->vif.bss_conf.basic_rates = rates;
1104 changed |= BSS_CHANGED_BASIC_RATES;
1105 }
1106
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001107 ieee80211_bss_info_change_notify(sdata, changed);
1108
1109 return 0;
1110}
1111
Jouni Malinen31888482008-10-30 16:59:24 +02001112static int ieee80211_set_txq_params(struct wiphy *wiphy,
1113 struct ieee80211_txq_params *params)
1114{
1115 struct ieee80211_local *local = wiphy_priv(wiphy);
1116 struct ieee80211_tx_queue_params p;
1117
1118 if (!local->ops->conf_tx)
1119 return -EOPNOTSUPP;
1120
1121 memset(&p, 0, sizeof(p));
1122 p.aifs = params->aifs;
1123 p.cw_max = params->cwmax;
1124 p.cw_min = params->cwmin;
1125 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001126
1127 /*
1128 * Setting tx queue params disables u-apsd because it's only
1129 * called in master mode.
1130 */
1131 p.uapsd = false;
1132
Johannes Berg24487982009-04-23 18:52:52 +02001133 if (drv_conf_tx(local, params->queue, &p)) {
Jouni Malinen31888482008-10-30 16:59:24 +02001134 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +02001135 "parameters for queue %d\n",
1136 wiphy_name(local->hw.wiphy), params->queue);
Jouni Malinen31888482008-10-30 16:59:24 +02001137 return -EINVAL;
1138 }
1139
1140 return 0;
1141}
1142
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001143static int ieee80211_set_channel(struct wiphy *wiphy,
1144 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +05301145 enum nl80211_channel_type channel_type)
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001146{
1147 struct ieee80211_local *local = wiphy_priv(wiphy);
1148
1149 local->oper_channel = chan;
Sujith094d05d2008-12-12 11:57:43 +05301150 local->oper_channel_type = channel_type;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001151
1152 return ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
1153}
1154
Bob Copeland665af4f2009-01-19 11:20:53 -05001155#ifdef CONFIG_PM
1156static int ieee80211_suspend(struct wiphy *wiphy)
1157{
1158 return __ieee80211_suspend(wiphy_priv(wiphy));
1159}
1160
1161static int ieee80211_resume(struct wiphy *wiphy)
1162{
1163 return __ieee80211_resume(wiphy_priv(wiphy));
1164}
1165#else
1166#define ieee80211_suspend NULL
1167#define ieee80211_resume NULL
1168#endif
1169
Johannes Berg2a519312009-02-10 21:25:55 +01001170static int ieee80211_scan(struct wiphy *wiphy,
1171 struct net_device *dev,
1172 struct cfg80211_scan_request *req)
1173{
1174 struct ieee80211_sub_if_data *sdata;
1175
Johannes Berg2a519312009-02-10 21:25:55 +01001176 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1177
1178 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1179 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Jouni Malinen357303e2009-04-16 18:44:53 +03001180 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
1181 (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon))
Johannes Berg2a519312009-02-10 21:25:55 +01001182 return -EOPNOTSUPP;
1183
1184 return ieee80211_request_scan(sdata, req);
1185}
1186
Jouni Malinen636a5d32009-03-19 13:39:22 +02001187static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1188 struct cfg80211_auth_request *req)
1189{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001190 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001191}
1192
1193static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1194 struct cfg80211_assoc_request *req)
1195{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001196 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001197}
1198
1199static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001200 struct cfg80211_deauth_request *req,
1201 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001202{
Johannes Berg667503d2009-07-07 03:56:11 +02001203 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1204 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001205}
1206
1207static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001208 struct cfg80211_disassoc_request *req,
1209 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001210{
Johannes Berg667503d2009-07-07 03:56:11 +02001211 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1212 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001213}
1214
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001215static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1216 struct cfg80211_ibss_params *params)
1217{
1218 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1219
1220 return ieee80211_ibss_join(sdata, params);
1221}
1222
1223static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1224{
1225 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1226
1227 return ieee80211_ibss_leave(sdata);
1228}
1229
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001230static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1231{
1232 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001233 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001234
Lukáš Turek310bc672009-12-21 22:50:48 +01001235 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1236 err = drv_set_coverage_class(local, wiphy->coverage_class);
1237
1238 if (err)
1239 return err;
1240 }
1241
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001242 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001243 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001244
Johannes Berg24487982009-04-23 18:52:52 +02001245 if (err)
1246 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001247 }
1248
1249 if (changed & WIPHY_PARAM_RETRY_SHORT)
1250 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1251 if (changed & WIPHY_PARAM_RETRY_LONG)
1252 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1253 if (changed &
1254 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1255 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1256
1257 return 0;
1258}
1259
Johannes Berg7643a2c2009-06-02 13:01:39 +02001260static int ieee80211_set_tx_power(struct wiphy *wiphy,
1261 enum tx_power_setting type, int dbm)
1262{
1263 struct ieee80211_local *local = wiphy_priv(wiphy);
1264 struct ieee80211_channel *chan = local->hw.conf.channel;
1265 u32 changes = 0;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001266
1267 switch (type) {
1268 case TX_POWER_AUTOMATIC:
1269 local->user_power_level = -1;
1270 break;
1271 case TX_POWER_LIMITED:
1272 if (dbm < 0)
1273 return -EINVAL;
1274 local->user_power_level = dbm;
1275 break;
1276 case TX_POWER_FIXED:
1277 if (dbm < 0)
1278 return -EINVAL;
1279 /* TODO: move to cfg80211 when it knows the channel */
1280 if (dbm > chan->max_power)
1281 return -EINVAL;
1282 local->user_power_level = dbm;
1283 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001284 }
1285
1286 ieee80211_hw_config(local, changes);
1287
1288 return 0;
1289}
1290
1291static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1292{
1293 struct ieee80211_local *local = wiphy_priv(wiphy);
1294
1295 *dbm = local->hw.conf.power_level;
1296
Johannes Berg7643a2c2009-06-02 13:01:39 +02001297 return 0;
1298}
1299
Johannes Bergab737a42009-07-01 21:26:58 +02001300static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
1301 u8 *addr)
1302{
1303 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1304
1305 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
1306
1307 return 0;
1308}
1309
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001310static void ieee80211_rfkill_poll(struct wiphy *wiphy)
1311{
1312 struct ieee80211_local *local = wiphy_priv(wiphy);
1313
1314 drv_rfkill_poll(local);
1315}
1316
Johannes Bergaff89a92009-07-01 21:26:51 +02001317#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg99783e22009-07-07 03:54:43 +02001318static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001319{
1320 struct ieee80211_local *local = wiphy_priv(wiphy);
1321
1322 if (!local->ops->testmode_cmd)
1323 return -EOPNOTSUPP;
1324
1325 return local->ops->testmode_cmd(&local->hw, data, len);
1326}
1327#endif
1328
Johannes Berg0f782312009-12-01 13:37:02 +01001329int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
1330 enum ieee80211_smps_mode smps_mode)
1331{
1332 const u8 *ap;
1333 enum ieee80211_smps_mode old_req;
1334 int err;
1335
1336 old_req = sdata->u.mgd.req_smps;
1337 sdata->u.mgd.req_smps = smps_mode;
1338
1339 if (old_req == smps_mode &&
1340 smps_mode != IEEE80211_SMPS_AUTOMATIC)
1341 return 0;
1342
1343 /*
1344 * If not associated, or current association is not an HT
1345 * association, there's no need to send an action frame.
1346 */
1347 if (!sdata->u.mgd.associated ||
1348 sdata->local->oper_channel_type == NL80211_CHAN_NO_HT) {
1349 mutex_lock(&sdata->local->iflist_mtx);
1350 ieee80211_recalc_smps(sdata->local, sdata);
1351 mutex_unlock(&sdata->local->iflist_mtx);
1352 return 0;
1353 }
1354
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001355 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01001356
1357 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1358 if (sdata->u.mgd.powersave)
1359 smps_mode = IEEE80211_SMPS_DYNAMIC;
1360 else
1361 smps_mode = IEEE80211_SMPS_OFF;
1362 }
1363
1364 /* send SM PS frame to AP */
1365 err = ieee80211_send_smps_action(sdata, smps_mode,
1366 ap, ap);
1367 if (err)
1368 sdata->u.mgd.req_smps = old_req;
1369
1370 return err;
1371}
1372
Johannes Bergbc92afd2009-07-01 21:26:57 +02001373static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1374 bool enabled, int timeout)
1375{
1376 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1377 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1378 struct ieee80211_conf *conf = &local->hw.conf;
1379
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01001380 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1381 return -EOPNOTSUPP;
1382
Johannes Bergbc92afd2009-07-01 21:26:57 +02001383 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1384 return -EOPNOTSUPP;
1385
1386 if (enabled == sdata->u.mgd.powersave &&
1387 timeout == conf->dynamic_ps_timeout)
1388 return 0;
1389
1390 sdata->u.mgd.powersave = enabled;
1391 conf->dynamic_ps_timeout = timeout;
1392
Johannes Berg0f782312009-12-01 13:37:02 +01001393 /* no change, but if automatic follow powersave */
1394 mutex_lock(&sdata->u.mgd.mtx);
1395 __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
1396 mutex_unlock(&sdata->u.mgd.mtx);
1397
Johannes Bergbc92afd2009-07-01 21:26:57 +02001398 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
1399 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1400
1401 ieee80211_recalc_ps(local, -1);
1402
1403 return 0;
1404}
1405
Johannes Berg99303802009-07-01 21:26:59 +02001406static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
1407 struct net_device *dev,
1408 const u8 *addr,
1409 const struct cfg80211_bitrate_mask *mask)
1410{
1411 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1412 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001413 int i;
Johannes Berg99303802009-07-01 21:26:59 +02001414
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001415 /*
1416 * This _could_ be supported by providing a hook for
1417 * drivers for this function, but at this point it
1418 * doesn't seem worth bothering.
1419 */
1420 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
1421 return -EOPNOTSUPP;
1422
Johannes Berg99303802009-07-01 21:26:59 +02001423
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001424 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1425 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Johannes Berg99303802009-07-01 21:26:59 +02001426
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001427 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02001428}
1429
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001430static int ieee80211_remain_on_channel(struct wiphy *wiphy,
1431 struct net_device *dev,
1432 struct ieee80211_channel *chan,
1433 enum nl80211_channel_type channel_type,
1434 unsigned int duration,
1435 u64 *cookie)
1436{
1437 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1438
1439 return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
1440 duration, cookie);
1441}
1442
1443static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
1444 struct net_device *dev,
1445 u64 cookie)
1446{
1447 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1448
1449 return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
1450}
1451
Jouni Malinen026331c2010-02-15 12:53:10 +02001452static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev,
1453 struct ieee80211_channel *chan,
1454 enum nl80211_channel_type channel_type,
1455 const u8 *buf, size_t len, u64 *cookie)
1456{
1457 return ieee80211_mgd_action(IEEE80211_DEV_TO_SUB_IF(dev), chan,
1458 channel_type, buf, len, cookie);
1459}
1460
Jiri Bencf0706e822007-05-05 11:45:53 -07001461struct cfg80211_ops mac80211_config_ops = {
1462 .add_virtual_intf = ieee80211_add_iface,
1463 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02001464 .change_virtual_intf = ieee80211_change_iface,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001465 .add_key = ieee80211_add_key,
1466 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01001467 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001468 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +02001469 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001470 .add_beacon = ieee80211_add_beacon,
1471 .set_beacon = ieee80211_set_beacon,
1472 .del_beacon = ieee80211_del_beacon,
Johannes Berg4fd69312007-12-19 02:03:35 +01001473 .add_station = ieee80211_add_station,
1474 .del_station = ieee80211_del_station,
1475 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01001476 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001477 .dump_station = ieee80211_dump_station,
1478#ifdef CONFIG_MAC80211_MESH
1479 .add_mpath = ieee80211_add_mpath,
1480 .del_mpath = ieee80211_del_mpath,
1481 .change_mpath = ieee80211_change_mpath,
1482 .get_mpath = ieee80211_get_mpath,
1483 .dump_mpath = ieee80211_dump_mpath,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001484 .set_mesh_params = ieee80211_set_mesh_params,
1485 .get_mesh_params = ieee80211_get_mesh_params,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001486#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001487 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02001488 .set_txq_params = ieee80211_set_txq_params,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001489 .set_channel = ieee80211_set_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05001490 .suspend = ieee80211_suspend,
1491 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01001492 .scan = ieee80211_scan,
Jouni Malinen636a5d32009-03-19 13:39:22 +02001493 .auth = ieee80211_auth,
1494 .assoc = ieee80211_assoc,
1495 .deauth = ieee80211_deauth,
1496 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001497 .join_ibss = ieee80211_join_ibss,
1498 .leave_ibss = ieee80211_leave_ibss,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001499 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02001500 .set_tx_power = ieee80211_set_tx_power,
1501 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02001502 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001503 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02001504 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001505 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02001506 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001507 .remain_on_channel = ieee80211_remain_on_channel,
1508 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Jouni Malinen026331c2010-02-15 12:53:10 +02001509 .action = ieee80211_action,
Jiri Bencf0706e822007-05-05 11:45:53 -07001510};