]> bbs.cooldavid.org Git - net-next-2.6.git/blob - net/mac80211/cfg.c
mac80211: remove unnecessary check in ieee80211_dump_survey
[net-next-2.6.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 <net/cfg80211.h>
16 #include "ieee80211_i.h"
17 #include "driver-ops.h"
18 #include "cfg.h"
19 #include "rate.h"
20 #include "mesh.h"
21
22 static bool nl80211_type_check(enum nl80211_iftype type)
23 {
24         switch (type) {
25         case NL80211_IFTYPE_ADHOC:
26         case NL80211_IFTYPE_STATION:
27         case NL80211_IFTYPE_MONITOR:
28 #ifdef CONFIG_MAC80211_MESH
29         case NL80211_IFTYPE_MESH_POINT:
30 #endif
31         case NL80211_IFTYPE_AP:
32         case NL80211_IFTYPE_AP_VLAN:
33         case NL80211_IFTYPE_WDS:
34                 return true;
35         default:
36                 return false;
37         }
38 }
39
40 static bool nl80211_params_check(enum nl80211_iftype type,
41                                  struct vif_params *params)
42 {
43         if (!nl80211_type_check(type))
44                 return false;
45
46         return true;
47 }
48
49 static int ieee80211_add_iface(struct wiphy *wiphy, char *name,
50                                enum nl80211_iftype type, u32 *flags,
51                                struct vif_params *params)
52 {
53         struct ieee80211_local *local = wiphy_priv(wiphy);
54         struct net_device *dev;
55         struct ieee80211_sub_if_data *sdata;
56         int err;
57
58         if (!nl80211_params_check(type, params))
59                 return -EINVAL;
60
61         err = ieee80211_if_add(local, name, &dev, type, params);
62         if (err || type != NL80211_IFTYPE_MONITOR || !flags)
63                 return err;
64
65         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
66         sdata->u.mntr_flags = *flags;
67         return 0;
68 }
69
70 static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev)
71 {
72         ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
73
74         return 0;
75 }
76
77 static int ieee80211_change_iface(struct wiphy *wiphy,
78                                   struct net_device *dev,
79                                   enum nl80211_iftype type, u32 *flags,
80                                   struct vif_params *params)
81 {
82         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
83         int ret;
84
85         if (ieee80211_sdata_running(sdata))
86                 return -EBUSY;
87
88         if (!nl80211_params_check(type, params))
89                 return -EINVAL;
90
91         ret = ieee80211_if_change_type(sdata, type);
92         if (ret)
93                 return ret;
94
95         if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len)
96                 ieee80211_sdata_set_mesh_id(sdata,
97                                             params->mesh_id_len,
98                                             params->mesh_id);
99
100         if (type == NL80211_IFTYPE_AP_VLAN &&
101             params && params->use_4addr == 0)
102                 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
103         else if (type == NL80211_IFTYPE_STATION &&
104                  params && params->use_4addr >= 0)
105                 sdata->u.mgd.use_4addr = params->use_4addr;
106
107         if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags)
108                 sdata->u.mntr_flags = *flags;
109
110         return 0;
111 }
112
113 static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
114                              u8 key_idx, const u8 *mac_addr,
115                              struct key_params *params)
116 {
117         struct ieee80211_sub_if_data *sdata;
118         struct sta_info *sta = NULL;
119         enum ieee80211_key_alg alg;
120         struct ieee80211_key *key;
121         int err;
122
123         if (!netif_running(dev))
124                 return -ENETDOWN;
125
126         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
127
128         switch (params->cipher) {
129         case WLAN_CIPHER_SUITE_WEP40:
130         case WLAN_CIPHER_SUITE_WEP104:
131                 alg = ALG_WEP;
132                 break;
133         case WLAN_CIPHER_SUITE_TKIP:
134                 alg = ALG_TKIP;
135                 break;
136         case WLAN_CIPHER_SUITE_CCMP:
137                 alg = ALG_CCMP;
138                 break;
139         case WLAN_CIPHER_SUITE_AES_CMAC:
140                 alg = ALG_AES_CMAC;
141                 break;
142         default:
143                 return -EINVAL;
144         }
145
146         key = ieee80211_key_alloc(alg, key_idx, params->key_len, params->key,
147                                   params->seq_len, params->seq);
148         if (!key)
149                 return -ENOMEM;
150
151         mutex_lock(&sdata->local->sta_mtx);
152
153         if (mac_addr) {
154                 sta = sta_info_get_bss(sdata, mac_addr);
155                 if (!sta) {
156                         ieee80211_key_free(key);
157                         err = -ENOENT;
158                         goto out_unlock;
159                 }
160         }
161
162         ieee80211_key_link(key, sdata, sta);
163
164         err = 0;
165  out_unlock:
166         mutex_unlock(&sdata->local->sta_mtx);
167
168         return err;
169 }
170
171 static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
172                              u8 key_idx, const u8 *mac_addr)
173 {
174         struct ieee80211_sub_if_data *sdata;
175         struct sta_info *sta;
176         int ret;
177
178         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
179
180         mutex_lock(&sdata->local->sta_mtx);
181
182         if (mac_addr) {
183                 ret = -ENOENT;
184
185                 sta = sta_info_get_bss(sdata, mac_addr);
186                 if (!sta)
187                         goto out_unlock;
188
189                 if (sta->key) {
190                         ieee80211_key_free(sta->key);
191                         WARN_ON(sta->key);
192                         ret = 0;
193                 }
194
195                 goto out_unlock;
196         }
197
198         if (!sdata->keys[key_idx]) {
199                 ret = -ENOENT;
200                 goto out_unlock;
201         }
202
203         ieee80211_key_free(sdata->keys[key_idx]);
204         WARN_ON(sdata->keys[key_idx]);
205
206         ret = 0;
207  out_unlock:
208         mutex_unlock(&sdata->local->sta_mtx);
209
210         return ret;
211 }
212
213 static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
214                              u8 key_idx, const u8 *mac_addr, void *cookie,
215                              void (*callback)(void *cookie,
216                                               struct key_params *params))
217 {
218         struct ieee80211_sub_if_data *sdata;
219         struct sta_info *sta = NULL;
220         u8 seq[6] = {0};
221         struct key_params params;
222         struct ieee80211_key *key;
223         u32 iv32;
224         u16 iv16;
225         int err = -ENOENT;
226
227         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
228
229         rcu_read_lock();
230
231         if (mac_addr) {
232                 sta = sta_info_get_bss(sdata, mac_addr);
233                 if (!sta)
234                         goto out;
235
236                 key = sta->key;
237         } else
238                 key = sdata->keys[key_idx];
239
240         if (!key)
241                 goto out;
242
243         memset(&params, 0, sizeof(params));
244
245         switch (key->conf.alg) {
246         case ALG_TKIP:
247                 params.cipher = WLAN_CIPHER_SUITE_TKIP;
248
249                 iv32 = key->u.tkip.tx.iv32;
250                 iv16 = key->u.tkip.tx.iv16;
251
252                 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
253                         drv_get_tkip_seq(sdata->local,
254                                          key->conf.hw_key_idx,
255                                          &iv32, &iv16);
256
257                 seq[0] = iv16 & 0xff;
258                 seq[1] = (iv16 >> 8) & 0xff;
259                 seq[2] = iv32 & 0xff;
260                 seq[3] = (iv32 >> 8) & 0xff;
261                 seq[4] = (iv32 >> 16) & 0xff;
262                 seq[5] = (iv32 >> 24) & 0xff;
263                 params.seq = seq;
264                 params.seq_len = 6;
265                 break;
266         case ALG_CCMP:
267                 params.cipher = WLAN_CIPHER_SUITE_CCMP;
268                 seq[0] = key->u.ccmp.tx_pn[5];
269                 seq[1] = key->u.ccmp.tx_pn[4];
270                 seq[2] = key->u.ccmp.tx_pn[3];
271                 seq[3] = key->u.ccmp.tx_pn[2];
272                 seq[4] = key->u.ccmp.tx_pn[1];
273                 seq[5] = key->u.ccmp.tx_pn[0];
274                 params.seq = seq;
275                 params.seq_len = 6;
276                 break;
277         case ALG_WEP:
278                 if (key->conf.keylen == 5)
279                         params.cipher = WLAN_CIPHER_SUITE_WEP40;
280                 else
281                         params.cipher = WLAN_CIPHER_SUITE_WEP104;
282                 break;
283         case ALG_AES_CMAC:
284                 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
285                 seq[0] = key->u.aes_cmac.tx_pn[5];
286                 seq[1] = key->u.aes_cmac.tx_pn[4];
287                 seq[2] = key->u.aes_cmac.tx_pn[3];
288                 seq[3] = key->u.aes_cmac.tx_pn[2];
289                 seq[4] = key->u.aes_cmac.tx_pn[1];
290                 seq[5] = key->u.aes_cmac.tx_pn[0];
291                 params.seq = seq;
292                 params.seq_len = 6;
293                 break;
294         }
295
296         params.key = key->conf.key;
297         params.key_len = key->conf.keylen;
298
299         callback(cookie, &params);
300         err = 0;
301
302  out:
303         rcu_read_unlock();
304         return err;
305 }
306
307 static int ieee80211_config_default_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_key(sdata, key_idx);
314
315         return 0;
316 }
317
318 static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
319                                              struct net_device *dev,
320                                              u8 key_idx)
321 {
322         struct ieee80211_sub_if_data *sdata;
323
324         rcu_read_lock();
325
326         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
327         ieee80211_set_default_mgmt_key(sdata, key_idx);
328
329         rcu_read_unlock();
330
331         return 0;
332 }
333
334 static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
335 {
336         struct ieee80211_sub_if_data *sdata = sta->sdata;
337
338         sinfo->generation = sdata->local->sta_generation;
339
340         sinfo->filled = STATION_INFO_INACTIVE_TIME |
341                         STATION_INFO_RX_BYTES |
342                         STATION_INFO_TX_BYTES |
343                         STATION_INFO_RX_PACKETS |
344                         STATION_INFO_TX_PACKETS |
345                         STATION_INFO_TX_BITRATE;
346
347         sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
348         sinfo->rx_bytes = sta->rx_bytes;
349         sinfo->tx_bytes = sta->tx_bytes;
350         sinfo->rx_packets = sta->rx_packets;
351         sinfo->tx_packets = sta->tx_packets;
352
353         if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
354             (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
355                 sinfo->filled |= STATION_INFO_SIGNAL;
356                 sinfo->signal = (s8)sta->last_signal;
357         }
358
359         sinfo->txrate.flags = 0;
360         if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
361                 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
362         if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
363                 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
364         if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
365                 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
366
367         if (!(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)) {
368                 struct ieee80211_supported_band *sband;
369                 sband = sta->local->hw.wiphy->bands[
370                                 sta->local->hw.conf.channel->band];
371                 sinfo->txrate.legacy =
372                         sband->bitrates[sta->last_tx_rate.idx].bitrate;
373         } else
374                 sinfo->txrate.mcs = sta->last_tx_rate.idx;
375
376         if (ieee80211_vif_is_mesh(&sdata->vif)) {
377 #ifdef CONFIG_MAC80211_MESH
378                 sinfo->filled |= STATION_INFO_LLID |
379                                  STATION_INFO_PLID |
380                                  STATION_INFO_PLINK_STATE;
381
382                 sinfo->llid = le16_to_cpu(sta->llid);
383                 sinfo->plid = le16_to_cpu(sta->plid);
384                 sinfo->plink_state = sta->plink_state;
385 #endif
386         }
387 }
388
389
390 static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
391                                  int idx, u8 *mac, struct station_info *sinfo)
392 {
393         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
394         struct sta_info *sta;
395         int ret = -ENOENT;
396
397         rcu_read_lock();
398
399         sta = sta_info_get_by_idx(sdata, idx);
400         if (sta) {
401                 ret = 0;
402                 memcpy(mac, sta->sta.addr, ETH_ALEN);
403                 sta_set_sinfo(sta, sinfo);
404         }
405
406         rcu_read_unlock();
407
408         return ret;
409 }
410
411 static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
412                                  int idx, struct survey_info *survey)
413 {
414         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
415
416         return drv_get_survey(local, idx, survey);
417 }
418
419 static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
420                                  u8 *mac, struct station_info *sinfo)
421 {
422         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
423         struct sta_info *sta;
424         int ret = -ENOENT;
425
426         rcu_read_lock();
427
428         sta = sta_info_get_bss(sdata, mac);
429         if (sta) {
430                 ret = 0;
431                 sta_set_sinfo(sta, sinfo);
432         }
433
434         rcu_read_unlock();
435
436         return ret;
437 }
438
439 /*
440  * This handles both adding a beacon and setting new beacon info
441  */
442 static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
443                                    struct beacon_parameters *params)
444 {
445         struct beacon_data *new, *old;
446         int new_head_len, new_tail_len;
447         int size;
448         int err = -EINVAL;
449
450         old = sdata->u.ap.beacon;
451
452         /* head must not be zero-length */
453         if (params->head && !params->head_len)
454                 return -EINVAL;
455
456         /*
457          * This is a kludge. beacon interval should really be part
458          * of the beacon information.
459          */
460         if (params->interval &&
461             (sdata->vif.bss_conf.beacon_int != params->interval)) {
462                 sdata->vif.bss_conf.beacon_int = params->interval;
463                 ieee80211_bss_info_change_notify(sdata,
464                                                  BSS_CHANGED_BEACON_INT);
465         }
466
467         /* Need to have a beacon head if we don't have one yet */
468         if (!params->head && !old)
469                 return err;
470
471         /* sorry, no way to start beaconing without dtim period */
472         if (!params->dtim_period && !old)
473                 return err;
474
475         /* new or old head? */
476         if (params->head)
477                 new_head_len = params->head_len;
478         else
479                 new_head_len = old->head_len;
480
481         /* new or old tail? */
482         if (params->tail || !old)
483                 /* params->tail_len will be zero for !params->tail */
484                 new_tail_len = params->tail_len;
485         else
486                 new_tail_len = old->tail_len;
487
488         size = sizeof(*new) + new_head_len + new_tail_len;
489
490         new = kzalloc(size, GFP_KERNEL);
491         if (!new)
492                 return -ENOMEM;
493
494         /* start filling the new info now */
495
496         /* new or old dtim period? */
497         if (params->dtim_period)
498                 new->dtim_period = params->dtim_period;
499         else
500                 new->dtim_period = old->dtim_period;
501
502         /*
503          * pointers go into the block we allocated,
504          * memory is | beacon_data | head | tail |
505          */
506         new->head = ((u8 *) new) + sizeof(*new);
507         new->tail = new->head + new_head_len;
508         new->head_len = new_head_len;
509         new->tail_len = new_tail_len;
510
511         /* copy in head */
512         if (params->head)
513                 memcpy(new->head, params->head, new_head_len);
514         else
515                 memcpy(new->head, old->head, new_head_len);
516
517         /* copy in optional tail */
518         if (params->tail)
519                 memcpy(new->tail, params->tail, new_tail_len);
520         else
521                 if (old)
522                         memcpy(new->tail, old->tail, new_tail_len);
523
524         sdata->vif.bss_conf.dtim_period = new->dtim_period;
525
526         rcu_assign_pointer(sdata->u.ap.beacon, new);
527
528         synchronize_rcu();
529
530         kfree(old);
531
532         ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
533                                                 BSS_CHANGED_BEACON);
534         return 0;
535 }
536
537 static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
538                                 struct beacon_parameters *params)
539 {
540         struct ieee80211_sub_if_data *sdata;
541         struct beacon_data *old;
542
543         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
544
545         old = sdata->u.ap.beacon;
546
547         if (old)
548                 return -EALREADY;
549
550         return ieee80211_config_beacon(sdata, params);
551 }
552
553 static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
554                                 struct beacon_parameters *params)
555 {
556         struct ieee80211_sub_if_data *sdata;
557         struct beacon_data *old;
558
559         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
560
561         old = sdata->u.ap.beacon;
562
563         if (!old)
564                 return -ENOENT;
565
566         return ieee80211_config_beacon(sdata, params);
567 }
568
569 static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
570 {
571         struct ieee80211_sub_if_data *sdata;
572         struct beacon_data *old;
573
574         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
575
576         old = sdata->u.ap.beacon;
577
578         if (!old)
579                 return -ENOENT;
580
581         rcu_assign_pointer(sdata->u.ap.beacon, NULL);
582         synchronize_rcu();
583         kfree(old);
584
585         ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
586         return 0;
587 }
588
589 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
590 struct iapp_layer2_update {
591         u8 da[ETH_ALEN];        /* broadcast */
592         u8 sa[ETH_ALEN];        /* STA addr */
593         __be16 len;             /* 6 */
594         u8 dsap;                /* 0 */
595         u8 ssap;                /* 0 */
596         u8 control;
597         u8 xid_info[3];
598 } __attribute__ ((packed));
599
600 static void ieee80211_send_layer2_update(struct sta_info *sta)
601 {
602         struct iapp_layer2_update *msg;
603         struct sk_buff *skb;
604
605         /* Send Level 2 Update Frame to update forwarding tables in layer 2
606          * bridge devices */
607
608         skb = dev_alloc_skb(sizeof(*msg));
609         if (!skb)
610                 return;
611         msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
612
613         /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
614          * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
615
616         memset(msg->da, 0xff, ETH_ALEN);
617         memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
618         msg->len = htons(6);
619         msg->dsap = 0;
620         msg->ssap = 0x01;       /* NULL LSAP, CR Bit: Response */
621         msg->control = 0xaf;    /* XID response lsb.1111F101.
622                                  * F=0 (no poll command; unsolicited frame) */
623         msg->xid_info[0] = 0x81;        /* XID format identifier */
624         msg->xid_info[1] = 1;   /* LLC types/classes: Type 1 LLC */
625         msg->xid_info[2] = 0;   /* XID sender's receive window size (RW) */
626
627         skb->dev = sta->sdata->dev;
628         skb->protocol = eth_type_trans(skb, sta->sdata->dev);
629         memset(skb->cb, 0, sizeof(skb->cb));
630         netif_rx(skb);
631 }
632
633 static void sta_apply_parameters(struct ieee80211_local *local,
634                                  struct sta_info *sta,
635                                  struct station_parameters *params)
636 {
637         u32 rates;
638         int i, j;
639         struct ieee80211_supported_band *sband;
640         struct ieee80211_sub_if_data *sdata = sta->sdata;
641         u32 mask, set;
642
643         sband = local->hw.wiphy->bands[local->oper_channel->band];
644
645         spin_lock_bh(&sta->lock);
646         mask = params->sta_flags_mask;
647         set = params->sta_flags_set;
648
649         if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
650                 sta->flags &= ~WLAN_STA_AUTHORIZED;
651                 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
652                         sta->flags |= WLAN_STA_AUTHORIZED;
653         }
654
655         if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
656                 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
657                 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
658                         sta->flags |= WLAN_STA_SHORT_PREAMBLE;
659         }
660
661         if (mask & BIT(NL80211_STA_FLAG_WME)) {
662                 sta->flags &= ~WLAN_STA_WME;
663                 if (set & BIT(NL80211_STA_FLAG_WME))
664                         sta->flags |= WLAN_STA_WME;
665         }
666
667         if (mask & BIT(NL80211_STA_FLAG_MFP)) {
668                 sta->flags &= ~WLAN_STA_MFP;
669                 if (set & BIT(NL80211_STA_FLAG_MFP))
670                         sta->flags |= WLAN_STA_MFP;
671         }
672         spin_unlock_bh(&sta->lock);
673
674         /*
675          * cfg80211 validates this (1-2007) and allows setting the AID
676          * only when creating a new station entry
677          */
678         if (params->aid)
679                 sta->sta.aid = params->aid;
680
681         /*
682          * FIXME: updating the following information is racy when this
683          *        function is called from ieee80211_change_station().
684          *        However, all this information should be static so
685          *        maybe we should just reject attemps to change it.
686          */
687
688         if (params->listen_interval >= 0)
689                 sta->listen_interval = params->listen_interval;
690
691         if (params->supported_rates) {
692                 rates = 0;
693
694                 for (i = 0; i < params->supported_rates_len; i++) {
695                         int rate = (params->supported_rates[i] & 0x7f) * 5;
696                         for (j = 0; j < sband->n_bitrates; j++) {
697                                 if (sband->bitrates[j].bitrate == rate)
698                                         rates |= BIT(j);
699                         }
700                 }
701                 sta->sta.supp_rates[local->oper_channel->band] = rates;
702         }
703
704         if (params->ht_capa)
705                 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
706                                                   params->ht_capa,
707                                                   &sta->sta.ht_cap);
708
709         if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
710                 switch (params->plink_action) {
711                 case PLINK_ACTION_OPEN:
712                         mesh_plink_open(sta);
713                         break;
714                 case PLINK_ACTION_BLOCK:
715                         mesh_plink_block(sta);
716                         break;
717                 }
718         }
719 }
720
721 static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
722                                  u8 *mac, struct station_parameters *params)
723 {
724         struct ieee80211_local *local = wiphy_priv(wiphy);
725         struct sta_info *sta;
726         struct ieee80211_sub_if_data *sdata;
727         int err;
728         int layer2_update;
729
730         if (params->vlan) {
731                 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
732
733                 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
734                     sdata->vif.type != NL80211_IFTYPE_AP)
735                         return -EINVAL;
736         } else
737                 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
738
739         if (compare_ether_addr(mac, sdata->vif.addr) == 0)
740                 return -EINVAL;
741
742         if (is_multicast_ether_addr(mac))
743                 return -EINVAL;
744
745         sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
746         if (!sta)
747                 return -ENOMEM;
748
749         sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
750
751         sta_apply_parameters(local, sta, params);
752
753         rate_control_rate_init(sta);
754
755         layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
756                 sdata->vif.type == NL80211_IFTYPE_AP;
757
758         err = sta_info_insert_rcu(sta);
759         if (err) {
760                 rcu_read_unlock();
761                 return err;
762         }
763
764         if (layer2_update)
765                 ieee80211_send_layer2_update(sta);
766
767         rcu_read_unlock();
768
769         return 0;
770 }
771
772 static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
773                                  u8 *mac)
774 {
775         struct ieee80211_local *local = wiphy_priv(wiphy);
776         struct ieee80211_sub_if_data *sdata;
777
778         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
779
780         if (mac)
781                 return sta_info_destroy_addr_bss(sdata, mac);
782
783         sta_info_flush(local, sdata);
784         return 0;
785 }
786
787 static int ieee80211_change_station(struct wiphy *wiphy,
788                                     struct net_device *dev,
789                                     u8 *mac,
790                                     struct station_parameters *params)
791 {
792         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
793         struct ieee80211_local *local = wiphy_priv(wiphy);
794         struct sta_info *sta;
795         struct ieee80211_sub_if_data *vlansdata;
796
797         rcu_read_lock();
798
799         sta = sta_info_get_bss(sdata, mac);
800         if (!sta) {
801                 rcu_read_unlock();
802                 return -ENOENT;
803         }
804
805         if (params->vlan && params->vlan != sta->sdata->dev) {
806                 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
807
808                 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
809                     vlansdata->vif.type != NL80211_IFTYPE_AP) {
810                         rcu_read_unlock();
811                         return -EINVAL;
812                 }
813
814                 if (params->vlan->ieee80211_ptr->use_4addr) {
815                         if (vlansdata->u.vlan.sta) {
816                                 rcu_read_unlock();
817                                 return -EBUSY;
818                         }
819
820                         rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
821                 }
822
823                 sta->sdata = vlansdata;
824                 ieee80211_send_layer2_update(sta);
825         }
826
827         sta_apply_parameters(local, sta, params);
828
829         rcu_read_unlock();
830
831         return 0;
832 }
833
834 #ifdef CONFIG_MAC80211_MESH
835 static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
836                                  u8 *dst, u8 *next_hop)
837 {
838         struct ieee80211_sub_if_data *sdata;
839         struct mesh_path *mpath;
840         struct sta_info *sta;
841         int err;
842
843         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
844
845         rcu_read_lock();
846         sta = sta_info_get(sdata, next_hop);
847         if (!sta) {
848                 rcu_read_unlock();
849                 return -ENOENT;
850         }
851
852         err = mesh_path_add(dst, sdata);
853         if (err) {
854                 rcu_read_unlock();
855                 return err;
856         }
857
858         mpath = mesh_path_lookup(dst, sdata);
859         if (!mpath) {
860                 rcu_read_unlock();
861                 return -ENXIO;
862         }
863         mesh_path_fix_nexthop(mpath, sta);
864
865         rcu_read_unlock();
866         return 0;
867 }
868
869 static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
870                                  u8 *dst)
871 {
872         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
873
874         if (dst)
875                 return mesh_path_del(dst, sdata);
876
877         mesh_path_flush(sdata);
878         return 0;
879 }
880
881 static int ieee80211_change_mpath(struct wiphy *wiphy,
882                                     struct net_device *dev,
883                                     u8 *dst, u8 *next_hop)
884 {
885         struct ieee80211_sub_if_data *sdata;
886         struct mesh_path *mpath;
887         struct sta_info *sta;
888
889         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
890
891         rcu_read_lock();
892
893         sta = sta_info_get(sdata, next_hop);
894         if (!sta) {
895                 rcu_read_unlock();
896                 return -ENOENT;
897         }
898
899         mpath = mesh_path_lookup(dst, sdata);
900         if (!mpath) {
901                 rcu_read_unlock();
902                 return -ENOENT;
903         }
904
905         mesh_path_fix_nexthop(mpath, sta);
906
907         rcu_read_unlock();
908         return 0;
909 }
910
911 static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
912                             struct mpath_info *pinfo)
913 {
914         if (mpath->next_hop)
915                 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
916         else
917                 memset(next_hop, 0, ETH_ALEN);
918
919         pinfo->generation = mesh_paths_generation;
920
921         pinfo->filled = MPATH_INFO_FRAME_QLEN |
922                         MPATH_INFO_SN |
923                         MPATH_INFO_METRIC |
924                         MPATH_INFO_EXPTIME |
925                         MPATH_INFO_DISCOVERY_TIMEOUT |
926                         MPATH_INFO_DISCOVERY_RETRIES |
927                         MPATH_INFO_FLAGS;
928
929         pinfo->frame_qlen = mpath->frame_queue.qlen;
930         pinfo->sn = mpath->sn;
931         pinfo->metric = mpath->metric;
932         if (time_before(jiffies, mpath->exp_time))
933                 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
934         pinfo->discovery_timeout =
935                         jiffies_to_msecs(mpath->discovery_timeout);
936         pinfo->discovery_retries = mpath->discovery_retries;
937         pinfo->flags = 0;
938         if (mpath->flags & MESH_PATH_ACTIVE)
939                 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
940         if (mpath->flags & MESH_PATH_RESOLVING)
941                 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
942         if (mpath->flags & MESH_PATH_SN_VALID)
943                 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
944         if (mpath->flags & MESH_PATH_FIXED)
945                 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
946         if (mpath->flags & MESH_PATH_RESOLVING)
947                 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
948
949         pinfo->flags = mpath->flags;
950 }
951
952 static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
953                                u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
954
955 {
956         struct ieee80211_sub_if_data *sdata;
957         struct mesh_path *mpath;
958
959         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
960
961         rcu_read_lock();
962         mpath = mesh_path_lookup(dst, sdata);
963         if (!mpath) {
964                 rcu_read_unlock();
965                 return -ENOENT;
966         }
967         memcpy(dst, mpath->dst, ETH_ALEN);
968         mpath_set_pinfo(mpath, next_hop, pinfo);
969         rcu_read_unlock();
970         return 0;
971 }
972
973 static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
974                                  int idx, u8 *dst, u8 *next_hop,
975                                  struct mpath_info *pinfo)
976 {
977         struct ieee80211_sub_if_data *sdata;
978         struct mesh_path *mpath;
979
980         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
981
982         rcu_read_lock();
983         mpath = mesh_path_lookup_by_idx(idx, sdata);
984         if (!mpath) {
985                 rcu_read_unlock();
986                 return -ENOENT;
987         }
988         memcpy(dst, mpath->dst, ETH_ALEN);
989         mpath_set_pinfo(mpath, next_hop, pinfo);
990         rcu_read_unlock();
991         return 0;
992 }
993
994 static int ieee80211_get_mesh_params(struct wiphy *wiphy,
995                                 struct net_device *dev,
996                                 struct mesh_config *conf)
997 {
998         struct ieee80211_sub_if_data *sdata;
999         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1000
1001         memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1002         return 0;
1003 }
1004
1005 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1006 {
1007         return (mask >> (parm-1)) & 0x1;
1008 }
1009
1010 static int ieee80211_set_mesh_params(struct wiphy *wiphy,
1011                                 struct net_device *dev,
1012                                 const struct mesh_config *nconf, u32 mask)
1013 {
1014         struct mesh_config *conf;
1015         struct ieee80211_sub_if_data *sdata;
1016         struct ieee80211_if_mesh *ifmsh;
1017
1018         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1019         ifmsh = &sdata->u.mesh;
1020
1021         /* Set the config options which we are interested in setting */
1022         conf = &(sdata->u.mesh.mshcfg);
1023         if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1024                 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1025         if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1026                 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1027         if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1028                 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1029         if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1030                 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1031         if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1032                 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1033         if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1034                 conf->dot11MeshTTL = nconf->dot11MeshTTL;
1035         if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
1036                 conf->auto_open_plinks = nconf->auto_open_plinks;
1037         if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1038                 conf->dot11MeshHWMPmaxPREQretries =
1039                         nconf->dot11MeshHWMPmaxPREQretries;
1040         if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1041                 conf->path_refresh_time = nconf->path_refresh_time;
1042         if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1043                 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1044         if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1045                 conf->dot11MeshHWMPactivePathTimeout =
1046                         nconf->dot11MeshHWMPactivePathTimeout;
1047         if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1048                 conf->dot11MeshHWMPpreqMinInterval =
1049                         nconf->dot11MeshHWMPpreqMinInterval;
1050         if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1051                            mask))
1052                 conf->dot11MeshHWMPnetDiameterTraversalTime =
1053                         nconf->dot11MeshHWMPnetDiameterTraversalTime;
1054         if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1055                 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1056                 ieee80211_mesh_root_setup(ifmsh);
1057         }
1058         return 0;
1059 }
1060
1061 #endif
1062
1063 static int ieee80211_change_bss(struct wiphy *wiphy,
1064                                 struct net_device *dev,
1065                                 struct bss_parameters *params)
1066 {
1067         struct ieee80211_sub_if_data *sdata;
1068         u32 changed = 0;
1069
1070         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1071
1072         if (params->use_cts_prot >= 0) {
1073                 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
1074                 changed |= BSS_CHANGED_ERP_CTS_PROT;
1075         }
1076         if (params->use_short_preamble >= 0) {
1077                 sdata->vif.bss_conf.use_short_preamble =
1078                         params->use_short_preamble;
1079                 changed |= BSS_CHANGED_ERP_PREAMBLE;
1080         }
1081
1082         if (!sdata->vif.bss_conf.use_short_slot &&
1083             sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
1084                 sdata->vif.bss_conf.use_short_slot = true;
1085                 changed |= BSS_CHANGED_ERP_SLOT;
1086         }
1087
1088         if (params->use_short_slot_time >= 0) {
1089                 sdata->vif.bss_conf.use_short_slot =
1090                         params->use_short_slot_time;
1091                 changed |= BSS_CHANGED_ERP_SLOT;
1092         }
1093
1094         if (params->basic_rates) {
1095                 int i, j;
1096                 u32 rates = 0;
1097                 struct ieee80211_local *local = wiphy_priv(wiphy);
1098                 struct ieee80211_supported_band *sband =
1099                         wiphy->bands[local->oper_channel->band];
1100
1101                 for (i = 0; i < params->basic_rates_len; i++) {
1102                         int rate = (params->basic_rates[i] & 0x7f) * 5;
1103                         for (j = 0; j < sband->n_bitrates; j++) {
1104                                 if (sband->bitrates[j].bitrate == rate)
1105                                         rates |= BIT(j);
1106                         }
1107                 }
1108                 sdata->vif.bss_conf.basic_rates = rates;
1109                 changed |= BSS_CHANGED_BASIC_RATES;
1110         }
1111
1112         if (params->ap_isolate >= 0) {
1113                 if (params->ap_isolate)
1114                         sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1115                 else
1116                         sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1117         }
1118
1119         ieee80211_bss_info_change_notify(sdata, changed);
1120
1121         return 0;
1122 }
1123
1124 static int ieee80211_set_txq_params(struct wiphy *wiphy,
1125                                     struct ieee80211_txq_params *params)
1126 {
1127         struct ieee80211_local *local = wiphy_priv(wiphy);
1128         struct ieee80211_tx_queue_params p;
1129
1130         if (!local->ops->conf_tx)
1131                 return -EOPNOTSUPP;
1132
1133         memset(&p, 0, sizeof(p));
1134         p.aifs = params->aifs;
1135         p.cw_max = params->cwmax;
1136         p.cw_min = params->cwmin;
1137         p.txop = params->txop;
1138
1139         /*
1140          * Setting tx queue params disables u-apsd because it's only
1141          * called in master mode.
1142          */
1143         p.uapsd = false;
1144
1145         if (drv_conf_tx(local, params->queue, &p)) {
1146                 printk(KERN_DEBUG "%s: failed to set TX queue "
1147                        "parameters for queue %d\n",
1148                        wiphy_name(local->hw.wiphy), params->queue);
1149                 return -EINVAL;
1150         }
1151
1152         /* enable WMM or activate new settings */
1153         local->hw.conf.flags |= IEEE80211_CONF_QOS;
1154         drv_config(local, IEEE80211_CONF_CHANGE_QOS);
1155
1156         return 0;
1157 }
1158
1159 static int ieee80211_set_channel(struct wiphy *wiphy,
1160                                  struct net_device *netdev,
1161                                  struct ieee80211_channel *chan,
1162                                  enum nl80211_channel_type channel_type)
1163 {
1164         struct ieee80211_local *local = wiphy_priv(wiphy);
1165         struct ieee80211_sub_if_data *sdata = NULL;
1166
1167         if (netdev)
1168                 sdata = IEEE80211_DEV_TO_SUB_IF(netdev);
1169
1170         switch (ieee80211_get_channel_mode(local, NULL)) {
1171         case CHAN_MODE_HOPPING:
1172                 return -EBUSY;
1173         case CHAN_MODE_FIXED:
1174                 if (local->oper_channel != chan)
1175                         return -EBUSY;
1176                 if (!sdata && local->_oper_channel_type == channel_type)
1177                         return 0;
1178                 break;
1179         case CHAN_MODE_UNDEFINED:
1180                 break;
1181         }
1182
1183         local->oper_channel = chan;
1184
1185         if (!ieee80211_set_channel_type(local, sdata, channel_type))
1186                 return -EBUSY;
1187
1188         ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
1189         if (sdata && sdata->vif.type != NL80211_IFTYPE_MONITOR)
1190                 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1191
1192         return 0;
1193 }
1194
1195 #ifdef CONFIG_PM
1196 static int ieee80211_suspend(struct wiphy *wiphy)
1197 {
1198         return __ieee80211_suspend(wiphy_priv(wiphy));
1199 }
1200
1201 static int ieee80211_resume(struct wiphy *wiphy)
1202 {
1203         return __ieee80211_resume(wiphy_priv(wiphy));
1204 }
1205 #else
1206 #define ieee80211_suspend NULL
1207 #define ieee80211_resume NULL
1208 #endif
1209
1210 static int ieee80211_scan(struct wiphy *wiphy,
1211                           struct net_device *dev,
1212                           struct cfg80211_scan_request *req)
1213 {
1214         struct ieee80211_sub_if_data *sdata;
1215
1216         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1217
1218         if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1219             sdata->vif.type != NL80211_IFTYPE_ADHOC &&
1220             sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
1221             (sdata->vif.type != NL80211_IFTYPE_AP || sdata->u.ap.beacon))
1222                 return -EOPNOTSUPP;
1223
1224         return ieee80211_request_scan(sdata, req);
1225 }
1226
1227 static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1228                           struct cfg80211_auth_request *req)
1229 {
1230         return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
1231 }
1232
1233 static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1234                            struct cfg80211_assoc_request *req)
1235 {
1236         struct ieee80211_local *local = wiphy_priv(wiphy);
1237         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1238
1239         switch (ieee80211_get_channel_mode(local, sdata)) {
1240         case CHAN_MODE_HOPPING:
1241                 return -EBUSY;
1242         case CHAN_MODE_FIXED:
1243                 if (local->oper_channel == req->bss->channel)
1244                         break;
1245                 return -EBUSY;
1246         case CHAN_MODE_UNDEFINED:
1247                 break;
1248         }
1249
1250         return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
1251 }
1252
1253 static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
1254                             struct cfg80211_deauth_request *req,
1255                             void *cookie)
1256 {
1257         return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
1258                                     req, cookie);
1259 }
1260
1261 static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
1262                               struct cfg80211_disassoc_request *req,
1263                               void *cookie)
1264 {
1265         return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
1266                                       req, cookie);
1267 }
1268
1269 static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1270                                struct cfg80211_ibss_params *params)
1271 {
1272         struct ieee80211_local *local = wiphy_priv(wiphy);
1273         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1274
1275         switch (ieee80211_get_channel_mode(local, sdata)) {
1276         case CHAN_MODE_HOPPING:
1277                 return -EBUSY;
1278         case CHAN_MODE_FIXED:
1279                 if (!params->channel_fixed)
1280                         return -EBUSY;
1281                 if (local->oper_channel == params->channel)
1282                         break;
1283                 return -EBUSY;
1284         case CHAN_MODE_UNDEFINED:
1285                 break;
1286         }
1287
1288         return ieee80211_ibss_join(sdata, params);
1289 }
1290
1291 static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1292 {
1293         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1294
1295         return ieee80211_ibss_leave(sdata);
1296 }
1297
1298 static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1299 {
1300         struct ieee80211_local *local = wiphy_priv(wiphy);
1301         int err;
1302
1303         if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1304                 err = drv_set_coverage_class(local, wiphy->coverage_class);
1305
1306                 if (err)
1307                         return err;
1308         }
1309
1310         if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
1311                 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
1312
1313                 if (err)
1314                         return err;
1315         }
1316
1317         if (changed & WIPHY_PARAM_RETRY_SHORT)
1318                 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1319         if (changed & WIPHY_PARAM_RETRY_LONG)
1320                 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1321         if (changed &
1322             (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1323                 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1324
1325         return 0;
1326 }
1327
1328 static int ieee80211_set_tx_power(struct wiphy *wiphy,
1329                                   enum nl80211_tx_power_setting type, int mbm)
1330 {
1331         struct ieee80211_local *local = wiphy_priv(wiphy);
1332         struct ieee80211_channel *chan = local->hw.conf.channel;
1333         u32 changes = 0;
1334
1335         switch (type) {
1336         case NL80211_TX_POWER_AUTOMATIC:
1337                 local->user_power_level = -1;
1338                 break;
1339         case NL80211_TX_POWER_LIMITED:
1340                 if (mbm < 0 || (mbm % 100))
1341                         return -EOPNOTSUPP;
1342                 local->user_power_level = MBM_TO_DBM(mbm);
1343                 break;
1344         case NL80211_TX_POWER_FIXED:
1345                 if (mbm < 0 || (mbm % 100))
1346                         return -EOPNOTSUPP;
1347                 /* TODO: move to cfg80211 when it knows the channel */
1348                 if (MBM_TO_DBM(mbm) > chan->max_power)
1349                         return -EINVAL;
1350                 local->user_power_level = MBM_TO_DBM(mbm);
1351                 break;
1352         }
1353
1354         ieee80211_hw_config(local, changes);
1355
1356         return 0;
1357 }
1358
1359 static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1360 {
1361         struct ieee80211_local *local = wiphy_priv(wiphy);
1362
1363         *dbm = local->hw.conf.power_level;
1364
1365         return 0;
1366 }
1367
1368 static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
1369                                   u8 *addr)
1370 {
1371         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1372
1373         memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
1374
1375         return 0;
1376 }
1377
1378 static void ieee80211_rfkill_poll(struct wiphy *wiphy)
1379 {
1380         struct ieee80211_local *local = wiphy_priv(wiphy);
1381
1382         drv_rfkill_poll(local);
1383 }
1384
1385 #ifdef CONFIG_NL80211_TESTMODE
1386 static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
1387 {
1388         struct ieee80211_local *local = wiphy_priv(wiphy);
1389
1390         if (!local->ops->testmode_cmd)
1391                 return -EOPNOTSUPP;
1392
1393         return local->ops->testmode_cmd(&local->hw, data, len);
1394 }
1395 #endif
1396
1397 int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
1398                              enum ieee80211_smps_mode smps_mode)
1399 {
1400         const u8 *ap;
1401         enum ieee80211_smps_mode old_req;
1402         int err;
1403
1404         old_req = sdata->u.mgd.req_smps;
1405         sdata->u.mgd.req_smps = smps_mode;
1406
1407         if (old_req == smps_mode &&
1408             smps_mode != IEEE80211_SMPS_AUTOMATIC)
1409                 return 0;
1410
1411         /*
1412          * If not associated, or current association is not an HT
1413          * association, there's no need to send an action frame.
1414          */
1415         if (!sdata->u.mgd.associated ||
1416             sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) {
1417                 mutex_lock(&sdata->local->iflist_mtx);
1418                 ieee80211_recalc_smps(sdata->local, sdata);
1419                 mutex_unlock(&sdata->local->iflist_mtx);
1420                 return 0;
1421         }
1422
1423         ap = sdata->u.mgd.associated->bssid;
1424
1425         if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
1426                 if (sdata->u.mgd.powersave)
1427                         smps_mode = IEEE80211_SMPS_DYNAMIC;
1428                 else
1429                         smps_mode = IEEE80211_SMPS_OFF;
1430         }
1431
1432         /* send SM PS frame to AP */
1433         err = ieee80211_send_smps_action(sdata, smps_mode,
1434                                          ap, ap);
1435         if (err)
1436                 sdata->u.mgd.req_smps = old_req;
1437
1438         return err;
1439 }
1440
1441 static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1442                                     bool enabled, int timeout)
1443 {
1444         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1445         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1446
1447         if (sdata->vif.type != NL80211_IFTYPE_STATION)
1448                 return -EOPNOTSUPP;
1449
1450         if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
1451                 return -EOPNOTSUPP;
1452
1453         if (enabled == sdata->u.mgd.powersave &&
1454             timeout == local->dynamic_ps_forced_timeout)
1455                 return 0;
1456
1457         sdata->u.mgd.powersave = enabled;
1458         local->dynamic_ps_forced_timeout = timeout;
1459
1460         /* no change, but if automatic follow powersave */
1461         mutex_lock(&sdata->u.mgd.mtx);
1462         __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
1463         mutex_unlock(&sdata->u.mgd.mtx);
1464
1465         if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
1466                 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1467
1468         ieee80211_recalc_ps(local, -1);
1469
1470         return 0;
1471 }
1472
1473 static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
1474                                          struct net_device *dev,
1475                                          s32 rssi_thold, u32 rssi_hyst)
1476 {
1477         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1478         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1479         struct ieee80211_vif *vif = &sdata->vif;
1480         struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
1481
1482         if (rssi_thold == bss_conf->cqm_rssi_thold &&
1483             rssi_hyst == bss_conf->cqm_rssi_hyst)
1484                 return 0;
1485
1486         bss_conf->cqm_rssi_thold = rssi_thold;
1487         bss_conf->cqm_rssi_hyst = rssi_hyst;
1488
1489         if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
1490                 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1491                         return -EOPNOTSUPP;
1492                 return 0;
1493         }
1494
1495         /* tell the driver upon association, unless already associated */
1496         if (sdata->u.mgd.associated)
1497                 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
1498
1499         return 0;
1500 }
1501
1502 static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
1503                                       struct net_device *dev,
1504                                       const u8 *addr,
1505                                       const struct cfg80211_bitrate_mask *mask)
1506 {
1507         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1508         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1509         int i;
1510
1511         /*
1512          * This _could_ be supported by providing a hook for
1513          * drivers for this function, but at this point it
1514          * doesn't seem worth bothering.
1515          */
1516         if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
1517                 return -EOPNOTSUPP;
1518
1519
1520         for (i = 0; i < IEEE80211_NUM_BANDS; i++)
1521                 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
1522
1523         return 0;
1524 }
1525
1526 static int ieee80211_remain_on_channel(struct wiphy *wiphy,
1527                                        struct net_device *dev,
1528                                        struct ieee80211_channel *chan,
1529                                        enum nl80211_channel_type channel_type,
1530                                        unsigned int duration,
1531                                        u64 *cookie)
1532 {
1533         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1534
1535         return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
1536                                               duration, cookie);
1537 }
1538
1539 static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
1540                                               struct net_device *dev,
1541                                               u64 cookie)
1542 {
1543         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1544
1545         return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
1546 }
1547
1548 static int ieee80211_action(struct wiphy *wiphy, struct net_device *dev,
1549                             struct ieee80211_channel *chan,
1550                             enum nl80211_channel_type channel_type,
1551                             bool channel_type_valid,
1552                             const u8 *buf, size_t len, u64 *cookie)
1553 {
1554         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1555         struct ieee80211_local *local = sdata->local;
1556         struct sk_buff *skb;
1557         struct sta_info *sta;
1558         const struct ieee80211_mgmt *mgmt = (void *)buf;
1559         u32 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
1560                     IEEE80211_TX_CTL_REQ_TX_STATUS;
1561
1562         /* Check that we are on the requested channel for transmission */
1563         if (chan != local->tmp_channel &&
1564             chan != local->oper_channel)
1565                 return -EBUSY;
1566         if (channel_type_valid &&
1567             (channel_type != local->tmp_channel_type &&
1568              channel_type != local->_oper_channel_type))
1569                 return -EBUSY;
1570
1571         switch (sdata->vif.type) {
1572         case NL80211_IFTYPE_ADHOC:
1573                 if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC)
1574                         break;
1575                 rcu_read_lock();
1576                 sta = sta_info_get(sdata, mgmt->da);
1577                 rcu_read_unlock();
1578                 if (!sta)
1579                         return -ENOLINK;
1580                 break;
1581         case NL80211_IFTYPE_STATION:
1582                 if (!(sdata->u.mgd.flags & IEEE80211_STA_MFP_ENABLED))
1583                         flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1584                 break;
1585         default:
1586                 return -EOPNOTSUPP;
1587         }
1588
1589         skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
1590         if (!skb)
1591                 return -ENOMEM;
1592         skb_reserve(skb, local->hw.extra_tx_headroom);
1593
1594         memcpy(skb_put(skb, len), buf, len);
1595
1596         IEEE80211_SKB_CB(skb)->flags = flags;
1597
1598         skb->dev = sdata->dev;
1599         ieee80211_tx_skb(sdata, skb);
1600
1601         *cookie = (unsigned long) skb;
1602         return 0;
1603 }
1604
1605 struct cfg80211_ops mac80211_config_ops = {
1606         .add_virtual_intf = ieee80211_add_iface,
1607         .del_virtual_intf = ieee80211_del_iface,
1608         .change_virtual_intf = ieee80211_change_iface,
1609         .add_key = ieee80211_add_key,
1610         .del_key = ieee80211_del_key,
1611         .get_key = ieee80211_get_key,
1612         .set_default_key = ieee80211_config_default_key,
1613         .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
1614         .add_beacon = ieee80211_add_beacon,
1615         .set_beacon = ieee80211_set_beacon,
1616         .del_beacon = ieee80211_del_beacon,
1617         .add_station = ieee80211_add_station,
1618         .del_station = ieee80211_del_station,
1619         .change_station = ieee80211_change_station,
1620         .get_station = ieee80211_get_station,
1621         .dump_station = ieee80211_dump_station,
1622         .dump_survey = ieee80211_dump_survey,
1623 #ifdef CONFIG_MAC80211_MESH
1624         .add_mpath = ieee80211_add_mpath,
1625         .del_mpath = ieee80211_del_mpath,
1626         .change_mpath = ieee80211_change_mpath,
1627         .get_mpath = ieee80211_get_mpath,
1628         .dump_mpath = ieee80211_dump_mpath,
1629         .set_mesh_params = ieee80211_set_mesh_params,
1630         .get_mesh_params = ieee80211_get_mesh_params,
1631 #endif
1632         .change_bss = ieee80211_change_bss,
1633         .set_txq_params = ieee80211_set_txq_params,
1634         .set_channel = ieee80211_set_channel,
1635         .suspend = ieee80211_suspend,
1636         .resume = ieee80211_resume,
1637         .scan = ieee80211_scan,
1638         .auth = ieee80211_auth,
1639         .assoc = ieee80211_assoc,
1640         .deauth = ieee80211_deauth,
1641         .disassoc = ieee80211_disassoc,
1642         .join_ibss = ieee80211_join_ibss,
1643         .leave_ibss = ieee80211_leave_ibss,
1644         .set_wiphy_params = ieee80211_set_wiphy_params,
1645         .set_tx_power = ieee80211_set_tx_power,
1646         .get_tx_power = ieee80211_get_tx_power,
1647         .set_wds_peer = ieee80211_set_wds_peer,
1648         .rfkill_poll = ieee80211_rfkill_poll,
1649         CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
1650         .set_power_mgmt = ieee80211_set_power_mgmt,
1651         .set_bitrate_mask = ieee80211_set_bitrate_mask,
1652         .remain_on_channel = ieee80211_remain_on_channel,
1653         .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
1654         .action = ieee80211_action,
1655         .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
1656 };