blob: 171e8ff8e028f73280de2b8c4a4981a767fd1433 [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
Jiri Bencf0706e822007-05-05 11:45:53 -070022static int ieee80211_add_iface(struct wiphy *wiphy, char *name,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010023 enum nl80211_iftype type, u32 *flags,
24 struct vif_params *params)
Jiri Bencf0706e822007-05-05 11:45:53 -070025{
26 struct ieee80211_local *local = wiphy_priv(wiphy);
Michael Wu8cc9a732008-01-31 19:48:23 +010027 struct net_device *dev;
28 struct ieee80211_sub_if_data *sdata;
29 int err;
Jiri Bencf0706e822007-05-05 11:45:53 -070030
Johannes Berg05c914f2008-09-11 00:01:58 +020031 err = ieee80211_if_add(local, name, &dev, type, params);
32 if (err || type != NL80211_IFTYPE_MONITOR || !flags)
Michael Wu8cc9a732008-01-31 19:48:23 +010033 return err;
34
35 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
36 sdata->u.mntr_flags = *flags;
37 return 0;
Jiri Bencf0706e822007-05-05 11:45:53 -070038}
39
Johannes Berg463d0182009-07-14 00:33:35 +020040static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev)
Jiri Bencf0706e822007-05-05 11:45:53 -070041{
Johannes Berg463d0182009-07-14 00:33:35 +020042 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
Jiri Bencf0706e822007-05-05 11:45:53 -070043
Johannes Berg75636522008-07-09 14:40:35 +020044 return 0;
Jiri Bencf0706e822007-05-05 11:45:53 -070045}
46
Johannes Berge36d56b2009-06-09 21:04:43 +020047static int ieee80211_change_iface(struct wiphy *wiphy,
48 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010049 enum nl80211_iftype type, u32 *flags,
50 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020051{
Johannes Berg9607e6b2009-12-23 13:15:31 +010052 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020053 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020054
Johannes Berg05c914f2008-09-11 00:01:58 +020055 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020056 if (ret)
57 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020058
Johannes Berg902acc72008-02-23 15:17:19 +010059 if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len)
Johannes Berg472dbc42008-09-11 00:01:49 +020060 ieee80211_sdata_set_mesh_id(sdata,
61 params->mesh_id_len,
62 params->mesh_id);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010063
Johannes Berg9bc383d2009-11-19 11:55:19 +010064 if (type == NL80211_IFTYPE_AP_VLAN &&
65 params && params->use_4addr == 0)
66 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
67 else if (type == NL80211_IFTYPE_STATION &&
68 params && params->use_4addr >= 0)
69 sdata->u.mgd.use_4addr = params->use_4addr;
70
Felix Fietkauf7917af2010-04-27 00:26:34 +020071 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags)
72 sdata->u.mntr_flags = *flags;
73
Johannes Berg42613db2007-09-28 21:52:27 +020074 return 0;
75}
76
Johannes Berge8cbb4c2007-12-19 02:03:30 +010077static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +020078 u8 key_idx, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +010079 struct key_params *params)
80{
Johannes Berg26a58452010-08-27 12:35:55 +020081 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +010082 struct sta_info *sta = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +010083 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +020084 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +010085
Johannes Berg26a58452010-08-27 12:35:55 +020086 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +020087 return -ENETDOWN;
88
Johannes Berg97359d12010-08-10 09:46:38 +020089 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +010090 switch (params->cipher) {
91 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +010092 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +020093 case WLAN_CIPHER_SUITE_WEP104:
94 if (IS_ERR(sdata->local->wep_tx_tfm))
95 return -EINVAL;
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +020096 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +010097 default:
Johannes Berg97359d12010-08-10 09:46:38 +020098 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +010099 }
100
Johannes Berg97359d12010-08-10 09:46:38 +0200101 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
102 params->key, params->seq_len, params->seq);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100103 if (IS_ERR(key))
104 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100105
Johannes Bergad0e2b52010-06-01 10:19:19 +0200106 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200107
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100108 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100109 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100110 if (!sta) {
Jouni Malinen32162a42010-07-26 15:52:03 -0700111 ieee80211_key_free(sdata->local, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200112 err = -ENOENT;
113 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100114 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100115 }
116
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300117 err = ieee80211_key_link(key, sdata, sta);
118 if (err)
119 ieee80211_key_free(sdata->local, key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100120
Johannes Berg3b967662008-04-08 17:56:52 +0200121 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200122 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200123
124 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100125}
126
127static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200128 u8 key_idx, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100129{
130 struct ieee80211_sub_if_data *sdata;
131 struct sta_info *sta;
132 int ret;
133
134 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
135
Johannes Bergad0e2b52010-06-01 10:19:19 +0200136 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200137
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100138 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200139 ret = -ENOENT;
140
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100141 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100142 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200143 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100144
Johannes Bergdb4d1162008-02-25 16:27:45 +0100145 if (sta->key) {
Jouni Malinen32162a42010-07-26 15:52:03 -0700146 ieee80211_key_free(sdata->local, sta->key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100147 WARN_ON(sta->key);
Johannes Berg3b967662008-04-08 17:56:52 +0200148 ret = 0;
149 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100150
Johannes Berg3b967662008-04-08 17:56:52 +0200151 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100152 }
153
Johannes Berg3b967662008-04-08 17:56:52 +0200154 if (!sdata->keys[key_idx]) {
155 ret = -ENOENT;
156 goto out_unlock;
157 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100158
Jouni Malinen32162a42010-07-26 15:52:03 -0700159 ieee80211_key_free(sdata->local, sdata->keys[key_idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100160 WARN_ON(sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100161
Johannes Berg3b967662008-04-08 17:56:52 +0200162 ret = 0;
163 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200164 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200165
166 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100167}
168
Johannes Berg62da92f2007-12-19 02:03:31 +0100169static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg4e943902009-05-09 20:06:47 +0200170 u8 key_idx, const u8 *mac_addr, void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100171 void (*callback)(void *cookie,
172 struct key_params *params))
173{
Johannes Berg14db74b2008-07-29 13:22:52 +0200174 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100175 struct sta_info *sta = NULL;
176 u8 seq[6] = {0};
177 struct key_params params;
178 struct ieee80211_key *key;
179 u32 iv32;
180 u16 iv16;
181 int err = -ENOENT;
182
Johannes Berg14db74b2008-07-29 13:22:52 +0200183 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
184
Johannes Berg3b967662008-04-08 17:56:52 +0200185 rcu_read_lock();
186
Johannes Berg62da92f2007-12-19 02:03:31 +0100187 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100188 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100189 if (!sta)
190 goto out;
191
192 key = sta->key;
193 } else
194 key = sdata->keys[key_idx];
195
196 if (!key)
197 goto out;
198
199 memset(&params, 0, sizeof(params));
200
Johannes Berg97359d12010-08-10 09:46:38 +0200201 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100202
Johannes Berg97359d12010-08-10 09:46:38 +0200203 switch (key->conf.cipher) {
204 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700205 iv32 = key->u.tkip.tx.iv32;
206 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100207
Johannes Berg24487982009-04-23 18:52:52 +0200208 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
209 drv_get_tkip_seq(sdata->local,
210 key->conf.hw_key_idx,
211 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100212
213 seq[0] = iv16 & 0xff;
214 seq[1] = (iv16 >> 8) & 0xff;
215 seq[2] = iv32 & 0xff;
216 seq[3] = (iv32 >> 8) & 0xff;
217 seq[4] = (iv32 >> 16) & 0xff;
218 seq[5] = (iv32 >> 24) & 0xff;
219 params.seq = seq;
220 params.seq_len = 6;
221 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200222 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg62da92f2007-12-19 02:03:31 +0100223 seq[0] = key->u.ccmp.tx_pn[5];
224 seq[1] = key->u.ccmp.tx_pn[4];
225 seq[2] = key->u.ccmp.tx_pn[3];
226 seq[3] = key->u.ccmp.tx_pn[2];
227 seq[4] = key->u.ccmp.tx_pn[1];
228 seq[5] = key->u.ccmp.tx_pn[0];
229 params.seq = seq;
230 params.seq_len = 6;
231 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200232 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200233 seq[0] = key->u.aes_cmac.tx_pn[5];
234 seq[1] = key->u.aes_cmac.tx_pn[4];
235 seq[2] = key->u.aes_cmac.tx_pn[3];
236 seq[3] = key->u.aes_cmac.tx_pn[2];
237 seq[4] = key->u.aes_cmac.tx_pn[1];
238 seq[5] = key->u.aes_cmac.tx_pn[0];
239 params.seq = seq;
240 params.seq_len = 6;
241 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100242 }
243
244 params.key = key->conf.key;
245 params.key_len = key->conf.keylen;
246
247 callback(cookie, &params);
248 err = 0;
249
250 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200251 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100252 return err;
253}
254
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100255static int ieee80211_config_default_key(struct wiphy *wiphy,
256 struct net_device *dev,
257 u8 key_idx)
258{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200259 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100260
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100261 ieee80211_set_default_key(sdata, key_idx);
262
263 return 0;
264}
265
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200266static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
267 struct net_device *dev,
268 u8 key_idx)
269{
Johannes Berg66c52422010-07-22 13:58:51 +0200270 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200271
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200272 ieee80211_set_default_mgmt_key(sdata, key_idx);
273
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200274 return 0;
275}
276
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100277static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
278{
Johannes Bergd0709a62008-02-25 16:27:46 +0100279 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100280
Johannes Bergf5ea9122009-08-07 16:17:38 +0200281 sinfo->generation = sdata->local->sta_generation;
282
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100283 sinfo->filled = STATION_INFO_INACTIVE_TIME |
284 STATION_INFO_RX_BYTES |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100285 STATION_INFO_TX_BYTES |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200286 STATION_INFO_RX_PACKETS |
287 STATION_INFO_TX_PACKETS |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100288 STATION_INFO_TX_BITRATE;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100289
290 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
291 sinfo->rx_bytes = sta->rx_bytes;
292 sinfo->tx_bytes = sta->tx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200293 sinfo->rx_packets = sta->rx_packets;
294 sinfo->tx_packets = sta->tx_packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100295
John W. Linville19deffb2009-12-08 17:10:13 -0500296 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
297 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Henning Rogge420e7fa2008-12-11 22:04:19 +0100298 sinfo->filled |= STATION_INFO_SIGNAL;
299 sinfo->signal = (s8)sta->last_signal;
300 }
301
302 sinfo->txrate.flags = 0;
303 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
304 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
305 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
306 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
307 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
308 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
309
310 if (!(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)) {
311 struct ieee80211_supported_band *sband;
312 sband = sta->local->hw.wiphy->bands[
313 sta->local->hw.conf.channel->band];
314 sinfo->txrate.legacy =
315 sband->bitrates[sta->last_tx_rate.idx].bitrate;
316 } else
317 sinfo->txrate.mcs = sta->last_tx_rate.idx;
318
Johannes Berg902acc72008-02-23 15:17:19 +0100319 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100320#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100321 sinfo->filled |= STATION_INFO_LLID |
322 STATION_INFO_PLID |
323 STATION_INFO_PLINK_STATE;
324
325 sinfo->llid = le16_to_cpu(sta->llid);
326 sinfo->plid = le16_to_cpu(sta->plid);
327 sinfo->plink_state = sta->plink_state;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100328#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100329 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100330}
331
332
333static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
334 int idx, u8 *mac, struct station_info *sinfo)
335{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100336 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100337 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100338 int ret = -ENOENT;
339
340 rcu_read_lock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100341
Johannes Berg3b53fde82009-11-16 12:00:37 +0100342 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100343 if (sta) {
344 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200345 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100346 sta_set_sinfo(sta, sinfo);
347 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100348
Johannes Bergd0709a62008-02-25 16:27:46 +0100349 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100350
Johannes Bergd0709a62008-02-25 16:27:46 +0100351 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100352}
353
Holger Schurig12897232010-04-19 10:23:57 +0200354static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
355 int idx, struct survey_info *survey)
356{
357 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
358
Holger Schurig12897232010-04-19 10:23:57 +0200359 return drv_get_survey(local, idx, survey);
360}
361
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100362static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100363 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100364{
Johannes Bergabe60632009-11-25 17:46:18 +0100365 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100366 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100367 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100368
Johannes Bergd0709a62008-02-25 16:27:46 +0100369 rcu_read_lock();
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100370
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100371 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100372 if (sta) {
373 ret = 0;
374 sta_set_sinfo(sta, sinfo);
375 }
376
377 rcu_read_unlock();
378
379 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100380}
381
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100382/*
383 * This handles both adding a beacon and setting new beacon info
384 */
385static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
386 struct beacon_parameters *params)
387{
388 struct beacon_data *new, *old;
389 int new_head_len, new_tail_len;
390 int size;
391 int err = -EINVAL;
392
393 old = sdata->u.ap.beacon;
394
395 /* head must not be zero-length */
396 if (params->head && !params->head_len)
397 return -EINVAL;
398
399 /*
400 * This is a kludge. beacon interval should really be part
401 * of the beacon information.
402 */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200403 if (params->interval &&
404 (sdata->vif.bss_conf.beacon_int != params->interval)) {
405 sdata->vif.bss_conf.beacon_int = params->interval;
406 ieee80211_bss_info_change_notify(sdata,
407 BSS_CHANGED_BEACON_INT);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100408 }
409
410 /* Need to have a beacon head if we don't have one yet */
411 if (!params->head && !old)
412 return err;
413
414 /* sorry, no way to start beaconing without dtim period */
415 if (!params->dtim_period && !old)
416 return err;
417
418 /* new or old head? */
419 if (params->head)
420 new_head_len = params->head_len;
421 else
422 new_head_len = old->head_len;
423
424 /* new or old tail? */
425 if (params->tail || !old)
426 /* params->tail_len will be zero for !params->tail */
427 new_tail_len = params->tail_len;
428 else
429 new_tail_len = old->tail_len;
430
431 size = sizeof(*new) + new_head_len + new_tail_len;
432
433 new = kzalloc(size, GFP_KERNEL);
434 if (!new)
435 return -ENOMEM;
436
437 /* start filling the new info now */
438
439 /* new or old dtim period? */
440 if (params->dtim_period)
441 new->dtim_period = params->dtim_period;
442 else
443 new->dtim_period = old->dtim_period;
444
445 /*
446 * pointers go into the block we allocated,
447 * memory is | beacon_data | head | tail |
448 */
449 new->head = ((u8 *) new) + sizeof(*new);
450 new->tail = new->head + new_head_len;
451 new->head_len = new_head_len;
452 new->tail_len = new_tail_len;
453
454 /* copy in head */
455 if (params->head)
456 memcpy(new->head, params->head, new_head_len);
457 else
458 memcpy(new->head, old->head, new_head_len);
459
460 /* copy in optional tail */
461 if (params->tail)
462 memcpy(new->tail, params->tail, new_tail_len);
463 else
464 if (old)
465 memcpy(new->tail, old->tail, new_tail_len);
466
Johannes Berg19885c42010-02-05 11:45:06 +0100467 sdata->vif.bss_conf.dtim_period = new->dtim_period;
468
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100469 rcu_assign_pointer(sdata->u.ap.beacon, new);
470
471 synchronize_rcu();
472
473 kfree(old);
474
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200475 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
476 BSS_CHANGED_BEACON);
477 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100478}
479
480static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
481 struct beacon_parameters *params)
482{
Johannes Berg14db74b2008-07-29 13:22:52 +0200483 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100484 struct beacon_data *old;
485
Johannes Berg14db74b2008-07-29 13:22:52 +0200486 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
487
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100488 old = sdata->u.ap.beacon;
489
490 if (old)
491 return -EALREADY;
492
493 return ieee80211_config_beacon(sdata, params);
494}
495
496static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
497 struct beacon_parameters *params)
498{
Johannes Berg14db74b2008-07-29 13:22:52 +0200499 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100500 struct beacon_data *old;
501
Johannes Berg14db74b2008-07-29 13:22:52 +0200502 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
503
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100504 old = sdata->u.ap.beacon;
505
506 if (!old)
507 return -ENOENT;
508
509 return ieee80211_config_beacon(sdata, params);
510}
511
512static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
513{
Johannes Berg14db74b2008-07-29 13:22:52 +0200514 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100515 struct beacon_data *old;
516
Johannes Berg14db74b2008-07-29 13:22:52 +0200517 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
518
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100519 old = sdata->u.ap.beacon;
520
521 if (!old)
522 return -ENOENT;
523
524 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
525 synchronize_rcu();
526 kfree(old);
527
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200528 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
529 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100530}
531
Johannes Berg4fd69312007-12-19 02:03:35 +0100532/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
533struct iapp_layer2_update {
534 u8 da[ETH_ALEN]; /* broadcast */
535 u8 sa[ETH_ALEN]; /* STA addr */
536 __be16 len; /* 6 */
537 u8 dsap; /* 0 */
538 u8 ssap; /* 0 */
539 u8 control;
540 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700541} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100542
543static void ieee80211_send_layer2_update(struct sta_info *sta)
544{
545 struct iapp_layer2_update *msg;
546 struct sk_buff *skb;
547
548 /* Send Level 2 Update Frame to update forwarding tables in layer 2
549 * bridge devices */
550
551 skb = dev_alloc_skb(sizeof(*msg));
552 if (!skb)
553 return;
554 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
555
556 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
557 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
558
559 memset(msg->da, 0xff, ETH_ALEN);
Johannes Berg17741cd2008-09-11 00:02:02 +0200560 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100561 msg->len = htons(6);
562 msg->dsap = 0;
563 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
564 msg->control = 0xaf; /* XID response lsb.1111F101.
565 * F=0 (no poll command; unsolicited frame) */
566 msg->xid_info[0] = 0x81; /* XID format identifier */
567 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
568 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
569
Johannes Bergd0709a62008-02-25 16:27:46 +0100570 skb->dev = sta->sdata->dev;
571 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100572 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -0400573 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +0100574}
575
576static void sta_apply_parameters(struct ieee80211_local *local,
577 struct sta_info *sta,
578 struct station_parameters *params)
579{
Johannes Bergf5521b12010-09-14 22:06:53 +0200580 unsigned long flags;
Johannes Berg4fd69312007-12-19 02:03:35 +0100581 u32 rates;
582 int i, j;
Johannes Berg8318d782008-01-24 19:38:38 +0100583 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100584 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300585 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100586
Johannes Bergae5eb022008-10-14 16:58:37 +0200587 sband = local->hw.wiphy->bands[local->oper_channel->band];
588
Johannes Bergf5521b12010-09-14 22:06:53 +0200589 spin_lock_irqsave(&sta->flaglock, flags);
Johannes Bergeccb8e82009-05-11 21:57:56 +0300590 mask = params->sta_flags_mask;
591 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100592
Johannes Bergeccb8e82009-05-11 21:57:56 +0300593 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100594 sta->flags &= ~WLAN_STA_AUTHORIZED;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300595 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Johannes Berg4fd69312007-12-19 02:03:35 +0100596 sta->flags |= WLAN_STA_AUTHORIZED;
Johannes Berg4fd69312007-12-19 02:03:35 +0100597 }
598
Johannes Bergeccb8e82009-05-11 21:57:56 +0300599 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
600 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
601 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
602 sta->flags |= WLAN_STA_SHORT_PREAMBLE;
603 }
604
605 if (mask & BIT(NL80211_STA_FLAG_WME)) {
606 sta->flags &= ~WLAN_STA_WME;
607 if (set & BIT(NL80211_STA_FLAG_WME))
608 sta->flags |= WLAN_STA_WME;
609 }
610
611 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
612 sta->flags &= ~WLAN_STA_MFP;
613 if (set & BIT(NL80211_STA_FLAG_MFP))
614 sta->flags |= WLAN_STA_MFP;
615 }
Johannes Bergf5521b12010-09-14 22:06:53 +0200616 spin_unlock_irqrestore(&sta->flaglock, flags);
Johannes Bergeccb8e82009-05-11 21:57:56 +0300617
Johannes Berg73651ee2008-02-25 16:27:47 +0100618 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +0200619 * cfg80211 validates this (1-2007) and allows setting the AID
620 * only when creating a new station entry
621 */
622 if (params->aid)
623 sta->sta.aid = params->aid;
624
625 /*
Johannes Berg73651ee2008-02-25 16:27:47 +0100626 * FIXME: updating the following information is racy when this
627 * function is called from ieee80211_change_station().
628 * However, all this information should be static so
629 * maybe we should just reject attemps to change it.
630 */
631
Johannes Berg4fd69312007-12-19 02:03:35 +0100632 if (params->listen_interval >= 0)
633 sta->listen_interval = params->listen_interval;
634
635 if (params->supported_rates) {
636 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100637
Johannes Berg4fd69312007-12-19 02:03:35 +0100638 for (i = 0; i < params->supported_rates_len; i++) {
639 int rate = (params->supported_rates[i] & 0x7f) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +0100640 for (j = 0; j < sband->n_bitrates; j++) {
641 if (sband->bitrates[j].bitrate == rate)
Johannes Berg4fd69312007-12-19 02:03:35 +0100642 rates |= BIT(j);
643 }
644 }
Johannes Berg323ce792008-09-11 02:45:11 +0200645 sta->sta.supp_rates[local->oper_channel->band] = rates;
Johannes Berg4fd69312007-12-19 02:03:35 +0100646 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100647
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200648 if (params->ht_capa)
Johannes Bergae5eb022008-10-14 16:58:37 +0200649 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
650 params->ht_capa,
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200651 &sta->sta.ht_cap);
Jouni Malinen36aedc92008-08-25 11:58:58 +0300652
Johannes Berg902acc72008-02-23 15:17:19 +0100653 if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100654 switch (params->plink_action) {
655 case PLINK_ACTION_OPEN:
656 mesh_plink_open(sta);
657 break;
658 case PLINK_ACTION_BLOCK:
659 mesh_plink_block(sta);
660 break;
661 }
Johannes Berg902acc72008-02-23 15:17:19 +0100662 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100663}
664
665static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
666 u8 *mac, struct station_parameters *params)
667{
Johannes Berg14db74b2008-07-29 13:22:52 +0200668 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100669 struct sta_info *sta;
670 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +0100671 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200672 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +0100673
Johannes Berg4fd69312007-12-19 02:03:35 +0100674 if (params->vlan) {
675 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
676
Johannes Berg05c914f2008-09-11 00:01:58 +0200677 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
678 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +0100679 return -EINVAL;
680 } else
681 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
682
Johannes Berg47846c92009-11-25 17:46:19 +0100683 if (compare_ether_addr(mac, sdata->vif.addr) == 0)
Johannes Berg03e44972008-02-27 09:56:40 +0100684 return -EINVAL;
685
686 if (is_multicast_ether_addr(mac))
687 return -EINVAL;
688
689 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +0100690 if (!sta)
691 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +0100692
693 sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
694
695 sta_apply_parameters(local, sta, params);
696
Johannes Berg4b7679a2008-09-18 18:14:18 +0200697 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +0100698
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200699 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
700 sdata->vif.type == NL80211_IFTYPE_AP;
701
Johannes Berg34e89502010-02-03 13:59:58 +0100702 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100703 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +0100704 rcu_read_unlock();
705 return err;
706 }
707
Jouni Malinenb8d476c2008-12-12 17:08:31 +0200708 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +0100709 ieee80211_send_layer2_update(sta);
710
711 rcu_read_unlock();
712
Johannes Berg4fd69312007-12-19 02:03:35 +0100713 return 0;
714}
715
716static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
717 u8 *mac)
718{
Johannes Berg14db74b2008-07-29 13:22:52 +0200719 struct ieee80211_local *local = wiphy_priv(wiphy);
720 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100721
Johannes Berg14db74b2008-07-29 13:22:52 +0200722 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
723
Johannes Berg34e89502010-02-03 13:59:58 +0100724 if (mac)
725 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200726
Johannes Berg34e89502010-02-03 13:59:58 +0100727 sta_info_flush(local, sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +0100728 return 0;
729}
730
731static int ieee80211_change_station(struct wiphy *wiphy,
732 struct net_device *dev,
733 u8 *mac,
734 struct station_parameters *params)
735{
Johannes Bergabe60632009-11-25 17:46:18 +0100736 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +0200737 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +0100738 struct sta_info *sta;
739 struct ieee80211_sub_if_data *vlansdata;
740
Johannes Berg98dd6a52008-04-10 15:36:09 +0200741 rcu_read_lock();
742
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100743 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +0200744 if (!sta) {
745 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100746 return -ENOENT;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200747 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100748
Johannes Bergd0709a62008-02-25 16:27:46 +0100749 if (params->vlan && params->vlan != sta->sdata->dev) {
Johannes Berg4fd69312007-12-19 02:03:35 +0100750 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
751
Johannes Berg05c914f2008-09-11 00:01:58 +0200752 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
753 vlansdata->vif.type != NL80211_IFTYPE_AP) {
Johannes Berg98dd6a52008-04-10 15:36:09 +0200754 rcu_read_unlock();
Johannes Berg4fd69312007-12-19 02:03:35 +0100755 return -EINVAL;
Johannes Berg98dd6a52008-04-10 15:36:09 +0200756 }
Johannes Berg4fd69312007-12-19 02:03:35 +0100757
Johannes Berg9bc383d2009-11-19 11:55:19 +0100758 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +0100759 if (vlansdata->u.vlan.sta) {
760 rcu_read_unlock();
Felix Fietkauf14543e2009-11-10 20:10:05 +0100761 return -EBUSY;
Johannes Berg33054432009-11-20 10:09:14 +0100762 }
Felix Fietkauf14543e2009-11-10 20:10:05 +0100763
764 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
765 }
766
Johannes Berg14db74b2008-07-29 13:22:52 +0200767 sta->sdata = vlansdata;
Johannes Berg4fd69312007-12-19 02:03:35 +0100768 ieee80211_send_layer2_update(sta);
769 }
770
771 sta_apply_parameters(local, sta, params);
772
Johannes Berg98dd6a52008-04-10 15:36:09 +0200773 rcu_read_unlock();
774
Johannes Berg4fd69312007-12-19 02:03:35 +0100775 return 0;
776}
777
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100778#ifdef CONFIG_MAC80211_MESH
779static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
780 u8 *dst, u8 *next_hop)
781{
Johannes Berg14db74b2008-07-29 13:22:52 +0200782 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100783 struct mesh_path *mpath;
784 struct sta_info *sta;
785 int err;
786
Johannes Berg14db74b2008-07-29 13:22:52 +0200787 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
788
Johannes Bergd0709a62008-02-25 16:27:46 +0100789 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100790 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100791 if (!sta) {
792 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100793 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +0100794 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100795
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200796 err = mesh_path_add(dst, sdata);
Johannes Bergd0709a62008-02-25 16:27:46 +0100797 if (err) {
798 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100799 return err;
Johannes Bergd0709a62008-02-25 16:27:46 +0100800 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100801
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200802 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100803 if (!mpath) {
804 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100805 return -ENXIO;
806 }
807 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100808
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100809 rcu_read_unlock();
810 return 0;
811}
812
813static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
814 u8 *dst)
815{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200816 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100817
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200818 if (dst)
819 return mesh_path_del(dst, sdata);
820
821 mesh_path_flush(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100822 return 0;
823}
824
825static int ieee80211_change_mpath(struct wiphy *wiphy,
826 struct net_device *dev,
827 u8 *dst, u8 *next_hop)
828{
Johannes Berg14db74b2008-07-29 13:22:52 +0200829 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100830 struct mesh_path *mpath;
831 struct sta_info *sta;
832
Johannes Berg14db74b2008-07-29 13:22:52 +0200833 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
834
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100835 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +0100836
Johannes Bergabe60632009-11-25 17:46:18 +0100837 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +0100838 if (!sta) {
839 rcu_read_unlock();
840 return -ENOENT;
841 }
842
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200843 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100844 if (!mpath) {
845 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100846 return -ENOENT;
847 }
848
849 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100850
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100851 rcu_read_unlock();
852 return 0;
853}
854
855static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
856 struct mpath_info *pinfo)
857{
858 if (mpath->next_hop)
Johannes Berg17741cd2008-09-11 00:02:02 +0200859 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100860 else
861 memset(next_hop, 0, ETH_ALEN);
862
Johannes Bergf5ea9122009-08-07 16:17:38 +0200863 pinfo->generation = mesh_paths_generation;
864
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100865 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +0000866 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100867 MPATH_INFO_METRIC |
868 MPATH_INFO_EXPTIME |
869 MPATH_INFO_DISCOVERY_TIMEOUT |
870 MPATH_INFO_DISCOVERY_RETRIES |
871 MPATH_INFO_FLAGS;
872
873 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000874 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100875 pinfo->metric = mpath->metric;
876 if (time_before(jiffies, mpath->exp_time))
877 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
878 pinfo->discovery_timeout =
879 jiffies_to_msecs(mpath->discovery_timeout);
880 pinfo->discovery_retries = mpath->discovery_retries;
881 pinfo->flags = 0;
882 if (mpath->flags & MESH_PATH_ACTIVE)
883 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
884 if (mpath->flags & MESH_PATH_RESOLVING)
885 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000886 if (mpath->flags & MESH_PATH_SN_VALID)
887 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100888 if (mpath->flags & MESH_PATH_FIXED)
889 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
890 if (mpath->flags & MESH_PATH_RESOLVING)
891 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
892
893 pinfo->flags = mpath->flags;
894}
895
896static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
897 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
898
899{
Johannes Berg14db74b2008-07-29 13:22:52 +0200900 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100901 struct mesh_path *mpath;
902
Johannes Berg14db74b2008-07-29 13:22:52 +0200903 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
904
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100905 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200906 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100907 if (!mpath) {
908 rcu_read_unlock();
909 return -ENOENT;
910 }
911 memcpy(dst, mpath->dst, ETH_ALEN);
912 mpath_set_pinfo(mpath, next_hop, pinfo);
913 rcu_read_unlock();
914 return 0;
915}
916
917static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
918 int idx, u8 *dst, u8 *next_hop,
919 struct mpath_info *pinfo)
920{
Johannes Berg14db74b2008-07-29 13:22:52 +0200921 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100922 struct mesh_path *mpath;
923
Johannes Berg14db74b2008-07-29 13:22:52 +0200924 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
925
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100926 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200927 mpath = mesh_path_lookup_by_idx(idx, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100928 if (!mpath) {
929 rcu_read_unlock();
930 return -ENOENT;
931 }
932 memcpy(dst, mpath->dst, ETH_ALEN);
933 mpath_set_pinfo(mpath, next_hop, pinfo);
934 rcu_read_unlock();
935 return 0;
936}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700937
938static int ieee80211_get_mesh_params(struct wiphy *wiphy,
939 struct net_device *dev,
940 struct mesh_config *conf)
941{
942 struct ieee80211_sub_if_data *sdata;
943 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
944
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700945 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
946 return 0;
947}
948
949static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
950{
951 return (mask >> (parm-1)) & 0x1;
952}
953
954static int ieee80211_set_mesh_params(struct wiphy *wiphy,
955 struct net_device *dev,
956 const struct mesh_config *nconf, u32 mask)
957{
958 struct mesh_config *conf;
959 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +0000960 struct ieee80211_if_mesh *ifmsh;
961
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700962 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +0000963 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700964
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700965 /* Set the config options which we are interested in setting */
966 conf = &(sdata->u.mesh.mshcfg);
967 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
968 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
969 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
970 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
971 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
972 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
973 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
974 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
975 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
976 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
977 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
978 conf->dot11MeshTTL = nconf->dot11MeshTTL;
979 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
980 conf->auto_open_plinks = nconf->auto_open_plinks;
981 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
982 conf->dot11MeshHWMPmaxPREQretries =
983 nconf->dot11MeshHWMPmaxPREQretries;
984 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
985 conf->path_refresh_time = nconf->path_refresh_time;
986 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
987 conf->min_discovery_timeout = nconf->min_discovery_timeout;
988 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
989 conf->dot11MeshHWMPactivePathTimeout =
990 nconf->dot11MeshHWMPactivePathTimeout;
991 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
992 conf->dot11MeshHWMPpreqMinInterval =
993 nconf->dot11MeshHWMPpreqMinInterval;
994 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
995 mask))
996 conf->dot11MeshHWMPnetDiameterTraversalTime =
997 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +0000998 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
999 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1000 ieee80211_mesh_root_setup(ifmsh);
1001 }
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001002 return 0;
1003}
1004
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001005#endif
1006
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001007static int ieee80211_change_bss(struct wiphy *wiphy,
1008 struct net_device *dev,
1009 struct bss_parameters *params)
1010{
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001011 struct ieee80211_sub_if_data *sdata;
1012 u32 changed = 0;
1013
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001014 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1015
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001016 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001017 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001018 changed |= BSS_CHANGED_ERP_CTS_PROT;
1019 }
1020 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001021 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001022 params->use_short_preamble;
1023 changed |= BSS_CHANGED_ERP_PREAMBLE;
1024 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001025
1026 if (!sdata->vif.bss_conf.use_short_slot &&
1027 sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
1028 sdata->vif.bss_conf.use_short_slot = true;
1029 changed |= BSS_CHANGED_ERP_SLOT;
1030 }
1031
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001032 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001033 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001034 params->use_short_slot_time;
1035 changed |= BSS_CHANGED_ERP_SLOT;
1036 }
1037
Jouni Malinen90c97a02008-10-30 16:59:22 +02001038 if (params->basic_rates) {
1039 int i, j;
1040 u32 rates = 0;
1041 struct ieee80211_local *local = wiphy_priv(wiphy);
1042 struct ieee80211_supported_band *sband =
1043 wiphy->bands[local->oper_channel->band];
1044
1045 for (i = 0; i < params->basic_rates_len; i++) {
1046 int rate = (params->basic_rates[i] & 0x7f) * 5;
1047 for (j = 0; j < sband->n_bitrates; j++) {
1048 if (sband->bitrates[j].bitrate == rate)
1049 rates |= BIT(j);
1050 }
1051 }
1052 sdata->vif.bss_conf.basic_rates = rates;
1053 changed |= BSS_CHANGED_BASIC_RATES;
1054 }
1055
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001056 if (params->ap_isolate >= 0) {
1057 if (params->ap_isolate)
1058 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1059 else
1060 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1061 }
1062
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001063 ieee80211_bss_info_change_notify(sdata, changed);
1064
1065 return 0;
1066}
1067
Jouni Malinen31888482008-10-30 16:59:24 +02001068static int ieee80211_set_txq_params(struct wiphy *wiphy,
1069 struct ieee80211_txq_params *params)
1070{
1071 struct ieee80211_local *local = wiphy_priv(wiphy);
1072 struct ieee80211_tx_queue_params p;
1073
1074 if (!local->ops->conf_tx)
1075 return -EOPNOTSUPP;
1076
1077 memset(&p, 0, sizeof(p));
1078 p.aifs = params->aifs;
1079 p.cw_max = params->cwmax;
1080 p.cw_min = params->cwmin;
1081 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001082
1083 /*
1084 * Setting tx queue params disables u-apsd because it's only
1085 * called in master mode.
1086 */
1087 p.uapsd = false;
1088
Johannes Berg24487982009-04-23 18:52:52 +02001089 if (drv_conf_tx(local, params->queue, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001090 wiphy_debug(local->hw.wiphy,
1091 "failed to set TX queue parameters for queue %d\n",
1092 params->queue);
Jouni Malinen31888482008-10-30 16:59:24 +02001093 return -EINVAL;
1094 }
1095
1096 return 0;
1097}
1098
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001099static int ieee80211_set_channel(struct wiphy *wiphy,
Johannes Bergf444de02010-05-05 15:25:02 +02001100 struct net_device *netdev,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001101 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +05301102 enum nl80211_channel_type channel_type)
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001103{
1104 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg0aaffa92010-05-05 15:28:27 +02001105 struct ieee80211_sub_if_data *sdata = NULL;
1106
1107 if (netdev)
1108 sdata = IEEE80211_DEV_TO_SUB_IF(netdev);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001109
Johannes Bergf444de02010-05-05 15:25:02 +02001110 switch (ieee80211_get_channel_mode(local, NULL)) {
1111 case CHAN_MODE_HOPPING:
1112 return -EBUSY;
1113 case CHAN_MODE_FIXED:
Johannes Berg0aaffa92010-05-05 15:28:27 +02001114 if (local->oper_channel != chan)
1115 return -EBUSY;
1116 if (!sdata && local->_oper_channel_type == channel_type)
Johannes Bergf444de02010-05-05 15:25:02 +02001117 return 0;
Johannes Berg0aaffa92010-05-05 15:28:27 +02001118 break;
Johannes Bergf444de02010-05-05 15:25:02 +02001119 case CHAN_MODE_UNDEFINED:
1120 break;
1121 }
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001122
1123 local->oper_channel = chan;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001124
Johannes Berg0aaffa92010-05-05 15:28:27 +02001125 if (!ieee80211_set_channel_type(local, sdata, channel_type))
1126 return -EBUSY;
1127
1128 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
1129 if (sdata && sdata->vif.type != NL80211_IFTYPE_MONITOR)
1130 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1131
1132 return 0;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001133}
1134
Bob Copeland665af4f2009-01-19 11:20:53 -05001135#ifdef CONFIG_PM
1136static int ieee80211_suspend(struct wiphy *wiphy)
1137{
1138 return __ieee80211_suspend(wiphy_priv(wiphy));
1139}
1140
1141static int ieee80211_resume(struct wiphy *wiphy)
1142{
1143 return __ieee80211_resume(wiphy_priv(wiphy));
1144}
1145#else
1146#define ieee80211_suspend NULL
1147#define ieee80211_resume NULL
1148#endif
1149
Johannes Berg2a519312009-02-10 21:25:55 +01001150static int ieee80211_scan(struct wiphy *wiphy,
1151 struct net_device *dev,
1152 struct cfg80211_scan_request *req)
1153{
1154 struct ieee80211_sub_if_data *sdata;
1155
Johannes Berg2a519312009-02-10 21:25:55 +01001156 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1157
1158 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1159 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Jouni Malinen357303e2009-04-16 18:44:53 +03001160 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
1161 (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon))
Johannes Berg2a519312009-02-10 21:25:55 +01001162 return -EOPNOTSUPP;
1163
1164 return ieee80211_request_scan(sdata, req);
1165}
1166
Jouni Malinen636a5d32009-03-19 13:39:22 +02001167static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1168 struct cfg80211_auth_request *req)
1169{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001170 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001171}
1172
1173static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1174 struct cfg80211_assoc_request *req)
1175{
Johannes Bergf444de02010-05-05 15:25:02 +02001176 struct ieee80211_local *local = wiphy_priv(wiphy);
1177 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1178
1179 switch (ieee80211_get_channel_mode(local, sdata)) {
1180 case CHAN_MODE_HOPPING:
1181 return -EBUSY;
1182 case CHAN_MODE_FIXED:
1183 if (local->oper_channel == req->bss->channel)
1184 break;
1185 return -EBUSY;
1186 case CHAN_MODE_UNDEFINED:
1187 break;
1188 }
1189
Johannes Berg77fdaa12009-07-07 03:45:17 +02001190 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001191}
1192
1193static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001194 struct cfg80211_deauth_request *req,
1195 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001196{
Johannes Berg667503d2009-07-07 03:56:11 +02001197 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1198 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001199}
1200
1201static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001202 struct cfg80211_disassoc_request *req,
1203 void *cookie)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001204{
Johannes Berg667503d2009-07-07 03:56:11 +02001205 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1206 req, cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001207}
1208
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001209static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1210 struct cfg80211_ibss_params *params)
1211{
Johannes Bergf444de02010-05-05 15:25:02 +02001212 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001213 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1214
Johannes Bergf444de02010-05-05 15:25:02 +02001215 switch (ieee80211_get_channel_mode(local, sdata)) {
1216 case CHAN_MODE_HOPPING:
1217 return -EBUSY;
1218 case CHAN_MODE_FIXED:
1219 if (!params->channel_fixed)
1220 return -EBUSY;
1221 if (local->oper_channel == params->channel)
1222 break;
1223 return -EBUSY;
1224 case CHAN_MODE_UNDEFINED:
1225 break;
1226 }
1227
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001228 return ieee80211_ibss_join(sdata, params);
1229}
1230
1231static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1232{
1233 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1234
1235 return ieee80211_ibss_leave(sdata);
1236}
1237
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001238static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1239{
1240 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001241 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001242
Lukáš Turek310bc672009-12-21 22:50:48 +01001243 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1244 err = drv_set_coverage_class(local, wiphy->coverage_class);
1245
1246 if (err)
1247 return err;
1248 }
1249
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001250 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001251 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001252
Johannes Berg24487982009-04-23 18:52:52 +02001253 if (err)
1254 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001255 }
1256
1257 if (changed & WIPHY_PARAM_RETRY_SHORT)
1258 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1259 if (changed & WIPHY_PARAM_RETRY_LONG)
1260 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1261 if (changed &
1262 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1263 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1264
1265 return 0;
1266}
1267
Johannes Berg7643a2c2009-06-02 13:01:39 +02001268static int ieee80211_set_tx_power(struct wiphy *wiphy,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001269 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02001270{
1271 struct ieee80211_local *local = wiphy_priv(wiphy);
1272 struct ieee80211_channel *chan = local->hw.conf.channel;
1273 u32 changes = 0;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001274
1275 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001276 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg7643a2c2009-06-02 13:01:39 +02001277 local->user_power_level = -1;
1278 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001279 case NL80211_TX_POWER_LIMITED:
1280 if (mbm < 0 || (mbm % 100))
1281 return -EOPNOTSUPP;
1282 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001283 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001284 case NL80211_TX_POWER_FIXED:
1285 if (mbm < 0 || (mbm % 100))
1286 return -EOPNOTSUPP;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001287 /* TODO: move to cfg80211 when it knows the channel */
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001288 if (MBM_TO_DBM(mbm) > chan->max_power)
Johannes Berg7643a2c2009-06-02 13:01:39 +02001289 return -EINVAL;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001290 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001291 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001292 }
1293
1294 ieee80211_hw_config(local, changes);
1295
1296 return 0;
1297}
1298
1299static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1300{
1301 struct ieee80211_local *local = wiphy_priv(wiphy);
1302
1303 *dbm = local->hw.conf.power_level;
1304
Johannes Berg7643a2c2009-06-02 13:01:39 +02001305 return 0;
1306}
1307
Johannes Bergab737a42009-07-01 21:26:58 +02001308static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
1309 u8 *addr)
1310{
1311 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1312
1313 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
1314
1315 return 0;
1316}
1317
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001318static void ieee80211_rfkill_poll(struct wiphy *wiphy)
1319{
1320 struct ieee80211_local *local = wiphy_priv(wiphy);
1321
1322 drv_rfkill_poll(local);
1323}
1324
Johannes Bergaff89a92009-07-01 21:26:51 +02001325#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg99783e22009-07-07 03:54:43 +02001326static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001327{
1328 struct ieee80211_local *local = wiphy_priv(wiphy);
1329
1330 if (!local->ops->testmode_cmd)
1331 return -EOPNOTSUPP;
1332
1333 return local->ops->testmode_cmd(&local->hw, data, len);
1334}
1335#endif
1336
Johannes Berg0f782312009-12-01 13:37:02 +01001337int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
1338 enum ieee80211_smps_mode smps_mode)
1339{
1340 const u8 *ap;
1341 enum ieee80211_smps_mode old_req;
1342 int err;
1343
1344 old_req = sdata->u.mgd.req_smps;
1345 sdata->u.mgd.req_smps = smps_mode;
1346
1347 if (old_req == smps_mode &&
1348 smps_mode != IEEE80211_SMPS_AUTOMATIC)
1349 return 0;
1350
1351 /*
1352 * If not associated, or current association is not an HT
1353 * association, there's no need to send an action frame.
1354 */
1355 if (!sdata->u.mgd.associated ||
Johannes Berg0aaffa92010-05-05 15:28:27 +02001356 sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) {
Johannes Berg0f782312009-12-01 13:37:02 +01001357 mutex_lock(&sdata->local->iflist_mtx);
1358 ieee80211_recalc_smps(sdata->local, sdata);
1359 mutex_unlock(&sdata->local->iflist_mtx);
1360 return 0;
1361 }
1362
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001363 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01001364
1365 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1366 if (sdata->u.mgd.powersave)
1367 smps_mode = IEEE80211_SMPS_DYNAMIC;
1368 else
1369 smps_mode = IEEE80211_SMPS_OFF;
1370 }
1371
1372 /* send SM PS frame to AP */
1373 err = ieee80211_send_smps_action(sdata, smps_mode,
1374 ap, ap);
1375 if (err)
1376 sdata->u.mgd.req_smps = old_req;
1377
1378 return err;
1379}
1380
Johannes Bergbc92afd2009-07-01 21:26:57 +02001381static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1382 bool enabled, int timeout)
1383{
1384 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1385 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02001386
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01001387 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1388 return -EOPNOTSUPP;
1389
Johannes Bergbc92afd2009-07-01 21:26:57 +02001390 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1391 return -EOPNOTSUPP;
1392
1393 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03001394 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001395 return 0;
1396
1397 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001398 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02001399
Johannes Berg0f782312009-12-01 13:37:02 +01001400 /* no change, but if automatic follow powersave */
1401 mutex_lock(&sdata->u.mgd.mtx);
1402 __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
1403 mutex_unlock(&sdata->u.mgd.mtx);
1404
Johannes Bergbc92afd2009-07-01 21:26:57 +02001405 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
1406 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1407
1408 ieee80211_recalc_ps(local, -1);
1409
1410 return 0;
1411}
1412
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001413static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
1414 struct net_device *dev,
1415 s32 rssi_thold, u32 rssi_hyst)
1416{
1417 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1418 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1419 struct ieee80211_vif *vif = &sdata->vif;
1420 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1421
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001422 if (rssi_thold == bss_conf->cqm_rssi_thold &&
1423 rssi_hyst == bss_conf->cqm_rssi_hyst)
1424 return 0;
1425
1426 bss_conf->cqm_rssi_thold = rssi_thold;
1427 bss_conf->cqm_rssi_hyst = rssi_hyst;
1428
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001429 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1430 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1431 return -EOPNOTSUPP;
1432 return 0;
1433 }
1434
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001435 /* tell the driver upon association, unless already associated */
1436 if (sdata->u.mgd.associated)
1437 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
1438
1439 return 0;
1440}
1441
Johannes Berg99303802009-07-01 21:26:59 +02001442static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
1443 struct net_device *dev,
1444 const u8 *addr,
1445 const struct cfg80211_bitrate_mask *mask)
1446{
1447 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1448 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001449 int i;
Johannes Berg99303802009-07-01 21:26:59 +02001450
Johannes Berg2c7e6bc2009-12-04 09:26:38 +01001451 /*
1452 * This _could_ be supported by providing a hook for
1453 * drivers for this function, but at this point it
1454 * doesn't seem worth bothering.
1455 */
1456 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
1457 return -EOPNOTSUPP;
1458
Johannes Berg99303802009-07-01 21:26:59 +02001459
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001460 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1461 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Johannes Berg99303802009-07-01 21:26:59 +02001462
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001463 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02001464}
1465
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001466static int ieee80211_remain_on_channel(struct wiphy *wiphy,
1467 struct net_device *dev,
1468 struct ieee80211_channel *chan,
1469 enum nl80211_channel_type channel_type,
1470 unsigned int duration,
1471 u64 *cookie)
1472{
1473 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1474
1475 return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
1476 duration, cookie);
1477}
1478
1479static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
1480 struct net_device *dev,
1481 u64 cookie)
1482{
1483 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1484
1485 return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
1486}
1487
Johannes Berg2e161f72010-08-12 15:38:38 +02001488static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct net_device *dev,
1489 struct ieee80211_channel *chan,
1490 enum nl80211_channel_type channel_type,
1491 bool channel_type_valid,
1492 const u8 *buf, size_t len, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02001493{
Johannes Berg9d38d852010-06-09 17:20:33 +02001494 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1495 struct ieee80211_local *local = sdata->local;
1496 struct sk_buff *skb;
1497 struct sta_info *sta;
1498 const struct ieee80211_mgmt *mgmt = (void *)buf;
1499 u32 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
1500 IEEE80211_TX_CTL_REQ_TX_STATUS;
1501
1502 /* Check that we are on the requested channel for transmission */
1503 if (chan != local->tmp_channel &&
1504 chan != local->oper_channel)
1505 return -EBUSY;
1506 if (channel_type_valid &&
1507 (channel_type != local->tmp_channel_type &&
1508 channel_type != local->_oper_channel_type))
1509 return -EBUSY;
1510
1511 switch (sdata->vif.type) {
1512 case NL80211_IFTYPE_ADHOC:
1513 if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC)
1514 break;
1515 rcu_read_lock();
1516 sta = sta_info_get(sdata, mgmt->da);
1517 rcu_read_unlock();
1518 if (!sta)
1519 return -ENOLINK;
1520 break;
1521 case NL80211_IFTYPE_STATION:
Johannes Berg9d38d852010-06-09 17:20:33 +02001522 break;
1523 default:
1524 return -EOPNOTSUPP;
1525 }
1526
1527 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
1528 if (!skb)
1529 return -ENOMEM;
1530 skb_reserve(skb, local->hw.extra_tx_headroom);
1531
1532 memcpy(skb_put(skb, len), buf, len);
1533
1534 IEEE80211_SKB_CB(skb)->flags = flags;
1535
1536 skb->dev = sdata->dev;
1537 ieee80211_tx_skb(sdata, skb);
1538
1539 *cookie = (unsigned long) skb;
1540 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02001541}
1542
Jiri Bencf0706e822007-05-05 11:45:53 -07001543struct cfg80211_ops mac80211_config_ops = {
1544 .add_virtual_intf = ieee80211_add_iface,
1545 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02001546 .change_virtual_intf = ieee80211_change_iface,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001547 .add_key = ieee80211_add_key,
1548 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01001549 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01001550 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +02001551 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001552 .add_beacon = ieee80211_add_beacon,
1553 .set_beacon = ieee80211_set_beacon,
1554 .del_beacon = ieee80211_del_beacon,
Johannes Berg4fd69312007-12-19 02:03:35 +01001555 .add_station = ieee80211_add_station,
1556 .del_station = ieee80211_del_station,
1557 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01001558 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001559 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02001560 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001561#ifdef CONFIG_MAC80211_MESH
1562 .add_mpath = ieee80211_add_mpath,
1563 .del_mpath = ieee80211_del_mpath,
1564 .change_mpath = ieee80211_change_mpath,
1565 .get_mpath = ieee80211_get_mpath,
1566 .dump_mpath = ieee80211_dump_mpath,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001567 .set_mesh_params = ieee80211_set_mesh_params,
1568 .get_mesh_params = ieee80211_get_mesh_params,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001569#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001570 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02001571 .set_txq_params = ieee80211_set_txq_params,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001572 .set_channel = ieee80211_set_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05001573 .suspend = ieee80211_suspend,
1574 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01001575 .scan = ieee80211_scan,
Jouni Malinen636a5d32009-03-19 13:39:22 +02001576 .auth = ieee80211_auth,
1577 .assoc = ieee80211_assoc,
1578 .deauth = ieee80211_deauth,
1579 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001580 .join_ibss = ieee80211_join_ibss,
1581 .leave_ibss = ieee80211_leave_ibss,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001582 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02001583 .set_tx_power = ieee80211_set_tx_power,
1584 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02001585 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001586 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02001587 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Johannes Bergbc92afd2009-07-01 21:26:57 +02001588 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02001589 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01001590 .remain_on_channel = ieee80211_remain_on_channel,
1591 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02001592 .mgmt_tx = ieee80211_mgmt_tx,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001593 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Jiri Bencf0706e822007-05-05 11:45:53 -07001594};