]>
Commit | Line | Data |
---|---|---|
f0706e82 JB |
1 | /* |
2 | * mac80211 configuration hooks for cfg80211 | |
3 | * | |
026331c4 | 4 | * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> |
f0706e82 JB |
5 | * |
6 | * This file is GPLv2 as found in COPYING. | |
7 | */ | |
8 | ||
e8cbb4cb | 9 | #include <linux/ieee80211.h> |
f0706e82 JB |
10 | #include <linux/nl80211.h> |
11 | #include <linux/rtnetlink.h> | |
881d966b | 12 | #include <net/net_namespace.h> |
5dfdaf58 | 13 | #include <linux/rcupdate.h> |
f0706e82 JB |
14 | #include <net/cfg80211.h> |
15 | #include "ieee80211_i.h" | |
24487981 | 16 | #include "driver-ops.h" |
e0eb6859 | 17 | #include "cfg.h" |
2c8dccc7 | 18 | #include "rate.h" |
c5dd9c2b | 19 | #include "mesh.h" |
c5dd9c2b | 20 | |
05c914fe | 21 | static bool nl80211_type_check(enum nl80211_iftype type) |
42613db7 JB |
22 | { |
23 | switch (type) { | |
42613db7 | 24 | case NL80211_IFTYPE_ADHOC: |
42613db7 | 25 | case NL80211_IFTYPE_STATION: |
42613db7 | 26 | case NL80211_IFTYPE_MONITOR: |
c5dd9c2b LCC |
27 | #ifdef CONFIG_MAC80211_MESH |
28 | case NL80211_IFTYPE_MESH_POINT: | |
c5dd9c2b | 29 | #endif |
fbf18927 JM |
30 | case NL80211_IFTYPE_AP: |
31 | case NL80211_IFTYPE_AP_VLAN: | |
b454048c | 32 | case NL80211_IFTYPE_WDS: |
05c914fe | 33 | return true; |
42613db7 | 34 | default: |
05c914fe | 35 | return false; |
42613db7 JB |
36 | } |
37 | } | |
38 | ||
f14543ee FF |
39 | static bool nl80211_params_check(enum nl80211_iftype type, |
40 | struct vif_params *params) | |
41 | { | |
42 | if (!nl80211_type_check(type)) | |
43 | return false; | |
44 | ||
f14543ee FF |
45 | return true; |
46 | } | |
47 | ||
f0706e82 | 48 | static int ieee80211_add_iface(struct wiphy *wiphy, char *name, |
2ec600d6 LCC |
49 | enum nl80211_iftype type, u32 *flags, |
50 | struct vif_params *params) | |
f0706e82 JB |
51 | { |
52 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
8cc9a739 MW |
53 | struct net_device *dev; |
54 | struct ieee80211_sub_if_data *sdata; | |
55 | int err; | |
f0706e82 | 56 | |
f14543ee | 57 | if (!nl80211_params_check(type, params)) |
f0706e82 | 58 | return -EINVAL; |
f0706e82 | 59 | |
05c914fe JB |
60 | err = ieee80211_if_add(local, name, &dev, type, params); |
61 | if (err || type != NL80211_IFTYPE_MONITOR || !flags) | |
8cc9a739 MW |
62 | return err; |
63 | ||
64 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
65 | sdata->u.mntr_flags = *flags; | |
66 | return 0; | |
f0706e82 JB |
67 | } |
68 | ||
463d0183 | 69 | static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev) |
f0706e82 | 70 | { |
463d0183 | 71 | ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev)); |
f0706e82 | 72 | |
75636525 | 73 | return 0; |
f0706e82 JB |
74 | } |
75 | ||
e36d56b6 JB |
76 | static int ieee80211_change_iface(struct wiphy *wiphy, |
77 | struct net_device *dev, | |
2ec600d6 LCC |
78 | enum nl80211_iftype type, u32 *flags, |
79 | struct vif_params *params) | |
42613db7 | 80 | { |
9607e6b6 | 81 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
f3947e2d | 82 | int ret; |
42613db7 | 83 | |
9607e6b6 | 84 | if (ieee80211_sdata_running(sdata)) |
c1f9a764 JB |
85 | return -EBUSY; |
86 | ||
f14543ee | 87 | if (!nl80211_params_check(type, params)) |
42613db7 JB |
88 | return -EINVAL; |
89 | ||
05c914fe | 90 | ret = ieee80211_if_change_type(sdata, type); |
f3947e2d JB |
91 | if (ret) |
92 | return ret; | |
42613db7 | 93 | |
902acc78 | 94 | if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len) |
472dbc45 JB |
95 | ieee80211_sdata_set_mesh_id(sdata, |
96 | params->mesh_id_len, | |
97 | params->mesh_id); | |
c5dd9c2b | 98 | |
9bc383de JB |
99 | 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 | ||
f7917af9 FF |
106 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) |
107 | sdata->u.mntr_flags = *flags; | |
108 | ||
42613db7 JB |
109 | return 0; |
110 | } | |
111 | ||
e8cbb4cb | 112 | static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev, |
4e943900 | 113 | u8 key_idx, const u8 *mac_addr, |
e8cbb4cb JB |
114 | struct key_params *params) |
115 | { | |
116 | struct ieee80211_sub_if_data *sdata; | |
117 | struct sta_info *sta = NULL; | |
118 | enum ieee80211_key_alg alg; | |
db4d1169 | 119 | struct ieee80211_key *key; |
3b96766f | 120 | int err; |
e8cbb4cb JB |
121 | |
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; | |
3cfcf6ac JM |
135 | case WLAN_CIPHER_SUITE_AES_CMAC: |
136 | alg = ALG_AES_CMAC; | |
137 | break; | |
e8cbb4cb JB |
138 | default: |
139 | return -EINVAL; | |
140 | } | |
141 | ||
faa8fdc8 JM |
142 | key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key, |
143 | params->seq_len, params->seq); | |
db4d1169 JB |
144 | if (!key) |
145 | return -ENOMEM; | |
146 | ||
3b96766f JB |
147 | rcu_read_lock(); |
148 | ||
e8cbb4cb | 149 | if (mac_addr) { |
0e5ded5a | 150 | sta = sta_info_get_bss(sdata, mac_addr); |
db4d1169 JB |
151 | if (!sta) { |
152 | ieee80211_key_free(key); | |
3b96766f JB |
153 | err = -ENOENT; |
154 | goto out_unlock; | |
db4d1169 | 155 | } |
e8cbb4cb JB |
156 | } |
157 | ||
db4d1169 JB |
158 | ieee80211_key_link(key, sdata, sta); |
159 | ||
3b96766f JB |
160 | err = 0; |
161 | out_unlock: | |
162 | rcu_read_unlock(); | |
163 | ||
164 | return err; | |
e8cbb4cb JB |
165 | } |
166 | ||
167 | static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev, | |
4e943900 | 168 | u8 key_idx, const u8 *mac_addr) |
e8cbb4cb JB |
169 | { |
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 | ||
3b96766f JB |
176 | rcu_read_lock(); |
177 | ||
e8cbb4cb | 178 | if (mac_addr) { |
3b96766f JB |
179 | ret = -ENOENT; |
180 | ||
0e5ded5a | 181 | sta = sta_info_get_bss(sdata, mac_addr); |
e8cbb4cb | 182 | if (!sta) |
3b96766f | 183 | goto out_unlock; |
e8cbb4cb | 184 | |
db4d1169 | 185 | if (sta->key) { |
d0709a65 | 186 | ieee80211_key_free(sta->key); |
db4d1169 | 187 | WARN_ON(sta->key); |
3b96766f JB |
188 | ret = 0; |
189 | } | |
e8cbb4cb | 190 | |
3b96766f | 191 | goto out_unlock; |
e8cbb4cb JB |
192 | } |
193 | ||
3b96766f JB |
194 | if (!sdata->keys[key_idx]) { |
195 | ret = -ENOENT; | |
196 | goto out_unlock; | |
197 | } | |
e8cbb4cb | 198 | |
d0709a65 | 199 | ieee80211_key_free(sdata->keys[key_idx]); |
db4d1169 | 200 | WARN_ON(sdata->keys[key_idx]); |
e8cbb4cb | 201 | |
3b96766f JB |
202 | ret = 0; |
203 | out_unlock: | |
204 | rcu_read_unlock(); | |
205 | ||
206 | return ret; | |
e8cbb4cb JB |
207 | } |
208 | ||
62da92fb | 209 | static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev, |
4e943900 | 210 | u8 key_idx, const u8 *mac_addr, void *cookie, |
62da92fb JB |
211 | void (*callback)(void *cookie, |
212 | struct key_params *params)) | |
213 | { | |
14db74bc | 214 | struct ieee80211_sub_if_data *sdata; |
62da92fb JB |
215 | 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 | ||
14db74bc JB |
223 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
224 | ||
3b96766f JB |
225 | rcu_read_lock(); |
226 | ||
62da92fb | 227 | if (mac_addr) { |
0e5ded5a | 228 | sta = sta_info_get_bss(sdata, mac_addr); |
62da92fb JB |
229 | 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(¶ms, 0, sizeof(params)); | |
240 | ||
241 | switch (key->conf.alg) { | |
242 | case ALG_TKIP: | |
243 | params.cipher = WLAN_CIPHER_SUITE_TKIP; | |
244 | ||
b0f76b33 HH |
245 | iv32 = key->u.tkip.tx.iv32; |
246 | iv16 = key->u.tkip.tx.iv16; | |
62da92fb | 247 | |
24487981 JB |
248 | if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) |
249 | drv_get_tkip_seq(sdata->local, | |
250 | key->conf.hw_key_idx, | |
251 | &iv32, &iv16); | |
62da92fb JB |
252 | |
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; | |
3cfcf6ac JM |
279 | 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; | |
62da92fb JB |
290 | } |
291 | ||
292 | params.key = key->conf.key; | |
293 | params.key_len = key->conf.keylen; | |
294 | ||
295 | callback(cookie, ¶ms); | |
296 | err = 0; | |
297 | ||
298 | out: | |
3b96766f | 299 | rcu_read_unlock(); |
62da92fb JB |
300 | return err; |
301 | } | |
302 | ||
e8cbb4cb JB |
303 | static 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 | ||
3b96766f JB |
309 | rcu_read_lock(); |
310 | ||
e8cbb4cb JB |
311 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
312 | ieee80211_set_default_key(sdata, key_idx); | |
313 | ||
3b96766f JB |
314 | rcu_read_unlock(); |
315 | ||
e8cbb4cb JB |
316 | return 0; |
317 | } | |
318 | ||
3cfcf6ac JM |
319 | static 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 | ||
c5dd9c2b LCC |
335 | static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo) |
336 | { | |
d0709a65 | 337 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
c5dd9c2b | 338 | |
f5ea9120 JB |
339 | sinfo->generation = sdata->local->sta_generation; |
340 | ||
c5dd9c2b LCC |
341 | sinfo->filled = STATION_INFO_INACTIVE_TIME | |
342 | STATION_INFO_RX_BYTES | | |
420e7fab | 343 | STATION_INFO_TX_BYTES | |
98c8a60a JM |
344 | STATION_INFO_RX_PACKETS | |
345 | STATION_INFO_TX_PACKETS | | |
420e7fab | 346 | STATION_INFO_TX_BITRATE; |
c5dd9c2b LCC |
347 | |
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; | |
98c8a60a JM |
351 | sinfo->rx_packets = sta->rx_packets; |
352 | sinfo->tx_packets = sta->tx_packets; | |
c5dd9c2b | 353 | |
19deffbe JL |
354 | if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) || |
355 | (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) { | |
420e7fab HR |
356 | 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 | ||
902acc78 | 377 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
c5dd9c2b | 378 | #ifdef CONFIG_MAC80211_MESH |
c5dd9c2b LCC |
379 | 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; | |
c5dd9c2b | 386 | #endif |
902acc78 | 387 | } |
c5dd9c2b LCC |
388 | } |
389 | ||
390 | ||
391 | static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev, | |
392 | int idx, u8 *mac, struct station_info *sinfo) | |
393 | { | |
3b53fde8 | 394 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
c5dd9c2b | 395 | struct sta_info *sta; |
d0709a65 JB |
396 | int ret = -ENOENT; |
397 | ||
398 | rcu_read_lock(); | |
c5dd9c2b | 399 | |
3b53fde8 | 400 | sta = sta_info_get_by_idx(sdata, idx); |
d0709a65 JB |
401 | if (sta) { |
402 | ret = 0; | |
17741cdc | 403 | memcpy(mac, sta->sta.addr, ETH_ALEN); |
d0709a65 JB |
404 | sta_set_sinfo(sta, sinfo); |
405 | } | |
c5dd9c2b | 406 | |
d0709a65 | 407 | rcu_read_unlock(); |
c5dd9c2b | 408 | |
d0709a65 | 409 | return ret; |
c5dd9c2b LCC |
410 | } |
411 | ||
1289723e HS |
412 | static 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 | ||
7bbdd2d9 | 423 | static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev, |
2ec600d6 | 424 | u8 *mac, struct station_info *sinfo) |
7bbdd2d9 | 425 | { |
abe60632 | 426 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
7bbdd2d9 | 427 | struct sta_info *sta; |
d0709a65 | 428 | int ret = -ENOENT; |
7bbdd2d9 | 429 | |
d0709a65 | 430 | rcu_read_lock(); |
7bbdd2d9 | 431 | |
0e5ded5a | 432 | sta = sta_info_get_bss(sdata, mac); |
d0709a65 JB |
433 | if (sta) { |
434 | ret = 0; | |
435 | sta_set_sinfo(sta, sinfo); | |
436 | } | |
437 | ||
438 | rcu_read_unlock(); | |
439 | ||
440 | return ret; | |
7bbdd2d9 JB |
441 | } |
442 | ||
5dfdaf58 JB |
443 | /* |
444 | * This handles both adding a beacon and setting new beacon info | |
445 | */ | |
446 | static 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 | */ | |
57c4d7b4 JB |
464 | 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); | |
5dfdaf58 JB |
469 | } |
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 | ||
19885c4f JB |
528 | sdata->vif.bss_conf.dtim_period = new->dtim_period; |
529 | ||
5dfdaf58 JB |
530 | rcu_assign_pointer(sdata->u.ap.beacon, new); |
531 | ||
532 | synchronize_rcu(); | |
533 | ||
534 | kfree(old); | |
535 | ||
2d0ddec5 JB |
536 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED | |
537 | BSS_CHANGED_BEACON); | |
538 | return 0; | |
5dfdaf58 JB |
539 | } |
540 | ||
541 | static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev, | |
542 | struct beacon_parameters *params) | |
543 | { | |
14db74bc | 544 | struct ieee80211_sub_if_data *sdata; |
5dfdaf58 JB |
545 | struct beacon_data *old; |
546 | ||
14db74bc JB |
547 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
548 | ||
5dfdaf58 JB |
549 | old = sdata->u.ap.beacon; |
550 | ||
551 | if (old) | |
552 | return -EALREADY; | |
553 | ||
554 | return ieee80211_config_beacon(sdata, params); | |
555 | } | |
556 | ||
557 | static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev, | |
558 | struct beacon_parameters *params) | |
559 | { | |
14db74bc | 560 | struct ieee80211_sub_if_data *sdata; |
5dfdaf58 JB |
561 | struct beacon_data *old; |
562 | ||
14db74bc JB |
563 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
564 | ||
5dfdaf58 JB |
565 | old = sdata->u.ap.beacon; |
566 | ||
567 | if (!old) | |
568 | return -ENOENT; | |
569 | ||
570 | return ieee80211_config_beacon(sdata, params); | |
571 | } | |
572 | ||
573 | static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev) | |
574 | { | |
14db74bc | 575 | struct ieee80211_sub_if_data *sdata; |
5dfdaf58 JB |
576 | struct beacon_data *old; |
577 | ||
14db74bc JB |
578 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
579 | ||
5dfdaf58 JB |
580 | 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 | ||
2d0ddec5 JB |
589 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED); |
590 | return 0; | |
5dfdaf58 JB |
591 | } |
592 | ||
4fd6931e JB |
593 | /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */ |
594 | struct 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 | ||
604 | static 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); | |
17741cdc | 621 | memcpy(msg->sa, sta->sta.addr, ETH_ALEN); |
4fd6931e JB |
622 | 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 | ||
d0709a65 JB |
631 | skb->dev = sta->sdata->dev; |
632 | skb->protocol = eth_type_trans(skb, sta->sdata->dev); | |
4fd6931e JB |
633 | memset(skb->cb, 0, sizeof(skb->cb)); |
634 | netif_rx(skb); | |
635 | } | |
636 | ||
637 | static 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; | |
8318d78a | 643 | struct ieee80211_supported_band *sband; |
d0709a65 | 644 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
eccb8e8f | 645 | u32 mask, set; |
4fd6931e | 646 | |
ae5eb026 JB |
647 | sband = local->hw.wiphy->bands[local->oper_channel->band]; |
648 | ||
eccb8e8f JB |
649 | spin_lock_bh(&sta->lock); |
650 | mask = params->sta_flags_mask; | |
651 | set = params->sta_flags_set; | |
73651ee6 | 652 | |
eccb8e8f | 653 | if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
4fd6931e | 654 | sta->flags &= ~WLAN_STA_AUTHORIZED; |
eccb8e8f | 655 | if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) |
4fd6931e | 656 | sta->flags |= WLAN_STA_AUTHORIZED; |
eccb8e8f | 657 | } |
4fd6931e | 658 | |
eccb8e8f | 659 | if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) { |
4fd6931e | 660 | sta->flags &= ~WLAN_STA_SHORT_PREAMBLE; |
eccb8e8f | 661 | if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) |
4fd6931e | 662 | sta->flags |= WLAN_STA_SHORT_PREAMBLE; |
eccb8e8f | 663 | } |
4fd6931e | 664 | |
eccb8e8f | 665 | if (mask & BIT(NL80211_STA_FLAG_WME)) { |
4fd6931e | 666 | sta->flags &= ~WLAN_STA_WME; |
eccb8e8f | 667 | if (set & BIT(NL80211_STA_FLAG_WME)) |
4fd6931e | 668 | sta->flags |= WLAN_STA_WME; |
eccb8e8f | 669 | } |
5394af4d | 670 | |
eccb8e8f | 671 | if (mask & BIT(NL80211_STA_FLAG_MFP)) { |
5394af4d | 672 | sta->flags &= ~WLAN_STA_MFP; |
eccb8e8f | 673 | if (set & BIT(NL80211_STA_FLAG_MFP)) |
5394af4d | 674 | sta->flags |= WLAN_STA_MFP; |
4fd6931e | 675 | } |
eccb8e8f | 676 | spin_unlock_bh(&sta->lock); |
4fd6931e | 677 | |
51b50fbe JB |
678 | /* |
679 | * 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 | ||
73651ee6 JB |
685 | /* |
686 | * 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 | ||
4fd6931e JB |
692 | if (params->listen_interval >= 0) |
693 | sta->listen_interval = params->listen_interval; | |
694 | ||
695 | if (params->supported_rates) { | |
696 | rates = 0; | |
8318d78a | 697 | |
4fd6931e JB |
698 | for (i = 0; i < params->supported_rates_len; i++) { |
699 | int rate = (params->supported_rates[i] & 0x7f) * 5; | |
8318d78a JB |
700 | for (j = 0; j < sband->n_bitrates; j++) { |
701 | if (sband->bitrates[j].bitrate == rate) | |
4fd6931e JB |
702 | rates |= BIT(j); |
703 | } | |
704 | } | |
323ce79a | 705 | sta->sta.supp_rates[local->oper_channel->band] = rates; |
4fd6931e | 706 | } |
c5dd9c2b | 707 | |
d9fe60de | 708 | if (params->ht_capa) |
ae5eb026 JB |
709 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
710 | params->ht_capa, | |
d9fe60de | 711 | &sta->sta.ht_cap); |
36aedc90 | 712 | |
902acc78 | 713 | if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) { |
c5dd9c2b LCC |
714 | 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 | } | |
902acc78 | 722 | } |
4fd6931e JB |
723 | } |
724 | ||
725 | static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev, | |
726 | u8 *mac, struct station_parameters *params) | |
727 | { | |
14db74bc | 728 | struct ieee80211_local *local = wiphy_priv(wiphy); |
4fd6931e JB |
729 | struct sta_info *sta; |
730 | struct ieee80211_sub_if_data *sdata; | |
73651ee6 | 731 | int err; |
b8d476c8 | 732 | int layer2_update; |
4fd6931e | 733 | |
4fd6931e JB |
734 | if (params->vlan) { |
735 | sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); | |
736 | ||
05c914fe JB |
737 | if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
738 | sdata->vif.type != NL80211_IFTYPE_AP) | |
4fd6931e JB |
739 | return -EINVAL; |
740 | } else | |
741 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
742 | ||
47846c9b | 743 | if (compare_ether_addr(mac, sdata->vif.addr) == 0) |
03e4497e JB |
744 | return -EINVAL; |
745 | ||
746 | if (is_multicast_ether_addr(mac)) | |
747 | return -EINVAL; | |
748 | ||
749 | sta = sta_info_alloc(sdata, mac, GFP_KERNEL); | |
73651ee6 JB |
750 | if (!sta) |
751 | return -ENOMEM; | |
4fd6931e JB |
752 | |
753 | sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC; | |
754 | ||
755 | sta_apply_parameters(local, sta, params); | |
756 | ||
4b7679a5 | 757 | rate_control_rate_init(sta); |
4fd6931e | 758 | |
b8d476c8 JM |
759 | layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN || |
760 | sdata->vif.type == NL80211_IFTYPE_AP; | |
761 | ||
34e89507 | 762 | err = sta_info_insert_rcu(sta); |
73651ee6 | 763 | if (err) { |
73651ee6 JB |
764 | rcu_read_unlock(); |
765 | return err; | |
766 | } | |
767 | ||
b8d476c8 | 768 | if (layer2_update) |
73651ee6 JB |
769 | ieee80211_send_layer2_update(sta); |
770 | ||
771 | rcu_read_unlock(); | |
772 | ||
4fd6931e JB |
773 | return 0; |
774 | } | |
775 | ||
776 | static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev, | |
777 | u8 *mac) | |
778 | { | |
14db74bc JB |
779 | struct ieee80211_local *local = wiphy_priv(wiphy); |
780 | struct ieee80211_sub_if_data *sdata; | |
4fd6931e | 781 | |
14db74bc JB |
782 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
783 | ||
34e89507 JB |
784 | if (mac) |
785 | return sta_info_destroy_addr_bss(sdata, mac); | |
4fd6931e | 786 | |
34e89507 | 787 | sta_info_flush(local, sdata); |
4fd6931e JB |
788 | return 0; |
789 | } | |
790 | ||
791 | static int ieee80211_change_station(struct wiphy *wiphy, | |
792 | struct net_device *dev, | |
793 | u8 *mac, | |
794 | struct station_parameters *params) | |
795 | { | |
abe60632 | 796 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
14db74bc | 797 | struct ieee80211_local *local = wiphy_priv(wiphy); |
4fd6931e JB |
798 | struct sta_info *sta; |
799 | struct ieee80211_sub_if_data *vlansdata; | |
800 | ||
98dd6a57 JB |
801 | rcu_read_lock(); |
802 | ||
0e5ded5a | 803 | sta = sta_info_get_bss(sdata, mac); |
98dd6a57 JB |
804 | if (!sta) { |
805 | rcu_read_unlock(); | |
4fd6931e | 806 | return -ENOENT; |
98dd6a57 | 807 | } |
4fd6931e | 808 | |
d0709a65 | 809 | if (params->vlan && params->vlan != sta->sdata->dev) { |
4fd6931e JB |
810 | vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
811 | ||
05c914fe JB |
812 | if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
813 | vlansdata->vif.type != NL80211_IFTYPE_AP) { | |
98dd6a57 | 814 | rcu_read_unlock(); |
4fd6931e | 815 | return -EINVAL; |
98dd6a57 | 816 | } |
4fd6931e | 817 | |
9bc383de | 818 | if (params->vlan->ieee80211_ptr->use_4addr) { |
3305443c JB |
819 | if (vlansdata->u.vlan.sta) { |
820 | rcu_read_unlock(); | |
f14543ee | 821 | return -EBUSY; |
3305443c | 822 | } |
f14543ee FF |
823 | |
824 | rcu_assign_pointer(vlansdata->u.vlan.sta, sta); | |
825 | } | |
826 | ||
14db74bc | 827 | sta->sdata = vlansdata; |
4fd6931e JB |
828 | ieee80211_send_layer2_update(sta); |
829 | } | |
830 | ||
831 | sta_apply_parameters(local, sta, params); | |
832 | ||
98dd6a57 JB |
833 | rcu_read_unlock(); |
834 | ||
4fd6931e JB |
835 | return 0; |
836 | } | |
837 | ||
c5dd9c2b LCC |
838 | #ifdef CONFIG_MAC80211_MESH |
839 | static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev, | |
840 | u8 *dst, u8 *next_hop) | |
841 | { | |
14db74bc | 842 | struct ieee80211_sub_if_data *sdata; |
c5dd9c2b LCC |
843 | struct mesh_path *mpath; |
844 | struct sta_info *sta; | |
845 | int err; | |
846 | ||
14db74bc JB |
847 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
848 | ||
d0709a65 | 849 | rcu_read_lock(); |
abe60632 | 850 | sta = sta_info_get(sdata, next_hop); |
d0709a65 JB |
851 | if (!sta) { |
852 | rcu_read_unlock(); | |
c5dd9c2b | 853 | return -ENOENT; |
d0709a65 | 854 | } |
c5dd9c2b | 855 | |
f698d856 | 856 | err = mesh_path_add(dst, sdata); |
d0709a65 JB |
857 | if (err) { |
858 | rcu_read_unlock(); | |
c5dd9c2b | 859 | return err; |
d0709a65 | 860 | } |
c5dd9c2b | 861 | |
f698d856 | 862 | mpath = mesh_path_lookup(dst, sdata); |
c5dd9c2b LCC |
863 | if (!mpath) { |
864 | rcu_read_unlock(); | |
c5dd9c2b LCC |
865 | return -ENXIO; |
866 | } | |
867 | mesh_path_fix_nexthop(mpath, sta); | |
d0709a65 | 868 | |
c5dd9c2b LCC |
869 | rcu_read_unlock(); |
870 | return 0; | |
871 | } | |
872 | ||
873 | static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev, | |
874 | u8 *dst) | |
875 | { | |
f698d856 JBG |
876 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
877 | ||
c5dd9c2b | 878 | if (dst) |
f698d856 | 879 | return mesh_path_del(dst, sdata); |
c5dd9c2b | 880 | |
f698d856 | 881 | mesh_path_flush(sdata); |
c5dd9c2b LCC |
882 | return 0; |
883 | } | |
884 | ||
885 | static int ieee80211_change_mpath(struct wiphy *wiphy, | |
886 | struct net_device *dev, | |
887 | u8 *dst, u8 *next_hop) | |
888 | { | |
14db74bc | 889 | struct ieee80211_sub_if_data *sdata; |
c5dd9c2b LCC |
890 | struct mesh_path *mpath; |
891 | struct sta_info *sta; | |
892 | ||
14db74bc JB |
893 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
894 | ||
d0709a65 JB |
895 | rcu_read_lock(); |
896 | ||
abe60632 | 897 | sta = sta_info_get(sdata, next_hop); |
d0709a65 JB |
898 | if (!sta) { |
899 | rcu_read_unlock(); | |
c5dd9c2b | 900 | return -ENOENT; |
d0709a65 | 901 | } |
c5dd9c2b | 902 | |
f698d856 | 903 | mpath = mesh_path_lookup(dst, sdata); |
c5dd9c2b LCC |
904 | if (!mpath) { |
905 | rcu_read_unlock(); | |
c5dd9c2b LCC |
906 | return -ENOENT; |
907 | } | |
908 | ||
909 | mesh_path_fix_nexthop(mpath, sta); | |
d0709a65 | 910 | |
c5dd9c2b LCC |
911 | rcu_read_unlock(); |
912 | return 0; | |
913 | } | |
914 | ||
915 | static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop, | |
916 | struct mpath_info *pinfo) | |
917 | { | |
918 | if (mpath->next_hop) | |
17741cdc | 919 | memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN); |
c5dd9c2b LCC |
920 | else |
921 | memset(next_hop, 0, ETH_ALEN); | |
922 | ||
f5ea9120 JB |
923 | pinfo->generation = mesh_paths_generation; |
924 | ||
c5dd9c2b | 925 | pinfo->filled = MPATH_INFO_FRAME_QLEN | |
d19b3bf6 | 926 | MPATH_INFO_SN | |
c5dd9c2b LCC |
927 | 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; | |
d19b3bf6 | 934 | pinfo->sn = mpath->sn; |
c5dd9c2b LCC |
935 | 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; | |
d19b3bf6 RP |
946 | if (mpath->flags & MESH_PATH_SN_VALID) |
947 | pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID; | |
c5dd9c2b LCC |
948 | 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 | ||
956 | static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev, | |
957 | u8 *dst, u8 *next_hop, struct mpath_info *pinfo) | |
958 | ||
959 | { | |
14db74bc | 960 | struct ieee80211_sub_if_data *sdata; |
c5dd9c2b LCC |
961 | struct mesh_path *mpath; |
962 | ||
14db74bc JB |
963 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
964 | ||
c5dd9c2b | 965 | rcu_read_lock(); |
f698d856 | 966 | mpath = mesh_path_lookup(dst, sdata); |
c5dd9c2b LCC |
967 | 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 | ||
977 | static 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 | { | |
14db74bc | 981 | struct ieee80211_sub_if_data *sdata; |
c5dd9c2b LCC |
982 | struct mesh_path *mpath; |
983 | ||
14db74bc JB |
984 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
985 | ||
c5dd9c2b | 986 | rcu_read_lock(); |
f698d856 | 987 | mpath = mesh_path_lookup_by_idx(idx, sdata); |
c5dd9c2b LCC |
988 | 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 | } | |
93da9cc1 | 997 | |
998 | static 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 | ||
93da9cc1 | 1005 | memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config)); |
1006 | return 0; | |
1007 | } | |
1008 | ||
1009 | static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask) | |
1010 | { | |
1011 | return (mask >> (parm-1)) & 0x1; | |
1012 | } | |
1013 | ||
1014 | static 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; | |
63c5723b RP |
1020 | struct ieee80211_if_mesh *ifmsh; |
1021 | ||
93da9cc1 | 1022 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
63c5723b | 1023 | ifmsh = &sdata->u.mesh; |
93da9cc1 | 1024 | |
93da9cc1 | 1025 | /* 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; | |
63c5723b RP |
1058 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) { |
1059 | conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode; | |
1060 | ieee80211_mesh_root_setup(ifmsh); | |
1061 | } | |
93da9cc1 | 1062 | return 0; |
1063 | } | |
1064 | ||
c5dd9c2b LCC |
1065 | #endif |
1066 | ||
9f1ba906 JM |
1067 | static int ieee80211_change_bss(struct wiphy *wiphy, |
1068 | struct net_device *dev, | |
1069 | struct bss_parameters *params) | |
1070 | { | |
9f1ba906 JM |
1071 | struct ieee80211_sub_if_data *sdata; |
1072 | u32 changed = 0; | |
1073 | ||
9f1ba906 JM |
1074 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
1075 | ||
9f1ba906 | 1076 | if (params->use_cts_prot >= 0) { |
bda3933a | 1077 | sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot; |
9f1ba906 JM |
1078 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
1079 | } | |
1080 | if (params->use_short_preamble >= 0) { | |
bda3933a | 1081 | sdata->vif.bss_conf.use_short_preamble = |
9f1ba906 JM |
1082 | params->use_short_preamble; |
1083 | changed |= BSS_CHANGED_ERP_PREAMBLE; | |
1084 | } | |
43d35343 FF |
1085 | |
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 | ||
9f1ba906 | 1092 | if (params->use_short_slot_time >= 0) { |
bda3933a | 1093 | sdata->vif.bss_conf.use_short_slot = |
9f1ba906 JM |
1094 | params->use_short_slot_time; |
1095 | changed |= BSS_CHANGED_ERP_SLOT; | |
1096 | } | |
1097 | ||
90c97a04 JM |
1098 | 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 | ||
7b7b5e56 FF |
1116 | 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 | ||
9f1ba906 JM |
1123 | ieee80211_bss_info_change_notify(sdata, changed); |
1124 | ||
1125 | return 0; | |
1126 | } | |
1127 | ||
31888487 JM |
1128 | static 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; | |
ab13315a KV |
1142 | |
1143 | /* | |
1144 | * Setting tx queue params disables u-apsd because it's only | |
1145 | * called in master mode. | |
1146 | */ | |
1147 | p.uapsd = false; | |
1148 | ||
24487981 | 1149 | if (drv_conf_tx(local, params->queue, &p)) { |
31888487 | 1150 | printk(KERN_DEBUG "%s: failed to set TX queue " |
0bffe40f JB |
1151 | "parameters for queue %d\n", |
1152 | wiphy_name(local->hw.wiphy), params->queue); | |
31888487 JM |
1153 | return -EINVAL; |
1154 | } | |
1155 | ||
0af26b27 SG |
1156 | /* enable WMM or activate new settings */ |
1157 | local->hw.conf.flags |= IEEE80211_CONF_QOS; | |
1158 | drv_config(local, IEEE80211_CONF_CHANGE_QOS); | |
1159 | ||
31888487 JM |
1160 | return 0; |
1161 | } | |
1162 | ||
72bdcf34 | 1163 | static int ieee80211_set_channel(struct wiphy *wiphy, |
f444de05 | 1164 | struct net_device *netdev, |
72bdcf34 | 1165 | struct ieee80211_channel *chan, |
094d05dc | 1166 | enum nl80211_channel_type channel_type) |
72bdcf34 JM |
1167 | { |
1168 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
0aaffa9b JB |
1169 | struct ieee80211_sub_if_data *sdata = NULL; |
1170 | ||
1171 | if (netdev) | |
1172 | sdata = IEEE80211_DEV_TO_SUB_IF(netdev); | |
72bdcf34 | 1173 | |
f444de05 JB |
1174 | switch (ieee80211_get_channel_mode(local, NULL)) { |
1175 | case CHAN_MODE_HOPPING: | |
1176 | return -EBUSY; | |
1177 | case CHAN_MODE_FIXED: | |
0aaffa9b JB |
1178 | if (local->oper_channel != chan) |
1179 | return -EBUSY; | |
1180 | if (!sdata && local->_oper_channel_type == channel_type) | |
f444de05 | 1181 | return 0; |
0aaffa9b | 1182 | break; |
f444de05 JB |
1183 | case CHAN_MODE_UNDEFINED: |
1184 | break; | |
1185 | } | |
1186 | ||
72bdcf34 | 1187 | local->oper_channel = chan; |
72bdcf34 | 1188 | |
0aaffa9b JB |
1189 | if (!ieee80211_set_channel_type(local, sdata, channel_type)) |
1190 | return -EBUSY; | |
1191 | ||
1192 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL); | |
1193 | if (sdata && sdata->vif.type != NL80211_IFTYPE_MONITOR) | |
1194 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT); | |
1195 | ||
1196 | return 0; | |
72bdcf34 JM |
1197 | } |
1198 | ||
665af4fc BC |
1199 | #ifdef CONFIG_PM |
1200 | static int ieee80211_suspend(struct wiphy *wiphy) | |
1201 | { | |
1202 | return __ieee80211_suspend(wiphy_priv(wiphy)); | |
1203 | } | |
1204 | ||
1205 | static int ieee80211_resume(struct wiphy *wiphy) | |
1206 | { | |
1207 | return __ieee80211_resume(wiphy_priv(wiphy)); | |
1208 | } | |
1209 | #else | |
1210 | #define ieee80211_suspend NULL | |
1211 | #define ieee80211_resume NULL | |
1212 | #endif | |
1213 | ||
2a519311 JB |
1214 | static int ieee80211_scan(struct wiphy *wiphy, |
1215 | struct net_device *dev, | |
1216 | struct cfg80211_scan_request *req) | |
1217 | { | |
1218 | struct ieee80211_sub_if_data *sdata; | |
1219 | ||
2a519311 JB |
1220 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
1221 | ||
1222 | if (sdata->vif.type != NL80211_IFTYPE_STATION && | |
1223 | sdata->vif.type != NL80211_IFTYPE_ADHOC && | |
357303e2 JM |
1224 | sdata->vif.type != NL80211_IFTYPE_MESH_POINT && |
1225 | (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon)) | |
2a519311 JB |
1226 | return -EOPNOTSUPP; |
1227 | ||
1228 | return ieee80211_request_scan(sdata, req); | |
1229 | } | |
1230 | ||
636a5d36 JM |
1231 | static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev, |
1232 | struct cfg80211_auth_request *req) | |
1233 | { | |
77fdaa12 | 1234 | return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req); |
636a5d36 JM |
1235 | } |
1236 | ||
1237 | static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev, | |
1238 | struct cfg80211_assoc_request *req) | |
1239 | { | |
f444de05 JB |
1240 | struct ieee80211_local *local = wiphy_priv(wiphy); |
1241 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1242 | ||
1243 | switch (ieee80211_get_channel_mode(local, sdata)) { | |
1244 | case CHAN_MODE_HOPPING: | |
1245 | return -EBUSY; | |
1246 | case CHAN_MODE_FIXED: | |
1247 | if (local->oper_channel == req->bss->channel) | |
1248 | break; | |
1249 | return -EBUSY; | |
1250 | case CHAN_MODE_UNDEFINED: | |
1251 | break; | |
1252 | } | |
1253 | ||
77fdaa12 | 1254 | return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req); |
636a5d36 JM |
1255 | } |
1256 | ||
1257 | static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev, | |
667503dd JB |
1258 | struct cfg80211_deauth_request *req, |
1259 | void *cookie) | |
636a5d36 | 1260 | { |
667503dd JB |
1261 | return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), |
1262 | req, cookie); | |
636a5d36 JM |
1263 | } |
1264 | ||
1265 | static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev, | |
667503dd JB |
1266 | struct cfg80211_disassoc_request *req, |
1267 | void *cookie) | |
636a5d36 | 1268 | { |
667503dd JB |
1269 | return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), |
1270 | req, cookie); | |
636a5d36 JM |
1271 | } |
1272 | ||
af8cdcd8 JB |
1273 | static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, |
1274 | struct cfg80211_ibss_params *params) | |
1275 | { | |
f444de05 | 1276 | struct ieee80211_local *local = wiphy_priv(wiphy); |
af8cdcd8 JB |
1277 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
1278 | ||
f444de05 JB |
1279 | switch (ieee80211_get_channel_mode(local, sdata)) { |
1280 | case CHAN_MODE_HOPPING: | |
1281 | return -EBUSY; | |
1282 | case CHAN_MODE_FIXED: | |
1283 | if (!params->channel_fixed) | |
1284 | return -EBUSY; | |
1285 | if (local->oper_channel == params->channel) | |
1286 | break; | |
1287 | return -EBUSY; | |
1288 | case CHAN_MODE_UNDEFINED: | |
1289 | break; | |
1290 | } | |
1291 | ||
af8cdcd8 JB |
1292 | return ieee80211_ibss_join(sdata, params); |
1293 | } | |
1294 | ||
1295 | static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev) | |
1296 | { | |
1297 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1298 | ||
1299 | return ieee80211_ibss_leave(sdata); | |
1300 | } | |
1301 | ||
b9a5f8ca JM |
1302 | static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed) |
1303 | { | |
1304 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
24487981 | 1305 | int err; |
b9a5f8ca | 1306 | |
310bc676 LT |
1307 | if (changed & WIPHY_PARAM_COVERAGE_CLASS) { |
1308 | err = drv_set_coverage_class(local, wiphy->coverage_class); | |
1309 | ||
1310 | if (err) | |
1311 | return err; | |
1312 | } | |
1313 | ||
b9a5f8ca | 1314 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) { |
24487981 | 1315 | err = drv_set_rts_threshold(local, wiphy->rts_threshold); |
b9a5f8ca | 1316 | |
24487981 JB |
1317 | if (err) |
1318 | return err; | |
b9a5f8ca JM |
1319 | } |
1320 | ||
1321 | if (changed & WIPHY_PARAM_RETRY_SHORT) | |
1322 | local->hw.conf.short_frame_max_tx_count = wiphy->retry_short; | |
1323 | if (changed & WIPHY_PARAM_RETRY_LONG) | |
1324 | local->hw.conf.long_frame_max_tx_count = wiphy->retry_long; | |
1325 | if (changed & | |
1326 | (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG)) | |
1327 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS); | |
1328 | ||
1329 | return 0; | |
1330 | } | |
1331 | ||
7643a2c3 JB |
1332 | static int ieee80211_set_tx_power(struct wiphy *wiphy, |
1333 | enum tx_power_setting type, int dbm) | |
1334 | { | |
1335 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
1336 | struct ieee80211_channel *chan = local->hw.conf.channel; | |
1337 | u32 changes = 0; | |
7643a2c3 JB |
1338 | |
1339 | switch (type) { | |
1340 | case TX_POWER_AUTOMATIC: | |
1341 | local->user_power_level = -1; | |
1342 | break; | |
1343 | case TX_POWER_LIMITED: | |
1344 | if (dbm < 0) | |
1345 | return -EINVAL; | |
1346 | local->user_power_level = dbm; | |
1347 | break; | |
1348 | case TX_POWER_FIXED: | |
1349 | if (dbm < 0) | |
1350 | return -EINVAL; | |
1351 | /* TODO: move to cfg80211 when it knows the channel */ | |
1352 | if (dbm > chan->max_power) | |
1353 | return -EINVAL; | |
1354 | local->user_power_level = dbm; | |
1355 | break; | |
7643a2c3 JB |
1356 | } |
1357 | ||
1358 | ieee80211_hw_config(local, changes); | |
1359 | ||
1360 | return 0; | |
1361 | } | |
1362 | ||
1363 | static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm) | |
1364 | { | |
1365 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
1366 | ||
1367 | *dbm = local->hw.conf.power_level; | |
1368 | ||
7643a2c3 JB |
1369 | return 0; |
1370 | } | |
1371 | ||
ab737a4f JB |
1372 | static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev, |
1373 | u8 *addr) | |
1374 | { | |
1375 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1376 | ||
1377 | memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN); | |
1378 | ||
1379 | return 0; | |
1380 | } | |
1381 | ||
1f87f7d3 JB |
1382 | static void ieee80211_rfkill_poll(struct wiphy *wiphy) |
1383 | { | |
1384 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
1385 | ||
1386 | drv_rfkill_poll(local); | |
1387 | } | |
1388 | ||
aff89a9b | 1389 | #ifdef CONFIG_NL80211_TESTMODE |
99783e2c | 1390 | static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len) |
aff89a9b JB |
1391 | { |
1392 | struct ieee80211_local *local = wiphy_priv(wiphy); | |
1393 | ||
1394 | if (!local->ops->testmode_cmd) | |
1395 | return -EOPNOTSUPP; | |
1396 | ||
1397 | return local->ops->testmode_cmd(&local->hw, data, len); | |
1398 | } | |
1399 | #endif | |
1400 | ||
0f78231b JB |
1401 | int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata, |
1402 | enum ieee80211_smps_mode smps_mode) | |
1403 | { | |
1404 | const u8 *ap; | |
1405 | enum ieee80211_smps_mode old_req; | |
1406 | int err; | |
1407 | ||
1408 | old_req = sdata->u.mgd.req_smps; | |
1409 | sdata->u.mgd.req_smps = smps_mode; | |
1410 | ||
1411 | if (old_req == smps_mode && | |
1412 | smps_mode != IEEE80211_SMPS_AUTOMATIC) | |
1413 | return 0; | |
1414 | ||
1415 | /* | |
1416 | * If not associated, or current association is not an HT | |
1417 | * association, there's no need to send an action frame. | |
1418 | */ | |
1419 | if (!sdata->u.mgd.associated || | |
0aaffa9b | 1420 | sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) { |
0f78231b JB |
1421 | mutex_lock(&sdata->local->iflist_mtx); |
1422 | ieee80211_recalc_smps(sdata->local, sdata); | |
1423 | mutex_unlock(&sdata->local->iflist_mtx); | |
1424 | return 0; | |
1425 | } | |
1426 | ||
0c1ad2ca | 1427 | ap = sdata->u.mgd.associated->bssid; |
0f78231b JB |
1428 | |
1429 | if (smps_mode == IEEE80211_SMPS_AUTOMATIC) { | |
1430 | if (sdata->u.mgd.powersave) | |
1431 | smps_mode = IEEE80211_SMPS_DYNAMIC; | |
1432 | else | |
1433 | smps_mode = IEEE80211_SMPS_OFF; | |
1434 | } | |
1435 | ||
1436 | /* send SM PS frame to AP */ | |
1437 | err = ieee80211_send_smps_action(sdata, smps_mode, | |
1438 | ap, ap); | |
1439 | if (err) | |
1440 | sdata->u.mgd.req_smps = old_req; | |
1441 | ||
1442 | return err; | |
1443 | } | |
1444 | ||
bc92afd9 JB |
1445 | static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev, |
1446 | bool enabled, int timeout) | |
1447 | { | |
1448 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1449 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | |
1450 | struct ieee80211_conf *conf = &local->hw.conf; | |
1451 | ||
e5de30c9 BP |
1452 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
1453 | return -EOPNOTSUPP; | |
1454 | ||
bc92afd9 JB |
1455 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) |
1456 | return -EOPNOTSUPP; | |
1457 | ||
1458 | if (enabled == sdata->u.mgd.powersave && | |
195e294d | 1459 | timeout == conf->dynamic_ps_forced_timeout) |
bc92afd9 JB |
1460 | return 0; |
1461 | ||
1462 | sdata->u.mgd.powersave = enabled; | |
195e294d | 1463 | conf->dynamic_ps_forced_timeout = timeout; |
bc92afd9 | 1464 | |
0f78231b JB |
1465 | /* no change, but if automatic follow powersave */ |
1466 | mutex_lock(&sdata->u.mgd.mtx); | |
1467 | __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps); | |
1468 | mutex_unlock(&sdata->u.mgd.mtx); | |
1469 | ||
bc92afd9 JB |
1470 | if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) |
1471 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); | |
1472 | ||
1473 | ieee80211_recalc_ps(local, -1); | |
1474 | ||
1475 | return 0; | |
1476 | } | |
1477 | ||
a97c13c3 JO |
1478 | static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy, |
1479 | struct net_device *dev, | |
1480 | s32 rssi_thold, u32 rssi_hyst) | |
1481 | { | |
1482 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1483 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | |
1484 | struct ieee80211_vif *vif = &sdata->vif; | |
1485 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; | |
1486 | ||
a97c13c3 JO |
1487 | if (rssi_thold == bss_conf->cqm_rssi_thold && |
1488 | rssi_hyst == bss_conf->cqm_rssi_hyst) | |
1489 | return 0; | |
1490 | ||
1491 | bss_conf->cqm_rssi_thold = rssi_thold; | |
1492 | bss_conf->cqm_rssi_hyst = rssi_hyst; | |
1493 | ||
17e4ec14 JM |
1494 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) { |
1495 | if (sdata->vif.type != NL80211_IFTYPE_STATION) | |
1496 | return -EOPNOTSUPP; | |
1497 | return 0; | |
1498 | } | |
1499 | ||
a97c13c3 JO |
1500 | /* tell the driver upon association, unless already associated */ |
1501 | if (sdata->u.mgd.associated) | |
1502 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM); | |
1503 | ||
1504 | return 0; | |
1505 | } | |
1506 | ||
9930380f JB |
1507 | static int ieee80211_set_bitrate_mask(struct wiphy *wiphy, |
1508 | struct net_device *dev, | |
1509 | const u8 *addr, | |
1510 | const struct cfg80211_bitrate_mask *mask) | |
1511 | { | |
1512 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1513 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | |
2c7e6bc9 | 1514 | int i; |
9930380f | 1515 | |
2c7e6bc9 JB |
1516 | /* |
1517 | * This _could_ be supported by providing a hook for | |
1518 | * drivers for this function, but at this point it | |
1519 | * doesn't seem worth bothering. | |
1520 | */ | |
1521 | if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) | |
1522 | return -EOPNOTSUPP; | |
1523 | ||
9930380f | 1524 | |
37eb0b16 JM |
1525 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) |
1526 | sdata->rc_rateidx_mask[i] = mask->control[i].legacy; | |
9930380f | 1527 | |
37eb0b16 | 1528 | return 0; |
9930380f JB |
1529 | } |
1530 | ||
b8bc4b0a JB |
1531 | static int ieee80211_remain_on_channel(struct wiphy *wiphy, |
1532 | struct net_device *dev, | |
1533 | struct ieee80211_channel *chan, | |
1534 | enum nl80211_channel_type channel_type, | |
1535 | unsigned int duration, | |
1536 | u64 *cookie) | |
1537 | { | |
1538 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1539 | ||
1540 | return ieee80211_wk_remain_on_channel(sdata, chan, channel_type, | |
1541 | duration, cookie); | |
1542 | } | |
1543 | ||
1544 | static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy, | |
1545 | struct net_device *dev, | |
1546 | u64 cookie) | |
1547 | { | |
1548 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | |
1549 | ||
1550 | return ieee80211_wk_cancel_remain_on_channel(sdata, cookie); | |
1551 | } | |
1552 | ||
026331c4 JM |
1553 | static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev, |
1554 | struct ieee80211_channel *chan, | |
1555 | enum nl80211_channel_type channel_type, | |
1556 | const u8 *buf, size_t len, u64 *cookie) | |
1557 | { | |
1558 | return ieee80211_mgd_action(IEEE80211_DEV_TO_SUB_IF(dev), chan, | |
1559 | channel_type, buf, len, cookie); | |
1560 | } | |
1561 | ||
f0706e82 JB |
1562 | struct cfg80211_ops mac80211_config_ops = { |
1563 | .add_virtual_intf = ieee80211_add_iface, | |
1564 | .del_virtual_intf = ieee80211_del_iface, | |
42613db7 | 1565 | .change_virtual_intf = ieee80211_change_iface, |
e8cbb4cb JB |
1566 | .add_key = ieee80211_add_key, |
1567 | .del_key = ieee80211_del_key, | |
62da92fb | 1568 | .get_key = ieee80211_get_key, |
e8cbb4cb | 1569 | .set_default_key = ieee80211_config_default_key, |
3cfcf6ac | 1570 | .set_default_mgmt_key = ieee80211_config_default_mgmt_key, |
5dfdaf58 JB |
1571 | .add_beacon = ieee80211_add_beacon, |
1572 | .set_beacon = ieee80211_set_beacon, | |
1573 | .del_beacon = ieee80211_del_beacon, | |
4fd6931e JB |
1574 | .add_station = ieee80211_add_station, |
1575 | .del_station = ieee80211_del_station, | |
1576 | .change_station = ieee80211_change_station, | |
7bbdd2d9 | 1577 | .get_station = ieee80211_get_station, |
c5dd9c2b | 1578 | .dump_station = ieee80211_dump_station, |
1289723e | 1579 | .dump_survey = ieee80211_dump_survey, |
c5dd9c2b LCC |
1580 | #ifdef CONFIG_MAC80211_MESH |
1581 | .add_mpath = ieee80211_add_mpath, | |
1582 | .del_mpath = ieee80211_del_mpath, | |
1583 | .change_mpath = ieee80211_change_mpath, | |
1584 | .get_mpath = ieee80211_get_mpath, | |
1585 | .dump_mpath = ieee80211_dump_mpath, | |
93da9cc1 | 1586 | .set_mesh_params = ieee80211_set_mesh_params, |
1587 | .get_mesh_params = ieee80211_get_mesh_params, | |
c5dd9c2b | 1588 | #endif |
9f1ba906 | 1589 | .change_bss = ieee80211_change_bss, |
31888487 | 1590 | .set_txq_params = ieee80211_set_txq_params, |
72bdcf34 | 1591 | .set_channel = ieee80211_set_channel, |
665af4fc BC |
1592 | .suspend = ieee80211_suspend, |
1593 | .resume = ieee80211_resume, | |
2a519311 | 1594 | .scan = ieee80211_scan, |
636a5d36 JM |
1595 | .auth = ieee80211_auth, |
1596 | .assoc = ieee80211_assoc, | |
1597 | .deauth = ieee80211_deauth, | |
1598 | .disassoc = ieee80211_disassoc, | |
af8cdcd8 JB |
1599 | .join_ibss = ieee80211_join_ibss, |
1600 | .leave_ibss = ieee80211_leave_ibss, | |
b9a5f8ca | 1601 | .set_wiphy_params = ieee80211_set_wiphy_params, |
7643a2c3 JB |
1602 | .set_tx_power = ieee80211_set_tx_power, |
1603 | .get_tx_power = ieee80211_get_tx_power, | |
ab737a4f | 1604 | .set_wds_peer = ieee80211_set_wds_peer, |
1f87f7d3 | 1605 | .rfkill_poll = ieee80211_rfkill_poll, |
aff89a9b | 1606 | CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd) |
bc92afd9 | 1607 | .set_power_mgmt = ieee80211_set_power_mgmt, |
9930380f | 1608 | .set_bitrate_mask = ieee80211_set_bitrate_mask, |
b8bc4b0a JB |
1609 | .remain_on_channel = ieee80211_remain_on_channel, |
1610 | .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel, | |
026331c4 | 1611 | .action = ieee80211_action, |
a97c13c3 | 1612 | .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config, |
f0706e82 | 1613 | }; |