123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- # Test cases for hostapd tracking unconnected stations
- # Copyright (c) 2015, Jouni Malinen <j@w1.fi>
- #
- # This software may be distributed under the terms of the BSD license.
- # See README for more details.
- import logging
- logger = logging.getLogger()
- import subprocess
- import time
- import hostapd
- from wpasupplicant import WpaSupplicant
- def test_ap_track_sta(dev, apdev):
- """Dualband AP tracking unconnected stations"""
- try:
- _test_ap_track_sta(dev, apdev)
- finally:
- subprocess.call(['iw', 'reg', 'set', '00'])
- def _test_ap_track_sta(dev, apdev):
- params = { "ssid": "track",
- "country_code": "US",
- "hw_mode": "g",
- "channel": "6",
- "track_sta_max_num": "2" }
- hapd = hostapd.add_ap(apdev[0]['ifname'], params)
- bssid = apdev[0]['bssid']
- params = { "ssid": "track",
- "country_code": "US",
- "hw_mode": "a",
- "channel": "40",
- "track_sta_max_num": "100",
- "track_sta_max_age": "1" }
- hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
- bssid2 = apdev[1]['bssid']
- for i in range(2):
- dev[0].scan_for_bss(bssid, freq=2437, force_scan=True)
- dev[0].scan_for_bss(bssid2, freq=5200, force_scan=True)
- dev[1].scan_for_bss(bssid, freq=2437, force_scan=True)
- dev[2].scan_for_bss(bssid2, freq=5200, force_scan=True)
- addr0 = dev[0].own_addr()
- addr1 = dev[1].own_addr()
- addr2 = dev[2].own_addr()
- track = hapd.request("TRACK_STA_LIST")
- if addr0 not in track or addr1 not in track:
- raise Exception("Station missing from 2.4 GHz tracking")
- if addr2 in track:
- raise Exception("Unexpected station included in 2.4 GHz tracking")
-
- track = hapd2.request("TRACK_STA_LIST")
- if addr0 not in track or addr2 not in track:
- raise Exception("Station missing from 5 GHz tracking")
- if addr1 in track:
- raise Exception("Unexpected station included in 5 GHz tracking")
- # Test expiration
- time.sleep(1.1)
- track = hapd.request("TRACK_STA_LIST")
- if addr0 not in track or addr1 not in track:
- raise Exception("Station missing from 2.4 GHz tracking (expiration)")
- track = hapd2.request("TRACK_STA_LIST")
- if addr0 in track or addr2 in track:
- raise Exception("Station not expired from 5 GHz tracking")
- # Test maximum list length
- dev[0].scan_for_bss(bssid, freq=2437, force_scan=True)
- dev[1].scan_for_bss(bssid, freq=2437, force_scan=True)
- dev[2].scan_for_bss(bssid, freq=2437, force_scan=True)
- track = hapd.request("TRACK_STA_LIST")
- if len(track.splitlines()) != 2:
- raise Exception("Unexpected number of entries: %d" % len(track.splitlines()))
- if addr1 not in track or addr2 not in track:
- raise Exception("Station missing from 2.4 GHz tracking (max limit)")
- def test_ap_track_sta_no_probe_resp(dev, apdev):
- """Dualband AP not replying to probes from dualband STA on 2.4 GHz"""
- try:
- _test_ap_track_sta_no_probe_resp(dev, apdev)
- finally:
- subprocess.call(['iw', 'reg', 'set', '00'])
- def _test_ap_track_sta_no_probe_resp(dev, apdev):
- dev[0].flush_scan_cache()
- params = { "ssid": "track",
- "country_code": "US",
- "hw_mode": "g",
- "channel": "6",
- "beacon_int": "10000",
- "no_probe_resp_if_seen_on": apdev[1]['ifname'] }
- hapd = hostapd.add_ap(apdev[0]['ifname'], params)
- bssid = apdev[0]['bssid']
- params = { "ssid": "track",
- "country_code": "US",
- "hw_mode": "a",
- "channel": "40",
- "track_sta_max_num": "100" }
- hapd2 = hostapd.add_ap(apdev[1]['ifname'], params)
- bssid2 = apdev[1]['bssid']
- dev[0].scan_for_bss(bssid2, freq=5200, force_scan=True)
- dev[1].scan_for_bss(bssid, freq=2437, force_scan=True)
- dev[0].scan(freq=2437, type="ONLY")
- dev[0].scan(freq=2437, type="ONLY")
- if dev[0].get_bss(bssid):
- raise Exception("2.4 GHz AP found unexpectedly")
|