2013-11-03 20:57:39 +01:00
|
|
|
# Test cases for DFS
|
|
|
|
# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
|
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
|
|
import hwsim_utils
|
|
|
|
import hostapd
|
|
|
|
|
|
|
|
def wait_dfs_event(hapd, event, timeout):
|
|
|
|
dfs_events = [ "DFS-RADAR-DETECTED", "DFS-NEW-CHANNEL",
|
|
|
|
"DFS-CAC-START", "DFS-CAC-COMPLETED",
|
|
|
|
"DFS-NOP-FINISHED", "AP-ENABLED" ]
|
|
|
|
ev = hapd.wait_event(dfs_events, timeout=timeout)
|
|
|
|
if not ev:
|
|
|
|
raise Exception("DFS event timed out")
|
|
|
|
if event not in ev:
|
|
|
|
raise Exception("Unexpected DFS event")
|
|
|
|
return ev
|
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
def start_dfs_ap(ap, allow_failure=False):
|
2013-11-03 20:57:39 +01:00
|
|
|
ifname = ap['ifname']
|
|
|
|
logger.info("Starting AP " + ifname + " on DFS channel")
|
|
|
|
hapd_global = hostapd.HostapdGlobal()
|
|
|
|
hapd_global.remove(ifname)
|
|
|
|
hapd_global.add(ifname)
|
|
|
|
hapd = hostapd.Hostapd(ifname)
|
|
|
|
if not hapd.ping():
|
|
|
|
raise Exception("Could not ping hostapd")
|
|
|
|
hapd.set_defaults()
|
|
|
|
hapd.set("ssid", "dfs")
|
|
|
|
hapd.set("country_code", "FI")
|
|
|
|
hapd.set("ieee80211d", "1")
|
|
|
|
hapd.set("ieee80211h", "1")
|
|
|
|
hapd.set("hw_mode", "a")
|
|
|
|
hapd.set("channel", "52")
|
|
|
|
hapd.enable()
|
|
|
|
|
|
|
|
ev = wait_dfs_event(hapd, "DFS-CAC-START", 5)
|
|
|
|
if "DFS-CAC-START" not in ev:
|
|
|
|
raise Exception("Unexpected DFS event")
|
|
|
|
|
|
|
|
state = hapd.get_status_field("state")
|
|
|
|
if state != "DFS":
|
2014-03-22 16:14:44 +01:00
|
|
|
if allow_failure:
|
|
|
|
logger.info("Interface state not DFS: " + state)
|
|
|
|
return None
|
|
|
|
raise Exception("Unexpected interface state: " + state)
|
2013-11-03 20:57:39 +01:00
|
|
|
|
|
|
|
return hapd
|
|
|
|
|
|
|
|
def test_dfs(dev, apdev):
|
|
|
|
"""DFS CAC functionality on clear channel"""
|
2014-03-22 16:14:44 +01:00
|
|
|
try:
|
|
|
|
hapd = start_dfs_ap(apdev[0], allow_failure=True)
|
|
|
|
if hapd is None:
|
|
|
|
if not os.path.exists("dfs"):
|
|
|
|
return "skip"
|
|
|
|
raise Exception("Failed to start DFS AP")
|
|
|
|
|
|
|
|
ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 70)
|
|
|
|
if "success=1" not in ev:
|
|
|
|
raise Exception("CAC failed")
|
|
|
|
if "freq=5260" not in ev:
|
|
|
|
raise Exception("Unexpected DFS freq result")
|
|
|
|
|
|
|
|
ev = hapd.wait_event(["AP-ENABLED"], timeout=5)
|
|
|
|
if not ev:
|
|
|
|
raise Exception("AP setup timed out")
|
|
|
|
|
|
|
|
state = hapd.get_status_field("state")
|
|
|
|
if state != "ENABLED":
|
|
|
|
raise Exception("Unexpected interface state")
|
|
|
|
|
|
|
|
freq = hapd.get_status_field("freq")
|
|
|
|
if freq != "5260":
|
|
|
|
raise Exception("Unexpected frequency")
|
|
|
|
|
|
|
|
#TODO: need to fix hwsim for DFS?!
|
|
|
|
#dev[0].connect("dfs", key_mgmt="NONE")
|
|
|
|
finally:
|
|
|
|
subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
|
2013-11-03 20:57:39 +01:00
|
|
|
|
|
|
|
def test_dfs_radar(dev, apdev):
|
|
|
|
"""DFS CAC functionality with radar detected"""
|
|
|
|
if not os.path.exists("dfs"):
|
|
|
|
return "skip"
|
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
try:
|
|
|
|
hapd = start_dfs_ap(apdev[0])
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
hapd.request("RADAR DETECTED freq=5260 ht_enabled=1 chan_width=1")
|
|
|
|
ev = wait_dfs_event(hapd, "DFS-RADAR-DETECTED", 70)
|
|
|
|
if "freq=5260" not in ev:
|
|
|
|
raise Exception("Unexpected DFS radar detection freq")
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
state = hapd.get_status_field("state")
|
|
|
|
if state != "DFS":
|
|
|
|
raise Exception("Unexpected interface state")
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
ev = wait_dfs_event(hapd, "DFS-NEW-CHANNEL", 5)
|
|
|
|
if "freq=5260" in ev:
|
|
|
|
raise Exception("Unexpected DFS new freq")
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
ev = wait_dfs_event(hapd, "DFS-CAC-START", 5)
|
|
|
|
if "DFS-CAC-START" not in ev:
|
|
|
|
raise Exception("Unexpected DFS event")
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
ev = wait_dfs_event(hapd, "DFS-CAC-COMPLETED", 70)
|
|
|
|
if "success=1" not in ev:
|
|
|
|
raise Exception("CAC failed")
|
|
|
|
if "freq=5260" in ev:
|
|
|
|
raise Exception("Unexpected DFS freq result - radar channel")
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
ev = hapd.wait_event(["AP-ENABLED"], timeout=5)
|
|
|
|
if not ev:
|
|
|
|
raise Exception("AP setup timed out")
|
|
|
|
|
|
|
|
state = hapd.get_status_field("state")
|
|
|
|
if state != "ENABLED":
|
|
|
|
raise Exception("Unexpected interface state")
|
|
|
|
|
|
|
|
freq = hapd.get_status_field("freq")
|
|
|
|
if freq != "5260":
|
|
|
|
raise Exception("Unexpected frequency")
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
#TODO: need to fix hwsim for DFS?!
|
|
|
|
#dev[0].connect("dfs", key_mgmt="NONE")
|
|
|
|
finally:
|
|
|
|
subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
|
2013-11-03 20:57:39 +01:00
|
|
|
|
2014-03-22 16:14:44 +01:00
|
|
|
def test_dfs_radar_on_non_dfs_channel(dev, apdev):
|
|
|
|
"""DFS radar detection test code on non-DFS channel"""
|
|
|
|
params = { "ssid": "radar" }
|
|
|
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params)
|
|
|
|
|
|
|
|
hapd.request("RADAR DETECTED freq=5260 ht_enabled=1 chan_width=1")
|
|
|
|
hapd.request("RADAR DETECTED freq=2412 ht_enabled=1 chan_width=1")
|