blob: e13fb3a622398907a01063d31ae8b59e581e6a0f [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>
Eric W. Biederman881d9662007-09-17 11:56:21 -070012#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010013#include <linux/rcupdate.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070014#include <net/cfg80211.h>
15#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020016#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040017#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040018#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010019#include "mesh.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010020
Johannes Berg05c914f2008-09-11 00:01:58 +020021static bool nl80211_type_check(enum nl80211_iftype type)
Johannes Berg42613db2007-09-28 21:52:27 +020022{
23 switch (type) {
Johannes Berg42613db2007-09-28 21:52:27 +020024 case NL80211_IFTYPE_ADHOC:
Johannes Berg42613db2007-09-28 21:52:27 +020025 case NL80211_IFTYPE_STATION:
Johannes Berg42613db2007-09-28 21:52:27 +020026 case NL80211_IFTYPE_MONITOR:
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010027#ifdef CONFIG_MAC80211_MESH
28 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010029#endif
Jouni Malinenfbf18922008-10-30 19:50:30 +020030 case NL80211_IFTYPE_AP:
31 case NL80211_IFTYPE_AP_VLAN:
Johannes Bergb4540482008-04-14 15:37:03 +020032 case NL80211_IFTYPE_WDS:
Johannes Berg05c914f2008-09-11 00:01:58 +020033 return true;
Johannes Berg42613db2007-09-28 21:52:27 +020034 default:
Johannes Berg05c914f2008-09-11 00:01:58 +020035 return false;
Johannes Berg42613db2007-09-28 21:52:27 +020036 }
37}
38
Felix Fietkauf14543ee2009-11-10 20:10:05 +010039static bool nl80211_params_check(enum nl80211_iftype type,
40 struct vif_params *params)
41{
42 if (!nl80211_type_check(type))
43 return false;
44
Felix Fietkauf14543ee2009-11-10 20:10:05 +010045 return true;
46}
47
Jiri Bencf0706e82007-05-05 11:45:53 -070048static int ieee80211_add_iface(struct wiphy *wiphy, char *name,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010049 enum nl80211_iftype type, u32 *flags,
50 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070051{
52 struct ieee80211_local *local = wiphy_priv(wiphy);
Michael Wu8cc9a732008-01-31 19:48:23 +010053 struct net_device *dev;
54 struct ieee80211_sub_if_data *sdata;
55 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070056
Felix Fietkauf14543ee2009-11-10 20:10:05 +010057 if (!nl80211_params_check(type, params))
Jiri Bencf0706e82007-05-05 11:45:53 -070058 return -EINVAL;
Jiri Bencf0706e82007-05-05 11:45:53 -070059
Johannes Berg05c914f2008-09-11 00:01:58 +020060 err = ieee80211_if_add(local, name, &dev, type, params);
61 if (err || type != NL80211_IFTYPE_MONITOR || !flags)
Michael Wu8cc9a732008-01-31 19:48:23 +010062 return err;
63
64 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
65 sdata->u.mntr_flags = *flags;
66 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070067}
68
Johannes Berg463d0182009-07-14 00:33:35 +020069static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev)
Jiri Bencf0706e82007-05-05 11:45:53 -070070{
Johannes Berg463d0182009-07-14 00:33:35 +020071 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
Jiri Bencf0706e82007-05-05 11:45:53 -070072
Johannes Berg75636522008-07-09 14:40:35 +020073 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070074}
75
Johannes Berge36d56b2009-06-09 21:04:43 +020076static int ieee80211_change_iface(struct wiphy *wiphy,
77 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010078 enum nl80211_iftype type, u32 *flags,
79 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020080{
Johannes Berg9607e6b2009-12-23 13:15:31 +010081 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020082 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020083
Johannes Berg9607e6b2009-12-23 13:15:31 +010084 if (ieee80211_sdata_running(sdata))
Johannes Bergc1f9a762009-11-01 19:25:40 +010085 return -EBUSY;
86
Felix Fietkauf14543ee2009-11-10 20:10:05 +010087 if (!nl80211_params_check(type, params))
Johannes Berg42613db2007-09-28 21:52:27 +020088 return -EINVAL;
89
Johannes Berg05c914f2008-09-11 00:01:58 +020090 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020091 if (ret)
92 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020093
Johannes Berg902acc72008-02-23 15:17:19 +010094 if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len)
Johannes Berg472dbc42008-09-11 00:01:49 +020095 ieee80211_sdata_set_mesh_id(sdata,
96 params->mesh_id_len,
97 params->mesh_id);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010098
Johannes Berg9bc383d2009-11-19 11:55:19 +010099 if (type == NL80211_IFTYPE_AP_VLAN &&
100 params && params->use_4addr == 0)
101 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
102 else if (type == NL80211_IFTYPE_STATION &&
103 params && params->use_4addr >= 0)
104 sdata->u.mgd.use_4addr = params->use_4addr;
105
Felix Fietkauf7917af2010-04-27 00:26:34 +0200106 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags)
107 sdata->u.mntr_flags = *flags;
108
Johannes Berg42613db2007-09-28 21:52:27 +0200109 return 0;
110}
111
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100112static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200113 u8 key_idx, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100114 struct key_params *params)
115{
116 struct ieee80211_sub_if_data *sdata;
117 struct sta_info *sta = NULL;
118 enum ieee80211_key_alg alg;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100119 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200120 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100121
122 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
123
124 switch (params->cipher) {
125 case WLAN_CIPHER_SUITE_WEP40:
126 case WLAN_CIPHER_SUITE_WEP104:
127 alg = ALG_WEP;
128 break;
129 case WLAN_CIPHER_SUITE_TKIP:
130 alg = ALG_TKIP;
131 break;
132 case WLAN_CIPHER_SUITE_CCMP:
133 alg = ALG_CCMP;
134 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200135 case WLAN_CIPHER_SUITE_AES_CMAC:
136 alg = ALG_AES_CMAC;
137 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100138 default:
139 return -EINVAL;
140 }
141
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300142 key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key,
143 params->seq_len, params->seq);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100144 if (!key)
145 return -ENOMEM;
146
Johannes Berg3b967662008-04-08 17:56:52 +0200147 rcu_read_lock();
148
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100149 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100150 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100151 if (!sta) {
152 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200153 err = -ENOENT;
154 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100155 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100156 }
157
Johannes Bergdb4d1162008-02-25 16:27:45 +0100158 ieee80211_key_link(key, sdata, sta);
159
Johannes Berg3b967662008-04-08 17:56:52 +0200160 err = 0;
161 out_unlock:
162 rcu_read_unlock();
163
164 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100165}
166
167static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200168 u8 key_idx, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100169{
170 struct ieee80211_sub_if_data *sdata;
171 struct sta_info *sta;
172 int ret;
173
174 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
175
Johannes Berg3b967662008-04-08 17:56:52 +0200176 rcu_read_lock();
177
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100178 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200179 ret = -ENOENT;
180
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100181 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100182 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200183 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100184
Johannes Bergdb4d1162008-02-25 16:27:45 +0100185 if (sta->key) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100186 ieee80211_key_free(sta->key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100187 WARN_ON(sta->key);
Johannes Berg3b967662008-04-08 17:56:52 +0200188 ret = 0;
189 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100190
Johannes Berg3b967662008-04-08 17:56:52 +0200191 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100192 }
193
Johannes Berg3b967662008-04-08 17:56:52 +0200194 if (!sdata->keys[key_idx]) {
195 ret = -ENOENT;
196 goto out_unlock;
197 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100198
Johannes Bergd0709a62008-02-25 16:27:46 +0100199 ieee80211_key_free(sdata->keys[key_idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100200 WARN_ON(sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100201
Johannes Berg3b967662008-04-08 17:56:52 +0200202 ret = 0;
203 out_unlock:
204 rcu_read_unlock();
205
206 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100207}
208
Johannes Berg62da92f2007-12-19 02:03:31 +0100209static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200210 u8 key_idx, const u8 *mac_addr, void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100211 void (*callback)(void *cookie,
212 struct key_params *params))
213{
Johannes Berg14db74b2008-07-29 13:22:52 +0200214 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100215 struct sta_info *sta = NULL;
216 u8 seq[6] = {0};
217 struct key_params params;
218 struct ieee80211_key *key;
219 u32 iv32;
220 u16 iv16;
221 int err = -ENOENT;
222
Johannes Berg14db74b2008-07-29 13:22:52 +0200223 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
224
Johannes Berg3b967662008-04-08 17:56:52 +0200225 rcu_read_lock();
226
Johannes Berg62da92f2007-12-19 02:03:31 +0100227 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100228 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100229 if (!sta)
230 goto out;
231
232 key = sta->key;
233 } else
234 key = sdata->keys[key_idx];
235
236 if (!key)
237 goto out;
238
239 memset(&params, 0, sizeof(params));
240
241 switch (key->conf.alg) {
242 case ALG_TKIP:
243 params.cipher = WLAN_CIPHER_SUITE_TKIP;
244
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700245 iv32 = key->u.tkip.tx.iv32;
246 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100247
Johannes Berg24487982009-04-23 18:52:52 +0200248 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
249 drv_get_tkip_seq(sdata->local,
250 key->conf.hw_key_idx,
251 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100252
253 seq[0] = iv16 & 0xff;
254 seq[1] = (iv16 >> 8) & 0xff;
255 seq[2] = iv32 & 0xff;
256 seq[3] = (iv32 >> 8) & 0xff;
257 seq[4] = (iv32 >> 16) & 0xff;
258 seq[5] = (iv32 >> 24) & 0xff;
259 params.seq = seq;
260 params.seq_len = 6;
261 break;
262 case ALG_CCMP:
263 params.cipher = WLAN_CIPHER_SUITE_CCMP;
264 seq[0] = key->u.ccmp.tx_pn[5];
265 seq[1] = key->u.ccmp.tx_pn[4];
266 seq[2] = key->u.ccmp.tx_pn[3];
267 seq[3] = key->u.ccmp.tx_pn[2];
268 seq[4] = key->u.ccmp.tx_pn[1];
269 seq[5] = key->u.ccmp.tx_pn[0];
270 params.seq = seq;
271 params.seq_len = 6;
272 break;
273 case ALG_WEP:
274 if (key->conf.keylen == 5)
275 params.cipher = WLAN_CIPHER_SUITE_WEP40;
276 else
277 params.cipher = WLAN_CIPHER_SUITE_WEP104;
278 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200279 case ALG_AES_CMAC:
280 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
281 seq[0] = key->u.aes_cmac.tx_pn[5];
282 seq[1] = key->u.aes_cmac.tx_pn[4];
283 seq[2] = key->u.aes_cmac.tx_pn[3];
284 seq[3] = key->u.aes_cmac.tx_pn[2];
285 seq[4] = key->u.aes_cmac.tx_pn[1];
286 seq[5] = key->u.aes_cmac.tx_pn[0];
287 params.seq = seq;
288 params.seq_len = 6;
289 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100290 }
291
292 params.key = key->conf.key;
293 params.key_len = key->conf.keylen;
294
295 callback(cookie, &params);
296 err = 0;
297
298 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200299 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100300 return err;
301}
302
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100303static int ieee80211_config_default_key(struct wiphy *wiphy,
304 struct net_device *dev,
305 u8 key_idx)
306{
307 struct ieee80211_sub_if_data *sdata;
308
Johannes Berg3b967662008-04-08 17:56:52 +0200309 rcu_read_lock();
310
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100311 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
312 ieee80211_set_default_key(sdata, key_idx);
313
Johannes Berg3b967662008-04-08 17:56:52 +0200314 rcu_read_unlock();
315
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100316 return 0;
317}
318
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200319static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
320 struct net_device *dev,
321 u8 key_idx)
322{
323 struct ieee80211_sub_if_data *sdata;
324
325 rcu_read_lock();
326
327 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
328 ieee80211_set_default_mgmt_key(sdata, key_idx);
329
330 rcu_read_unlock();
331
332 return 0;
333}
334
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100335static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
336{
Johannes Bergd0709a62008-02-25 16:27:46 +0100337 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100338
Johannes Bergf5ea9122009-08-07 16:17:38 +0200339 sinfo->generation = sdata->local->sta_generation;
340
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100341 sinfo->filled = STATION_INFO_INACTIVE_TIME |
342 STATION_INFO_RX_BYTES |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100343 STATION_INFO_TX_BYTES |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200344 STATION_INFO_RX_PACKETS |
345 STATION_INFO_TX_PACKETS |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100346 STATION_INFO_TX_BITRATE;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100347
348 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
349 sinfo->rx_bytes = sta->rx_bytes;
350 sinfo->tx_bytes = sta->tx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200351 sinfo->rx_packets = sta->rx_packets;
352 sinfo->tx_packets = sta->tx_packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100353
John W. Linville19deffb2009-12-08 17:10:13 -0500354 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
355 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Henning Rogge420e7fa2008-12-11 22:04:19 +0100356 sinfo->filled |= STATION_INFO_SIGNAL;
357 sinfo->signal = (s8)sta->last_signal;
358 }
359
360 sinfo->txrate.flags = 0;
361 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
362 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
363 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
364 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
365 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
366 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
367
368 if (!(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)) {
369 struct ieee80211_supported_band *sband;
370 sband = sta->local->hw.wiphy->bands[
371 sta->local->hw.conf.channel->band];
372 sinfo->txrate.legacy =
373 sband->bitrates[sta->last_tx_rate.idx].bitrate;
374 } else
375 sinfo->txrate.mcs = sta->last_tx_rate.idx;
376
Johannes Berg902acc72008-02-23 15:17:19 +0100377 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100378#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100379 sinfo->filled |= STATION_INFO_LLID |
380 STATION_INFO_PLID |
381 STATION_INFO_PLINK_STATE;
382
383 sinfo->llid = le16_to_cpu(sta->llid);
384 sinfo->plid = le16_to_cpu(sta->plid);
385 sinfo->plink_state = sta->plink_state;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100386#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100387 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100388}
389
390
391static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
392 int idx, u8 *mac, struct station_info *sinfo)
393{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100394 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100395 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100396 int ret = -ENOENT;
397
398 rcu_read_lock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100399
Johannes Berg3b53fde82009-11-16 12:00:37 +0100400 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100401 if (sta) {
402 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200403 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100404 sta_set_sinfo(sta, sinfo);
405 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100406
Johannes Bergd0709a62008-02-25 16:27:46 +0100407 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100408
Johannes Bergd0709a62008-02-25 16:27:46 +0100409 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100410}
411
Holger Schurig12897232010-04-19 10:23:57 +0200412static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
413 int idx, struct survey_info *survey)
414{
415 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
416
417 if (!local->ops->get_survey)
418 return -EOPNOTSUPP;
419
420 return drv_get_survey(local, idx, survey);
421}
422
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100423static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100424 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100425{
Johannes Bergabe60632009-11-25 17:46:18 +0100426 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100427 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100428 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100429
Johannes Bergd0709a62008-02-25 16:27:46 +0100430 rcu_read_lock();
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100431
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100432 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100433 if (sta) {
434 ret = 0;
435 sta_set_sinfo(sta, sinfo);
436 }
437
438 rcu_read_unlock();
439
440 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100441}
442
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100443/*
444 * This handles both adding a beacon and setting new beacon info
445 */
446static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
447 struct beacon_parameters *params)
448{
449 struct beacon_data *new, *old;
450 int new_head_len, new_tail_len;
451 int size;
452 int err = -EINVAL;
453
454 old = sdata->u.ap.beacon;
455
456 /* head must not be zero-length */
457 if (params->head && !params->head_len)
458 return -EINVAL;
459
460 /*
461 * This is a kludge. beacon interval should really be part
462 * of the beacon information.
463 */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200464 if (params->interval &&
465 (sdata->vif.bss_conf.beacon_int != params->interval)) {
466 sdata->vif.bss_conf.beacon_int = params->interval;
467 ieee80211_bss_info_change_notify(sdata,
468 BSS_CHANGED_BEACON_INT);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100469 }
470
471 /* Need to have a beacon head if we don't have one yet */
472 if (!params->head && !old)
473 return err;
474
475 /* sorry, no way to start beaconing without dtim period */
476 if (!params->dtim_period && !old)
477 return err;
478
479 /* new or old head? */
480 if (params->head)
481 new_head_len = params->head_len;
482 else
483 new_head_len = old->head_len;
484
485 /* new or old tail? */
486 if (params->tail || !old)
487 /* params->tail_len will be zero for !params->tail */
488 new_tail_len = params->tail_len;
489 else
490 new_tail_len = old->tail_len;
491
492 size = sizeof(*new) + new_head_len + new_tail_len;
493
494 new = kzalloc(size, GFP_KERNEL);
495 if (!new)
496 return -ENOMEM;
497
498 /* start filling the new info now */
499
500 /* new or old dtim period? */
501 if (params->dtim_period)
502 new->dtim_period = params->dtim_period;
503 else
504 new->dtim_period = old->dtim_period;
505
506 /*
507 * pointers go into the block we allocated,
508 * memory is | beacon_data | head | tail |
509 */
510 new->head = ((u8 *) new) + sizeof(*new);
511 new->tail = new->head + new_head_len;
512 new->head_len = new_head_len;
513 new->tail_len = new_tail_len;
514
515 /* copy in head */
516 if (params->head)
517 memcpy(new->head, params->head, new_head_len);
518 else
519 memcpy(new->head, old->head, new_head_len);
520
521 /* copy in optional tail */
522 if (params->tail)
523 memcpy(new->tail, params->tail, new_tail_len);
524 else
525 if (old)
526 memcpy(new->tail, old->tail, new_tail_len);
527
Johannes Berg19885c42010-02-05 11:45:06 +0100528 sdata->vif.bss_conf.dtim_period = new->dtim_period;
529
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100530 rcu_assign_pointer(sdata->u.ap.beacon, new);
531
532 synchronize_rcu();
533
534 kfree(old);
535
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200536 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
537 BSS_CHANGED_BEACON);
538 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100539}
540
541static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
542 struct beacon_parameters *params)
543{
Johannes Berg14db74b2008-07-29 13:22:52 +0200544 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100545 struct beacon_data *old;
546
Johannes Berg14db74b2008-07-29 13:22:52 +0200547 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
548
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100549 old = sdata->u.ap.beacon;
550
551 if (old)
552 return -EALREADY;
553
554 return ieee80211_config_beacon(sdata, params);
555}
556
557static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
558 struct beacon_parameters *params)
559{
Johannes Berg14db74b2008-07-29 13:22:52 +0200560 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100561 struct beacon_data *old;
562
Johannes Berg14db74b2008-07-29 13:22:52 +0200563 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
564
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100565 old = sdata->u.ap.beacon;
566
567 if (!old)
568 return -ENOENT;
569
570 return ieee80211_config_beacon(sdata, params);
571}
572
573static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
574{
Johannes Berg14db74b2008-07-29 13:22:52 +0200575 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100576 struct beacon_data *old;
577
Johannes Berg14db74b2008-07-29 13:22:52 +0200578 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
579
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100580 old = sdata->u.ap.beacon;
581
582 if (!old)
583 return -ENOENT;
584
585 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
586 synchronize_rcu();
587 kfree(old);
588
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200589 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
590 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100591}
592
Johannes Berg4fd69312007-12-19 02:03:35 +0100593/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
594struct iapp_layer2_update {
595 u8 da[ETH_ALEN]; /* broadcast */
596 u8 sa[ETH_ALEN]; /* STA addr */
597 __be16 len; /* 6 */
598 u8 dsap; /* 0 */
599 u8 ssap; /* 0 */
600 u8 control;
601 u8 xid_info[3];
602} __attribute__ ((packed));
603
604static void ieee80211_send_layer2_update(struct sta_info *sta)
605{
606 struct iapp_layer2_update *msg;
607 struct sk_buff *skb;
608
609 /* Send Level 2 Update Frame to update forwarding tables in layer 2
610 * bridge devices */
611
612 skb = dev_alloc_skb(sizeof(*msg));
613 if (!skb)
614 return;
615 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
616
617 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
618 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
619
620 memset(msg->da, 0xff, ETH_ALEN);
Johannes Berg17741cd2008-09-11 00:02:02 +0200621 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100622 msg->len = htons(6);
623 msg->dsap = 0;
624 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
625 msg->control = 0xaf; /* XID response lsb.1111F101.
626 * F=0 (no poll command; unsolicited frame) */
627 msg->xid_info[0] = 0x81; /* XID format identifier */
628 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
629 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
630
Johannes Bergd0709a62008-02-25 16:27:46 +0100631 skb->dev = sta->sdata->dev;
632 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100633 memset(skb->cb, 0, sizeof(skb->cb));
634 netif_rx(skb);
635}
636
637static void sta_apply_parameters(struct ieee80211_local *local,
638 struct sta_info *sta,
639 struct station_parameters *params)
640{
641 u32 rates;
642 int i, j;
Johannes Berg8318d782008-01-24 19:38:38 +0100643 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100644 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300645 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100646
Johannes Bergae5eb022008-10-14 16:58:37 +0200647 sband = local->hw.wiphy->bands[local->oper_channel->band];
648
Johannes Bergeccb8e82009-05-11 21:57:56 +0300649 spin_lock_bh(&sta->lock);
650 mask = params->sta_flags_mask;
651 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100652
Johannes Bergeccb8e82009-05-11 21:57:56 +0300653 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100654 sta->flags &= ~WLAN_STA_AUTHORIZED;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300655 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Johannes Berg4fd69312007-12-19 02:03:35 +0100656 sta->flags |= WLAN_STA_AUTHORIZED;
Johannes Berg4fd69312007-12-19 02:03:35 +0100657 }
658
Johannes Bergeccb8e82009-05-11 21:57:56 +0300659 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
660 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
661 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
662 sta->flags |= WLAN_STA_SHORT_PREAMBLE;
663 }
664
665 if (mask & BIT(NL80211_STA_FLAG_WME)) {
666 sta->flags &= ~WLAN_STA_WME;
667 if (set & BIT(NL80211_STA_FLAG_WME))
668 sta->flags |= WLAN_STA_WME;
669 }
670
671 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
672 sta->flags &= ~WLAN_STA_MFP;
673 if (set & BIT(NL80211_STA_FLAG_MFP))
674 sta->flags |= WLAN_STA_MFP;
675 }
676 spin_unlock_bh(&sta->lock);
677
Johannes Berg73651ee2008-02-25 16:27:47 +0100678 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +0200679 * cfg80211 validates this (1-2007) and allows setting the AID
680 * only when creating a new station entry
681 */
682 if (params->aid)
683 sta->sta.aid = params->aid;
684
685 /*
Johannes Berg73651ee2008-02-25 16:27:47 +0100686 * FIXME: updating the following information is racy when this
687 * function is called from ieee80211_change_station().
688 * However, all this information should be static so
689 * maybe we should just reject attemps to change it.
690 */
691
Johannes Berg4fd69312007-12-19 02:03:35 +0100692 if (params->listen_interval >= 0)
693 sta->listen_interval = params->listen_interval;
694
695 if (params->supported_rates) {
696 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100697
Johannes Berg4fd69312007-12-19 02:03:35 +0100698 for (i = 0; i < params->supported_rates_len; i++) {
699 int rate = (params->supported_rates[i] & 0x7f) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +0100700 for (j = 0; j < sband->n_bitrates; j++) {
701 if (sband->bitrates[j].bitrate == rate)
Johannes Berg4fd69312007-12-19 02:03:35 +0100702 rates |= BIT(j);
703 }
704 }
Johannes Berg323ce792008-09-11 02:45:11 +0200705 sta->sta.supp_rates[local->oper_channel->band] = rates;
Johannes Berg4fd69312007-12-19 02:03:35 +0100706 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100707
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200708 if (params->ht_capa)
Johannes Bergae5eb022008-10-14 16:58:37 +0200709 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
710 params->ht_capa,
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200711 &sta->sta.ht_cap);
Jouni Malinen36aedc902008-08-25 11:58:58 +0300712
Johannes Berg902acc72008-02-23 15:17:19 +0100713 if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100714 switch (params->plink_action) {
715 case PLINK_ACTION_OPEN:
716 mesh_plink_open(sta);
717 break;
718 case PLINK_ACTION_BLOCK:
719 mesh_plink_block(sta);
720 break;
721 }
Johannes Berg902acc72008-02-23 15:17:19 +0100722 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100723}
724
725static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
726 u8 *mac, struct station_parameters *params)
727{
Johannes Berg14db74b2008-07-29 13:22:52 +0200728 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100729 struct sta_info *sta;
730 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +0100731 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200732 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +0100733
Johannes Berg4fd69312007-12-19 02:03:35 +0100734 if (params->vlan) {
735 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
736
Johannes Berg05c914f2008-09-11 00:01:58 +0200737 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
738 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +0100739 return -EINVAL;
740 } else
741 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
742
Johannes Berg47846c92009-11-25 17:46:19 +0100743 if (compare_ether_addr(mac, sdata->vif.addr) == 0)
Johannes Berg03e44972008-02-27 09:56:40 +0100744 return -EINVAL;
745
746 if (is_multicast_ether_addr(mac))
747 return -EINVAL;
748
749 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +0100750 if (!sta)
751 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +0100752
753 sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
754
755 sta_apply_parameters(local, sta, params);
756
Johannes Berg4b7679a2008-09-18 18:14:18 +0200757 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +0100758
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200759 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
760 sdata->vif.type == NL80211_IFTYPE_AP;
761
Johannes Berg34e89502010-02-03 13:59:58 +0100762 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100763 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +0100764 rcu_read_unlock();
765 return err;
766 }
767
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200768 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +0100769 ieee80211_send_layer2_update(sta);
770
771 rcu_read_unlock();
772
Johannes Berg4fd69312007-12-19 02:03:35 +0100773 return 0;
774}
775
776static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
777 u8 *mac)
778{
Johannes Berg14db74b2008-07-29 13:22:52 +0200779 struct ieee80211_local *local = wiphy_priv(wiphy);
780 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100781
Johannes Berg14db74b2008-07-29 13:22:52 +0200782 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
783
Johannes Berg34e89502010-02-03 13:59:58 +0100784 if (mac)
785 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200786
Johannes Berg34e89502010-02-03 13:59:58 +0100787 sta_info_flush(local, sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +0100788 return 0;
789}
790
791static int ieee80211_change_station(struct wiphy *wiphy,
792 struct net_device *dev,
793 u8 *mac,
794 struct station_parameters *params)
795{
Johannes Bergabe60632009-11-25 17:46:18 +0100796 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +0200797 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100798 struct sta_info *sta;
799 struct ieee80211_sub_if_data *vlansdata;
800
Johannes Berg98dd6a52008-04-10 15:36:09 +0200801 rcu_read_lock();
802
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100803 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200804 if (!sta) {
805 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100806 return -ENOENT;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200807 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100808
Johannes Bergd0709a62008-02-25 16:27:46 +0100809 if (params->vlan && params->vlan != sta->sdata->dev) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100810 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
811
Johannes Berg05c914f2008-09-11 00:01:58 +0200812 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
813 vlansdata->vif.type != NL80211_IFTYPE_AP) {
Johannes Berg98dd6a52008-04-10 15:36:09 +0200814 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100815 return -EINVAL;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200816 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100817
Johannes Berg9bc383d2009-11-19 11:55:19 +0100818 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +0100819 if (vlansdata->u.vlan.sta) {
820 rcu_read_unlock();
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100821 return -EBUSY;
Johannes Berg33054432009-11-20 10:09:14 +0100822 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100823
824 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
825 }
826
Johannes Berg14db74b2008-07-29 13:22:52 +0200827 sta->sdata = vlansdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100828 ieee80211_send_layer2_update(sta);
829 }
830
831 sta_apply_parameters(local, sta, params);
832
Johannes Berg98dd6a52008-04-10 15:36:09 +0200833 rcu_read_unlock();
834
Johannes Berg4fd69312007-12-19 02:03:35 +0100835 return 0;
836}
837
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100838#ifdef CONFIG_MAC80211_MESH
839static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
840 u8 *dst, u8 *next_hop)
841{
Johannes Berg14db74b2008-07-29 13:22:52 +0200842 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100843 struct mesh_path *mpath;
844 struct sta_info *sta;
845 int err;
846
Johannes Berg14db74b2008-07-29 13:22:52 +0200847 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
848
Johannes Bergd0709a62008-02-25 16:27:46 +0100849 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100850 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100851 if (!sta) {
852 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100853 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +0100854 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100855
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200856 err = mesh_path_add(dst, sdata);
Johannes Bergd0709a62008-02-25 16:27:46 +0100857 if (err) {
858 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100859 return err;
Johannes Bergd0709a62008-02-25 16:27:46 +0100860 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100861
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200862 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100863 if (!mpath) {
864 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100865 return -ENXIO;
866 }
867 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100868
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100869 rcu_read_unlock();
870 return 0;
871}
872
873static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
874 u8 *dst)
875{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200876 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100877
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200878 if (dst)
879 return mesh_path_del(dst, sdata);
880
881 mesh_path_flush(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100882 return 0;
883}
884
885static int ieee80211_change_mpath(struct wiphy *wiphy,
886 struct net_device *dev,
887 u8 *dst, u8 *next_hop)
888{
Johannes Berg14db74b2008-07-29 13:22:52 +0200889 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100890 struct mesh_path *mpath;
891 struct sta_info *sta;
892
Johannes Berg14db74b2008-07-29 13:22:52 +0200893 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
894
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100895 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +0100896
Johannes Bergabe60632009-11-25 17:46:18 +0100897 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100898 if (!sta) {
899 rcu_read_unlock();
900 return -ENOENT;
901 }
902
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200903 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100904 if (!mpath) {
905 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100906 return -ENOENT;
907 }
908
909 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100910
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100911 rcu_read_unlock();
912 return 0;
913}
914
915static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
916 struct mpath_info *pinfo)
917{
918 if (mpath->next_hop)
Johannes Berg17741cd2008-09-11 00:02:02 +0200919 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100920 else
921 memset(next_hop, 0, ETH_ALEN);
922
Johannes Bergf5ea9122009-08-07 16:17:38 +0200923 pinfo->generation = mesh_paths_generation;
924
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100925 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +0000926 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100927 MPATH_INFO_METRIC |
928 MPATH_INFO_EXPTIME |
929 MPATH_INFO_DISCOVERY_TIMEOUT |
930 MPATH_INFO_DISCOVERY_RETRIES |
931 MPATH_INFO_FLAGS;
932
933 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000934 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100935 pinfo->metric = mpath->metric;
936 if (time_before(jiffies, mpath->exp_time))
937 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
938 pinfo->discovery_timeout =
939 jiffies_to_msecs(mpath->discovery_timeout);
940 pinfo->discovery_retries = mpath->discovery_retries;
941 pinfo->flags = 0;
942 if (mpath->flags & MESH_PATH_ACTIVE)
943 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
944 if (mpath->flags & MESH_PATH_RESOLVING)
945 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000946 if (mpath->flags & MESH_PATH_SN_VALID)
947 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100948 if (mpath->flags & MESH_PATH_FIXED)
949 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
950 if (mpath->flags & MESH_PATH_RESOLVING)
951 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
952
953 pinfo->flags = mpath->flags;
954}
955
956static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
957 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
958
959{
Johannes Berg14db74b2008-07-29 13:22:52 +0200960 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100961 struct mesh_path *mpath;
962
Johannes Berg14db74b2008-07-29 13:22:52 +0200963 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
964
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100965 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200966 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100967 if (!mpath) {
968 rcu_read_unlock();
969 return -ENOENT;
970 }
971 memcpy(dst, mpath->dst, ETH_ALEN);
972 mpath_set_pinfo(mpath, next_hop, pinfo);
973 rcu_read_unlock();
974 return 0;
975}
976
977static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
978 int idx, u8 *dst, u8 *next_hop,
979 struct mpath_info *pinfo)
980{
Johannes Berg14db74b2008-07-29 13:22:52 +0200981 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100982 struct mesh_path *mpath;
983
Johannes Berg14db74b2008-07-29 13:22:52 +0200984 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
985
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100986 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200987 mpath = mesh_path_lookup_by_idx(idx, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100988 if (!mpath) {
989 rcu_read_unlock();
990 return -ENOENT;
991 }
992 memcpy(dst, mpath->dst, ETH_ALEN);
993 mpath_set_pinfo(mpath, next_hop, pinfo);
994 rcu_read_unlock();
995 return 0;
996}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700997
998static int ieee80211_get_mesh_params(struct wiphy *wiphy,
999 struct net_device *dev,
1000 struct mesh_config *conf)
1001{
1002 struct ieee80211_sub_if_data *sdata;
1003 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1004
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001005 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1006 return 0;
1007}
1008
1009static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1010{
1011 return (mask >> (parm-1)) & 0x1;
1012}
1013
1014static int ieee80211_set_mesh_params(struct wiphy *wiphy,
1015 struct net_device *dev,
1016 const struct mesh_config *nconf, u32 mask)
1017{
1018 struct mesh_config *conf;
1019 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001020 struct ieee80211_if_mesh *ifmsh;
1021
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001022 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001023 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001024
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001025 /* Set the config options which we are interested in setting */
1026 conf = &(sdata->u.mesh.mshcfg);
1027 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1028 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1029 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1030 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1031 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1032 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1033 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1034 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1035 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1036 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1037 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1038 conf->dot11MeshTTL = nconf->dot11MeshTTL;
1039 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
1040 conf->auto_open_plinks = nconf->auto_open_plinks;
1041 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1042 conf->dot11MeshHWMPmaxPREQretries =
1043 nconf->dot11MeshHWMPmaxPREQretries;
1044 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1045 conf->path_refresh_time = nconf->path_refresh_time;
1046 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1047 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1048 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1049 conf->dot11MeshHWMPactivePathTimeout =
1050 nconf->dot11MeshHWMPactivePathTimeout;
1051 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1052 conf->dot11MeshHWMPpreqMinInterval =
1053 nconf->dot11MeshHWMPpreqMinInterval;
1054 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1055 mask))
1056 conf->dot11MeshHWMPnetDiameterTraversalTime =
1057 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001058 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1059 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1060 ieee80211_mesh_root_setup(ifmsh);
1061 }
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001062 return 0;
1063}
1064
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001065#endif
1066
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001067static int ieee80211_change_bss(struct wiphy *wiphy,
1068 struct net_device *dev,
1069 struct bss_parameters *params)
1070{
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001071 struct ieee80211_sub_if_data *sdata;
1072 u32 changed = 0;
1073
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001074 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1075
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001076 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001077 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001078 changed |= BSS_CHANGED_ERP_CTS_PROT;
1079 }
1080 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001081 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001082 params->use_short_preamble;
1083 changed |= BSS_CHANGED_ERP_PREAMBLE;
1084 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001085
1086 if (!sdata->vif.bss_conf.use_short_slot &&
1087 sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
1088 sdata->vif.bss_conf.use_short_slot = true;
1089 changed |= BSS_CHANGED_ERP_SLOT;
1090 }
1091
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001092 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001093 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001094 params->use_short_slot_time;
1095 changed |= BSS_CHANGED_ERP_SLOT;
1096 }
1097
Jouni Malinen90c97a02008-10-30 16:59:22 +02001098 if (params->basic_rates) {
1099 int i, j;
1100 u32 rates = 0;
1101 struct ieee80211_local *local = wiphy_priv(wiphy);
1102 struct ieee80211_supported_band *sband =
1103 wiphy->bands[local->oper_channel->band];
1104
1105 for (i = 0; i < params->basic_rates_len; i++) {
1106 int rate = (params->basic_rates[i] & 0x7f) * 5;
1107 for (j = 0; j < sband->n_bitrates; j++) {
1108 if (sband->bitrates[j].bitrate == rate)
1109 rates |= BIT(j);
1110 }
1111 }
1112 sdata->vif.bss_conf.basic_rates = rates;
1113 changed |= BSS_CHANGED_BASIC_RATES;
1114 }
1115
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001116 if (params->ap_isolate >= 0) {
1117 if (params->ap_isolate)
1118 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1119 else
1120 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1121 }
1122
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001123 ieee80211_bss_info_change_notify(sdata, changed);
1124
1125 return 0;
1126}
1127
Jouni Malinen31888482008-10-30 16:59:24 +02001128static int ieee80211_set_txq_params(struct wiphy *wiphy,
1129 struct ieee80211_txq_params *params)
1130{
1131 struct ieee80211_local *local = wiphy_priv(wiphy);
1132 struct ieee80211_tx_queue_params p;
1133
1134 if (!local->ops->conf_tx)
1135 return -EOPNOTSUPP;
1136
1137 memset(&p, 0, sizeof(p));
1138 p.aifs = params->aifs;
1139 p.cw_max = params->cwmax;
1140 p.cw_min = params->cwmin;
1141 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001142
1143 /*
1144 * Setting tx queue params disables u-apsd because it's only
1145 * called in master mode.
1146 */
1147 p.uapsd = false;
1148
Johannes Berg24487982009-04-23 18:52:52 +02001149 if (drv_conf_tx(local, params->queue, &p)) {
Jouni Malinen31888482008-10-30 16:59:24 +02001150 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +02001151 "parameters for queue %d\n",
1152 wiphy_name(local->hw.wiphy), params->queue);
Jouni Malinen31888482008-10-30 16:59:24 +02001153 return -EINVAL;
1154 }
1155
Stanislaw Gruszka0af26b22010-03-29 12:18:36 +02001156 /* enable WMM or activate new settings */
1157 local->hw.conf.flags |= IEEE80211_CONF_QOS;
1158 drv_config(local, IEEE80211_CONF_CHANGE_QOS);
1159
Jouni Malinen31888482008-10-30 16:59:24 +02001160 return 0;
1161}
1162
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001163static int ieee80211_set_channel(struct wiphy *wiphy,
1164 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);
1168
1169 local->oper_channel = chan;
Sujith094d05d2008-12-12 11:57:43 +05301170 local->oper_channel_type = channel_type;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001171
1172 return ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
1173}
1174
Bob Copeland665af4f2009-01-19 11:20:53 -05001175#ifdef CONFIG_PM
1176static int ieee80211_suspend(struct wiphy *wiphy)
1177{
1178 return __ieee80211_suspend(wiphy_priv(wiphy));
1179}
1180
1181static int ieee80211_resume(struct wiphy *wiphy)
1182{
1183 return __ieee80211_resume(wiphy_priv(wiphy));
1184}
1185#else
1186#define ieee80211_suspend NULL
1187#define ieee80211_resume NULL
1188#endif
1189
Johannes Berg2a519312009-02-10 21:25:55 +01001190static int ieee80211_scan(struct wiphy *wiphy,
1191 struct net_device *dev,
1192 struct cfg80211_scan_request *req)
1193{
1194 struct ieee80211_sub_if_data *sdata;
1195
Johannes Berg2a519312009-02-10 21:25:55 +01001196 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1197
1198 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1199 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Jouni Malinen357303e2009-04-16 18:44:53 +03001200 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
1201 (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon))
Johannes Berg2a519312009-02-10 21:25:55 +01001202 return -EOPNOTSUPP;
1203
1204 return ieee80211_request_scan(sdata, req);
1205}
1206
Jouni Malinen636a5d32009-03-19 13:39:22 +02001207static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1208 struct cfg80211_auth_request *req)
1209{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001210 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001211}
1212
1213static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1214 struct cfg80211_assoc_request *req)
1215{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001216 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001217}
1218
1219static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +02001220 struct cfg80211_deauth_request *req,
1221 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001222{
Johannes Berg667503dd2009-07-07 03:56:11 +02001223 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1224 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001225}
1226
1227static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +02001228 struct cfg80211_disassoc_request *req,
1229 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001230{
Johannes Berg667503dd2009-07-07 03:56:11 +02001231 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1232 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001233}
1234
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001235static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1236 struct cfg80211_ibss_params *params)
1237{
1238 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1239
1240 return ieee80211_ibss_join(sdata, params);
1241}
1242
1243static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1244{
1245 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1246
1247 return ieee80211_ibss_leave(sdata);
1248}
1249
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001250static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1251{
1252 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001253 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001254
Lukáš Turek310bc672009-12-21 22:50:48 +01001255 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1256 err = drv_set_coverage_class(local, wiphy->coverage_class);
1257
1258 if (err)
1259 return err;
1260 }
1261
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001262 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001263 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001264
Johannes Berg24487982009-04-23 18:52:52 +02001265 if (err)
1266 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001267 }
1268
1269 if (changed & WIPHY_PARAM_RETRY_SHORT)
1270 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1271 if (changed & WIPHY_PARAM_RETRY_LONG)
1272 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1273 if (changed &
1274 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1275 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1276
1277 return 0;
1278}
1279
Johannes Berg7643a2c2009-06-02 13:01:39 +02001280static int ieee80211_set_tx_power(struct wiphy *wiphy,
1281 enum tx_power_setting type, int dbm)
1282{
1283 struct ieee80211_local *local = wiphy_priv(wiphy);
1284 struct ieee80211_channel *chan = local->hw.conf.channel;
1285 u32 changes = 0;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001286
1287 switch (type) {
1288 case TX_POWER_AUTOMATIC:
1289 local->user_power_level = -1;
1290 break;
1291 case TX_POWER_LIMITED:
1292 if (dbm < 0)
1293 return -EINVAL;
1294 local->user_power_level = dbm;
1295 break;
1296 case TX_POWER_FIXED:
1297 if (dbm < 0)
1298 return -EINVAL;
1299 /* TODO: move to cfg80211 when it knows the channel */
1300 if (dbm > chan->max_power)
1301 return -EINVAL;
1302 local->user_power_level = dbm;
1303 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001304 }
1305
1306 ieee80211_hw_config(local, changes);
1307
1308 return 0;
1309}
1310
1311static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1312{
1313 struct ieee80211_local *local = wiphy_priv(wiphy);
1314
1315 *dbm = local->hw.conf.power_level;
1316
Johannes Berg7643a2c2009-06-02 13:01:39 +02001317 return 0;
1318}
1319
Johannes Bergab737a42009-07-01 21:26:58 +02001320static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
1321 u8 *addr)
1322{
1323 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1324
1325 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
1326
1327 return 0;
1328}
1329
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001330static void ieee80211_rfkill_poll(struct wiphy *wiphy)
1331{
1332 struct ieee80211_local *local = wiphy_priv(wiphy);
1333
1334 drv_rfkill_poll(local);
1335}
1336
Johannes Bergaff89a92009-07-01 21:26:51 +02001337#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg99783e22009-07-07 03:54:43 +02001338static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001339{
1340 struct ieee80211_local *local = wiphy_priv(wiphy);
1341
1342 if (!local->ops->testmode_cmd)
1343 return -EOPNOTSUPP;
1344
1345 return local->ops->testmode_cmd(&local->hw, data, len);
1346}
1347#endif
1348
Johannes Berg0f782312009-12-01 13:37:02 +01001349int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
1350 enum ieee80211_smps_mode smps_mode)
1351{
1352 const u8 *ap;
1353 enum ieee80211_smps_mode old_req;
1354 int err;
1355
1356 old_req = sdata->u.mgd.req_smps;
1357 sdata->u.mgd.req_smps = smps_mode;
1358
1359 if (old_req == smps_mode &&
1360 smps_mode != IEEE80211_SMPS_AUTOMATIC)
1361 return 0;
1362
1363 /*
1364 * If not associated, or current association is not an HT
1365 * association, there's no need to send an action frame.
1366 */
1367 if (!sdata->u.mgd.associated ||
1368 sdata->local->oper_channel_type == NL80211_CHAN_NO_HT) {
1369 mutex_lock(&sdata->local->iflist_mtx);
1370 ieee80211_recalc_smps(sdata->local, sdata);
1371 mutex_unlock(&sdata->local->iflist_mtx);
1372 return 0;
1373 }
1374
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001375 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01001376
1377 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1378 if (sdata->u.mgd.powersave)
1379 smps_mode = IEEE80211_SMPS_DYNAMIC;
1380 else
1381 smps_mode = IEEE80211_SMPS_OFF;
1382 }
1383
1384 /* send SM PS frame to AP */
1385 err = ieee80211_send_smps_action(sdata, smps_mode,
1386 ap, ap);
1387 if (err)
1388 sdata->u.mgd.req_smps = old_req;
1389
1390 return err;
1391}
1392
Johannes Bergbc92afd2009-07-01 21:26:57 +02001393static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1394 bool enabled, int timeout)
1395{
1396 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1397 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1398 struct ieee80211_conf *conf = &local->hw.conf;
1399
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01001400 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1401 return -EOPNOTSUPP;
1402
Johannes Bergbc92afd2009-07-01 21:26:57 +02001403 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1404 return -EOPNOTSUPP;
1405
1406 if (enabled == sdata->u.mgd.powersave &&
1407 timeout == conf->dynamic_ps_timeout)
1408 return 0;
1409
1410 sdata->u.mgd.powersave = enabled;
1411 conf->dynamic_ps_timeout = timeout;
1412
Johannes Berg0f782312009-12-01 13:37:02 +01001413 /* no change, but if automatic follow powersave */
1414 mutex_lock(&sdata->u.mgd.mtx);
1415 __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
1416 mutex_unlock(&sdata->u.mgd.mtx);
1417
Johannes Bergbc92afd2009-07-01 21:26:57 +02001418 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
1419 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1420
1421 ieee80211_recalc_ps(local, -1);
1422
1423 return 0;
1424}
1425
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001426static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
1427 struct net_device *dev,
1428 s32 rssi_thold, u32 rssi_hyst)
1429{
1430 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1431 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1432 struct ieee80211_vif *vif = &sdata->vif;
1433 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1434
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001435 if (rssi_thold == bss_conf->cqm_rssi_thold &&
1436 rssi_hyst == bss_conf->cqm_rssi_hyst)
1437 return 0;
1438
1439 bss_conf->cqm_rssi_thold = rssi_thold;
1440 bss_conf->cqm_rssi_hyst = rssi_hyst;
1441
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001442 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1443 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1444 return -EOPNOTSUPP;
1445 return 0;
1446 }
1447
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001448 /* tell the driver upon association, unless already associated */
1449 if (sdata->u.mgd.associated)
1450 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
1451
1452 return 0;
1453}
1454
Johannes Berg99303802009-07-01 21:26:59 +02001455static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
1456 struct net_device *dev,
1457 const u8 *addr,
1458 const struct cfg80211_bitrate_mask *mask)
1459{
1460 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1461 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001462 int i;
Johannes Berg99303802009-07-01 21:26:59 +02001463
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001464 /*
1465 * This _could_ be supported by providing a hook for
1466 * drivers for this function, but at this point it
1467 * doesn't seem worth bothering.
1468 */
1469 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
1470 return -EOPNOTSUPP;
1471
Johannes Berg99303802009-07-01 21:26:59 +02001472
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001473 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1474 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Johannes Berg99303802009-07-01 21:26:59 +02001475
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001476 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02001477}
1478
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001479static int ieee80211_remain_on_channel(struct wiphy *wiphy,
1480 struct net_device *dev,
1481 struct ieee80211_channel *chan,
1482 enum nl80211_channel_type channel_type,
1483 unsigned int duration,
1484 u64 *cookie)
1485{
1486 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1487
1488 return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
1489 duration, cookie);
1490}
1491
1492static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
1493 struct net_device *dev,
1494 u64 cookie)
1495{
1496 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1497
1498 return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
1499}
1500
Jouni Malinen026331c2010-02-15 12:53:10 +02001501static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev,
1502 struct ieee80211_channel *chan,
1503 enum nl80211_channel_type channel_type,
1504 const u8 *buf, size_t len, u64 *cookie)
1505{
1506 return ieee80211_mgd_action(IEEE80211_DEV_TO_SUB_IF(dev), chan,
1507 channel_type, buf, len, cookie);
1508}
1509
Jiri Bencf0706e82007-05-05 11:45:53 -07001510struct cfg80211_ops mac80211_config_ops = {
1511 .add_virtual_intf = ieee80211_add_iface,
1512 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02001513 .change_virtual_intf = ieee80211_change_iface,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001514 .add_key = ieee80211_add_key,
1515 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01001516 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001517 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001518 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001519 .add_beacon = ieee80211_add_beacon,
1520 .set_beacon = ieee80211_set_beacon,
1521 .del_beacon = ieee80211_del_beacon,
Johannes Berg4fd69312007-12-19 02:03:35 +01001522 .add_station = ieee80211_add_station,
1523 .del_station = ieee80211_del_station,
1524 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01001525 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001526 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02001527 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001528#ifdef CONFIG_MAC80211_MESH
1529 .add_mpath = ieee80211_add_mpath,
1530 .del_mpath = ieee80211_del_mpath,
1531 .change_mpath = ieee80211_change_mpath,
1532 .get_mpath = ieee80211_get_mpath,
1533 .dump_mpath = ieee80211_dump_mpath,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001534 .set_mesh_params = ieee80211_set_mesh_params,
1535 .get_mesh_params = ieee80211_get_mesh_params,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001536#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001537 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02001538 .set_txq_params = ieee80211_set_txq_params,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001539 .set_channel = ieee80211_set_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05001540 .suspend = ieee80211_suspend,
1541 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01001542 .scan = ieee80211_scan,
Jouni Malinen636a5d32009-03-19 13:39:22 +02001543 .auth = ieee80211_auth,
1544 .assoc = ieee80211_assoc,
1545 .deauth = ieee80211_deauth,
1546 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001547 .join_ibss = ieee80211_join_ibss,
1548 .leave_ibss = ieee80211_leave_ibss,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001549 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02001550 .set_tx_power = ieee80211_set_tx_power,
1551 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02001552 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001553 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02001554 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001555 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02001556 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001557 .remain_on_channel = ieee80211_remain_on_channel,
1558 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Jouni Malinen026331c2010-02-15 12:53:10 +02001559 .action = ieee80211_action,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001560 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Jiri Bencf0706e82007-05-05 11:45:53 -07001561};