e072fea69a302b9d1d8bd1bf87e378b0b6dee7e1
[deliverable/linux.git] / net / mac80211 / cfg.c
1 /*
2 * mac80211 configuration hooks for cfg80211
3 *
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
5 *
6 * This file is GPLv2 as found in COPYING.
7 */
8
9 #include <linux/ieee80211.h>
10 #include <linux/nl80211.h>
11 #include <linux/rtnetlink.h>
12 #include <linux/slab.h>
13 #include <net/net_namespace.h>
14 #include <linux/rcupdate.h>
15 #include <linux/if_ether.h>
16 #include <net/cfg80211.h>
17 #include "ieee80211_i.h"
18 #include "driver-ops.h"
19 #include "cfg.h"
20 #include "rate.h"
21 #include "mesh.h"
22
23 static struct net_device *ieee80211_add_iface(struct wiphy *wiphy, char *name,
24 enum nl80211_iftype type,
25 u32 *flags,
26 struct vif_params *params)
27 {
28 struct ieee80211_local *local = wiphy_priv(wiphy);
29 struct net_device *dev;
30 struct ieee80211_sub_if_data *sdata;
31 int err;
32
33 err = ieee80211_if_add(local, name, &dev, type, params);
34 if (err)
35 return ERR_PTR(err);
36
37 if (type == NL80211_IFTYPE_MONITOR && flags) {
38 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
39 sdata->u.mntr_flags = *flags;
40 }
41
42 return dev;
43 }
44
45 static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev)
46 {
47 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
48
49 return 0;
50 }
51
52 static int ieee80211_change_iface(struct wiphy *wiphy,
53 struct net_device *dev,
54 enum nl80211_iftype type, u32 *flags,
55 struct vif_params *params)
56 {
57 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
58 int ret;
59
60 ret = ieee80211_if_change_type(sdata, type);
61 if (ret)
62 return ret;
63
64 if (type == NL80211_IFTYPE_AP_VLAN &&
65 params && params->use_4addr == 0)
66 RCU_INIT_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
71 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
72 struct ieee80211_local *local = sdata->local;
73
74 if (ieee80211_sdata_running(sdata)) {
75 /*
76 * Prohibit MONITOR_FLAG_COOK_FRAMES to be
77 * changed while the interface is up.
78 * Else we would need to add a lot of cruft
79 * to update everything:
80 * cooked_mntrs, monitor and all fif_* counters
81 * reconfigure hardware
82 */
83 if ((*flags & MONITOR_FLAG_COOK_FRAMES) !=
84 (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
85 return -EBUSY;
86
87 ieee80211_adjust_monitor_flags(sdata, -1);
88 sdata->u.mntr_flags = *flags;
89 ieee80211_adjust_monitor_flags(sdata, 1);
90
91 ieee80211_configure_filter(local);
92 } else {
93 /*
94 * Because the interface is down, ieee80211_do_stop
95 * and ieee80211_do_open take care of "everything"
96 * mentioned in the comment above.
97 */
98 sdata->u.mntr_flags = *flags;
99 }
100 }
101
102 return 0;
103 }
104
105 static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
106 u8 key_idx, bool pairwise, const u8 *mac_addr,
107 struct key_params *params)
108 {
109 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
110 struct sta_info *sta = NULL;
111 struct ieee80211_key *key;
112 int err;
113
114 if (!ieee80211_sdata_running(sdata))
115 return -ENETDOWN;
116
117 /* reject WEP and TKIP keys if WEP failed to initialize */
118 switch (params->cipher) {
119 case WLAN_CIPHER_SUITE_WEP40:
120 case WLAN_CIPHER_SUITE_TKIP:
121 case WLAN_CIPHER_SUITE_WEP104:
122 if (IS_ERR(sdata->local->wep_tx_tfm))
123 return -EINVAL;
124 break;
125 default:
126 break;
127 }
128
129 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
130 params->key, params->seq_len, params->seq);
131 if (IS_ERR(key))
132 return PTR_ERR(key);
133
134 if (pairwise)
135 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
136
137 mutex_lock(&sdata->local->sta_mtx);
138
139 if (mac_addr) {
140 if (ieee80211_vif_is_mesh(&sdata->vif))
141 sta = sta_info_get(sdata, mac_addr);
142 else
143 sta = sta_info_get_bss(sdata, mac_addr);
144 if (!sta) {
145 ieee80211_key_free(sdata->local, key);
146 err = -ENOENT;
147 goto out_unlock;
148 }
149 }
150
151 err = ieee80211_key_link(key, sdata, sta);
152 if (err)
153 ieee80211_key_free(sdata->local, key);
154
155 out_unlock:
156 mutex_unlock(&sdata->local->sta_mtx);
157
158 return err;
159 }
160
161 static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
162 u8 key_idx, bool pairwise, const u8 *mac_addr)
163 {
164 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
165 struct ieee80211_local *local = sdata->local;
166 struct sta_info *sta;
167 struct ieee80211_key *key = NULL;
168 int ret;
169
170 mutex_lock(&local->sta_mtx);
171 mutex_lock(&local->key_mtx);
172
173 if (mac_addr) {
174 ret = -ENOENT;
175
176 sta = sta_info_get_bss(sdata, mac_addr);
177 if (!sta)
178 goto out_unlock;
179
180 if (pairwise)
181 key = key_mtx_dereference(local, sta->ptk);
182 else
183 key = key_mtx_dereference(local, sta->gtk[key_idx]);
184 } else
185 key = key_mtx_dereference(local, sdata->keys[key_idx]);
186
187 if (!key) {
188 ret = -ENOENT;
189 goto out_unlock;
190 }
191
192 __ieee80211_key_free(key);
193
194 ret = 0;
195 out_unlock:
196 mutex_unlock(&local->key_mtx);
197 mutex_unlock(&local->sta_mtx);
198
199 return ret;
200 }
201
202 static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
203 u8 key_idx, bool pairwise, const u8 *mac_addr,
204 void *cookie,
205 void (*callback)(void *cookie,
206 struct key_params *params))
207 {
208 struct ieee80211_sub_if_data *sdata;
209 struct sta_info *sta = NULL;
210 u8 seq[6] = {0};
211 struct key_params params;
212 struct ieee80211_key *key = NULL;
213 u64 pn64;
214 u32 iv32;
215 u16 iv16;
216 int err = -ENOENT;
217
218 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
219
220 rcu_read_lock();
221
222 if (mac_addr) {
223 sta = sta_info_get_bss(sdata, mac_addr);
224 if (!sta)
225 goto out;
226
227 if (pairwise)
228 key = rcu_dereference(sta->ptk);
229 else if (key_idx < NUM_DEFAULT_KEYS)
230 key = rcu_dereference(sta->gtk[key_idx]);
231 } else
232 key = rcu_dereference(sdata->keys[key_idx]);
233
234 if (!key)
235 goto out;
236
237 memset(&params, 0, sizeof(params));
238
239 params.cipher = key->conf.cipher;
240
241 switch (key->conf.cipher) {
242 case WLAN_CIPHER_SUITE_TKIP:
243 iv32 = key->u.tkip.tx.iv32;
244 iv16 = key->u.tkip.tx.iv16;
245
246 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
247 drv_get_tkip_seq(sdata->local,
248 key->conf.hw_key_idx,
249 &iv32, &iv16);
250
251 seq[0] = iv16 & 0xff;
252 seq[1] = (iv16 >> 8) & 0xff;
253 seq[2] = iv32 & 0xff;
254 seq[3] = (iv32 >> 8) & 0xff;
255 seq[4] = (iv32 >> 16) & 0xff;
256 seq[5] = (iv32 >> 24) & 0xff;
257 params.seq = seq;
258 params.seq_len = 6;
259 break;
260 case WLAN_CIPHER_SUITE_CCMP:
261 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
262 seq[0] = pn64;
263 seq[1] = pn64 >> 8;
264 seq[2] = pn64 >> 16;
265 seq[3] = pn64 >> 24;
266 seq[4] = pn64 >> 32;
267 seq[5] = pn64 >> 40;
268 params.seq = seq;
269 params.seq_len = 6;
270 break;
271 case WLAN_CIPHER_SUITE_AES_CMAC:
272 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
273 seq[0] = pn64;
274 seq[1] = pn64 >> 8;
275 seq[2] = pn64 >> 16;
276 seq[3] = pn64 >> 24;
277 seq[4] = pn64 >> 32;
278 seq[5] = pn64 >> 40;
279 params.seq = seq;
280 params.seq_len = 6;
281 break;
282 }
283
284 params.key = key->conf.key;
285 params.key_len = key->conf.keylen;
286
287 callback(cookie, &params);
288 err = 0;
289
290 out:
291 rcu_read_unlock();
292 return err;
293 }
294
295 static int ieee80211_config_default_key(struct wiphy *wiphy,
296 struct net_device *dev,
297 u8 key_idx, bool uni,
298 bool multi)
299 {
300 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
301
302 ieee80211_set_default_key(sdata, key_idx, uni, multi);
303
304 return 0;
305 }
306
307 static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
308 struct net_device *dev,
309 u8 key_idx)
310 {
311 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
312
313 ieee80211_set_default_mgmt_key(sdata, key_idx);
314
315 return 0;
316 }
317
318 static void rate_idx_to_bitrate(struct rate_info *rate, struct sta_info *sta, int idx)
319 {
320 if (!(rate->flags & RATE_INFO_FLAGS_MCS)) {
321 struct ieee80211_supported_band *sband;
322 sband = sta->local->hw.wiphy->bands[
323 sta->local->hw.conf.channel->band];
324 rate->legacy = sband->bitrates[idx].bitrate;
325 } else
326 rate->mcs = idx;
327 }
328
329 static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
330 {
331 struct ieee80211_sub_if_data *sdata = sta->sdata;
332 struct timespec uptime;
333
334 sinfo->generation = sdata->local->sta_generation;
335
336 sinfo->filled = STATION_INFO_INACTIVE_TIME |
337 STATION_INFO_RX_BYTES |
338 STATION_INFO_TX_BYTES |
339 STATION_INFO_RX_PACKETS |
340 STATION_INFO_TX_PACKETS |
341 STATION_INFO_TX_RETRIES |
342 STATION_INFO_TX_FAILED |
343 STATION_INFO_TX_BITRATE |
344 STATION_INFO_RX_BITRATE |
345 STATION_INFO_RX_DROP_MISC |
346 STATION_INFO_BSS_PARAM |
347 STATION_INFO_CONNECTED_TIME |
348 STATION_INFO_STA_FLAGS;
349
350 do_posix_clock_monotonic_gettime(&uptime);
351 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
352
353 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
354 sinfo->rx_bytes = sta->rx_bytes;
355 sinfo->tx_bytes = sta->tx_bytes;
356 sinfo->rx_packets = sta->rx_packets;
357 sinfo->tx_packets = sta->tx_packets;
358 sinfo->tx_retries = sta->tx_retry_count;
359 sinfo->tx_failed = sta->tx_retry_failed;
360 sinfo->rx_dropped_misc = sta->rx_dropped;
361
362 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
363 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
364 sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
365 sinfo->signal = (s8)sta->last_signal;
366 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
367 }
368
369 sinfo->txrate.flags = 0;
370 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
371 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
372 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
373 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
374 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
375 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
376 rate_idx_to_bitrate(&sinfo->txrate, sta, sta->last_tx_rate.idx);
377
378 sinfo->rxrate.flags = 0;
379 if (sta->last_rx_rate_flag & RX_FLAG_HT)
380 sinfo->rxrate.flags |= RATE_INFO_FLAGS_MCS;
381 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
382 sinfo->rxrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
383 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
384 sinfo->rxrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
385 rate_idx_to_bitrate(&sinfo->rxrate, sta, sta->last_rx_rate_idx);
386
387 if (ieee80211_vif_is_mesh(&sdata->vif)) {
388 #ifdef CONFIG_MAC80211_MESH
389 sinfo->filled |= STATION_INFO_LLID |
390 STATION_INFO_PLID |
391 STATION_INFO_PLINK_STATE;
392
393 sinfo->llid = le16_to_cpu(sta->llid);
394 sinfo->plid = le16_to_cpu(sta->plid);
395 sinfo->plink_state = sta->plink_state;
396 #endif
397 }
398
399 sinfo->bss_param.flags = 0;
400 if (sdata->vif.bss_conf.use_cts_prot)
401 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
402 if (sdata->vif.bss_conf.use_short_preamble)
403 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
404 if (sdata->vif.bss_conf.use_short_slot)
405 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
406 sinfo->bss_param.dtim_period = sdata->local->hw.conf.ps_dtim_period;
407 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
408
409 sinfo->sta_flags.set = 0;
410 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
411 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
412 BIT(NL80211_STA_FLAG_WME) |
413 BIT(NL80211_STA_FLAG_MFP) |
414 BIT(NL80211_STA_FLAG_AUTHENTICATED);
415 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
416 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
417 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
418 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
419 if (test_sta_flag(sta, WLAN_STA_WME))
420 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
421 if (test_sta_flag(sta, WLAN_STA_MFP))
422 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
423 if (test_sta_flag(sta, WLAN_STA_AUTH))
424 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
425 }
426
427
428 static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
429 int idx, u8 *mac, struct station_info *sinfo)
430 {
431 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
432 struct sta_info *sta;
433 int ret = -ENOENT;
434
435 rcu_read_lock();
436
437 sta = sta_info_get_by_idx(sdata, idx);
438 if (sta) {
439 ret = 0;
440 memcpy(mac, sta->sta.addr, ETH_ALEN);
441 sta_set_sinfo(sta, sinfo);
442 }
443
444 rcu_read_unlock();
445
446 return ret;
447 }
448
449 static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
450 int idx, struct survey_info *survey)
451 {
452 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
453
454 return drv_get_survey(local, idx, survey);
455 }
456
457 static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
458 u8 *mac, struct station_info *sinfo)
459 {
460 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
461 struct sta_info *sta;
462 int ret = -ENOENT;
463
464 rcu_read_lock();
465
466 sta = sta_info_get_bss(sdata, mac);
467 if (sta) {
468 ret = 0;
469 sta_set_sinfo(sta, sinfo);
470 }
471
472 rcu_read_unlock();
473
474 return ret;
475 }
476
477 static void ieee80211_config_ap_ssid(struct ieee80211_sub_if_data *sdata,
478 struct beacon_parameters *params)
479 {
480 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
481
482 bss_conf->ssid_len = params->ssid_len;
483
484 if (params->ssid_len)
485 memcpy(bss_conf->ssid, params->ssid, params->ssid_len);
486
487 bss_conf->hidden_ssid =
488 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
489 }
490
491 /*
492 * This handles both adding a beacon and setting new beacon info
493 */
494 static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
495 struct beacon_parameters *params)
496 {
497 struct beacon_data *new, *old;
498 int new_head_len, new_tail_len;
499 int size;
500 int err = -EINVAL;
501
502 old = rtnl_dereference(sdata->u.ap.beacon);
503
504 /* head must not be zero-length */
505 if (params->head && !params->head_len)
506 return -EINVAL;
507
508 /*
509 * This is a kludge. beacon interval should really be part
510 * of the beacon information.
511 */
512 if (params->interval &&
513 (sdata->vif.bss_conf.beacon_int != params->interval)) {
514 sdata->vif.bss_conf.beacon_int = params->interval;
515 ieee80211_bss_info_change_notify(sdata,
516 BSS_CHANGED_BEACON_INT);
517 }
518
519 /* Need to have a beacon head if we don't have one yet */
520 if (!params->head && !old)
521 return err;
522
523 /* sorry, no way to start beaconing without dtim period */
524 if (!params->dtim_period && !old)
525 return err;
526
527 /* new or old head? */
528 if (params->head)
529 new_head_len = params->head_len;
530 else
531 new_head_len = old->head_len;
532
533 /* new or old tail? */
534 if (params->tail || !old)
535 /* params->tail_len will be zero for !params->tail */
536 new_tail_len = params->tail_len;
537 else
538 new_tail_len = old->tail_len;
539
540 size = sizeof(*new) + new_head_len + new_tail_len;
541
542 new = kzalloc(size, GFP_KERNEL);
543 if (!new)
544 return -ENOMEM;
545
546 /* start filling the new info now */
547
548 /* new or old dtim period? */
549 if (params->dtim_period)
550 new->dtim_period = params->dtim_period;
551 else
552 new->dtim_period = old->dtim_period;
553
554 /*
555 * pointers go into the block we allocated,
556 * memory is | beacon_data | head | tail |
557 */
558 new->head = ((u8 *) new) + sizeof(*new);
559 new->tail = new->head + new_head_len;
560 new->head_len = new_head_len;
561 new->tail_len = new_tail_len;
562
563 /* copy in head */
564 if (params->head)
565 memcpy(new->head, params->head, new_head_len);
566 else
567 memcpy(new->head, old->head, new_head_len);
568
569 /* copy in optional tail */
570 if (params->tail)
571 memcpy(new->tail, params->tail, new_tail_len);
572 else
573 if (old)
574 memcpy(new->tail, old->tail, new_tail_len);
575
576 sdata->vif.bss_conf.dtim_period = new->dtim_period;
577
578 RCU_INIT_POINTER(sdata->u.ap.beacon, new);
579
580 synchronize_rcu();
581
582 kfree(old);
583
584 ieee80211_config_ap_ssid(sdata, params);
585
586 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
587 BSS_CHANGED_BEACON |
588 BSS_CHANGED_SSID);
589 return 0;
590 }
591
592 static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
593 struct beacon_parameters *params)
594 {
595 struct ieee80211_sub_if_data *sdata;
596 struct beacon_data *old;
597 struct ieee80211_sub_if_data *vlan;
598 int ret;
599
600 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
601
602 old = rtnl_dereference(sdata->u.ap.beacon);
603 if (old)
604 return -EALREADY;
605
606 ret = ieee80211_config_beacon(sdata, params);
607 if (ret)
608 return ret;
609
610 /*
611 * Apply control port protocol, this allows us to
612 * not encrypt dynamic WEP control frames.
613 */
614 sdata->control_port_protocol = params->crypto.control_port_ethertype;
615 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
616 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
617 vlan->control_port_protocol =
618 params->crypto.control_port_ethertype;
619 vlan->control_port_no_encrypt =
620 params->crypto.control_port_no_encrypt;
621 }
622
623 return 0;
624 }
625
626 static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
627 struct beacon_parameters *params)
628 {
629 struct ieee80211_sub_if_data *sdata;
630 struct beacon_data *old;
631
632 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
633
634 old = rtnl_dereference(sdata->u.ap.beacon);
635 if (!old)
636 return -ENOENT;
637
638 return ieee80211_config_beacon(sdata, params);
639 }
640
641 static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
642 {
643 struct ieee80211_sub_if_data *sdata;
644 struct beacon_data *old;
645
646 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
647
648 old = rtnl_dereference(sdata->u.ap.beacon);
649 if (!old)
650 return -ENOENT;
651
652 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
653 synchronize_rcu();
654 kfree(old);
655
656 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
657 return 0;
658 }
659
660 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
661 struct iapp_layer2_update {
662 u8 da[ETH_ALEN]; /* broadcast */
663 u8 sa[ETH_ALEN]; /* STA addr */
664 __be16 len; /* 6 */
665 u8 dsap; /* 0 */
666 u8 ssap; /* 0 */
667 u8 control;
668 u8 xid_info[3];
669 } __packed;
670
671 static void ieee80211_send_layer2_update(struct sta_info *sta)
672 {
673 struct iapp_layer2_update *msg;
674 struct sk_buff *skb;
675
676 /* Send Level 2 Update Frame to update forwarding tables in layer 2
677 * bridge devices */
678
679 skb = dev_alloc_skb(sizeof(*msg));
680 if (!skb)
681 return;
682 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
683
684 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
685 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
686
687 memset(msg->da, 0xff, ETH_ALEN);
688 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
689 msg->len = htons(6);
690 msg->dsap = 0;
691 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
692 msg->control = 0xaf; /* XID response lsb.1111F101.
693 * F=0 (no poll command; unsolicited frame) */
694 msg->xid_info[0] = 0x81; /* XID format identifier */
695 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
696 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
697
698 skb->dev = sta->sdata->dev;
699 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
700 memset(skb->cb, 0, sizeof(skb->cb));
701 netif_rx_ni(skb);
702 }
703
704 static void sta_apply_parameters(struct ieee80211_local *local,
705 struct sta_info *sta,
706 struct station_parameters *params)
707 {
708 u32 rates;
709 int i, j;
710 struct ieee80211_supported_band *sband;
711 struct ieee80211_sub_if_data *sdata = sta->sdata;
712 u32 mask, set;
713
714 sband = local->hw.wiphy->bands[local->oper_channel->band];
715
716 mask = params->sta_flags_mask;
717 set = params->sta_flags_set;
718
719 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
720 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
721 set_sta_flag(sta, WLAN_STA_AUTHORIZED);
722 else
723 clear_sta_flag(sta, WLAN_STA_AUTHORIZED);
724 }
725
726 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
727 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
728 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
729 else
730 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
731 }
732
733 if (mask & BIT(NL80211_STA_FLAG_WME)) {
734 if (set & BIT(NL80211_STA_FLAG_WME)) {
735 set_sta_flag(sta, WLAN_STA_WME);
736 sta->sta.wme = true;
737 } else {
738 clear_sta_flag(sta, WLAN_STA_WME);
739 sta->sta.wme = false;
740 }
741 }
742
743 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
744 if (set & BIT(NL80211_STA_FLAG_MFP))
745 set_sta_flag(sta, WLAN_STA_MFP);
746 else
747 clear_sta_flag(sta, WLAN_STA_MFP);
748 }
749
750 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED)) {
751 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
752 set_sta_flag(sta, WLAN_STA_AUTH);
753 else
754 clear_sta_flag(sta, WLAN_STA_AUTH);
755 }
756
757 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
758 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
759 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
760 else
761 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
762 }
763
764 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
765 sta->sta.uapsd_queues = params->uapsd_queues;
766 sta->sta.max_sp = params->max_sp;
767 }
768
769 /*
770 * cfg80211 validates this (1-2007) and allows setting the AID
771 * only when creating a new station entry
772 */
773 if (params->aid)
774 sta->sta.aid = params->aid;
775
776 /*
777 * FIXME: updating the following information is racy when this
778 * function is called from ieee80211_change_station().
779 * However, all this information should be static so
780 * maybe we should just reject attemps to change it.
781 */
782
783 if (params->listen_interval >= 0)
784 sta->listen_interval = params->listen_interval;
785
786 if (params->supported_rates) {
787 rates = 0;
788
789 for (i = 0; i < params->supported_rates_len; i++) {
790 int rate = (params->supported_rates[i] & 0x7f) * 5;
791 for (j = 0; j < sband->n_bitrates; j++) {
792 if (sband->bitrates[j].bitrate == rate)
793 rates |= BIT(j);
794 }
795 }
796 sta->sta.supp_rates[local->oper_channel->band] = rates;
797 }
798
799 if (params->ht_capa)
800 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
801 params->ht_capa,
802 &sta->sta.ht_cap);
803
804 if (ieee80211_vif_is_mesh(&sdata->vif)) {
805 #ifdef CONFIG_MAC80211_MESH
806 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_SECURED)
807 switch (params->plink_state) {
808 case NL80211_PLINK_LISTEN:
809 case NL80211_PLINK_ESTAB:
810 case NL80211_PLINK_BLOCKED:
811 sta->plink_state = params->plink_state;
812 break;
813 default:
814 /* nothing */
815 break;
816 }
817 else
818 switch (params->plink_action) {
819 case PLINK_ACTION_OPEN:
820 mesh_plink_open(sta);
821 break;
822 case PLINK_ACTION_BLOCK:
823 mesh_plink_block(sta);
824 break;
825 }
826 #endif
827 }
828 }
829
830 static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
831 u8 *mac, struct station_parameters *params)
832 {
833 struct ieee80211_local *local = wiphy_priv(wiphy);
834 struct sta_info *sta;
835 struct ieee80211_sub_if_data *sdata;
836 int err;
837 int layer2_update;
838
839 if (params->vlan) {
840 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
841
842 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
843 sdata->vif.type != NL80211_IFTYPE_AP)
844 return -EINVAL;
845 } else
846 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
847
848 if (compare_ether_addr(mac, sdata->vif.addr) == 0)
849 return -EINVAL;
850
851 if (is_multicast_ether_addr(mac))
852 return -EINVAL;
853
854 /* Only TDLS-supporting stations can add TDLS peers */
855 if ((params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) &&
856 !((wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
857 sdata->vif.type == NL80211_IFTYPE_STATION))
858 return -ENOTSUPP;
859
860 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
861 if (!sta)
862 return -ENOMEM;
863
864 set_sta_flag(sta, WLAN_STA_AUTH);
865 set_sta_flag(sta, WLAN_STA_ASSOC);
866
867 sta_apply_parameters(local, sta, params);
868
869 rate_control_rate_init(sta);
870
871 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
872 sdata->vif.type == NL80211_IFTYPE_AP;
873
874 err = sta_info_insert_rcu(sta);
875 if (err) {
876 rcu_read_unlock();
877 return err;
878 }
879
880 if (layer2_update)
881 ieee80211_send_layer2_update(sta);
882
883 rcu_read_unlock();
884
885 return 0;
886 }
887
888 static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
889 u8 *mac)
890 {
891 struct ieee80211_local *local = wiphy_priv(wiphy);
892 struct ieee80211_sub_if_data *sdata;
893
894 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
895
896 if (mac)
897 return sta_info_destroy_addr_bss(sdata, mac);
898
899 sta_info_flush(local, sdata);
900 return 0;
901 }
902
903 static int ieee80211_change_station(struct wiphy *wiphy,
904 struct net_device *dev,
905 u8 *mac,
906 struct station_parameters *params)
907 {
908 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
909 struct ieee80211_local *local = wiphy_priv(wiphy);
910 struct sta_info *sta;
911 struct ieee80211_sub_if_data *vlansdata;
912
913 rcu_read_lock();
914
915 sta = sta_info_get_bss(sdata, mac);
916 if (!sta) {
917 rcu_read_unlock();
918 return -ENOENT;
919 }
920
921 /* The TDLS bit cannot be toggled after the STA was added */
922 if ((params->sta_flags_mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) &&
923 !!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) !=
924 !!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
925 rcu_read_unlock();
926 return -EINVAL;
927 }
928
929 if (params->vlan && params->vlan != sta->sdata->dev) {
930 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
931
932 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
933 vlansdata->vif.type != NL80211_IFTYPE_AP) {
934 rcu_read_unlock();
935 return -EINVAL;
936 }
937
938 if (params->vlan->ieee80211_ptr->use_4addr) {
939 if (vlansdata->u.vlan.sta) {
940 rcu_read_unlock();
941 return -EBUSY;
942 }
943
944 RCU_INIT_POINTER(vlansdata->u.vlan.sta, sta);
945 }
946
947 sta->sdata = vlansdata;
948 ieee80211_send_layer2_update(sta);
949 }
950
951 sta_apply_parameters(local, sta, params);
952
953 rcu_read_unlock();
954
955 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
956 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED))
957 ieee80211_recalc_ps(local, -1);
958
959 return 0;
960 }
961
962 #ifdef CONFIG_MAC80211_MESH
963 static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
964 u8 *dst, u8 *next_hop)
965 {
966 struct ieee80211_sub_if_data *sdata;
967 struct mesh_path *mpath;
968 struct sta_info *sta;
969 int err;
970
971 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
972
973 rcu_read_lock();
974 sta = sta_info_get(sdata, next_hop);
975 if (!sta) {
976 rcu_read_unlock();
977 return -ENOENT;
978 }
979
980 err = mesh_path_add(dst, sdata);
981 if (err) {
982 rcu_read_unlock();
983 return err;
984 }
985
986 mpath = mesh_path_lookup(dst, sdata);
987 if (!mpath) {
988 rcu_read_unlock();
989 return -ENXIO;
990 }
991 mesh_path_fix_nexthop(mpath, sta);
992
993 rcu_read_unlock();
994 return 0;
995 }
996
997 static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
998 u8 *dst)
999 {
1000 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1001
1002 if (dst)
1003 return mesh_path_del(dst, sdata);
1004
1005 mesh_path_flush_by_iface(sdata);
1006 return 0;
1007 }
1008
1009 static int ieee80211_change_mpath(struct wiphy *wiphy,
1010 struct net_device *dev,
1011 u8 *dst, u8 *next_hop)
1012 {
1013 struct ieee80211_sub_if_data *sdata;
1014 struct mesh_path *mpath;
1015 struct sta_info *sta;
1016
1017 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1018
1019 rcu_read_lock();
1020
1021 sta = sta_info_get(sdata, next_hop);
1022 if (!sta) {
1023 rcu_read_unlock();
1024 return -ENOENT;
1025 }
1026
1027 mpath = mesh_path_lookup(dst, sdata);
1028 if (!mpath) {
1029 rcu_read_unlock();
1030 return -ENOENT;
1031 }
1032
1033 mesh_path_fix_nexthop(mpath, sta);
1034
1035 rcu_read_unlock();
1036 return 0;
1037 }
1038
1039 static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1040 struct mpath_info *pinfo)
1041 {
1042 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1043
1044 if (next_hop_sta)
1045 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
1046 else
1047 memset(next_hop, 0, ETH_ALEN);
1048
1049 pinfo->generation = mesh_paths_generation;
1050
1051 pinfo->filled = MPATH_INFO_FRAME_QLEN |
1052 MPATH_INFO_SN |
1053 MPATH_INFO_METRIC |
1054 MPATH_INFO_EXPTIME |
1055 MPATH_INFO_DISCOVERY_TIMEOUT |
1056 MPATH_INFO_DISCOVERY_RETRIES |
1057 MPATH_INFO_FLAGS;
1058
1059 pinfo->frame_qlen = mpath->frame_queue.qlen;
1060 pinfo->sn = mpath->sn;
1061 pinfo->metric = mpath->metric;
1062 if (time_before(jiffies, mpath->exp_time))
1063 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1064 pinfo->discovery_timeout =
1065 jiffies_to_msecs(mpath->discovery_timeout);
1066 pinfo->discovery_retries = mpath->discovery_retries;
1067 pinfo->flags = 0;
1068 if (mpath->flags & MESH_PATH_ACTIVE)
1069 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1070 if (mpath->flags & MESH_PATH_RESOLVING)
1071 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
1072 if (mpath->flags & MESH_PATH_SN_VALID)
1073 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
1074 if (mpath->flags & MESH_PATH_FIXED)
1075 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
1076 if (mpath->flags & MESH_PATH_RESOLVING)
1077 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
1078
1079 pinfo->flags = mpath->flags;
1080 }
1081
1082 static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1083 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1084
1085 {
1086 struct ieee80211_sub_if_data *sdata;
1087 struct mesh_path *mpath;
1088
1089 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1090
1091 rcu_read_lock();
1092 mpath = mesh_path_lookup(dst, sdata);
1093 if (!mpath) {
1094 rcu_read_unlock();
1095 return -ENOENT;
1096 }
1097 memcpy(dst, mpath->dst, ETH_ALEN);
1098 mpath_set_pinfo(mpath, next_hop, pinfo);
1099 rcu_read_unlock();
1100 return 0;
1101 }
1102
1103 static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
1104 int idx, u8 *dst, u8 *next_hop,
1105 struct mpath_info *pinfo)
1106 {
1107 struct ieee80211_sub_if_data *sdata;
1108 struct mesh_path *mpath;
1109
1110 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1111
1112 rcu_read_lock();
1113 mpath = mesh_path_lookup_by_idx(idx, sdata);
1114 if (!mpath) {
1115 rcu_read_unlock();
1116 return -ENOENT;
1117 }
1118 memcpy(dst, mpath->dst, ETH_ALEN);
1119 mpath_set_pinfo(mpath, next_hop, pinfo);
1120 rcu_read_unlock();
1121 return 0;
1122 }
1123
1124 static int ieee80211_get_mesh_config(struct wiphy *wiphy,
1125 struct net_device *dev,
1126 struct mesh_config *conf)
1127 {
1128 struct ieee80211_sub_if_data *sdata;
1129 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1130
1131 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1132 return 0;
1133 }
1134
1135 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1136 {
1137 return (mask >> (parm-1)) & 0x1;
1138 }
1139
1140 static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1141 const struct mesh_setup *setup)
1142 {
1143 u8 *new_ie;
1144 const u8 *old_ie;
1145
1146 /* allocate information elements */
1147 new_ie = NULL;
1148 old_ie = ifmsh->ie;
1149
1150 if (setup->ie_len) {
1151 new_ie = kmemdup(setup->ie, setup->ie_len,
1152 GFP_KERNEL);
1153 if (!new_ie)
1154 return -ENOMEM;
1155 }
1156 ifmsh->ie_len = setup->ie_len;
1157 ifmsh->ie = new_ie;
1158 kfree(old_ie);
1159
1160 /* now copy the rest of the setup parameters */
1161 ifmsh->mesh_id_len = setup->mesh_id_len;
1162 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
1163 ifmsh->mesh_pp_id = setup->path_sel_proto;
1164 ifmsh->mesh_pm_id = setup->path_metric;
1165 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1166 if (setup->is_authenticated)
1167 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1168 if (setup->is_secure)
1169 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
1170
1171 return 0;
1172 }
1173
1174 static int ieee80211_update_mesh_config(struct wiphy *wiphy,
1175 struct net_device *dev, u32 mask,
1176 const struct mesh_config *nconf)
1177 {
1178 struct mesh_config *conf;
1179 struct ieee80211_sub_if_data *sdata;
1180 struct ieee80211_if_mesh *ifmsh;
1181
1182 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1183 ifmsh = &sdata->u.mesh;
1184
1185 /* Set the config options which we are interested in setting */
1186 conf = &(sdata->u.mesh.mshcfg);
1187 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1188 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1189 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1190 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1191 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1192 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1193 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1194 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1195 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1196 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1197 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1198 conf->dot11MeshTTL = nconf->dot11MeshTTL;
1199 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
1200 conf->dot11MeshTTL = nconf->element_ttl;
1201 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
1202 conf->auto_open_plinks = nconf->auto_open_plinks;
1203 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1204 conf->dot11MeshHWMPmaxPREQretries =
1205 nconf->dot11MeshHWMPmaxPREQretries;
1206 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1207 conf->path_refresh_time = nconf->path_refresh_time;
1208 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1209 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1210 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1211 conf->dot11MeshHWMPactivePathTimeout =
1212 nconf->dot11MeshHWMPactivePathTimeout;
1213 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1214 conf->dot11MeshHWMPpreqMinInterval =
1215 nconf->dot11MeshHWMPpreqMinInterval;
1216 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1217 mask))
1218 conf->dot11MeshHWMPnetDiameterTraversalTime =
1219 nconf->dot11MeshHWMPnetDiameterTraversalTime;
1220 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1221 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1222 ieee80211_mesh_root_setup(ifmsh);
1223 }
1224 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
1225 /* our current gate announcement implementation rides on root
1226 * announcements, so require this ifmsh to also be a root node
1227 * */
1228 if (nconf->dot11MeshGateAnnouncementProtocol &&
1229 !conf->dot11MeshHWMPRootMode) {
1230 conf->dot11MeshHWMPRootMode = 1;
1231 ieee80211_mesh_root_setup(ifmsh);
1232 }
1233 conf->dot11MeshGateAnnouncementProtocol =
1234 nconf->dot11MeshGateAnnouncementProtocol;
1235 }
1236 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask)) {
1237 conf->dot11MeshHWMPRannInterval =
1238 nconf->dot11MeshHWMPRannInterval;
1239 }
1240 return 0;
1241 }
1242
1243 static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1244 const struct mesh_config *conf,
1245 const struct mesh_setup *setup)
1246 {
1247 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1248 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1249 int err;
1250
1251 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1252 err = copy_mesh_setup(ifmsh, setup);
1253 if (err)
1254 return err;
1255 ieee80211_start_mesh(sdata);
1256
1257 return 0;
1258 }
1259
1260 static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1261 {
1262 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1263
1264 ieee80211_stop_mesh(sdata);
1265
1266 return 0;
1267 }
1268 #endif
1269
1270 static int ieee80211_change_bss(struct wiphy *wiphy,
1271 struct net_device *dev,
1272 struct bss_parameters *params)
1273 {
1274 struct ieee80211_sub_if_data *sdata;
1275 u32 changed = 0;
1276
1277 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1278
1279 if (params->use_cts_prot >= 0) {
1280 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
1281 changed |= BSS_CHANGED_ERP_CTS_PROT;
1282 }
1283 if (params->use_short_preamble >= 0) {
1284 sdata->vif.bss_conf.use_short_preamble =
1285 params->use_short_preamble;
1286 changed |= BSS_CHANGED_ERP_PREAMBLE;
1287 }
1288
1289 if (!sdata->vif.bss_conf.use_short_slot &&
1290 sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
1291 sdata->vif.bss_conf.use_short_slot = true;
1292 changed |= BSS_CHANGED_ERP_SLOT;
1293 }
1294
1295 if (params->use_short_slot_time >= 0) {
1296 sdata->vif.bss_conf.use_short_slot =
1297 params->use_short_slot_time;
1298 changed |= BSS_CHANGED_ERP_SLOT;
1299 }
1300
1301 if (params->basic_rates) {
1302 int i, j;
1303 u32 rates = 0;
1304 struct ieee80211_local *local = wiphy_priv(wiphy);
1305 struct ieee80211_supported_band *sband =
1306 wiphy->bands[local->oper_channel->band];
1307
1308 for (i = 0; i < params->basic_rates_len; i++) {
1309 int rate = (params->basic_rates[i] & 0x7f) * 5;
1310 for (j = 0; j < sband->n_bitrates; j++) {
1311 if (sband->bitrates[j].bitrate == rate)
1312 rates |= BIT(j);
1313 }
1314 }
1315 sdata->vif.bss_conf.basic_rates = rates;
1316 changed |= BSS_CHANGED_BASIC_RATES;
1317 }
1318
1319 if (params->ap_isolate >= 0) {
1320 if (params->ap_isolate)
1321 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1322 else
1323 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1324 }
1325
1326 if (params->ht_opmode >= 0) {
1327 sdata->vif.bss_conf.ht_operation_mode =
1328 (u16) params->ht_opmode;
1329 changed |= BSS_CHANGED_HT;
1330 }
1331
1332 ieee80211_bss_info_change_notify(sdata, changed);
1333
1334 return 0;
1335 }
1336
1337 static int ieee80211_set_txq_params(struct wiphy *wiphy,
1338 struct net_device *dev,
1339 struct ieee80211_txq_params *params)
1340 {
1341 struct ieee80211_local *local = wiphy_priv(wiphy);
1342 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1343 struct ieee80211_tx_queue_params p;
1344
1345 if (!local->ops->conf_tx)
1346 return -EOPNOTSUPP;
1347
1348 memset(&p, 0, sizeof(p));
1349 p.aifs = params->aifs;
1350 p.cw_max = params->cwmax;
1351 p.cw_min = params->cwmin;
1352 p.txop = params->txop;
1353
1354 /*
1355 * Setting tx queue params disables u-apsd because it's only
1356 * called in master mode.
1357 */
1358 p.uapsd = false;
1359
1360 if (params->queue >= local->hw.queues)
1361 return -EINVAL;
1362
1363 sdata->tx_conf[params->queue] = p;
1364 if (drv_conf_tx(local, sdata, params->queue, &p)) {
1365 wiphy_debug(local->hw.wiphy,
1366 "failed to set TX queue parameters for queue %d\n",
1367 params->queue);
1368 return -EINVAL;
1369 }
1370
1371 return 0;
1372 }
1373
1374 static int ieee80211_set_channel(struct wiphy *wiphy,
1375 struct net_device *netdev,
1376 struct ieee80211_channel *chan,
1377 enum nl80211_channel_type channel_type)
1378 {
1379 struct ieee80211_local *local = wiphy_priv(wiphy);
1380 struct ieee80211_sub_if_data *sdata = NULL;
1381 struct ieee80211_channel *old_oper;
1382 enum nl80211_channel_type old_oper_type;
1383 enum nl80211_channel_type old_vif_oper_type= NL80211_CHAN_NO_HT;
1384
1385 if (netdev)
1386 sdata = IEEE80211_DEV_TO_SUB_IF(netdev);
1387
1388 switch (ieee80211_get_channel_mode(local, NULL)) {
1389 case CHAN_MODE_HOPPING:
1390 return -EBUSY;
1391 case CHAN_MODE_FIXED:
1392 if (local->oper_channel != chan)
1393 return -EBUSY;
1394 if (!sdata && local->_oper_channel_type == channel_type)
1395 return 0;
1396 break;
1397 case CHAN_MODE_UNDEFINED:
1398 break;
1399 }
1400
1401 if (sdata)
1402 old_vif_oper_type = sdata->vif.bss_conf.channel_type;
1403 old_oper_type = local->_oper_channel_type;
1404
1405 if (!ieee80211_set_channel_type(local, sdata, channel_type))
1406 return -EBUSY;
1407
1408 old_oper = local->oper_channel;
1409 local->oper_channel = chan;
1410
1411 /* Update driver if changes were actually made. */
1412 if ((old_oper != local->oper_channel) ||
1413 (old_oper_type != local->_oper_channel_type))
1414 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
1415
1416 if (sdata && sdata->vif.type != NL80211_IFTYPE_MONITOR &&
1417 old_vif_oper_type != sdata->vif.bss_conf.channel_type)
1418 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1419
1420 return 0;
1421 }
1422
1423 #ifdef CONFIG_PM
1424 static int ieee80211_suspend(struct wiphy *wiphy,
1425 struct cfg80211_wowlan *wowlan)
1426 {
1427 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
1428 }
1429
1430 static int ieee80211_resume(struct wiphy *wiphy)
1431 {
1432 return __ieee80211_resume(wiphy_priv(wiphy));
1433 }
1434 #else
1435 #define ieee80211_suspend NULL
1436 #define ieee80211_resume NULL
1437 #endif
1438
1439 static int ieee80211_scan(struct wiphy *wiphy,
1440 struct net_device *dev,
1441 struct cfg80211_scan_request *req)
1442 {
1443 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1444
1445 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1446 case NL80211_IFTYPE_STATION:
1447 case NL80211_IFTYPE_ADHOC:
1448 case NL80211_IFTYPE_MESH_POINT:
1449 case NL80211_IFTYPE_P2P_CLIENT:
1450 break;
1451 case NL80211_IFTYPE_P2P_GO:
1452 if (sdata->local->ops->hw_scan)
1453 break;
1454 /*
1455 * FIXME: implement NoA while scanning in software,
1456 * for now fall through to allow scanning only when
1457 * beaconing hasn't been configured yet
1458 */
1459 case NL80211_IFTYPE_AP:
1460 if (sdata->u.ap.beacon)
1461 return -EOPNOTSUPP;
1462 break;
1463 default:
1464 return -EOPNOTSUPP;
1465 }
1466
1467 return ieee80211_request_scan(sdata, req);
1468 }
1469
1470 static int
1471 ieee80211_sched_scan_start(struct wiphy *wiphy,
1472 struct net_device *dev,
1473 struct cfg80211_sched_scan_request *req)
1474 {
1475 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1476
1477 if (!sdata->local->ops->sched_scan_start)
1478 return -EOPNOTSUPP;
1479
1480 return ieee80211_request_sched_scan_start(sdata, req);
1481 }
1482
1483 static int
1484 ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
1485 {
1486 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1487
1488 if (!sdata->local->ops->sched_scan_stop)
1489 return -EOPNOTSUPP;
1490
1491 return ieee80211_request_sched_scan_stop(sdata);
1492 }
1493
1494 static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1495 struct cfg80211_auth_request *req)
1496 {
1497 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
1498 }
1499
1500 static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1501 struct cfg80211_assoc_request *req)
1502 {
1503 struct ieee80211_local *local = wiphy_priv(wiphy);
1504 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1505
1506 switch (ieee80211_get_channel_mode(local, sdata)) {
1507 case CHAN_MODE_HOPPING:
1508 return -EBUSY;
1509 case CHAN_MODE_FIXED:
1510 if (local->oper_channel == req->bss->channel)
1511 break;
1512 return -EBUSY;
1513 case CHAN_MODE_UNDEFINED:
1514 break;
1515 }
1516
1517 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
1518 }
1519
1520 static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
1521 struct cfg80211_deauth_request *req,
1522 void *cookie)
1523 {
1524 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1525 req, cookie);
1526 }
1527
1528 static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
1529 struct cfg80211_disassoc_request *req,
1530 void *cookie)
1531 {
1532 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1533 req, cookie);
1534 }
1535
1536 static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1537 struct cfg80211_ibss_params *params)
1538 {
1539 struct ieee80211_local *local = wiphy_priv(wiphy);
1540 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1541
1542 switch (ieee80211_get_channel_mode(local, sdata)) {
1543 case CHAN_MODE_HOPPING:
1544 return -EBUSY;
1545 case CHAN_MODE_FIXED:
1546 if (!params->channel_fixed)
1547 return -EBUSY;
1548 if (local->oper_channel == params->channel)
1549 break;
1550 return -EBUSY;
1551 case CHAN_MODE_UNDEFINED:
1552 break;
1553 }
1554
1555 return ieee80211_ibss_join(sdata, params);
1556 }
1557
1558 static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1559 {
1560 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1561
1562 return ieee80211_ibss_leave(sdata);
1563 }
1564
1565 static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1566 {
1567 struct ieee80211_local *local = wiphy_priv(wiphy);
1568 int err;
1569
1570 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
1571 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
1572
1573 if (err)
1574 return err;
1575 }
1576
1577 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1578 err = drv_set_coverage_class(local, wiphy->coverage_class);
1579
1580 if (err)
1581 return err;
1582 }
1583
1584 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
1585 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
1586
1587 if (err)
1588 return err;
1589 }
1590
1591 if (changed & WIPHY_PARAM_RETRY_SHORT)
1592 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1593 if (changed & WIPHY_PARAM_RETRY_LONG)
1594 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1595 if (changed &
1596 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1597 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1598
1599 return 0;
1600 }
1601
1602 static int ieee80211_set_tx_power(struct wiphy *wiphy,
1603 enum nl80211_tx_power_setting type, int mbm)
1604 {
1605 struct ieee80211_local *local = wiphy_priv(wiphy);
1606 struct ieee80211_channel *chan = local->hw.conf.channel;
1607 u32 changes = 0;
1608
1609 switch (type) {
1610 case NL80211_TX_POWER_AUTOMATIC:
1611 local->user_power_level = -1;
1612 break;
1613 case NL80211_TX_POWER_LIMITED:
1614 if (mbm < 0 || (mbm % 100))
1615 return -EOPNOTSUPP;
1616 local->user_power_level = MBM_TO_DBM(mbm);
1617 break;
1618 case NL80211_TX_POWER_FIXED:
1619 if (mbm < 0 || (mbm % 100))
1620 return -EOPNOTSUPP;
1621 /* TODO: move to cfg80211 when it knows the channel */
1622 if (MBM_TO_DBM(mbm) > chan->max_power)
1623 return -EINVAL;
1624 local->user_power_level = MBM_TO_DBM(mbm);
1625 break;
1626 }
1627
1628 ieee80211_hw_config(local, changes);
1629
1630 return 0;
1631 }
1632
1633 static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1634 {
1635 struct ieee80211_local *local = wiphy_priv(wiphy);
1636
1637 *dbm = local->hw.conf.power_level;
1638
1639 return 0;
1640 }
1641
1642 static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
1643 const u8 *addr)
1644 {
1645 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1646
1647 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
1648
1649 return 0;
1650 }
1651
1652 static void ieee80211_rfkill_poll(struct wiphy *wiphy)
1653 {
1654 struct ieee80211_local *local = wiphy_priv(wiphy);
1655
1656 drv_rfkill_poll(local);
1657 }
1658
1659 #ifdef CONFIG_NL80211_TESTMODE
1660 static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
1661 {
1662 struct ieee80211_local *local = wiphy_priv(wiphy);
1663
1664 if (!local->ops->testmode_cmd)
1665 return -EOPNOTSUPP;
1666
1667 return local->ops->testmode_cmd(&local->hw, data, len);
1668 }
1669
1670 static int ieee80211_testmode_dump(struct wiphy *wiphy,
1671 struct sk_buff *skb,
1672 struct netlink_callback *cb,
1673 void *data, int len)
1674 {
1675 struct ieee80211_local *local = wiphy_priv(wiphy);
1676
1677 if (!local->ops->testmode_dump)
1678 return -EOPNOTSUPP;
1679
1680 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
1681 }
1682 #endif
1683
1684 int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
1685 enum ieee80211_smps_mode smps_mode)
1686 {
1687 const u8 *ap;
1688 enum ieee80211_smps_mode old_req;
1689 int err;
1690
1691 lockdep_assert_held(&sdata->u.mgd.mtx);
1692
1693 old_req = sdata->u.mgd.req_smps;
1694 sdata->u.mgd.req_smps = smps_mode;
1695
1696 if (old_req == smps_mode &&
1697 smps_mode != IEEE80211_SMPS_AUTOMATIC)
1698 return 0;
1699
1700 /*
1701 * If not associated, or current association is not an HT
1702 * association, there's no need to send an action frame.
1703 */
1704 if (!sdata->u.mgd.associated ||
1705 sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) {
1706 mutex_lock(&sdata->local->iflist_mtx);
1707 ieee80211_recalc_smps(sdata->local);
1708 mutex_unlock(&sdata->local->iflist_mtx);
1709 return 0;
1710 }
1711
1712 ap = sdata->u.mgd.associated->bssid;
1713
1714 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1715 if (sdata->u.mgd.powersave)
1716 smps_mode = IEEE80211_SMPS_DYNAMIC;
1717 else
1718 smps_mode = IEEE80211_SMPS_OFF;
1719 }
1720
1721 /* send SM PS frame to AP */
1722 err = ieee80211_send_smps_action(sdata, smps_mode,
1723 ap, ap);
1724 if (err)
1725 sdata->u.mgd.req_smps = old_req;
1726
1727 return err;
1728 }
1729
1730 static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1731 bool enabled, int timeout)
1732 {
1733 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1734 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1735
1736 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1737 return -EOPNOTSUPP;
1738
1739 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1740 return -EOPNOTSUPP;
1741
1742 if (enabled == sdata->u.mgd.powersave &&
1743 timeout == local->dynamic_ps_forced_timeout)
1744 return 0;
1745
1746 sdata->u.mgd.powersave = enabled;
1747 local->dynamic_ps_forced_timeout = timeout;
1748
1749 /* no change, but if automatic follow powersave */
1750 mutex_lock(&sdata->u.mgd.mtx);
1751 __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
1752 mutex_unlock(&sdata->u.mgd.mtx);
1753
1754 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
1755 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1756
1757 ieee80211_recalc_ps(local, -1);
1758
1759 return 0;
1760 }
1761
1762 static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
1763 struct net_device *dev,
1764 s32 rssi_thold, u32 rssi_hyst)
1765 {
1766 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1767 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1768 struct ieee80211_vif *vif = &sdata->vif;
1769 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1770
1771 if (rssi_thold == bss_conf->cqm_rssi_thold &&
1772 rssi_hyst == bss_conf->cqm_rssi_hyst)
1773 return 0;
1774
1775 bss_conf->cqm_rssi_thold = rssi_thold;
1776 bss_conf->cqm_rssi_hyst = rssi_hyst;
1777
1778 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1779 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1780 return -EOPNOTSUPP;
1781 return 0;
1782 }
1783
1784 /* tell the driver upon association, unless already associated */
1785 if (sdata->u.mgd.associated)
1786 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
1787
1788 return 0;
1789 }
1790
1791 static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
1792 struct net_device *dev,
1793 const u8 *addr,
1794 const struct cfg80211_bitrate_mask *mask)
1795 {
1796 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1797 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1798 int i, ret;
1799
1800 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
1801 ret = drv_set_bitrate_mask(local, sdata, mask);
1802 if (ret)
1803 return ret;
1804 }
1805
1806 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1807 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
1808
1809 return 0;
1810 }
1811
1812 static int ieee80211_remain_on_channel_hw(struct ieee80211_local *local,
1813 struct net_device *dev,
1814 struct ieee80211_channel *chan,
1815 enum nl80211_channel_type chantype,
1816 unsigned int duration, u64 *cookie)
1817 {
1818 int ret;
1819 u32 random_cookie;
1820
1821 lockdep_assert_held(&local->mtx);
1822
1823 if (local->hw_roc_cookie)
1824 return -EBUSY;
1825 /* must be nonzero */
1826 random_cookie = random32() | 1;
1827
1828 *cookie = random_cookie;
1829 local->hw_roc_dev = dev;
1830 local->hw_roc_cookie = random_cookie;
1831 local->hw_roc_channel = chan;
1832 local->hw_roc_channel_type = chantype;
1833 local->hw_roc_duration = duration;
1834 ret = drv_remain_on_channel(local, chan, chantype, duration);
1835 if (ret) {
1836 local->hw_roc_channel = NULL;
1837 local->hw_roc_cookie = 0;
1838 }
1839
1840 return ret;
1841 }
1842
1843 static int ieee80211_remain_on_channel(struct wiphy *wiphy,
1844 struct net_device *dev,
1845 struct ieee80211_channel *chan,
1846 enum nl80211_channel_type channel_type,
1847 unsigned int duration,
1848 u64 *cookie)
1849 {
1850 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1851 struct ieee80211_local *local = sdata->local;
1852
1853 if (local->ops->remain_on_channel) {
1854 int ret;
1855
1856 mutex_lock(&local->mtx);
1857 ret = ieee80211_remain_on_channel_hw(local, dev,
1858 chan, channel_type,
1859 duration, cookie);
1860 local->hw_roc_for_tx = false;
1861 mutex_unlock(&local->mtx);
1862
1863 return ret;
1864 }
1865
1866 return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
1867 duration, cookie);
1868 }
1869
1870 static int ieee80211_cancel_remain_on_channel_hw(struct ieee80211_local *local,
1871 u64 cookie)
1872 {
1873 int ret;
1874
1875 lockdep_assert_held(&local->mtx);
1876
1877 if (local->hw_roc_cookie != cookie)
1878 return -ENOENT;
1879
1880 ret = drv_cancel_remain_on_channel(local);
1881 if (ret)
1882 return ret;
1883
1884 local->hw_roc_cookie = 0;
1885 local->hw_roc_channel = NULL;
1886
1887 ieee80211_recalc_idle(local);
1888
1889 return 0;
1890 }
1891
1892 static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
1893 struct net_device *dev,
1894 u64 cookie)
1895 {
1896 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1897 struct ieee80211_local *local = sdata->local;
1898
1899 if (local->ops->cancel_remain_on_channel) {
1900 int ret;
1901
1902 mutex_lock(&local->mtx);
1903 ret = ieee80211_cancel_remain_on_channel_hw(local, cookie);
1904 mutex_unlock(&local->mtx);
1905
1906 return ret;
1907 }
1908
1909 return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
1910 }
1911
1912 static enum work_done_result
1913 ieee80211_offchan_tx_done(struct ieee80211_work *wk, struct sk_buff *skb)
1914 {
1915 /*
1916 * Use the data embedded in the work struct for reporting
1917 * here so if the driver mangled the SKB before dropping
1918 * it (which is the only way we really should get here)
1919 * then we don't report mangled data.
1920 *
1921 * If there was no wait time, then by the time we get here
1922 * the driver will likely not have reported the status yet,
1923 * so in that case userspace will have to deal with it.
1924 */
1925
1926 if (wk->offchan_tx.wait && !wk->offchan_tx.status)
1927 cfg80211_mgmt_tx_status(wk->sdata->dev,
1928 (unsigned long) wk->offchan_tx.frame,
1929 wk->ie, wk->ie_len, false, GFP_KERNEL);
1930
1931 return WORK_DONE_DESTROY;
1932 }
1933
1934 static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct net_device *dev,
1935 struct ieee80211_channel *chan, bool offchan,
1936 enum nl80211_channel_type channel_type,
1937 bool channel_type_valid, unsigned int wait,
1938 const u8 *buf, size_t len, bool no_cck,
1939 u64 *cookie)
1940 {
1941 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1942 struct ieee80211_local *local = sdata->local;
1943 struct sk_buff *skb;
1944 struct sta_info *sta;
1945 struct ieee80211_work *wk;
1946 const struct ieee80211_mgmt *mgmt = (void *)buf;
1947 u32 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
1948 IEEE80211_TX_CTL_REQ_TX_STATUS;
1949 bool is_offchan = false;
1950
1951 /* Check that we are on the requested channel for transmission */
1952 if (chan != local->tmp_channel &&
1953 chan != local->oper_channel)
1954 is_offchan = true;
1955 if (channel_type_valid &&
1956 (channel_type != local->tmp_channel_type &&
1957 channel_type != local->_oper_channel_type))
1958 is_offchan = true;
1959
1960 if (chan == local->hw_roc_channel) {
1961 /* TODO: check channel type? */
1962 is_offchan = false;
1963 flags |= IEEE80211_TX_CTL_TX_OFFCHAN;
1964 }
1965
1966 if (no_cck)
1967 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
1968
1969 if (is_offchan && !offchan)
1970 return -EBUSY;
1971
1972 switch (sdata->vif.type) {
1973 case NL80211_IFTYPE_ADHOC:
1974 case NL80211_IFTYPE_AP:
1975 case NL80211_IFTYPE_AP_VLAN:
1976 case NL80211_IFTYPE_P2P_GO:
1977 case NL80211_IFTYPE_MESH_POINT:
1978 if (!ieee80211_is_action(mgmt->frame_control) ||
1979 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC)
1980 break;
1981 rcu_read_lock();
1982 sta = sta_info_get(sdata, mgmt->da);
1983 rcu_read_unlock();
1984 if (!sta)
1985 return -ENOLINK;
1986 break;
1987 case NL80211_IFTYPE_STATION:
1988 case NL80211_IFTYPE_P2P_CLIENT:
1989 break;
1990 default:
1991 return -EOPNOTSUPP;
1992 }
1993
1994 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
1995 if (!skb)
1996 return -ENOMEM;
1997 skb_reserve(skb, local->hw.extra_tx_headroom);
1998
1999 memcpy(skb_put(skb, len), buf, len);
2000
2001 IEEE80211_SKB_CB(skb)->flags = flags;
2002
2003 skb->dev = sdata->dev;
2004
2005 *cookie = (unsigned long) skb;
2006
2007 if (is_offchan && local->ops->remain_on_channel) {
2008 unsigned int duration;
2009 int ret;
2010
2011 mutex_lock(&local->mtx);
2012 /*
2013 * If the duration is zero, then the driver
2014 * wouldn't actually do anything. Set it to
2015 * 100 for now.
2016 *
2017 * TODO: cancel the off-channel operation
2018 * when we get the SKB's TX status and
2019 * the wait time was zero before.
2020 */
2021 duration = 100;
2022 if (wait)
2023 duration = wait;
2024 ret = ieee80211_remain_on_channel_hw(local, dev, chan,
2025 channel_type,
2026 duration, cookie);
2027 if (ret) {
2028 kfree_skb(skb);
2029 mutex_unlock(&local->mtx);
2030 return ret;
2031 }
2032
2033 local->hw_roc_for_tx = true;
2034 local->hw_roc_duration = wait;
2035
2036 /*
2037 * queue up frame for transmission after
2038 * ieee80211_ready_on_channel call
2039 */
2040
2041 /* modify cookie to prevent API mismatches */
2042 *cookie ^= 2;
2043 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN;
2044 local->hw_roc_skb = skb;
2045 local->hw_roc_skb_for_status = skb;
2046 mutex_unlock(&local->mtx);
2047
2048 return 0;
2049 }
2050
2051 /*
2052 * Can transmit right away if the channel was the
2053 * right one and there's no wait involved... If a
2054 * wait is involved, we might otherwise not be on
2055 * the right channel for long enough!
2056 */
2057 if (!is_offchan && !wait && !sdata->vif.bss_conf.idle) {
2058 ieee80211_tx_skb(sdata, skb);
2059 return 0;
2060 }
2061
2062 wk = kzalloc(sizeof(*wk) + len, GFP_KERNEL);
2063 if (!wk) {
2064 kfree_skb(skb);
2065 return -ENOMEM;
2066 }
2067
2068 wk->type = IEEE80211_WORK_OFFCHANNEL_TX;
2069 wk->chan = chan;
2070 wk->chan_type = channel_type;
2071 wk->sdata = sdata;
2072 wk->done = ieee80211_offchan_tx_done;
2073 wk->offchan_tx.frame = skb;
2074 wk->offchan_tx.wait = wait;
2075 wk->ie_len = len;
2076 memcpy(wk->ie, buf, len);
2077
2078 ieee80211_add_work(wk);
2079 return 0;
2080 }
2081
2082 static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
2083 struct net_device *dev,
2084 u64 cookie)
2085 {
2086 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2087 struct ieee80211_local *local = sdata->local;
2088 struct ieee80211_work *wk;
2089 int ret = -ENOENT;
2090
2091 mutex_lock(&local->mtx);
2092
2093 if (local->ops->cancel_remain_on_channel) {
2094 cookie ^= 2;
2095 ret = ieee80211_cancel_remain_on_channel_hw(local, cookie);
2096
2097 if (ret == 0) {
2098 kfree_skb(local->hw_roc_skb);
2099 local->hw_roc_skb = NULL;
2100 local->hw_roc_skb_for_status = NULL;
2101 }
2102
2103 mutex_unlock(&local->mtx);
2104
2105 return ret;
2106 }
2107
2108 list_for_each_entry(wk, &local->work_list, list) {
2109 if (wk->sdata != sdata)
2110 continue;
2111
2112 if (wk->type != IEEE80211_WORK_OFFCHANNEL_TX)
2113 continue;
2114
2115 if (cookie != (unsigned long) wk->offchan_tx.frame)
2116 continue;
2117
2118 wk->timeout = jiffies;
2119
2120 ieee80211_queue_work(&local->hw, &local->work_work);
2121 ret = 0;
2122 break;
2123 }
2124 mutex_unlock(&local->mtx);
2125
2126 return ret;
2127 }
2128
2129 static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
2130 struct net_device *dev,
2131 u16 frame_type, bool reg)
2132 {
2133 struct ieee80211_local *local = wiphy_priv(wiphy);
2134
2135 if (frame_type != (IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ))
2136 return;
2137
2138 if (reg)
2139 local->probe_req_reg++;
2140 else
2141 local->probe_req_reg--;
2142
2143 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
2144 }
2145
2146 static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
2147 {
2148 struct ieee80211_local *local = wiphy_priv(wiphy);
2149
2150 if (local->started)
2151 return -EOPNOTSUPP;
2152
2153 return drv_set_antenna(local, tx_ant, rx_ant);
2154 }
2155
2156 static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
2157 {
2158 struct ieee80211_local *local = wiphy_priv(wiphy);
2159
2160 return drv_get_antenna(local, tx_ant, rx_ant);
2161 }
2162
2163 static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
2164 {
2165 struct ieee80211_local *local = wiphy_priv(wiphy);
2166
2167 return drv_set_ringparam(local, tx, rx);
2168 }
2169
2170 static void ieee80211_get_ringparam(struct wiphy *wiphy,
2171 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
2172 {
2173 struct ieee80211_local *local = wiphy_priv(wiphy);
2174
2175 drv_get_ringparam(local, tx, tx_max, rx, rx_max);
2176 }
2177
2178 static int ieee80211_set_rekey_data(struct wiphy *wiphy,
2179 struct net_device *dev,
2180 struct cfg80211_gtk_rekey_data *data)
2181 {
2182 struct ieee80211_local *local = wiphy_priv(wiphy);
2183 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2184
2185 if (!local->ops->set_rekey_data)
2186 return -EOPNOTSUPP;
2187
2188 drv_set_rekey_data(local, sdata, data);
2189
2190 return 0;
2191 }
2192
2193 static void ieee80211_tdls_add_ext_capab(struct sk_buff *skb)
2194 {
2195 u8 *pos = (void *)skb_put(skb, 7);
2196
2197 *pos++ = WLAN_EID_EXT_CAPABILITY;
2198 *pos++ = 5; /* len */
2199 *pos++ = 0x0;
2200 *pos++ = 0x0;
2201 *pos++ = 0x0;
2202 *pos++ = 0x0;
2203 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
2204 }
2205
2206 static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata)
2207 {
2208 struct ieee80211_local *local = sdata->local;
2209 u16 capab;
2210
2211 capab = 0;
2212 if (local->oper_channel->band != IEEE80211_BAND_2GHZ)
2213 return capab;
2214
2215 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
2216 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
2217 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
2218 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
2219
2220 return capab;
2221 }
2222
2223 static void ieee80211_tdls_add_link_ie(struct sk_buff *skb, u8 *src_addr,
2224 u8 *peer, u8 *bssid)
2225 {
2226 struct ieee80211_tdls_lnkie *lnkid;
2227
2228 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
2229
2230 lnkid->ie_type = WLAN_EID_LINK_ID;
2231 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
2232
2233 memcpy(lnkid->bssid, bssid, ETH_ALEN);
2234 memcpy(lnkid->init_sta, src_addr, ETH_ALEN);
2235 memcpy(lnkid->resp_sta, peer, ETH_ALEN);
2236 }
2237
2238 static int
2239 ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
2240 u8 *peer, u8 action_code, u8 dialog_token,
2241 u16 status_code, struct sk_buff *skb)
2242 {
2243 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2244 struct ieee80211_tdls_data *tf;
2245
2246 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
2247
2248 memcpy(tf->da, peer, ETH_ALEN);
2249 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
2250 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
2251 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
2252
2253 switch (action_code) {
2254 case WLAN_TDLS_SETUP_REQUEST:
2255 tf->category = WLAN_CATEGORY_TDLS;
2256 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
2257
2258 skb_put(skb, sizeof(tf->u.setup_req));
2259 tf->u.setup_req.dialog_token = dialog_token;
2260 tf->u.setup_req.capability =
2261 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
2262
2263 ieee80211_add_srates_ie(&sdata->vif, skb);
2264 ieee80211_add_ext_srates_ie(&sdata->vif, skb);
2265 ieee80211_tdls_add_ext_capab(skb);
2266 break;
2267 case WLAN_TDLS_SETUP_RESPONSE:
2268 tf->category = WLAN_CATEGORY_TDLS;
2269 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
2270
2271 skb_put(skb, sizeof(tf->u.setup_resp));
2272 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
2273 tf->u.setup_resp.dialog_token = dialog_token;
2274 tf->u.setup_resp.capability =
2275 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
2276
2277 ieee80211_add_srates_ie(&sdata->vif, skb);
2278 ieee80211_add_ext_srates_ie(&sdata->vif, skb);
2279 ieee80211_tdls_add_ext_capab(skb);
2280 break;
2281 case WLAN_TDLS_SETUP_CONFIRM:
2282 tf->category = WLAN_CATEGORY_TDLS;
2283 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
2284
2285 skb_put(skb, sizeof(tf->u.setup_cfm));
2286 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
2287 tf->u.setup_cfm.dialog_token = dialog_token;
2288 break;
2289 case WLAN_TDLS_TEARDOWN:
2290 tf->category = WLAN_CATEGORY_TDLS;
2291 tf->action_code = WLAN_TDLS_TEARDOWN;
2292
2293 skb_put(skb, sizeof(tf->u.teardown));
2294 tf->u.teardown.reason_code = cpu_to_le16(status_code);
2295 break;
2296 case WLAN_TDLS_DISCOVERY_REQUEST:
2297 tf->category = WLAN_CATEGORY_TDLS;
2298 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
2299
2300 skb_put(skb, sizeof(tf->u.discover_req));
2301 tf->u.discover_req.dialog_token = dialog_token;
2302 break;
2303 default:
2304 return -EINVAL;
2305 }
2306
2307 return 0;
2308 }
2309
2310 static int
2311 ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
2312 u8 *peer, u8 action_code, u8 dialog_token,
2313 u16 status_code, struct sk_buff *skb)
2314 {
2315 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2316 struct ieee80211_mgmt *mgmt;
2317
2318 mgmt = (void *)skb_put(skb, 24);
2319 memset(mgmt, 0, 24);
2320 memcpy(mgmt->da, peer, ETH_ALEN);
2321 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
2322 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
2323
2324 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2325 IEEE80211_STYPE_ACTION);
2326
2327 switch (action_code) {
2328 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
2329 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
2330 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
2331 mgmt->u.action.u.tdls_discover_resp.action_code =
2332 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
2333 mgmt->u.action.u.tdls_discover_resp.dialog_token =
2334 dialog_token;
2335 mgmt->u.action.u.tdls_discover_resp.capability =
2336 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
2337
2338 ieee80211_add_srates_ie(&sdata->vif, skb);
2339 ieee80211_add_ext_srates_ie(&sdata->vif, skb);
2340 ieee80211_tdls_add_ext_capab(skb);
2341 break;
2342 default:
2343 return -EINVAL;
2344 }
2345
2346 return 0;
2347 }
2348
2349 static int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
2350 u8 *peer, u8 action_code, u8 dialog_token,
2351 u16 status_code, const u8 *extra_ies,
2352 size_t extra_ies_len)
2353 {
2354 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2355 struct ieee80211_local *local = sdata->local;
2356 struct ieee80211_tx_info *info;
2357 struct sk_buff *skb = NULL;
2358 bool send_direct;
2359 int ret;
2360
2361 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
2362 return -ENOTSUPP;
2363
2364 /* make sure we are in managed mode, and associated */
2365 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
2366 !sdata->u.mgd.associated)
2367 return -EINVAL;
2368
2369 #ifdef CONFIG_MAC80211_VERBOSE_TDLS_DEBUG
2370 printk(KERN_DEBUG "TDLS mgmt action %d peer %pM\n", action_code, peer);
2371 #endif
2372
2373 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
2374 max(sizeof(struct ieee80211_mgmt),
2375 sizeof(struct ieee80211_tdls_data)) +
2376 50 + /* supported rates */
2377 7 + /* ext capab */
2378 extra_ies_len +
2379 sizeof(struct ieee80211_tdls_lnkie));
2380 if (!skb)
2381 return -ENOMEM;
2382
2383 info = IEEE80211_SKB_CB(skb);
2384 skb_reserve(skb, local->hw.extra_tx_headroom);
2385
2386 switch (action_code) {
2387 case WLAN_TDLS_SETUP_REQUEST:
2388 case WLAN_TDLS_SETUP_RESPONSE:
2389 case WLAN_TDLS_SETUP_CONFIRM:
2390 case WLAN_TDLS_TEARDOWN:
2391 case WLAN_TDLS_DISCOVERY_REQUEST:
2392 ret = ieee80211_prep_tdls_encap_data(wiphy, dev, peer,
2393 action_code, dialog_token,
2394 status_code, skb);
2395 send_direct = false;
2396 break;
2397 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
2398 ret = ieee80211_prep_tdls_direct(wiphy, dev, peer, action_code,
2399 dialog_token, status_code,
2400 skb);
2401 send_direct = true;
2402 break;
2403 default:
2404 ret = -ENOTSUPP;
2405 break;
2406 }
2407
2408 if (ret < 0)
2409 goto fail;
2410
2411 if (extra_ies_len)
2412 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
2413
2414 /* the TDLS link IE is always added last */
2415 switch (action_code) {
2416 case WLAN_TDLS_SETUP_REQUEST:
2417 case WLAN_TDLS_SETUP_CONFIRM:
2418 case WLAN_TDLS_TEARDOWN:
2419 case WLAN_TDLS_DISCOVERY_REQUEST:
2420 /* we are the initiator */
2421 ieee80211_tdls_add_link_ie(skb, sdata->vif.addr, peer,
2422 sdata->u.mgd.bssid);
2423 break;
2424 case WLAN_TDLS_SETUP_RESPONSE:
2425 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
2426 /* we are the responder */
2427 ieee80211_tdls_add_link_ie(skb, peer, sdata->vif.addr,
2428 sdata->u.mgd.bssid);
2429 break;
2430 default:
2431 ret = -ENOTSUPP;
2432 goto fail;
2433 }
2434
2435 if (send_direct) {
2436 ieee80211_tx_skb(sdata, skb);
2437 return 0;
2438 }
2439
2440 /*
2441 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
2442 * we should default to AC_VI.
2443 */
2444 switch (action_code) {
2445 case WLAN_TDLS_SETUP_REQUEST:
2446 case WLAN_TDLS_SETUP_RESPONSE:
2447 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
2448 skb->priority = 2;
2449 break;
2450 default:
2451 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
2452 skb->priority = 5;
2453 break;
2454 }
2455
2456 /* disable bottom halves when entering the Tx path */
2457 local_bh_disable();
2458 ret = ieee80211_subif_start_xmit(skb, dev);
2459 local_bh_enable();
2460
2461 return ret;
2462
2463 fail:
2464 dev_kfree_skb(skb);
2465 return ret;
2466 }
2467
2468 static int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
2469 u8 *peer, enum nl80211_tdls_operation oper)
2470 {
2471 struct sta_info *sta;
2472 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2473
2474 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
2475 return -ENOTSUPP;
2476
2477 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2478 return -EINVAL;
2479
2480 #ifdef CONFIG_MAC80211_VERBOSE_TDLS_DEBUG
2481 printk(KERN_DEBUG "TDLS oper %d peer %pM\n", oper, peer);
2482 #endif
2483
2484 switch (oper) {
2485 case NL80211_TDLS_ENABLE_LINK:
2486 rcu_read_lock();
2487 sta = sta_info_get(sdata, peer);
2488 if (!sta) {
2489 rcu_read_unlock();
2490 return -ENOLINK;
2491 }
2492
2493 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
2494 rcu_read_unlock();
2495 break;
2496 case NL80211_TDLS_DISABLE_LINK:
2497 return sta_info_destroy_addr(sdata, peer);
2498 case NL80211_TDLS_TEARDOWN:
2499 case NL80211_TDLS_SETUP:
2500 case NL80211_TDLS_DISCOVERY_REQ:
2501 /* We don't support in-driver setup/teardown/discovery */
2502 return -ENOTSUPP;
2503 default:
2504 return -ENOTSUPP;
2505 }
2506
2507 return 0;
2508 }
2509
2510 static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
2511 const u8 *peer, u64 *cookie)
2512 {
2513 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2514 struct ieee80211_local *local = sdata->local;
2515 struct ieee80211_qos_hdr *nullfunc;
2516 struct sk_buff *skb;
2517 int size = sizeof(*nullfunc);
2518 __le16 fc;
2519 bool qos;
2520 struct ieee80211_tx_info *info;
2521 struct sta_info *sta;
2522
2523 rcu_read_lock();
2524 sta = sta_info_get(sdata, peer);
2525 if (sta)
2526 qos = test_sta_flag(sta, WLAN_STA_WME);
2527 rcu_read_unlock();
2528
2529 if (!sta)
2530 return -ENOLINK;
2531
2532 if (qos) {
2533 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
2534 IEEE80211_STYPE_QOS_NULLFUNC |
2535 IEEE80211_FCTL_FROMDS);
2536 } else {
2537 size -= 2;
2538 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
2539 IEEE80211_STYPE_NULLFUNC |
2540 IEEE80211_FCTL_FROMDS);
2541 }
2542
2543 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
2544 if (!skb)
2545 return -ENOMEM;
2546
2547 skb->dev = dev;
2548
2549 skb_reserve(skb, local->hw.extra_tx_headroom);
2550
2551 nullfunc = (void *) skb_put(skb, size);
2552 nullfunc->frame_control = fc;
2553 nullfunc->duration_id = 0;
2554 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
2555 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
2556 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
2557 nullfunc->seq_ctrl = 0;
2558
2559 info = IEEE80211_SKB_CB(skb);
2560
2561 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
2562 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
2563
2564 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
2565 skb->priority = 7;
2566 if (qos)
2567 nullfunc->qos_ctrl = cpu_to_le16(7);
2568
2569 local_bh_disable();
2570 ieee80211_xmit(sdata, skb);
2571 local_bh_enable();
2572
2573 *cookie = (unsigned long) skb;
2574 return 0;
2575 }
2576
2577 struct cfg80211_ops mac80211_config_ops = {
2578 .add_virtual_intf = ieee80211_add_iface,
2579 .del_virtual_intf = ieee80211_del_iface,
2580 .change_virtual_intf = ieee80211_change_iface,
2581 .add_key = ieee80211_add_key,
2582 .del_key = ieee80211_del_key,
2583 .get_key = ieee80211_get_key,
2584 .set_default_key = ieee80211_config_default_key,
2585 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
2586 .add_beacon = ieee80211_add_beacon,
2587 .set_beacon = ieee80211_set_beacon,
2588 .del_beacon = ieee80211_del_beacon,
2589 .add_station = ieee80211_add_station,
2590 .del_station = ieee80211_del_station,
2591 .change_station = ieee80211_change_station,
2592 .get_station = ieee80211_get_station,
2593 .dump_station = ieee80211_dump_station,
2594 .dump_survey = ieee80211_dump_survey,
2595 #ifdef CONFIG_MAC80211_MESH
2596 .add_mpath = ieee80211_add_mpath,
2597 .del_mpath = ieee80211_del_mpath,
2598 .change_mpath = ieee80211_change_mpath,
2599 .get_mpath = ieee80211_get_mpath,
2600 .dump_mpath = ieee80211_dump_mpath,
2601 .update_mesh_config = ieee80211_update_mesh_config,
2602 .get_mesh_config = ieee80211_get_mesh_config,
2603 .join_mesh = ieee80211_join_mesh,
2604 .leave_mesh = ieee80211_leave_mesh,
2605 #endif
2606 .change_bss = ieee80211_change_bss,
2607 .set_txq_params = ieee80211_set_txq_params,
2608 .set_channel = ieee80211_set_channel,
2609 .suspend = ieee80211_suspend,
2610 .resume = ieee80211_resume,
2611 .scan = ieee80211_scan,
2612 .sched_scan_start = ieee80211_sched_scan_start,
2613 .sched_scan_stop = ieee80211_sched_scan_stop,
2614 .auth = ieee80211_auth,
2615 .assoc = ieee80211_assoc,
2616 .deauth = ieee80211_deauth,
2617 .disassoc = ieee80211_disassoc,
2618 .join_ibss = ieee80211_join_ibss,
2619 .leave_ibss = ieee80211_leave_ibss,
2620 .set_wiphy_params = ieee80211_set_wiphy_params,
2621 .set_tx_power = ieee80211_set_tx_power,
2622 .get_tx_power = ieee80211_get_tx_power,
2623 .set_wds_peer = ieee80211_set_wds_peer,
2624 .rfkill_poll = ieee80211_rfkill_poll,
2625 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
2626 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
2627 .set_power_mgmt = ieee80211_set_power_mgmt,
2628 .set_bitrate_mask = ieee80211_set_bitrate_mask,
2629 .remain_on_channel = ieee80211_remain_on_channel,
2630 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
2631 .mgmt_tx = ieee80211_mgmt_tx,
2632 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
2633 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
2634 .mgmt_frame_register = ieee80211_mgmt_frame_register,
2635 .set_antenna = ieee80211_set_antenna,
2636 .get_antenna = ieee80211_get_antenna,
2637 .set_ringparam = ieee80211_set_ringparam,
2638 .get_ringparam = ieee80211_get_ringparam,
2639 .set_rekey_data = ieee80211_set_rekey_data,
2640 .tdls_oper = ieee80211_tdls_oper,
2641 .tdls_mgmt = ieee80211_tdls_mgmt,
2642 .probe_client = ieee80211_probe_client,
2643 };
This page took 0.090086 seconds and 4 git commands to generate.