2013-03-30 12:47:22 +01:00
|
|
|
# Python class for controlling wlantest
|
2014-01-05 11:35:13 +01:00
|
|
|
# Copyright (c) 2013-2014, Jouni Malinen <j@w1.fi>
|
2013-03-30 12:47:22 +01:00
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
2016-05-19 15:06:49 +02:00
|
|
|
import re
|
2013-03-30 12:47:22 +01:00
|
|
|
import os
|
2016-05-19 15:06:49 +02:00
|
|
|
import posixpath
|
2013-03-30 12:47:22 +01:00
|
|
|
import time
|
|
|
|
import subprocess
|
|
|
|
import logging
|
|
|
|
import wpaspy
|
|
|
|
|
2013-10-31 11:46:42 +01:00
|
|
|
logger = logging.getLogger()
|
2013-03-30 12:47:22 +01:00
|
|
|
|
|
|
|
class Wlantest:
|
2016-05-19 15:06:49 +02:00
|
|
|
remote_host = None
|
|
|
|
setup_params = None
|
|
|
|
exe_thread = None
|
|
|
|
exe_res = []
|
|
|
|
monitor_mod = None
|
|
|
|
setup_done = False
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def stop_remote_wlantest(cls):
|
|
|
|
if cls.exe_thread is None:
|
|
|
|
# Local flow - no need for remote operations
|
|
|
|
return
|
|
|
|
|
|
|
|
cls.remote_host.execute(["killall", "-9", "wlantest"])
|
|
|
|
cls.remote_host.wait_execute_complete(cls.exe_thread, 5)
|
|
|
|
cls.exe_thread = None
|
|
|
|
cls.exe_res = []
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def reset_remote_wlantest(cls):
|
|
|
|
cls.stop_remote_wlantest()
|
|
|
|
cls.remote_host = None
|
|
|
|
cls.setup_params = None
|
|
|
|
cls.exe_thread = None
|
|
|
|
cls.exe_res = []
|
|
|
|
cls.monitor_mod = None
|
|
|
|
cls.setup_done = False
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def start_remote_wlantest(cls):
|
|
|
|
if cls.remote_host is None:
|
|
|
|
# Local flow - no need for remote operations
|
|
|
|
return
|
|
|
|
if cls.exe_thread is not None:
|
|
|
|
raise Exception("Cannot start wlantest twice")
|
|
|
|
|
|
|
|
log_dir = cls.setup_params['log_dir']
|
|
|
|
ifaces = re.split('; | |, ', cls.remote_host.ifname)
|
|
|
|
ifname = ifaces[0]
|
|
|
|
exe = cls.setup_params["wlantest"]
|
|
|
|
tc_name = cls.setup_params["tc_name"]
|
|
|
|
base_log_name = tc_name + "_wlantest_" + \
|
|
|
|
cls.remote_host.name + "_" + ifname
|
|
|
|
log_file = posixpath.join(log_dir, base_log_name + ".log")
|
|
|
|
pcap_file = posixpath.join(log_dir, base_log_name + ".pcapng")
|
|
|
|
cmd = "{} -i {} -n {} -c -dtN -L {}".format(exe, ifname,
|
|
|
|
pcap_file, log_file)
|
|
|
|
cls.remote_host.add_log(log_file)
|
|
|
|
cls.remote_host.add_log(pcap_file)
|
|
|
|
cls.exe_thread = cls.remote_host.execute_run(cmd.split(), cls.exe_res)
|
|
|
|
# Give wlantest a chance to start working
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def register_remote_wlantest(cls, host, setup_params, monitor_mod):
|
|
|
|
if cls.remote_host is not None:
|
|
|
|
raise Exception("Cannot register remote wlantest twice")
|
|
|
|
cls.remote_host = host
|
|
|
|
cls.setup_params = setup_params
|
|
|
|
cls.monitor_mod = monitor_mod
|
|
|
|
status, buf = host.execute(["which", setup_params['wlantest']])
|
|
|
|
if status != 0:
|
|
|
|
raise Exception(host.name + " - wlantest: " + buf)
|
|
|
|
status, buf = host.execute(["which", setup_params['wlantest_cli']])
|
|
|
|
if status != 0:
|
|
|
|
raise Exception(host.name + " - wlantest_cli: " + buf)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def chan_from_wpa(cls, wpa, is_p2p=False):
|
|
|
|
if cls.monitor_mod is None:
|
|
|
|
return
|
|
|
|
m = cls.monitor_mod
|
|
|
|
return m.setup(cls.remote_host, [m.get_monitor_params(wpa, is_p2p)])
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setup(cls, wpa, is_p2p=False):
|
|
|
|
cls.chan_from_wpa(wpa, is_p2p)
|
|
|
|
cls.start_remote_wlantest()
|
|
|
|
cls.setup_done = True
|
|
|
|
|
2013-05-11 10:34:49 +02:00
|
|
|
def __init__(self):
|
2016-05-19 15:06:49 +02:00
|
|
|
if not self.setup_done:
|
|
|
|
raise Exception("Cannot create Wlantest instance before setup()")
|
2013-05-11 10:34:49 +02:00
|
|
|
if os.path.isfile('../../wlantest/wlantest_cli'):
|
|
|
|
self.wlantest_cli = '../../wlantest/wlantest_cli'
|
|
|
|
else:
|
|
|
|
self.wlantest_cli = 'wlantest_cli'
|
|
|
|
|
2016-05-19 15:06:49 +02:00
|
|
|
def cli_cmd(self, params):
|
|
|
|
if self.remote_host is not None:
|
|
|
|
exe = self.setup_params["wlantest_cli"]
|
|
|
|
ret = self.remote_host.execute([exe] + params)
|
|
|
|
if ret[0] != 0:
|
|
|
|
raise Exception("wlantest_cli failed")
|
|
|
|
return ret[1]
|
|
|
|
else:
|
|
|
|
return subprocess.check_output([self.wlantest_cli] + params)
|
|
|
|
|
2013-03-30 12:47:22 +01:00
|
|
|
def flush(self):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["flush"])
|
2013-03-30 12:47:22 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli flush failed")
|
|
|
|
|
2013-11-17 20:25:17 +01:00
|
|
|
def relog(self):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["relog"])
|
2013-11-17 20:25:17 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli relog failed")
|
|
|
|
|
2013-03-30 12:47:22 +01:00
|
|
|
def add_passphrase(self, passphrase):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["add_passphrase", passphrase])
|
2013-03-30 12:47:22 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli add_passphrase failed")
|
|
|
|
|
|
|
|
def add_wepkey(self, key):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["add_wepkey", key])
|
2013-03-30 12:47:22 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli add_key failed")
|
|
|
|
|
|
|
|
def info_bss(self, field, bssid):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["info_bss", field, bssid])
|
2013-03-30 12:47:22 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("Could not get BSS info from wlantest for " + bssid)
|
|
|
|
return res
|
|
|
|
|
2013-12-25 17:55:08 +01:00
|
|
|
def get_bss_counter(self, field, bssid):
|
2014-01-05 11:35:13 +01:00
|
|
|
try:
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["get_bss_counter", field, bssid])
|
2014-01-05 11:35:13 +01:00
|
|
|
except Exception, e:
|
|
|
|
return 0
|
2013-12-25 17:55:08 +01:00
|
|
|
if "FAIL" in res:
|
2014-01-05 11:35:13 +01:00
|
|
|
return 0
|
2013-12-25 17:55:08 +01:00
|
|
|
return int(res)
|
|
|
|
|
|
|
|
def clear_bss_counters(self, bssid):
|
2016-05-19 15:06:49 +02:00
|
|
|
self.cli_cmd(["clear_bss_counters", bssid])
|
2013-12-25 17:55:08 +01:00
|
|
|
|
2013-03-30 12:47:22 +01:00
|
|
|
def info_sta(self, field, bssid, addr):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["info_sta", field, bssid, addr])
|
2013-03-30 12:47:22 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("Could not get STA info from wlantest for " + addr)
|
|
|
|
return res
|
|
|
|
|
2013-03-30 14:31:50 +01:00
|
|
|
def get_sta_counter(self, field, bssid, addr):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["get_sta_counter", field, bssid, addr])
|
2013-03-30 14:31:50 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli command failed")
|
|
|
|
return int(res)
|
|
|
|
|
2013-12-24 19:21:58 +01:00
|
|
|
def clear_sta_counters(self, bssid, addr):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["clear_sta_counters", bssid, addr])
|
2013-12-24 19:21:58 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli command failed")
|
|
|
|
|
2013-03-30 12:47:22 +01:00
|
|
|
def tdls_clear(self, bssid, addr1, addr2):
|
2016-05-19 15:06:49 +02:00
|
|
|
self.cli_cmd(["clear_tdls_counters", bssid, addr1, addr2])
|
2013-03-30 12:47:22 +01:00
|
|
|
|
|
|
|
def get_tdls_counter(self, field, bssid, addr1, addr2):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["get_tdls_counter", field, bssid, addr1, addr2])
|
2013-03-30 12:47:22 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli command failed")
|
|
|
|
return int(res)
|
|
|
|
|
|
|
|
def require_ap_pmf_mandatory(self, bssid):
|
|
|
|
res = self.info_bss("rsn_capab", bssid)
|
|
|
|
if "MFPR" not in res:
|
|
|
|
raise Exception("AP did not require PMF")
|
|
|
|
if "MFPC" not in res:
|
|
|
|
raise Exception("AP did not enable PMF")
|
|
|
|
res = self.info_bss("key_mgmt", bssid)
|
|
|
|
if "PSK-SHA256" not in res:
|
|
|
|
raise Exception("AP did not enable SHA256-based AKM for PMF")
|
|
|
|
|
|
|
|
def require_ap_pmf_optional(self, bssid):
|
|
|
|
res = self.info_bss("rsn_capab", bssid)
|
|
|
|
if "MFPR" in res:
|
|
|
|
raise Exception("AP required PMF")
|
|
|
|
if "MFPC" not in res:
|
|
|
|
raise Exception("AP did not enable PMF")
|
|
|
|
|
|
|
|
def require_ap_no_pmf(self, bssid):
|
|
|
|
res = self.info_bss("rsn_capab", bssid)
|
|
|
|
if "MFPR" in res:
|
|
|
|
raise Exception("AP required PMF")
|
|
|
|
if "MFPC" in res:
|
|
|
|
raise Exception("AP enabled PMF")
|
|
|
|
|
|
|
|
def require_sta_pmf_mandatory(self, bssid, addr):
|
|
|
|
res = self.info_sta("rsn_capab", bssid, addr)
|
|
|
|
if "MFPR" not in res:
|
|
|
|
raise Exception("STA did not require PMF")
|
|
|
|
if "MFPC" not in res:
|
|
|
|
raise Exception("STA did not enable PMF")
|
|
|
|
|
|
|
|
def require_sta_pmf(self, bssid, addr):
|
|
|
|
res = self.info_sta("rsn_capab", bssid, addr)
|
|
|
|
if "MFPC" not in res:
|
|
|
|
raise Exception("STA did not enable PMF")
|
|
|
|
|
2015-02-19 15:37:12 +01:00
|
|
|
def require_sta_no_pmf(self, bssid, addr):
|
|
|
|
res = self.info_sta("rsn_capab", bssid, addr)
|
|
|
|
if "MFPC" in res:
|
|
|
|
raise Exception("STA enabled PMF")
|
|
|
|
|
2013-03-30 12:47:22 +01:00
|
|
|
def require_sta_key_mgmt(self, bssid, addr, key_mgmt):
|
|
|
|
res = self.info_sta("key_mgmt", bssid, addr)
|
|
|
|
if key_mgmt not in res:
|
|
|
|
raise Exception("Unexpected STA key_mgmt")
|
2013-12-24 19:21:58 +01:00
|
|
|
|
|
|
|
def get_tx_tid(self, bssid, addr, tid):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["get_tx_tid", bssid, addr, str(tid)])
|
2013-12-24 19:21:58 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli command failed")
|
|
|
|
return int(res)
|
|
|
|
|
|
|
|
def get_rx_tid(self, bssid, addr, tid):
|
2016-05-19 15:06:49 +02:00
|
|
|
res = self.cli_cmd(["get_rx_tid", bssid, addr, str(tid)])
|
2013-12-24 19:21:58 +01:00
|
|
|
if "FAIL" in res:
|
|
|
|
raise Exception("wlantest_cli command failed")
|
|
|
|
return int(res)
|
|
|
|
|
|
|
|
def get_tid_counters(self, bssid, addr):
|
|
|
|
tx = {}
|
|
|
|
rx = {}
|
|
|
|
for tid in range(0, 17):
|
|
|
|
tx[tid] = self.get_tx_tid(bssid, addr, tid)
|
|
|
|
rx[tid] = self.get_rx_tid(bssid, addr, tid)
|
|
|
|
return [ tx, rx ]
|