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 <linux/crc32.h>
10 #include <net/cfg80211.h>
14 struct ieee80211_rate
*
15 ieee80211_get_response_rate(struct ieee80211_supported_band
*sband
,
16 u32 basic_rates
, int bitrate
)
18 struct ieee80211_rate
*result
= &sband
->bitrates
[0];
21 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
22 if (!(basic_rates
& BIT(i
)))
24 if (sband
->bitrates
[i
].bitrate
> bitrate
)
26 result
= &sband
->bitrates
[i
];
31 EXPORT_SYMBOL(ieee80211_get_response_rate
);
33 int ieee80211_channel_to_frequency(int chan
, enum ieee80211_band band
)
35 /* see 802.11 17.3.8.3.2 and Annex J
36 * there are overlapping channel numbers in 5GHz and 2GHz bands */
37 if (band
== IEEE80211_BAND_5GHZ
) {
38 if (chan
>= 182 && chan
<= 196)
39 return 4000 + chan
* 5;
41 return 5000 + chan
* 5;
42 } else { /* IEEE80211_BAND_2GHZ */
46 return 2407 + chan
* 5;
48 return 0; /* not supported */
51 EXPORT_SYMBOL(ieee80211_channel_to_frequency
);
53 int ieee80211_frequency_to_channel(int freq
)
55 /* see 802.11 17.3.8.3.2 and Annex J */
59 return (freq
- 2407) / 5;
60 else if (freq
>= 4910 && freq
<= 4980)
61 return (freq
- 4000) / 5;
63 return (freq
- 5000) / 5;
65 EXPORT_SYMBOL(ieee80211_frequency_to_channel
);
67 struct ieee80211_channel
*__ieee80211_get_channel(struct wiphy
*wiphy
,
70 enum ieee80211_band band
;
71 struct ieee80211_supported_band
*sband
;
74 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
75 sband
= wiphy
->bands
[band
];
80 for (i
= 0; i
< sband
->n_channels
; i
++) {
81 if (sband
->channels
[i
].center_freq
== freq
)
82 return &sband
->channels
[i
];
88 EXPORT_SYMBOL(__ieee80211_get_channel
);
90 static void set_mandatory_flags_band(struct ieee80211_supported_band
*sband
,
91 enum ieee80211_band band
)
96 case IEEE80211_BAND_5GHZ
:
98 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
99 if (sband
->bitrates
[i
].bitrate
== 60 ||
100 sband
->bitrates
[i
].bitrate
== 120 ||
101 sband
->bitrates
[i
].bitrate
== 240) {
102 sband
->bitrates
[i
].flags
|=
103 IEEE80211_RATE_MANDATORY_A
;
109 case IEEE80211_BAND_2GHZ
:
111 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
112 if (sband
->bitrates
[i
].bitrate
== 10) {
113 sband
->bitrates
[i
].flags
|=
114 IEEE80211_RATE_MANDATORY_B
|
115 IEEE80211_RATE_MANDATORY_G
;
119 if (sband
->bitrates
[i
].bitrate
== 20 ||
120 sband
->bitrates
[i
].bitrate
== 55 ||
121 sband
->bitrates
[i
].bitrate
== 110 ||
122 sband
->bitrates
[i
].bitrate
== 60 ||
123 sband
->bitrates
[i
].bitrate
== 120 ||
124 sband
->bitrates
[i
].bitrate
== 240) {
125 sband
->bitrates
[i
].flags
|=
126 IEEE80211_RATE_MANDATORY_G
;
130 if (sband
->bitrates
[i
].bitrate
!= 10 &&
131 sband
->bitrates
[i
].bitrate
!= 20 &&
132 sband
->bitrates
[i
].bitrate
!= 55 &&
133 sband
->bitrates
[i
].bitrate
!= 110)
134 sband
->bitrates
[i
].flags
|=
135 IEEE80211_RATE_ERP_G
;
137 WARN_ON(want
!= 0 && want
!= 3 && want
!= 6);
139 case IEEE80211_NUM_BANDS
:
145 void ieee80211_set_bitrate_flags(struct wiphy
*wiphy
)
147 enum ieee80211_band band
;
149 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++)
150 if (wiphy
->bands
[band
])
151 set_mandatory_flags_band(wiphy
->bands
[band
], band
);
154 int cfg80211_validate_key_settings(struct cfg80211_registered_device
*rdev
,
155 struct key_params
*params
, int key_idx
,
156 bool pairwise
, const u8
*mac_addr
)
163 if (!pairwise
&& mac_addr
&& !(rdev
->wiphy
.flags
& WIPHY_FLAG_IBSS_RSN
))
166 if (pairwise
&& !mac_addr
)
170 * Disallow pairwise keys with non-zero index unless it's WEP
171 * or a vendor specific cipher (because current deployments use
172 * pairwise WEP keys with non-zero indices and for vendor specific
173 * ciphers this should be validated in the driver or hardware level
174 * - but 802.11i clearly specifies to use zero)
176 if (pairwise
&& key_idx
&&
177 ((params
->cipher
== WLAN_CIPHER_SUITE_TKIP
) ||
178 (params
->cipher
== WLAN_CIPHER_SUITE_CCMP
) ||
179 (params
->cipher
== WLAN_CIPHER_SUITE_AES_CMAC
)))
182 switch (params
->cipher
) {
183 case WLAN_CIPHER_SUITE_WEP40
:
184 if (params
->key_len
!= WLAN_KEY_LEN_WEP40
)
187 case WLAN_CIPHER_SUITE_TKIP
:
188 if (params
->key_len
!= WLAN_KEY_LEN_TKIP
)
191 case WLAN_CIPHER_SUITE_CCMP
:
192 if (params
->key_len
!= WLAN_KEY_LEN_CCMP
)
195 case WLAN_CIPHER_SUITE_WEP104
:
196 if (params
->key_len
!= WLAN_KEY_LEN_WEP104
)
199 case WLAN_CIPHER_SUITE_AES_CMAC
:
200 if (params
->key_len
!= WLAN_KEY_LEN_AES_CMAC
)
205 * We don't know anything about this algorithm,
206 * allow using it -- but the driver must check
207 * all parameters! We still check below whether
208 * or not the driver supports this algorithm,
215 switch (params
->cipher
) {
216 case WLAN_CIPHER_SUITE_WEP40
:
217 case WLAN_CIPHER_SUITE_WEP104
:
218 /* These ciphers do not use key sequence */
220 case WLAN_CIPHER_SUITE_TKIP
:
221 case WLAN_CIPHER_SUITE_CCMP
:
222 case WLAN_CIPHER_SUITE_AES_CMAC
:
223 if (params
->seq_len
!= 6)
229 for (i
= 0; i
< rdev
->wiphy
.n_cipher_suites
; i
++)
230 if (params
->cipher
== rdev
->wiphy
.cipher_suites
[i
])
232 if (i
== rdev
->wiphy
.n_cipher_suites
)
238 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
239 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
240 const unsigned char rfc1042_header
[] __aligned(2) =
241 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
242 EXPORT_SYMBOL(rfc1042_header
);
244 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
245 const unsigned char bridge_tunnel_header
[] __aligned(2) =
246 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
247 EXPORT_SYMBOL(bridge_tunnel_header
);
249 unsigned int __attribute_const__
ieee80211_hdrlen(__le16 fc
)
251 unsigned int hdrlen
= 24;
253 if (ieee80211_is_data(fc
)) {
254 if (ieee80211_has_a4(fc
))
256 if (ieee80211_is_data_qos(fc
)) {
257 hdrlen
+= IEEE80211_QOS_CTL_LEN
;
258 if (ieee80211_has_order(fc
))
259 hdrlen
+= IEEE80211_HT_CTL_LEN
;
264 if (ieee80211_is_ctl(fc
)) {
266 * ACK and CTS are 10 bytes, all others 16. To see how
267 * to get this condition consider
268 * subtype mask: 0b0000000011110000 (0x00F0)
269 * ACK subtype: 0b0000000011010000 (0x00D0)
270 * CTS subtype: 0b0000000011000000 (0x00C0)
271 * bits that matter: ^^^ (0x00E0)
272 * value of those: 0b0000000011000000 (0x00C0)
274 if ((fc
& cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0))
282 EXPORT_SYMBOL(ieee80211_hdrlen
);
284 unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff
*skb
)
286 const struct ieee80211_hdr
*hdr
=
287 (const struct ieee80211_hdr
*)skb
->data
;
290 if (unlikely(skb
->len
< 10))
292 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
293 if (unlikely(hdrlen
> skb
->len
))
297 EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb
);
299 static int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr
*meshhdr
)
301 int ae
= meshhdr
->flags
& MESH_FLAGS_AE
;
306 case MESH_FLAGS_AE_A4
:
308 case MESH_FLAGS_AE_A5_A6
:
310 case (MESH_FLAGS_AE_A4
| MESH_FLAGS_AE_A5_A6
):
317 int ieee80211_data_to_8023(struct sk_buff
*skb
, const u8
*addr
,
318 enum nl80211_iftype iftype
)
320 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
321 u16 hdrlen
, ethertype
;
324 u8 src
[ETH_ALEN
] __aligned(2);
326 if (unlikely(!ieee80211_is_data_present(hdr
->frame_control
)))
329 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
331 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
333 * IEEE 802.11 address fields:
334 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
335 * 0 0 DA SA BSSID n/a
336 * 0 1 DA BSSID SA n/a
337 * 1 0 BSSID SA DA n/a
340 memcpy(dst
, ieee80211_get_DA(hdr
), ETH_ALEN
);
341 memcpy(src
, ieee80211_get_SA(hdr
), ETH_ALEN
);
343 switch (hdr
->frame_control
&
344 cpu_to_le16(IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) {
345 case cpu_to_le16(IEEE80211_FCTL_TODS
):
346 if (unlikely(iftype
!= NL80211_IFTYPE_AP
&&
347 iftype
!= NL80211_IFTYPE_AP_VLAN
&&
348 iftype
!= NL80211_IFTYPE_P2P_GO
))
351 case cpu_to_le16(IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
):
352 if (unlikely(iftype
!= NL80211_IFTYPE_WDS
&&
353 iftype
!= NL80211_IFTYPE_MESH_POINT
&&
354 iftype
!= NL80211_IFTYPE_AP_VLAN
&&
355 iftype
!= NL80211_IFTYPE_STATION
))
357 if (iftype
== NL80211_IFTYPE_MESH_POINT
) {
358 struct ieee80211s_hdr
*meshdr
=
359 (struct ieee80211s_hdr
*) (skb
->data
+ hdrlen
);
360 /* make sure meshdr->flags is on the linear part */
361 if (!pskb_may_pull(skb
, hdrlen
+ 1))
363 if (meshdr
->flags
& MESH_FLAGS_AE_A5_A6
) {
364 skb_copy_bits(skb
, hdrlen
+
365 offsetof(struct ieee80211s_hdr
, eaddr1
),
367 skb_copy_bits(skb
, hdrlen
+
368 offsetof(struct ieee80211s_hdr
, eaddr2
),
371 hdrlen
+= ieee80211_get_mesh_hdrlen(meshdr
);
374 case cpu_to_le16(IEEE80211_FCTL_FROMDS
):
375 if ((iftype
!= NL80211_IFTYPE_STATION
&&
376 iftype
!= NL80211_IFTYPE_P2P_CLIENT
&&
377 iftype
!= NL80211_IFTYPE_MESH_POINT
) ||
378 (is_multicast_ether_addr(dst
) &&
379 !compare_ether_addr(src
, addr
)))
381 if (iftype
== NL80211_IFTYPE_MESH_POINT
) {
382 struct ieee80211s_hdr
*meshdr
=
383 (struct ieee80211s_hdr
*) (skb
->data
+ hdrlen
);
384 /* make sure meshdr->flags is on the linear part */
385 if (!pskb_may_pull(skb
, hdrlen
+ 1))
387 if (meshdr
->flags
& MESH_FLAGS_AE_A4
)
388 skb_copy_bits(skb
, hdrlen
+
389 offsetof(struct ieee80211s_hdr
, eaddr1
),
391 hdrlen
+= ieee80211_get_mesh_hdrlen(meshdr
);
395 if (iftype
!= NL80211_IFTYPE_ADHOC
)
400 if (!pskb_may_pull(skb
, hdrlen
+ 8))
403 payload
= skb
->data
+ hdrlen
;
404 ethertype
= (payload
[6] << 8) | payload
[7];
406 if (likely((compare_ether_addr(payload
, rfc1042_header
) == 0 &&
407 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
408 compare_ether_addr(payload
, bridge_tunnel_header
) == 0)) {
409 /* remove RFC1042 or Bridge-Tunnel encapsulation and
410 * replace EtherType */
411 skb_pull(skb
, hdrlen
+ 6);
412 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
413 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
418 skb_pull(skb
, hdrlen
);
419 len
= htons(skb
->len
);
420 ehdr
= (struct ethhdr
*) skb_push(skb
, sizeof(struct ethhdr
));
421 memcpy(ehdr
->h_dest
, dst
, ETH_ALEN
);
422 memcpy(ehdr
->h_source
, src
, ETH_ALEN
);
427 EXPORT_SYMBOL(ieee80211_data_to_8023
);
429 int ieee80211_data_from_8023(struct sk_buff
*skb
, const u8
*addr
,
430 enum nl80211_iftype iftype
, u8
*bssid
, bool qos
)
432 struct ieee80211_hdr hdr
;
433 u16 hdrlen
, ethertype
;
435 const u8
*encaps_data
;
436 int encaps_len
, skip_header_bytes
;
440 if (unlikely(skb
->len
< ETH_HLEN
))
443 nh_pos
= skb_network_header(skb
) - skb
->data
;
444 h_pos
= skb_transport_header(skb
) - skb
->data
;
446 /* convert Ethernet header to proper 802.11 header (based on
448 ethertype
= (skb
->data
[12] << 8) | skb
->data
[13];
449 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
| IEEE80211_STYPE_DATA
);
452 case NL80211_IFTYPE_AP
:
453 case NL80211_IFTYPE_AP_VLAN
:
454 case NL80211_IFTYPE_P2P_GO
:
455 fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
);
457 memcpy(hdr
.addr1
, skb
->data
, ETH_ALEN
);
458 memcpy(hdr
.addr2
, addr
, ETH_ALEN
);
459 memcpy(hdr
.addr3
, skb
->data
+ ETH_ALEN
, ETH_ALEN
);
462 case NL80211_IFTYPE_STATION
:
463 case NL80211_IFTYPE_P2P_CLIENT
:
464 fc
|= cpu_to_le16(IEEE80211_FCTL_TODS
);
466 memcpy(hdr
.addr1
, bssid
, ETH_ALEN
);
467 memcpy(hdr
.addr2
, skb
->data
+ ETH_ALEN
, ETH_ALEN
);
468 memcpy(hdr
.addr3
, skb
->data
, ETH_ALEN
);
471 case NL80211_IFTYPE_ADHOC
:
473 memcpy(hdr
.addr1
, skb
->data
, ETH_ALEN
);
474 memcpy(hdr
.addr2
, skb
->data
+ ETH_ALEN
, ETH_ALEN
);
475 memcpy(hdr
.addr3
, bssid
, ETH_ALEN
);
483 fc
|= cpu_to_le16(IEEE80211_STYPE_QOS_DATA
);
487 hdr
.frame_control
= fc
;
491 skip_header_bytes
= ETH_HLEN
;
492 if (ethertype
== ETH_P_AARP
|| ethertype
== ETH_P_IPX
) {
493 encaps_data
= bridge_tunnel_header
;
494 encaps_len
= sizeof(bridge_tunnel_header
);
495 skip_header_bytes
-= 2;
496 } else if (ethertype
> 0x600) {
497 encaps_data
= rfc1042_header
;
498 encaps_len
= sizeof(rfc1042_header
);
499 skip_header_bytes
-= 2;
505 skb_pull(skb
, skip_header_bytes
);
506 nh_pos
-= skip_header_bytes
;
507 h_pos
-= skip_header_bytes
;
509 head_need
= hdrlen
+ encaps_len
- skb_headroom(skb
);
511 if (head_need
> 0 || skb_cloned(skb
)) {
512 head_need
= max(head_need
, 0);
516 if (pskb_expand_head(skb
, head_need
, 0, GFP_ATOMIC
)) {
517 pr_err("failed to reallocate Tx buffer\n");
520 skb
->truesize
+= head_need
;
524 memcpy(skb_push(skb
, encaps_len
), encaps_data
, encaps_len
);
525 nh_pos
+= encaps_len
;
529 memcpy(skb_push(skb
, hdrlen
), &hdr
, hdrlen
);
534 /* Update skb pointers to various headers since this modified frame
535 * is going to go through Linux networking code that may potentially
536 * need things like pointer to IP header. */
537 skb_set_mac_header(skb
, 0);
538 skb_set_network_header(skb
, nh_pos
);
539 skb_set_transport_header(skb
, h_pos
);
543 EXPORT_SYMBOL(ieee80211_data_from_8023
);
546 void ieee80211_amsdu_to_8023s(struct sk_buff
*skb
, struct sk_buff_head
*list
,
547 const u8
*addr
, enum nl80211_iftype iftype
,
548 const unsigned int extra_headroom
,
549 bool has_80211_header
)
551 struct sk_buff
*frame
= NULL
;
554 const struct ethhdr
*eth
;
556 u8 dst
[ETH_ALEN
], src
[ETH_ALEN
];
558 if (has_80211_header
) {
559 err
= ieee80211_data_to_8023(skb
, addr
, iftype
);
563 /* skip the wrapping header */
564 eth
= (struct ethhdr
*) skb_pull(skb
, sizeof(struct ethhdr
));
568 eth
= (struct ethhdr
*) skb
->data
;
571 while (skb
!= frame
) {
573 __be16 len
= eth
->h_proto
;
574 unsigned int subframe_len
= sizeof(struct ethhdr
) + ntohs(len
);
576 remaining
= skb
->len
;
577 memcpy(dst
, eth
->h_dest
, ETH_ALEN
);
578 memcpy(src
, eth
->h_source
, ETH_ALEN
);
580 padding
= (4 - subframe_len
) & 0x3;
581 /* the last MSDU has no padding */
582 if (subframe_len
> remaining
)
585 skb_pull(skb
, sizeof(struct ethhdr
));
586 /* reuse skb for the last subframe */
587 if (remaining
<= subframe_len
+ padding
)
590 unsigned int hlen
= ALIGN(extra_headroom
, 4);
592 * Allocate and reserve two bytes more for payload
593 * alignment since sizeof(struct ethhdr) is 14.
595 frame
= dev_alloc_skb(hlen
+ subframe_len
+ 2);
599 skb_reserve(frame
, hlen
+ sizeof(struct ethhdr
) + 2);
600 memcpy(skb_put(frame
, ntohs(len
)), skb
->data
,
603 eth
= (struct ethhdr
*)skb_pull(skb
, ntohs(len
) +
606 dev_kfree_skb(frame
);
611 skb_reset_network_header(frame
);
612 frame
->dev
= skb
->dev
;
613 frame
->priority
= skb
->priority
;
615 payload
= frame
->data
;
616 ethertype
= (payload
[6] << 8) | payload
[7];
618 if (likely((compare_ether_addr(payload
, rfc1042_header
) == 0 &&
619 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
620 compare_ether_addr(payload
,
621 bridge_tunnel_header
) == 0)) {
622 /* remove RFC1042 or Bridge-Tunnel
623 * encapsulation and replace EtherType */
625 memcpy(skb_push(frame
, ETH_ALEN
), src
, ETH_ALEN
);
626 memcpy(skb_push(frame
, ETH_ALEN
), dst
, ETH_ALEN
);
628 memcpy(skb_push(frame
, sizeof(__be16
)), &len
,
630 memcpy(skb_push(frame
, ETH_ALEN
), src
, ETH_ALEN
);
631 memcpy(skb_push(frame
, ETH_ALEN
), dst
, ETH_ALEN
);
633 __skb_queue_tail(list
, frame
);
639 __skb_queue_purge(list
);
643 EXPORT_SYMBOL(ieee80211_amsdu_to_8023s
);
645 /* Given a data frame determine the 802.1p/1d tag to use. */
646 unsigned int cfg80211_classify8021d(struct sk_buff
*skb
)
650 /* skb->priority values from 256->263 are magic values to
651 * directly indicate a specific 802.1d priority. This is used
652 * to allow 802.1d priority to be passed directly in from VLAN
655 if (skb
->priority
>= 256 && skb
->priority
<= 263)
656 return skb
->priority
- 256;
658 switch (skb
->protocol
) {
659 case htons(ETH_P_IP
):
660 dscp
= ip_hdr(skb
)->tos
& 0xfc;
668 EXPORT_SYMBOL(cfg80211_classify8021d
);
670 const u8
*ieee80211_bss_get_ie(struct cfg80211_bss
*bss
, u8 ie
)
674 pos
= bss
->information_elements
;
677 end
= pos
+ bss
->len_information_elements
;
679 while (pos
+ 1 < end
) {
680 if (pos
+ 2 + pos
[1] > end
)
689 EXPORT_SYMBOL(ieee80211_bss_get_ie
);
691 void cfg80211_upload_connect_keys(struct wireless_dev
*wdev
)
693 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
694 struct net_device
*dev
= wdev
->netdev
;
697 if (!wdev
->connect_keys
)
700 for (i
= 0; i
< 6; i
++) {
701 if (!wdev
->connect_keys
->params
[i
].cipher
)
703 if (rdev
->ops
->add_key(wdev
->wiphy
, dev
, i
, false, NULL
,
704 &wdev
->connect_keys
->params
[i
])) {
705 netdev_err(dev
, "failed to set key %d\n", i
);
708 if (wdev
->connect_keys
->def
== i
)
709 if (rdev
->ops
->set_default_key(wdev
->wiphy
, dev
,
711 netdev_err(dev
, "failed to set defkey %d\n", i
);
714 if (wdev
->connect_keys
->defmgmt
== i
)
715 if (rdev
->ops
->set_default_mgmt_key(wdev
->wiphy
, dev
, i
))
716 netdev_err(dev
, "failed to set mgtdef %d\n", i
);
719 kfree(wdev
->connect_keys
);
720 wdev
->connect_keys
= NULL
;
723 static void cfg80211_process_wdev_events(struct wireless_dev
*wdev
)
725 struct cfg80211_event
*ev
;
727 const u8
*bssid
= NULL
;
729 spin_lock_irqsave(&wdev
->event_lock
, flags
);
730 while (!list_empty(&wdev
->event_list
)) {
731 ev
= list_first_entry(&wdev
->event_list
,
732 struct cfg80211_event
, list
);
734 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
738 case EVENT_CONNECT_RESULT
:
739 if (!is_zero_ether_addr(ev
->cr
.bssid
))
740 bssid
= ev
->cr
.bssid
;
741 __cfg80211_connect_result(
743 ev
->cr
.req_ie
, ev
->cr
.req_ie_len
,
744 ev
->cr
.resp_ie
, ev
->cr
.resp_ie_len
,
746 ev
->cr
.status
== WLAN_STATUS_SUCCESS
,
750 __cfg80211_roamed(wdev
, ev
->rm
.channel
, ev
->rm
.bssid
,
751 ev
->rm
.req_ie
, ev
->rm
.req_ie_len
,
752 ev
->rm
.resp_ie
, ev
->rm
.resp_ie_len
);
754 case EVENT_DISCONNECTED
:
755 __cfg80211_disconnected(wdev
->netdev
,
756 ev
->dc
.ie
, ev
->dc
.ie_len
,
757 ev
->dc
.reason
, true);
759 case EVENT_IBSS_JOINED
:
760 __cfg80211_ibss_joined(wdev
->netdev
, ev
->ij
.bssid
);
767 spin_lock_irqsave(&wdev
->event_lock
, flags
);
769 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
772 void cfg80211_process_rdev_events(struct cfg80211_registered_device
*rdev
)
774 struct wireless_dev
*wdev
;
777 ASSERT_RDEV_LOCK(rdev
);
779 mutex_lock(&rdev
->devlist_mtx
);
781 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
)
782 cfg80211_process_wdev_events(wdev
);
784 mutex_unlock(&rdev
->devlist_mtx
);
787 int cfg80211_change_iface(struct cfg80211_registered_device
*rdev
,
788 struct net_device
*dev
, enum nl80211_iftype ntype
,
789 u32
*flags
, struct vif_params
*params
)
792 enum nl80211_iftype otype
= dev
->ieee80211_ptr
->iftype
;
794 ASSERT_RDEV_LOCK(rdev
);
796 /* don't support changing VLANs, you just re-create them */
797 if (otype
== NL80211_IFTYPE_AP_VLAN
)
800 if (!rdev
->ops
->change_virtual_intf
||
801 !(rdev
->wiphy
.interface_modes
& (1 << ntype
)))
804 /* if it's part of a bridge, reject changing type to station/ibss */
805 if ((dev
->priv_flags
& IFF_BRIDGE_PORT
) &&
806 (ntype
== NL80211_IFTYPE_ADHOC
||
807 ntype
== NL80211_IFTYPE_STATION
||
808 ntype
== NL80211_IFTYPE_P2P_CLIENT
))
811 if (ntype
!= otype
) {
812 err
= cfg80211_can_change_interface(rdev
, dev
->ieee80211_ptr
,
817 dev
->ieee80211_ptr
->use_4addr
= false;
818 dev
->ieee80211_ptr
->mesh_id_up_len
= 0;
821 case NL80211_IFTYPE_ADHOC
:
822 cfg80211_leave_ibss(rdev
, dev
, false);
824 case NL80211_IFTYPE_STATION
:
825 case NL80211_IFTYPE_P2P_CLIENT
:
826 cfg80211_disconnect(rdev
, dev
,
827 WLAN_REASON_DEAUTH_LEAVING
, true);
829 case NL80211_IFTYPE_MESH_POINT
:
830 /* mesh should be handled? */
836 cfg80211_process_rdev_events(rdev
);
839 err
= rdev
->ops
->change_virtual_intf(&rdev
->wiphy
, dev
,
840 ntype
, flags
, params
);
842 WARN_ON(!err
&& dev
->ieee80211_ptr
->iftype
!= ntype
);
844 if (!err
&& params
&& params
->use_4addr
!= -1)
845 dev
->ieee80211_ptr
->use_4addr
= params
->use_4addr
;
848 dev
->priv_flags
&= ~IFF_DONT_BRIDGE
;
850 case NL80211_IFTYPE_STATION
:
851 if (dev
->ieee80211_ptr
->use_4addr
)
854 case NL80211_IFTYPE_P2P_CLIENT
:
855 case NL80211_IFTYPE_ADHOC
:
856 dev
->priv_flags
|= IFF_DONT_BRIDGE
;
858 case NL80211_IFTYPE_P2P_GO
:
859 case NL80211_IFTYPE_AP
:
860 case NL80211_IFTYPE_AP_VLAN
:
861 case NL80211_IFTYPE_WDS
:
862 case NL80211_IFTYPE_MESH_POINT
:
865 case NL80211_IFTYPE_MONITOR
:
866 /* monitor can't bridge anyway */
868 case NL80211_IFTYPE_UNSPECIFIED
:
869 case NUM_NL80211_IFTYPES
:
878 u16
cfg80211_calculate_bitrate(struct rate_info
*rate
)
880 int modulation
, streams
, bitrate
;
882 if (!(rate
->flags
& RATE_INFO_FLAGS_MCS
))
885 /* the formula below does only work for MCS values smaller than 32 */
889 modulation
= rate
->mcs
& 7;
890 streams
= (rate
->mcs
>> 3) + 1;
892 bitrate
= (rate
->flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
) ?
896 bitrate
*= (modulation
+ 1);
897 else if (modulation
== 4)
898 bitrate
*= (modulation
+ 2);
900 bitrate
*= (modulation
+ 3);
904 if (rate
->flags
& RATE_INFO_FLAGS_SHORT_GI
)
905 bitrate
= (bitrate
/ 9) * 10;
907 /* do NOT round down here */
908 return (bitrate
+ 50000) / 100000;
911 int cfg80211_validate_beacon_int(struct cfg80211_registered_device
*rdev
,
914 struct wireless_dev
*wdev
;
920 mutex_lock(&rdev
->devlist_mtx
);
922 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
) {
923 if (!wdev
->beacon_interval
)
925 if (wdev
->beacon_interval
!= beacon_int
) {
931 mutex_unlock(&rdev
->devlist_mtx
);
936 int cfg80211_can_change_interface(struct cfg80211_registered_device
*rdev
,
937 struct wireless_dev
*wdev
,
938 enum nl80211_iftype iftype
)
940 struct wireless_dev
*wdev_iter
;
941 int num
[NUM_NL80211_IFTYPES
];
947 /* Always allow software iftypes */
948 if (rdev
->wiphy
.software_iftypes
& BIT(iftype
))
952 * Drivers will gradually all set this flag, until all
953 * have it we only enforce for those that set it.
955 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_ENFORCE_COMBINATIONS
))
958 memset(num
, 0, sizeof(num
));
962 mutex_lock(&rdev
->devlist_mtx
);
963 list_for_each_entry(wdev_iter
, &rdev
->netdev_list
, list
) {
964 if (wdev_iter
== wdev
)
966 if (!netif_running(wdev_iter
->netdev
))
969 if (rdev
->wiphy
.software_iftypes
& BIT(wdev_iter
->iftype
))
972 num
[wdev_iter
->iftype
]++;
975 mutex_unlock(&rdev
->devlist_mtx
);
977 for (i
= 0; i
< rdev
->wiphy
.n_iface_combinations
; i
++) {
978 const struct ieee80211_iface_combination
*c
;
979 struct ieee80211_iface_limit
*limits
;
981 c
= &rdev
->wiphy
.iface_combinations
[i
];
983 limits
= kmemdup(c
->limits
, sizeof(limits
[0]) * c
->n_limits
,
987 if (total
> c
->max_interfaces
)
990 for (iftype
= 0; iftype
< NUM_NL80211_IFTYPES
; iftype
++) {
991 if (rdev
->wiphy
.software_iftypes
& BIT(iftype
))
993 for (j
= 0; j
< c
->n_limits
; j
++) {
994 if (!(limits
[j
].types
& iftype
))
996 if (limits
[j
].max
< num
[iftype
])
998 limits
[j
].max
-= num
[iftype
];
1011 int ieee80211_get_ratemask(struct ieee80211_supported_band
*sband
,
1012 const u8
*rates
, unsigned int n_rates
,
1020 if (n_rates
== 0 || n_rates
> NL80211_MAX_SUPP_RATES
)
1025 for (i
= 0; i
< n_rates
; i
++) {
1026 int rate
= (rates
[i
] & 0x7f) * 5;
1029 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
1030 if (sband
->bitrates
[j
].bitrate
== rate
) {
1041 * mask must have at least one bit set here since we
1042 * didn't accept a 0-length rates array nor allowed
1043 * entries in the array that didn't exist
1049 u32
ieee802_11_parse_elems_crc(u8
*start
, size_t len
,
1050 struct ieee802_11_elems
*elems
,
1051 u64 filter
, u32 crc
)
1055 bool calc_crc
= filter
!= 0;
1057 memset(elems
, 0, sizeof(*elems
));
1058 elems
->ie_start
= start
;
1059 elems
->total_len
= len
;
1071 if (calc_crc
&& id
< 64 && (filter
& (1ULL << id
)))
1072 crc
= crc32_be(crc
, pos
- 2, elen
+ 2);
1077 elems
->ssid_len
= elen
;
1079 case WLAN_EID_SUPP_RATES
:
1080 elems
->supp_rates
= pos
;
1081 elems
->supp_rates_len
= elen
;
1083 case WLAN_EID_FH_PARAMS
:
1084 elems
->fh_params
= pos
;
1085 elems
->fh_params_len
= elen
;
1087 case WLAN_EID_DS_PARAMS
:
1088 elems
->ds_params
= pos
;
1089 elems
->ds_params_len
= elen
;
1091 case WLAN_EID_CF_PARAMS
:
1092 elems
->cf_params
= pos
;
1093 elems
->cf_params_len
= elen
;
1096 if (elen
>= sizeof(struct ieee80211_tim_ie
)) {
1097 elems
->tim
= (void *)pos
;
1098 elems
->tim_len
= elen
;
1101 case WLAN_EID_IBSS_PARAMS
:
1102 elems
->ibss_params
= pos
;
1103 elems
->ibss_params_len
= elen
;
1105 case WLAN_EID_CHALLENGE
:
1106 elems
->challenge
= pos
;
1107 elems
->challenge_len
= elen
;
1109 case WLAN_EID_VENDOR_SPECIFIC
:
1110 if (elen
>= 4 && pos
[0] == 0x00 && pos
[1] == 0x50 &&
1112 /* Microsoft OUI (00:50:F2) */
1115 crc
= crc32_be(crc
, pos
- 2, elen
+ 2);
1118 /* OUI Type 1 - WPA IE */
1120 elems
->wpa_len
= elen
;
1121 } else if (elen
>= 5 && pos
[3] == 2) {
1122 /* OUI Type 2 - WMM IE */
1124 elems
->wmm_info
= pos
;
1125 elems
->wmm_info_len
= elen
;
1126 } else if (pos
[4] == 1) {
1127 elems
->wmm_param
= pos
;
1128 elems
->wmm_param_len
= elen
;
1135 elems
->rsn_len
= elen
;
1137 case WLAN_EID_ERP_INFO
:
1138 elems
->erp_info
= pos
;
1139 elems
->erp_info_len
= elen
;
1141 case WLAN_EID_EXT_SUPP_RATES
:
1142 elems
->ext_supp_rates
= pos
;
1143 elems
->ext_supp_rates_len
= elen
;
1145 case WLAN_EID_HT_CAPABILITY
:
1146 if (elen
>= sizeof(struct ieee80211_ht_cap
))
1147 elems
->ht_cap_elem
= (void *)pos
;
1149 case WLAN_EID_HT_INFORMATION
:
1150 if (elen
>= sizeof(struct ieee80211_ht_info
))
1151 elems
->ht_info_elem
= (void *)pos
;
1153 case WLAN_EID_MESH_ID
:
1154 elems
->mesh_id
= pos
;
1155 elems
->mesh_id_len
= elen
;
1157 case WLAN_EID_MESH_CONFIG
:
1158 if (elen
>= sizeof(struct ieee80211_meshconf_ie
))
1159 elems
->mesh_config
= (void *)pos
;
1161 case WLAN_EID_PEER_MGMT
:
1162 elems
->peering
= pos
;
1163 elems
->peering_len
= elen
;
1167 elems
->preq_len
= elen
;
1171 elems
->prep_len
= elen
;
1175 elems
->perr_len
= elen
;
1178 if (elen
>= sizeof(struct ieee80211_rann_ie
))
1179 elems
->rann
= (void *)pos
;
1181 case WLAN_EID_CHANNEL_SWITCH
:
1182 elems
->ch_switch_elem
= pos
;
1183 elems
->ch_switch_elem_len
= elen
;
1185 case WLAN_EID_QUIET
:
1186 if (!elems
->quiet_elem
) {
1187 elems
->quiet_elem
= pos
;
1188 elems
->quiet_elem_len
= elen
;
1190 elems
->num_of_quiet_elem
++;
1192 case WLAN_EID_COUNTRY
:
1193 elems
->country_elem
= pos
;
1194 elems
->country_elem_len
= elen
;
1196 case WLAN_EID_PWR_CONSTRAINT
:
1197 elems
->pwr_constr_elem
= pos
;
1198 elems
->pwr_constr_elem_len
= elen
;
1200 case WLAN_EID_TIMEOUT_INTERVAL
:
1201 elems
->timeout_int
= pos
;
1202 elems
->timeout_int_len
= elen
;
1214 EXPORT_SYMBOL(ieee802_11_parse_elems_crc
);