test_ap_params.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. # Test various AP mode parameters
  2. # Copyright (c) 2014, Qualcomm Atheros, Inc.
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import logging
  7. logger = logging.getLogger()
  8. import os
  9. import subprocess
  10. import hwsim_utils
  11. import hostapd
  12. from tshark import run_tshark
  13. from utils import alloc_fail
  14. def test_ap_fragmentation_rts_set_high(dev, apdev):
  15. """WPA2-PSK AP with fragmentation and RTS thresholds larger than frame length"""
  16. ssid = "test-wpa2-psk"
  17. passphrase = 'qwertyuiop'
  18. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  19. params['rts_threshold'] = "1000"
  20. params['fragm_threshold'] = "2000"
  21. hapd = hostapd.add_ap(apdev[0], params)
  22. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  23. hwsim_utils.test_connectivity(dev[0], hapd)
  24. def test_ap_fragmentation_open(dev, apdev):
  25. """Open AP with fragmentation threshold"""
  26. ssid = "fragmentation"
  27. params = {}
  28. params['ssid'] = ssid
  29. params['fragm_threshold'] = "1000"
  30. hapd = hostapd.add_ap(apdev[0], params)
  31. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  32. hwsim_utils.test_connectivity(dev[0], hapd)
  33. def test_ap_fragmentation_wpa2(dev, apdev):
  34. """WPA2-PSK AP with fragmentation threshold"""
  35. ssid = "test-wpa2-psk"
  36. passphrase = 'qwertyuiop'
  37. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  38. params['fragm_threshold'] = "1000"
  39. hapd = hostapd.add_ap(apdev[0], params)
  40. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  41. hwsim_utils.test_connectivity(dev[0], hapd)
  42. def test_ap_vendor_elements(dev, apdev):
  43. """WPA2-PSK AP with vendor elements added"""
  44. bssid = apdev[0]['bssid']
  45. ssid = "test-wpa2-psk"
  46. passphrase = 'qwertyuiop'
  47. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  48. params['vendor_elements'] = "dd0411223301"
  49. hapd = hostapd.add_ap(apdev[0], params)
  50. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  51. bss = dev[0].get_bss(bssid)
  52. if "dd0411223301" not in bss['ie']:
  53. raise Exception("Vendor element not shown in scan results")
  54. hapd.set('vendor_elements', 'dd051122330203dd0400137400dd04001374ff')
  55. if "OK" not in hapd.request("UPDATE_BEACON"):
  56. raise Exception("UPDATE_BEACON failed")
  57. dev[1].scan_for_bss(apdev[0]['bssid'], freq="2412")
  58. bss = dev[1].get_bss(bssid)
  59. if "dd0411223301" in bss['ie']:
  60. raise Exception("Old vendor element still in scan results")
  61. if "dd051122330203" not in bss['ie']:
  62. raise Exception("New vendor element not shown in scan results")
  63. def test_ap_element_parse(dev, apdev):
  64. """Information element parsing - extra coverage"""
  65. bssid = apdev[0]['bssid']
  66. ssid = "test-wpa2-psk"
  67. params = { 'ssid': ssid,
  68. 'vendor_elements': "380501020304059e009e009e009e009e009e00" }
  69. hapd = hostapd.add_ap(apdev[0], params)
  70. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  71. bss = dev[0].get_bss(bssid)
  72. if "38050102030405" not in bss['ie']:
  73. raise Exception("Timeout element not shown in scan results")
  74. def test_ap_element_parse_oom(dev, apdev):
  75. """Information element parsing OOM"""
  76. bssid = apdev[0]['bssid']
  77. ssid = "test-wpa2-psk"
  78. params = { 'ssid': ssid,
  79. 'vendor_elements': "dd0d506f9a0a00000600411c440028" }
  80. hapd = hostapd.add_ap(apdev[0], params)
  81. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  82. with alloc_fail(dev[0], 1, "wpabuf_alloc;ieee802_11_vendor_ie_concat"):
  83. bss = dev[0].get_bss(bssid)
  84. logger.info(str(bss))
  85. def test_ap_country(dev, apdev):
  86. """WPA2-PSK AP setting country code and using 5 GHz band"""
  87. try:
  88. hapd = None
  89. bssid = apdev[0]['bssid']
  90. ssid = "test-wpa2-psk"
  91. passphrase = 'qwertyuiop'
  92. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  93. params['country_code'] = 'FI'
  94. params['ieee80211d'] = '1'
  95. params['hw_mode'] = 'a'
  96. params['channel'] = '36'
  97. hapd = hostapd.add_ap(apdev[0], params)
  98. dev[0].connect(ssid, psk=passphrase, scan_freq="5180")
  99. hwsim_utils.test_connectivity(dev[0], hapd)
  100. finally:
  101. dev[0].request("DISCONNECT")
  102. if hapd:
  103. hapd.request("DISABLE")
  104. subprocess.call(['iw', 'reg', 'set', '00'])
  105. dev[0].flush_scan_cache()
  106. def test_ap_acl_accept(dev, apdev):
  107. """MAC ACL accept list"""
  108. ssid = "acl"
  109. params = {}
  110. params['ssid'] = ssid
  111. params['accept_mac_file'] = "hostapd.macaddr"
  112. hapd = hostapd.add_ap(apdev[0], params)
  113. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  114. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  115. dev[1].scan_for_bss(apdev[0]['bssid'], freq="2412")
  116. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  117. dev[0].request("REMOVE_NETWORK all")
  118. dev[1].request("REMOVE_NETWORK all")
  119. hapd.request("SET macaddr_acl 1")
  120. dev[1].dump_monitor()
  121. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  122. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  123. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  124. if ev is not None:
  125. raise Exception("Unexpected association")
  126. def test_ap_acl_deny(dev, apdev):
  127. """MAC ACL deny list"""
  128. ssid = "acl"
  129. params = {}
  130. params['ssid'] = ssid
  131. params['deny_mac_file'] = "hostapd.macaddr"
  132. hapd = hostapd.add_ap(apdev[0], params)
  133. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  134. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  135. dev[1].scan_for_bss(apdev[0]['bssid'], freq="2412")
  136. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  137. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  138. if ev is not None:
  139. raise Exception("Unexpected association")
  140. def test_ap_wds_sta(dev, apdev):
  141. """WPA2-PSK AP with STA using 4addr mode"""
  142. ssid = "test-wpa2-psk"
  143. passphrase = 'qwertyuiop'
  144. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  145. params['wds_sta'] = "1"
  146. params['wds_bridge'] = "wds-br0"
  147. hapd = hostapd.add_ap(apdev[0], params)
  148. try:
  149. subprocess.call(['brctl', 'addbr', 'wds-br0'])
  150. subprocess.call(['brctl', 'setfd', 'wds-br0', '0'])
  151. subprocess.call(['ip', 'link', 'set', 'dev', 'wds-br0', 'up'])
  152. subprocess.call(['iw', dev[0].ifname, 'set', '4addr', 'on'])
  153. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  154. hwsim_utils.test_connectivity_iface(dev[0], hapd, "wds-br0",
  155. max_tries=15)
  156. finally:
  157. subprocess.call(['iw', dev[0].ifname, 'set', '4addr', 'off'])
  158. subprocess.call(['ip', 'link', 'set', 'dev', 'wds-br0', 'down'])
  159. subprocess.call(['brctl', 'delbr', 'wds-br0'])
  160. def test_ap_inactivity_poll(dev, apdev):
  161. """AP using inactivity poll"""
  162. ssid = "test-wpa2-psk"
  163. passphrase = 'qwertyuiop'
  164. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  165. params['ap_max_inactivity'] = "1"
  166. hapd = hostapd.add_ap(apdev[0], params)
  167. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  168. hapd.set("ext_mgmt_frame_handling", "1")
  169. dev[0].request("DISCONNECT")
  170. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  171. if ev is None:
  172. raise Exception("MGMT RX wait timed out for Deauth")
  173. hapd.set("ext_mgmt_frame_handling", "0")
  174. ev = hapd.wait_event(["AP-STA-DISCONNECTED"], timeout=30)
  175. if ev is None:
  176. raise Exception("STA disconnection on inactivity was not reported")
  177. def test_ap_inactivity_disconnect(dev, apdev):
  178. """AP using inactivity disconnect"""
  179. ssid = "test-wpa2-psk"
  180. passphrase = 'qwertyuiop'
  181. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  182. params['ap_max_inactivity'] = "1"
  183. params['skip_inactivity_poll'] = "1"
  184. hapd = hostapd.add_ap(apdev[0], params)
  185. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  186. hapd.set("ext_mgmt_frame_handling", "1")
  187. dev[0].request("DISCONNECT")
  188. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  189. if ev is None:
  190. raise Exception("MGMT RX wait timed out for Deauth")
  191. hapd.set("ext_mgmt_frame_handling", "0")
  192. ev = hapd.wait_event(["AP-STA-DISCONNECTED"], timeout=30)
  193. if ev is None:
  194. raise Exception("STA disconnection on inactivity was not reported")
  195. def test_ap_basic_rates(dev, apdev):
  196. """Open AP with lots of basic rates"""
  197. ssid = "basic rates"
  198. params = {}
  199. params['ssid'] = ssid
  200. params['basic_rates'] = "10 20 55 110 60 90 120 180 240 360 480 540"
  201. hostapd.add_ap(apdev[0], params)
  202. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  203. def test_ap_short_preamble(dev, apdev):
  204. """Open AP with short preamble"""
  205. ssid = "short preamble"
  206. params = {}
  207. params['ssid'] = ssid
  208. params['preamble'] = "1"
  209. hostapd.add_ap(apdev[0], params)
  210. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  211. def test_ap_spectrum_management_required(dev, apdev):
  212. """Open AP with spectrum management required"""
  213. ssid = "spectrum mgmt"
  214. params = {}
  215. params['ssid'] = ssid
  216. params["country_code"] = "JP"
  217. params["hw_mode"] = "a"
  218. params["channel"] = "36"
  219. params["ieee80211d"] = "1"
  220. params["local_pwr_constraint"] = "3"
  221. params['spectrum_mgmt_required'] = "1"
  222. try:
  223. hapd = None
  224. hapd = hostapd.add_ap(apdev[0], params)
  225. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="5180")
  226. finally:
  227. dev[0].request("DISCONNECT")
  228. if hapd:
  229. hapd.request("DISABLE")
  230. subprocess.call(['iw', 'reg', 'set', '00'])
  231. dev[0].flush_scan_cache()
  232. def test_ap_max_listen_interval(dev, apdev):
  233. """Open AP with maximum listen interval limit"""
  234. ssid = "listen"
  235. params = {}
  236. params['ssid'] = ssid
  237. params['max_listen_interval'] = "1"
  238. hostapd.add_ap(apdev[0], params)
  239. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  240. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  241. if ev is None:
  242. raise Exception("Association rejection not reported")
  243. if "status_code=51" not in ev:
  244. raise Exception("Unexpected ASSOC-REJECT reason")
  245. def test_ap_max_num_sta(dev, apdev):
  246. """Open AP with maximum STA count"""
  247. ssid = "max"
  248. params = {}
  249. params['ssid'] = ssid
  250. params['max_num_sta'] = "1"
  251. hostapd.add_ap(apdev[0], params)
  252. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  253. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  254. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  255. if ev is not None:
  256. raise Exception("Unexpected association")
  257. def test_ap_max_num_sta_no_probe_resp(dev, apdev, params):
  258. """Maximum STA count and limit on Probe Response frames"""
  259. logdir = params['logdir']
  260. dev[0].flush_scan_cache()
  261. ssid = "max"
  262. params = {}
  263. params['ssid'] = ssid
  264. params['beacon_int'] = "2000"
  265. params['max_num_sta'] = "1"
  266. params['no_probe_resp_if_max_sta'] = "1"
  267. hostapd.add_ap(apdev[0], params)
  268. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  269. dev[0].scan(freq=2412, type="ONLY")
  270. dev[0].scan(freq=2412, type="ONLY")
  271. seen = dev[0].get_bss(apdev[0]['bssid']) != None
  272. dev[1].scan(freq=2412, type="ONLY")
  273. if seen:
  274. out = run_tshark(os.path.join(logdir, "hwsim0.pcapng"),
  275. "wlan.fc.type_subtype == 5", ["wlan.da" ])
  276. if out:
  277. if dev[0].own_addr() not in out:
  278. # Discovery happened through Beacon frame reception. That's not
  279. # an error case.
  280. seen = False
  281. if dev[1].own_addr() not in out:
  282. raise Exception("No Probe Response frames to dev[1] seen")
  283. if seen:
  284. raise Exception("AP found unexpectedly")
  285. def test_ap_tx_queue_params(dev, apdev):
  286. """Open AP with TX queue params set"""
  287. ssid = "tx"
  288. params = {}
  289. params['ssid'] = ssid
  290. params['tx_queue_data2_aifs'] = "4"
  291. params['tx_queue_data2_cwmin'] = "7"
  292. params['tx_queue_data2_cwmax'] = "1023"
  293. params['tx_queue_data2_burst'] = "4.2"
  294. params['tx_queue_data1_aifs'] = "4"
  295. params['tx_queue_data1_cwmin'] = "7"
  296. params['tx_queue_data1_cwmax'] = "1023"
  297. params['tx_queue_data1_burst'] = "2"
  298. hapd = hostapd.add_ap(apdev[0], params)
  299. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  300. hwsim_utils.test_connectivity(dev[0], hapd)