blob: 60ee74c236ea1ff9cd08ff66fef1ae828eb9bcaf [file] [log] [blame]
Johannes Berg8318d782008-01-24 19:38:38 +01001/*
2 * Wireless utility functions
3 *
Johannes Bergd3236552009-04-20 14:31:42 +02004 * Copyright 2007-2009 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg2740f0c2014-09-03 15:24:58 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berg8318d782008-01-24 19:38:38 +01006 */
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -04007#include <linux/export.h>
Johannes Bergd3236552009-04-20 14:31:42 +02008#include <linux/bitops.h>
Zhu Yie31a16d2009-05-21 21:47:03 +08009#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Johannes Bergd3236552009-04-20 14:31:42 +020011#include <net/cfg80211.h>
Zhu Yie31a16d2009-05-21 21:47:03 +080012#include <net/ip.h>
Dave Tähtb1565792011-12-22 12:55:08 -080013#include <net/dsfield.h>
cedric Vonckenc6ca5e22013-08-26 14:04:52 +020014#include <linux/if_vlan.h>
Simon Wunderlich960d97f2014-03-03 17:23:12 +010015#include <linux/mpls.h>
Johannes Berg7c62e272014-02-25 15:04:46 -080016#include <net/ndisc.h>
17#include <linux/if_arp.h>
Johannes Berg8318d782008-01-24 19:38:38 +010018#include "core.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030019#include "rdev-ops.h"
20
Johannes Berg8318d782008-01-24 19:38:38 +010021
Johannes Bergbd815252008-10-29 20:00:45 +010022struct ieee80211_rate *
23ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
Johannes Berg881d9482009-01-21 15:13:48 +010024 u32 basic_rates, int bitrate)
Johannes Bergbd815252008-10-29 20:00:45 +010025{
26 struct ieee80211_rate *result = &sband->bitrates[0];
27 int i;
28
29 for (i = 0; i < sband->n_bitrates; i++) {
30 if (!(basic_rates & BIT(i)))
31 continue;
32 if (sband->bitrates[i].bitrate > bitrate)
33 continue;
34 result = &sband->bitrates[i];
35 }
36
37 return result;
38}
39EXPORT_SYMBOL(ieee80211_get_response_rate);
40
Simon Wunderlich74608ac2013-07-08 16:55:54 +020041u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband,
42 enum nl80211_bss_scan_width scan_width)
Ashok Nagarajanb422c6c2013-05-10 17:50:51 -070043{
44 struct ieee80211_rate *bitrates;
45 u32 mandatory_rates = 0;
46 enum ieee80211_rate_flags mandatory_flag;
47 int i;
48
49 if (WARN_ON(!sband))
50 return 1;
51
Johannes Berg57fbcce2016-04-12 15:56:15 +020052 if (sband->band == NL80211_BAND_2GHZ) {
Simon Wunderlich74608ac2013-07-08 16:55:54 +020053 if (scan_width == NL80211_BSS_CHAN_WIDTH_5 ||
54 scan_width == NL80211_BSS_CHAN_WIDTH_10)
55 mandatory_flag = IEEE80211_RATE_MANDATORY_G;
56 else
57 mandatory_flag = IEEE80211_RATE_MANDATORY_B;
58 } else {
Ashok Nagarajanb422c6c2013-05-10 17:50:51 -070059 mandatory_flag = IEEE80211_RATE_MANDATORY_A;
Simon Wunderlich74608ac2013-07-08 16:55:54 +020060 }
Ashok Nagarajanb422c6c2013-05-10 17:50:51 -070061
62 bitrates = sband->bitrates;
63 for (i = 0; i < sband->n_bitrates; i++)
64 if (bitrates[i].flags & mandatory_flag)
65 mandatory_rates |= BIT(i);
66 return mandatory_rates;
67}
68EXPORT_SYMBOL(ieee80211_mandatory_rates);
69
Johannes Berg57fbcce2016-04-12 15:56:15 +020070int ieee80211_channel_to_frequency(int chan, enum nl80211_band band)
Johannes Berg8318d782008-01-24 19:38:38 +010071{
Bruno Randolf59eb21a2011-01-17 13:37:28 +090072 /* see 802.11 17.3.8.3.2 and Annex J
73 * there are overlapping channel numbers in 5GHz and 2GHz bands */
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +030074 if (chan <= 0)
75 return 0; /* not supported */
76 switch (band) {
Johannes Berg57fbcce2016-04-12 15:56:15 +020077 case NL80211_BAND_2GHZ:
Bruno Randolf59eb21a2011-01-17 13:37:28 +090078 if (chan == 14)
79 return 2484;
80 else if (chan < 14)
81 return 2407 + chan * 5;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +030082 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +020083 case NL80211_BAND_5GHZ:
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +030084 if (chan >= 182 && chan <= 196)
85 return 4000 + chan * 5;
Bruno Randolf59eb21a2011-01-17 13:37:28 +090086 else
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +030087 return 5000 + chan * 5;
88 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +020089 case NL80211_BAND_60GHZ:
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +030090 if (chan < 5)
91 return 56160 + chan * 2160;
92 break;
93 default:
94 ;
Bruno Randolf59eb21a2011-01-17 13:37:28 +090095 }
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +030096 return 0; /* not supported */
Johannes Berg8318d782008-01-24 19:38:38 +010097}
98EXPORT_SYMBOL(ieee80211_channel_to_frequency);
99
100int ieee80211_frequency_to_channel(int freq)
101{
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900102 /* see 802.11 17.3.8.3.2 and Annex J */
Johannes Berg8318d782008-01-24 19:38:38 +0100103 if (freq == 2484)
104 return 14;
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900105 else if (freq < 2484)
Johannes Berg8318d782008-01-24 19:38:38 +0100106 return (freq - 2407) / 5;
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900107 else if (freq >= 4910 && freq <= 4980)
108 return (freq - 4000) / 5;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300109 else if (freq <= 45000) /* DMG band lower limit */
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900110 return (freq - 5000) / 5;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300111 else if (freq >= 58320 && freq <= 64800)
112 return (freq - 56160) / 2160;
113 else
114 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100115}
116EXPORT_SYMBOL(ieee80211_frequency_to_channel);
117
Johannes Berg6c507cd2008-03-26 14:14:55 +0100118struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
119 int freq)
Johannes Berg906c7302008-03-16 18:34:33 +0100120{
Johannes Berg57fbcce2016-04-12 15:56:15 +0200121 enum nl80211_band band;
Johannes Berg906c7302008-03-16 18:34:33 +0100122 struct ieee80211_supported_band *sband;
123 int i;
124
Johannes Berg57fbcce2016-04-12 15:56:15 +0200125 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Johannes Berg906c7302008-03-16 18:34:33 +0100126 sband = wiphy->bands[band];
127
128 if (!sband)
129 continue;
130
131 for (i = 0; i < sband->n_channels; i++) {
132 if (sband->channels[i].center_freq == freq)
133 return &sband->channels[i];
134 }
135 }
136
137 return NULL;
138}
Johannes Berg6c507cd2008-03-26 14:14:55 +0100139EXPORT_SYMBOL(__ieee80211_get_channel);
Johannes Berg906c7302008-03-16 18:34:33 +0100140
Johannes Berg8318d782008-01-24 19:38:38 +0100141static void set_mandatory_flags_band(struct ieee80211_supported_band *sband,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200142 enum nl80211_band band)
Johannes Berg8318d782008-01-24 19:38:38 +0100143{
144 int i, want;
145
146 switch (band) {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200147 case NL80211_BAND_5GHZ:
Johannes Berg8318d782008-01-24 19:38:38 +0100148 want = 3;
149 for (i = 0; i < sband->n_bitrates; i++) {
150 if (sband->bitrates[i].bitrate == 60 ||
151 sband->bitrates[i].bitrate == 120 ||
152 sband->bitrates[i].bitrate == 240) {
153 sband->bitrates[i].flags |=
154 IEEE80211_RATE_MANDATORY_A;
155 want--;
156 }
157 }
158 WARN_ON(want);
159 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200160 case NL80211_BAND_2GHZ:
Johannes Berg8318d782008-01-24 19:38:38 +0100161 want = 7;
162 for (i = 0; i < sband->n_bitrates; i++) {
163 if (sband->bitrates[i].bitrate == 10) {
164 sband->bitrates[i].flags |=
165 IEEE80211_RATE_MANDATORY_B |
166 IEEE80211_RATE_MANDATORY_G;
167 want--;
168 }
169
170 if (sband->bitrates[i].bitrate == 20 ||
171 sband->bitrates[i].bitrate == 55 ||
172 sband->bitrates[i].bitrate == 110 ||
173 sband->bitrates[i].bitrate == 60 ||
174 sband->bitrates[i].bitrate == 120 ||
175 sband->bitrates[i].bitrate == 240) {
176 sband->bitrates[i].flags |=
177 IEEE80211_RATE_MANDATORY_G;
178 want--;
179 }
180
Johannes Bergaac09fb2008-01-30 17:36:10 +0100181 if (sband->bitrates[i].bitrate != 10 &&
182 sband->bitrates[i].bitrate != 20 &&
183 sband->bitrates[i].bitrate != 55 &&
184 sband->bitrates[i].bitrate != 110)
Johannes Berg8318d782008-01-24 19:38:38 +0100185 sband->bitrates[i].flags |=
186 IEEE80211_RATE_ERP_G;
187 }
Ivo van Doorn406f2382008-02-02 23:53:10 +0100188 WARN_ON(want != 0 && want != 3 && want != 6);
Johannes Berg8318d782008-01-24 19:38:38 +0100189 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200190 case NL80211_BAND_60GHZ:
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300191 /* check for mandatory HT MCS 1..4 */
192 WARN_ON(!sband->ht_cap.ht_supported);
193 WARN_ON((sband->ht_cap.mcs.rx_mask[0] & 0x1e) != 0x1e);
194 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200195 case NUM_NL80211_BANDS:
Johannes Berg8318d782008-01-24 19:38:38 +0100196 WARN_ON(1);
197 break;
198 }
199}
200
201void ieee80211_set_bitrate_flags(struct wiphy *wiphy)
202{
Johannes Berg57fbcce2016-04-12 15:56:15 +0200203 enum nl80211_band band;
Johannes Berg8318d782008-01-24 19:38:38 +0100204
Johannes Berg57fbcce2016-04-12 15:56:15 +0200205 for (band = 0; band < NUM_NL80211_BANDS; band++)
Johannes Berg8318d782008-01-24 19:38:38 +0100206 if (wiphy->bands[band])
207 set_mandatory_flags_band(wiphy->bands[band], band);
208}
Johannes Berg08645122009-05-11 13:54:58 +0200209
Jouni Malinen38ba3c52011-09-21 18:14:56 +0300210bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher)
211{
212 int i;
213 for (i = 0; i < wiphy->n_cipher_suites; i++)
214 if (cipher == wiphy->cipher_suites[i])
215 return true;
216 return false;
217}
218
Johannes Bergfffd0932009-07-08 14:22:54 +0200219int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev,
220 struct key_params *params, int key_idx,
Johannes Berge31b8212010-10-05 19:39:30 +0200221 bool pairwise, const u8 *mac_addr)
Johannes Berg08645122009-05-11 13:54:58 +0200222{
Johannes Berge9c8f8d2016-09-13 16:37:40 +0200223 if (key_idx < 0 || key_idx > 5)
Johannes Berg08645122009-05-11 13:54:58 +0200224 return -EINVAL;
225
Johannes Berge31b8212010-10-05 19:39:30 +0200226 if (!pairwise && mac_addr && !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
227 return -EINVAL;
228
229 if (pairwise && !mac_addr)
230 return -EINVAL;
231
Jouni Malinen37720562015-01-24 19:52:04 +0200232 switch (params->cipher) {
233 case WLAN_CIPHER_SUITE_TKIP:
234 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinencfcf1682015-01-24 19:52:05 +0200235 case WLAN_CIPHER_SUITE_CCMP_256:
236 case WLAN_CIPHER_SUITE_GCMP:
237 case WLAN_CIPHER_SUITE_GCMP_256:
Jouni Malinen37720562015-01-24 19:52:04 +0200238 /* Disallow pairwise keys with non-zero index unless it's WEP
239 * or a vendor specific cipher (because current deployments use
240 * pairwise WEP keys with non-zero indices and for vendor
241 * specific ciphers this should be validated in the driver or
242 * hardware level - but 802.11i clearly specifies to use zero)
243 */
244 if (pairwise && key_idx)
245 return -EINVAL;
246 break;
247 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinencfcf1682015-01-24 19:52:05 +0200248 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
249 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
250 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Jouni Malinen37720562015-01-24 19:52:04 +0200251 /* Disallow BIP (group-only) cipher as pairwise cipher */
252 if (pairwise)
253 return -EINVAL;
Johannes Berge9c8f8d2016-09-13 16:37:40 +0200254 if (key_idx < 4)
255 return -EINVAL;
Jouni Malinen37720562015-01-24 19:52:04 +0200256 break;
Johannes Berge9c8f8d2016-09-13 16:37:40 +0200257 case WLAN_CIPHER_SUITE_WEP40:
258 case WLAN_CIPHER_SUITE_WEP104:
259 if (key_idx > 3)
260 return -EINVAL;
Jouni Malinen37720562015-01-24 19:52:04 +0200261 default:
262 break;
263 }
Johannes Berg08645122009-05-11 13:54:58 +0200264
Johannes Berg08645122009-05-11 13:54:58 +0200265 switch (params->cipher) {
266 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berg8fc0fee2009-05-24 16:57:19 +0200267 if (params->key_len != WLAN_KEY_LEN_WEP40)
Johannes Berg08645122009-05-11 13:54:58 +0200268 return -EINVAL;
269 break;
270 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg8fc0fee2009-05-24 16:57:19 +0200271 if (params->key_len != WLAN_KEY_LEN_TKIP)
Johannes Berg08645122009-05-11 13:54:58 +0200272 return -EINVAL;
273 break;
274 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg8fc0fee2009-05-24 16:57:19 +0200275 if (params->key_len != WLAN_KEY_LEN_CCMP)
Johannes Berg08645122009-05-11 13:54:58 +0200276 return -EINVAL;
277 break;
Jouni Malinencfcf1682015-01-24 19:52:05 +0200278 case WLAN_CIPHER_SUITE_CCMP_256:
279 if (params->key_len != WLAN_KEY_LEN_CCMP_256)
280 return -EINVAL;
281 break;
282 case WLAN_CIPHER_SUITE_GCMP:
283 if (params->key_len != WLAN_KEY_LEN_GCMP)
284 return -EINVAL;
285 break;
286 case WLAN_CIPHER_SUITE_GCMP_256:
287 if (params->key_len != WLAN_KEY_LEN_GCMP_256)
288 return -EINVAL;
289 break;
Johannes Berg08645122009-05-11 13:54:58 +0200290 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg8fc0fee2009-05-24 16:57:19 +0200291 if (params->key_len != WLAN_KEY_LEN_WEP104)
Johannes Berg08645122009-05-11 13:54:58 +0200292 return -EINVAL;
293 break;
294 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg8fc0fee2009-05-24 16:57:19 +0200295 if (params->key_len != WLAN_KEY_LEN_AES_CMAC)
Johannes Berg08645122009-05-11 13:54:58 +0200296 return -EINVAL;
297 break;
Jouni Malinencfcf1682015-01-24 19:52:05 +0200298 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
299 if (params->key_len != WLAN_KEY_LEN_BIP_CMAC_256)
300 return -EINVAL;
301 break;
302 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
303 if (params->key_len != WLAN_KEY_LEN_BIP_GMAC_128)
304 return -EINVAL;
305 break;
306 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
307 if (params->key_len != WLAN_KEY_LEN_BIP_GMAC_256)
308 return -EINVAL;
309 break;
Johannes Berg08645122009-05-11 13:54:58 +0200310 default:
Johannes Berg7d64b7c2010-08-27 14:26:51 +0300311 /*
312 * We don't know anything about this algorithm,
313 * allow using it -- but the driver must check
314 * all parameters! We still check below whether
315 * or not the driver supports this algorithm,
316 * of course.
317 */
318 break;
Johannes Berg08645122009-05-11 13:54:58 +0200319 }
320
Jouni Malinen9f26a952009-05-15 12:38:32 +0300321 if (params->seq) {
322 switch (params->cipher) {
323 case WLAN_CIPHER_SUITE_WEP40:
324 case WLAN_CIPHER_SUITE_WEP104:
325 /* These ciphers do not use key sequence */
326 return -EINVAL;
327 case WLAN_CIPHER_SUITE_TKIP:
328 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinencfcf1682015-01-24 19:52:05 +0200329 case WLAN_CIPHER_SUITE_CCMP_256:
330 case WLAN_CIPHER_SUITE_GCMP:
331 case WLAN_CIPHER_SUITE_GCMP_256:
Jouni Malinen9f26a952009-05-15 12:38:32 +0300332 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinencfcf1682015-01-24 19:52:05 +0200333 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
334 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
335 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Jouni Malinen9f26a952009-05-15 12:38:32 +0300336 if (params->seq_len != 6)
337 return -EINVAL;
338 break;
339 }
340 }
341
Jouni Malinen38ba3c52011-09-21 18:14:56 +0300342 if (!cfg80211_supported_cipher_suite(&rdev->wiphy, params->cipher))
Johannes Bergfffd0932009-07-08 14:22:54 +0200343 return -EINVAL;
344
Johannes Berg08645122009-05-11 13:54:58 +0200345 return 0;
346}
Zhu Yie31a16d2009-05-21 21:47:03 +0800347
Johannes Berg633adf12010-08-12 14:49:58 +0200348unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc)
Zhu Yie31a16d2009-05-21 21:47:03 +0800349{
350 unsigned int hdrlen = 24;
351
352 if (ieee80211_is_data(fc)) {
353 if (ieee80211_has_a4(fc))
354 hdrlen = 30;
Andriy Tkachukd0dd2de2010-01-20 13:55:06 +0200355 if (ieee80211_is_data_qos(fc)) {
Zhu Yie31a16d2009-05-21 21:47:03 +0800356 hdrlen += IEEE80211_QOS_CTL_LEN;
Andriy Tkachukd0dd2de2010-01-20 13:55:06 +0200357 if (ieee80211_has_order(fc))
358 hdrlen += IEEE80211_HT_CTL_LEN;
359 }
Zhu Yie31a16d2009-05-21 21:47:03 +0800360 goto out;
361 }
362
Fred Choufb142f42015-01-20 10:17:27 +0800363 if (ieee80211_is_mgmt(fc)) {
364 if (ieee80211_has_order(fc))
365 hdrlen += IEEE80211_HT_CTL_LEN;
366 goto out;
367 }
368
Zhu Yie31a16d2009-05-21 21:47:03 +0800369 if (ieee80211_is_ctl(fc)) {
370 /*
371 * ACK and CTS are 10 bytes, all others 16. To see how
372 * to get this condition consider
373 * subtype mask: 0b0000000011110000 (0x00F0)
374 * ACK subtype: 0b0000000011010000 (0x00D0)
375 * CTS subtype: 0b0000000011000000 (0x00C0)
376 * bits that matter: ^^^ (0x00E0)
377 * value of those: 0b0000000011000000 (0x00C0)
378 */
379 if ((fc & cpu_to_le16(0x00E0)) == cpu_to_le16(0x00C0))
380 hdrlen = 10;
381 else
382 hdrlen = 16;
383 }
384out:
385 return hdrlen;
386}
387EXPORT_SYMBOL(ieee80211_hdrlen);
388
389unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb)
390{
391 const struct ieee80211_hdr *hdr =
392 (const struct ieee80211_hdr *)skb->data;
393 unsigned int hdrlen;
394
395 if (unlikely(skb->len < 10))
396 return 0;
397 hdrlen = ieee80211_hdrlen(hdr->frame_control);
398 if (unlikely(hdrlen > skb->len))
399 return 0;
400 return hdrlen;
401}
402EXPORT_SYMBOL(ieee80211_get_hdrlen_from_skb);
403
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100404static unsigned int __ieee80211_get_mesh_hdrlen(u8 flags)
Zhu Yie31a16d2009-05-21 21:47:03 +0800405{
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100406 int ae = flags & MESH_FLAGS_AE;
Johannes Berg7dd111e2012-10-25 21:51:59 +0200407 /* 802.11-2012, 8.2.4.7.3 */
Zhu Yie31a16d2009-05-21 21:47:03 +0800408 switch (ae) {
Johannes Berg7dd111e2012-10-25 21:51:59 +0200409 default:
Zhu Yie31a16d2009-05-21 21:47:03 +0800410 case 0:
411 return 6;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700412 case MESH_FLAGS_AE_A4:
Zhu Yie31a16d2009-05-21 21:47:03 +0800413 return 12;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700414 case MESH_FLAGS_AE_A5_A6:
Zhu Yie31a16d2009-05-21 21:47:03 +0800415 return 18;
Zhu Yie31a16d2009-05-21 21:47:03 +0800416 }
417}
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100418
419unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr)
420{
421 return __ieee80211_get_mesh_hdrlen(meshhdr->flags);
422}
Johannes Berg9b395bc2012-10-26 00:36:40 +0200423EXPORT_SYMBOL(ieee80211_get_mesh_hdrlen);
Zhu Yie31a16d2009-05-21 21:47:03 +0800424
Johannes Berg7f6990c2016-10-05 15:29:49 +0200425int ieee80211_data_to_8023_exthdr(struct sk_buff *skb, struct ethhdr *ehdr,
426 const u8 *addr, enum nl80211_iftype iftype)
Zhu Yie31a16d2009-05-21 21:47:03 +0800427{
428 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100429 struct {
430 u8 hdr[ETH_ALEN] __aligned(2);
431 __be16 proto;
432 } payload;
433 struct ethhdr tmp;
434 u16 hdrlen;
435 u8 mesh_flags = 0;
Zhu Yie31a16d2009-05-21 21:47:03 +0800436
437 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
438 return -1;
439
440 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100441 if (skb->len < hdrlen + 8)
442 return -1;
Zhu Yie31a16d2009-05-21 21:47:03 +0800443
444 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
445 * header
446 * IEEE 802.11 address fields:
447 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
448 * 0 0 DA SA BSSID n/a
449 * 0 1 DA BSSID SA n/a
450 * 1 0 BSSID SA DA n/a
451 * 1 1 RA TA DA SA
452 */
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100453 memcpy(tmp.h_dest, ieee80211_get_DA(hdr), ETH_ALEN);
454 memcpy(tmp.h_source, ieee80211_get_SA(hdr), ETH_ALEN);
455
456 if (iftype == NL80211_IFTYPE_MESH_POINT)
457 skb_copy_bits(skb, hdrlen, &mesh_flags, 1);
Zhu Yie31a16d2009-05-21 21:47:03 +0800458
459 switch (hdr->frame_control &
460 cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
461 case cpu_to_le16(IEEE80211_FCTL_TODS):
462 if (unlikely(iftype != NL80211_IFTYPE_AP &&
Johannes Berg074ac8d2010-09-16 14:58:22 +0200463 iftype != NL80211_IFTYPE_AP_VLAN &&
464 iftype != NL80211_IFTYPE_P2P_GO))
Zhu Yie31a16d2009-05-21 21:47:03 +0800465 return -1;
466 break;
467 case cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
468 if (unlikely(iftype != NL80211_IFTYPE_WDS &&
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100469 iftype != NL80211_IFTYPE_MESH_POINT &&
470 iftype != NL80211_IFTYPE_AP_VLAN &&
471 iftype != NL80211_IFTYPE_STATION))
Zhu Yie31a16d2009-05-21 21:47:03 +0800472 return -1;
473 if (iftype == NL80211_IFTYPE_MESH_POINT) {
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100474 if (mesh_flags & MESH_FLAGS_AE_A4)
Zhu Yie3cf8b32010-03-29 17:35:07 +0800475 return -1;
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100476 if (mesh_flags & MESH_FLAGS_AE_A5_A6) {
Zhu Yie3cf8b32010-03-29 17:35:07 +0800477 skb_copy_bits(skb, hdrlen +
478 offsetof(struct ieee80211s_hdr, eaddr1),
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100479 tmp.h_dest, 2 * ETH_ALEN);
Zhu Yie31a16d2009-05-21 21:47:03 +0800480 }
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100481 hdrlen += __ieee80211_get_mesh_hdrlen(mesh_flags);
Zhu Yie31a16d2009-05-21 21:47:03 +0800482 }
483 break;
484 case cpu_to_le16(IEEE80211_FCTL_FROMDS):
Javier Cardona3c5772a2009-08-10 12:15:48 -0700485 if ((iftype != NL80211_IFTYPE_STATION &&
Johannes Berg074ac8d2010-09-16 14:58:22 +0200486 iftype != NL80211_IFTYPE_P2P_CLIENT &&
487 iftype != NL80211_IFTYPE_MESH_POINT) ||
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100488 (is_multicast_ether_addr(tmp.h_dest) &&
489 ether_addr_equal(tmp.h_source, addr)))
Zhu Yie31a16d2009-05-21 21:47:03 +0800490 return -1;
Javier Cardona3c5772a2009-08-10 12:15:48 -0700491 if (iftype == NL80211_IFTYPE_MESH_POINT) {
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100492 if (mesh_flags & MESH_FLAGS_AE_A5_A6)
Zhu Yie3cf8b32010-03-29 17:35:07 +0800493 return -1;
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100494 if (mesh_flags & MESH_FLAGS_AE_A4)
Zhu Yie3cf8b32010-03-29 17:35:07 +0800495 skb_copy_bits(skb, hdrlen +
496 offsetof(struct ieee80211s_hdr, eaddr1),
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100497 tmp.h_source, ETH_ALEN);
498 hdrlen += __ieee80211_get_mesh_hdrlen(mesh_flags);
Javier Cardona3c5772a2009-08-10 12:15:48 -0700499 }
Zhu Yie31a16d2009-05-21 21:47:03 +0800500 break;
501 case cpu_to_le16(0):
Arik Nemtsov941c93c2011-09-28 14:12:54 +0300502 if (iftype != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100503 iftype != NL80211_IFTYPE_STATION &&
504 iftype != NL80211_IFTYPE_OCB)
Arik Nemtsov941c93c2011-09-28 14:12:54 +0300505 return -1;
Zhu Yie31a16d2009-05-21 21:47:03 +0800506 break;
507 }
508
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100509 skb_copy_bits(skb, hdrlen, &payload, sizeof(payload));
510 tmp.h_proto = payload.proto;
Zhu Yie31a16d2009-05-21 21:47:03 +0800511
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100512 if (likely((ether_addr_equal(payload.hdr, rfc1042_header) &&
513 tmp.h_proto != htons(ETH_P_AARP) &&
514 tmp.h_proto != htons(ETH_P_IPX)) ||
515 ether_addr_equal(payload.hdr, bridge_tunnel_header)))
Zhu Yie31a16d2009-05-21 21:47:03 +0800516 /* remove RFC1042 or Bridge-Tunnel encapsulation and
517 * replace EtherType */
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100518 hdrlen += ETH_ALEN + 2;
519 else
Felix Fietkauc0417782016-06-29 10:36:39 +0200520 tmp.h_proto = htons(skb->len - hdrlen);
Zhu Yie31a16d2009-05-21 21:47:03 +0800521
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100522 pskb_pull(skb, hdrlen);
523
524 if (!ehdr)
Zhu Yie31a16d2009-05-21 21:47:03 +0800525 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
Felix Fietkau2d1c3042016-02-02 14:39:09 +0100526 memcpy(ehdr, &tmp, sizeof(tmp));
527
Zhu Yie31a16d2009-05-21 21:47:03 +0800528 return 0;
529}
Johannes Berg7f6990c2016-10-05 15:29:49 +0200530EXPORT_SYMBOL(ieee80211_data_to_8023_exthdr);
Zhu Yie31a16d2009-05-21 21:47:03 +0800531
Zhu Yieaf85ca2009-12-01 10:18:37 +0800532int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
Johannes Bergc1e5f472014-05-19 17:53:16 +0200533 enum nl80211_iftype iftype,
534 const u8 *bssid, bool qos)
Zhu Yie31a16d2009-05-21 21:47:03 +0800535{
536 struct ieee80211_hdr hdr;
537 u16 hdrlen, ethertype;
538 __le16 fc;
539 const u8 *encaps_data;
540 int encaps_len, skip_header_bytes;
541 int nh_pos, h_pos;
542 int head_need;
543
544 if (unlikely(skb->len < ETH_HLEN))
545 return -EINVAL;
546
547 nh_pos = skb_network_header(skb) - skb->data;
548 h_pos = skb_transport_header(skb) - skb->data;
549
550 /* convert Ethernet header to proper 802.11 header (based on
551 * operation mode) */
552 ethertype = (skb->data[12] << 8) | skb->data[13];
553 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
554
555 switch (iftype) {
556 case NL80211_IFTYPE_AP:
557 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200558 case NL80211_IFTYPE_P2P_GO:
Zhu Yie31a16d2009-05-21 21:47:03 +0800559 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
560 /* DA BSSID SA */
561 memcpy(hdr.addr1, skb->data, ETH_ALEN);
562 memcpy(hdr.addr2, addr, ETH_ALEN);
563 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
564 hdrlen = 24;
565 break;
566 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200567 case NL80211_IFTYPE_P2P_CLIENT:
Zhu Yie31a16d2009-05-21 21:47:03 +0800568 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
569 /* BSSID SA DA */
570 memcpy(hdr.addr1, bssid, ETH_ALEN);
571 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
572 memcpy(hdr.addr3, skb->data, ETH_ALEN);
573 hdrlen = 24;
574 break;
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100575 case NL80211_IFTYPE_OCB:
Zhu Yie31a16d2009-05-21 21:47:03 +0800576 case NL80211_IFTYPE_ADHOC:
577 /* DA SA BSSID */
578 memcpy(hdr.addr1, skb->data, ETH_ALEN);
579 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
580 memcpy(hdr.addr3, bssid, ETH_ALEN);
581 hdrlen = 24;
582 break;
583 default:
584 return -EOPNOTSUPP;
585 }
586
587 if (qos) {
588 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
589 hdrlen += 2;
590 }
591
592 hdr.frame_control = fc;
593 hdr.duration_id = 0;
594 hdr.seq_ctrl = 0;
595
596 skip_header_bytes = ETH_HLEN;
597 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
598 encaps_data = bridge_tunnel_header;
599 encaps_len = sizeof(bridge_tunnel_header);
600 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +0900601 } else if (ethertype >= ETH_P_802_3_MIN) {
Zhu Yie31a16d2009-05-21 21:47:03 +0800602 encaps_data = rfc1042_header;
603 encaps_len = sizeof(rfc1042_header);
604 skip_header_bytes -= 2;
605 } else {
606 encaps_data = NULL;
607 encaps_len = 0;
608 }
609
610 skb_pull(skb, skip_header_bytes);
611 nh_pos -= skip_header_bytes;
612 h_pos -= skip_header_bytes;
613
614 head_need = hdrlen + encaps_len - skb_headroom(skb);
615
616 if (head_need > 0 || skb_cloned(skb)) {
617 head_need = max(head_need, 0);
618 if (head_need)
619 skb_orphan(skb);
620
Joe Perches24616152011-08-29 14:17:41 -0700621 if (pskb_expand_head(skb, head_need, 0, GFP_ATOMIC))
Zhu Yie31a16d2009-05-21 21:47:03 +0800622 return -ENOMEM;
Joe Perches24616152011-08-29 14:17:41 -0700623
Zhu Yie31a16d2009-05-21 21:47:03 +0800624 skb->truesize += head_need;
625 }
626
627 if (encaps_data) {
628 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
629 nh_pos += encaps_len;
630 h_pos += encaps_len;
631 }
632
633 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
634
635 nh_pos += hdrlen;
636 h_pos += hdrlen;
637
638 /* Update skb pointers to various headers since this modified frame
639 * is going to go through Linux networking code that may potentially
640 * need things like pointer to IP header. */
Zhang Shengju3ef523a2016-03-03 01:16:57 +0000641 skb_reset_mac_header(skb);
Zhu Yie31a16d2009-05-21 21:47:03 +0800642 skb_set_network_header(skb, nh_pos);
643 skb_set_transport_header(skb, h_pos);
644
645 return 0;
646}
647EXPORT_SYMBOL(ieee80211_data_from_8023);
648
Felix Fietkau2b67f942016-02-08 14:34:42 +0100649static void
650__frame_add_frag(struct sk_buff *skb, struct page *page,
651 void *ptr, int len, int size)
652{
653 struct skb_shared_info *sh = skb_shinfo(skb);
654 int page_offset;
655
Joonsoo Kim6d061f92016-05-19 17:10:46 -0700656 page_ref_inc(page);
Felix Fietkau2b67f942016-02-08 14:34:42 +0100657 page_offset = ptr - page_address(page);
658 skb_add_rx_frag(skb, sh->nr_frags, page, page_offset, len, size);
659}
660
661static void
662__ieee80211_amsdu_copy_frag(struct sk_buff *skb, struct sk_buff *frame,
663 int offset, int len)
664{
665 struct skb_shared_info *sh = skb_shinfo(skb);
666 const skb_frag_t *frag = &sh->frags[-1];
667 struct page *frag_page;
668 void *frag_ptr;
669 int frag_len, frag_size;
670 int head_size = skb->len - skb->data_len;
671 int cur_len;
672
673 frag_page = virt_to_head_page(skb->head);
674 frag_ptr = skb->data;
675 frag_size = head_size;
676
677 while (offset >= frag_size) {
678 offset -= frag_size;
679 frag++;
680 frag_page = skb_frag_page(frag);
681 frag_ptr = skb_frag_address(frag);
682 frag_size = skb_frag_size(frag);
683 }
684
685 frag_ptr += offset;
686 frag_len = frag_size - offset;
687
688 cur_len = min(len, frag_len);
689
690 __frame_add_frag(frame, frag_page, frag_ptr, cur_len, frag_size);
691 len -= cur_len;
692
693 while (len > 0) {
694 frag++;
695 frag_len = skb_frag_size(frag);
696 cur_len = min(len, frag_len);
697 __frame_add_frag(frame, skb_frag_page(frag),
698 skb_frag_address(frag), cur_len, frag_len);
699 len -= cur_len;
700 }
701}
702
Felix Fietkau230fd282016-02-02 14:39:10 +0100703static struct sk_buff *
704__ieee80211_amsdu_copy(struct sk_buff *skb, unsigned int hlen,
Felix Fietkau2b67f942016-02-08 14:34:42 +0100705 int offset, int len, bool reuse_frag)
Felix Fietkau230fd282016-02-02 14:39:10 +0100706{
707 struct sk_buff *frame;
Felix Fietkau2b67f942016-02-08 14:34:42 +0100708 int cur_len = len;
Felix Fietkau230fd282016-02-02 14:39:10 +0100709
710 if (skb->len - offset < len)
711 return NULL;
712
713 /*
Felix Fietkau2b67f942016-02-08 14:34:42 +0100714 * When reusing framents, copy some data to the head to simplify
715 * ethernet header handling and speed up protocol header processing
716 * in the stack later.
717 */
718 if (reuse_frag)
719 cur_len = min_t(int, len, 32);
720
721 /*
Felix Fietkau230fd282016-02-02 14:39:10 +0100722 * Allocate and reserve two bytes more for payload
723 * alignment since sizeof(struct ethhdr) is 14.
724 */
Felix Fietkau2b67f942016-02-08 14:34:42 +0100725 frame = dev_alloc_skb(hlen + sizeof(struct ethhdr) + 2 + cur_len);
Gregory Greenman16a910a2016-07-05 15:23:10 +0300726 if (!frame)
727 return NULL;
Felix Fietkau230fd282016-02-02 14:39:10 +0100728
729 skb_reserve(frame, hlen + sizeof(struct ethhdr) + 2);
Felix Fietkau2b67f942016-02-08 14:34:42 +0100730 skb_copy_bits(skb, offset, skb_put(frame, cur_len), cur_len);
731
732 len -= cur_len;
733 if (!len)
734 return frame;
735
736 offset += cur_len;
737 __ieee80211_amsdu_copy_frag(skb, frame, offset, len);
Felix Fietkau230fd282016-02-02 14:39:10 +0100738
739 return frame;
740}
Zhu Yieaf85ca2009-12-01 10:18:37 +0800741
742void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
743 const u8 *addr, enum nl80211_iftype iftype,
Johannes Berg8b935ee2016-10-05 16:17:01 +0200744 const unsigned int extra_headroom,
745 const u8 *check_da, const u8 *check_sa)
Zhu Yieaf85ca2009-12-01 10:18:37 +0800746{
Felix Fietkau230fd282016-02-02 14:39:10 +0100747 unsigned int hlen = ALIGN(extra_headroom, 4);
Zhu Yieaf85ca2009-12-01 10:18:37 +0800748 struct sk_buff *frame = NULL;
749 u16 ethertype;
750 u8 *payload;
Johannes Berg7f6990c2016-10-05 15:29:49 +0200751 int offset = 0, remaining;
Felix Fietkau230fd282016-02-02 14:39:10 +0100752 struct ethhdr eth;
Felix Fietkau2b67f942016-02-08 14:34:42 +0100753 bool reuse_frag = skb->head_frag && !skb_has_frag_list(skb);
Felix Fietkau2bf0ccc2016-02-08 14:25:26 +0100754 bool reuse_skb = false;
Felix Fietkau230fd282016-02-02 14:39:10 +0100755 bool last = false;
Felix Fietkau88665f52016-02-02 14:39:08 +0100756
Felix Fietkau230fd282016-02-02 14:39:10 +0100757 while (!last) {
758 unsigned int subframe_len;
759 int len;
Zhu Yieaf85ca2009-12-01 10:18:37 +0800760 u8 padding;
Zhu Yieaf85ca2009-12-01 10:18:37 +0800761
Felix Fietkau230fd282016-02-02 14:39:10 +0100762 skb_copy_bits(skb, offset, &eth, sizeof(eth));
763 len = ntohs(eth.h_proto);
764 subframe_len = sizeof(struct ethhdr) + len;
Zhu Yieaf85ca2009-12-01 10:18:37 +0800765 padding = (4 - subframe_len) & 0x3;
Felix Fietkau230fd282016-02-02 14:39:10 +0100766
Zhu Yieaf85ca2009-12-01 10:18:37 +0800767 /* the last MSDU has no padding */
Felix Fietkau230fd282016-02-02 14:39:10 +0100768 remaining = skb->len - offset;
Zhu Yieaf85ca2009-12-01 10:18:37 +0800769 if (subframe_len > remaining)
770 goto purge;
771
Felix Fietkau230fd282016-02-02 14:39:10 +0100772 offset += sizeof(struct ethhdr);
Felix Fietkau230fd282016-02-02 14:39:10 +0100773 last = remaining <= subframe_len + padding;
Johannes Berg8b935ee2016-10-05 16:17:01 +0200774
775 /* FIXME: should we really accept multicast DA? */
776 if ((check_da && !is_multicast_ether_addr(eth.h_dest) &&
777 !ether_addr_equal(check_da, eth.h_dest)) ||
778 (check_sa && !ether_addr_equal(check_sa, eth.h_source))) {
779 offset += len + padding;
780 continue;
781 }
782
783 /* reuse skb for the last subframe */
Felix Fietkau2b67f942016-02-08 14:34:42 +0100784 if (!skb_is_nonlinear(skb) && !reuse_frag && last) {
Felix Fietkau230fd282016-02-02 14:39:10 +0100785 skb_pull(skb, offset);
Zhu Yieaf85ca2009-12-01 10:18:37 +0800786 frame = skb;
Felix Fietkau230fd282016-02-02 14:39:10 +0100787 reuse_skb = true;
788 } else {
Felix Fietkau2b67f942016-02-08 14:34:42 +0100789 frame = __ieee80211_amsdu_copy(skb, hlen, offset, len,
790 reuse_frag);
Zhu Yieaf85ca2009-12-01 10:18:37 +0800791 if (!frame)
792 goto purge;
793
Felix Fietkau230fd282016-02-02 14:39:10 +0100794 offset += len + padding;
Zhu Yieaf85ca2009-12-01 10:18:37 +0800795 }
796
797 skb_reset_network_header(frame);
798 frame->dev = skb->dev;
799 frame->priority = skb->priority;
800
801 payload = frame->data;
802 ethertype = (payload[6] << 8) | payload[7];
Joe Perchesac422d32012-05-08 18:56:55 +0000803 if (likely((ether_addr_equal(payload, rfc1042_header) &&
Zhu Yieaf85ca2009-12-01 10:18:37 +0800804 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
Joe Perchesac422d32012-05-08 18:56:55 +0000805 ether_addr_equal(payload, bridge_tunnel_header))) {
Felix Fietkau230fd282016-02-02 14:39:10 +0100806 eth.h_proto = htons(ethertype);
807 skb_pull(frame, ETH_ALEN + 2);
Zhu Yieaf85ca2009-12-01 10:18:37 +0800808 }
Felix Fietkau230fd282016-02-02 14:39:10 +0100809
810 memcpy(skb_push(frame, sizeof(eth)), &eth, sizeof(eth));
Zhu Yieaf85ca2009-12-01 10:18:37 +0800811 __skb_queue_tail(list, frame);
812 }
813
Felix Fietkau230fd282016-02-02 14:39:10 +0100814 if (!reuse_skb)
815 dev_kfree_skb(skb);
816
Zhu Yieaf85ca2009-12-01 10:18:37 +0800817 return;
818
819 purge:
820 __skb_queue_purge(list);
Zhu Yieaf85ca2009-12-01 10:18:37 +0800821 dev_kfree_skb(skb);
822}
823EXPORT_SYMBOL(ieee80211_amsdu_to_8023s);
824
Zhu Yie31a16d2009-05-21 21:47:03 +0800825/* Given a data frame determine the 802.1p/1d tag to use. */
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -0800826unsigned int cfg80211_classify8021d(struct sk_buff *skb,
827 struct cfg80211_qos_map *qos_map)
Zhu Yie31a16d2009-05-21 21:47:03 +0800828{
829 unsigned int dscp;
cedric Vonckenc6ca5e22013-08-26 14:04:52 +0200830 unsigned char vlan_priority;
Zhu Yie31a16d2009-05-21 21:47:03 +0800831
832 /* skb->priority values from 256->263 are magic values to
833 * directly indicate a specific 802.1d priority. This is used
834 * to allow 802.1d priority to be passed directly in from VLAN
835 * tags, etc.
836 */
837 if (skb->priority >= 256 && skb->priority <= 263)
838 return skb->priority - 256;
839
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100840 if (skb_vlan_tag_present(skb)) {
841 vlan_priority = (skb_vlan_tag_get(skb) & VLAN_PRIO_MASK)
cedric Vonckenc6ca5e22013-08-26 14:04:52 +0200842 >> VLAN_PRIO_SHIFT;
843 if (vlan_priority > 0)
844 return vlan_priority;
845 }
846
Zhu Yie31a16d2009-05-21 21:47:03 +0800847 switch (skb->protocol) {
848 case htons(ETH_P_IP):
Dave Tähtb1565792011-12-22 12:55:08 -0800849 dscp = ipv4_get_dsfield(ip_hdr(skb)) & 0xfc;
850 break;
851 case htons(ETH_P_IPV6):
852 dscp = ipv6_get_dsfield(ipv6_hdr(skb)) & 0xfc;
Zhu Yie31a16d2009-05-21 21:47:03 +0800853 break;
Simon Wunderlich960d97f2014-03-03 17:23:12 +0100854 case htons(ETH_P_MPLS_UC):
855 case htons(ETH_P_MPLS_MC): {
856 struct mpls_label mpls_tmp, *mpls;
857
858 mpls = skb_header_pointer(skb, sizeof(struct ethhdr),
859 sizeof(*mpls), &mpls_tmp);
860 if (!mpls)
861 return 0;
862
863 return (ntohl(mpls->entry) & MPLS_LS_TC_MASK)
864 >> MPLS_LS_TC_SHIFT;
865 }
866 case htons(ETH_P_80221):
867 /* 802.21 is always network control traffic */
868 return 7;
Zhu Yie31a16d2009-05-21 21:47:03 +0800869 default:
870 return 0;
871 }
872
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -0800873 if (qos_map) {
874 unsigned int i, tmp_dscp = dscp >> 2;
875
876 for (i = 0; i < qos_map->num_des; i++) {
877 if (tmp_dscp == qos_map->dscp_exception[i].dscp)
878 return qos_map->dscp_exception[i].up;
879 }
880
881 for (i = 0; i < 8; i++) {
882 if (tmp_dscp >= qos_map->up[i].low &&
883 tmp_dscp <= qos_map->up[i].high)
884 return i;
885 }
886 }
887
Zhu Yie31a16d2009-05-21 21:47:03 +0800888 return dscp >> 5;
889}
890EXPORT_SYMBOL(cfg80211_classify8021d);
Johannes Berg517357c2009-07-02 17:18:40 +0200891
892const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie)
893{
Johannes Berg9caf0362012-11-29 01:25:20 +0100894 const struct cfg80211_bss_ies *ies;
895
896 ies = rcu_dereference(bss->ies);
897 if (!ies)
Johannes Berg517357c2009-07-02 17:18:40 +0200898 return NULL;
Johannes Berg9caf0362012-11-29 01:25:20 +0100899
900 return cfg80211_find_ie(ie, ies->data, ies->len);
Johannes Berg517357c2009-07-02 17:18:40 +0200901}
902EXPORT_SYMBOL(ieee80211_bss_get_ie);
Johannes Bergfffd0932009-07-08 14:22:54 +0200903
904void cfg80211_upload_connect_keys(struct wireless_dev *wdev)
905{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800906 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Bergfffd0932009-07-08 14:22:54 +0200907 struct net_device *dev = wdev->netdev;
908 int i;
909
910 if (!wdev->connect_keys)
911 return;
912
David Spinadelb8676222016-09-22 23:16:50 +0300913 for (i = 0; i < CFG80211_MAX_WEP_KEYS; i++) {
Johannes Bergfffd0932009-07-08 14:22:54 +0200914 if (!wdev->connect_keys->params[i].cipher)
915 continue;
Hila Gonene35e4d22012-06-27 17:19:42 +0300916 if (rdev_add_key(rdev, dev, i, false, NULL,
917 &wdev->connect_keys->params[i])) {
Joe Perchese9c02682010-11-16 19:56:49 -0800918 netdev_err(dev, "failed to set key %d\n", i);
Zhu Yi1e056662009-07-20 16:12:57 +0800919 continue;
920 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200921 if (wdev->connect_keys->def == i)
Hila Gonene35e4d22012-06-27 17:19:42 +0300922 if (rdev_set_default_key(rdev, dev, i, true, true)) {
Joe Perchese9c02682010-11-16 19:56:49 -0800923 netdev_err(dev, "failed to set defkey %d\n", i);
Zhu Yi1e056662009-07-20 16:12:57 +0800924 continue;
925 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200926 }
927
Johannes Bergb47f6102014-09-10 13:39:54 +0300928 kzfree(wdev->connect_keys);
Johannes Bergfffd0932009-07-08 14:22:54 +0200929 wdev->connect_keys = NULL;
930}
Johannes Berg3d54d252009-08-21 14:51:05 +0200931
Daniel Drake1f6fc432012-08-02 18:41:48 +0100932void cfg80211_process_wdev_events(struct wireless_dev *wdev)
Johannes Berg3d54d252009-08-21 14:51:05 +0200933{
934 struct cfg80211_event *ev;
935 unsigned long flags;
936 const u8 *bssid = NULL;
937
938 spin_lock_irqsave(&wdev->event_lock, flags);
939 while (!list_empty(&wdev->event_list)) {
940 ev = list_first_entry(&wdev->event_list,
941 struct cfg80211_event, list);
942 list_del(&ev->list);
943 spin_unlock_irqrestore(&wdev->event_lock, flags);
944
945 wdev_lock(wdev);
946 switch (ev->type) {
947 case EVENT_CONNECT_RESULT:
948 if (!is_zero_ether_addr(ev->cr.bssid))
949 bssid = ev->cr.bssid;
950 __cfg80211_connect_result(
951 wdev->netdev, bssid,
952 ev->cr.req_ie, ev->cr.req_ie_len,
953 ev->cr.resp_ie, ev->cr.resp_ie_len,
954 ev->cr.status,
955 ev->cr.status == WLAN_STATUS_SUCCESS,
Kanchanapally, Vidyullathae7054982016-04-11 15:16:01 +0530956 ev->cr.bss);
Johannes Berg3d54d252009-08-21 14:51:05 +0200957 break;
958 case EVENT_ROAMED:
Vasanthakumar Thiagarajanadbde342011-12-08 14:28:47 +0530959 __cfg80211_roamed(wdev, ev->rm.bss, ev->rm.req_ie,
960 ev->rm.req_ie_len, ev->rm.resp_ie,
961 ev->rm.resp_ie_len);
Johannes Berg3d54d252009-08-21 14:51:05 +0200962 break;
963 case EVENT_DISCONNECTED:
964 __cfg80211_disconnected(wdev->netdev,
965 ev->dc.ie, ev->dc.ie_len,
Johannes Berg80279fb2015-05-22 16:22:20 +0200966 ev->dc.reason,
967 !ev->dc.locally_generated);
Johannes Berg3d54d252009-08-21 14:51:05 +0200968 break;
969 case EVENT_IBSS_JOINED:
Antonio Quartullife94f3a2014-01-29 17:53:43 +0100970 __cfg80211_ibss_joined(wdev->netdev, ev->ij.bssid,
971 ev->ij.channel);
Johannes Berg3d54d252009-08-21 14:51:05 +0200972 break;
Michal Kaziorf04c2202014-04-09 15:11:01 +0200973 case EVENT_STOPPED:
974 __cfg80211_leave(wiphy_to_rdev(wdev->wiphy), wdev);
975 break;
Johannes Berg3d54d252009-08-21 14:51:05 +0200976 }
977 wdev_unlock(wdev);
978
979 kfree(ev);
980
981 spin_lock_irqsave(&wdev->event_lock, flags);
982 }
983 spin_unlock_irqrestore(&wdev->event_lock, flags);
984}
985
986void cfg80211_process_rdev_events(struct cfg80211_registered_device *rdev)
987{
988 struct wireless_dev *wdev;
989
990 ASSERT_RTNL();
Johannes Berg3d54d252009-08-21 14:51:05 +0200991
Johannes Berg53873f12016-05-03 16:52:04 +0300992 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list)
Johannes Berg3d54d252009-08-21 14:51:05 +0200993 cfg80211_process_wdev_events(wdev);
Johannes Berg3d54d252009-08-21 14:51:05 +0200994}
995
996int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
997 struct net_device *dev, enum nl80211_iftype ntype,
998 u32 *flags, struct vif_params *params)
999{
1000 int err;
1001 enum nl80211_iftype otype = dev->ieee80211_ptr->iftype;
1002
Zhao, Gang73fb08e2014-03-19 17:04:36 +08001003 ASSERT_RTNL();
Johannes Berg3d54d252009-08-21 14:51:05 +02001004
1005 /* don't support changing VLANs, you just re-create them */
1006 if (otype == NL80211_IFTYPE_AP_VLAN)
1007 return -EOPNOTSUPP;
1008
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001009 /* cannot change into P2P device or NAN */
1010 if (ntype == NL80211_IFTYPE_P2P_DEVICE ||
1011 ntype == NL80211_IFTYPE_NAN)
Johannes Berg98104fde2012-06-16 00:19:54 +02001012 return -EOPNOTSUPP;
1013
Johannes Berg3d54d252009-08-21 14:51:05 +02001014 if (!rdev->ops->change_virtual_intf ||
1015 !(rdev->wiphy.interface_modes & (1 << ntype)))
1016 return -EOPNOTSUPP;
1017
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001018 /* if it's part of a bridge, reject changing type to station/ibss */
Jiri Pirkof350a0a82010-06-15 06:50:45 +00001019 if ((dev->priv_flags & IFF_BRIDGE_PORT) &&
Johannes Berg074ac8d2010-09-16 14:58:22 +02001020 (ntype == NL80211_IFTYPE_ADHOC ||
1021 ntype == NL80211_IFTYPE_STATION ||
1022 ntype == NL80211_IFTYPE_P2P_CLIENT))
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001023 return -EBUSY;
1024
Michal Kazior6cbfb1b2015-05-22 10:57:22 +02001025 if (ntype != otype) {
Johannes Berg9bc383d2009-11-19 11:55:19 +01001026 dev->ieee80211_ptr->use_4addr = false;
Johannes Berg29cbe682010-12-03 09:20:44 +01001027 dev->ieee80211_ptr->mesh_id_up_len = 0;
Johannes Berg194ff522013-12-30 23:12:37 +01001028 wdev_lock(dev->ieee80211_ptr);
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -08001029 rdev_set_qos_map(rdev, dev, NULL);
Johannes Berg194ff522013-12-30 23:12:37 +01001030 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg9bc383d2009-11-19 11:55:19 +01001031
Johannes Berg3d54d252009-08-21 14:51:05 +02001032 switch (otype) {
Michal Kaziorac800142012-06-29 12:46:57 +02001033 case NL80211_IFTYPE_AP:
Ilan Peer7c8d5e02014-02-25 15:33:38 +02001034 cfg80211_stop_ap(rdev, dev, true);
Michal Kaziorac800142012-06-29 12:46:57 +02001035 break;
Johannes Berg3d54d252009-08-21 14:51:05 +02001036 case NL80211_IFTYPE_ADHOC:
1037 cfg80211_leave_ibss(rdev, dev, false);
1038 break;
1039 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +02001040 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg83739b02013-05-15 17:44:01 +02001041 wdev_lock(dev->ieee80211_ptr);
Johannes Berg3d54d252009-08-21 14:51:05 +02001042 cfg80211_disconnect(rdev, dev,
1043 WLAN_REASON_DEAUTH_LEAVING, true);
Johannes Berg83739b02013-05-15 17:44:01 +02001044 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg3d54d252009-08-21 14:51:05 +02001045 break;
1046 case NL80211_IFTYPE_MESH_POINT:
1047 /* mesh should be handled? */
1048 break;
1049 default:
1050 break;
1051 }
1052
1053 cfg80211_process_rdev_events(rdev);
1054 }
1055
Hila Gonene35e4d22012-06-27 17:19:42 +03001056 err = rdev_change_virtual_intf(rdev, dev, ntype, flags, params);
Johannes Berg3d54d252009-08-21 14:51:05 +02001057
1058 WARN_ON(!err && dev->ieee80211_ptr->iftype != ntype);
1059
Johannes Berg9bc383d2009-11-19 11:55:19 +01001060 if (!err && params && params->use_4addr != -1)
1061 dev->ieee80211_ptr->use_4addr = params->use_4addr;
1062
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001063 if (!err) {
1064 dev->priv_flags &= ~IFF_DONT_BRIDGE;
1065 switch (ntype) {
1066 case NL80211_IFTYPE_STATION:
1067 if (dev->ieee80211_ptr->use_4addr)
1068 break;
1069 /* fall through */
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001070 case NL80211_IFTYPE_OCB:
Johannes Berg074ac8d2010-09-16 14:58:22 +02001071 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001072 case NL80211_IFTYPE_ADHOC:
1073 dev->priv_flags |= IFF_DONT_BRIDGE;
1074 break;
Johannes Berg074ac8d2010-09-16 14:58:22 +02001075 case NL80211_IFTYPE_P2P_GO:
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001076 case NL80211_IFTYPE_AP:
1077 case NL80211_IFTYPE_AP_VLAN:
1078 case NL80211_IFTYPE_WDS:
1079 case NL80211_IFTYPE_MESH_POINT:
1080 /* bridging OK */
1081 break;
1082 case NL80211_IFTYPE_MONITOR:
1083 /* monitor can't bridge anyway */
1084 break;
1085 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f72010-08-12 15:38:38 +02001086 case NUM_NL80211_IFTYPES:
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001087 /* not happening */
1088 break;
Johannes Berg98104fde2012-06-16 00:19:54 +02001089 case NL80211_IFTYPE_P2P_DEVICE:
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001090 case NL80211_IFTYPE_NAN:
Johannes Berg98104fde2012-06-16 00:19:54 +02001091 WARN_ON(1);
1092 break;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001093 }
1094 }
1095
Michal Kaziordbbae262012-06-29 12:47:01 +02001096 if (!err && ntype != otype && netif_running(dev)) {
1097 cfg80211_update_iface_num(rdev, ntype, 1);
1098 cfg80211_update_iface_num(rdev, otype, -1);
1099 }
1100
Johannes Berg3d54d252009-08-21 14:51:05 +02001101 return err;
1102}
John W. Linville254416a2009-12-09 16:43:52 -05001103
Vladimir Kondratiev95ddc1f2012-07-05 14:25:50 +03001104static u32 cfg80211_calculate_bitrate_60g(struct rate_info *rate)
1105{
1106 static const u32 __mcs2bitrate[] = {
1107 /* control PHY */
1108 [0] = 275,
1109 /* SC PHY */
1110 [1] = 3850,
1111 [2] = 7700,
1112 [3] = 9625,
1113 [4] = 11550,
1114 [5] = 12512, /* 1251.25 mbps */
1115 [6] = 15400,
1116 [7] = 19250,
1117 [8] = 23100,
1118 [9] = 25025,
1119 [10] = 30800,
1120 [11] = 38500,
1121 [12] = 46200,
1122 /* OFDM PHY */
1123 [13] = 6930,
1124 [14] = 8662, /* 866.25 mbps */
1125 [15] = 13860,
1126 [16] = 17325,
1127 [17] = 20790,
1128 [18] = 27720,
1129 [19] = 34650,
1130 [20] = 41580,
1131 [21] = 45045,
1132 [22] = 51975,
1133 [23] = 62370,
1134 [24] = 67568, /* 6756.75 mbps */
1135 /* LP-SC PHY */
1136 [25] = 6260,
1137 [26] = 8340,
1138 [27] = 11120,
1139 [28] = 12510,
1140 [29] = 16680,
1141 [30] = 22240,
1142 [31] = 25030,
1143 };
1144
1145 if (WARN_ON_ONCE(rate->mcs >= ARRAY_SIZE(__mcs2bitrate)))
1146 return 0;
1147
1148 return __mcs2bitrate[rate->mcs];
1149}
1150
Johannes Bergdb9c64c2012-11-09 14:56:41 +01001151static u32 cfg80211_calculate_bitrate_vht(struct rate_info *rate)
1152{
1153 static const u32 base[4][10] = {
1154 { 6500000,
1155 13000000,
1156 19500000,
1157 26000000,
1158 39000000,
1159 52000000,
1160 58500000,
1161 65000000,
1162 78000000,
Pedersen, Thomas8fdd1362016-10-31 11:28:40 -07001163 /* not in the spec, but some devices use this: */
1164 86500000,
Johannes Bergdb9c64c2012-11-09 14:56:41 +01001165 },
1166 { 13500000,
1167 27000000,
1168 40500000,
1169 54000000,
1170 81000000,
1171 108000000,
1172 121500000,
1173 135000000,
1174 162000000,
1175 180000000,
1176 },
1177 { 29300000,
1178 58500000,
1179 87800000,
1180 117000000,
1181 175500000,
1182 234000000,
1183 263300000,
1184 292500000,
1185 351000000,
1186 390000000,
1187 },
1188 { 58500000,
1189 117000000,
1190 175500000,
1191 234000000,
1192 351000000,
1193 468000000,
1194 526500000,
1195 585000000,
1196 702000000,
1197 780000000,
1198 },
1199 };
1200 u32 bitrate;
1201 int idx;
1202
1203 if (WARN_ON_ONCE(rate->mcs > 9))
1204 return 0;
1205
Johannes Bergb51f3be2015-01-15 16:14:02 +01001206 switch (rate->bw) {
1207 case RATE_INFO_BW_160:
1208 idx = 3;
1209 break;
1210 case RATE_INFO_BW_80:
1211 idx = 2;
1212 break;
1213 case RATE_INFO_BW_40:
1214 idx = 1;
1215 break;
1216 case RATE_INFO_BW_5:
1217 case RATE_INFO_BW_10:
1218 default:
1219 WARN_ON(1);
1220 /* fall through */
1221 case RATE_INFO_BW_20:
1222 idx = 0;
1223 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01001224
1225 bitrate = base[idx][rate->mcs];
1226 bitrate *= rate->nss;
1227
1228 if (rate->flags & RATE_INFO_FLAGS_SHORT_GI)
1229 bitrate = (bitrate / 9) * 10;
1230
1231 /* do NOT round down here */
1232 return (bitrate + 50000) / 100000;
1233}
1234
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03001235u32 cfg80211_calculate_bitrate(struct rate_info *rate)
John W. Linville254416a2009-12-09 16:43:52 -05001236{
1237 int modulation, streams, bitrate;
1238
Johannes Bergdb9c64c2012-11-09 14:56:41 +01001239 if (!(rate->flags & RATE_INFO_FLAGS_MCS) &&
1240 !(rate->flags & RATE_INFO_FLAGS_VHT_MCS))
John W. Linville254416a2009-12-09 16:43:52 -05001241 return rate->legacy;
Vladimir Kondratiev95ddc1f2012-07-05 14:25:50 +03001242 if (rate->flags & RATE_INFO_FLAGS_60G)
1243 return cfg80211_calculate_bitrate_60g(rate);
Johannes Bergdb9c64c2012-11-09 14:56:41 +01001244 if (rate->flags & RATE_INFO_FLAGS_VHT_MCS)
1245 return cfg80211_calculate_bitrate_vht(rate);
John W. Linville254416a2009-12-09 16:43:52 -05001246
1247 /* the formula below does only work for MCS values smaller than 32 */
Johannes Berg2615f372012-05-08 21:36:20 +02001248 if (WARN_ON_ONCE(rate->mcs >= 32))
John W. Linville254416a2009-12-09 16:43:52 -05001249 return 0;
1250
1251 modulation = rate->mcs & 7;
1252 streams = (rate->mcs >> 3) + 1;
1253
Johannes Bergb51f3be2015-01-15 16:14:02 +01001254 bitrate = (rate->bw == RATE_INFO_BW_40) ? 13500000 : 6500000;
John W. Linville254416a2009-12-09 16:43:52 -05001255
1256 if (modulation < 4)
1257 bitrate *= (modulation + 1);
1258 else if (modulation == 4)
1259 bitrate *= (modulation + 2);
1260 else
1261 bitrate *= (modulation + 3);
1262
1263 bitrate *= streams;
1264
1265 if (rate->flags & RATE_INFO_FLAGS_SHORT_GI)
1266 bitrate = (bitrate / 9) * 10;
1267
1268 /* do NOT round down here */
1269 return (bitrate + 50000) / 100000;
1270}
Thomas Pedersen8097e142012-03-05 15:31:47 -08001271EXPORT_SYMBOL(cfg80211_calculate_bitrate);
Johannes Berg56d18932011-05-09 18:41:15 +02001272
Arend van Sprielc216e642012-11-25 19:13:28 +01001273int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len,
1274 enum ieee80211_p2p_attr_id attr,
1275 u8 *buf, unsigned int bufsize)
Johannes Berg0ee45352012-10-29 19:48:40 +01001276{
1277 u8 *out = buf;
1278 u16 attr_remaining = 0;
1279 bool desired_attr = false;
1280 u16 desired_len = 0;
1281
1282 while (len > 0) {
1283 unsigned int iedatalen;
1284 unsigned int copy;
1285 const u8 *iedata;
1286
1287 if (len < 2)
1288 return -EILSEQ;
1289 iedatalen = ies[1];
1290 if (iedatalen + 2 > len)
1291 return -EILSEQ;
1292
1293 if (ies[0] != WLAN_EID_VENDOR_SPECIFIC)
1294 goto cont;
1295
1296 if (iedatalen < 4)
1297 goto cont;
1298
1299 iedata = ies + 2;
1300
1301 /* check WFA OUI, P2P subtype */
1302 if (iedata[0] != 0x50 || iedata[1] != 0x6f ||
1303 iedata[2] != 0x9a || iedata[3] != 0x09)
1304 goto cont;
1305
1306 iedatalen -= 4;
1307 iedata += 4;
1308
1309 /* check attribute continuation into this IE */
1310 copy = min_t(unsigned int, attr_remaining, iedatalen);
1311 if (copy && desired_attr) {
1312 desired_len += copy;
1313 if (out) {
1314 memcpy(out, iedata, min(bufsize, copy));
1315 out += min(bufsize, copy);
1316 bufsize -= min(bufsize, copy);
1317 }
1318
1319
1320 if (copy == attr_remaining)
1321 return desired_len;
1322 }
1323
1324 attr_remaining -= copy;
1325 if (attr_remaining)
1326 goto cont;
1327
1328 iedatalen -= copy;
1329 iedata += copy;
1330
1331 while (iedatalen > 0) {
1332 u16 attr_len;
1333
1334 /* P2P attribute ID & size must fit */
1335 if (iedatalen < 3)
1336 return -EILSEQ;
1337 desired_attr = iedata[0] == attr;
1338 attr_len = get_unaligned_le16(iedata + 1);
1339 iedatalen -= 3;
1340 iedata += 3;
1341
1342 copy = min_t(unsigned int, attr_len, iedatalen);
1343
1344 if (desired_attr) {
1345 desired_len += copy;
1346 if (out) {
1347 memcpy(out, iedata, min(bufsize, copy));
1348 out += min(bufsize, copy);
1349 bufsize -= min(bufsize, copy);
1350 }
1351
1352 if (copy == attr_len)
1353 return desired_len;
1354 }
1355
1356 iedata += copy;
1357 iedatalen -= copy;
1358 attr_remaining = attr_len - copy;
1359 }
1360
1361 cont:
1362 len -= ies[1] + 2;
1363 ies += ies[1] + 2;
1364 }
1365
1366 if (attr_remaining && desired_attr)
1367 return -EILSEQ;
1368
1369 return -ENOENT;
1370}
1371EXPORT_SYMBOL(cfg80211_get_p2p_attr);
1372
Johannes Berg29464cc2015-03-31 15:36:22 +02001373static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
1374{
1375 int i;
1376
1377 for (i = 0; i < n_ids; i++)
1378 if (ids[i] == id)
1379 return true;
1380 return false;
1381}
1382
1383size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
1384 const u8 *ids, int n_ids,
1385 const u8 *after_ric, int n_after_ric,
1386 size_t offset)
1387{
1388 size_t pos = offset;
1389
1390 while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos])) {
1391 if (ies[pos] == WLAN_EID_RIC_DATA && n_after_ric) {
1392 pos += 2 + ies[pos + 1];
1393
1394 while (pos < ielen &&
1395 !ieee80211_id_in_list(after_ric, n_after_ric,
1396 ies[pos]))
1397 pos += 2 + ies[pos + 1];
1398 } else {
1399 pos += 2 + ies[pos + 1];
1400 }
1401 }
1402
1403 return pos;
1404}
1405EXPORT_SYMBOL(ieee80211_ie_split_ric);
1406
Johannes Berg1ce3e822012-08-01 17:00:55 +02001407bool ieee80211_operating_class_to_band(u8 operating_class,
Johannes Berg57fbcce2016-04-12 15:56:15 +02001408 enum nl80211_band *band)
Johannes Berg1ce3e822012-08-01 17:00:55 +02001409{
1410 switch (operating_class) {
1411 case 112:
1412 case 115 ... 127:
Eliad Peller954a86e2015-03-01 09:10:01 +02001413 case 128 ... 130:
Johannes Berg57fbcce2016-04-12 15:56:15 +02001414 *band = NL80211_BAND_5GHZ;
Johannes Berg1ce3e822012-08-01 17:00:55 +02001415 return true;
1416 case 81:
1417 case 82:
1418 case 83:
1419 case 84:
Johannes Berg57fbcce2016-04-12 15:56:15 +02001420 *band = NL80211_BAND_2GHZ;
Johannes Berg1ce3e822012-08-01 17:00:55 +02001421 return true;
Vladimir Kondratiev55300a12013-04-23 09:54:21 +03001422 case 180:
Johannes Berg57fbcce2016-04-12 15:56:15 +02001423 *band = NL80211_BAND_60GHZ;
Vladimir Kondratiev55300a12013-04-23 09:54:21 +03001424 return true;
Johannes Berg1ce3e822012-08-01 17:00:55 +02001425 }
1426
1427 return false;
1428}
1429EXPORT_SYMBOL(ieee80211_operating_class_to_band);
1430
Arik Nemtsova38700d2015-03-18 08:46:08 +02001431bool ieee80211_chandef_to_operating_class(struct cfg80211_chan_def *chandef,
1432 u8 *op_class)
1433{
1434 u8 vht_opclass;
1435 u16 freq = chandef->center_freq1;
1436
1437 if (freq >= 2412 && freq <= 2472) {
1438 if (chandef->width > NL80211_CHAN_WIDTH_40)
1439 return false;
1440
1441 /* 2.407 GHz, channels 1..13 */
1442 if (chandef->width == NL80211_CHAN_WIDTH_40) {
1443 if (freq > chandef->chan->center_freq)
1444 *op_class = 83; /* HT40+ */
1445 else
1446 *op_class = 84; /* HT40- */
1447 } else {
1448 *op_class = 81;
1449 }
1450
1451 return true;
1452 }
1453
1454 if (freq == 2484) {
1455 if (chandef->width > NL80211_CHAN_WIDTH_40)
1456 return false;
1457
1458 *op_class = 82; /* channel 14 */
1459 return true;
1460 }
1461
1462 switch (chandef->width) {
1463 case NL80211_CHAN_WIDTH_80:
1464 vht_opclass = 128;
1465 break;
1466 case NL80211_CHAN_WIDTH_160:
1467 vht_opclass = 129;
1468 break;
1469 case NL80211_CHAN_WIDTH_80P80:
1470 vht_opclass = 130;
1471 break;
1472 case NL80211_CHAN_WIDTH_10:
1473 case NL80211_CHAN_WIDTH_5:
1474 return false; /* unsupported for now */
1475 default:
1476 vht_opclass = 0;
1477 break;
1478 }
1479
1480 /* 5 GHz, channels 36..48 */
1481 if (freq >= 5180 && freq <= 5240) {
1482 if (vht_opclass) {
1483 *op_class = vht_opclass;
1484 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1485 if (freq > chandef->chan->center_freq)
1486 *op_class = 116;
1487 else
1488 *op_class = 117;
1489 } else {
1490 *op_class = 115;
1491 }
1492
1493 return true;
1494 }
1495
1496 /* 5 GHz, channels 52..64 */
1497 if (freq >= 5260 && freq <= 5320) {
1498 if (vht_opclass) {
1499 *op_class = vht_opclass;
1500 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1501 if (freq > chandef->chan->center_freq)
1502 *op_class = 119;
1503 else
1504 *op_class = 120;
1505 } else {
1506 *op_class = 118;
1507 }
1508
1509 return true;
1510 }
1511
1512 /* 5 GHz, channels 100..144 */
1513 if (freq >= 5500 && freq <= 5720) {
1514 if (vht_opclass) {
1515 *op_class = vht_opclass;
1516 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1517 if (freq > chandef->chan->center_freq)
1518 *op_class = 122;
1519 else
1520 *op_class = 123;
1521 } else {
1522 *op_class = 121;
1523 }
1524
1525 return true;
1526 }
1527
1528 /* 5 GHz, channels 149..169 */
1529 if (freq >= 5745 && freq <= 5845) {
1530 if (vht_opclass) {
1531 *op_class = vht_opclass;
1532 } else if (chandef->width == NL80211_CHAN_WIDTH_40) {
1533 if (freq > chandef->chan->center_freq)
1534 *op_class = 126;
1535 else
1536 *op_class = 127;
1537 } else if (freq <= 5805) {
1538 *op_class = 124;
1539 } else {
1540 *op_class = 125;
1541 }
1542
1543 return true;
1544 }
1545
1546 /* 56.16 GHz, channel 1..4 */
1547 if (freq >= 56160 + 2160 * 1 && freq <= 56160 + 2160 * 4) {
1548 if (chandef->width >= NL80211_CHAN_WIDTH_40)
1549 return false;
1550
1551 *op_class = 180;
1552 return true;
1553 }
1554
1555 /* not supported yet */
1556 return false;
1557}
1558EXPORT_SYMBOL(ieee80211_chandef_to_operating_class);
1559
Johannes Berg56d18932011-05-09 18:41:15 +02001560int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev,
1561 u32 beacon_int)
1562{
1563 struct wireless_dev *wdev;
1564 int res = 0;
1565
Purushottam Kushwaha12d20fc92016-08-11 15:14:02 +05301566 if (beacon_int < 10 || beacon_int > 10000)
Johannes Berg56d18932011-05-09 18:41:15 +02001567 return -EINVAL;
1568
Johannes Berg53873f12016-05-03 16:52:04 +03001569 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
Johannes Berg56d18932011-05-09 18:41:15 +02001570 if (!wdev->beacon_interval)
1571 continue;
1572 if (wdev->beacon_interval != beacon_int) {
1573 res = -EINVAL;
1574 break;
1575 }
1576 }
1577
Johannes Berg56d18932011-05-09 18:41:15 +02001578 return res;
1579}
Johannes Berg7527a782011-05-13 10:58:57 +02001580
Michal Kazior65a124d2014-04-09 15:29:22 +02001581int cfg80211_iter_combinations(struct wiphy *wiphy,
1582 const int num_different_channels,
1583 const u8 radar_detect,
1584 const int iftype_num[NUM_NL80211_IFTYPES],
1585 void (*iter)(const struct ieee80211_iface_combination *c,
1586 void *data),
1587 void *data)
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001588{
Felix Fietkau8c48b502014-05-05 11:48:40 +02001589 const struct ieee80211_regdomain *regdom;
1590 enum nl80211_dfs_regions region = 0;
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001591 int i, j, iftype;
1592 int num_interfaces = 0;
1593 u32 used_iftypes = 0;
1594
Felix Fietkau8c48b502014-05-05 11:48:40 +02001595 if (radar_detect) {
1596 rcu_read_lock();
1597 regdom = rcu_dereference(cfg80211_regdomain);
1598 if (regdom)
1599 region = regdom->dfs_region;
1600 rcu_read_unlock();
1601 }
1602
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001603 for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) {
1604 num_interfaces += iftype_num[iftype];
1605 if (iftype_num[iftype] > 0 &&
1606 !(wiphy->software_iftypes & BIT(iftype)))
1607 used_iftypes |= BIT(iftype);
1608 }
1609
1610 for (i = 0; i < wiphy->n_iface_combinations; i++) {
1611 const struct ieee80211_iface_combination *c;
1612 struct ieee80211_iface_limit *limits;
1613 u32 all_iftypes = 0;
1614
1615 c = &wiphy->iface_combinations[i];
1616
1617 if (num_interfaces > c->max_interfaces)
1618 continue;
1619 if (num_different_channels > c->num_different_channels)
1620 continue;
1621
1622 limits = kmemdup(c->limits, sizeof(limits[0]) * c->n_limits,
1623 GFP_KERNEL);
1624 if (!limits)
1625 return -ENOMEM;
1626
1627 for (iftype = 0; iftype < NUM_NL80211_IFTYPES; iftype++) {
1628 if (wiphy->software_iftypes & BIT(iftype))
1629 continue;
1630 for (j = 0; j < c->n_limits; j++) {
1631 all_iftypes |= limits[j].types;
1632 if (!(limits[j].types & BIT(iftype)))
1633 continue;
1634 if (limits[j].max < iftype_num[iftype])
1635 goto cont;
1636 limits[j].max -= iftype_num[iftype];
1637 }
1638 }
1639
Michal Kazior65d26f22014-03-21 14:52:15 +01001640 if (radar_detect != (c->radar_detect_widths & radar_detect))
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001641 goto cont;
1642
Felix Fietkau8c48b502014-05-05 11:48:40 +02001643 if (radar_detect && c->radar_detect_regions &&
1644 !(c->radar_detect_regions & BIT(region)))
1645 goto cont;
1646
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001647 /* Finally check that all iftypes that we're currently
1648 * using are actually part of this combination. If they
1649 * aren't then we can't use this combination and have
1650 * to continue to the next.
1651 */
1652 if ((all_iftypes & used_iftypes) != used_iftypes)
1653 goto cont;
1654
1655 /* This combination covered all interface types and
1656 * supported the requested numbers, so we're good.
1657 */
Michal Kazior65a124d2014-04-09 15:29:22 +02001658
1659 (*iter)(c, data);
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001660 cont:
1661 kfree(limits);
1662 }
1663
Michal Kazior65a124d2014-04-09 15:29:22 +02001664 return 0;
1665}
1666EXPORT_SYMBOL(cfg80211_iter_combinations);
1667
1668static void
1669cfg80211_iter_sum_ifcombs(const struct ieee80211_iface_combination *c,
1670 void *data)
1671{
1672 int *num = data;
1673 (*num)++;
1674}
1675
1676int cfg80211_check_combinations(struct wiphy *wiphy,
1677 const int num_different_channels,
1678 const u8 radar_detect,
1679 const int iftype_num[NUM_NL80211_IFTYPES])
1680{
1681 int err, num = 0;
1682
1683 err = cfg80211_iter_combinations(wiphy, num_different_channels,
1684 radar_detect, iftype_num,
1685 cfg80211_iter_sum_ifcombs, &num);
1686 if (err)
1687 return err;
1688 if (num == 0)
1689 return -EBUSY;
1690
1691 return 0;
Luciano Coelhocb2d9562014-02-17 16:52:35 +02001692}
1693EXPORT_SYMBOL(cfg80211_check_combinations);
1694
Johannes Berg34850ab2011-07-18 18:08:35 +02001695int ieee80211_get_ratemask(struct ieee80211_supported_band *sband,
1696 const u8 *rates, unsigned int n_rates,
1697 u32 *mask)
1698{
1699 int i, j;
1700
Johannes Berga401d2b2011-07-20 00:52:16 +02001701 if (!sband)
1702 return -EINVAL;
1703
Johannes Berg34850ab2011-07-18 18:08:35 +02001704 if (n_rates == 0 || n_rates > NL80211_MAX_SUPP_RATES)
1705 return -EINVAL;
1706
1707 *mask = 0;
1708
1709 for (i = 0; i < n_rates; i++) {
1710 int rate = (rates[i] & 0x7f) * 5;
1711 bool found = false;
1712
1713 for (j = 0; j < sband->n_bitrates; j++) {
1714 if (sband->bitrates[j].bitrate == rate) {
1715 found = true;
1716 *mask |= BIT(j);
1717 break;
1718 }
1719 }
1720 if (!found)
1721 return -EINVAL;
1722 }
1723
1724 /*
1725 * mask must have at least one bit set here since we
1726 * didn't accept a 0-length rates array nor allowed
1727 * entries in the array that didn't exist
1728 */
1729
1730 return 0;
1731}
Johannes Berg11a2a352011-11-21 11:09:22 +01001732
Ilan Peerbdfbec22014-01-09 11:37:23 +02001733unsigned int ieee80211_get_num_supported_channels(struct wiphy *wiphy)
1734{
Johannes Berg57fbcce2016-04-12 15:56:15 +02001735 enum nl80211_band band;
Ilan Peerbdfbec22014-01-09 11:37:23 +02001736 unsigned int n_channels = 0;
1737
Johannes Berg57fbcce2016-04-12 15:56:15 +02001738 for (band = 0; band < NUM_NL80211_BANDS; band++)
Ilan Peerbdfbec22014-01-09 11:37:23 +02001739 if (wiphy->bands[band])
1740 n_channels += wiphy->bands[band]->n_channels;
1741
1742 return n_channels;
1743}
1744EXPORT_SYMBOL(ieee80211_get_num_supported_channels);
1745
Antonio Quartulli74063532014-05-19 21:53:21 +02001746int cfg80211_get_station(struct net_device *dev, const u8 *mac_addr,
1747 struct station_info *sinfo)
1748{
1749 struct cfg80211_registered_device *rdev;
1750 struct wireless_dev *wdev;
1751
1752 wdev = dev->ieee80211_ptr;
1753 if (!wdev)
1754 return -EOPNOTSUPP;
1755
1756 rdev = wiphy_to_rdev(wdev->wiphy);
1757 if (!rdev->ops->get_station)
1758 return -EOPNOTSUPP;
1759
1760 return rdev_get_station(rdev, dev, mac_addr, sinfo);
1761}
1762EXPORT_SYMBOL(cfg80211_get_station);
1763
Ayala Bekera442b762016-09-20 17:31:15 +03001764void cfg80211_free_nan_func(struct cfg80211_nan_func *f)
1765{
1766 int i;
1767
1768 if (!f)
1769 return;
1770
1771 kfree(f->serv_spec_info);
1772 kfree(f->srf_bf);
1773 kfree(f->srf_macs);
1774 for (i = 0; i < f->num_rx_filters; i++)
1775 kfree(f->rx_filters[i].filter);
1776
1777 for (i = 0; i < f->num_tx_filters; i++)
1778 kfree(f->tx_filters[i].filter);
1779
1780 kfree(f->rx_filters);
1781 kfree(f->tx_filters);
1782 kfree(f);
1783}
1784EXPORT_SYMBOL(cfg80211_free_nan_func);
1785
Johannes Berg11a2a352011-11-21 11:09:22 +01001786/* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
1787/* Ethernet-II snap header (RFC1042 for most EtherTypes) */
1788const unsigned char rfc1042_header[] __aligned(2) =
1789 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1790EXPORT_SYMBOL(rfc1042_header);
1791
1792/* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
1793const unsigned char bridge_tunnel_header[] __aligned(2) =
1794 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
1795EXPORT_SYMBOL(bridge_tunnel_header);
Johannes Berg7c62e272014-02-25 15:04:46 -08001796
1797bool cfg80211_is_gratuitous_arp_unsolicited_na(struct sk_buff *skb)
1798{
1799 const struct ethhdr *eth = (void *)skb->data;
1800 const struct {
1801 struct arphdr hdr;
1802 u8 ar_sha[ETH_ALEN];
1803 u8 ar_sip[4];
1804 u8 ar_tha[ETH_ALEN];
1805 u8 ar_tip[4];
1806 } __packed *arp;
1807 const struct ipv6hdr *ipv6;
1808 const struct icmp6hdr *icmpv6;
1809
1810 switch (eth->h_proto) {
1811 case cpu_to_be16(ETH_P_ARP):
1812 /* can't say - but will probably be dropped later anyway */
1813 if (!pskb_may_pull(skb, sizeof(*eth) + sizeof(*arp)))
1814 return false;
1815
1816 arp = (void *)(eth + 1);
1817
1818 if ((arp->hdr.ar_op == cpu_to_be16(ARPOP_REPLY) ||
1819 arp->hdr.ar_op == cpu_to_be16(ARPOP_REQUEST)) &&
1820 !memcmp(arp->ar_sip, arp->ar_tip, sizeof(arp->ar_sip)))
1821 return true;
1822 break;
1823 case cpu_to_be16(ETH_P_IPV6):
1824 /* can't say - but will probably be dropped later anyway */
1825 if (!pskb_may_pull(skb, sizeof(*eth) + sizeof(*ipv6) +
1826 sizeof(*icmpv6)))
1827 return false;
1828
1829 ipv6 = (void *)(eth + 1);
1830 icmpv6 = (void *)(ipv6 + 1);
1831
1832 if (icmpv6->icmp6_type == NDISC_NEIGHBOUR_ADVERTISEMENT &&
1833 !memcmp(&ipv6->saddr, &ipv6->daddr, sizeof(ipv6->saddr)))
1834 return true;
1835 break;
1836 default:
1837 /*
1838 * no need to support other protocols, proxy service isn't
1839 * specified for any others
1840 */
1841 break;
1842 }
1843
1844 return false;
1845}
1846EXPORT_SYMBOL(cfg80211_is_gratuitous_arp_unsolicited_na);