1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Wireless utility functions 4 * 5 * Copyright 2007-2009 Johannes Berg <johannes@sipsolutions.net> 6 * Copyright 2013-2014 Intel Mobile Communications GmbH 7 * Copyright 2017 Intel Deutschland GmbH 8 * Copyright (C) 2018-2019 Intel Corporation 9 */ 10 #include <linux/export.h> 11 #include <linux/bitops.h> 12 #include <linux/etherdevice.h> 13 #include <linux/slab.h> 14 #include <linux/ieee80211.h> 15 #include <net/cfg80211.h> 16 #include <net/ip.h> 17 #include <net/dsfield.h> 18 #include <linux/if_vlan.h> 19 #include <linux/mpls.h> 20 #include <linux/gcd.h> 21 #include <linux/bitfield.h> 22 #include <linux/nospec.h> 23 #include "core.h" 24 #include "rdev-ops.h" 25 26 27 struct ieee80211_rate * 28 ieee80211_get_response_rate(struct ieee80211_supported_band *sband, 29 u32 basic_rates, int bitrate) 30 { 31 struct ieee80211_rate *result = &sband->bitrates[0]; 32 int i; 33 34 for (i = 0; i < sband->n_bitrates; i++) { 35 if (!(basic_rates & BIT(i))) 36 continue; 37 if (sband->bitrates[i].bitrate > bitrate) 38 continue; 39 result = &sband->bitrates[i]; 40 } 41 42 return result; 43 } 44 EXPORT_SYMBOL(ieee80211_get_response_rate); 45 46 u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband, 47 enum nl80211_bss_scan_width scan_width) 48 { 49 struct ieee80211_rate *bitrates; 50 u32 mandatory_rates = 0; 51 enum ieee80211_rate_flags mandatory_flag; 52 int i; 53 54 if (WARN_ON(!sband)) 55 return 1; 56 57 if (sband->band == NL80211_BAND_2GHZ) { 58 if (scan_width == NL80211_BSS_CHAN_WIDTH_5 || 59 scan_width == NL80211_BSS_CHAN_WIDTH_10) 60 mandatory_flag = IEEE80211_RATE_MANDATORY_G; 61 else 62 mandatory_flag = IEEE80211_RATE_MANDATORY_B; 63 } else { 64 mandatory_flag = IEEE80211_RATE_MANDATORY_A; 65 } 66 67 bitrates = sband->bitrates; 68 for (i = 0; i < sband->n_bitrates; i++) 69 if (bitrates[i].flags & mandatory_flag) 70 mandatory_rates |= BIT(i); 71 return mandatory_rates; 72 } 73 EXPORT_SYMBOL(ieee80211_mandatory_rates); 74 75 int ieee80211_channel_to_frequency(int chan, enum nl80211_band band) 76 { 77 /* see 802.11 17.3.8.3.2 and Annex J 78 * there are overlapping channel numbers in 5GHz and 2GHz bands */ 79 if (chan <= 0) 80 return 0; /* not supported */ 81 switch (band) { 82 case NL80211_BAND_2GHZ: 83 if (chan == 14) 84 return 2484; 85 else if (chan < 14) 86 return 2407 + chan * 5; 87 break; 88 case NL80211_BAND_5GHZ: 89 if (chan >= 182 && chan <= 196) 90 return 4000 + chan * 5; 91 else 92 return 5000 + chan * 5; 93 break; 94 case NL80211_BAND_6GHZ: 95 /* see 802.11ax D4.1 27.3.22.2 */ 96 if (chan <= 253) 97 return 5940 + chan * 5; 98 break; 99 case NL80211_BAND_60GHZ: 100 if (chan < 7) 101 return 56160 + chan * 2160; 102 break; 103 default: 104 ; 105 } 106 return 0; /* not supported */ 107 } 108 EXPORT_SYMBOL(ieee80211_channel_to_frequency); 109 110 int ieee80211_frequency_to_channel(int freq) 111 { 112 /* see 802.11 17.3.8.3.2 and Annex J */ 113 if (freq == 2484) 114 return 14; 115 else if (freq < 2484) 116 return (freq - 2407) / 5; 117 else if (freq >= 4910 && freq <= 4980) 118 return (freq - 4000) / 5; 119 else if (freq < 5940) 120 return (freq - 5000) / 5; 121 else if (freq <= 45000) /* DMG band lower limit */ 122 /* see 802.11ax D4.1 27.3.22.2 */ 123 return (freq - 5940) / 5; 124 else if (freq >= 58320 && freq <= 70200) 125 return (freq - 56160) / 2160; 126 else 127 return 0; 128 } 129 EXPORT_SYMBOL(ieee80211_frequency_to_channel); 130 131 struct ieee80211_channel *ieee80211_get_channel(struct wiphy *wiphy, int freq) 132 { 133 enum nl80211_band band; 134 struct ieee80211_supported_band *sband; 135 int i; 136 137 for (band = 0; band < NUM_NL80211_BANDS; band++) { 138 sband = wiphy->bands[band]; 139 140 if (!sband) 141 continue; 142 143 for (i = 0; i < sband->n_channels; i++) { 144 if (sband->channels[i].center_freq == freq) 145 return &sband->channels[i]; 146 } 147 } 148 149 return NULL; 150 } 151 EXPORT_SYMBOL(ieee80211_get_channel); 152 153 static void set_mandatory_flags_band(struct ieee80211_supported_band *sband) 154 { 155 int i, want; 156 157 switch (sband->band) { 158 case NL80211_BAND_5GHZ: 159 case NL80211_BAND_6GHZ: 160 want = 3; 161 for (i = 0; i < sband->n_bitrates; i++) { 162 if (sband->bitrates[i].bitrate == 60 || 163 sband->bitrates[i].bitrate == 120 || 164 sband->bitrates[i].bitrate == 240) { 165 sband->bitrates[i].flags |= 166 IEEE80211_RATE_MANDATORY_A; 167 want--; 168 } 169 } 170 WARN_ON(want); 171 break; 172 case NL80211_BAND_2GHZ: 173 want = 7; 174 for (i = 0; i < sband->n_bitrates; i++) { 175 switch (sband->bitrates[i].bitrate) { 176 case 10: 177 case 20: 178 case 55: 179 case 110: 180 sband->bitrates[i].flags |= 181 IEEE80211_RATE_MANDATORY_B | 182 IEEE80211_RATE_MANDATORY_G; 183 want--; 184 break; 185 case 60: 186 case 120: 187 case 240: 188 sband->bitrates[i].flags |= 189 IEEE80211_RATE_MANDATORY_G; 190 want--; 191 /* fall through */ 192 default: 193 sband->bitrates[i].flags |= 194 IEEE80211_RATE_ERP_G; 195 break; 196 } 197 } 198 WARN_ON(want != 0 && want != 3); 199 break; 200 case NL80211_BAND_60GHZ: 201 /* check for mandatory HT MCS 1..4 */ 202 WARN_ON(!sband->ht_cap.ht_supported); 203 WARN_ON((sband->ht_cap.mcs.rx_mask[0] & 0x1e) != 0x1e); 204 break; 205 case NUM_NL80211_BANDS: 206 default: 207 WARN_ON(1); 208 break; 209 } 210 } 211 212 void ieee80211_set_bitrate_flags(struct wiphy *wiphy) 213 { 214 enum nl80211_band band; 215 216 for (band = 0; band < NUM_NL80211_BANDS; band++) 217 if (wiphy->bands[band]) 218 set_mandatory_flags_band(wiphy->bands[band]); 219 } 220 221 bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher) 222 { 223 int i; 224 for (i = 0; i < wiphy->n_cipher_suites; i++) 225 if (cipher == wiphy->cipher_suites[i]) 226 return true; 227 return false; 228 } 229 230 int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev, 231 struct key_params *params, int key_idx, 232 bool pairwise, const u8 *mac_addr) 233 { 234 if (key_idx < 0 || key_idx > 5) 235 return -EINVAL; 236 237 if (!pairwise && mac_addr && !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN)) 238 return -EINVAL; 239 240 if (pairwise && !mac_addr) 241 return -EINVAL; 242 243 switch (params->cipher) { 244 case WLAN_CIPHER_SUITE_TKIP: 245 /* Extended Key ID can only be used with CCMP/GCMP ciphers */ 246 if ((pairwise && key_idx) || 247 params->mode != NL80211_KEY_RX_TX) 248 return -EINVAL; 249 break; 250 case WLAN_CIPHER_SUITE_CCMP: 251 case WLAN_CIPHER_SUITE_CCMP_256: 252 case WLAN_CIPHER_SUITE_GCMP: 253 case WLAN_CIPHER_SUITE_GCMP_256: 254 /* IEEE802.11-2016 allows only 0 and - when supporting 255 * Extended Key ID - 1 as index for pairwise keys. 256 * @NL80211_KEY_NO_TX is only allowed for pairwise keys when 257 * the driver supports Extended Key ID. 258 * @NL80211_KEY_SET_TX can't be set when installing and 259 * validating a key. 260 */ 261 if ((params->mode == NL80211_KEY_NO_TX && !pairwise) || 262 params->mode == NL80211_KEY_SET_TX) 263 return -EINVAL; 264 if (wiphy_ext_feature_isset(&rdev->wiphy, 265 NL80211_EXT_FEATURE_EXT_KEY_ID)) { 266 if (pairwise && (key_idx < 0 || key_idx > 1)) 267 return -EINVAL; 268 } else if (pairwise && key_idx) { 269 return -EINVAL; 270 } 271 break; 272 case WLAN_CIPHER_SUITE_AES_CMAC: 273 case WLAN_CIPHER_SUITE_BIP_CMAC_256: 274 case WLAN_CIPHER_SUITE_BIP_GMAC_128: 275 case WLAN_CIPHER_SUITE_BIP_GMAC_256: 276 /* Disallow BIP (group-only) cipher as pairwise cipher */ 277 if (pairwise) 278 return -EINVAL; 279 if (key_idx < 4) 280 return -EINVAL; 281 break; 282 case WLAN_CIPHER_SUITE_WEP40: 283 case WLAN_CIPHER_SUITE_WEP104: 284 if (key_idx > 3) 285 return -EINVAL; 286 default: 287 break; 288 } 289 290 switch (params->cipher) { 291 case WLAN_CIPHER_SUITE_WEP40: 292 if (params->key_len != WLAN_KEY_LEN_WEP40) 293 return -EINVAL; 294 break; 295 case WLAN_CIPHER_SUITE_TKIP: 296 if (params->key_len != WLAN_KEY_LEN_TKIP) 297 return -EINVAL; 298 break; 299 case WLAN_CIPHER_SUITE_CCMP: 300 if (params->key_len != WLAN_KEY_LEN_CCMP) 301 return -EINVAL; 302 break; 303 case WLAN_CIPHER_SUITE_CCMP_256: 304 if (params->key_len != WLAN_KEY_LEN_CCMP_256) 305 return -EINVAL; 306 break; 307 case WLAN_CIPHER_SUITE_GCMP: 308 if (params->key_len != WLAN_KEY_LEN_GCMP) 309 return -EINVAL; 310 break; 311 case WLAN_CIPHER_SUITE_GCMP_256: 312 if (params->key_len != WLAN_KEY_LEN_GCMP_256) 313 return -EINVAL; 314 break; 315 case WLAN_CIPHER_SUITE_WEP104: 316 if (params->key_len != WLAN_KEY_LEN_WEP104) 317 return -EINVAL; 318 break; 319 case WLAN_CIPHER_SUITE_AES_CMAC: 320 if (params->key_len != WLAN_KEY_LEN_AES_CMAC) 321 return -EINVAL; 322 break; 323 case WLAN_CIPHER_SUITE_BIP_CMAC_256: 324 if (params->key_len != WLAN_KEY_LEN_BIP_CMAC_256) 325 return -EINVAL; 326 break; 327 case WLAN_CIPHER_SUITE_BIP_GMAC_128: 328 if (params->key_len != WLAN_KEY_LEN_BIP_GMAC_128) 329 return -EINVAL; 330 break; 331 case WLAN_CIPHER_SUITE_BIP_GMAC_256: 332 if (params->key_len != WLAN_KEY_LEN_BIP_GMAC_256) 333 return -EINVAL; 334 break; 335 default: 336 /* 337 * We don't know anything about this algorithm, 338 * allow using it -- but the driver must check 339 * all parameters! We still check below whether 340 * or not the driver supports this algorithm, 341 * of course. 342 */ 343 break; 344 } 345 346 if (params->seq) { 347 switch (params->cipher) { 348 case WLAN_CIPHER_SUITE_WEP40: 349 case WLAN_CIPHER_SUITE_WEP104: 350 /* These ciphers do not use key sequence */ 351 return -EINVAL; 352 case WLAN_CIPHER_SUITE_TKIP: 353 case WLAN_CIPHER_SUITE_CCMP: 354 case WLAN_CIPHER_SUITE_CCMP_256: 355 case WLAN_CIPHER_SUITE_GCMP: 356 case WLAN_CIPHER_SUITE_GCMP_256: 357 case WLAN_CIPHER_SUITE_AES_CMAC: 358 case WLAN_CIPHER_SUITE_BIP_CMAC_256: 359 case WLAN_CIPHER_SUITE_BIP_GMAC_128: 360 case WLAN_CIPHER_SUITE_BIP_GMAC_256: 361 if (params->seq_len != 6) 362 return -EINVAL; 363 break; 364 } 365 } 366 367 if (!cfg80211_supported_cipher_suite(&rdev->wiphy, params->cipher)) 368 return -EINVAL; 369 370 return 0; 371 } 372 373 unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc) 374 { 375 unsigned int hdrlen = 24; 376 377 if (ieee80211_is_data(fc)) { 378 if (ieee80211_has_a4(fc)) 379 hdrlen = 30; 380 if (ieee80211_is_data_qos(fc)) { 381 hdrlen += IEEE80211_QOS_CTL_LEN; 382 if (ieee80211_has_order(fc)) 383 hdrlen += IEEE80211_HT_CTL_LEN; 384 } 385 goto out; 386 } 387 388 if (ieee80211_is_mgmt(fc)) { 389 if (ieee80211_has_order(fc)) 390 hdrlen += IEEE80211_HT_CTL_LEN; 391 goto out; 392 } 393 394 if (ieee80211_is_ctl(fc)) { 395 /* 396 * ACK and CTS are 10 bytes, all others 16. To see how 397 * to get this condition consider 398 * subtype mask: 0b0000000011110000 (0x00F0) 399 * ACK subtype: 0b0000000011010000 (0x00D0) 400 * CTS subtype: 0b0000000011000000 (0x00C0) 401 * bits that matter: ^^^ (0x00E0) 402 * value of those: 0b0000000011000000 (0x00C0) 403 */ 404 if ((fc & cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0)) 405 hdrlen = 10; 406 else 407 hdrlen = 16; 408 } 409 out: 410 return hdrlen; 411 } 412 EXPORT_SYMBOL(ieee80211_hdrlen); 413 414 unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb) 415 { 416 const struct ieee80211_hdr *hdr = 417 (const struct ieee80211_hdr *)skb->data; 418 unsigned int hdrlen; 419 420 if (unlikely(skb->len < 10)) 421 return 0; 422 hdrlen = ieee80211_hdrlen(hdr->frame_control); 423 if (unlikely(hdrlen > skb->len)) 424 return 0; 425 return hdrlen; 426 } 427 EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb); 428 429 static unsigned int __ieee80211_get_mesh_hdrlen(u8 flags) 430 { 431 int ae = flags & MESH_FLAGS_AE; 432 /* 802.11-2012, 8.2.4.7.3 */ 433 switch (ae) { 434 default: 435 case 0: 436 return 6; 437 case MESH_FLAGS_AE_A4: 438 return 12; 439 case MESH_FLAGS_AE_A5_A6: 440 return 18; 441 } 442 } 443 444 unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr) 445 { 446 return __ieee80211_get_mesh_hdrlen(meshhdr->flags); 447 } 448 EXPORT_SYMBOL(ieee80211_get_mesh_hdrlen); 449 450 int ieee80211_data_to_8023_exthdr(struct sk_buff *skb, struct ethhdr *ehdr, 451 const u8 *addr, enum nl80211_iftype iftype, 452 u8 data_offset) 453 { 454 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; 455 struct { 456 u8 hdr[ETH_ALEN] __aligned(2); 457 __be16 proto; 458 } payload; 459 struct ethhdr tmp; 460 u16 hdrlen; 461 u8 mesh_flags = 0; 462 463 if (unlikely(!ieee80211_is_data_present(hdr->frame_control))) 464 return -1; 465 466 hdrlen = ieee80211_hdrlen(hdr->frame_control) + data_offset; 467 if (skb->len < hdrlen + 8) 468 return -1; 469 470 /* convert IEEE 802.11 header + possible LLC headers into Ethernet 471 * header 472 * IEEE 802.11 address fields: 473 * ToDS FromDS Addr1 Addr2 Addr3 Addr4 474 * 0 0 DA SA BSSID n/a 475 * 0 1 DA BSSID SA n/a 476 * 1 0 BSSID SA DA n/a 477 * 1 1 RA TA DA SA 478 */ 479 memcpy(tmp.h_dest, ieee80211_get_DA(hdr), ETH_ALEN); 480 memcpy(tmp.h_source, ieee80211_get_SA(hdr), ETH_ALEN); 481 482 if (iftype == NL80211_IFTYPE_MESH_POINT) 483 skb_copy_bits(skb, hdrlen, &mesh_flags, 1); 484 485 mesh_flags &= MESH_FLAGS_AE; 486 487 switch (hdr->frame_control & 488 cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) { 489 case cpu_to_le16(IEEE80211_FCTL_TODS): 490 if (unlikely(iftype != NL80211_IFTYPE_AP && 491 iftype != NL80211_IFTYPE_AP_VLAN && 492 iftype != NL80211_IFTYPE_P2P_GO)) 493 return -1; 494 break; 495 case cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS): 496 if (unlikely(iftype != NL80211_IFTYPE_WDS && 497 iftype != NL80211_IFTYPE_MESH_POINT && 498 iftype != NL80211_IFTYPE_AP_VLAN && 499 iftype != NL80211_IFTYPE_STATION)) 500 return -1; 501 if (iftype == NL80211_IFTYPE_MESH_POINT) { 502 if (mesh_flags == MESH_FLAGS_AE_A4) 503 return -1; 504 if (mesh_flags == MESH_FLAGS_AE_A5_A6) { 505 skb_copy_bits(skb, hdrlen + 506 offsetof(struct ieee80211s_hdr, eaddr1), 507 tmp.h_dest, 2 * ETH_ALEN); 508 } 509 hdrlen += __ieee80211_get_mesh_hdrlen(mesh_flags); 510 } 511 break; 512 case cpu_to_le16(IEEE80211_FCTL_FROMDS): 513 if ((iftype != NL80211_IFTYPE_STATION && 514 iftype != NL80211_IFTYPE_P2P_CLIENT && 515 iftype != NL80211_IFTYPE_MESH_POINT) || 516 (is_multicast_ether_addr(tmp.h_dest) && 517 ether_addr_equal(tmp.h_source, addr))) 518 return -1; 519 if (iftype == NL80211_IFTYPE_MESH_POINT) { 520 if (mesh_flags == MESH_FLAGS_AE_A5_A6) 521 return -1; 522 if (mesh_flags == MESH_FLAGS_AE_A4) 523 skb_copy_bits(skb, hdrlen + 524 offsetof(struct ieee80211s_hdr, eaddr1), 525 tmp.h_source, ETH_ALEN); 526 hdrlen += __ieee80211_get_mesh_hdrlen(mesh_flags); 527 } 528 break; 529 case cpu_to_le16(0): 530 if (iftype != NL80211_IFTYPE_ADHOC && 531 iftype != NL80211_IFTYPE_STATION && 532 iftype != NL80211_IFTYPE_OCB) 533 return -1; 534 break; 535 } 536 537 skb_copy_bits(skb, hdrlen, &payload, sizeof(payload)); 538 tmp.h_proto = payload.proto; 539 540 if (likely((ether_addr_equal(payload.hdr, rfc1042_header) && 541 tmp.h_proto != htons(ETH_P_AARP) && 542 tmp.h_proto != htons(ETH_P_IPX)) || 543 ether_addr_equal(payload.hdr, bridge_tunnel_header))) 544 /* remove RFC1042 or Bridge-Tunnel encapsulation and 545 * replace EtherType */ 546 hdrlen += ETH_ALEN + 2; 547 else 548 tmp.h_proto = htons(skb->len - hdrlen); 549 550 pskb_pull(skb, hdrlen); 551 552 if (!ehdr) 553 ehdr = skb_push(skb, sizeof(struct ethhdr)); 554 memcpy(ehdr, &tmp, sizeof(tmp)); 555 556 return 0; 557 } 558 EXPORT_SYMBOL(ieee80211_data_to_8023_exthdr); 559 560 static void 561 __frame_add_frag(struct sk_buff *skb, struct page *page, 562 void *ptr, int len, int size) 563 { 564 struct skb_shared_info *sh = skb_shinfo(skb); 565 int page_offset; 566 567 page_ref_inc(page); 568 page_offset = ptr - page_address(page); 569 skb_add_rx_frag(skb, sh->nr_frags, page, page_offset, len, size); 570 } 571 572 static void 573 __ieee80211_amsdu_copy_frag(struct sk_buff *skb, struct sk_buff *frame, 574 int offset, int len) 575 { 576 struct skb_shared_info *sh = skb_shinfo(skb); 577 const skb_frag_t *frag = &sh->frags[0]; 578 struct page *frag_page; 579 void *frag_ptr; 580 int frag_len, frag_size; 581 int head_size = skb->len - skb->data_len; 582 int cur_len; 583 584 frag_page = virt_to_head_page(skb->head); 585 frag_ptr = skb->data; 586 frag_size = head_size; 587 588 while (offset >= frag_size) { 589 offset -= frag_size; 590 frag_page = skb_frag_page(frag); 591 frag_ptr = skb_frag_address(frag); 592 frag_size = skb_frag_size(frag); 593 frag++; 594 } 595 596 frag_ptr += offset; 597 frag_len = frag_size - offset; 598 599 cur_len = min(len, frag_len); 600 601 __frame_add_frag(frame, frag_page, frag_ptr, cur_len, frag_size); 602 len -= cur_len; 603 604 while (len > 0) { 605 frag_len = skb_frag_size(frag); 606 cur_len = min(len, frag_len); 607 __frame_add_frag(frame, skb_frag_page(frag), 608 skb_frag_address(frag), cur_len, frag_len); 609 len -= cur_len; 610 frag++; 611 } 612 } 613 614 static struct sk_buff * 615 __ieee80211_amsdu_copy(struct sk_buff *skb, unsigned int hlen, 616 int offset, int len, bool reuse_frag) 617 { 618 struct sk_buff *frame; 619 int cur_len = len; 620 621 if (skb->len - offset < len) 622 return NULL; 623 624 /* 625 * When reusing framents, copy some data to the head to simplify 626 * ethernet header handling and speed up protocol header processing 627 * in the stack later. 628 */ 629 if (reuse_frag) 630 cur_len = min_t(int, len, 32); 631 632 /* 633 * Allocate and reserve two bytes more for payload 634 * alignment since sizeof(struct ethhdr) is 14. 635 */ 636 frame = dev_alloc_skb(hlen + sizeof(struct ethhdr) + 2 + cur_len); 637 if (!frame) 638 return NULL; 639 640 skb_reserve(frame, hlen + sizeof(struct ethhdr) + 2); 641 skb_copy_bits(skb, offset, skb_put(frame, cur_len), cur_len); 642 643 len -= cur_len; 644 if (!len) 645 return frame; 646 647 offset += cur_len; 648 __ieee80211_amsdu_copy_frag(skb, frame, offset, len); 649 650 return frame; 651 } 652 653 void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list, 654 const u8 *addr, enum nl80211_iftype iftype, 655 const unsigned int extra_headroom, 656 const u8 *check_da, const u8 *check_sa) 657 { 658 unsigned int hlen = ALIGN(extra_headroom, 4); 659 struct sk_buff *frame = NULL; 660 u16 ethertype; 661 u8 *payload; 662 int offset = 0, remaining; 663 struct ethhdr eth; 664 bool reuse_frag = skb->head_frag && !skb_has_frag_list(skb); 665 bool reuse_skb = false; 666 bool last = false; 667 668 while (!last) { 669 unsigned int subframe_len; 670 int len; 671 u8 padding; 672 673 skb_copy_bits(skb, offset, ð, sizeof(eth)); 674 len = ntohs(eth.h_proto); 675 subframe_len = sizeof(struct ethhdr) + len; 676 padding = (4 - subframe_len) & 0x3; 677 678 /* the last MSDU has no padding */ 679 remaining = skb->len - offset; 680 if (subframe_len > remaining) 681 goto purge; 682 683 offset += sizeof(struct ethhdr); 684 last = remaining <= subframe_len + padding; 685 686 /* FIXME: should we really accept multicast DA? */ 687 if ((check_da && !is_multicast_ether_addr(eth.h_dest) && 688 !ether_addr_equal(check_da, eth.h_dest)) || 689 (check_sa && !ether_addr_equal(check_sa, eth.h_source))) { 690 offset += len + padding; 691 continue; 692 } 693 694 /* reuse skb for the last subframe */ 695 if (!skb_is_nonlinear(skb) && !reuse_frag && last) { 696 skb_pull(skb, offset); 697 frame = skb; 698 reuse_skb = true; 699 } else { 700 frame = __ieee80211_amsdu_copy(skb, hlen, offset, len, 701 reuse_frag); 702 if (!frame) 703 goto purge; 704 705 offset += len + padding; 706 } 707 708 skb_reset_network_header(frame); 709 frame->dev = skb->dev; 710 frame->priority = skb->priority; 711 712 payload = frame->data; 713 ethertype = (payload[6] << 8) | payload[7]; 714 if (likely((ether_addr_equal(payload, rfc1042_header) && 715 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) || 716 ether_addr_equal(payload, bridge_tunnel_header))) { 717 eth.h_proto = htons(ethertype); 718 skb_pull(frame, ETH_ALEN + 2); 719 } 720 721 memcpy(skb_push(frame, sizeof(eth)), ð, sizeof(eth)); 722 __skb_queue_tail(list, frame); 723 } 724 725 if (!reuse_skb) 726 dev_kfree_skb(skb); 727 728 return; 729 730 purge: 731 __skb_queue_purge(list); 732 dev_kfree_skb(skb); 733 } 734 EXPORT_SYMBOL(ieee80211_amsdu_to_8023s); 735 736 /* Given a data frame determine the 802.1p/1d tag to use. */ 737 unsigned int cfg80211_classify8021d(struct sk_buff *skb, 738 struct cfg80211_qos_map *qos_map) 739 { 740 unsigned int dscp; 741 unsigned char vlan_priority; 742 unsigned int ret; 743 744 /* skb->priority values from 256->263 are magic values to 745 * directly indicate a specific 802.1d priority. This is used 746 * to allow 802.1d priority to be passed directly in from VLAN 747 * tags, etc. 748 */ 749 if (skb->priority >= 256 && skb->priority <= 263) { 750 ret = skb->priority - 256; 751 goto out; 752 } 753 754 if (skb_vlan_tag_present(skb)) { 755 vlan_priority = (skb_vlan_tag_get(skb) & VLAN_PRIO_MASK) 756 >> VLAN_PRIO_SHIFT; 757 if (vlan_priority > 0) { 758 ret = vlan_priority; 759 goto out; 760 } 761 } 762 763 switch (skb->protocol) { 764 case htons(ETH_P_IP): 765 dscp = ipv4_get_dsfield(ip_hdr(skb)) & 0xfc; 766 break; 767 case htons(ETH_P_IPV6): 768 dscp = ipv6_get_dsfield(ipv6_hdr(skb)) & 0xfc; 769 break; 770 case htons(ETH_P_MPLS_UC): 771 case htons(ETH_P_MPLS_MC): { 772 struct mpls_label mpls_tmp, *mpls; 773 774 mpls = skb_header_pointer(skb, sizeof(struct ethhdr), 775 sizeof(*mpls), &mpls_tmp); 776 if (!mpls) 777 return 0; 778 779 ret = (ntohl(mpls->entry) & MPLS_LS_TC_MASK) 780 >> MPLS_LS_TC_SHIFT; 781 goto out; 782 } 783 case htons(ETH_P_80221): 784 /* 802.21 is always network control traffic */ 785 return 7; 786 default: 787 return 0; 788 } 789 790 if (qos_map) { 791 unsigned int i, tmp_dscp = dscp >> 2; 792 793 for (i = 0; i < qos_map->num_des; i++) { 794 if (tmp_dscp == qos_map->dscp_exception[i].dscp) { 795 ret = qos_map->dscp_exception[i].up; 796 goto out; 797 } 798 } 799 800 for (i = 0; i < 8; i++) { 801 if (tmp_dscp >= qos_map->up[i].low && 802 tmp_dscp <= qos_map->up[i].high) { 803 ret = i; 804 goto out; 805 } 806 } 807 } 808 809 ret = dscp >> 5; 810 out: 811 return array_index_nospec(ret, IEEE80211_NUM_TIDS); 812 } 813 EXPORT_SYMBOL(cfg80211_classify8021d); 814 815 const struct element *ieee80211_bss_get_elem(struct cfg80211_bss *bss, u8 id) 816 { 817 const struct cfg80211_bss_ies *ies; 818 819 ies = rcu_dereference(bss->ies); 820 if (!ies) 821 return NULL; 822 823 return cfg80211_find_elem(id, ies->data, ies->len); 824 } 825 EXPORT_SYMBOL(ieee80211_bss_get_elem); 826 827 void cfg80211_upload_connect_keys(struct wireless_dev *wdev) 828 { 829 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy); 830 struct net_device *dev = wdev->netdev; 831 int i; 832 833 if (!wdev->connect_keys) 834 return; 835 836 for (i = 0; i < CFG80211_MAX_WEP_KEYS; i++) { 837 if (!wdev->connect_keys->params[i].cipher) 838 continue; 839 if (rdev_add_key(rdev, dev, i, false, NULL, 840 &wdev->connect_keys->params[i])) { 841 netdev_err(dev, "failed to set key %d\n", i); 842 continue; 843 } 844 if (wdev->connect_keys->def == i && 845 rdev_set_default_key(rdev, dev, i, true, true)) { 846 netdev_err(dev, "failed to set defkey %d\n", i); 847 continue; 848 } 849 } 850 851 kzfree(wdev->connect_keys); 852 wdev->connect_keys = NULL; 853 } 854 855 void cfg80211_process_wdev_events(struct wireless_dev *wdev) 856 { 857 struct cfg80211_event *ev; 858 unsigned long flags; 859 860 spin_lock_irqsave(&wdev->event_lock, flags); 861 while (!list_empty(&wdev->event_list)) { 862 ev = list_first_entry(&wdev->event_list, 863 struct cfg80211_event, list); 864 list_del(&ev->list); 865 spin_unlock_irqrestore(&wdev->event_lock, flags); 866 867 wdev_lock(wdev); 868 switch (ev->type) { 869 case EVENT_CONNECT_RESULT: 870 __cfg80211_connect_result( 871 wdev->netdev, 872 &ev->cr, 873 ev->cr.status == WLAN_STATUS_SUCCESS); 874 break; 875 case EVENT_ROAMED: 876 __cfg80211_roamed(wdev, &ev->rm); 877 break; 878 case EVENT_DISCONNECTED: 879 __cfg80211_disconnected(wdev->netdev, 880 ev->dc.ie, ev->dc.ie_len, 881 ev->dc.reason, 882 !ev->dc.locally_generated); 883 break; 884 case EVENT_IBSS_JOINED: 885 __cfg80211_ibss_joined(wdev->netdev, ev->ij.bssid, 886 ev->ij.channel); 887 break; 888 case EVENT_STOPPED: 889 __cfg80211_leave(wiphy_to_rdev(wdev->wiphy), wdev); 890 break; 891 case EVENT_PORT_AUTHORIZED: 892 __cfg80211_port_authorized(wdev, ev->pa.bssid); 893 break; 894 } 895 wdev_unlock(wdev); 896 897 kfree(ev); 898 899 spin_lock_irqsave(&wdev->event_lock, flags); 900 } 901 spin_unlock_irqrestore(&wdev->event_lock, flags); 902 } 903 904 void cfg80211_process_rdev_events(struct cfg80211_registered_device *rdev) 905 { 906 struct wireless_dev *wdev; 907 908 ASSERT_RTNL(); 909 910 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) 911 cfg80211_process_wdev_events(wdev); 912 } 913 914 int cfg80211_change_iface(struct cfg80211_registered_device *rdev, 915 struct net_device *dev, enum nl80211_iftype ntype, 916 struct vif_params *params) 917 { 918 int err; 919 enum nl80211_iftype otype = dev->ieee80211_ptr->iftype; 920 921 ASSERT_RTNL(); 922 923 /* don't support changing VLANs, you just re-create them */ 924 if (otype == NL80211_IFTYPE_AP_VLAN) 925 return -EOPNOTSUPP; 926 927 /* cannot change into P2P device or NAN */ 928 if (ntype == NL80211_IFTYPE_P2P_DEVICE || 929 ntype == NL80211_IFTYPE_NAN) 930 return -EOPNOTSUPP; 931 932 if (!rdev->ops->change_virtual_intf || 933 !(rdev->wiphy.interface_modes & (1 << ntype))) 934 return -EOPNOTSUPP; 935 936 /* if it's part of a bridge, reject changing type to station/ibss */ 937 if ((dev->priv_flags & IFF_BRIDGE_PORT) && 938 (ntype == NL80211_IFTYPE_ADHOC || 939 ntype == NL80211_IFTYPE_STATION || 940 ntype == NL80211_IFTYPE_P2P_CLIENT)) 941 return -EBUSY; 942 943 if (ntype != otype) { 944 dev->ieee80211_ptr->use_4addr = false; 945 dev->ieee80211_ptr->mesh_id_up_len = 0; 946 wdev_lock(dev->ieee80211_ptr); 947 rdev_set_qos_map(rdev, dev, NULL); 948 wdev_unlock(dev->ieee80211_ptr); 949 950 switch (otype) { 951 case NL80211_IFTYPE_AP: 952 cfg80211_stop_ap(rdev, dev, true); 953 break; 954 case NL80211_IFTYPE_ADHOC: 955 cfg80211_leave_ibss(rdev, dev, false); 956 break; 957 case NL80211_IFTYPE_STATION: 958 case NL80211_IFTYPE_P2P_CLIENT: 959 wdev_lock(dev->ieee80211_ptr); 960 cfg80211_disconnect(rdev, dev, 961 WLAN_REASON_DEAUTH_LEAVING, true); 962 wdev_unlock(dev->ieee80211_ptr); 963 break; 964 case NL80211_IFTYPE_MESH_POINT: 965 /* mesh should be handled? */ 966 break; 967 default: 968 break; 969 } 970 971 cfg80211_process_rdev_events(rdev); 972 } 973 974 err = rdev_change_virtual_intf(rdev, dev, ntype, params); 975 976 WARN_ON(!err && dev->ieee80211_ptr->iftype != ntype); 977 978 if (!err && params && params->use_4addr != -1) 979 dev->ieee80211_ptr->use_4addr = params->use_4addr; 980 981 if (!err) { 982 dev->priv_flags &= ~IFF_DONT_BRIDGE; 983 switch (ntype) { 984 case NL80211_IFTYPE_STATION: 985 if (dev->ieee80211_ptr->use_4addr) 986 break; 987 /* fall through */ 988 case NL80211_IFTYPE_OCB: 989 case NL80211_IFTYPE_P2P_CLIENT: 990 case NL80211_IFTYPE_ADHOC: 991 dev->priv_flags |= IFF_DONT_BRIDGE; 992 break; 993 case NL80211_IFTYPE_P2P_GO: 994 case NL80211_IFTYPE_AP: 995 case NL80211_IFTYPE_AP_VLAN: 996 case NL80211_IFTYPE_WDS: 997 case NL80211_IFTYPE_MESH_POINT: 998 /* bridging OK */ 999 break; 1000 case NL80211_IFTYPE_MONITOR: 1001 /* monitor can't bridge anyway */ 1002 break; 1003 case NL80211_IFTYPE_UNSPECIFIED: 1004 case NUM_NL80211_IFTYPES: 1005 /* not happening */ 1006 break; 1007 case NL80211_IFTYPE_P2P_DEVICE: 1008 case NL80211_IFTYPE_NAN: 1009 WARN_ON(1); 1010 break; 1011 } 1012 } 1013 1014 if (!err && ntype != otype && netif_running(dev)) { 1015 cfg80211_update_iface_num(rdev, ntype, 1); 1016 cfg80211_update_iface_num(rdev, otype, -1); 1017 } 1018 1019 return err; 1020 } 1021 1022 static u32 cfg80211_calculate_bitrate_ht(struct rate_info *rate) 1023 { 1024 int modulation, streams, bitrate; 1025 1026 /* the formula below does only work for MCS values smaller than 32 */ 1027 if (WARN_ON_ONCE(rate->mcs >= 32)) 1028 return 0; 1029 1030 modulation = rate->mcs & 7; 1031 streams = (rate->mcs >> 3) + 1; 1032 1033 bitrate = (rate->bw == RATE_INFO_BW_40) ? 13500000 : 6500000; 1034 1035 if (modulation < 4) 1036 bitrate *= (modulation + 1); 1037 else if (modulation == 4) 1038 bitrate *= (modulation + 2); 1039 else 1040 bitrate *= (modulation + 3); 1041 1042 bitrate *= streams; 1043 1044 if (rate->flags & RATE_INFO_FLAGS_SHORT_GI) 1045 bitrate = (bitrate / 9) * 10; 1046 1047 /* do NOT round down here */ 1048 return (bitrate + 50000) / 100000; 1049 } 1050 1051 static u32 cfg80211_calculate_bitrate_dmg(struct rate_info *rate) 1052 { 1053 static const u32 __mcs2bitrate[] = { 1054 /* control PHY */ 1055 [0] = 275, 1056 /* SC PHY */ 1057 [1] = 3850, 1058 [2] = 7700, 1059 [3] = 9625, 1060 [4] = 11550, 1061 [5] = 12512, /* 1251.25 mbps */ 1062 [6] = 15400, 1063 [7] = 19250, 1064 [8] = 23100, 1065 [9] = 25025, 1066 [10] = 30800, 1067 [11] = 38500, 1068 [12] = 46200, 1069 /* OFDM PHY */ 1070 [13] = 6930, 1071 [14] = 8662, /* 866.25 mbps */ 1072 [15] = 13860, 1073 [16] = 17325, 1074 [17] = 20790, 1075 [18] = 27720, 1076 [19] = 34650, 1077 [20] = 41580, 1078 [21] = 45045, 1079 [22] = 51975, 1080 [23] = 62370, 1081 [24] = 67568, /* 6756.75 mbps */ 1082 /* LP-SC PHY */ 1083 [25] = 6260, 1084 [26] = 8340, 1085 [27] = 11120, 1086 [28] = 12510, 1087 [29] = 16680, 1088 [30] = 22240, 1089 [31] = 25030, 1090 }; 1091 1092 if (WARN_ON_ONCE(rate->mcs >= ARRAY_SIZE(__mcs2bitrate))) 1093 return 0; 1094 1095 return __mcs2bitrate[rate->mcs]; 1096 } 1097 1098 static u32 cfg80211_calculate_bitrate_edmg(struct rate_info *rate) 1099 { 1100 static const u32 __mcs2bitrate[] = { 1101 /* control PHY */ 1102 [0] = 275, 1103 /* SC PHY */ 1104 [1] = 3850, 1105 [2] = 7700, 1106 [3] = 9625, 1107 [4] = 11550, 1108 [5] = 12512, /* 1251.25 mbps */ 1109 [6] = 13475, 1110 [7] = 15400, 1111 [8] = 19250, 1112 [9] = 23100, 1113 [10] = 25025, 1114 [11] = 26950, 1115 [12] = 30800, 1116 [13] = 38500, 1117 [14] = 46200, 1118 [15] = 50050, 1119 [16] = 53900, 1120 [17] = 57750, 1121 [18] = 69300, 1122 [19] = 75075, 1123 [20] = 80850, 1124 }; 1125 1126 if (WARN_ON_ONCE(rate->mcs >= ARRAY_SIZE(__mcs2bitrate))) 1127 return 0; 1128 1129 return __mcs2bitrate[rate->mcs] * rate->n_bonded_ch; 1130 } 1131 1132 static u32 cfg80211_calculate_bitrate_vht(struct rate_info *rate) 1133 { 1134 static const u32 base[4][10] = { 1135 { 6500000, 1136 13000000, 1137 19500000, 1138 26000000, 1139 39000000, 1140 52000000, 1141 58500000, 1142 65000000, 1143 78000000, 1144 /* not in the spec, but some devices use this: */ 1145 86500000, 1146 }, 1147 { 13500000, 1148 27000000, 1149 40500000, 1150 54000000, 1151 81000000, 1152 108000000, 1153 121500000, 1154 135000000, 1155 162000000, 1156 180000000, 1157 }, 1158 { 29300000, 1159 58500000, 1160 87800000, 1161 117000000, 1162 175500000, 1163 234000000, 1164 263300000, 1165 292500000, 1166 351000000, 1167 390000000, 1168 }, 1169 { 58500000, 1170 117000000, 1171 175500000, 1172 234000000, 1173 351000000, 1174 468000000, 1175 526500000, 1176 585000000, 1177 702000000, 1178 780000000, 1179 }, 1180 }; 1181 u32 bitrate; 1182 int idx; 1183 1184 if (rate->mcs > 9) 1185 goto warn; 1186 1187 switch (rate->bw) { 1188 case RATE_INFO_BW_160: 1189 idx = 3; 1190 break; 1191 case RATE_INFO_BW_80: 1192 idx = 2; 1193 break; 1194 case RATE_INFO_BW_40: 1195 idx = 1; 1196 break; 1197 case RATE_INFO_BW_5: 1198 case RATE_INFO_BW_10: 1199 default: 1200 goto warn; 1201 case RATE_INFO_BW_20: 1202 idx = 0; 1203 } 1204 1205 bitrate = base[idx][rate->mcs]; 1206 bitrate *= rate->nss; 1207 1208 if (rate->flags & RATE_INFO_FLAGS_SHORT_GI) 1209 bitrate = (bitrate / 9) * 10; 1210 1211 /* do NOT round down here */ 1212 return (bitrate + 50000) / 100000; 1213 warn: 1214 WARN_ONCE(1, "invalid rate bw=%d, mcs=%d, nss=%d\n", 1215 rate->bw, rate->mcs, rate->nss); 1216 return 0; 1217 } 1218 1219 static u32 cfg80211_calculate_bitrate_he(struct rate_info *rate) 1220 { 1221 #define SCALE 2048 1222 u16 mcs_divisors[12] = { 1223 34133, /* 16.666666... */ 1224 17067, /* 8.333333... */ 1225 11378, /* 5.555555... */ 1226 8533, /* 4.166666... */ 1227 5689, /* 2.777777... */ 1228 4267, /* 2.083333... */ 1229 3923, /* 1.851851... */ 1230 3413, /* 1.666666... */ 1231 2844, /* 1.388888... */ 1232 2560, /* 1.250000... */ 1233 2276, /* 1.111111... */ 1234 2048, /* 1.000000... */ 1235 }; 1236 u32 rates_160M[3] = { 960777777, 907400000, 816666666 }; 1237 u32 rates_969[3] = { 480388888, 453700000, 408333333 }; 1238 u32 rates_484[3] = { 229411111, 216666666, 195000000 }; 1239 u32 rates_242[3] = { 114711111, 108333333, 97500000 }; 1240 u32 rates_106[3] = { 40000000, 37777777, 34000000 }; 1241 u32 rates_52[3] = { 18820000, 17777777, 16000000 }; 1242 u32 rates_26[3] = { 9411111, 8888888, 8000000 }; 1243 u64 tmp; 1244 u32 result; 1245 1246 if (WARN_ON_ONCE(rate->mcs > 11)) 1247 return 0; 1248 1249 if (WARN_ON_ONCE(rate->he_gi > NL80211_RATE_INFO_HE_GI_3_2)) 1250 return 0; 1251 if (WARN_ON_ONCE(rate->he_ru_alloc > 1252 NL80211_RATE_INFO_HE_RU_ALLOC_2x996)) 1253 return 0; 1254 if (WARN_ON_ONCE(rate->nss < 1 || rate->nss > 8)) 1255 return 0; 1256 1257 if (rate->bw == RATE_INFO_BW_160) 1258 result = rates_160M[rate->he_gi]; 1259 else if (rate->bw == RATE_INFO_BW_80 || 1260 (rate->bw == RATE_INFO_BW_HE_RU && 1261 rate->he_ru_alloc == NL80211_RATE_INFO_HE_RU_ALLOC_996)) 1262 result = rates_969[rate->he_gi]; 1263 else if (rate->bw == RATE_INFO_BW_40 || 1264 (rate->bw == RATE_INFO_BW_HE_RU && 1265 rate->he_ru_alloc == NL80211_RATE_INFO_HE_RU_ALLOC_484)) 1266 result = rates_484[rate->he_gi]; 1267 else if (rate->bw == RATE_INFO_BW_20 || 1268 (rate->bw == RATE_INFO_BW_HE_RU && 1269 rate->he_ru_alloc == NL80211_RATE_INFO_HE_RU_ALLOC_242)) 1270 result = rates_242[rate->he_gi]; 1271 else if (rate->bw == RATE_INFO_BW_HE_RU && 1272 rate->he_ru_alloc == NL80211_RATE_INFO_HE_RU_ALLOC_106) 1273 result = rates_106[rate->he_gi]; 1274 else if (rate->bw == RATE_INFO_BW_HE_RU && 1275 rate->he_ru_alloc == NL80211_RATE_INFO_HE_RU_ALLOC_52) 1276 result = rates_52[rate->he_gi]; 1277 else if (rate->bw == RATE_INFO_BW_HE_RU && 1278 rate->he_ru_alloc == NL80211_RATE_INFO_HE_RU_ALLOC_26) 1279 result = rates_26[rate->he_gi]; 1280 else { 1281 WARN(1, "invalid HE MCS: bw:%d, ru:%d\n", 1282 rate->bw, rate->he_ru_alloc); 1283 return 0; 1284 } 1285 1286 /* now scale to the appropriate MCS */ 1287 tmp = result; 1288 tmp *= SCALE; 1289 do_div(tmp, mcs_divisors[rate->mcs]); 1290 result = tmp; 1291 1292 /* and take NSS, DCM into account */ 1293 result = (result * rate->nss) / 8; 1294 if (rate->he_dcm) 1295 result /= 2; 1296 1297 return result / 10000; 1298 } 1299 1300 u32 cfg80211_calculate_bitrate(struct rate_info *rate) 1301 { 1302 if (rate->flags & RATE_INFO_FLAGS_MCS) 1303 return cfg80211_calculate_bitrate_ht(rate); 1304 if (rate->flags & RATE_INFO_FLAGS_DMG) 1305 return cfg80211_calculate_bitrate_dmg(rate); 1306 if (rate->flags & RATE_INFO_FLAGS_EDMG) 1307 return cfg80211_calculate_bitrate_edmg(rate); 1308 if (rate->flags & RATE_INFO_FLAGS_VHT_MCS) 1309 return cfg80211_calculate_bitrate_vht(rate); 1310 if (rate->flags & RATE_INFO_FLAGS_HE_MCS) 1311 return cfg80211_calculate_bitrate_he(rate); 1312 1313 return rate->legacy; 1314 } 1315 EXPORT_SYMBOL(cfg80211_calculate_bitrate); 1316 1317 int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len, 1318 enum ieee80211_p2p_attr_id attr, 1319 u8 *buf, unsigned int bufsize) 1320 { 1321 u8 *out = buf; 1322 u16 attr_remaining = 0; 1323 bool desired_attr = false; 1324 u16 desired_len = 0; 1325 1326 while (len > 0) { 1327 unsigned int iedatalen; 1328 unsigned int copy; 1329 const u8 *iedata; 1330 1331 if (len < 2) 1332 return -EILSEQ; 1333 iedatalen = ies[1]; 1334 if (iedatalen + 2 > len) 1335 return -EILSEQ; 1336 1337 if (ies[0] != WLAN_EID_VENDOR_SPECIFIC) 1338 goto cont; 1339 1340 if (iedatalen < 4) 1341 goto cont; 1342 1343 iedata = ies + 2; 1344 1345 /* check WFA OUI, P2P subtype */ 1346 if (iedata[0] != 0x50 || iedata[1] != 0x6f || 1347 iedata[2] != 0x9a || iedata[3] != 0x09) 1348 goto cont; 1349 1350 iedatalen -= 4; 1351 iedata += 4; 1352 1353 /* check attribute continuation into this IE */ 1354 copy = min_t(unsigned int, attr_remaining, iedatalen); 1355 if (copy && desired_attr) { 1356 desired_len += copy; 1357 if (out) { 1358 memcpy(out, iedata, min(bufsize, copy)); 1359 out += min(bufsize, copy); 1360 bufsize -= min(bufsize, copy); 1361 } 1362 1363 1364 if (copy == attr_remaining) 1365 return desired_len; 1366 } 1367 1368 attr_remaining -= copy; 1369 if (attr_remaining) 1370 goto cont; 1371 1372 iedatalen -= copy; 1373 iedata += copy; 1374 1375 while (iedatalen > 0) { 1376 u16 attr_len; 1377 1378 /* P2P attribute ID & size must fit */ 1379 if (iedatalen < 3) 1380 return -EILSEQ; 1381 desired_attr = iedata[0] == attr; 1382 attr_len = get_unaligned_le16(iedata + 1); 1383 iedatalen -= 3; 1384 iedata += 3; 1385 1386 copy = min_t(unsigned int, attr_len, iedatalen); 1387 1388 if (desired_attr) { 1389 desired_len += copy; 1390 if (out) { 1391 memcpy(out, iedata, min(bufsize, copy)); 1392 out += min(bufsize, copy); 1393 bufsize -= min(bufsize, copy); 1394 } 1395 1396 if (copy == attr_len) 1397 return desired_len; 1398 } 1399 1400 iedata += copy; 1401 iedatalen -= copy; 1402 attr_remaining = attr_len - copy; 1403 } 1404 1405 cont: 1406 len -= ies[1] + 2; 1407 ies += ies[1] + 2; 1408 } 1409 1410 if (attr_remaining && desired_attr) 1411 return -EILSEQ; 1412 1413 return -ENOENT; 1414 } 1415 EXPORT_SYMBOL(cfg80211_get_p2p_attr); 1416 1417 static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id, bool id_ext) 1418 { 1419 int i; 1420 1421 /* Make sure array values are legal */ 1422 if (WARN_ON(ids[n_ids - 1] == WLAN_EID_EXTENSION)) 1423 return false; 1424 1425 i = 0; 1426 while (i < n_ids) { 1427 if (ids[i] == WLAN_EID_EXTENSION) { 1428 if (id_ext && (ids[i + 1] == id)) 1429 return true; 1430 1431 i += 2; 1432 continue; 1433 } 1434 1435 if (ids[i] == id && !id_ext) 1436 return true; 1437 1438 i++; 1439 } 1440 return false; 1441 } 1442 1443 static size_t skip_ie(const u8 *ies, size_t ielen, size_t pos) 1444 { 1445 /* we assume a validly formed IEs buffer */ 1446 u8 len = ies[pos + 1]; 1447 1448 pos += 2 + len; 1449 1450 /* the IE itself must have 255 bytes for fragments to follow */ 1451 if (len < 255) 1452 return pos; 1453 1454 while (pos < ielen && ies[pos] == WLAN_EID_FRAGMENT) { 1455 len = ies[pos + 1]; 1456 pos += 2 + len; 1457 } 1458 1459 return pos; 1460 } 1461 1462 size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen, 1463 const u8 *ids, int n_ids, 1464 const u8 *after_ric, int n_after_ric, 1465 size_t offset) 1466 { 1467 size_t pos = offset; 1468 1469 while (pos < ielen) { 1470 u8 ext = 0; 1471 1472 if (ies[pos] == WLAN_EID_EXTENSION) 1473 ext = 2; 1474 if ((pos + ext) >= ielen) 1475 break; 1476 1477 if (!ieee80211_id_in_list(ids, n_ids, ies[pos + ext], 1478 ies[pos] == WLAN_EID_EXTENSION)) 1479 break; 1480 1481 if (ies[pos] == WLAN_EID_RIC_DATA && n_after_ric) { 1482 pos = skip_ie(ies, ielen, pos); 1483 1484 while (pos < ielen) { 1485 if (ies[pos] == WLAN_EID_EXTENSION) 1486 ext = 2; 1487 else 1488 ext = 0; 1489 1490 if ((pos + ext) >= ielen) 1491 break; 1492 1493 if (!ieee80211_id_in_list(after_ric, 1494 n_after_ric, 1495 ies[pos + ext], 1496 ext == 2)) 1497 pos = skip_ie(ies, ielen, pos); 1498 else 1499 break; 1500 } 1501 } else { 1502 pos = skip_ie(ies, ielen, pos); 1503 } 1504 } 1505 1506 return pos; 1507 } 1508 EXPORT_SYMBOL(ieee80211_ie_split_ric); 1509 1510 bool ieee80211_operating_class_to_band(u8 operating_class, 1511 enum nl80211_band *band) 1512 { 1513 switch (operating_class) { 1514 case 112: 1515 case 115 ... 127: 1516 case 128 ... 130: 1517 *band = NL80211_BAND_5GHZ; 1518 return true; 1519 case 131 ... 135: 1520 *band = NL80211_BAND_6GHZ; 1521 return true; 1522 case 81: 1523 case 82: 1524 case 83: 1525 case 84: 1526 *band = NL80211_BAND_2GHZ; 1527 return true; 1528 case 180: 1529 *band = NL80211_BAND_60GHZ; 1530 return true; 1531 } 1532 1533 return false; 1534 } 1535 EXPORT_SYMBOL(ieee80211_operating_class_to_band); 1536 1537 bool ieee80211_chandef_to_operating_class(struct cfg80211_chan_def *chandef, 1538 u8 *op_class) 1539 { 1540 u8 vht_opclass; 1541 u32 freq = chandef->center_freq1; 1542 1543 if (freq >= 2412 && freq <= 2472) { 1544 if (chandef->width > NL80211_CHAN_WIDTH_40) 1545 return false; 1546 1547 /* 2.407 GHz, channels 1..13 */ 1548 if (chandef->width == NL80211_CHAN_WIDTH_40) { 1549 if (freq > chandef->chan->center_freq) 1550 *op_class = 83; /* HT40+ */ 1551 else 1552 *op_class = 84; /* HT40- */ 1553 } else { 1554 *op_class = 81; 1555 } 1556 1557 return true; 1558 } 1559 1560 if (freq == 2484) { 1561 if (chandef->width > NL80211_CHAN_WIDTH_40) 1562 return false; 1563 1564 *op_class = 82; /* channel 14 */ 1565 return true; 1566 } 1567 1568 switch (chandef->width) { 1569 case NL80211_CHAN_WIDTH_80: 1570 vht_opclass = 128; 1571 break; 1572 case NL80211_CHAN_WIDTH_160: 1573 vht_opclass = 129; 1574 break; 1575 case NL80211_CHAN_WIDTH_80P80: 1576 vht_opclass = 130; 1577 break; 1578 case NL80211_CHAN_WIDTH_10: 1579 case NL80211_CHAN_WIDTH_5: 1580 return false; /* unsupported for now */ 1581 default: 1582 vht_opclass = 0; 1583 break; 1584 } 1585 1586 /* 5 GHz, channels 36..48 */ 1587 if (freq >= 5180 && freq <= 5240) { 1588 if (vht_opclass) { 1589 *op_class = vht_opclass; 1590 } else if (chandef->width == NL80211_CHAN_WIDTH_40) { 1591 if (freq > chandef->chan->center_freq) 1592 *op_class = 116; 1593 else 1594 *op_class = 117; 1595 } else { 1596 *op_class = 115; 1597 } 1598 1599 return true; 1600 } 1601 1602 /* 5 GHz, channels 52..64 */ 1603 if (freq >= 5260 && freq <= 5320) { 1604 if (vht_opclass) { 1605 *op_class = vht_opclass; 1606 } else if (chandef->width == NL80211_CHAN_WIDTH_40) { 1607 if (freq > chandef->chan->center_freq) 1608 *op_class = 119; 1609 else 1610 *op_class = 120; 1611 } else { 1612 *op_class = 118; 1613 } 1614 1615 return true; 1616 } 1617 1618 /* 5 GHz, channels 100..144 */ 1619 if (freq >= 5500 && freq <= 5720) { 1620 if (vht_opclass) { 1621 *op_class = vht_opclass; 1622 } else if (chandef->width == NL80211_CHAN_WIDTH_40) { 1623 if (freq > chandef->chan->center_freq) 1624 *op_class = 122; 1625 else 1626 *op_class = 123; 1627 } else { 1628 *op_class = 121; 1629 } 1630 1631 return true; 1632 } 1633 1634 /* 5 GHz, channels 149..169 */ 1635 if (freq >= 5745 && freq <= 5845) { 1636 if (vht_opclass) { 1637 *op_class = vht_opclass; 1638 } else if (chandef->width == NL80211_CHAN_WIDTH_40) { 1639 if (freq > chandef->chan->center_freq) 1640 *op_class = 126; 1641 else 1642 *op_class = 127; 1643 } else if (freq <= 5805) { 1644 *op_class = 124; 1645 } else { 1646 *op_class = 125; 1647 } 1648 1649 return true; 1650 } 1651 1652 /* 56.16 GHz, channel 1..4 */ 1653 if (freq >= 56160 + 2160 * 1 && freq <= 56160 + 2160 * 6) { 1654 if (chandef->width >= NL80211_CHAN_WIDTH_40) 1655 return false; 1656 1657 *op_class = 180; 1658 return true; 1659 } 1660 1661 /* not supported yet */ 1662 return false; 1663 } 1664 EXPORT_SYMBOL(ieee80211_chandef_to_operating_class); 1665 1666 static void cfg80211_calculate_bi_data(struct wiphy *wiphy, u32 new_beacon_int, 1667 u32 *beacon_int_gcd, 1668 bool *beacon_int_different) 1669 { 1670 struct wireless_dev *wdev; 1671 1672 *beacon_int_gcd = 0; 1673 *beacon_int_different = false; 1674 1675 list_for_each_entry(wdev, &wiphy->wdev_list, list) { 1676 if (!wdev->beacon_interval) 1677 continue; 1678 1679 if (!*beacon_int_gcd) { 1680 *beacon_int_gcd = wdev->beacon_interval; 1681 continue; 1682 } 1683 1684 if (wdev->beacon_interval == *beacon_int_gcd) 1685 continue; 1686 1687 *beacon_int_different = true; 1688 *beacon_int_gcd = gcd(*beacon_int_gcd, wdev->beacon_interval); 1689 } 1690 1691 if (new_beacon_int && *beacon_int_gcd != new_beacon_int) { 1692 if (*beacon_int_gcd) 1693 *beacon_int_different = true; 1694 *beacon_int_gcd = gcd(*beacon_int_gcd, new_beacon_int); 1695 } 1696 } 1697 1698 int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev, 1699 enum nl80211_iftype iftype, u32 beacon_int) 1700 { 1701 /* 1702 * This is just a basic pre-condition check; if interface combinations 1703 * are possible the driver must already be checking those with a call 1704 * to cfg80211_check_combinations(), in which case we'll validate more 1705 * through the cfg80211_calculate_bi_data() call and code in 1706 * cfg80211_iter_combinations(). 1707 */ 1708 1709 if (beacon_int < 10 || beacon_int > 10000) 1710 return -EINVAL; 1711 1712 return 0; 1713 } 1714 1715 int cfg80211_iter_combinations(struct wiphy *wiphy, 1716 struct iface_combination_params *params, 1717 void (*iter)(const struct ieee80211_iface_combination *c, 1718 void *data), 1719 void *data) 1720 { 1721 const struct ieee80211_regdomain *regdom; 1722 enum nl80211_dfs_regions region = 0; 1723 int i, j, iftype; 1724 int num_interfaces = 0; 1725 u32 used_iftypes = 0; 1726 u32 beacon_int_gcd; 1727 bool beacon_int_different; 1728 1729 /* 1730 * This is a bit strange, since the iteration used to rely only on 1731 * the data given by the driver, but here it now relies on context, 1732 * in form of the currently operating interfaces. 1733 * This is OK for all current users, and saves us from having to 1734 * push the GCD calculations into all the drivers. 1735 * In the future, this should probably rely more on data that's in 1736 * cfg80211 already - the only thing not would appear to be any new 1737 * interfaces (while being brought up) and channel/radar data. 1738 */ 1739 cfg80211_calculate_bi_data(wiphy, params->new_beacon_int, 1740 &beacon_int_gcd, &beacon_int_different); 1741 1742 if (params->radar_detect) { 1743 rcu_read_lock(); 1744 regdom = rcu_dereference(cfg80211_regdomain); 1745 if (regdom) 1746 region = regdom->dfs_region; 1747 rcu_read_unlock(); 1748 } 1749 1750 for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) { 1751 num_interfaces += params->iftype_num[iftype]; 1752 if (params->iftype_num[iftype] > 0 && 1753 !cfg80211_iftype_allowed(wiphy, iftype, 0, 1)) 1754 used_iftypes |= BIT(iftype); 1755 } 1756 1757 for (i = 0; i < wiphy->n_iface_combinations; i++) { 1758 const struct ieee80211_iface_combination *c; 1759 struct ieee80211_iface_limit *limits; 1760 u32 all_iftypes = 0; 1761 1762 c = &wiphy->iface_combinations[i]; 1763 1764 if (num_interfaces > c->max_interfaces) 1765 continue; 1766 if (params->num_different_channels > c->num_different_channels) 1767 continue; 1768 1769 limits = kmemdup(c->limits, sizeof(limits[0]) * c->n_limits, 1770 GFP_KERNEL); 1771 if (!limits) 1772 return -ENOMEM; 1773 1774 for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) { 1775 if (cfg80211_iftype_allowed(wiphy, iftype, 0, 1)) 1776 continue; 1777 for (j = 0; j < c->n_limits; j++) { 1778 all_iftypes |= limits[j].types; 1779 if (!(limits[j].types & BIT(iftype))) 1780 continue; 1781 if (limits[j].max < params->iftype_num[iftype]) 1782 goto cont; 1783 limits[j].max -= params->iftype_num[iftype]; 1784 } 1785 } 1786 1787 if (params->radar_detect != 1788 (c->radar_detect_widths & params->radar_detect)) 1789 goto cont; 1790 1791 if (params->radar_detect && c->radar_detect_regions && 1792 !(c->radar_detect_regions & BIT(region))) 1793 goto cont; 1794 1795 /* Finally check that all iftypes that we're currently 1796 * using are actually part of this combination. If they 1797 * aren't then we can't use this combination and have 1798 * to continue to the next. 1799 */ 1800 if ((all_iftypes & used_iftypes) != used_iftypes) 1801 goto cont; 1802 1803 if (beacon_int_gcd) { 1804 if (c->beacon_int_min_gcd && 1805 beacon_int_gcd < c->beacon_int_min_gcd) 1806 goto cont; 1807 if (!c->beacon_int_min_gcd && beacon_int_different) 1808 goto cont; 1809 } 1810 1811 /* This combination covered all interface types and 1812 * supported the requested numbers, so we're good. 1813 */ 1814 1815 (*iter)(c, data); 1816 cont: 1817 kfree(limits); 1818 } 1819 1820 return 0; 1821 } 1822 EXPORT_SYMBOL(cfg80211_iter_combinations); 1823 1824 static void 1825 cfg80211_iter_sum_ifcombs(const struct ieee80211_iface_combination *c, 1826 void *data) 1827 { 1828 int *num = data; 1829 (*num)++; 1830 } 1831 1832 int cfg80211_check_combinations(struct wiphy *wiphy, 1833 struct iface_combination_params *params) 1834 { 1835 int err, num = 0; 1836 1837 err = cfg80211_iter_combinations(wiphy, params, 1838 cfg80211_iter_sum_ifcombs, &num); 1839 if (err) 1840 return err; 1841 if (num == 0) 1842 return -EBUSY; 1843 1844 return 0; 1845 } 1846 EXPORT_SYMBOL(cfg80211_check_combinations); 1847 1848 int ieee80211_get_ratemask(struct ieee80211_supported_band *sband, 1849 const u8 *rates, unsigned int n_rates, 1850 u32 *mask) 1851 { 1852 int i, j; 1853 1854 if (!sband) 1855 return -EINVAL; 1856 1857 if (n_rates == 0 || n_rates > NL80211_MAX_SUPP_RATES) 1858 return -EINVAL; 1859 1860 *mask = 0; 1861 1862 for (i = 0; i < n_rates; i++) { 1863 int rate = (rates[i] & 0x7f) * 5; 1864 bool found = false; 1865 1866 for (j = 0; j < sband->n_bitrates; j++) { 1867 if (sband->bitrates[j].bitrate == rate) { 1868 found = true; 1869 *mask |= BIT(j); 1870 break; 1871 } 1872 } 1873 if (!found) 1874 return -EINVAL; 1875 } 1876 1877 /* 1878 * mask must have at least one bit set here since we 1879 * didn't accept a 0-length rates array nor allowed 1880 * entries in the array that didn't exist 1881 */ 1882 1883 return 0; 1884 } 1885 1886 unsigned int ieee80211_get_num_supported_channels(struct wiphy *wiphy) 1887 { 1888 enum nl80211_band band; 1889 unsigned int n_channels = 0; 1890 1891 for (band = 0; band < NUM_NL80211_BANDS; band++) 1892 if (wiphy->bands[band]) 1893 n_channels += wiphy->bands[band]->n_channels; 1894 1895 return n_channels; 1896 } 1897 EXPORT_SYMBOL(ieee80211_get_num_supported_channels); 1898 1899 int cfg80211_get_station(struct net_device *dev, const u8 *mac_addr, 1900 struct station_info *sinfo) 1901 { 1902 struct cfg80211_registered_device *rdev; 1903 struct wireless_dev *wdev; 1904 1905 wdev = dev->ieee80211_ptr; 1906 if (!wdev) 1907 return -EOPNOTSUPP; 1908 1909 rdev = wiphy_to_rdev(wdev->wiphy); 1910 if (!rdev->ops->get_station) 1911 return -EOPNOTSUPP; 1912 1913 memset(sinfo, 0, sizeof(*sinfo)); 1914 1915 return rdev_get_station(rdev, dev, mac_addr, sinfo); 1916 } 1917 EXPORT_SYMBOL(cfg80211_get_station); 1918 1919 void cfg80211_free_nan_func(struct cfg80211_nan_func *f) 1920 { 1921 int i; 1922 1923 if (!f) 1924 return; 1925 1926 kfree(f->serv_spec_info); 1927 kfree(f->srf_bf); 1928 kfree(f->srf_macs); 1929 for (i = 0; i < f->num_rx_filters; i++) 1930 kfree(f->rx_filters[i].filter); 1931 1932 for (i = 0; i < f->num_tx_filters; i++) 1933 kfree(f->tx_filters[i].filter); 1934 1935 kfree(f->rx_filters); 1936 kfree(f->tx_filters); 1937 kfree(f); 1938 } 1939 EXPORT_SYMBOL(cfg80211_free_nan_func); 1940 1941 bool cfg80211_does_bw_fit_range(const struct ieee80211_freq_range *freq_range, 1942 u32 center_freq_khz, u32 bw_khz) 1943 { 1944 u32 start_freq_khz, end_freq_khz; 1945 1946 start_freq_khz = center_freq_khz - (bw_khz / 2); 1947 end_freq_khz = center_freq_khz + (bw_khz / 2); 1948 1949 if (start_freq_khz >= freq_range->start_freq_khz && 1950 end_freq_khz <= freq_range->end_freq_khz) 1951 return true; 1952 1953 return false; 1954 } 1955 1956 int cfg80211_sinfo_alloc_tid_stats(struct station_info *sinfo, gfp_t gfp) 1957 { 1958 sinfo->pertid = kcalloc(IEEE80211_NUM_TIDS + 1, 1959 sizeof(*(sinfo->pertid)), 1960 gfp); 1961 if (!sinfo->pertid) 1962 return -ENOMEM; 1963 1964 return 0; 1965 } 1966 EXPORT_SYMBOL(cfg80211_sinfo_alloc_tid_stats); 1967 1968 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */ 1969 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */ 1970 const unsigned char rfc1042_header[] __aligned(2) = 1971 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 }; 1972 EXPORT_SYMBOL(rfc1042_header); 1973 1974 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */ 1975 const unsigned char bridge_tunnel_header[] __aligned(2) = 1976 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 }; 1977 EXPORT_SYMBOL(bridge_tunnel_header); 1978 1979 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */ 1980 struct iapp_layer2_update { 1981 u8 da[ETH_ALEN]; /* broadcast */ 1982 u8 sa[ETH_ALEN]; /* STA addr */ 1983 __be16 len; /* 6 */ 1984 u8 dsap; /* 0 */ 1985 u8 ssap; /* 0 */ 1986 u8 control; 1987 u8 xid_info[3]; 1988 } __packed; 1989 1990 void cfg80211_send_layer2_update(struct net_device *dev, const u8 *addr) 1991 { 1992 struct iapp_layer2_update *msg; 1993 struct sk_buff *skb; 1994 1995 /* Send Level 2 Update Frame to update forwarding tables in layer 2 1996 * bridge devices */ 1997 1998 skb = dev_alloc_skb(sizeof(*msg)); 1999 if (!skb) 2000 return; 2001 msg = skb_put(skb, sizeof(*msg)); 2002 2003 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID) 2004 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */ 2005 2006 eth_broadcast_addr(msg->da); 2007 ether_addr_copy(msg->sa, addr); 2008 msg->len = htons(6); 2009 msg->dsap = 0; 2010 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */ 2011 msg->control = 0xaf; /* XID response lsb.1111F101. 2012 * F=0 (no poll command; unsolicited frame) */ 2013 msg->xid_info[0] = 0x81; /* XID format identifier */ 2014 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */ 2015 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */ 2016 2017 skb->dev = dev; 2018 skb->protocol = eth_type_trans(skb, dev); 2019 memset(skb->cb, 0, sizeof(skb->cb)); 2020 netif_rx_ni(skb); 2021 } 2022 EXPORT_SYMBOL(cfg80211_send_layer2_update); 2023 2024 int ieee80211_get_vht_max_nss(struct ieee80211_vht_cap *cap, 2025 enum ieee80211_vht_chanwidth bw, 2026 int mcs, bool ext_nss_bw_capable) 2027 { 2028 u16 map = le16_to_cpu(cap->supp_mcs.rx_mcs_map); 2029 int max_vht_nss = 0; 2030 int ext_nss_bw; 2031 int supp_width; 2032 int i, mcs_encoding; 2033 2034 if (map == 0xffff) 2035 return 0; 2036 2037 if (WARN_ON(mcs > 9)) 2038 return 0; 2039 if (mcs <= 7) 2040 mcs_encoding = 0; 2041 else if (mcs == 8) 2042 mcs_encoding = 1; 2043 else 2044 mcs_encoding = 2; 2045 2046 /* find max_vht_nss for the given MCS */ 2047 for (i = 7; i >= 0; i--) { 2048 int supp = (map >> (2 * i)) & 3; 2049 2050 if (supp == 3) 2051 continue; 2052 2053 if (supp >= mcs_encoding) { 2054 max_vht_nss = i + 1; 2055 break; 2056 } 2057 } 2058 2059 if (!(cap->supp_mcs.tx_mcs_map & 2060 cpu_to_le16(IEEE80211_VHT_EXT_NSS_BW_CAPABLE))) 2061 return max_vht_nss; 2062 2063 ext_nss_bw = le32_get_bits(cap->vht_cap_info, 2064 IEEE80211_VHT_CAP_EXT_NSS_BW_MASK); 2065 supp_width = le32_get_bits(cap->vht_cap_info, 2066 IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK); 2067 2068 /* if not capable, treat ext_nss_bw as 0 */ 2069 if (!ext_nss_bw_capable) 2070 ext_nss_bw = 0; 2071 2072 /* This is invalid */ 2073 if (supp_width == 3) 2074 return 0; 2075 2076 /* This is an invalid combination so pretend nothing is supported */ 2077 if (supp_width == 2 && (ext_nss_bw == 1 || ext_nss_bw == 2)) 2078 return 0; 2079 2080 /* 2081 * Cover all the special cases according to IEEE 802.11-2016 2082 * Table 9-250. All other cases are either factor of 1 or not 2083 * valid/supported. 2084 */ 2085 switch (bw) { 2086 case IEEE80211_VHT_CHANWIDTH_USE_HT: 2087 case IEEE80211_VHT_CHANWIDTH_80MHZ: 2088 if ((supp_width == 1 || supp_width == 2) && 2089 ext_nss_bw == 3) 2090 return 2 * max_vht_nss; 2091 break; 2092 case IEEE80211_VHT_CHANWIDTH_160MHZ: 2093 if (supp_width == 0 && 2094 (ext_nss_bw == 1 || ext_nss_bw == 2)) 2095 return max_vht_nss / 2; 2096 if (supp_width == 0 && 2097 ext_nss_bw == 3) 2098 return (3 * max_vht_nss) / 4; 2099 if (supp_width == 1 && 2100 ext_nss_bw == 3) 2101 return 2 * max_vht_nss; 2102 break; 2103 case IEEE80211_VHT_CHANWIDTH_80P80MHZ: 2104 if (supp_width == 0 && ext_nss_bw == 1) 2105 return 0; /* not possible */ 2106 if (supp_width == 0 && 2107 ext_nss_bw == 2) 2108 return max_vht_nss / 2; 2109 if (supp_width == 0 && 2110 ext_nss_bw == 3) 2111 return (3 * max_vht_nss) / 4; 2112 if (supp_width == 1 && 2113 ext_nss_bw == 0) 2114 return 0; /* not possible */ 2115 if (supp_width == 1 && 2116 ext_nss_bw == 1) 2117 return max_vht_nss / 2; 2118 if (supp_width == 1 && 2119 ext_nss_bw == 2) 2120 return (3 * max_vht_nss) / 4; 2121 break; 2122 } 2123 2124 /* not covered or invalid combination received */ 2125 return max_vht_nss; 2126 } 2127 EXPORT_SYMBOL(ieee80211_get_vht_max_nss); 2128 2129 bool cfg80211_iftype_allowed(struct wiphy *wiphy, enum nl80211_iftype iftype, 2130 bool is_4addr, u8 check_swif) 2131 2132 { 2133 bool is_vlan = iftype == NL80211_IFTYPE_AP_VLAN; 2134 2135 switch (check_swif) { 2136 case 0: 2137 if (is_vlan && is_4addr) 2138 return wiphy->flags & WIPHY_FLAG_4ADDR_AP; 2139 return wiphy->interface_modes & BIT(iftype); 2140 case 1: 2141 if (!(wiphy->software_iftypes & BIT(iftype)) && is_vlan) 2142 return wiphy->flags & WIPHY_FLAG_4ADDR_AP; 2143 return wiphy->software_iftypes & BIT(iftype); 2144 default: 2145 break; 2146 } 2147 2148 return false; 2149 } 2150 EXPORT_SYMBOL(cfg80211_iftype_allowed); 2151