blob: 79cd00f44a780c9a6e1a9b254a0b66e581cf1e30 [file] [log] [blame]
Dmitry Shmidt051af732013-10-22 13:52:46 -07001/*
2 * DFS - Dynamic Frequency Selection
3 * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004 * Copyright (c) 2013-2017, Qualcomm Atheros, Inc.
Dmitry Shmidt051af732013-10-22 13:52:46 -07005 *
6 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
8 */
9
10#include "utils/includes.h"
11
12#include "utils/common.h"
13#include "common/ieee802_11_defs.h"
Dmitry Shmidt7f656022015-02-25 14:36:37 -080014#include "common/hw_features_common.h"
Dmitry Shmidtcce06662013-11-04 18:44:24 -080015#include "common/wpa_ctrl.h"
Dmitry Shmidt051af732013-10-22 13:52:46 -070016#include "hostapd.h"
17#include "ap_drv_ops.h"
18#include "drivers/driver.h"
19#include "dfs.h"
20
21
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -070022static int dfs_get_used_n_chans(struct hostapd_iface *iface, int *seg1)
Dmitry Shmidt051af732013-10-22 13:52:46 -070023{
24 int n_chans = 1;
25
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -070026 *seg1 = 0;
27
Dmitry Shmidtcce06662013-11-04 18:44:24 -080028 if (iface->conf->ieee80211n && iface->conf->secondary_channel)
Dmitry Shmidt051af732013-10-22 13:52:46 -070029 n_chans = 2;
30
Hai Shalomf1c97642019-07-19 23:42:07 +000031 if (iface->conf->ieee80211ac) {
32 switch (iface->conf->vht_oper_chwidth) {
33 case VHT_CHANWIDTH_USE_HT:
Dmitry Shmidt051af732013-10-22 13:52:46 -070034 break;
Hai Shalomf1c97642019-07-19 23:42:07 +000035 case VHT_CHANWIDTH_80MHZ:
Dmitry Shmidt051af732013-10-22 13:52:46 -070036 n_chans = 4;
37 break;
Hai Shalomf1c97642019-07-19 23:42:07 +000038 case VHT_CHANWIDTH_160MHZ:
Dmitry Shmidt051af732013-10-22 13:52:46 -070039 n_chans = 8;
40 break;
Hai Shalomf1c97642019-07-19 23:42:07 +000041 case VHT_CHANWIDTH_80P80MHZ:
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -070042 n_chans = 4;
43 *seg1 = 4;
44 break;
Dmitry Shmidt051af732013-10-22 13:52:46 -070045 default:
46 break;
47 }
48 }
49
50 return n_chans;
51}
52
53
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080054static int dfs_channel_available(struct hostapd_channel_data *chan,
55 int skip_radar)
Dmitry Shmidt051af732013-10-22 13:52:46 -070056{
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080057 /*
58 * When radar detection happens, CSA is performed. However, there's no
59 * time for CAC, so radar channels must be skipped when finding a new
Dmitry Shmidt98660862014-03-11 17:26:21 -070060 * channel for CSA, unless they are available for immediate use.
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080061 */
Dmitry Shmidt98660862014-03-11 17:26:21 -070062 if (skip_radar && (chan->flag & HOSTAPD_CHAN_RADAR) &&
63 ((chan->flag & HOSTAPD_CHAN_DFS_MASK) !=
64 HOSTAPD_CHAN_DFS_AVAILABLE))
Dmitry Shmidt04f534e2013-12-09 15:50:16 -080065 return 0;
66
Dmitry Shmidt051af732013-10-22 13:52:46 -070067 if (chan->flag & HOSTAPD_CHAN_DISABLED)
68 return 0;
69 if ((chan->flag & HOSTAPD_CHAN_RADAR) &&
70 ((chan->flag & HOSTAPD_CHAN_DFS_MASK) ==
71 HOSTAPD_CHAN_DFS_UNAVAILABLE))
72 return 0;
73 return 1;
74}
75
76
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070077static int dfs_is_chan_allowed(struct hostapd_channel_data *chan, int n_chans)
Dmitry Shmidt051af732013-10-22 13:52:46 -070078{
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070079 /*
80 * The tables contain first valid channel number based on channel width.
81 * We will also choose this first channel as the control one.
82 */
83 int allowed_40[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157,
84 184, 192 };
85 /*
86 * VHT80, valid channels based on center frequency:
87 * 42, 58, 106, 122, 138, 155
88 */
89 int allowed_80[] = { 36, 52, 100, 116, 132, 149 };
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080090 /*
91 * VHT160 valid channels based on center frequency:
92 * 50, 114
93 */
94 int allowed_160[] = { 36, 100 };
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070095 int *allowed = allowed_40;
96 unsigned int i, allowed_no = 0;
Dmitry Shmidt051af732013-10-22 13:52:46 -070097
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -070098 switch (n_chans) {
99 case 2:
100 allowed = allowed_40;
101 allowed_no = ARRAY_SIZE(allowed_40);
102 break;
103 case 4:
104 allowed = allowed_80;
105 allowed_no = ARRAY_SIZE(allowed_80);
106 break;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800107 case 8:
108 allowed = allowed_160;
109 allowed_no = ARRAY_SIZE(allowed_160);
110 break;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700111 default:
112 wpa_printf(MSG_DEBUG, "Unknown width for %d channels", n_chans);
113 break;
114 }
115
116 for (i = 0; i < allowed_no; i++) {
Dmitry Shmidt051af732013-10-22 13:52:46 -0700117 if (chan->chan == allowed[i])
118 return 1;
119 }
120
121 return 0;
122}
123
124
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700125static struct hostapd_channel_data *
126dfs_get_chan_data(struct hostapd_hw_modes *mode, int freq, int first_chan_idx)
127{
128 int i;
129
130 for (i = first_chan_idx; i < mode->num_channels; i++) {
131 if (mode->channels[i].freq == freq)
132 return &mode->channels[i];
133 }
134
135 return NULL;
136}
137
138
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800139static int dfs_chan_range_available(struct hostapd_hw_modes *mode,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800140 int first_chan_idx, int num_chans,
141 int skip_radar)
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800142{
143 struct hostapd_channel_data *first_chan, *chan;
144 int i;
Hai Shalom74f70d42019-02-11 14:42:39 -0800145 u32 bw = num_chan_to_bw(num_chans);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800146
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700147 if (first_chan_idx + num_chans > mode->num_channels)
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800148 return 0;
149
150 first_chan = &mode->channels[first_chan_idx];
151
Hai Shalom74f70d42019-02-11 14:42:39 -0800152 /* hostapd DFS implementation assumes the first channel as primary.
153 * If it's not allowed to use the first channel as primary, decline the
154 * whole channel range. */
155 if (!chan_pri_allowed(first_chan))
156 return 0;
157
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800158 for (i = 0; i < num_chans; i++) {
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700159 chan = dfs_get_chan_data(mode, first_chan->freq + i * 20,
160 first_chan_idx);
161 if (!chan)
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800162 return 0;
163
Hai Shalom74f70d42019-02-11 14:42:39 -0800164 /* HT 40 MHz secondary channel availability checked only for
165 * primary channel */
166 if (!chan_bw_allowed(chan, bw, 1, !i))
167 return 0;
168
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800169 if (!dfs_channel_available(chan, skip_radar))
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800170 return 0;
171 }
172
173 return 1;
174}
175
176
Dmitry Shmidt98660862014-03-11 17:26:21 -0700177static int is_in_chanlist(struct hostapd_iface *iface,
178 struct hostapd_channel_data *chan)
179{
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700180 if (!iface->conf->acs_ch_list.num)
Dmitry Shmidt98660862014-03-11 17:26:21 -0700181 return 1;
182
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700183 return freq_range_list_includes(&iface->conf->acs_ch_list, chan->chan);
Dmitry Shmidt98660862014-03-11 17:26:21 -0700184}
185
186
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800187/*
188 * The function assumes HT40+ operation.
189 * Make sure to adjust the following variables after calling this:
190 * - hapd->secondary_channel
Hai Shalomf1c97642019-07-19 23:42:07 +0000191 * - hapd->vht_oper_centr_freq_seg0_idx
192 * - hapd->vht_oper_centr_freq_seg1_idx
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800193 */
194static int dfs_find_channel(struct hostapd_iface *iface,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700195 struct hostapd_channel_data **ret_chan,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800196 int idx, int skip_radar)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700197{
198 struct hostapd_hw_modes *mode;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800199 struct hostapd_channel_data *chan;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700200 int i, channel_idx = 0, n_chans, n_chans1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700201
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800202 mode = iface->current_mode;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700203 n_chans = dfs_get_used_n_chans(iface, &n_chans1);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700204
205 wpa_printf(MSG_DEBUG, "DFS new chan checking %d channels", n_chans);
206 for (i = 0; i < mode->num_channels; i++) {
207 chan = &mode->channels[i];
208
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800209 /* Skip HT40/VHT incompatible channels */
210 if (iface->conf->ieee80211n &&
211 iface->conf->secondary_channel &&
Hai Shalom74f70d42019-02-11 14:42:39 -0800212 (!dfs_is_chan_allowed(chan, n_chans) ||
213 !(chan->allowed_bw & HOSTAPD_CHAN_WIDTH_40P)))
Dmitry Shmidt051af732013-10-22 13:52:46 -0700214 continue;
215
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800216 /* Skip incompatible chandefs */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800217 if (!dfs_chan_range_available(mode, i, n_chans, skip_radar))
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800218 continue;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700219
Dmitry Shmidt98660862014-03-11 17:26:21 -0700220 if (!is_in_chanlist(iface, chan))
221 continue;
222
Dmitry Shmidt051af732013-10-22 13:52:46 -0700223 if (ret_chan && idx == channel_idx) {
224 wpa_printf(MSG_DEBUG, "Selected ch. #%d", chan->chan);
225 *ret_chan = chan;
226 return idx;
227 }
228 wpa_printf(MSG_DEBUG, "Adding channel: %d", chan->chan);
229 channel_idx++;
230 }
231 return channel_idx;
232}
233
234
Hai Shalomf1c97642019-07-19 23:42:07 +0000235static void dfs_adjust_vht_center_freq(struct hostapd_iface *iface,
236 struct hostapd_channel_data *chan,
237 int secondary_channel,
238 u8 *vht_oper_centr_freq_seg0_idx,
239 u8 *vht_oper_centr_freq_seg1_idx)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700240{
Hai Shalomf1c97642019-07-19 23:42:07 +0000241 if (!iface->conf->ieee80211ac)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700242 return;
243
244 if (!chan)
245 return;
246
Hai Shalomf1c97642019-07-19 23:42:07 +0000247 *vht_oper_centr_freq_seg1_idx = 0;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800248
Hai Shalomf1c97642019-07-19 23:42:07 +0000249 switch (iface->conf->vht_oper_chwidth) {
250 case VHT_CHANWIDTH_USE_HT:
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800251 if (secondary_channel == 1)
Hai Shalomf1c97642019-07-19 23:42:07 +0000252 *vht_oper_centr_freq_seg0_idx = chan->chan + 2;
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800253 else if (secondary_channel == -1)
Hai Shalomf1c97642019-07-19 23:42:07 +0000254 *vht_oper_centr_freq_seg0_idx = chan->chan - 2;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700255 else
Hai Shalomf1c97642019-07-19 23:42:07 +0000256 *vht_oper_centr_freq_seg0_idx = chan->chan;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700257 break;
Hai Shalomf1c97642019-07-19 23:42:07 +0000258 case VHT_CHANWIDTH_80MHZ:
259 *vht_oper_centr_freq_seg0_idx = chan->chan + 6;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700260 break;
Hai Shalomf1c97642019-07-19 23:42:07 +0000261 case VHT_CHANWIDTH_160MHZ:
262 *vht_oper_centr_freq_seg0_idx = chan->chan + 14;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700263 break;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700264 default:
265 wpa_printf(MSG_INFO, "DFS only VHT20/40/80/160 is supported now");
Hai Shalomf1c97642019-07-19 23:42:07 +0000266 *vht_oper_centr_freq_seg0_idx = 0;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700267 break;
268 }
269
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800270 wpa_printf(MSG_DEBUG, "DFS adjusting VHT center frequency: %d, %d",
Hai Shalomf1c97642019-07-19 23:42:07 +0000271 *vht_oper_centr_freq_seg0_idx,
272 *vht_oper_centr_freq_seg1_idx);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700273}
274
275
276/* Return start channel idx we will use for mode->channels[idx] */
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700277static int dfs_get_start_chan_idx(struct hostapd_iface *iface, int *seg1_start)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700278{
279 struct hostapd_hw_modes *mode;
280 struct hostapd_channel_data *chan;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800281 int channel_no = iface->conf->channel;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700282 int res = -1, i;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700283 int chan_seg1 = -1;
284
285 *seg1_start = -1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700286
287 /* HT40- */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800288 if (iface->conf->ieee80211n && iface->conf->secondary_channel == -1)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700289 channel_no -= 4;
290
Hai Shalomf1c97642019-07-19 23:42:07 +0000291 /* VHT */
292 if (iface->conf->ieee80211ac) {
293 switch (iface->conf->vht_oper_chwidth) {
294 case VHT_CHANWIDTH_USE_HT:
Dmitry Shmidt051af732013-10-22 13:52:46 -0700295 break;
Hai Shalomf1c97642019-07-19 23:42:07 +0000296 case VHT_CHANWIDTH_80MHZ:
297 channel_no =
298 iface->conf->vht_oper_centr_freq_seg0_idx - 6;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700299 break;
Hai Shalomf1c97642019-07-19 23:42:07 +0000300 case VHT_CHANWIDTH_160MHZ:
301 channel_no =
302 iface->conf->vht_oper_centr_freq_seg0_idx - 14;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700303 break;
Hai Shalomf1c97642019-07-19 23:42:07 +0000304 case VHT_CHANWIDTH_80P80MHZ:
305 channel_no =
306 iface->conf->vht_oper_centr_freq_seg0_idx - 6;
307 chan_seg1 =
308 iface->conf->vht_oper_centr_freq_seg1_idx - 6;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700309 break;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700310 default:
311 wpa_printf(MSG_INFO,
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700312 "DFS only VHT20/40/80/160/80+80 is supported now");
Dmitry Shmidt051af732013-10-22 13:52:46 -0700313 channel_no = -1;
314 break;
315 }
316 }
317
318 /* Get idx */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800319 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700320 for (i = 0; i < mode->num_channels; i++) {
321 chan = &mode->channels[i];
322 if (chan->chan == channel_no) {
323 res = i;
324 break;
325 }
326 }
327
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700328 if (res != -1 && chan_seg1 > -1) {
329 int found = 0;
330
331 /* Get idx for seg1 */
332 mode = iface->current_mode;
333 for (i = 0; i < mode->num_channels; i++) {
334 chan = &mode->channels[i];
335 if (chan->chan == chan_seg1) {
336 *seg1_start = i;
337 found = 1;
338 break;
339 }
340 }
341 if (!found)
342 res = -1;
343 }
344
Dmitry Shmidt98660862014-03-11 17:26:21 -0700345 if (res == -1) {
346 wpa_printf(MSG_DEBUG,
347 "DFS chan_idx seems wrong; num-ch: %d ch-no: %d conf-ch-no: %d 11n: %d sec-ch: %d vht-oper-width: %d",
348 mode->num_channels, channel_no, iface->conf->channel,
349 iface->conf->ieee80211n,
350 iface->conf->secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000351 iface->conf->vht_oper_chwidth);
Dmitry Shmidt98660862014-03-11 17:26:21 -0700352
353 for (i = 0; i < mode->num_channels; i++) {
354 wpa_printf(MSG_DEBUG, "Available channel: %d",
355 mode->channels[i].chan);
356 }
357 }
Dmitry Shmidt051af732013-10-22 13:52:46 -0700358
359 return res;
360}
361
362
363/* At least one channel have radar flag */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800364static int dfs_check_chans_radar(struct hostapd_iface *iface,
365 int start_chan_idx, int n_chans)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700366{
367 struct hostapd_channel_data *channel;
368 struct hostapd_hw_modes *mode;
369 int i, res = 0;
370
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800371 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700372
373 for (i = 0; i < n_chans; i++) {
374 channel = &mode->channels[start_chan_idx + i];
375 if (channel->flag & HOSTAPD_CHAN_RADAR)
376 res++;
377 }
378
379 return res;
380}
381
382
383/* All channels available */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800384static int dfs_check_chans_available(struct hostapd_iface *iface,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700385 int start_chan_idx, int n_chans)
386{
387 struct hostapd_channel_data *channel;
388 struct hostapd_hw_modes *mode;
389 int i;
390
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800391 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700392
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800393 for (i = 0; i < n_chans; i++) {
Dmitry Shmidt051af732013-10-22 13:52:46 -0700394 channel = &mode->channels[start_chan_idx + i];
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800395
396 if (channel->flag & HOSTAPD_CHAN_DISABLED)
397 break;
398
399 if (!(channel->flag & HOSTAPD_CHAN_RADAR))
400 continue;
401
Dmitry Shmidt051af732013-10-22 13:52:46 -0700402 if ((channel->flag & HOSTAPD_CHAN_DFS_MASK) !=
403 HOSTAPD_CHAN_DFS_AVAILABLE)
404 break;
405 }
406
407 return i == n_chans;
408}
409
410
411/* At least one channel unavailable */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800412static int dfs_check_chans_unavailable(struct hostapd_iface *iface,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700413 int start_chan_idx,
414 int n_chans)
415{
416 struct hostapd_channel_data *channel;
417 struct hostapd_hw_modes *mode;
418 int i, res = 0;
419
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800420 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700421
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800422 for (i = 0; i < n_chans; i++) {
Dmitry Shmidt051af732013-10-22 13:52:46 -0700423 channel = &mode->channels[start_chan_idx + i];
424 if (channel->flag & HOSTAPD_CHAN_DISABLED)
425 res++;
426 if ((channel->flag & HOSTAPD_CHAN_DFS_MASK) ==
427 HOSTAPD_CHAN_DFS_UNAVAILABLE)
428 res++;
429 }
430
431 return res;
432}
433
434
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800435static struct hostapd_channel_data *
436dfs_get_valid_channel(struct hostapd_iface *iface,
437 int *secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000438 u8 *vht_oper_centr_freq_seg0_idx,
439 u8 *vht_oper_centr_freq_seg1_idx,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800440 int skip_radar)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700441{
442 struct hostapd_hw_modes *mode;
443 struct hostapd_channel_data *chan = NULL;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800444 int num_available_chandefs;
445 int chan_idx;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700446 u32 _rand;
447
448 wpa_printf(MSG_DEBUG, "DFS: Selecting random channel");
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800449 *secondary_channel = 0;
Hai Shalomf1c97642019-07-19 23:42:07 +0000450 *vht_oper_centr_freq_seg0_idx = 0;
451 *vht_oper_centr_freq_seg1_idx = 0;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700452
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800453 if (iface->current_mode == NULL)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700454 return NULL;
455
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800456 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700457 if (mode->mode != HOSTAPD_MODE_IEEE80211A)
458 return NULL;
459
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800460 /* Get the count first */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800461 num_available_chandefs = dfs_find_channel(iface, NULL, 0, skip_radar);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800462 if (num_available_chandefs == 0)
463 return NULL;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700464
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800465 if (os_get_random((u8 *) &_rand, sizeof(_rand)) < 0)
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800466 return NULL;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800467 chan_idx = _rand % num_available_chandefs;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800468 dfs_find_channel(iface, &chan, chan_idx, skip_radar);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800469
470 /* dfs_find_channel() calculations assume HT40+ */
471 if (iface->conf->secondary_channel)
472 *secondary_channel = 1;
473 else
474 *secondary_channel = 0;
475
Hai Shalomf1c97642019-07-19 23:42:07 +0000476 dfs_adjust_vht_center_freq(iface, chan,
477 *secondary_channel,
478 vht_oper_centr_freq_seg0_idx,
479 vht_oper_centr_freq_seg1_idx);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700480
481 return chan;
482}
483
484
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800485static int set_dfs_state_freq(struct hostapd_iface *iface, int freq, u32 state)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700486{
487 struct hostapd_hw_modes *mode;
488 struct hostapd_channel_data *chan = NULL;
489 int i;
490
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800491 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700492 if (mode == NULL)
493 return 0;
494
495 wpa_printf(MSG_DEBUG, "set_dfs_state 0x%X for %d MHz", state, freq);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800496 for (i = 0; i < iface->current_mode->num_channels; i++) {
497 chan = &iface->current_mode->channels[i];
Dmitry Shmidt051af732013-10-22 13:52:46 -0700498 if (chan->freq == freq) {
499 if (chan->flag & HOSTAPD_CHAN_RADAR) {
500 chan->flag &= ~HOSTAPD_CHAN_DFS_MASK;
501 chan->flag |= state;
502 return 1; /* Channel found */
503 }
504 }
505 }
506 wpa_printf(MSG_WARNING, "Can't set DFS state for freq %d MHz", freq);
507 return 0;
508}
509
510
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800511static int set_dfs_state(struct hostapd_iface *iface, int freq, int ht_enabled,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700512 int chan_offset, int chan_width, int cf1,
513 int cf2, u32 state)
514{
515 int n_chans = 1, i;
516 struct hostapd_hw_modes *mode;
517 int frequency = freq;
518 int ret = 0;
519
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800520 mode = iface->current_mode;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700521 if (mode == NULL)
522 return 0;
523
524 if (mode->mode != HOSTAPD_MODE_IEEE80211A) {
525 wpa_printf(MSG_WARNING, "current_mode != IEEE80211A");
526 return 0;
527 }
528
529 /* Seems cf1 and chan_width is enough here */
530 switch (chan_width) {
531 case CHAN_WIDTH_20_NOHT:
532 case CHAN_WIDTH_20:
533 n_chans = 1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800534 if (frequency == 0)
535 frequency = cf1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700536 break;
537 case CHAN_WIDTH_40:
538 n_chans = 2;
539 frequency = cf1 - 10;
540 break;
541 case CHAN_WIDTH_80:
542 n_chans = 4;
543 frequency = cf1 - 30;
544 break;
545 case CHAN_WIDTH_160:
546 n_chans = 8;
547 frequency = cf1 - 70;
548 break;
549 default:
550 wpa_printf(MSG_INFO, "DFS chan_width %d not supported",
551 chan_width);
552 break;
553 }
554
555 wpa_printf(MSG_DEBUG, "DFS freq: %dMHz, n_chans: %d", frequency,
556 n_chans);
557 for (i = 0; i < n_chans; i++) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800558 ret += set_dfs_state_freq(iface, frequency, state);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700559 frequency = frequency + 20;
560 }
561
562 return ret;
563}
564
565
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800566static int dfs_are_channels_overlapped(struct hostapd_iface *iface, int freq,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700567 int chan_width, int cf1, int cf2)
568{
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700569 int start_chan_idx, start_chan_idx1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700570 struct hostapd_hw_modes *mode;
571 struct hostapd_channel_data *chan;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700572 int n_chans, n_chans1, i, j, frequency = freq, radar_n_chans = 1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700573 u8 radar_chan;
574 int res = 0;
575
Dmitry Shmidt051af732013-10-22 13:52:46 -0700576 /* Our configuration */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800577 mode = iface->current_mode;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700578 start_chan_idx = dfs_get_start_chan_idx(iface, &start_chan_idx1);
579 n_chans = dfs_get_used_n_chans(iface, &n_chans1);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700580
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700581 /* Check we are on DFS channel(s) */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800582 if (!dfs_check_chans_radar(iface, start_chan_idx, n_chans))
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700583 return 0;
584
Dmitry Shmidt051af732013-10-22 13:52:46 -0700585 /* Reported via radar event */
586 switch (chan_width) {
587 case CHAN_WIDTH_20_NOHT:
588 case CHAN_WIDTH_20:
589 radar_n_chans = 1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800590 if (frequency == 0)
591 frequency = cf1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700592 break;
593 case CHAN_WIDTH_40:
594 radar_n_chans = 2;
595 frequency = cf1 - 10;
596 break;
597 case CHAN_WIDTH_80:
598 radar_n_chans = 4;
599 frequency = cf1 - 30;
600 break;
601 case CHAN_WIDTH_160:
602 radar_n_chans = 8;
603 frequency = cf1 - 70;
604 break;
605 default:
606 wpa_printf(MSG_INFO, "DFS chan_width %d not supported",
607 chan_width);
608 break;
609 }
610
611 ieee80211_freq_to_chan(frequency, &radar_chan);
612
613 for (i = 0; i < n_chans; i++) {
614 chan = &mode->channels[start_chan_idx + i];
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700615 if (!(chan->flag & HOSTAPD_CHAN_RADAR))
616 continue;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700617 for (j = 0; j < radar_n_chans; j++) {
618 wpa_printf(MSG_DEBUG, "checking our: %d, radar: %d",
619 chan->chan, radar_chan + j * 4);
620 if (chan->chan == radar_chan + j * 4)
621 res++;
622 }
623 }
624
625 wpa_printf(MSG_DEBUG, "overlapped: %d", res);
626
627 return res;
628}
629
630
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700631static unsigned int dfs_get_cac_time(struct hostapd_iface *iface,
632 int start_chan_idx, int n_chans)
633{
634 struct hostapd_channel_data *channel;
635 struct hostapd_hw_modes *mode;
636 int i;
637 unsigned int cac_time_ms = 0;
638
639 mode = iface->current_mode;
640
641 for (i = 0; i < n_chans; i++) {
642 channel = &mode->channels[start_chan_idx + i];
643 if (!(channel->flag & HOSTAPD_CHAN_RADAR))
644 continue;
645 if (channel->dfs_cac_ms > cac_time_ms)
646 cac_time_ms = channel->dfs_cac_ms;
647 }
648
649 return cac_time_ms;
650}
651
652
Dmitry Shmidt051af732013-10-22 13:52:46 -0700653/*
654 * Main DFS handler
655 * 1 - continue channel/ap setup
656 * 0 - channel/ap setup will be continued after CAC
657 * -1 - hit critical error
658 */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800659int hostapd_handle_dfs(struct hostapd_iface *iface)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700660{
661 struct hostapd_channel_data *channel;
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700662 int res, n_chans, n_chans1, start_chan_idx, start_chan_idx1;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800663 int skip_radar = 0;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700664
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800665 if (!iface->current_mode) {
666 /*
667 * This can happen with drivers that do not provide mode
668 * information and as such, cannot really use hostapd for DFS.
669 */
670 wpa_printf(MSG_DEBUG,
671 "DFS: No current_mode information - assume no need to perform DFS operations by hostapd");
672 return 1;
673 }
674
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800675 iface->cac_started = 0;
676
Dmitry Shmidt051af732013-10-22 13:52:46 -0700677 do {
678 /* Get start (first) channel for current configuration */
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700679 start_chan_idx = dfs_get_start_chan_idx(iface,
680 &start_chan_idx1);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700681 if (start_chan_idx == -1)
682 return -1;
683
684 /* Get number of used channels, depend on width */
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -0700685 n_chans = dfs_get_used_n_chans(iface, &n_chans1);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700686
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700687 /* Setup CAC time */
688 iface->dfs_cac_ms = dfs_get_cac_time(iface, start_chan_idx,
689 n_chans);
690
Dmitry Shmidt051af732013-10-22 13:52:46 -0700691 /* Check if any of configured channels require DFS */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800692 res = dfs_check_chans_radar(iface, start_chan_idx, n_chans);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700693 wpa_printf(MSG_DEBUG,
694 "DFS %d channels required radar detection",
695 res);
696 if (!res)
697 return 1;
698
699 /* Check if all channels are DFS available */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800700 res = dfs_check_chans_available(iface, start_chan_idx, n_chans);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700701 wpa_printf(MSG_DEBUG,
702 "DFS all channels available, (SKIP CAC): %s",
703 res ? "yes" : "no");
704 if (res)
705 return 1;
706
707 /* Check if any of configured channels is unavailable */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800708 res = dfs_check_chans_unavailable(iface, start_chan_idx,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700709 n_chans);
710 wpa_printf(MSG_DEBUG, "DFS %d chans unavailable - choose other channel: %s",
711 res, res ? "yes": "no");
712 if (res) {
Dmitry Shmidt96be6222014-02-13 10:16:51 -0800713 int sec = 0;
714 u8 cf1 = 0, cf2 = 0;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800715
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800716 channel = dfs_get_valid_channel(iface, &sec, &cf1, &cf2,
717 skip_radar);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700718 if (!channel) {
719 wpa_printf(MSG_ERROR, "could not get valid channel");
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -0800720 hostapd_set_state(iface, HAPD_IFACE_DFS);
721 return 0;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700722 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800723
724 iface->freq = channel->freq;
725 iface->conf->channel = channel->chan;
726 iface->conf->secondary_channel = sec;
Hai Shalomf1c97642019-07-19 23:42:07 +0000727 iface->conf->vht_oper_centr_freq_seg0_idx = cf1;
728 iface->conf->vht_oper_centr_freq_seg1_idx = cf2;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700729 }
730 } while (res);
731
732 /* Finally start CAC */
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800733 hostapd_set_state(iface, HAPD_IFACE_DFS);
734 wpa_printf(MSG_DEBUG, "DFS start CAC on %d MHz", iface->freq);
735 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_CAC_START
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700736 "freq=%d chan=%d sec_chan=%d, width=%d, seg0=%d, seg1=%d, cac_time=%ds",
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800737 iface->freq,
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800738 iface->conf->channel, iface->conf->secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000739 iface->conf->vht_oper_chwidth,
740 iface->conf->vht_oper_centr_freq_seg0_idx,
741 iface->conf->vht_oper_centr_freq_seg1_idx,
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700742 iface->dfs_cac_ms / 1000);
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800743
Hai Shalomf1c97642019-07-19 23:42:07 +0000744 res = hostapd_start_dfs_cac(iface, iface->conf->hw_mode,
745 iface->freq,
746 iface->conf->channel,
747 iface->conf->ieee80211n,
748 iface->conf->ieee80211ac,
749 iface->conf->secondary_channel,
750 iface->conf->vht_oper_chwidth,
751 iface->conf->vht_oper_centr_freq_seg0_idx,
752 iface->conf->vht_oper_centr_freq_seg1_idx);
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800753
754 if (res) {
755 wpa_printf(MSG_ERROR, "DFS start_dfs_cac() failed, %d", res);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700756 return -1;
757 }
758
759 return 0;
760}
761
762
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700763static int hostapd_config_dfs_chan_available(struct hostapd_iface *iface)
764{
765 int n_chans, n_chans1, start_chan_idx, start_chan_idx1;
766
767 /* Get the start (first) channel for current configuration */
768 start_chan_idx = dfs_get_start_chan_idx(iface, &start_chan_idx1);
769 if (start_chan_idx < 0)
770 return 0;
771
772 /* Get the number of used channels, depending on width */
773 n_chans = dfs_get_used_n_chans(iface, &n_chans1);
774
775 /* Check if all channels are DFS available */
776 return dfs_check_chans_available(iface, start_chan_idx, n_chans);
777}
778
779
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800780int hostapd_dfs_complete_cac(struct hostapd_iface *iface, int success, int freq,
Dmitry Shmidt051af732013-10-22 13:52:46 -0700781 int ht_enabled, int chan_offset, int chan_width,
782 int cf1, int cf2)
783{
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800784 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_CAC_COMPLETED
785 "success=%d freq=%d ht_enabled=%d chan_offset=%d chan_width=%d cf1=%d cf2=%d",
786 success, freq, ht_enabled, chan_offset, chan_width, cf1, cf2);
787
Dmitry Shmidt051af732013-10-22 13:52:46 -0700788 if (success) {
789 /* Complete iface/ap configuration */
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800790 if (iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) {
791 /* Complete AP configuration for the first bring up. */
792 if (iface->state != HAPD_IFACE_ENABLED)
793 hostapd_setup_interface_complete(iface, 0);
794 else
795 iface->cac_started = 0;
796 } else {
797 set_dfs_state(iface, freq, ht_enabled, chan_offset,
798 chan_width, cf1, cf2,
799 HOSTAPD_CHAN_DFS_AVAILABLE);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700800 /*
801 * Just mark the channel available when CAC completion
802 * event is received in enabled state. CAC result could
803 * have been propagated from another radio having the
804 * same regulatory configuration. When CAC completion is
805 * received during non-HAPD_IFACE_ENABLED state, make
806 * sure the configured channel is available because this
807 * CAC completion event could have been propagated from
808 * another radio.
809 */
810 if (iface->state != HAPD_IFACE_ENABLED &&
811 hostapd_config_dfs_chan_available(iface)) {
812 hostapd_setup_interface_complete(iface, 0);
813 iface->cac_started = 0;
814 }
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800815 }
Dmitry Shmidt051af732013-10-22 13:52:46 -0700816 }
817
818 return 0;
819}
820
821
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700822int hostapd_dfs_pre_cac_expired(struct hostapd_iface *iface, int freq,
823 int ht_enabled, int chan_offset, int chan_width,
824 int cf1, int cf2)
825{
826 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_PRE_CAC_EXPIRED
827 "freq=%d ht_enabled=%d chan_offset=%d chan_width=%d cf1=%d cf2=%d",
828 freq, ht_enabled, chan_offset, chan_width, cf1, cf2);
829
830 /* Proceed only if DFS is not offloaded to the driver */
831 if (iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD)
832 return 0;
833
834 set_dfs_state(iface, freq, ht_enabled, chan_offset, chan_width,
835 cf1, cf2, HOSTAPD_CHAN_DFS_USABLE);
836
837 return 0;
838}
839
840
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800841static int hostapd_dfs_start_channel_switch_cac(struct hostapd_iface *iface)
Dmitry Shmidt051af732013-10-22 13:52:46 -0700842{
843 struct hostapd_channel_data *channel;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800844 int secondary_channel;
Hai Shalomf1c97642019-07-19 23:42:07 +0000845 u8 vht_oper_centr_freq_seg0_idx = 0;
846 u8 vht_oper_centr_freq_seg1_idx = 0;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800847 int skip_radar = 0;
848 int err = 1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700849
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800850 /* Radar detected during active CAC */
851 iface->cac_started = 0;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800852 channel = dfs_get_valid_channel(iface, &secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000853 &vht_oper_centr_freq_seg0_idx,
854 &vht_oper_centr_freq_seg1_idx,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800855 skip_radar);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800856
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800857 if (!channel) {
858 wpa_printf(MSG_ERROR, "No valid channel available");
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800859 return err;
860 }
861
862 wpa_printf(MSG_DEBUG, "DFS will switch to a new channel %d",
863 channel->chan);
864 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_NEW_CHANNEL
865 "freq=%d chan=%d sec_chan=%d", channel->freq,
866 channel->chan, secondary_channel);
867
868 iface->freq = channel->freq;
869 iface->conf->channel = channel->chan;
870 iface->conf->secondary_channel = secondary_channel;
Hai Shalomf1c97642019-07-19 23:42:07 +0000871 iface->conf->vht_oper_centr_freq_seg0_idx =
872 vht_oper_centr_freq_seg0_idx;
873 iface->conf->vht_oper_centr_freq_seg1_idx =
874 vht_oper_centr_freq_seg1_idx;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800875 err = 0;
876
877 hostapd_setup_interface_complete(iface, err);
878 return err;
879}
880
881
882static int hostapd_dfs_start_channel_switch(struct hostapd_iface *iface)
883{
884 struct hostapd_channel_data *channel;
885 int secondary_channel;
Hai Shalomf1c97642019-07-19 23:42:07 +0000886 u8 vht_oper_centr_freq_seg0_idx;
887 u8 vht_oper_centr_freq_seg1_idx;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800888 int skip_radar = 1;
889 struct csa_settings csa_settings;
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700890 unsigned int i;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800891 int err = 1;
892
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800893 wpa_printf(MSG_DEBUG, "%s called (CAC active: %s, CSA active: %s)",
894 __func__, iface->cac_started ? "yes" : "no",
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700895 hostapd_csa_in_progress(iface) ? "yes" : "no");
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800896
897 /* Check if CSA in progress */
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700898 if (hostapd_csa_in_progress(iface))
Dmitry Shmidt344abd32014-01-14 13:17:00 -0800899 return 0;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800900
901 /* Check if active CAC */
902 if (iface->cac_started)
903 return hostapd_dfs_start_channel_switch_cac(iface);
904
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700905 /*
906 * Allow selection of DFS channel in ETSI to comply with
907 * uniform spreading.
908 */
909 if (iface->dfs_domain == HOSTAPD_DFS_REGION_ETSI)
910 skip_radar = 0;
911
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800912 /* Perform channel switch/CSA */
913 channel = dfs_get_valid_channel(iface, &secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000914 &vht_oper_centr_freq_seg0_idx,
915 &vht_oper_centr_freq_seg1_idx,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800916 skip_radar);
917
918 if (!channel) {
Dmitry Shmidt98660862014-03-11 17:26:21 -0700919 /*
920 * If there is no channel to switch immediately to, check if
921 * there is another channel where we can switch even if it
922 * requires to perform a CAC first.
923 */
924 skip_radar = 0;
925 channel = dfs_get_valid_channel(iface, &secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000926 &vht_oper_centr_freq_seg0_idx,
927 &vht_oper_centr_freq_seg1_idx,
Dmitry Shmidt98660862014-03-11 17:26:21 -0700928 skip_radar);
929 if (!channel) {
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -0800930 wpa_printf(MSG_INFO,
931 "%s: no DFS channels left, waiting for NOP to finish",
932 __func__);
Dmitry Shmidt98660862014-03-11 17:26:21 -0700933 return err;
934 }
935
936 iface->freq = channel->freq;
937 iface->conf->channel = channel->chan;
938 iface->conf->secondary_channel = secondary_channel;
Hai Shalomf1c97642019-07-19 23:42:07 +0000939 iface->conf->vht_oper_centr_freq_seg0_idx =
940 vht_oper_centr_freq_seg0_idx;
941 iface->conf->vht_oper_centr_freq_seg1_idx =
942 vht_oper_centr_freq_seg1_idx;
Dmitry Shmidt98660862014-03-11 17:26:21 -0700943
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800944 hostapd_disable_iface(iface);
Dmitry Shmidt98660862014-03-11 17:26:21 -0700945 hostapd_enable_iface(iface);
946 return 0;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800947 }
948
949 wpa_printf(MSG_DEBUG, "DFS will switch to a new channel %d",
950 channel->chan);
951 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_NEW_CHANNEL
952 "freq=%d chan=%d sec_chan=%d", channel->freq,
953 channel->chan, secondary_channel);
954
955 /* Setup CSA request */
956 os_memset(&csa_settings, 0, sizeof(csa_settings));
957 csa_settings.cs_count = 5;
958 csa_settings.block_tx = 1;
959 err = hostapd_set_freq_params(&csa_settings.freq_params,
960 iface->conf->hw_mode,
961 channel->freq,
962 channel->chan,
963 iface->conf->ieee80211n,
964 iface->conf->ieee80211ac,
965 secondary_channel,
Hai Shalomf1c97642019-07-19 23:42:07 +0000966 iface->conf->vht_oper_chwidth,
967 vht_oper_centr_freq_seg0_idx,
968 vht_oper_centr_freq_seg1_idx,
969 iface->current_mode->vht_capab);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800970
971 if (err) {
972 wpa_printf(MSG_ERROR, "DFS failed to calculate CSA freq params");
973 hostapd_disable_iface(iface);
974 return err;
975 }
976
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700977 for (i = 0; i < iface->num_bss; i++) {
978 err = hostapd_switch_channel(iface->bss[i], &csa_settings);
979 if (err)
980 break;
981 }
982
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800983 if (err) {
984 wpa_printf(MSG_WARNING, "DFS failed to schedule CSA (%d) - trying fallback",
985 err);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800986 iface->freq = channel->freq;
987 iface->conf->channel = channel->chan;
988 iface->conf->secondary_channel = secondary_channel;
Hai Shalomf1c97642019-07-19 23:42:07 +0000989 iface->conf->vht_oper_centr_freq_seg0_idx =
990 vht_oper_centr_freq_seg0_idx;
991 iface->conf->vht_oper_centr_freq_seg1_idx =
992 vht_oper_centr_freq_seg1_idx;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700993
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800994 hostapd_disable_iface(iface);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800995 hostapd_enable_iface(iface);
996 return 0;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800997 }
998
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800999 /* Channel configuration will be updated once CSA completes and
1000 * ch_switch_notify event is received */
1001
1002 wpa_printf(MSG_DEBUG, "DFS waiting channel switch event");
Dmitry Shmidt051af732013-10-22 13:52:46 -07001003 return 0;
1004}
1005
1006
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001007int hostapd_dfs_radar_detected(struct hostapd_iface *iface, int freq,
Dmitry Shmidt051af732013-10-22 13:52:46 -07001008 int ht_enabled, int chan_offset, int chan_width,
1009 int cf1, int cf2)
1010{
1011 int res;
1012
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001013 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_RADAR_DETECTED
1014 "freq=%d ht_enabled=%d chan_offset=%d chan_width=%d cf1=%d cf2=%d",
1015 freq, ht_enabled, chan_offset, chan_width, cf1, cf2);
1016
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001017 /* Proceed only if DFS is not offloaded to the driver */
1018 if (iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD)
1019 return 0;
1020
1021 if (!iface->conf->ieee80211h)
1022 return 0;
1023
Dmitry Shmidt051af732013-10-22 13:52:46 -07001024 /* mark radar frequency as invalid */
Dmitry Shmidt6aa8ae42014-07-07 09:31:33 -07001025 set_dfs_state(iface, freq, ht_enabled, chan_offset, chan_width,
1026 cf1, cf2, HOSTAPD_CHAN_DFS_UNAVAILABLE);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001027
1028 /* Skip if reported radar event not overlapped our channels */
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001029 res = dfs_are_channels_overlapped(iface, freq, chan_width, cf1, cf2);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001030 if (!res)
1031 return 0;
1032
Dmitry Shmidt051af732013-10-22 13:52:46 -07001033 /* radar detected while operating, switch the channel. */
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001034 res = hostapd_dfs_start_channel_switch(iface);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001035
1036 return res;
1037}
1038
1039
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001040int hostapd_dfs_nop_finished(struct hostapd_iface *iface, int freq,
Dmitry Shmidt051af732013-10-22 13:52:46 -07001041 int ht_enabled, int chan_offset, int chan_width,
1042 int cf1, int cf2)
1043{
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001044 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_NOP_FINISHED
1045 "freq=%d ht_enabled=%d chan_offset=%d chan_width=%d cf1=%d cf2=%d",
1046 freq, ht_enabled, chan_offset, chan_width, cf1, cf2);
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001047
1048 /* Proceed only if DFS is not offloaded to the driver */
1049 if (iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD)
1050 return 0;
1051
Dmitry Shmidt051af732013-10-22 13:52:46 -07001052 /* TODO add correct implementation here */
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001053 set_dfs_state(iface, freq, ht_enabled, chan_offset, chan_width,
1054 cf1, cf2, HOSTAPD_CHAN_DFS_USABLE);
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08001055
1056 /* Handle cases where all channels were initially unavailable */
1057 if (iface->state == HAPD_IFACE_DFS && !iface->cac_started)
1058 hostapd_handle_dfs(iface);
1059
Dmitry Shmidt051af732013-10-22 13:52:46 -07001060 return 0;
1061}
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001062
1063
1064int hostapd_is_dfs_required(struct hostapd_iface *iface)
1065{
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -07001066 int n_chans, n_chans1, start_chan_idx, start_chan_idx1, res;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001067
Dmitry Shmidt61593f02014-04-21 16:27:35 -07001068 if (!iface->conf->ieee80211h || !iface->current_mode ||
1069 iface->current_mode->mode != HOSTAPD_MODE_IEEE80211A)
1070 return 0;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001071
1072 /* Get start (first) channel for current configuration */
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -07001073 start_chan_idx = dfs_get_start_chan_idx(iface, &start_chan_idx1);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001074 if (start_chan_idx == -1)
1075 return -1;
1076
1077 /* Get number of used channels, depend on width */
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -07001078 n_chans = dfs_get_used_n_chans(iface, &n_chans1);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001079
1080 /* Check if any of configured channels require DFS */
Dmitry Shmidta7b06fa2014-10-09 12:56:52 -07001081 res = dfs_check_chans_radar(iface, start_chan_idx, n_chans);
1082 if (res)
1083 return res;
1084 if (start_chan_idx1 >= 0 && n_chans1 > 0)
1085 res = dfs_check_chans_radar(iface, start_chan_idx1, n_chans1);
1086 return res;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001087}
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001088
1089
1090int hostapd_dfs_start_cac(struct hostapd_iface *iface, int freq,
1091 int ht_enabled, int chan_offset, int chan_width,
1092 int cf1, int cf2)
1093{
1094 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_CAC_START
1095 "freq=%d chan=%d chan_offset=%d width=%d seg0=%d "
1096 "seg1=%d cac_time=%ds",
1097 freq, (freq - 5000) / 5, chan_offset, chan_width, cf1, cf2, 60);
1098 iface->cac_started = 1;
1099 return 0;
1100}
1101
1102
1103/*
1104 * Main DFS handler for offloaded case.
1105 * 2 - continue channel/AP setup for non-DFS channel
1106 * 1 - continue channel/AP setup for DFS channel
1107 * 0 - channel/AP setup will be continued after CAC
1108 * -1 - hit critical error
1109 */
1110int hostapd_handle_dfs_offload(struct hostapd_iface *iface)
1111{
1112 wpa_printf(MSG_DEBUG, "%s: iface->cac_started: %d",
1113 __func__, iface->cac_started);
1114
1115 /*
1116 * If DFS has already been started, then we are being called from a
1117 * callback to continue AP/channel setup. Reset the CAC start flag and
1118 * return.
1119 */
1120 if (iface->cac_started) {
1121 wpa_printf(MSG_DEBUG, "%s: iface->cac_started: %d",
1122 __func__, iface->cac_started);
1123 iface->cac_started = 0;
1124 return 1;
1125 }
1126
Roshan Pius3a1667e2018-07-03 15:17:14 -07001127 if (ieee80211_is_dfs(iface->freq, iface->hw_features,
1128 iface->num_hw_features)) {
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001129 wpa_printf(MSG_DEBUG, "%s: freq %d MHz requires DFS",
1130 __func__, iface->freq);
1131 return 0;
1132 }
1133
1134 wpa_printf(MSG_DEBUG,
1135 "%s: freq %d MHz does not require DFS. Continue channel/AP setup",
1136 __func__, iface->freq);
1137 return 2;
1138}