1b032f27cSSam Leffler /*- 2b032f27cSSam Leffler * Copyright (c) 2007-2008 Sam Leffler, Errno Consulting 3b032f27cSSam Leffler * All rights reserved. 4b032f27cSSam Leffler * 5b032f27cSSam Leffler * Redistribution and use in source and binary forms, with or without 6b032f27cSSam Leffler * modification, are permitted provided that the following conditions 7b032f27cSSam Leffler * are met: 8b032f27cSSam Leffler * 1. Redistributions of source code must retain the above copyright 9b032f27cSSam Leffler * notice, this list of conditions and the following disclaimer. 10b032f27cSSam Leffler * 2. Redistributions in binary form must reproduce the above copyright 11b032f27cSSam Leffler * notice, this list of conditions and the following disclaimer in the 12b032f27cSSam Leffler * documentation and/or other materials provided with the distribution. 13b032f27cSSam Leffler * 14b032f27cSSam Leffler * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 15b032f27cSSam Leffler * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 16b032f27cSSam Leffler * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 17b032f27cSSam Leffler * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18b032f27cSSam Leffler * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19b032f27cSSam Leffler * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 20b032f27cSSam Leffler * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 21b032f27cSSam Leffler * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22b032f27cSSam Leffler * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23b032f27cSSam Leffler * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24b032f27cSSam Leffler */ 25b032f27cSSam Leffler 26b032f27cSSam Leffler #include <sys/cdefs.h> 27b032f27cSSam Leffler #ifdef __FreeBSD__ 28b032f27cSSam Leffler __FBSDID("$FreeBSD$"); 29b032f27cSSam Leffler #endif 30b032f27cSSam Leffler 31b032f27cSSam Leffler /* 32b032f27cSSam Leffler * IEEE 802.11 DFS/Radar support. 33b032f27cSSam Leffler */ 34b032f27cSSam Leffler #include "opt_inet.h" 35b032f27cSSam Leffler #include "opt_wlan.h" 36b032f27cSSam Leffler 37b032f27cSSam Leffler #include <sys/param.h> 38b032f27cSSam Leffler #include <sys/systm.h> 39b032f27cSSam Leffler #include <sys/mbuf.h> 40b032f27cSSam Leffler #include <sys/malloc.h> 41b032f27cSSam Leffler #include <sys/kernel.h> 42b032f27cSSam Leffler 43b032f27cSSam Leffler #include <sys/socket.h> 44b032f27cSSam Leffler #include <sys/sockio.h> 45b032f27cSSam Leffler #include <sys/endian.h> 46b032f27cSSam Leffler #include <sys/errno.h> 47b032f27cSSam Leffler #include <sys/proc.h> 48b032f27cSSam Leffler #include <sys/sysctl.h> 49b032f27cSSam Leffler 50b032f27cSSam Leffler #include <net/if.h> 51b032f27cSSam Leffler #include <net/if_media.h> 52b032f27cSSam Leffler 53b032f27cSSam Leffler #include <net80211/ieee80211_var.h> 54b032f27cSSam Leffler 55d745c852SEd Schouten static MALLOC_DEFINE(M_80211_DFS, "80211dfs", "802.11 DFS state"); 56b032f27cSSam Leffler 57a77b10b3SSam Leffler static int ieee80211_nol_timeout = 30*60; /* 30 minutes */ 58a77b10b3SSam Leffler SYSCTL_INT(_net_wlan, OID_AUTO, nol_timeout, CTLFLAG_RW, 59a77b10b3SSam Leffler &ieee80211_nol_timeout, 0, "NOL timeout (secs)"); 60b032f27cSSam Leffler #define NOL_TIMEOUT msecs_to_ticks(ieee80211_nol_timeout*1000) 61a77b10b3SSam Leffler 62a77b10b3SSam Leffler static int ieee80211_cac_timeout = 60; /* 60 seconds */ 63a77b10b3SSam Leffler SYSCTL_INT(_net_wlan, OID_AUTO, cac_timeout, CTLFLAG_RW, 64a77b10b3SSam Leffler &ieee80211_cac_timeout, 0, "CAC timeout (secs)"); 65b032f27cSSam Leffler #define CAC_TIMEOUT msecs_to_ticks(ieee80211_cac_timeout*1000) 66b032f27cSSam Leffler 67*32b0e64bSAdrian Chadd static int 68*32b0e64bSAdrian Chadd null_set_quiet(struct ieee80211_node *ni, u_int8_t *quiet_elm) 69*32b0e64bSAdrian Chadd { 70*32b0e64bSAdrian Chadd return ENOSYS; 71*32b0e64bSAdrian Chadd } 72*32b0e64bSAdrian Chadd 73b032f27cSSam Leffler void 74b032f27cSSam Leffler ieee80211_dfs_attach(struct ieee80211com *ic) 75b032f27cSSam Leffler { 76b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 77b032f27cSSam Leffler 7892c4a81cSSam Leffler callout_init_mtx(&dfs->nol_timer, IEEE80211_LOCK_OBJ(ic), 0); 7992c4a81cSSam Leffler callout_init_mtx(&dfs->cac_timer, IEEE80211_LOCK_OBJ(ic), 0); 80*32b0e64bSAdrian Chadd 81*32b0e64bSAdrian Chadd ic->ic_set_quiet = null_set_quiet; 82b032f27cSSam Leffler } 83b032f27cSSam Leffler 84b032f27cSSam Leffler void 85b032f27cSSam Leffler ieee80211_dfs_detach(struct ieee80211com *ic) 86b032f27cSSam Leffler { 87b032f27cSSam Leffler /* NB: we assume no locking is needed */ 88b032f27cSSam Leffler ieee80211_dfs_reset(ic); 89b032f27cSSam Leffler } 90b032f27cSSam Leffler 91b032f27cSSam Leffler void 92b032f27cSSam Leffler ieee80211_dfs_reset(struct ieee80211com *ic) 93b032f27cSSam Leffler { 94b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 95b032f27cSSam Leffler int i; 96b032f27cSSam Leffler 97b032f27cSSam Leffler /* NB: we assume no locking is needed */ 98b032f27cSSam Leffler /* NB: cac_timer should be cleared by the state machine */ 99b032f27cSSam Leffler callout_drain(&dfs->nol_timer); 100b032f27cSSam Leffler for (i = 0; i < ic->ic_nchans; i++) 101b032f27cSSam Leffler ic->ic_channels[i].ic_state = 0; 102b032f27cSSam Leffler dfs->lastchan = NULL; 103b032f27cSSam Leffler } 104b032f27cSSam Leffler 105b032f27cSSam Leffler static void 106b032f27cSSam Leffler cac_timeout(void *arg) 107b032f27cSSam Leffler { 108b032f27cSSam Leffler struct ieee80211vap *vap = arg; 109b032f27cSSam Leffler struct ieee80211com *ic = vap->iv_ic; 110b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 111b032f27cSSam Leffler int i; 112b032f27cSSam Leffler 11392c4a81cSSam Leffler IEEE80211_LOCK_ASSERT(ic); 11492c4a81cSSam Leffler 115b032f27cSSam Leffler if (vap->iv_state != IEEE80211_S_CAC) /* NB: just in case */ 116b032f27cSSam Leffler return; 117b032f27cSSam Leffler /* 118b032f27cSSam Leffler * When radar is detected during a CAC we are woken 119b032f27cSSam Leffler * up prematurely to switch to a new channel. 120b032f27cSSam Leffler * Check the channel to decide how to act. 121b032f27cSSam Leffler */ 122b032f27cSSam Leffler if (IEEE80211_IS_CHAN_RADAR(ic->ic_curchan)) { 123b032f27cSSam Leffler ieee80211_notify_cac(ic, ic->ic_curchan, 124b032f27cSSam Leffler IEEE80211_NOTIFY_CAC_RADAR); 125b032f27cSSam Leffler 126b032f27cSSam Leffler if_printf(vap->iv_ifp, 127b032f27cSSam Leffler "CAC timer on channel %u (%u MHz) stopped due to radar\n", 128b032f27cSSam Leffler ic->ic_curchan->ic_ieee, ic->ic_curchan->ic_freq); 129b032f27cSSam Leffler 130b032f27cSSam Leffler /* XXX clobbers any existing desired channel */ 131b032f27cSSam Leffler /* NB: dfs->newchan may be NULL, that's ok */ 132b032f27cSSam Leffler vap->iv_des_chan = dfs->newchan; 13392c4a81cSSam Leffler /* XXX recursive lock need ieee80211_new_state_locked */ 134b032f27cSSam Leffler ieee80211_new_state(vap, IEEE80211_S_SCAN, 0); 135b032f27cSSam Leffler } else { 136b032f27cSSam Leffler if_printf(vap->iv_ifp, 137b032f27cSSam Leffler "CAC timer on channel %u (%u MHz) expired; " 138b032f27cSSam Leffler "no radar detected\n", 139b032f27cSSam Leffler ic->ic_curchan->ic_ieee, ic->ic_curchan->ic_freq); 140b032f27cSSam Leffler /* 141b032f27cSSam Leffler * Mark all channels with the current frequency 142b032f27cSSam Leffler * as having completed CAC; this keeps us from 143b032f27cSSam Leffler * doing it again until we change channels. 144b032f27cSSam Leffler */ 145b032f27cSSam Leffler for (i = 0; i < ic->ic_nchans; i++) { 146b032f27cSSam Leffler struct ieee80211_channel *c = &ic->ic_channels[i]; 147b032f27cSSam Leffler if (c->ic_freq == ic->ic_curchan->ic_freq) 148b032f27cSSam Leffler c->ic_state |= IEEE80211_CHANSTATE_CACDONE; 149b032f27cSSam Leffler } 150b032f27cSSam Leffler ieee80211_notify_cac(ic, ic->ic_curchan, 151b032f27cSSam Leffler IEEE80211_NOTIFY_CAC_EXPIRE); 152b032f27cSSam Leffler ieee80211_cac_completeswitch(vap); 153b032f27cSSam Leffler } 154b032f27cSSam Leffler } 155b032f27cSSam Leffler 156b032f27cSSam Leffler /* 157b032f27cSSam Leffler * Initiate the CAC timer. The driver is responsible 158b032f27cSSam Leffler * for setting up the hardware to scan for radar on the 159b032f27cSSam Leffler * channnel, we just handle timing things out. 160b032f27cSSam Leffler */ 161b032f27cSSam Leffler void 162b032f27cSSam Leffler ieee80211_dfs_cac_start(struct ieee80211vap *vap) 163b032f27cSSam Leffler { 164b032f27cSSam Leffler struct ieee80211com *ic = vap->iv_ic; 165b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 166b032f27cSSam Leffler 167b032f27cSSam Leffler IEEE80211_LOCK_ASSERT(ic); 168b032f27cSSam Leffler 169b032f27cSSam Leffler callout_reset(&dfs->cac_timer, CAC_TIMEOUT, cac_timeout, vap); 170b032f27cSSam Leffler if_printf(vap->iv_ifp, "start %d second CAC timer on channel %u (%u MHz)\n", 171b032f27cSSam Leffler ticks_to_secs(CAC_TIMEOUT), 172b032f27cSSam Leffler ic->ic_curchan->ic_ieee, ic->ic_curchan->ic_freq); 173b032f27cSSam Leffler ieee80211_notify_cac(ic, ic->ic_curchan, IEEE80211_NOTIFY_CAC_START); 174b032f27cSSam Leffler } 175b032f27cSSam Leffler 176b032f27cSSam Leffler /* 177b032f27cSSam Leffler * Clear the CAC timer. 178b032f27cSSam Leffler */ 179b032f27cSSam Leffler void 180b032f27cSSam Leffler ieee80211_dfs_cac_stop(struct ieee80211vap *vap) 181b032f27cSSam Leffler { 182b032f27cSSam Leffler struct ieee80211com *ic = vap->iv_ic; 183b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 184b032f27cSSam Leffler 185b032f27cSSam Leffler IEEE80211_LOCK_ASSERT(ic); 186b032f27cSSam Leffler 187b032f27cSSam Leffler /* NB: racey but not important */ 188b032f27cSSam Leffler if (callout_pending(&dfs->cac_timer)) { 189b032f27cSSam Leffler if_printf(vap->iv_ifp, "stop CAC timer on channel %u (%u MHz)\n", 190b032f27cSSam Leffler ic->ic_curchan->ic_ieee, ic->ic_curchan->ic_freq); 191b032f27cSSam Leffler ieee80211_notify_cac(ic, ic->ic_curchan, 192b032f27cSSam Leffler IEEE80211_NOTIFY_CAC_STOP); 193b032f27cSSam Leffler } 194b032f27cSSam Leffler callout_stop(&dfs->cac_timer); 195b032f27cSSam Leffler } 196b032f27cSSam Leffler 197b032f27cSSam Leffler void 198b032f27cSSam Leffler ieee80211_dfs_cac_clear(struct ieee80211com *ic, 199b032f27cSSam Leffler const struct ieee80211_channel *chan) 200b032f27cSSam Leffler { 201b032f27cSSam Leffler int i; 202b032f27cSSam Leffler 203b032f27cSSam Leffler for (i = 0; i < ic->ic_nchans; i++) { 204b032f27cSSam Leffler struct ieee80211_channel *c = &ic->ic_channels[i]; 205b032f27cSSam Leffler if (c->ic_freq == chan->ic_freq) 206b032f27cSSam Leffler c->ic_state &= ~IEEE80211_CHANSTATE_CACDONE; 207b032f27cSSam Leffler } 208b032f27cSSam Leffler } 209b032f27cSSam Leffler 210b032f27cSSam Leffler static void 211b032f27cSSam Leffler dfs_timeout(void *arg) 212b032f27cSSam Leffler { 213b032f27cSSam Leffler struct ieee80211com *ic = arg; 214b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 215b032f27cSSam Leffler struct ieee80211_channel *c; 216b032f27cSSam Leffler int i, oldest, now; 217b032f27cSSam Leffler 21892c4a81cSSam Leffler IEEE80211_LOCK_ASSERT(ic); 21992c4a81cSSam Leffler 220b032f27cSSam Leffler now = oldest = ticks; 221b032f27cSSam Leffler for (i = 0; i < ic->ic_nchans; i++) { 222b032f27cSSam Leffler c = &ic->ic_channels[i]; 223b032f27cSSam Leffler if (IEEE80211_IS_CHAN_RADAR(c)) { 224b032f27cSSam Leffler if (time_after_eq(now, dfs->nol_event[i]+NOL_TIMEOUT)) { 225b032f27cSSam Leffler c->ic_state &= ~IEEE80211_CHANSTATE_RADAR; 226b032f27cSSam Leffler if (c->ic_state & IEEE80211_CHANSTATE_NORADAR) { 227b032f27cSSam Leffler /* 228b032f27cSSam Leffler * NB: do this here so we get only one 229b032f27cSSam Leffler * msg instead of one for every channel 230b032f27cSSam Leffler * table entry. 231b032f27cSSam Leffler */ 232b032f27cSSam Leffler if_printf(ic->ic_ifp, "radar on channel" 233b032f27cSSam Leffler " %u (%u MHz) cleared after timeout\n", 234b032f27cSSam Leffler c->ic_ieee, c->ic_freq); 235b032f27cSSam Leffler /* notify user space */ 236b032f27cSSam Leffler c->ic_state &= 237b032f27cSSam Leffler ~IEEE80211_CHANSTATE_NORADAR; 238b032f27cSSam Leffler ieee80211_notify_radar(ic, c); 239b032f27cSSam Leffler } 240b032f27cSSam Leffler } else if (dfs->nol_event[i] < oldest) 241b032f27cSSam Leffler oldest = dfs->nol_event[i]; 242b032f27cSSam Leffler } 243b032f27cSSam Leffler } 244b032f27cSSam Leffler if (oldest != now) { 245b032f27cSSam Leffler /* arrange to process next channel up for a status change */ 2468460188cSSam Leffler callout_schedule(&dfs->nol_timer, oldest + NOL_TIMEOUT - now); 247b032f27cSSam Leffler } 248b032f27cSSam Leffler } 249b032f27cSSam Leffler 250b032f27cSSam Leffler static void 251b032f27cSSam Leffler announce_radar(struct ifnet *ifp, const struct ieee80211_channel *curchan, 252b032f27cSSam Leffler const struct ieee80211_channel *newchan) 253b032f27cSSam Leffler { 254b032f27cSSam Leffler if (newchan == NULL) 255b032f27cSSam Leffler if_printf(ifp, "radar detected on channel %u (%u MHz)\n", 256b032f27cSSam Leffler curchan->ic_ieee, curchan->ic_freq); 257b032f27cSSam Leffler else 258b032f27cSSam Leffler if_printf(ifp, "radar detected on channel %u (%u MHz), " 259b032f27cSSam Leffler "moving to channel %u (%u MHz)\n", 260b032f27cSSam Leffler curchan->ic_ieee, curchan->ic_freq, 261b032f27cSSam Leffler newchan->ic_ieee, newchan->ic_freq); 262b032f27cSSam Leffler } 263b032f27cSSam Leffler 264b032f27cSSam Leffler /* 265b032f27cSSam Leffler * Handle a radar detection event on a channel. The channel is 266b032f27cSSam Leffler * added to the NOL list and we record the time of the event. 267b032f27cSSam Leffler * Entries are aged out after NOL_TIMEOUT. If radar was 268b032f27cSSam Leffler * detected while doing CAC we force a state/channel change. 269b032f27cSSam Leffler * Otherwise radar triggers a channel switch using the CSA 270b032f27cSSam Leffler * mechanism (when the channel is the bss channel). 271b032f27cSSam Leffler */ 272b032f27cSSam Leffler void 273b032f27cSSam Leffler ieee80211_dfs_notify_radar(struct ieee80211com *ic, struct ieee80211_channel *chan) 274b032f27cSSam Leffler { 275b032f27cSSam Leffler struct ieee80211_dfs_state *dfs = &ic->ic_dfs; 276b032f27cSSam Leffler int i, now; 277b032f27cSSam Leffler 278b032f27cSSam Leffler IEEE80211_LOCK_ASSERT(ic); 279b032f27cSSam Leffler 280b032f27cSSam Leffler /* 281b032f27cSSam Leffler * Mark all entries with this frequency. Notify user 282b032f27cSSam Leffler * space and arrange for notification when the radar 283b032f27cSSam Leffler * indication is cleared. Then kick the NOL processing 284b032f27cSSam Leffler * thread if not already running. 285b032f27cSSam Leffler */ 286b032f27cSSam Leffler now = ticks; 287b032f27cSSam Leffler for (i = 0; i < ic->ic_nchans; i++) { 288b032f27cSSam Leffler struct ieee80211_channel *c = &ic->ic_channels[i]; 289b032f27cSSam Leffler if (c->ic_freq == chan->ic_freq) { 290b032f27cSSam Leffler c->ic_state &= ~IEEE80211_CHANSTATE_CACDONE; 291b032f27cSSam Leffler c->ic_state |= IEEE80211_CHANSTATE_RADAR; 292b032f27cSSam Leffler dfs->nol_event[i] = now; 293b032f27cSSam Leffler } 294b032f27cSSam Leffler } 295b032f27cSSam Leffler ieee80211_notify_radar(ic, chan); 296b032f27cSSam Leffler chan->ic_state |= IEEE80211_CHANSTATE_NORADAR; 297b032f27cSSam Leffler if (!callout_pending(&dfs->nol_timer)) 298b032f27cSSam Leffler callout_reset(&dfs->nol_timer, NOL_TIMEOUT, dfs_timeout, ic); 299b032f27cSSam Leffler 300b032f27cSSam Leffler /* 301b032f27cSSam Leffler * If radar is detected on the bss channel while 302b032f27cSSam Leffler * doing CAC; force a state change by scheduling the 303b032f27cSSam Leffler * callout to be dispatched asap. Otherwise, if this 304b032f27cSSam Leffler * event is for the bss channel then we must quiet 305b032f27cSSam Leffler * traffic and schedule a channel switch. 306b032f27cSSam Leffler * 307b032f27cSSam Leffler * Note this allows us to receive notification about 308b032f27cSSam Leffler * channels other than the bss channel; not sure 309b032f27cSSam Leffler * that can/will happen but it's simple to support. 310b032f27cSSam Leffler */ 311b032f27cSSam Leffler if (chan == ic->ic_bsschan) { 312b032f27cSSam Leffler /* XXX need a way to defer to user app */ 313b032f27cSSam Leffler dfs->newchan = ieee80211_dfs_pickchannel(ic); 314b032f27cSSam Leffler 315b032f27cSSam Leffler announce_radar(ic->ic_ifp, chan, dfs->newchan); 316b032f27cSSam Leffler 317b032f27cSSam Leffler if (callout_pending(&dfs->cac_timer)) 3185c9b0f1dSSam Leffler callout_schedule(&dfs->cac_timer, 0); 319b032f27cSSam Leffler else if (dfs->newchan != NULL) { 320b032f27cSSam Leffler /* XXX mode 1, switch count 2 */ 321b032f27cSSam Leffler /* XXX calculate switch count based on max 322b032f27cSSam Leffler switch time and beacon interval? */ 323b032f27cSSam Leffler ieee80211_csa_startswitch(ic, dfs->newchan, 1, 2); 324b032f27cSSam Leffler } else { 325b032f27cSSam Leffler /* 326b032f27cSSam Leffler * Spec says to stop all transmissions and 327b032f27cSSam Leffler * wait on the current channel for an entry 328b032f27cSSam Leffler * on the NOL to expire. 329b032f27cSSam Leffler */ 330b032f27cSSam Leffler /*XXX*/ 331e1ab183cSAdrian Chadd if_printf(ic->ic_ifp, "%s: No free channels; waiting for entry " 332e1ab183cSAdrian Chadd "on NOL to expire\n", __func__); 333b032f27cSSam Leffler } 334b032f27cSSam Leffler } else { 335b032f27cSSam Leffler /* 336b032f27cSSam Leffler * Issue rate-limited console msgs. 337b032f27cSSam Leffler */ 338b032f27cSSam Leffler if (dfs->lastchan != chan) { 339b032f27cSSam Leffler dfs->lastchan = chan; 340b032f27cSSam Leffler dfs->cureps = 0; 341b032f27cSSam Leffler announce_radar(ic->ic_ifp, chan, NULL); 342b032f27cSSam Leffler } else if (ppsratecheck(&dfs->lastevent, &dfs->cureps, 1)) { 343b032f27cSSam Leffler announce_radar(ic->ic_ifp, chan, NULL); 344b032f27cSSam Leffler } 345b032f27cSSam Leffler } 346b032f27cSSam Leffler } 347b032f27cSSam Leffler 348b032f27cSSam Leffler struct ieee80211_channel * 349b032f27cSSam Leffler ieee80211_dfs_pickchannel(struct ieee80211com *ic) 350b032f27cSSam Leffler { 351b032f27cSSam Leffler struct ieee80211_channel *c; 352b032f27cSSam Leffler int i, flags; 353b032f27cSSam Leffler uint16_t v; 354b032f27cSSam Leffler 355b032f27cSSam Leffler /* 356b032f27cSSam Leffler * Consult the scan cache first. 357b032f27cSSam Leffler */ 358b032f27cSSam Leffler flags = ic->ic_curchan->ic_flags & IEEE80211_CHAN_ALL; 359b032f27cSSam Leffler /* 360b032f27cSSam Leffler * XXX if curchan is HT this will never find a channel 361b032f27cSSam Leffler * XXX 'cuz we scan only legacy channels 362b032f27cSSam Leffler */ 363b032f27cSSam Leffler c = ieee80211_scan_pickchannel(ic, flags); 364b032f27cSSam Leffler if (c != NULL) 365b032f27cSSam Leffler return c; 366b032f27cSSam Leffler /* 367b032f27cSSam Leffler * No channel found in scan cache; select a compatible 368b032f27cSSam Leffler * one at random (skipping channels where radar has 369b032f27cSSam Leffler * been detected). 370b032f27cSSam Leffler */ 371b032f27cSSam Leffler get_random_bytes(&v, sizeof(v)); 372b032f27cSSam Leffler v %= ic->ic_nchans; 373b032f27cSSam Leffler for (i = v; i < ic->ic_nchans; i++) { 374b032f27cSSam Leffler c = &ic->ic_channels[i]; 375b032f27cSSam Leffler if (!IEEE80211_IS_CHAN_RADAR(c) && 376b032f27cSSam Leffler (c->ic_flags & flags) == flags) 377b032f27cSSam Leffler return c; 378b032f27cSSam Leffler } 379b032f27cSSam Leffler for (i = 0; i < v; i++) { 380b032f27cSSam Leffler c = &ic->ic_channels[i]; 381b032f27cSSam Leffler if (!IEEE80211_IS_CHAN_RADAR(c) && 382b032f27cSSam Leffler (c->ic_flags & flags) == flags) 383b032f27cSSam Leffler return c; 384b032f27cSSam Leffler } 385b032f27cSSam Leffler if_printf(ic->ic_ifp, "HELP, no channel located to switch to!\n"); 386b032f27cSSam Leffler return NULL; 387b032f27cSSam Leffler } 388