GNU Linux-libre 4.4.297-gnu1
[releases.git] / net / wireless / util.c
1 /*
2  * Wireless utility functions
3  *
4  * Copyright 2007-2009  Johannes Berg <johannes@sipsolutions.net>
5  * Copyright 2013-2014  Intel Mobile Communications GmbH
6  */
7 #include <linux/export.h>
8 #include <linux/bitops.h>
9 #include <linux/etherdevice.h>
10 #include <linux/slab.h>
11 #include <net/cfg80211.h>
12 #include <net/ip.h>
13 #include <net/dsfield.h>
14 #include <linux/if_vlan.h>
15 #include <linux/mpls.h>
16 #include "core.h"
17 #include "rdev-ops.h"
18
19
20 struct ieee80211_rate *
21 ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
22                             u32 basic_rates, int bitrate)
23 {
24         struct ieee80211_rate *result = &sband->bitrates[0];
25         int i;
26
27         for (i = 0; i < sband->n_bitrates; i++) {
28                 if (!(basic_rates & BIT(i)))
29                         continue;
30                 if (sband->bitrates[i].bitrate > bitrate)
31                         continue;
32                 result = &sband->bitrates[i];
33         }
34
35         return result;
36 }
37 EXPORT_SYMBOL(ieee80211_get_response_rate);
38
39 u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband,
40                               enum nl80211_bss_scan_width scan_width)
41 {
42         struct ieee80211_rate *bitrates;
43         u32 mandatory_rates = 0;
44         enum ieee80211_rate_flags mandatory_flag;
45         int i;
46
47         if (WARN_ON(!sband))
48                 return 1;
49
50         if (sband->band == IEEE80211_BAND_2GHZ) {
51                 if (scan_width == NL80211_BSS_CHAN_WIDTH_5 ||
52                     scan_width == NL80211_BSS_CHAN_WIDTH_10)
53                         mandatory_flag = IEEE80211_RATE_MANDATORY_G;
54                 else
55                         mandatory_flag = IEEE80211_RATE_MANDATORY_B;
56         } else {
57                 mandatory_flag = IEEE80211_RATE_MANDATORY_A;
58         }
59
60         bitrates = sband->bitrates;
61         for (i = 0; i < sband->n_bitrates; i++)
62                 if (bitrates[i].flags & mandatory_flag)
63                         mandatory_rates |= BIT(i);
64         return mandatory_rates;
65 }
66 EXPORT_SYMBOL(ieee80211_mandatory_rates);
67
68 int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band)
69 {
70         /* see 802.11 17.3.8.3.2 and Annex J
71          * there are overlapping channel numbers in 5GHz and 2GHz bands */
72         if (chan <= 0)
73                 return 0; /* not supported */
74         switch (band) {
75         case IEEE80211_BAND_2GHZ:
76                 if (chan == 14)
77                         return 2484;
78                 else if (chan < 14)
79                         return 2407 + chan * 5;
80                 break;
81         case IEEE80211_BAND_5GHZ:
82                 if (chan >= 182 && chan <= 196)
83                         return 4000 + chan * 5;
84                 else
85                         return 5000 + chan * 5;
86                 break;
87         case IEEE80211_BAND_60GHZ:
88                 if (chan < 5)
89                         return 56160 + chan * 2160;
90                 break;
91         default:
92                 ;
93         }
94         return 0; /* not supported */
95 }
96 EXPORT_SYMBOL(ieee80211_channel_to_frequency);
97
98 int ieee80211_frequency_to_channel(int freq)
99 {
100         /* see 802.11 17.3.8.3.2 and Annex J */
101         if (freq == 2484)
102                 return 14;
103         else if (freq < 2484)
104                 return (freq - 2407) / 5;
105         else if (freq >= 4910 && freq <= 4980)
106                 return (freq - 4000) / 5;
107         else if (freq <= 45000) /* DMG band lower limit */
108                 return (freq - 5000) / 5;
109         else if (freq >= 58320 && freq <= 64800)
110                 return (freq - 56160) / 2160;
111         else
112                 return 0;
113 }
114 EXPORT_SYMBOL(ieee80211_frequency_to_channel);
115
116 struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
117                                                   int freq)
118 {
119         enum ieee80211_band band;
120         struct ieee80211_supported_band *sband;
121         int i;
122
123         for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
124                 sband = wiphy->bands[band];
125
126                 if (!sband)
127                         continue;
128
129                 for (i = 0; i < sband->n_channels; i++) {
130                         if (sband->channels[i].center_freq == freq)
131                                 return &sband->channels[i];
132                 }
133         }
134
135         return NULL;
136 }
137 EXPORT_SYMBOL(__ieee80211_get_channel);
138
139 static void set_mandatory_flags_band(struct ieee80211_supported_band *sband,
140                                      enum ieee80211_band band)
141 {
142         int i, want;
143
144         switch (band) {
145         case IEEE80211_BAND_5GHZ:
146                 want = 3;
147                 for (i = 0; i < sband->n_bitrates; i++) {
148                         if (sband->bitrates[i].bitrate == 60 ||
149                             sband->bitrates[i].bitrate == 120 ||
150                             sband->bitrates[i].bitrate == 240) {
151                                 sband->bitrates[i].flags |=
152                                         IEEE80211_RATE_MANDATORY_A;
153                                 want--;
154                         }
155                 }
156                 WARN_ON(want);
157                 break;
158         case IEEE80211_BAND_2GHZ:
159                 want = 7;
160                 for (i = 0; i < sband->n_bitrates; i++) {
161                         if (sband->bitrates[i].bitrate == 10) {
162                                 sband->bitrates[i].flags |=
163                                         IEEE80211_RATE_MANDATORY_B |
164                                         IEEE80211_RATE_MANDATORY_G;
165                                 want--;
166                         }
167
168                         if (sband->bitrates[i].bitrate == 20 ||
169                             sband->bitrates[i].bitrate == 55 ||
170                             sband->bitrates[i].bitrate == 110 ||
171                             sband->bitrates[i].bitrate == 60 ||
172                             sband->bitrates[i].bitrate == 120 ||
173                             sband->bitrates[i].bitrate == 240) {
174                                 sband->bitrates[i].flags |=
175                                         IEEE80211_RATE_MANDATORY_G;
176                                 want--;
177                         }
178
179                         if (sband->bitrates[i].bitrate != 10 &&
180                             sband->bitrates[i].bitrate != 20 &&
181                             sband->bitrates[i].bitrate != 55 &&
182                             sband->bitrates[i].bitrate != 110)
183                                 sband->bitrates[i].flags |=
184                                         IEEE80211_RATE_ERP_G;
185                 }
186                 WARN_ON(want != 0 && want != 3 && want != 6);
187                 break;
188         case IEEE80211_BAND_60GHZ:
189                 /* check for mandatory HT MCS 1..4 */
190                 WARN_ON(!sband->ht_cap.ht_supported);
191                 WARN_ON((sband->ht_cap.mcs.rx_mask[0] & 0x1e) != 0x1e);
192                 break;
193         case IEEE80211_NUM_BANDS:
194                 WARN_ON(1);
195                 break;
196         }
197 }
198
199 void ieee80211_set_bitrate_flags(struct wiphy *wiphy)
200 {
201         enum ieee80211_band band;
202
203         for (band = 0; band < IEEE80211_NUM_BANDS; band++)
204                 if (wiphy->bands[band])
205                         set_mandatory_flags_band(wiphy->bands[band], band);
206 }
207
208 bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher)
209 {
210         int i;
211         for (i = 0; i < wiphy->n_cipher_suites; i++)
212                 if (cipher == wiphy->cipher_suites[i])
213                         return true;
214         return false;
215 }
216
217 int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev,
218                                    struct key_params *params, int key_idx,
219                                    bool pairwise, const u8 *mac_addr)
220 {
221         if (key_idx > 5)
222                 return -EINVAL;
223
224         if (!pairwise && mac_addr && !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
225                 return -EINVAL;
226
227         if (pairwise && !mac_addr)
228                 return -EINVAL;
229
230         switch (params->cipher) {
231         case WLAN_CIPHER_SUITE_TKIP:
232         case WLAN_CIPHER_SUITE_CCMP:
233         case WLAN_CIPHER_SUITE_CCMP_256:
234         case WLAN_CIPHER_SUITE_GCMP:
235         case WLAN_CIPHER_SUITE_GCMP_256:
236                 /* Disallow pairwise keys with non-zero index unless it's WEP
237                  * or a vendor specific cipher (because current deployments use
238                  * pairwise WEP keys with non-zero indices and for vendor
239                  * specific ciphers this should be validated in the driver or
240                  * hardware level - but 802.11i clearly specifies to use zero)
241                  */
242                 if (pairwise && key_idx)
243                         return -EINVAL;
244                 break;
245         case WLAN_CIPHER_SUITE_AES_CMAC:
246         case WLAN_CIPHER_SUITE_BIP_CMAC_256:
247         case WLAN_CIPHER_SUITE_BIP_GMAC_128:
248         case WLAN_CIPHER_SUITE_BIP_GMAC_256:
249                 /* Disallow BIP (group-only) cipher as pairwise cipher */
250                 if (pairwise)
251                         return -EINVAL;
252                 break;
253         default:
254                 break;
255         }
256
257         switch (params->cipher) {
258         case WLAN_CIPHER_SUITE_WEP40:
259                 if (params->key_len != WLAN_KEY_LEN_WEP40)
260                         return -EINVAL;
261                 break;
262         case WLAN_CIPHER_SUITE_TKIP:
263                 if (params->key_len != WLAN_KEY_LEN_TKIP)
264                         return -EINVAL;
265                 break;
266         case WLAN_CIPHER_SUITE_CCMP:
267                 if (params->key_len != WLAN_KEY_LEN_CCMP)
268                         return -EINVAL;
269                 break;
270         case WLAN_CIPHER_SUITE_CCMP_256:
271                 if (params->key_len != WLAN_KEY_LEN_CCMP_256)
272                         return -EINVAL;
273                 break;
274         case WLAN_CIPHER_SUITE_GCMP:
275                 if (params->key_len != WLAN_KEY_LEN_GCMP)
276                         return -EINVAL;
277                 break;
278         case WLAN_CIPHER_SUITE_GCMP_256:
279                 if (params->key_len != WLAN_KEY_LEN_GCMP_256)
280                         return -EINVAL;
281                 break;
282         case WLAN_CIPHER_SUITE_WEP104:
283                 if (params->key_len != WLAN_KEY_LEN_WEP104)
284                         return -EINVAL;
285                 break;
286         case WLAN_CIPHER_SUITE_AES_CMAC:
287                 if (params->key_len != WLAN_KEY_LEN_AES_CMAC)
288                         return -EINVAL;
289                 break;
290         case WLAN_CIPHER_SUITE_BIP_CMAC_256:
291                 if (params->key_len != WLAN_KEY_LEN_BIP_CMAC_256)
292                         return -EINVAL;
293                 break;
294         case WLAN_CIPHER_SUITE_BIP_GMAC_128:
295                 if (params->key_len != WLAN_KEY_LEN_BIP_GMAC_128)
296                         return -EINVAL;
297                 break;
298         case WLAN_CIPHER_SUITE_BIP_GMAC_256:
299                 if (params->key_len != WLAN_KEY_LEN_BIP_GMAC_256)
300                         return -EINVAL;
301                 break;
302         default:
303                 /*
304                  * We don't know anything about this algorithm,
305                  * allow using it -- but the driver must check
306                  * all parameters! We still check below whether
307                  * or not the driver supports this algorithm,
308                  * of course.
309                  */
310                 break;
311         }
312
313         if (params->seq) {
314                 switch (params->cipher) {
315                 case WLAN_CIPHER_SUITE_WEP40:
316                 case WLAN_CIPHER_SUITE_WEP104:
317                         /* These ciphers do not use key sequence */
318                         return -EINVAL;
319                 case WLAN_CIPHER_SUITE_TKIP:
320                 case WLAN_CIPHER_SUITE_CCMP:
321                 case WLAN_CIPHER_SUITE_CCMP_256:
322                 case WLAN_CIPHER_SUITE_GCMP:
323                 case WLAN_CIPHER_SUITE_GCMP_256:
324                 case WLAN_CIPHER_SUITE_AES_CMAC:
325                 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
326                 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
327                 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
328                         if (params->seq_len != 6)
329                                 return -EINVAL;
330                         break;
331                 }
332         }
333
334         if (!cfg80211_supported_cipher_suite(&rdev->wiphy, params->cipher))
335                 return -EINVAL;
336
337         return 0;
338 }
339
340 unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc)
341 {
342         unsigned int hdrlen = 24;
343
344         if (ieee80211_is_data(fc)) {
345                 if (ieee80211_has_a4(fc))
346                         hdrlen = 30;
347                 if (ieee80211_is_data_qos(fc)) {
348                         hdrlen += IEEE80211_QOS_CTL_LEN;
349                         if (ieee80211_has_order(fc))
350                                 hdrlen += IEEE80211_HT_CTL_LEN;
351                 }
352                 goto out;
353         }
354
355         if (ieee80211_is_mgmt(fc)) {
356                 if (ieee80211_has_order(fc))
357                         hdrlen += IEEE80211_HT_CTL_LEN;
358                 goto out;
359         }
360
361         if (ieee80211_is_ctl(fc)) {
362                 /*
363                  * ACK and CTS are 10 bytes, all others 16. To see how
364                  * to get this condition consider
365                  *   subtype mask:   0b0000000011110000 (0x00F0)
366                  *   ACK subtype:    0b0000000011010000 (0x00D0)
367                  *   CTS subtype:    0b0000000011000000 (0x00C0)
368                  *   bits that matter:         ^^^      (0x00E0)
369                  *   value of those: 0b0000000011000000 (0x00C0)
370                  */
371                 if ((fc & cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0))
372                         hdrlen = 10;
373                 else
374                         hdrlen = 16;
375         }
376 out:
377         return hdrlen;
378 }
379 EXPORT_SYMBOL(ieee80211_hdrlen);
380
381 unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb)
382 {
383         const struct ieee80211_hdr *hdr =
384                         (const struct ieee80211_hdr *)skb->data;
385         unsigned int hdrlen;
386
387         if (unlikely(skb->len < 10))
388                 return 0;
389         hdrlen = ieee80211_hdrlen(hdr->frame_control);
390         if (unlikely(hdrlen > skb->len))
391                 return 0;
392         return hdrlen;
393 }
394 EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb);
395
396 unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr)
397 {
398         int ae = meshhdr->flags & MESH_FLAGS_AE;
399         /* 802.11-2012, 8.2.4.7.3 */
400         switch (ae) {
401         default:
402         case 0:
403                 return 6;
404         case MESH_FLAGS_AE_A4:
405                 return 12;
406         case MESH_FLAGS_AE_A5_A6:
407                 return 18;
408         }
409 }
410 EXPORT_SYMBOL(ieee80211_get_mesh_hdrlen);
411
412 static int __ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
413                                     enum nl80211_iftype iftype, bool is_amsdu)
414 {
415         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
416         u16 hdrlen, ethertype;
417         u8 *payload;
418         u8 dst[ETH_ALEN];
419         u8 src[ETH_ALEN] __aligned(2);
420
421         if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
422                 return -1;
423
424         hdrlen = ieee80211_hdrlen(hdr->frame_control);
425
426         /* convert IEEE 802.11 header + possible LLC headers into Ethernet
427          * header
428          * IEEE 802.11 address fields:
429          * ToDS FromDS Addr1 Addr2 Addr3 Addr4
430          *   0     0   DA    SA    BSSID n/a
431          *   0     1   DA    BSSID SA    n/a
432          *   1     0   BSSID SA    DA    n/a
433          *   1     1   RA    TA    DA    SA
434          */
435         memcpy(dst, ieee80211_get_DA(hdr), ETH_ALEN);
436         memcpy(src, ieee80211_get_SA(hdr), ETH_ALEN);
437
438         switch (hdr->frame_control &
439                 cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
440         case cpu_to_le16(IEEE80211_FCTL_TODS):
441                 if (unlikely(iftype != NL80211_IFTYPE_AP &&
442                              iftype != NL80211_IFTYPE_AP_VLAN &&
443                              iftype != NL80211_IFTYPE_P2P_GO))
444                         return -1;
445                 break;
446         case cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
447                 if (unlikely(iftype != NL80211_IFTYPE_WDS &&
448                              iftype != NL80211_IFTYPE_MESH_POINT &&
449                              iftype != NL80211_IFTYPE_AP_VLAN &&
450                              iftype != NL80211_IFTYPE_STATION))
451                         return -1;
452                 if (iftype == NL80211_IFTYPE_MESH_POINT) {
453                         struct ieee80211s_hdr *meshdr =
454                                 (struct ieee80211s_hdr *) (skb->data + hdrlen);
455                         /* make sure meshdr->flags is on the linear part */
456                         if (!pskb_may_pull(skb, hdrlen + 1))
457                                 return -1;
458                         if (meshdr->flags & MESH_FLAGS_AE_A4)
459                                 return -1;
460                         if (meshdr->flags & MESH_FLAGS_AE_A5_A6) {
461                                 skb_copy_bits(skb, hdrlen +
462                                         offsetof(struct ieee80211s_hdr, eaddr1),
463                                         dst, ETH_ALEN);
464                                 skb_copy_bits(skb, hdrlen +
465                                         offsetof(struct ieee80211s_hdr, eaddr2),
466                                         src, ETH_ALEN);
467                         }
468                         hdrlen += ieee80211_get_mesh_hdrlen(meshdr);
469                 }
470                 break;
471         case cpu_to_le16(IEEE80211_FCTL_FROMDS):
472                 if ((iftype != NL80211_IFTYPE_STATION &&
473                      iftype != NL80211_IFTYPE_P2P_CLIENT &&
474                      iftype != NL80211_IFTYPE_MESH_POINT) ||
475                     (is_multicast_ether_addr(dst) &&
476                      ether_addr_equal(src, addr)))
477                         return -1;
478                 if (iftype == NL80211_IFTYPE_MESH_POINT) {
479                         struct ieee80211s_hdr *meshdr =
480                                 (struct ieee80211s_hdr *) (skb->data + hdrlen);
481                         /* make sure meshdr->flags is on the linear part */
482                         if (!pskb_may_pull(skb, hdrlen + 1))
483                                 return -1;
484                         if (meshdr->flags & MESH_FLAGS_AE_A5_A6)
485                                 return -1;
486                         if (meshdr->flags & MESH_FLAGS_AE_A4)
487                                 skb_copy_bits(skb, hdrlen +
488                                         offsetof(struct ieee80211s_hdr, eaddr1),
489                                         src, ETH_ALEN);
490                         hdrlen += ieee80211_get_mesh_hdrlen(meshdr);
491                 }
492                 break;
493         case cpu_to_le16(0):
494                 if (iftype != NL80211_IFTYPE_ADHOC &&
495                     iftype != NL80211_IFTYPE_STATION &&
496                     iftype != NL80211_IFTYPE_OCB)
497                                 return -1;
498                 break;
499         }
500
501         if (!pskb_may_pull(skb, hdrlen + 8))
502                 return -1;
503
504         payload = skb->data + hdrlen;
505         ethertype = (payload[6] << 8) | payload[7];
506
507         if (likely((!is_amsdu && ether_addr_equal(payload, rfc1042_header) &&
508                     ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
509                    ether_addr_equal(payload, bridge_tunnel_header))) {
510                 /* remove RFC1042 or Bridge-Tunnel encapsulation and
511                  * replace EtherType */
512                 skb_pull(skb, hdrlen + 6);
513                 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
514                 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
515         } else {
516                 struct ethhdr *ehdr;
517                 __be16 len;
518
519                 skb_pull(skb, hdrlen);
520                 len = htons(skb->len);
521                 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
522                 memcpy(ehdr->h_dest, dst, ETH_ALEN);
523                 memcpy(ehdr->h_source, src, ETH_ALEN);
524                 ehdr->h_proto = len;
525         }
526         return 0;
527 }
528
529 int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
530                            enum nl80211_iftype iftype)
531 {
532         return __ieee80211_data_to_8023(skb, addr, iftype, false);
533 }
534 EXPORT_SYMBOL(ieee80211_data_to_8023);
535
536 int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
537                              enum nl80211_iftype iftype,
538                              const u8 *bssid, bool qos)
539 {
540         struct ieee80211_hdr hdr;
541         u16 hdrlen, ethertype;
542         __le16 fc;
543         const u8 *encaps_data;
544         int encaps_len, skip_header_bytes;
545         int nh_pos, h_pos;
546         int head_need;
547
548         if (unlikely(skb->len < ETH_HLEN))
549                 return -EINVAL;
550
551         nh_pos = skb_network_header(skb) - skb->data;
552         h_pos = skb_transport_header(skb) - skb->data;
553
554         /* convert Ethernet header to proper 802.11 header (based on
555          * operation mode) */
556         ethertype = (skb->data[12] << 8) | skb->data[13];
557         fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
558
559         switch (iftype) {
560         case NL80211_IFTYPE_AP:
561         case NL80211_IFTYPE_AP_VLAN:
562         case NL80211_IFTYPE_P2P_GO:
563                 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
564                 /* DA BSSID SA */
565                 memcpy(hdr.addr1, skb->data, ETH_ALEN);
566                 memcpy(hdr.addr2, addr, ETH_ALEN);
567                 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
568                 hdrlen = 24;
569                 break;
570         case NL80211_IFTYPE_STATION:
571         case NL80211_IFTYPE_P2P_CLIENT:
572                 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
573                 /* BSSID SA DA */
574                 memcpy(hdr.addr1, bssid, ETH_ALEN);
575                 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
576                 memcpy(hdr.addr3, skb->data, ETH_ALEN);
577                 hdrlen = 24;
578                 break;
579         case NL80211_IFTYPE_OCB:
580         case NL80211_IFTYPE_ADHOC:
581                 /* DA SA BSSID */
582                 memcpy(hdr.addr1, skb->data, ETH_ALEN);
583                 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
584                 memcpy(hdr.addr3, bssid, ETH_ALEN);
585                 hdrlen = 24;
586                 break;
587         default:
588                 return -EOPNOTSUPP;
589         }
590
591         if (qos) {
592                 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
593                 hdrlen += 2;
594         }
595
596         hdr.frame_control = fc;
597         hdr.duration_id = 0;
598         hdr.seq_ctrl = 0;
599
600         skip_header_bytes = ETH_HLEN;
601         if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
602                 encaps_data = bridge_tunnel_header;
603                 encaps_len = sizeof(bridge_tunnel_header);
604                 skip_header_bytes -= 2;
605         } else if (ethertype >= ETH_P_802_3_MIN) {
606                 encaps_data = rfc1042_header;
607                 encaps_len = sizeof(rfc1042_header);
608                 skip_header_bytes -= 2;
609         } else {
610                 encaps_data = NULL;
611                 encaps_len = 0;
612         }
613
614         skb_pull(skb, skip_header_bytes);
615         nh_pos -= skip_header_bytes;
616         h_pos -= skip_header_bytes;
617
618         head_need = hdrlen + encaps_len - skb_headroom(skb);
619
620         if (head_need > 0 || skb_cloned(skb)) {
621                 head_need = max(head_need, 0);
622                 if (head_need)
623                         skb_orphan(skb);
624
625                 if (pskb_expand_head(skb, head_need, 0, GFP_ATOMIC))
626                         return -ENOMEM;
627
628                 skb->truesize += head_need;
629         }
630
631         if (encaps_data) {
632                 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
633                 nh_pos += encaps_len;
634                 h_pos += encaps_len;
635         }
636
637         memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
638
639         nh_pos += hdrlen;
640         h_pos += hdrlen;
641
642         /* Update skb pointers to various headers since this modified frame
643          * is going to go through Linux networking code that may potentially
644          * need things like pointer to IP header. */
645         skb_set_mac_header(skb, 0);
646         skb_set_network_header(skb, nh_pos);
647         skb_set_transport_header(skb, h_pos);
648
649         return 0;
650 }
651 EXPORT_SYMBOL(ieee80211_data_from_8023);
652
653
654 void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
655                               const u8 *addr, enum nl80211_iftype iftype,
656                               const unsigned int extra_headroom,
657                               bool has_80211_header)
658 {
659         struct sk_buff *frame = NULL;
660         u16 ethertype;
661         u8 *payload;
662         const struct ethhdr *eth;
663         int remaining, err;
664         u8 dst[ETH_ALEN], src[ETH_ALEN];
665
666         if (has_80211_header) {
667                 err = ieee80211_data_to_8023(skb, addr, iftype);
668                 if (err)
669                         goto out;
670
671                 /* skip the wrapping header */
672                 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
673                 if (!eth)
674                         goto out;
675         } else {
676                 eth = (struct ethhdr *) skb->data;
677         }
678
679         while (skb != frame) {
680                 u8 padding;
681                 __be16 len = eth->h_proto;
682                 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
683
684                 remaining = skb->len;
685                 memcpy(dst, eth->h_dest, ETH_ALEN);
686                 memcpy(src, eth->h_source, ETH_ALEN);
687
688                 padding = (4 - subframe_len) & 0x3;
689                 /* the last MSDU has no padding */
690                 if (subframe_len > remaining)
691                         goto purge;
692                 /* mitigate A-MSDU aggregation injection attacks */
693                 if (ether_addr_equal(eth->h_dest, rfc1042_header))
694                         goto purge;
695
696                 skb_pull(skb, sizeof(struct ethhdr));
697                 /* reuse skb for the last subframe */
698                 if (remaining <= subframe_len + padding)
699                         frame = skb;
700                 else {
701                         unsigned int hlen = ALIGN(extra_headroom, 4);
702                         /*
703                          * Allocate and reserve two bytes more for payload
704                          * alignment since sizeof(struct ethhdr) is 14.
705                          */
706                         frame = dev_alloc_skb(hlen + subframe_len + 2);
707                         if (!frame)
708                                 goto purge;
709
710                         skb_reserve(frame, hlen + sizeof(struct ethhdr) + 2);
711                         memcpy(skb_put(frame, ntohs(len)), skb->data,
712                                 ntohs(len));
713
714                         eth = (struct ethhdr *)skb_pull(skb, ntohs(len) +
715                                                         padding);
716                         if (!eth) {
717                                 dev_kfree_skb(frame);
718                                 goto purge;
719                         }
720                 }
721
722                 skb_reset_network_header(frame);
723                 frame->dev = skb->dev;
724                 frame->priority = skb->priority;
725
726                 payload = frame->data;
727                 ethertype = (payload[6] << 8) | payload[7];
728
729                 if (likely((ether_addr_equal(payload, rfc1042_header) &&
730                             ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
731                            ether_addr_equal(payload, bridge_tunnel_header))) {
732                         /* remove RFC1042 or Bridge-Tunnel
733                          * encapsulation and replace EtherType */
734                         skb_pull(frame, 6);
735                         memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
736                         memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
737                 } else {
738                         memcpy(skb_push(frame, sizeof(__be16)), &len,
739                                 sizeof(__be16));
740                         memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
741                         memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
742                 }
743                 __skb_queue_tail(list, frame);
744         }
745
746         return;
747
748  purge:
749         __skb_queue_purge(list);
750  out:
751         dev_kfree_skb(skb);
752 }
753 EXPORT_SYMBOL(ieee80211_amsdu_to_8023s);
754
755 /* Given a data frame determine the 802.1p/1d tag to use. */
756 unsigned int cfg80211_classify8021d(struct sk_buff *skb,
757                                     struct cfg80211_qos_map *qos_map)
758 {
759         unsigned int dscp;
760         unsigned char vlan_priority;
761
762         /* skb->priority values from 256->263 are magic values to
763          * directly indicate a specific 802.1d priority.  This is used
764          * to allow 802.1d priority to be passed directly in from VLAN
765          * tags, etc.
766          */
767         if (skb->priority >= 256 && skb->priority <= 263)
768                 return skb->priority - 256;
769
770         if (skb_vlan_tag_present(skb)) {
771                 vlan_priority = (skb_vlan_tag_get(skb) & VLAN_PRIO_MASK)
772                         >> VLAN_PRIO_SHIFT;
773                 if (vlan_priority > 0)
774                         return vlan_priority;
775         }
776
777         switch (skb->protocol) {
778         case htons(ETH_P_IP):
779                 dscp = ipv4_get_dsfield(ip_hdr(skb)) & 0xfc;
780                 break;
781         case htons(ETH_P_IPV6):
782                 dscp = ipv6_get_dsfield(ipv6_hdr(skb)) & 0xfc;
783                 break;
784         case htons(ETH_P_MPLS_UC):
785         case htons(ETH_P_MPLS_MC): {
786                 struct mpls_label mpls_tmp, *mpls;
787
788                 mpls = skb_header_pointer(skb, sizeof(struct ethhdr),
789                                           sizeof(*mpls), &mpls_tmp);
790                 if (!mpls)
791                         return 0;
792
793                 return (ntohl(mpls->entry) & MPLS_LS_TC_MASK)
794                         >> MPLS_LS_TC_SHIFT;
795         }
796         case htons(ETH_P_80221):
797                 /* 802.21 is always network control traffic */
798                 return 7;
799         default:
800                 return 0;
801         }
802
803         if (qos_map) {
804                 unsigned int i, tmp_dscp = dscp >> 2;
805
806                 for (i = 0; i < qos_map->num_des; i++) {
807                         if (tmp_dscp == qos_map->dscp_exception[i].dscp)
808                                 return qos_map->dscp_exception[i].up;
809                 }
810
811                 for (i = 0; i < 8; i++) {
812                         if (tmp_dscp >= qos_map->up[i].low &&
813                             tmp_dscp <= qos_map->up[i].high)
814                                 return i;
815                 }
816         }
817
818         return dscp >> 5;
819 }
820 EXPORT_SYMBOL(cfg80211_classify8021d);
821
822 const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie)
823 {
824         const struct cfg80211_bss_ies *ies;
825
826         ies = rcu_dereference(bss->ies);
827         if (!ies)
828                 return NULL;
829
830         return cfg80211_find_ie(ie, ies->data, ies->len);
831 }
832 EXPORT_SYMBOL(ieee80211_bss_get_ie);
833
834 void cfg80211_upload_connect_keys(struct wireless_dev *wdev)
835 {
836         struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
837         struct net_device *dev = wdev->netdev;
838         int i;
839
840         if (!wdev->connect_keys)
841                 return;
842
843         for (i = 0; i < 6; i++) {
844                 if (!wdev->connect_keys->params[i].cipher)
845                         continue;
846                 if (rdev_add_key(rdev, dev, i, false, NULL,
847                                  &wdev->connect_keys->params[i])) {
848                         netdev_err(dev, "failed to set key %d\n", i);
849                         continue;
850                 }
851                 if (wdev->connect_keys->def == i)
852                         if (rdev_set_default_key(rdev, dev, i, true, true)) {
853                                 netdev_err(dev, "failed to set defkey %d\n", i);
854                                 continue;
855                         }
856                 if (wdev->connect_keys->defmgmt == i)
857                         if (rdev_set_default_mgmt_key(rdev, dev, i))
858                                 netdev_err(dev, "failed to set mgtdef %d\n", i);
859         }
860
861         kzfree(wdev->connect_keys);
862         wdev->connect_keys = NULL;
863 }
864
865 void cfg80211_process_wdev_events(struct wireless_dev *wdev)
866 {
867         struct cfg80211_event *ev;
868         unsigned long flags;
869         const u8 *bssid = NULL;
870
871         spin_lock_irqsave(&wdev->event_lock, flags);
872         while (!list_empty(&wdev->event_list)) {
873                 ev = list_first_entry(&wdev->event_list,
874                                       struct cfg80211_event, list);
875                 list_del(&ev->list);
876                 spin_unlock_irqrestore(&wdev->event_lock, flags);
877
878                 wdev_lock(wdev);
879                 switch (ev->type) {
880                 case EVENT_CONNECT_RESULT:
881                         if (!is_zero_ether_addr(ev->cr.bssid))
882                                 bssid = ev->cr.bssid;
883                         __cfg80211_connect_result(
884                                 wdev->netdev, bssid,
885                                 ev->cr.req_ie, ev->cr.req_ie_len,
886                                 ev->cr.resp_ie, ev->cr.resp_ie_len,
887                                 ev->cr.status,
888                                 ev->cr.status == WLAN_STATUS_SUCCESS,
889                                 NULL);
890                         break;
891                 case EVENT_ROAMED:
892                         __cfg80211_roamed(wdev, ev->rm.bss, ev->rm.req_ie,
893                                           ev->rm.req_ie_len, ev->rm.resp_ie,
894                                           ev->rm.resp_ie_len);
895                         break;
896                 case EVENT_DISCONNECTED:
897                         __cfg80211_disconnected(wdev->netdev,
898                                                 ev->dc.ie, ev->dc.ie_len,
899                                                 ev->dc.reason,
900                                                 !ev->dc.locally_generated);
901                         break;
902                 case EVENT_IBSS_JOINED:
903                         __cfg80211_ibss_joined(wdev->netdev, ev->ij.bssid,
904                                                ev->ij.channel);
905                         break;
906                 case EVENT_STOPPED:
907                         __cfg80211_leave(wiphy_to_rdev(wdev->wiphy), wdev);
908                         break;
909                 }
910                 wdev_unlock(wdev);
911
912                 kfree(ev);
913
914                 spin_lock_irqsave(&wdev->event_lock, flags);
915         }
916         spin_unlock_irqrestore(&wdev->event_lock, flags);
917 }
918
919 void cfg80211_process_rdev_events(struct cfg80211_registered_device *rdev)
920 {
921         struct wireless_dev *wdev;
922
923         ASSERT_RTNL();
924
925         list_for_each_entry(wdev, &rdev->wdev_list, list)
926                 cfg80211_process_wdev_events(wdev);
927 }
928
929 int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
930                           struct net_device *dev, enum nl80211_iftype ntype,
931                           u32 *flags, struct vif_params *params)
932 {
933         int err;
934         enum nl80211_iftype otype = dev->ieee80211_ptr->iftype;
935
936         ASSERT_RTNL();
937
938         /* don't support changing VLANs, you just re-create them */
939         if (otype == NL80211_IFTYPE_AP_VLAN)
940                 return -EOPNOTSUPP;
941
942         /* cannot change into P2P device type */
943         if (ntype == NL80211_IFTYPE_P2P_DEVICE)
944                 return -EOPNOTSUPP;
945
946         if (!rdev->ops->change_virtual_intf ||
947             !(rdev->wiphy.interface_modes & (1 << ntype)))
948                 return -EOPNOTSUPP;
949
950         /* if it's part of a bridge, reject changing type to station/ibss */
951         if ((dev->priv_flags & IFF_BRIDGE_PORT) &&
952             (ntype == NL80211_IFTYPE_ADHOC ||
953              ntype == NL80211_IFTYPE_STATION ||
954              ntype == NL80211_IFTYPE_P2P_CLIENT))
955                 return -EBUSY;
956
957         if (ntype != otype) {
958                 dev->ieee80211_ptr->use_4addr = false;
959                 dev->ieee80211_ptr->mesh_id_up_len = 0;
960                 wdev_lock(dev->ieee80211_ptr);
961                 rdev_set_qos_map(rdev, dev, NULL);
962                 wdev_unlock(dev->ieee80211_ptr);
963
964                 switch (otype) {
965                 case NL80211_IFTYPE_AP:
966                 case NL80211_IFTYPE_P2P_GO:
967                         cfg80211_stop_ap(rdev, dev, true);
968                         break;
969                 case NL80211_IFTYPE_ADHOC:
970                         cfg80211_leave_ibss(rdev, dev, false);
971                         break;
972                 case NL80211_IFTYPE_STATION:
973                 case NL80211_IFTYPE_P2P_CLIENT:
974                         wdev_lock(dev->ieee80211_ptr);
975                         cfg80211_disconnect(rdev, dev,
976                                             WLAN_REASON_DEAUTH_LEAVING, true);
977                         wdev_unlock(dev->ieee80211_ptr);
978                         break;
979                 case NL80211_IFTYPE_MESH_POINT:
980                         /* mesh should be handled? */
981                         break;
982                 case NL80211_IFTYPE_OCB:
983                         cfg80211_leave_ocb(rdev, dev);
984                         break;
985                 default:
986                         break;
987                 }
988
989                 cfg80211_process_rdev_events(rdev);
990                 cfg80211_mlme_purge_registrations(dev->ieee80211_ptr);
991         }
992
993         err = rdev_change_virtual_intf(rdev, dev, ntype, flags, params);
994
995         WARN_ON(!err && dev->ieee80211_ptr->iftype != ntype);
996
997         if (!err && params && params->use_4addr != -1)
998                 dev->ieee80211_ptr->use_4addr = params->use_4addr;
999
1000         if (!err) {
1001                 dev->priv_flags &= ~IFF_DONT_BRIDGE;
1002                 switch (ntype) {
1003                 case NL80211_IFTYPE_STATION:
1004                         if (dev->ieee80211_ptr->use_4addr)
1005                                 break;
1006                         /* fall through */
1007                 case NL80211_IFTYPE_OCB:
1008                 case NL80211_IFTYPE_P2P_CLIENT:
1009                 case NL80211_IFTYPE_ADHOC:
1010                         dev->priv_flags |= IFF_DONT_BRIDGE;
1011                         break;
1012                 case NL80211_IFTYPE_P2P_GO:
1013                 case NL80211_IFTYPE_AP:
1014                 case NL80211_IFTYPE_AP_VLAN:
1015                 case NL80211_IFTYPE_WDS:
1016                 case NL80211_IFTYPE_MESH_POINT:
1017                         /* bridging OK */
1018                         break;
1019                 case NL80211_IFTYPE_MONITOR:
1020                         /* monitor can't bridge anyway */
1021                         break;
1022                 case NL80211_IFTYPE_UNSPECIFIED:
1023                 case NUM_NL80211_IFTYPES:
1024                         /* not happening */
1025                         break;
1026                 case NL80211_IFTYPE_P2P_DEVICE:
1027                         WARN_ON(1);
1028                         break;
1029                 }
1030         }
1031
1032         if (!err && ntype != otype && netif_running(dev)) {
1033                 cfg80211_update_iface_num(rdev, ntype, 1);
1034                 cfg80211_update_iface_num(rdev, otype, -1);
1035         }
1036
1037         return err;
1038 }
1039
1040 static u32 cfg80211_calculate_bitrate_60g(struct rate_info *rate)
1041 {
1042         static const u32 __mcs2bitrate[] = {
1043                 /* control PHY */
1044                 [0] =   275,
1045                 /* SC PHY */
1046                 [1] =  3850,
1047                 [2] =  7700,
1048                 [3] =  9625,
1049                 [4] = 11550,
1050                 [5] = 12512, /* 1251.25 mbps */
1051                 [6] = 15400,
1052                 [7] = 19250,
1053                 [8] = 23100,
1054                 [9] = 25025,
1055                 [10] = 30800,
1056                 [11] = 38500,
1057                 [12] = 46200,
1058                 /* OFDM PHY */
1059                 [13] =  6930,
1060                 [14] =  8662, /* 866.25 mbps */
1061                 [15] = 13860,
1062                 [16] = 17325,
1063                 [17] = 20790,
1064                 [18] = 27720,
1065                 [19] = 34650,
1066                 [20] = 41580,
1067                 [21] = 45045,
1068                 [22] = 51975,
1069                 [23] = 62370,
1070                 [24] = 67568, /* 6756.75 mbps */
1071                 /* LP-SC PHY */
1072                 [25] =  6260,
1073                 [26] =  8340,
1074                 [27] = 11120,
1075                 [28] = 12510,
1076                 [29] = 16680,
1077                 [30] = 22240,
1078                 [31] = 25030,
1079         };
1080
1081         if (WARN_ON_ONCE(rate->mcs >= ARRAY_SIZE(__mcs2bitrate)))
1082                 return 0;
1083
1084         return __mcs2bitrate[rate->mcs];
1085 }
1086
1087 static u32 cfg80211_calculate_bitrate_vht(struct rate_info *rate)
1088 {
1089         static const u32 base[4][10] = {
1090                 {   6500000,
1091                    13000000,
1092                    19500000,
1093                    26000000,
1094                    39000000,
1095                    52000000,
1096                    58500000,
1097                    65000000,
1098                    78000000,
1099                    0,
1100                 },
1101                 {  13500000,
1102                    27000000,
1103                    40500000,
1104                    54000000,
1105                    81000000,
1106                   108000000,
1107                   121500000,
1108                   135000000,
1109                   162000000,
1110                   180000000,
1111                 },
1112                 {  29300000,
1113                    58500000,
1114                    87800000,
1115                   117000000,
1116                   175500000,
1117                   234000000,
1118                   263300000,
1119                   292500000,
1120                   351000000,
1121                   390000000,
1122                 },
1123                 {  58500000,
1124                   117000000,
1125                   175500000,
1126                   234000000,
1127                   351000000,
1128                   468000000,
1129                   526500000,
1130                   585000000,
1131                   702000000,
1132                   780000000,
1133                 },
1134         };
1135         u32 bitrate;
1136         int idx;
1137
1138         if (WARN_ON_ONCE(rate->mcs > 9))
1139                 return 0;
1140
1141         switch (rate->bw) {
1142         case RATE_INFO_BW_160:
1143                 idx = 3;
1144                 break;
1145         case RATE_INFO_BW_80:
1146                 idx = 2;
1147                 break;
1148         case RATE_INFO_BW_40:
1149                 idx = 1;
1150                 break;
1151         case RATE_INFO_BW_5:
1152         case RATE_INFO_BW_10:
1153         default:
1154                 WARN_ON(1);
1155                 /* fall through */
1156         case RATE_INFO_BW_20:
1157                 idx = 0;
1158         }
1159
1160         bitrate = base[idx][rate->mcs];
1161         bitrate *= rate->nss;
1162
1163         if (rate->flags & RATE_INFO_FLAGS_SHORT_GI)
1164                 bitrate = (bitrate / 9) * 10;
1165
1166         /* do NOT round down here */
1167         return (bitrate + 50000) / 100000;
1168 }
1169
1170 u32 cfg80211_calculate_bitrate(struct rate_info *rate)
1171 {
1172         int modulation, streams, bitrate;
1173
1174         if (!(rate->flags & RATE_INFO_FLAGS_MCS) &&
1175             !(rate->flags & RATE_INFO_FLAGS_VHT_MCS))
1176                 return rate->legacy;
1177         if (rate->flags & RATE_INFO_FLAGS_60G)
1178                 return cfg80211_calculate_bitrate_60g(rate);
1179         if (rate->flags & RATE_INFO_FLAGS_VHT_MCS)
1180                 return cfg80211_calculate_bitrate_vht(rate);
1181
1182         /* the formula below does only work for MCS values smaller than 32 */
1183         if (WARN_ON_ONCE(rate->mcs >= 32))
1184                 return 0;
1185
1186         modulation = rate->mcs & 7;
1187         streams = (rate->mcs >> 3) + 1;
1188
1189         bitrate = (rate->bw == RATE_INFO_BW_40) ? 13500000 : 6500000;
1190
1191         if (modulation < 4)
1192                 bitrate *= (modulation + 1);
1193         else if (modulation == 4)
1194                 bitrate *= (modulation + 2);
1195         else
1196                 bitrate *= (modulation + 3);
1197
1198         bitrate *= streams;
1199
1200         if (rate->flags & RATE_INFO_FLAGS_SHORT_GI)
1201                 bitrate = (bitrate / 9) * 10;
1202
1203         /* do NOT round down here */
1204         return (bitrate + 50000) / 100000;
1205 }
1206 EXPORT_SYMBOL(cfg80211_calculate_bitrate);
1207
1208 int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len,
1209                           enum ieee80211_p2p_attr_id attr,
1210                           u8 *buf, unsigned int bufsize)
1211 {
1212         u8 *out = buf;
1213         u16 attr_remaining = 0;
1214         bool desired_attr = false;
1215         u16 desired_len = 0;
1216
1217         while (len > 0) {
1218                 unsigned int iedatalen;
1219                 unsigned int copy;
1220                 const u8 *iedata;
1221
1222                 if (len < 2)
1223                         return -EILSEQ;
1224                 iedatalen = ies[1];
1225                 if (iedatalen + 2 > len)
1226                         return -EILSEQ;
1227
1228                 if (ies[0] != WLAN_EID_VENDOR_SPECIFIC)
1229                         goto cont;
1230
1231                 if (iedatalen < 4)
1232                         goto cont;
1233
1234                 iedata = ies + 2;
1235
1236                 /* check WFA OUI, P2P subtype */
1237                 if (iedata[0] != 0x50 || iedata[1] != 0x6f ||
1238                     iedata[2] != 0x9a || iedata[3] != 0x09)
1239                         goto cont;
1240
1241                 iedatalen -= 4;
1242                 iedata += 4;
1243
1244                 /* check attribute continuation into this IE */
1245                 copy = min_t(unsigned int, attr_remaining, iedatalen);
1246                 if (copy && desired_attr) {
1247                         desired_len += copy;
1248                         if (out) {
1249                                 memcpy(out, iedata, min(bufsize, copy));
1250                                 out += min(bufsize, copy);
1251                                 bufsize -= min(bufsize, copy);
1252                         }
1253
1254
1255                         if (copy == attr_remaining)
1256                                 return desired_len;
1257                 }
1258
1259                 attr_remaining -= copy;
1260                 if (attr_remaining)
1261                         goto cont;
1262
1263                 iedatalen -= copy;
1264                 iedata += copy;
1265
1266                 while (iedatalen > 0) {
1267                         u16 attr_len;
1268
1269                         /* P2P attribute ID & size must fit */
1270                         if (iedatalen < 3)
1271                                 return -EILSEQ;
1272                         desired_attr = iedata[0] == attr;
1273                         attr_len = get_unaligned_le16(iedata + 1);
1274                         iedatalen -= 3;
1275                         iedata += 3;
1276
1277                         copy = min_t(unsigned int, attr_len, iedatalen);
1278
1279                         if (desired_attr) {
1280                                 desired_len += copy;
1281                                 if (out) {
1282                                         memcpy(out, iedata, min(bufsize, copy));
1283                                         out += min(bufsize, copy);
1284                                         bufsize -= min(bufsize, copy);
1285                                 }
1286
1287                                 if (copy == attr_len)
1288                                         return desired_len;
1289                         }
1290
1291                         iedata += copy;
1292                         iedatalen -= copy;
1293                         attr_remaining = attr_len - copy;
1294                 }
1295
1296  cont:
1297                 len -= ies[1] + 2;
1298                 ies += ies[1] + 2;
1299         }
1300
1301         if (attr_remaining && desired_attr)
1302                 return -EILSEQ;
1303
1304         return -ENOENT;
1305 }
1306 EXPORT_SYMBOL(cfg80211_get_p2p_attr);
1307
1308 static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
1309 {
1310         int i;
1311
1312         for (i = 0; i < n_ids; i++)
1313                 if (ids[i] == id)
1314                         return true;
1315         return false;
1316 }
1317
1318 size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
1319                               const u8 *ids, int n_ids,
1320                               const u8 *after_ric, int n_after_ric,
1321                               size_t offset)
1322 {
1323         size_t pos = offset;
1324
1325         while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos])) {
1326                 if (ies[pos] == WLAN_EID_RIC_DATA && n_after_ric) {
1327                         pos += 2 + ies[pos + 1];
1328
1329                         while (pos < ielen &&
1330                                !ieee80211_id_in_list(after_ric, n_after_ric,
1331                                                      ies[pos]))
1332                                 pos += 2 + ies[pos + 1];
1333                 } else {
1334                         pos += 2 + ies[pos + 1];
1335                 }
1336         }
1337
1338         return pos;
1339 }
1340 EXPORT_SYMBOL(ieee80211_ie_split_ric);
1341
1342 size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
1343                           const u8 *ids, int n_ids, size_t offset)
1344 {
1345         return ieee80211_ie_split_ric(ies, ielen, ids, n_ids, NULL, 0, offset);
1346 }
1347 EXPORT_SYMBOL(ieee80211_ie_split);
1348
1349 bool ieee80211_operating_class_to_band(u8 operating_class,
1350                                        enum ieee80211_band *band)
1351 {
1352         switch (operating_class) {
1353         case 112:
1354         case 115 ... 127:
1355         case 128 ... 130:
1356                 *band = IEEE80211_BAND_5GHZ;
1357                 return true;
1358         case 81:
1359         case 82:
1360         case 83:
1361         case 84:
1362                 *band = IEEE80211_BAND_2GHZ;
1363                 return true;
1364         case 180:
1365                 *band = IEEE80211_BAND_60GHZ;
1366                 return true;
1367         }
1368
1369         return false;
1370 }
1371 EXPORT_SYMBOL(ieee80211_operating_class_to_band);
1372
1373 bool ieee80211_chandef_to_operating_class(struct cfg80211_chan_def *chandef,
1374                                           u8 *op_class)
1375 {
1376         u8 vht_opclass;
1377         u32 freq = chandef->center_freq1;
1378
1379         if (freq >= 2412 && freq <= 2472) {
1380                 if (chandef->width > NL80211_CHAN_WIDTH_40)
1381                         return false;
1382
1383                 /* 2.407 GHz, channels 1..13 */
1384                 if (chandef->width == NL80211_CHAN_WIDTH_40) {
1385                         if (freq > chandef->chan->center_freq)
1386                                 *op_class = 83; /* HT40+ */
1387                         else
1388                                 *op_class = 84; /* HT40- */
1389                 } else {
1390                         *op_class = 81;
1391                 }
1392
1393                 return true;
1394         }
1395
1396         if (freq == 2484) {
1397                 if (chandef->width > NL80211_CHAN_WIDTH_40)
1398                         return false;
1399
1400                 *op_class = 82; /* channel 14 */
1401                 return true;
1402         }
1403
1404         switch (chandef->width) {
1405         case NL80211_CHAN_WIDTH_80:
1406                 vht_opclass = 128;
1407                 break;
1408         case NL80211_CHAN_WIDTH_160:
1409                 vht_opclass = 129;
1410                 break;
1411         case NL80211_CHAN_WIDTH_80P80:
1412                 vht_opclass = 130;
1413                 break;
1414         case NL80211_CHAN_WIDTH_10:
1415         case NL80211_CHAN_WIDTH_5:
1416                 return false; /* unsupported for now */
1417         default:
1418                 vht_opclass = 0;
1419                 break;
1420         }
1421
1422         /* 5 GHz, channels 36..48 */
1423         if (freq >= 5180 && freq <= 5240) {
1424                 if (vht_opclass) {
1425                         *op_class = vht_opclass;
1426                 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1427                         if (freq > chandef->chan->center_freq)
1428                                 *op_class = 116;
1429                         else
1430                                 *op_class = 117;
1431                 } else {
1432                         *op_class = 115;
1433                 }
1434
1435                 return true;
1436         }
1437
1438         /* 5 GHz, channels 52..64 */
1439         if (freq >= 5260 && freq <= 5320) {
1440                 if (vht_opclass) {
1441                         *op_class = vht_opclass;
1442                 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1443                         if (freq > chandef->chan->center_freq)
1444                                 *op_class = 119;
1445                         else
1446                                 *op_class = 120;
1447                 } else {
1448                         *op_class = 118;
1449                 }
1450
1451                 return true;
1452         }
1453
1454         /* 5 GHz, channels 100..144 */
1455         if (freq >= 5500 && freq <= 5720) {
1456                 if (vht_opclass) {
1457                         *op_class = vht_opclass;
1458                 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1459                         if (freq > chandef->chan->center_freq)
1460                                 *op_class = 122;
1461                         else
1462                                 *op_class = 123;
1463                 } else {
1464                         *op_class = 121;
1465                 }
1466
1467                 return true;
1468         }
1469
1470         /* 5 GHz, channels 149..169 */
1471         if (freq >= 5745 && freq <= 5845) {
1472                 if (vht_opclass) {
1473                         *op_class = vht_opclass;
1474                 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1475                         if (freq > chandef->chan->center_freq)
1476                                 *op_class = 126;
1477                         else
1478                                 *op_class = 127;
1479                 } else if (freq <= 5805) {
1480                         *op_class = 124;
1481                 } else {
1482                         *op_class = 125;
1483                 }
1484
1485                 return true;
1486         }
1487
1488         /* 56.16 GHz, channel 1..4 */
1489         if (freq >= 56160 + 2160 * 1 && freq <= 56160 + 2160 * 4) {
1490                 if (chandef->width >= NL80211_CHAN_WIDTH_40)
1491                         return false;
1492
1493                 *op_class = 180;
1494                 return true;
1495         }
1496
1497         /* not supported yet */
1498         return false;
1499 }
1500 EXPORT_SYMBOL(ieee80211_chandef_to_operating_class);
1501
1502 int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev,
1503                                  u32 beacon_int)
1504 {
1505         struct wireless_dev *wdev;
1506         int res = 0;
1507
1508         if (!beacon_int)
1509                 return -EINVAL;
1510
1511         list_for_each_entry(wdev, &rdev->wdev_list, list) {
1512                 if (!wdev->beacon_interval)
1513                         continue;
1514                 if (wdev->beacon_interval != beacon_int) {
1515                         res = -EINVAL;
1516                         break;
1517                 }
1518         }
1519
1520         return res;
1521 }
1522
1523 int cfg80211_iter_combinations(struct wiphy *wiphy,
1524                                const int num_different_channels,
1525                                const u8 radar_detect,
1526                                const int iftype_num[NUM_NL80211_IFTYPES],
1527                                void (*iter)(const struct ieee80211_iface_combination *c,
1528                                             void *data),
1529                                void *data)
1530 {
1531         const struct ieee80211_regdomain *regdom;
1532         enum nl80211_dfs_regions region = 0;
1533         int i, j, iftype;
1534         int num_interfaces = 0;
1535         u32 used_iftypes = 0;
1536
1537         if (radar_detect) {
1538                 rcu_read_lock();
1539                 regdom = rcu_dereference(cfg80211_regdomain);
1540                 if (regdom)
1541                         region = regdom->dfs_region;
1542                 rcu_read_unlock();
1543         }
1544
1545         for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) {
1546                 num_interfaces += iftype_num[iftype];
1547                 if (iftype_num[iftype] > 0 &&
1548                     !(wiphy->software_iftypes & BIT(iftype)))
1549                         used_iftypes |= BIT(iftype);
1550         }
1551
1552         for (i = 0; i < wiphy->n_iface_combinations; i++) {
1553                 const struct ieee80211_iface_combination *c;
1554                 struct ieee80211_iface_limit *limits;
1555                 u32 all_iftypes = 0;
1556
1557                 c = &wiphy->iface_combinations[i];
1558
1559                 if (num_interfaces > c->max_interfaces)
1560                         continue;
1561                 if (num_different_channels > c->num_different_channels)
1562                         continue;
1563
1564                 limits = kmemdup(c->limits, sizeof(limits[0]) * c->n_limits,
1565                                  GFP_KERNEL);
1566                 if (!limits)
1567                         return -ENOMEM;
1568
1569                 for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) {
1570                         if (wiphy->software_iftypes & BIT(iftype))
1571                                 continue;
1572                         for (j = 0; j < c->n_limits; j++) {
1573                                 all_iftypes |= limits[j].types;
1574                                 if (!(limits[j].types & BIT(iftype)))
1575                                         continue;
1576                                 if (limits[j].max < iftype_num[iftype])
1577                                         goto cont;
1578                                 limits[j].max -= iftype_num[iftype];
1579                         }
1580                 }
1581
1582                 if (radar_detect != (c->radar_detect_widths & radar_detect))
1583                         goto cont;
1584
1585                 if (radar_detect && c->radar_detect_regions &&
1586                     !(c->radar_detect_regions & BIT(region)))
1587                         goto cont;
1588
1589                 /* Finally check that all iftypes that we're currently
1590                  * using are actually part of this combination. If they
1591                  * aren't then we can't use this combination and have
1592                  * to continue to the next.
1593                  */
1594                 if ((all_iftypes & used_iftypes) != used_iftypes)
1595                         goto cont;
1596
1597                 /* This combination covered all interface types and
1598                  * supported the requested numbers, so we're good.
1599                  */
1600
1601                 (*iter)(c, data);
1602  cont:
1603                 kfree(limits);
1604         }
1605
1606         return 0;
1607 }
1608 EXPORT_SYMBOL(cfg80211_iter_combinations);
1609
1610 static void
1611 cfg80211_iter_sum_ifcombs(const struct ieee80211_iface_combination *c,
1612                           void *data)
1613 {
1614         int *num = data;
1615         (*num)++;
1616 }
1617
1618 int cfg80211_check_combinations(struct wiphy *wiphy,
1619                                 const int num_different_channels,
1620                                 const u8 radar_detect,
1621                                 const int iftype_num[NUM_NL80211_IFTYPES])
1622 {
1623         int err, num = 0;
1624
1625         err = cfg80211_iter_combinations(wiphy, num_different_channels,
1626                                          radar_detect, iftype_num,
1627                                          cfg80211_iter_sum_ifcombs, &num);
1628         if (err)
1629                 return err;
1630         if (num == 0)
1631                 return -EBUSY;
1632
1633         return 0;
1634 }
1635 EXPORT_SYMBOL(cfg80211_check_combinations);
1636
1637 int cfg80211_can_use_iftype_chan(struct cfg80211_registered_device *rdev,
1638                                  struct wireless_dev *wdev,
1639                                  enum nl80211_iftype iftype,
1640                                  struct ieee80211_channel *chan,
1641                                  enum cfg80211_chan_mode chanmode,
1642                                  u8 radar_detect)
1643 {
1644         struct wireless_dev *wdev_iter;
1645         int num[NUM_NL80211_IFTYPES];
1646         struct ieee80211_channel
1647                         *used_channels[CFG80211_MAX_NUM_DIFFERENT_CHANNELS];
1648         struct ieee80211_channel *ch;
1649         enum cfg80211_chan_mode chmode;
1650         int num_different_channels = 0;
1651         int total = 1;
1652         int i;
1653
1654         ASSERT_RTNL();
1655
1656         if (WARN_ON(hweight32(radar_detect) > 1))
1657                 return -EINVAL;
1658
1659         if (WARN_ON(iftype >= NUM_NL80211_IFTYPES))
1660                 return -EINVAL;
1661
1662         /* Always allow software iftypes */
1663         if (rdev->wiphy.software_iftypes & BIT(iftype)) {
1664                 if (radar_detect)
1665                         return -EINVAL;
1666                 return 0;
1667         }
1668
1669         memset(num, 0, sizeof(num));
1670         memset(used_channels, 0, sizeof(used_channels));
1671
1672         num[iftype] = 1;
1673
1674         /* TODO: We'll probably not need this anymore, since this
1675          * should only be called with CHAN_MODE_UNDEFINED. There are
1676          * still a couple of pending calls where other chanmodes are
1677          * used, but we should get rid of them.
1678          */
1679         switch (chanmode) {
1680         case CHAN_MODE_UNDEFINED:
1681                 break;
1682         case CHAN_MODE_SHARED:
1683                 WARN_ON(!chan);
1684                 used_channels[0] = chan;
1685                 num_different_channels++;
1686                 break;
1687         case CHAN_MODE_EXCLUSIVE:
1688                 num_different_channels++;
1689                 break;
1690         }
1691
1692         list_for_each_entry(wdev_iter, &rdev->wdev_list, list) {
1693                 if (wdev_iter == wdev)
1694                         continue;
1695                 if (wdev_iter->iftype == NL80211_IFTYPE_P2P_DEVICE) {
1696                         if (!wdev_iter->p2p_started)
1697                                 continue;
1698                 } else if (wdev_iter->netdev) {
1699                         if (!netif_running(wdev_iter->netdev))
1700                                 continue;
1701                 } else {
1702                         WARN_ON(1);
1703                 }
1704
1705                 if (rdev->wiphy.software_iftypes & BIT(wdev_iter->iftype))
1706                         continue;
1707
1708                 /*
1709                  * We may be holding the "wdev" mutex, but now need to lock
1710                  * wdev_iter. This is OK because once we get here wdev_iter
1711                  * is not wdev (tested above), but we need to use the nested
1712                  * locking for lockdep.
1713                  */
1714                 mutex_lock_nested(&wdev_iter->mtx, 1);
1715                 __acquire(wdev_iter->mtx);
1716                 cfg80211_get_chan_state(wdev_iter, &ch, &chmode, &radar_detect);
1717                 wdev_unlock(wdev_iter);
1718
1719                 switch (chmode) {
1720                 case CHAN_MODE_UNDEFINED:
1721                         break;
1722                 case CHAN_MODE_SHARED:
1723                         for (i = 0; i < CFG80211_MAX_NUM_DIFFERENT_CHANNELS; i++)
1724                                 if (!used_channels[i] || used_channels[i] == ch)
1725                                         break;
1726
1727                         if (i == CFG80211_MAX_NUM_DIFFERENT_CHANNELS)
1728                                 return -EBUSY;
1729
1730                         if (used_channels[i] == NULL) {
1731                                 used_channels[i] = ch;
1732                                 num_different_channels++;
1733                         }
1734                         break;
1735                 case CHAN_MODE_EXCLUSIVE:
1736                         num_different_channels++;
1737                         break;
1738                 }
1739
1740                 num[wdev_iter->iftype]++;
1741                 total++;
1742         }
1743
1744         if (total == 1 && !radar_detect)
1745                 return 0;
1746
1747         return cfg80211_check_combinations(&rdev->wiphy, num_different_channels,
1748                                            radar_detect, num);
1749 }
1750
1751 int ieee80211_get_ratemask(struct ieee80211_supported_band *sband,
1752                            const u8 *rates, unsigned int n_rates,
1753                            u32 *mask)
1754 {
1755         int i, j;
1756
1757         if (!sband)
1758                 return -EINVAL;
1759
1760         if (n_rates == 0 || n_rates > NL80211_MAX_SUPP_RATES)
1761                 return -EINVAL;
1762
1763         *mask = 0;
1764
1765         for (i = 0; i < n_rates; i++) {
1766                 int rate = (rates[i] & 0x7f) * 5;
1767                 bool found = false;
1768
1769                 for (j = 0; j < sband->n_bitrates; j++) {
1770                         if (sband->bitrates[j].bitrate == rate) {
1771                                 found = true;
1772                                 *mask |= BIT(j);
1773                                 break;
1774                         }
1775                 }
1776                 if (!found)
1777                         return -EINVAL;
1778         }
1779
1780         /*
1781          * mask must have at least one bit set here since we
1782          * didn't accept a 0-length rates array nor allowed
1783          * entries in the array that didn't exist
1784          */
1785
1786         return 0;
1787 }
1788
1789 unsigned int ieee80211_get_num_supported_channels(struct wiphy *wiphy)
1790 {
1791         enum ieee80211_band band;
1792         unsigned int n_channels = 0;
1793
1794         for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1795                 if (wiphy->bands[band])
1796                         n_channels += wiphy->bands[band]->n_channels;
1797
1798         return n_channels;
1799 }
1800 EXPORT_SYMBOL(ieee80211_get_num_supported_channels);
1801
1802 int cfg80211_get_station(struct net_device *dev, const u8 *mac_addr,
1803                          struct station_info *sinfo)
1804 {
1805         struct cfg80211_registered_device *rdev;
1806         struct wireless_dev *wdev;
1807
1808         wdev = dev->ieee80211_ptr;
1809         if (!wdev)
1810                 return -EOPNOTSUPP;
1811
1812         rdev = wiphy_to_rdev(wdev->wiphy);
1813         if (!rdev->ops->get_station)
1814                 return -EOPNOTSUPP;
1815
1816         return rdev_get_station(rdev, dev, mac_addr, sinfo);
1817 }
1818 EXPORT_SYMBOL(cfg80211_get_station);
1819
1820 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
1821 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
1822 const unsigned char rfc1042_header[] __aligned(2) =
1823         { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1824 EXPORT_SYMBOL(rfc1042_header);
1825
1826 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
1827 const unsigned char bridge_tunnel_header[] __aligned(2) =
1828         { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
1829 EXPORT_SYMBOL(bridge_tunnel_header);
1830
1831 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
1832 struct iapp_layer2_update {
1833         u8 da[ETH_ALEN];        /* broadcast */
1834         u8 sa[ETH_ALEN];        /* STA addr */
1835         __be16 len;             /* 6 */
1836         u8 dsap;                /* 0 */
1837         u8 ssap;                /* 0 */
1838         u8 control;
1839         u8 xid_info[3];
1840 } __packed;
1841
1842 void cfg80211_send_layer2_update(struct net_device *dev, const u8 *addr)
1843 {
1844         struct iapp_layer2_update *msg;
1845         struct sk_buff *skb;
1846
1847         /* Send Level 2 Update Frame to update forwarding tables in layer 2
1848          * bridge devices */
1849
1850         skb = dev_alloc_skb(sizeof(*msg));
1851         if (!skb)
1852                 return;
1853         msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
1854
1855         /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1856          * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1857
1858         eth_broadcast_addr(msg->da);
1859         ether_addr_copy(msg->sa, addr);
1860         msg->len = htons(6);
1861         msg->dsap = 0;
1862         msg->ssap = 0x01;       /* NULL LSAP, CR Bit: Response */
1863         msg->control = 0xaf;    /* XID response lsb.1111F101.
1864                                  * F=0 (no poll command; unsolicited frame) */
1865         msg->xid_info[0] = 0x81;        /* XID format identifier */
1866         msg->xid_info[1] = 1;   /* LLC types/classes: Type 1 LLC */
1867         msg->xid_info[2] = 0;   /* XID sender's receive window size (RW) */
1868
1869         skb->dev = dev;
1870         skb->protocol = eth_type_trans(skb, dev);
1871         memset(skb->cb, 0, sizeof(skb->cb));
1872         netif_rx_ni(skb);
1873 }
1874 EXPORT_SYMBOL(cfg80211_send_layer2_update);