1 /*
2 * Common hostapd/wpa_supplicant HW features
3 * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
4 * Copyright (c) 2015, Qualcomm Atheros, Inc.
5 *
6 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
8 */
9
10 #include "includes.h"
11
12 #include "common.h"
13 #include "defs.h"
14 #include "ieee802_11_defs.h"
15 #include "ieee802_11_common.h"
16 #include "hw_features_common.h"
17
18
hw_get_channel_chan(struct hostapd_hw_modes * mode,int chan,int * freq)19 struct hostapd_channel_data * hw_get_channel_chan(struct hostapd_hw_modes *mode,
20 int chan, int *freq)
21 {
22 int i;
23
24 if (freq)
25 *freq = 0;
26
27 if (!mode)
28 return NULL;
29
30 for (i = 0; i < mode->num_channels; i++) {
31 struct hostapd_channel_data *ch = &mode->channels[i];
32 if (ch->chan == chan) {
33 if (freq)
34 *freq = ch->freq;
35 return ch;
36 }
37 }
38
39 return NULL;
40 }
41
42
43 struct hostapd_channel_data *
hw_mode_get_channel(struct hostapd_hw_modes * mode,int freq,int * chan)44 hw_mode_get_channel(struct hostapd_hw_modes *mode, int freq, int *chan)
45 {
46 int i;
47
48 for (i = 0; i < mode->num_channels; i++) {
49 struct hostapd_channel_data *ch = &mode->channels[i];
50
51 if (ch->freq == freq) {
52 if (chan)
53 *chan = ch->chan;
54 return ch;
55 }
56 }
57
58 return NULL;
59 }
60
61
62 struct hostapd_channel_data *
hw_get_channel_freq(enum hostapd_hw_mode mode,int freq,int * chan,struct hostapd_hw_modes * hw_features,int num_hw_features)63 hw_get_channel_freq(enum hostapd_hw_mode mode, int freq, int *chan,
64 struct hostapd_hw_modes *hw_features, int num_hw_features)
65 {
66 struct hostapd_channel_data *chan_data;
67 int i;
68
69 if (chan)
70 *chan = 0;
71
72 if (!hw_features)
73 return NULL;
74
75 for (i = 0; i < num_hw_features; i++) {
76 struct hostapd_hw_modes *curr_mode = &hw_features[i];
77
78 if (curr_mode->mode != mode)
79 continue;
80
81 chan_data = hw_mode_get_channel(curr_mode, freq, chan);
82 if (chan_data)
83 return chan_data;
84 }
85
86 return NULL;
87 }
88
89
hw_get_freq(struct hostapd_hw_modes * mode,int chan)90 int hw_get_freq(struct hostapd_hw_modes *mode, int chan)
91 {
92 int freq;
93
94 hw_get_channel_chan(mode, chan, &freq);
95
96 return freq;
97 }
98
99
hw_get_chan(enum hostapd_hw_mode mode,int freq,struct hostapd_hw_modes * hw_features,int num_hw_features)100 int hw_get_chan(enum hostapd_hw_mode mode, int freq,
101 struct hostapd_hw_modes *hw_features, int num_hw_features)
102 {
103 int chan;
104
105 hw_get_channel_freq(mode, freq, &chan, hw_features, num_hw_features);
106
107 return chan;
108 }
109
110
allowed_ht40_channel_pair(enum hostapd_hw_mode mode,struct hostapd_channel_data * p_chan,struct hostapd_channel_data * s_chan)111 int allowed_ht40_channel_pair(enum hostapd_hw_mode mode,
112 struct hostapd_channel_data *p_chan,
113 struct hostapd_channel_data *s_chan)
114 {
115 int ok, first;
116 int allowed[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 140,
117 149, 157, 165, 173, 184, 192 };
118 size_t k;
119 int ht40_plus, pri_chan, sec_chan;
120
121 if (!p_chan || !s_chan)
122 return 0;
123 pri_chan = p_chan->chan;
124 sec_chan = s_chan->chan;
125
126 ht40_plus = pri_chan < sec_chan;
127
128 if (pri_chan == sec_chan || !sec_chan) {
129 if (chan_pri_allowed(p_chan))
130 return 1; /* HT40 not used */
131
132 wpa_printf(MSG_ERROR, "Channel %d is not allowed as primary",
133 pri_chan);
134 return 0;
135 }
136
137 wpa_printf(MSG_DEBUG,
138 "HT40: control channel: %d (%d MHz), secondary channel: %d (%d MHz)",
139 pri_chan, p_chan->freq, sec_chan, s_chan->freq);
140
141 /* Verify that HT40 secondary channel is an allowed 20 MHz
142 * channel */
143 if ((s_chan->flag & HOSTAPD_CHAN_DISABLED) ||
144 (ht40_plus && !(p_chan->allowed_bw & HOSTAPD_CHAN_WIDTH_40P)) ||
145 (!ht40_plus && !(p_chan->allowed_bw & HOSTAPD_CHAN_WIDTH_40M))) {
146 wpa_printf(MSG_ERROR, "HT40 secondary channel %d not allowed",
147 sec_chan);
148 return 0;
149 }
150
151 /*
152 * Verify that HT40 primary,secondary channel pair is allowed per
153 * IEEE 802.11n Annex J. This is only needed for 5 GHz band since
154 * 2.4 GHz rules allow all cases where the secondary channel fits into
155 * the list of allowed channels (already checked above).
156 */
157 if (mode != HOSTAPD_MODE_IEEE80211A)
158 return 1;
159
160 first = pri_chan < sec_chan ? pri_chan : sec_chan;
161
162 ok = 0;
163 for (k = 0; k < ARRAY_SIZE(allowed); k++) {
164 if (first == allowed[k]) {
165 ok = 1;
166 break;
167 }
168 }
169 if (!ok) {
170 wpa_printf(MSG_ERROR, "HT40 channel pair (%d, %d) not allowed",
171 pri_chan, sec_chan);
172 return 0;
173 }
174
175 return 1;
176 }
177
178
get_pri_sec_chan(struct wpa_scan_res * bss,int * pri_chan,int * sec_chan)179 void get_pri_sec_chan(struct wpa_scan_res *bss, int *pri_chan, int *sec_chan)
180 {
181 struct ieee80211_ht_operation *oper;
182 struct ieee802_11_elems elems;
183
184 *pri_chan = *sec_chan = 0;
185
186 ieee802_11_parse_elems((u8 *) (bss + 1), bss->ie_len, &elems, 0);
187 if (elems.ht_operation) {
188 oper = (struct ieee80211_ht_operation *) elems.ht_operation;
189 *pri_chan = oper->primary_chan;
190 if (oper->ht_param & HT_INFO_HT_PARAM_STA_CHNL_WIDTH) {
191 int sec = oper->ht_param &
192 HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK;
193 if (sec == HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
194 *sec_chan = *pri_chan + 4;
195 else if (sec == HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
196 *sec_chan = *pri_chan - 4;
197 }
198 }
199 }
200
201
check_40mhz_5g(struct wpa_scan_results * scan_res,struct hostapd_channel_data * pri_chan,struct hostapd_channel_data * sec_chan)202 int check_40mhz_5g(struct wpa_scan_results *scan_res,
203 struct hostapd_channel_data *pri_chan,
204 struct hostapd_channel_data *sec_chan)
205 {
206 int pri_bss, sec_bss;
207 int bss_pri_chan, bss_sec_chan;
208 size_t i;
209 int match;
210
211 if (!scan_res || !pri_chan || !sec_chan ||
212 pri_chan->freq == sec_chan->freq)
213 return 0;
214
215 /*
216 * Switch PRI/SEC channels if Beacons were detected on selected SEC
217 * channel, but not on selected PRI channel.
218 */
219 pri_bss = sec_bss = 0;
220 for (i = 0; i < scan_res->num; i++) {
221 struct wpa_scan_res *bss = scan_res->res[i];
222 if (bss->freq == pri_chan->freq)
223 pri_bss++;
224 else if (bss->freq == sec_chan->freq)
225 sec_bss++;
226 }
227 if (sec_bss && !pri_bss) {
228 wpa_printf(MSG_INFO,
229 "Switch own primary and secondary channel to get secondary channel with no Beacons from other BSSes");
230 return 2;
231 }
232
233 /*
234 * Match PRI/SEC channel with any existing HT40 BSS on the same
235 * channels that we are about to use (if already mixed order in
236 * existing BSSes, use own preference).
237 */
238 match = 0;
239 for (i = 0; i < scan_res->num; i++) {
240 struct wpa_scan_res *bss = scan_res->res[i];
241 get_pri_sec_chan(bss, &bss_pri_chan, &bss_sec_chan);
242 if (pri_chan->chan == bss_pri_chan &&
243 sec_chan->chan == bss_sec_chan) {
244 match = 1;
245 break;
246 }
247 }
248 if (!match) {
249 for (i = 0; i < scan_res->num; i++) {
250 struct wpa_scan_res *bss = scan_res->res[i];
251 get_pri_sec_chan(bss, &bss_pri_chan, &bss_sec_chan);
252 if (pri_chan->chan == bss_sec_chan &&
253 sec_chan->chan == bss_pri_chan) {
254 wpa_printf(MSG_INFO, "Switch own primary and "
255 "secondary channel due to BSS "
256 "overlap with " MACSTR,
257 MAC2STR(bss->bssid));
258 return 2;
259 }
260 }
261 }
262
263 return 1;
264 }
265
266
check_20mhz_bss(struct wpa_scan_res * bss,int pri_freq,int start,int end)267 static int check_20mhz_bss(struct wpa_scan_res *bss, int pri_freq, int start,
268 int end)
269 {
270 struct ieee802_11_elems elems;
271 struct ieee80211_ht_operation *oper;
272
273 if (bss->freq < start || bss->freq > end || bss->freq == pri_freq)
274 return 0;
275
276 ieee802_11_parse_elems((u8 *) (bss + 1), bss->ie_len, &elems, 0);
277 if (!elems.ht_capabilities) {
278 wpa_printf(MSG_DEBUG, "Found overlapping legacy BSS: "
279 MACSTR " freq=%d", MAC2STR(bss->bssid), bss->freq);
280 return 1;
281 }
282
283 if (elems.ht_operation) {
284 oper = (struct ieee80211_ht_operation *) elems.ht_operation;
285 if (oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK)
286 return 0;
287
288 wpa_printf(MSG_DEBUG, "Found overlapping 20 MHz HT BSS: "
289 MACSTR " freq=%d", MAC2STR(bss->bssid), bss->freq);
290 return 1;
291 }
292 return 0;
293 }
294
295
check_40mhz_2g4(struct hostapd_hw_modes * mode,struct wpa_scan_results * scan_res,int pri_chan,int sec_chan)296 int check_40mhz_2g4(struct hostapd_hw_modes *mode,
297 struct wpa_scan_results *scan_res, int pri_chan,
298 int sec_chan)
299 {
300 int pri_freq, sec_freq;
301 int affected_start, affected_end;
302 size_t i;
303
304 if (!mode || !scan_res || !pri_chan || !sec_chan ||
305 pri_chan == sec_chan)
306 return 0;
307
308 pri_freq = hw_get_freq(mode, pri_chan);
309 sec_freq = hw_get_freq(mode, sec_chan);
310
311 affected_start = (pri_freq + sec_freq) / 2 - 25;
312 affected_end = (pri_freq + sec_freq) / 2 + 25;
313 wpa_printf(MSG_DEBUG, "40 MHz affected channel range: [%d,%d] MHz",
314 affected_start, affected_end);
315 for (i = 0; i < scan_res->num; i++) {
316 struct wpa_scan_res *bss = scan_res->res[i];
317 int pri = bss->freq;
318 int sec = pri;
319 struct ieee802_11_elems elems;
320
321 /* Check for overlapping 20 MHz BSS */
322 if (check_20mhz_bss(bss, pri_freq, affected_start,
323 affected_end)) {
324 wpa_printf(MSG_DEBUG,
325 "Overlapping 20 MHz BSS is found");
326 return 0;
327 }
328
329 get_pri_sec_chan(bss, &pri_chan, &sec_chan);
330
331 if (sec_chan) {
332 if (sec_chan < pri_chan)
333 sec = pri - 20;
334 else
335 sec = pri + 20;
336 }
337
338 if ((pri < affected_start || pri > affected_end) &&
339 (sec < affected_start || sec > affected_end))
340 continue; /* not within affected channel range */
341
342 wpa_printf(MSG_DEBUG, "Neighboring BSS: " MACSTR
343 " freq=%d pri=%d sec=%d",
344 MAC2STR(bss->bssid), bss->freq, pri_chan, sec_chan);
345
346 if (sec_chan) {
347 if (pri_freq != pri || sec_freq != sec) {
348 wpa_printf(MSG_DEBUG,
349 "40 MHz pri/sec mismatch with BSS "
350 MACSTR
351 " <%d,%d> (chan=%d%c) vs. <%d,%d>",
352 MAC2STR(bss->bssid),
353 pri, sec, pri_chan,
354 sec > pri ? '+' : '-',
355 pri_freq, sec_freq);
356 return 0;
357 }
358 }
359
360 ieee802_11_parse_elems((u8 *) (bss + 1), bss->ie_len, &elems,
361 0);
362 if (elems.ht_capabilities) {
363 struct ieee80211_ht_capabilities *ht_cap =
364 (struct ieee80211_ht_capabilities *)
365 elems.ht_capabilities;
366
367 if (le_to_host16(ht_cap->ht_capabilities_info) &
368 HT_CAP_INFO_40MHZ_INTOLERANT) {
369 wpa_printf(MSG_DEBUG,
370 "40 MHz Intolerant is set on channel %d in BSS "
371 MACSTR, pri, MAC2STR(bss->bssid));
372 return 0;
373 }
374 }
375 }
376
377 return 1;
378 }
379
380 #ifndef EXT_CODE_CROP
hostapd_set_freq_params(struct hostapd_freq_params * data,enum hostapd_hw_mode mode,int freq,int channel,int enable_edmg,u8 edmg_channel,int ht_enabled,int vht_enabled,int he_enabled,int sec_channel_offset,int oper_chwidth,int center_segment0,int center_segment1,u32 vht_caps,struct he_capabilities * he_cap)381 int hostapd_set_freq_params(struct hostapd_freq_params *data,
382 enum hostapd_hw_mode mode,
383 int freq, int channel, int enable_edmg,
384 u8 edmg_channel, int ht_enabled,
385 int vht_enabled, int he_enabled,
386 int sec_channel_offset,
387 int oper_chwidth, int center_segment0,
388 int center_segment1, u32 vht_caps,
389 struct he_capabilities *he_cap)
390
391 #else
392 int hostapd_set_freq_params(struct hostapd_freq_params *data,
393 enum hostapd_hw_mode mode,
394 int freq, int channel, int ht_enabled)
395 #endif /* EXT_CODE_CROP */
396 {
397 #ifndef EXT_CODE_CROP
398 if (!he_cap || !he_cap->he_supported)
399 he_enabled = 0;
400 #endif /* EXT_CODE_CROP */
401 os_memset(data, 0, sizeof(*data));
402 data->mode = mode;
403 data->freq = freq;
404 data->channel = channel;
405 data->ht_enabled = ht_enabled;
406 #ifndef EXT_CODE_CROP
407 data->vht_enabled = vht_enabled;
408 data->he_enabled = he_enabled;
409 data->sec_channel_offset = sec_channel_offset;
410 data->center_freq1 = freq + sec_channel_offset * 10;
411 data->center_freq2 = 0;
412 if (oper_chwidth == CHANWIDTH_80MHZ)
413 data->bandwidth = 80;
414 else if (oper_chwidth == CHANWIDTH_160MHZ ||
415 oper_chwidth == CHANWIDTH_80P80MHZ)
416 data->bandwidth = 160;
417 else if (sec_channel_offset)
418 data->bandwidth = 40;
419 else
420 data->bandwidth = 20;
421
422
423 hostapd_encode_edmg_chan(enable_edmg, edmg_channel, channel,
424 &data->edmg);
425
426 if (is_6ghz_freq(freq)) {
427 if (!data->he_enabled) {
428 wpa_printf(MSG_ERROR,
429 "Can't set 6 GHz mode - HE isn't enabled");
430 return -1;
431 }
432
433 if (center_idx_to_bw_6ghz(channel) < 0) {
434 wpa_printf(MSG_ERROR,
435 "Invalid control channel for 6 GHz band");
436 return -1;
437 }
438
439 if (!center_segment0) {
440 if (center_segment1) {
441 wpa_printf(MSG_ERROR,
442 "Segment 0 center frequency isn't set");
443 return -1;
444 }
445 if (!sec_channel_offset)
446 data->center_freq1 = data->freq;
447 } else {
448 int freq1, freq2 = 0;
449 int bw = center_idx_to_bw_6ghz(center_segment0);
450
451 if (bw < 0) {
452 wpa_printf(MSG_ERROR,
453 "Invalid center frequency index for 6 GHz");
454 return -1;
455 }
456
457 freq1 = ieee80211_chan_to_freq(NULL, 131,
458 center_segment0);
459 if (freq1 < 0) {
460 wpa_printf(MSG_ERROR,
461 "Invalid segment 0 center frequency for 6 GHz");
462 return -1;
463 }
464
465 if (center_segment1) {
466 if (center_idx_to_bw_6ghz(center_segment1) != 2 ||
467 bw != 2) {
468 wpa_printf(MSG_ERROR,
469 "6 GHz 80+80 MHz configuration doesn't use valid 80 MHz channels");
470 return -1;
471 }
472
473 freq2 = ieee80211_chan_to_freq(NULL, 131,
474 center_segment1);
475 if (freq2 < 0) {
476 wpa_printf(MSG_ERROR,
477 "Invalid segment 1 center frequency for UHB");
478 return -1;
479 }
480 }
481
482 data->bandwidth = (1 << (u8) bw) * 20;
483 data->center_freq1 = freq1;
484 data->center_freq2 = freq2;
485 }
486 data->ht_enabled = 0;
487 data->vht_enabled = 0;
488
489 return 0;
490 }
491
492 if (data->he_enabled) switch (oper_chwidth) {
493 case CHANWIDTH_USE_HT:
494 if (sec_channel_offset == 0)
495 break;
496
497 if (mode == HOSTAPD_MODE_IEEE80211G) {
498 if (!(he_cap->phy_cap[HE_PHYCAP_CHANNEL_WIDTH_SET_IDX] &
499 HE_PHYCAP_CHANNEL_WIDTH_SET_40MHZ_IN_2G)) {
500 wpa_printf(MSG_ERROR,
501 "40 MHz channel width is not supported in 2.4 GHz");
502 return -1;
503 }
504 break;
505 }
506 /* fall through */
507 case CHANWIDTH_80MHZ:
508 if (mode == HOSTAPD_MODE_IEEE80211A) {
509 if (!(he_cap->phy_cap[HE_PHYCAP_CHANNEL_WIDTH_SET_IDX] &
510 HE_PHYCAP_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G)) {
511 wpa_printf(MSG_ERROR,
512 "40/80 MHz channel width is not supported in 5/6 GHz");
513 return -1;
514 }
515 }
516 break;
517 case CHANWIDTH_80P80MHZ:
518 if (!(he_cap->phy_cap[HE_PHYCAP_CHANNEL_WIDTH_SET_IDX] &
519 HE_PHYCAP_CHANNEL_WIDTH_SET_80PLUS80MHZ_IN_5G)) {
520 wpa_printf(MSG_ERROR,
521 "80+80 MHz channel width is not supported in 5/6 GHz");
522 return -1;
523 }
524 break;
525 case CHANWIDTH_160MHZ:
526 if (!(he_cap->phy_cap[HE_PHYCAP_CHANNEL_WIDTH_SET_IDX] &
527 HE_PHYCAP_CHANNEL_WIDTH_SET_160MHZ_IN_5G)) {
528 wpa_printf(MSG_ERROR,
529 "160 MHz channel width is not supported in 5 / 6GHz");
530 return -1;
531 }
532 break;
533 } else if (data->vht_enabled) switch (oper_chwidth) {
534 case CHANWIDTH_USE_HT:
535 break;
536 case CHANWIDTH_80P80MHZ:
537 if (!(vht_caps & VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ)) {
538 wpa_printf(MSG_ERROR,
539 "80+80 channel width is not supported!");
540 return -1;
541 }
542 /* fall through */
543 case CHANWIDTH_80MHZ:
544 break;
545 case CHANWIDTH_160MHZ:
546 if (!(vht_caps & (VHT_CAP_SUPP_CHAN_WIDTH_160MHZ |
547 VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ))) {
548 wpa_printf(MSG_ERROR,
549 "160 MHz channel width is not supported!");
550 return -1;
551 }
552 break;
553 }
554
555 if (data->he_enabled || data->vht_enabled) switch (oper_chwidth) {
556 case CHANWIDTH_USE_HT:
557 if (center_segment1 ||
558 (center_segment0 != 0 &&
559 5000 + center_segment0 * 5 != data->center_freq1 &&
560 2407 + center_segment0 * 5 != data->center_freq1)) {
561 wpa_printf(MSG_ERROR,
562 "20/40 MHz: center segment 0 (=%d) and center freq 1 (=%d) not in sync",
563 center_segment0, data->center_freq1);
564 return -1;
565 }
566 break;
567 case CHANWIDTH_80P80MHZ:
568 if (center_segment1 == center_segment0 + 4 ||
569 center_segment1 == center_segment0 - 4) {
570 wpa_printf(MSG_ERROR,
571 "80+80 MHz: center segment 1 only 20 MHz apart");
572 return -1;
573 }
574 data->center_freq2 = 5000 + center_segment1 * 5;
575 /* fall through */
576 case CHANWIDTH_80MHZ:
577 data->bandwidth = 80;
578 if (!sec_channel_offset) {
579 wpa_printf(MSG_ERROR,
580 "80/80+80 MHz: no second channel offset");
581 return -1;
582 }
583 if (oper_chwidth == CHANWIDTH_80MHZ && center_segment1) {
584 wpa_printf(MSG_ERROR,
585 "80 MHz: center segment 1 configured");
586 return -1;
587 }
588 if (oper_chwidth == CHANWIDTH_80P80MHZ && !center_segment1) {
589 wpa_printf(MSG_ERROR,
590 "80+80 MHz: center segment 1 not configured");
591 return -1;
592 }
593 if (!center_segment0) {
594 if (channel <= 48)
595 center_segment0 = 42;
596 else if (channel <= 64)
597 center_segment0 = 58;
598 else if (channel <= 112)
599 center_segment0 = 106;
600 else if (channel <= 128)
601 center_segment0 = 122;
602 else if (channel <= 144)
603 center_segment0 = 138;
604 else if (channel <= 161)
605 center_segment0 = 155;
606 else if (channel <= 177)
607 center_segment0 = 171;
608 data->center_freq1 = 5000 + center_segment0 * 5;
609 } else {
610 /*
611 * Note: HT/VHT config and params are coupled. Check if
612 * HT40 channel band is in VHT80 Pri channel band
613 * configuration.
614 */
615 if (center_segment0 == channel + 6 ||
616 center_segment0 == channel + 2 ||
617 center_segment0 == channel - 2 ||
618 center_segment0 == channel - 6)
619 data->center_freq1 = 5000 + center_segment0 * 5;
620 else {
621 wpa_printf(MSG_ERROR,
622 "Wrong coupling between HT and VHT/HE channel setting");
623 return -1;
624 }
625 }
626 break;
627 case CHANWIDTH_160MHZ:
628 data->bandwidth = 160;
629 if (center_segment1) {
630 wpa_printf(MSG_ERROR,
631 "160 MHz: center segment 1 should not be set");
632 return -1;
633 }
634 if (!sec_channel_offset) {
635 wpa_printf(MSG_ERROR,
636 "160 MHz: second channel offset not set");
637 return -1;
638 }
639 /*
640 * Note: HT/VHT config and params are coupled. Check if
641 * HT40 channel band is in VHT160 channel band configuration.
642 */
643 if (center_segment0 == channel + 14 ||
644 center_segment0 == channel + 10 ||
645 center_segment0 == channel + 6 ||
646 center_segment0 == channel + 2 ||
647 center_segment0 == channel - 2 ||
648 center_segment0 == channel - 6 ||
649 center_segment0 == channel - 10 ||
650 center_segment0 == channel - 14)
651 data->center_freq1 = 5000 + center_segment0 * 5;
652 else {
653 wpa_printf(MSG_ERROR,
654 "160 MHz: HT40 channel band is not in 160 MHz band");
655 return -1;
656 }
657 break;
658 }
659 #else
660 data->center_freq1 = freq;
661 #endif /* EXT_CODE_CROP */
662 return 0;
663 }
664
665 #ifndef EXT_CODE_CROP
set_disable_ht40(struct ieee80211_ht_capabilities * htcaps,int disabled)666 void set_disable_ht40(struct ieee80211_ht_capabilities *htcaps,
667 int disabled)
668 {
669 /* Masking these out disables HT40 */
670 le16 msk = host_to_le16(HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET |
671 HT_CAP_INFO_SHORT_GI40MHZ);
672
673 if (disabled)
674 htcaps->ht_capabilities_info &= ~msk;
675 else
676 htcaps->ht_capabilities_info |= msk;
677 }
678 #endif /* EXT_CODE_CROP */
679
680 #ifdef CONFIG_IEEE80211AC
681
_ieee80211ac_cap_check(u32 hw,u32 conf,u32 cap,const char * name)682 static int _ieee80211ac_cap_check(u32 hw, u32 conf, u32 cap,
683 const char *name)
684 {
685 u32 req_cap = conf & cap;
686
687 /*
688 * Make sure we support all requested capabilities.
689 * NOTE: We assume that 'cap' represents a capability mask,
690 * not a discrete value.
691 */
692 if ((hw & req_cap) != req_cap) {
693 wpa_printf(MSG_ERROR,
694 "Driver does not support configured VHT capability [%s]",
695 name);
696 return 0;
697 }
698 return 1;
699 }
700
701
ieee80211ac_cap_check_max(u32 hw,u32 conf,u32 mask,unsigned int shift,const char * name)702 static int ieee80211ac_cap_check_max(u32 hw, u32 conf, u32 mask,
703 unsigned int shift,
704 const char *name)
705 {
706 u32 hw_max = hw & mask;
707 u32 conf_val = conf & mask;
708
709 if (conf_val > hw_max) {
710 wpa_printf(MSG_ERROR,
711 "Configured VHT capability [%s] exceeds max value supported by the driver (%d > %d)",
712 name, conf_val >> shift, hw_max >> shift);
713 return 0;
714 }
715 return 1;
716 }
717
718
ieee80211ac_cap_check(u32 hw,u32 conf)719 int ieee80211ac_cap_check(u32 hw, u32 conf)
720 {
721 #define VHT_CAP_CHECK(cap) \
722 do { \
723 if (!_ieee80211ac_cap_check(hw, conf, cap, #cap)) \
724 return 0; \
725 } while (0)
726
727 #define VHT_CAP_CHECK_MAX(cap) \
728 do { \
729 if (!ieee80211ac_cap_check_max(hw, conf, cap, cap ## _SHIFT, \
730 #cap)) \
731 return 0; \
732 } while (0)
733
734 VHT_CAP_CHECK_MAX(VHT_CAP_MAX_MPDU_LENGTH_MASK);
735 VHT_CAP_CHECK_MAX(VHT_CAP_SUPP_CHAN_WIDTH_MASK);
736 VHT_CAP_CHECK(VHT_CAP_RXLDPC);
737 VHT_CAP_CHECK(VHT_CAP_SHORT_GI_80);
738 VHT_CAP_CHECK(VHT_CAP_SHORT_GI_160);
739 VHT_CAP_CHECK(VHT_CAP_TXSTBC);
740 VHT_CAP_CHECK_MAX(VHT_CAP_RXSTBC_MASK);
741 VHT_CAP_CHECK(VHT_CAP_SU_BEAMFORMER_CAPABLE);
742 VHT_CAP_CHECK(VHT_CAP_SU_BEAMFORMEE_CAPABLE);
743 VHT_CAP_CHECK_MAX(VHT_CAP_BEAMFORMEE_STS_MAX);
744 VHT_CAP_CHECK_MAX(VHT_CAP_SOUNDING_DIMENSION_MAX);
745 VHT_CAP_CHECK(VHT_CAP_MU_BEAMFORMER_CAPABLE);
746 VHT_CAP_CHECK(VHT_CAP_MU_BEAMFORMEE_CAPABLE);
747 VHT_CAP_CHECK(VHT_CAP_VHT_TXOP_PS);
748 VHT_CAP_CHECK(VHT_CAP_HTC_VHT);
749 VHT_CAP_CHECK_MAX(VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX);
750 VHT_CAP_CHECK(VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB);
751 VHT_CAP_CHECK(VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB);
752 VHT_CAP_CHECK(VHT_CAP_RX_ANTENNA_PATTERN);
753 VHT_CAP_CHECK(VHT_CAP_TX_ANTENNA_PATTERN);
754
755 #undef VHT_CAP_CHECK
756 #undef VHT_CAP_CHECK_MAX
757
758 return 1;
759 }
760
761 #endif /* CONFIG_IEEE80211AC */
762
763 #if !defined(EXT_CODE_CROP) || defined(CONFIG_ACS)
num_chan_to_bw(int num_chans)764 u32 num_chan_to_bw(int num_chans)
765 {
766 switch (num_chans) {
767 case 2:
768 case 4:
769 case 8:
770 return num_chans * 20;
771 default:
772 return 20;
773 }
774 }
775
776
777 /* check if BW is applicable for channel */
chan_bw_allowed(const struct hostapd_channel_data * chan,u32 bw,int ht40_plus,int pri)778 int chan_bw_allowed(const struct hostapd_channel_data *chan, u32 bw,
779 int ht40_plus, int pri)
780 {
781 u32 bw_mask;
782
783 switch (bw) {
784 case 20:
785 bw_mask = HOSTAPD_CHAN_WIDTH_20;
786 break;
787 case 40:
788 /* HT 40 MHz support declared only for primary channel,
789 * just skip 40 MHz secondary checking */
790 if (pri && ht40_plus)
791 bw_mask = HOSTAPD_CHAN_WIDTH_40P;
792 else if (pri && !ht40_plus)
793 bw_mask = HOSTAPD_CHAN_WIDTH_40M;
794 else
795 bw_mask = 0;
796 break;
797 case 80:
798 bw_mask = HOSTAPD_CHAN_WIDTH_80;
799 break;
800 case 160:
801 bw_mask = HOSTAPD_CHAN_WIDTH_160;
802 break;
803 default:
804 bw_mask = 0;
805 break;
806 }
807
808 return (chan->allowed_bw & bw_mask) == bw_mask;
809 }
810
811
812 /* check if channel is allowed to be used as primary */
chan_pri_allowed(const struct hostapd_channel_data * chan)813 int chan_pri_allowed(const struct hostapd_channel_data *chan)
814 {
815 return !(chan->flag & HOSTAPD_CHAN_DISABLED) &&
816 (chan->allowed_bw & HOSTAPD_CHAN_WIDTH_20);
817 }
818 #endif /* !defined(EXT_CODE_CROP) || defined(CONFIG_ACS) */
819