2 * Wireless utility functions
4 * Copyright 2007-2009 Johannes Berg <johannes@sipsolutions.net>
6 #include <linux/bitops.h>
7 #include <linux/etherdevice.h>
8 #include <linux/slab.h>
9 #include <net/cfg80211.h>
13 struct ieee80211_rate
*
14 ieee80211_get_response_rate(struct ieee80211_supported_band
*sband
,
15 u32 basic_rates
, int bitrate
)
17 struct ieee80211_rate
*result
= &sband
->bitrates
[0];
20 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
21 if (!(basic_rates
& BIT(i
)))
23 if (sband
->bitrates
[i
].bitrate
> bitrate
)
25 result
= &sband
->bitrates
[i
];
30 EXPORT_SYMBOL(ieee80211_get_response_rate
);
32 int ieee80211_channel_to_frequency(int chan
)
35 return 2407 + chan
* 5;
40 /* FIXME: 802.11j 17.3.8.3.2 */
41 return (chan
+ 1000) * 5;
43 EXPORT_SYMBOL(ieee80211_channel_to_frequency
);
45 int ieee80211_frequency_to_channel(int freq
)
51 return (freq
- 2407) / 5;
53 /* FIXME: 802.11j 17.3.8.3.2 */
56 EXPORT_SYMBOL(ieee80211_frequency_to_channel
);
58 struct ieee80211_channel
*__ieee80211_get_channel(struct wiphy
*wiphy
,
61 enum ieee80211_band band
;
62 struct ieee80211_supported_band
*sband
;
65 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
66 sband
= wiphy
->bands
[band
];
71 for (i
= 0; i
< sband
->n_channels
; i
++) {
72 if (sband
->channels
[i
].center_freq
== freq
)
73 return &sband
->channels
[i
];
79 EXPORT_SYMBOL(__ieee80211_get_channel
);
81 static void set_mandatory_flags_band(struct ieee80211_supported_band
*sband
,
82 enum ieee80211_band band
)
87 case IEEE80211_BAND_5GHZ
:
89 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
90 if (sband
->bitrates
[i
].bitrate
== 60 ||
91 sband
->bitrates
[i
].bitrate
== 120 ||
92 sband
->bitrates
[i
].bitrate
== 240) {
93 sband
->bitrates
[i
].flags
|=
94 IEEE80211_RATE_MANDATORY_A
;
100 case IEEE80211_BAND_2GHZ
:
102 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
103 if (sband
->bitrates
[i
].bitrate
== 10) {
104 sband
->bitrates
[i
].flags
|=
105 IEEE80211_RATE_MANDATORY_B
|
106 IEEE80211_RATE_MANDATORY_G
;
110 if (sband
->bitrates
[i
].bitrate
== 20 ||
111 sband
->bitrates
[i
].bitrate
== 55 ||
112 sband
->bitrates
[i
].bitrate
== 110 ||
113 sband
->bitrates
[i
].bitrate
== 60 ||
114 sband
->bitrates
[i
].bitrate
== 120 ||
115 sband
->bitrates
[i
].bitrate
== 240) {
116 sband
->bitrates
[i
].flags
|=
117 IEEE80211_RATE_MANDATORY_G
;
121 if (sband
->bitrates
[i
].bitrate
!= 10 &&
122 sband
->bitrates
[i
].bitrate
!= 20 &&
123 sband
->bitrates
[i
].bitrate
!= 55 &&
124 sband
->bitrates
[i
].bitrate
!= 110)
125 sband
->bitrates
[i
].flags
|=
126 IEEE80211_RATE_ERP_G
;
128 WARN_ON(want
!= 0 && want
!= 3 && want
!= 6);
130 case IEEE80211_NUM_BANDS
:
136 void ieee80211_set_bitrate_flags(struct wiphy
*wiphy
)
138 enum ieee80211_band band
;
140 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++)
141 if (wiphy
->bands
[band
])
142 set_mandatory_flags_band(wiphy
->bands
[band
], band
);
145 int cfg80211_validate_key_settings(struct cfg80211_registered_device
*rdev
,
146 struct key_params
*params
, int key_idx
,
147 bool pairwise
, const u8
*mac_addr
)
154 if (!pairwise
&& mac_addr
&& !(rdev
->wiphy
.flags
& WIPHY_FLAG_IBSS_RSN
))
157 if (pairwise
&& !mac_addr
)
161 * Disallow pairwise keys with non-zero index unless it's WEP
162 * (because current deployments use pairwise WEP keys with
163 * non-zero indizes but 802.11i clearly specifies to use zero)
165 if (pairwise
&& key_idx
&&
166 params
->cipher
!= WLAN_CIPHER_SUITE_WEP40
&&
167 params
->cipher
!= WLAN_CIPHER_SUITE_WEP104
)
170 switch (params
->cipher
) {
171 case WLAN_CIPHER_SUITE_WEP40
:
172 if (params
->key_len
!= WLAN_KEY_LEN_WEP40
)
175 case WLAN_CIPHER_SUITE_TKIP
:
176 if (params
->key_len
!= WLAN_KEY_LEN_TKIP
)
179 case WLAN_CIPHER_SUITE_CCMP
:
180 if (params
->key_len
!= WLAN_KEY_LEN_CCMP
)
183 case WLAN_CIPHER_SUITE_WEP104
:
184 if (params
->key_len
!= WLAN_KEY_LEN_WEP104
)
187 case WLAN_CIPHER_SUITE_AES_CMAC
:
188 if (params
->key_len
!= WLAN_KEY_LEN_AES_CMAC
)
193 * We don't know anything about this algorithm,
194 * allow using it -- but the driver must check
195 * all parameters! We still check below whether
196 * or not the driver supports this algorithm,
203 switch (params
->cipher
) {
204 case WLAN_CIPHER_SUITE_WEP40
:
205 case WLAN_CIPHER_SUITE_WEP104
:
206 /* These ciphers do not use key sequence */
208 case WLAN_CIPHER_SUITE_TKIP
:
209 case WLAN_CIPHER_SUITE_CCMP
:
210 case WLAN_CIPHER_SUITE_AES_CMAC
:
211 if (params
->seq_len
!= 6)
217 for (i
= 0; i
< rdev
->wiphy
.n_cipher_suites
; i
++)
218 if (params
->cipher
== rdev
->wiphy
.cipher_suites
[i
])
220 if (i
== rdev
->wiphy
.n_cipher_suites
)
226 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
227 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
228 const unsigned char rfc1042_header
[] __aligned(2) =
229 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
230 EXPORT_SYMBOL(rfc1042_header
);
232 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
233 const unsigned char bridge_tunnel_header
[] __aligned(2) =
234 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
235 EXPORT_SYMBOL(bridge_tunnel_header
);
237 unsigned int __attribute_const__
ieee80211_hdrlen(__le16 fc
)
239 unsigned int hdrlen
= 24;
241 if (ieee80211_is_data(fc
)) {
242 if (ieee80211_has_a4(fc
))
244 if (ieee80211_is_data_qos(fc
)) {
245 hdrlen
+= IEEE80211_QOS_CTL_LEN
;
246 if (ieee80211_has_order(fc
))
247 hdrlen
+= IEEE80211_HT_CTL_LEN
;
252 if (ieee80211_is_ctl(fc
)) {
254 * ACK and CTS are 10 bytes, all others 16. To see how
255 * to get this condition consider
256 * subtype mask: 0b0000000011110000 (0x00F0)
257 * ACK subtype: 0b0000000011010000 (0x00D0)
258 * CTS subtype: 0b0000000011000000 (0x00C0)
259 * bits that matter: ^^^ (0x00E0)
260 * value of those: 0b0000000011000000 (0x00C0)
262 if ((fc
& cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0))
270 EXPORT_SYMBOL(ieee80211_hdrlen
);
272 unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff
*skb
)
274 const struct ieee80211_hdr
*hdr
=
275 (const struct ieee80211_hdr
*)skb
->data
;
278 if (unlikely(skb
->len
< 10))
280 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
281 if (unlikely(hdrlen
> skb
->len
))
285 EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb
);
287 static int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr
*meshhdr
)
289 int ae
= meshhdr
->flags
& MESH_FLAGS_AE
;
294 case MESH_FLAGS_AE_A4
:
296 case MESH_FLAGS_AE_A5_A6
:
298 case (MESH_FLAGS_AE_A4
| MESH_FLAGS_AE_A5_A6
):
305 int ieee80211_data_to_8023(struct sk_buff
*skb
, const u8
*addr
,
306 enum nl80211_iftype iftype
)
308 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
309 u16 hdrlen
, ethertype
;
312 u8 src
[ETH_ALEN
] __aligned(2);
314 if (unlikely(!ieee80211_is_data_present(hdr
->frame_control
)))
317 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
319 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
321 * IEEE 802.11 address fields:
322 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
323 * 0 0 DA SA BSSID n/a
324 * 0 1 DA BSSID SA n/a
325 * 1 0 BSSID SA DA n/a
328 memcpy(dst
, ieee80211_get_DA(hdr
), ETH_ALEN
);
329 memcpy(src
, ieee80211_get_SA(hdr
), ETH_ALEN
);
331 switch (hdr
->frame_control
&
332 cpu_to_le16(IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) {
333 case cpu_to_le16(IEEE80211_FCTL_TODS
):
334 if (unlikely(iftype
!= NL80211_IFTYPE_AP
&&
335 iftype
!= NL80211_IFTYPE_AP_VLAN
&&
336 iftype
!= NL80211_IFTYPE_P2P_GO
))
339 case cpu_to_le16(IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
):
340 if (unlikely(iftype
!= NL80211_IFTYPE_WDS
&&
341 iftype
!= NL80211_IFTYPE_MESH_POINT
&&
342 iftype
!= NL80211_IFTYPE_AP_VLAN
&&
343 iftype
!= NL80211_IFTYPE_STATION
))
345 if (iftype
== NL80211_IFTYPE_MESH_POINT
) {
346 struct ieee80211s_hdr
*meshdr
=
347 (struct ieee80211s_hdr
*) (skb
->data
+ hdrlen
);
348 /* make sure meshdr->flags is on the linear part */
349 if (!pskb_may_pull(skb
, hdrlen
+ 1))
351 if (meshdr
->flags
& MESH_FLAGS_AE_A5_A6
) {
352 skb_copy_bits(skb
, hdrlen
+
353 offsetof(struct ieee80211s_hdr
, eaddr1
),
355 skb_copy_bits(skb
, hdrlen
+
356 offsetof(struct ieee80211s_hdr
, eaddr2
),
359 hdrlen
+= ieee80211_get_mesh_hdrlen(meshdr
);
362 case cpu_to_le16(IEEE80211_FCTL_FROMDS
):
363 if ((iftype
!= NL80211_IFTYPE_STATION
&&
364 iftype
!= NL80211_IFTYPE_P2P_CLIENT
&&
365 iftype
!= NL80211_IFTYPE_MESH_POINT
) ||
366 (is_multicast_ether_addr(dst
) &&
367 !compare_ether_addr(src
, addr
)))
369 if (iftype
== NL80211_IFTYPE_MESH_POINT
) {
370 struct ieee80211s_hdr
*meshdr
=
371 (struct ieee80211s_hdr
*) (skb
->data
+ hdrlen
);
372 /* make sure meshdr->flags is on the linear part */
373 if (!pskb_may_pull(skb
, hdrlen
+ 1))
375 if (meshdr
->flags
& MESH_FLAGS_AE_A4
)
376 skb_copy_bits(skb
, hdrlen
+
377 offsetof(struct ieee80211s_hdr
, eaddr1
),
379 hdrlen
+= ieee80211_get_mesh_hdrlen(meshdr
);
383 if (iftype
!= NL80211_IFTYPE_ADHOC
)
388 if (!pskb_may_pull(skb
, hdrlen
+ 8))
391 payload
= skb
->data
+ hdrlen
;
392 ethertype
= (payload
[6] << 8) | payload
[7];
394 if (likely((compare_ether_addr(payload
, rfc1042_header
) == 0 &&
395 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
396 compare_ether_addr(payload
, bridge_tunnel_header
) == 0)) {
397 /* remove RFC1042 or Bridge-Tunnel encapsulation and
398 * replace EtherType */
399 skb_pull(skb
, hdrlen
+ 6);
400 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
401 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
406 skb_pull(skb
, hdrlen
);
407 len
= htons(skb
->len
);
408 ehdr
= (struct ethhdr
*) skb_push(skb
, sizeof(struct ethhdr
));
409 memcpy(ehdr
->h_dest
, dst
, ETH_ALEN
);
410 memcpy(ehdr
->h_source
, src
, ETH_ALEN
);
415 EXPORT_SYMBOL(ieee80211_data_to_8023
);
417 int ieee80211_data_from_8023(struct sk_buff
*skb
, const u8
*addr
,
418 enum nl80211_iftype iftype
, u8
*bssid
, bool qos
)
420 struct ieee80211_hdr hdr
;
421 u16 hdrlen
, ethertype
;
423 const u8
*encaps_data
;
424 int encaps_len
, skip_header_bytes
;
428 if (unlikely(skb
->len
< ETH_HLEN
))
431 nh_pos
= skb_network_header(skb
) - skb
->data
;
432 h_pos
= skb_transport_header(skb
) - skb
->data
;
434 /* convert Ethernet header to proper 802.11 header (based on
436 ethertype
= (skb
->data
[12] << 8) | skb
->data
[13];
437 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
| IEEE80211_STYPE_DATA
);
440 case NL80211_IFTYPE_AP
:
441 case NL80211_IFTYPE_AP_VLAN
:
442 case NL80211_IFTYPE_P2P_GO
:
443 fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
);
445 memcpy(hdr
.addr1
, skb
->data
, ETH_ALEN
);
446 memcpy(hdr
.addr2
, addr
, ETH_ALEN
);
447 memcpy(hdr
.addr3
, skb
->data
+ ETH_ALEN
, ETH_ALEN
);
450 case NL80211_IFTYPE_STATION
:
451 case NL80211_IFTYPE_P2P_CLIENT
:
452 fc
|= cpu_to_le16(IEEE80211_FCTL_TODS
);
454 memcpy(hdr
.addr1
, bssid
, ETH_ALEN
);
455 memcpy(hdr
.addr2
, skb
->data
+ ETH_ALEN
, ETH_ALEN
);
456 memcpy(hdr
.addr3
, skb
->data
, ETH_ALEN
);
459 case NL80211_IFTYPE_ADHOC
:
461 memcpy(hdr
.addr1
, skb
->data
, ETH_ALEN
);
462 memcpy(hdr
.addr2
, skb
->data
+ ETH_ALEN
, ETH_ALEN
);
463 memcpy(hdr
.addr3
, bssid
, ETH_ALEN
);
471 fc
|= cpu_to_le16(IEEE80211_STYPE_QOS_DATA
);
475 hdr
.frame_control
= fc
;
479 skip_header_bytes
= ETH_HLEN
;
480 if (ethertype
== ETH_P_AARP
|| ethertype
== ETH_P_IPX
) {
481 encaps_data
= bridge_tunnel_header
;
482 encaps_len
= sizeof(bridge_tunnel_header
);
483 skip_header_bytes
-= 2;
484 } else if (ethertype
> 0x600) {
485 encaps_data
= rfc1042_header
;
486 encaps_len
= sizeof(rfc1042_header
);
487 skip_header_bytes
-= 2;
493 skb_pull(skb
, skip_header_bytes
);
494 nh_pos
-= skip_header_bytes
;
495 h_pos
-= skip_header_bytes
;
497 head_need
= hdrlen
+ encaps_len
- skb_headroom(skb
);
499 if (head_need
> 0 || skb_cloned(skb
)) {
500 head_need
= max(head_need
, 0);
504 if (pskb_expand_head(skb
, head_need
, 0, GFP_ATOMIC
)) {
505 printk(KERN_ERR
"failed to reallocate Tx buffer\n");
508 skb
->truesize
+= head_need
;
512 memcpy(skb_push(skb
, encaps_len
), encaps_data
, encaps_len
);
513 nh_pos
+= encaps_len
;
517 memcpy(skb_push(skb
, hdrlen
), &hdr
, hdrlen
);
522 /* Update skb pointers to various headers since this modified frame
523 * is going to go through Linux networking code that may potentially
524 * need things like pointer to IP header. */
525 skb_set_mac_header(skb
, 0);
526 skb_set_network_header(skb
, nh_pos
);
527 skb_set_transport_header(skb
, h_pos
);
531 EXPORT_SYMBOL(ieee80211_data_from_8023
);
534 void ieee80211_amsdu_to_8023s(struct sk_buff
*skb
, struct sk_buff_head
*list
,
535 const u8
*addr
, enum nl80211_iftype iftype
,
536 const unsigned int extra_headroom
)
538 struct sk_buff
*frame
= NULL
;
541 const struct ethhdr
*eth
;
543 u8 dst
[ETH_ALEN
], src
[ETH_ALEN
];
545 err
= ieee80211_data_to_8023(skb
, addr
, iftype
);
549 /* skip the wrapping header */
550 eth
= (struct ethhdr
*) skb_pull(skb
, sizeof(struct ethhdr
));
554 while (skb
!= frame
) {
556 __be16 len
= eth
->h_proto
;
557 unsigned int subframe_len
= sizeof(struct ethhdr
) + ntohs(len
);
559 remaining
= skb
->len
;
560 memcpy(dst
, eth
->h_dest
, ETH_ALEN
);
561 memcpy(src
, eth
->h_source
, ETH_ALEN
);
563 padding
= (4 - subframe_len
) & 0x3;
564 /* the last MSDU has no padding */
565 if (subframe_len
> remaining
)
568 skb_pull(skb
, sizeof(struct ethhdr
));
569 /* reuse skb for the last subframe */
570 if (remaining
<= subframe_len
+ padding
)
573 unsigned int hlen
= ALIGN(extra_headroom
, 4);
575 * Allocate and reserve two bytes more for payload
576 * alignment since sizeof(struct ethhdr) is 14.
578 frame
= dev_alloc_skb(hlen
+ subframe_len
+ 2);
582 skb_reserve(frame
, hlen
+ sizeof(struct ethhdr
) + 2);
583 memcpy(skb_put(frame
, ntohs(len
)), skb
->data
,
586 eth
= (struct ethhdr
*)skb_pull(skb
, ntohs(len
) +
589 dev_kfree_skb(frame
);
594 skb_reset_network_header(frame
);
595 frame
->dev
= skb
->dev
;
596 frame
->priority
= skb
->priority
;
598 payload
= frame
->data
;
599 ethertype
= (payload
[6] << 8) | payload
[7];
601 if (likely((compare_ether_addr(payload
, rfc1042_header
) == 0 &&
602 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
603 compare_ether_addr(payload
,
604 bridge_tunnel_header
) == 0)) {
605 /* remove RFC1042 or Bridge-Tunnel
606 * encapsulation and replace EtherType */
608 memcpy(skb_push(frame
, ETH_ALEN
), src
, ETH_ALEN
);
609 memcpy(skb_push(frame
, ETH_ALEN
), dst
, ETH_ALEN
);
611 memcpy(skb_push(frame
, sizeof(__be16
)), &len
,
613 memcpy(skb_push(frame
, ETH_ALEN
), src
, ETH_ALEN
);
614 memcpy(skb_push(frame
, ETH_ALEN
), dst
, ETH_ALEN
);
616 __skb_queue_tail(list
, frame
);
622 __skb_queue_purge(list
);
626 EXPORT_SYMBOL(ieee80211_amsdu_to_8023s
);
628 /* Given a data frame determine the 802.1p/1d tag to use. */
629 unsigned int cfg80211_classify8021d(struct sk_buff
*skb
)
633 /* skb->priority values from 256->263 are magic values to
634 * directly indicate a specific 802.1d priority. This is used
635 * to allow 802.1d priority to be passed directly in from VLAN
638 if (skb
->priority
>= 256 && skb
->priority
<= 263)
639 return skb
->priority
- 256;
641 switch (skb
->protocol
) {
642 case htons(ETH_P_IP
):
643 dscp
= ip_hdr(skb
)->tos
& 0xfc;
651 EXPORT_SYMBOL(cfg80211_classify8021d
);
653 const u8
*ieee80211_bss_get_ie(struct cfg80211_bss
*bss
, u8 ie
)
657 pos
= bss
->information_elements
;
660 end
= pos
+ bss
->len_information_elements
;
662 while (pos
+ 1 < end
) {
663 if (pos
+ 2 + pos
[1] > end
)
672 EXPORT_SYMBOL(ieee80211_bss_get_ie
);
674 void cfg80211_upload_connect_keys(struct wireless_dev
*wdev
)
676 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
677 struct net_device
*dev
= wdev
->netdev
;
680 if (!wdev
->connect_keys
)
683 for (i
= 0; i
< 6; i
++) {
684 if (!wdev
->connect_keys
->params
[i
].cipher
)
686 if (rdev
->ops
->add_key(wdev
->wiphy
, dev
, i
, false, NULL
,
687 &wdev
->connect_keys
->params
[i
])) {
688 printk(KERN_ERR
"%s: failed to set key %d\n",
692 if (wdev
->connect_keys
->def
== i
)
693 if (rdev
->ops
->set_default_key(wdev
->wiphy
, dev
, i
)) {
694 printk(KERN_ERR
"%s: failed to set defkey %d\n",
698 if (wdev
->connect_keys
->defmgmt
== i
)
699 if (rdev
->ops
->set_default_mgmt_key(wdev
->wiphy
, dev
, i
))
700 printk(KERN_ERR
"%s: failed to set mgtdef %d\n",
704 kfree(wdev
->connect_keys
);
705 wdev
->connect_keys
= NULL
;
708 static void cfg80211_process_wdev_events(struct wireless_dev
*wdev
)
710 struct cfg80211_event
*ev
;
712 const u8
*bssid
= NULL
;
714 spin_lock_irqsave(&wdev
->event_lock
, flags
);
715 while (!list_empty(&wdev
->event_list
)) {
716 ev
= list_first_entry(&wdev
->event_list
,
717 struct cfg80211_event
, list
);
719 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
723 case EVENT_CONNECT_RESULT
:
724 if (!is_zero_ether_addr(ev
->cr
.bssid
))
725 bssid
= ev
->cr
.bssid
;
726 __cfg80211_connect_result(
728 ev
->cr
.req_ie
, ev
->cr
.req_ie_len
,
729 ev
->cr
.resp_ie
, ev
->cr
.resp_ie_len
,
731 ev
->cr
.status
== WLAN_STATUS_SUCCESS
,
735 __cfg80211_roamed(wdev
, ev
->rm
.bssid
,
736 ev
->rm
.req_ie
, ev
->rm
.req_ie_len
,
737 ev
->rm
.resp_ie
, ev
->rm
.resp_ie_len
);
739 case EVENT_DISCONNECTED
:
740 __cfg80211_disconnected(wdev
->netdev
,
741 ev
->dc
.ie
, ev
->dc
.ie_len
,
742 ev
->dc
.reason
, true);
744 case EVENT_IBSS_JOINED
:
745 __cfg80211_ibss_joined(wdev
->netdev
, ev
->ij
.bssid
);
752 spin_lock_irqsave(&wdev
->event_lock
, flags
);
754 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
757 void cfg80211_process_rdev_events(struct cfg80211_registered_device
*rdev
)
759 struct wireless_dev
*wdev
;
762 ASSERT_RDEV_LOCK(rdev
);
764 mutex_lock(&rdev
->devlist_mtx
);
766 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
)
767 cfg80211_process_wdev_events(wdev
);
769 mutex_unlock(&rdev
->devlist_mtx
);
772 int cfg80211_change_iface(struct cfg80211_registered_device
*rdev
,
773 struct net_device
*dev
, enum nl80211_iftype ntype
,
774 u32
*flags
, struct vif_params
*params
)
777 enum nl80211_iftype otype
= dev
->ieee80211_ptr
->iftype
;
779 ASSERT_RDEV_LOCK(rdev
);
781 /* don't support changing VLANs, you just re-create them */
782 if (otype
== NL80211_IFTYPE_AP_VLAN
)
785 if (!rdev
->ops
->change_virtual_intf
||
786 !(rdev
->wiphy
.interface_modes
& (1 << ntype
)))
789 /* if it's part of a bridge, reject changing type to station/ibss */
790 if ((dev
->priv_flags
& IFF_BRIDGE_PORT
) &&
791 (ntype
== NL80211_IFTYPE_ADHOC
||
792 ntype
== NL80211_IFTYPE_STATION
||
793 ntype
== NL80211_IFTYPE_P2P_CLIENT
))
796 if (ntype
!= otype
) {
797 dev
->ieee80211_ptr
->use_4addr
= false;
800 case NL80211_IFTYPE_ADHOC
:
801 cfg80211_leave_ibss(rdev
, dev
, false);
803 case NL80211_IFTYPE_STATION
:
804 case NL80211_IFTYPE_P2P_CLIENT
:
805 cfg80211_disconnect(rdev
, dev
,
806 WLAN_REASON_DEAUTH_LEAVING
, true);
808 case NL80211_IFTYPE_MESH_POINT
:
809 /* mesh should be handled? */
815 cfg80211_process_rdev_events(rdev
);
818 err
= rdev
->ops
->change_virtual_intf(&rdev
->wiphy
, dev
,
819 ntype
, flags
, params
);
821 WARN_ON(!err
&& dev
->ieee80211_ptr
->iftype
!= ntype
);
823 if (!err
&& params
&& params
->use_4addr
!= -1)
824 dev
->ieee80211_ptr
->use_4addr
= params
->use_4addr
;
827 dev
->priv_flags
&= ~IFF_DONT_BRIDGE
;
829 case NL80211_IFTYPE_STATION
:
830 if (dev
->ieee80211_ptr
->use_4addr
)
833 case NL80211_IFTYPE_P2P_CLIENT
:
834 case NL80211_IFTYPE_ADHOC
:
835 dev
->priv_flags
|= IFF_DONT_BRIDGE
;
837 case NL80211_IFTYPE_P2P_GO
:
838 case NL80211_IFTYPE_AP
:
839 case NL80211_IFTYPE_AP_VLAN
:
840 case NL80211_IFTYPE_WDS
:
841 case NL80211_IFTYPE_MESH_POINT
:
844 case NL80211_IFTYPE_MONITOR
:
845 /* monitor can't bridge anyway */
847 case NL80211_IFTYPE_UNSPECIFIED
:
848 case NUM_NL80211_IFTYPES
:
857 u16
cfg80211_calculate_bitrate(struct rate_info
*rate
)
859 int modulation
, streams
, bitrate
;
861 if (!(rate
->flags
& RATE_INFO_FLAGS_MCS
))
864 /* the formula below does only work for MCS values smaller than 32 */
868 modulation
= rate
->mcs
& 7;
869 streams
= (rate
->mcs
>> 3) + 1;
871 bitrate
= (rate
->flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
) ?
875 bitrate
*= (modulation
+ 1);
876 else if (modulation
== 4)
877 bitrate
*= (modulation
+ 2);
879 bitrate
*= (modulation
+ 3);
883 if (rate
->flags
& RATE_INFO_FLAGS_SHORT_GI
)
884 bitrate
= (bitrate
/ 9) * 10;
886 /* do NOT round down here */
887 return (bitrate
+ 50000) / 100000;