|
@@ -1,7 +1,7 @@
|
|
|
/*
|
|
|
* DFS - Dynamic Frequency Selection
|
|
|
* Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
|
|
|
- * Copyright (c) 2013, Qualcomm Atheros, Inc.
|
|
|
+ * Copyright (c) 2013-2015, Qualcomm Atheros, Inc.
|
|
|
*
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
* See README for more details.
|
|
@@ -1012,3 +1012,53 @@ int hostapd_is_dfs_required(struct hostapd_iface *iface)
|
|
|
res = dfs_check_chans_radar(iface, start_chan_idx1, n_chans1);
|
|
|
return res;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+int hostapd_dfs_start_cac(struct hostapd_iface *iface, int freq,
|
|
|
+ int ht_enabled, int chan_offset, int chan_width,
|
|
|
+ int cf1, int cf2)
|
|
|
+{
|
|
|
+ wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, DFS_EVENT_CAC_START
|
|
|
+ "freq=%d chan=%d chan_offset=%d width=%d seg0=%d "
|
|
|
+ "seg1=%d cac_time=%ds",
|
|
|
+ freq, (freq - 5000) / 5, chan_offset, chan_width, cf1, cf2, 60);
|
|
|
+ iface->cac_started = 1;
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/*
|
|
|
+ * Main DFS handler for offloaded case.
|
|
|
+ * 2 - continue channel/AP setup for non-DFS channel
|
|
|
+ * 1 - continue channel/AP setup for DFS channel
|
|
|
+ * 0 - channel/AP setup will be continued after CAC
|
|
|
+ * -1 - hit critical error
|
|
|
+ */
|
|
|
+int hostapd_handle_dfs_offload(struct hostapd_iface *iface)
|
|
|
+{
|
|
|
+ wpa_printf(MSG_DEBUG, "%s: iface->cac_started: %d",
|
|
|
+ __func__, iface->cac_started);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If DFS has already been started, then we are being called from a
|
|
|
+ * callback to continue AP/channel setup. Reset the CAC start flag and
|
|
|
+ * return.
|
|
|
+ */
|
|
|
+ if (iface->cac_started) {
|
|
|
+ wpa_printf(MSG_DEBUG, "%s: iface->cac_started: %d",
|
|
|
+ __func__, iface->cac_started);
|
|
|
+ iface->cac_started = 0;
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ieee80211_is_dfs(iface->freq)) {
|
|
|
+ wpa_printf(MSG_DEBUG, "%s: freq %d MHz requires DFS",
|
|
|
+ __func__, iface->freq);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ wpa_printf(MSG_DEBUG,
|
|
|
+ "%s: freq %d MHz does not require DFS. Continue channel/AP setup",
|
|
|
+ __func__, iface->freq);
|
|
|
+ return 2;
|
|
|
+}
|