test_ap_params.py 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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 subprocess
  9. import hwsim_utils
  10. import hostapd
  11. def test_ap_fragmentation_rts_set_high(dev, apdev):
  12. """WPA2-PSK AP with fragmentation and RTS thresholds larger than frame length"""
  13. ssid = "test-wpa2-psk"
  14. passphrase = 'qwertyuiop'
  15. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  16. params['rts_threshold'] = "1000"
  17. params['fragm_threshold'] = "2000"
  18. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  19. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  20. hwsim_utils.test_connectivity(dev[0], hapd)
  21. def test_ap_fragmentation_open(dev, apdev):
  22. """Open AP with fragmentation threshold"""
  23. ssid = "fragmentation"
  24. params = {}
  25. params['ssid'] = ssid
  26. params['fragm_threshold'] = "1000"
  27. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  28. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  29. hwsim_utils.test_connectivity(dev[0], hapd)
  30. def test_ap_fragmentation_wpa2(dev, apdev):
  31. """WPA2-PSK AP with fragmentation threshold"""
  32. ssid = "test-wpa2-psk"
  33. passphrase = 'qwertyuiop'
  34. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  35. params['fragm_threshold'] = "1000"
  36. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  37. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  38. hwsim_utils.test_connectivity(dev[0], hapd)
  39. def test_ap_vendor_elements(dev, apdev):
  40. """WPA2-PSK AP with vendor elements added"""
  41. bssid = apdev[0]['bssid']
  42. ssid = "test-wpa2-psk"
  43. passphrase = 'qwertyuiop'
  44. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  45. params['vendor_elements'] = "dd0411223301"
  46. hostapd.add_ap(apdev[0]['ifname'], params)
  47. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  48. bss = dev[0].get_bss(bssid)
  49. if "dd0411223301" not in bss['ie']:
  50. raise Exception("Vendor element not shown in scan results")
  51. def test_ap_country(dev, apdev):
  52. """WPA2-PSK AP setting country code and using 5 GHz band"""
  53. try:
  54. bssid = apdev[0]['bssid']
  55. ssid = "test-wpa2-psk"
  56. passphrase = 'qwertyuiop'
  57. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  58. params['country_code'] = 'FI'
  59. params['ieee80211d'] = '1'
  60. params['hw_mode'] = 'a'
  61. params['channel'] = '36'
  62. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  63. dev[0].connect(ssid, psk=passphrase, scan_freq="5180")
  64. hwsim_utils.test_connectivity(dev[0], hapd)
  65. finally:
  66. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  67. def test_ap_acl_accept(dev, apdev):
  68. """MAC ACL accept list"""
  69. ssid = "acl"
  70. params = {}
  71. params['ssid'] = ssid
  72. params['accept_mac_file'] = "hostapd.macaddr"
  73. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  74. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  75. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  76. dev[1].scan_for_bss(apdev[0]['bssid'], freq="2412")
  77. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  78. dev[0].request("REMOVE_NETWORK all")
  79. dev[1].request("REMOVE_NETWORK all")
  80. hapd.request("SET macaddr_acl 1")
  81. dev[1].dump_monitor()
  82. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  83. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  84. ev = dev[1].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  85. if ev is not None:
  86. raise Exception("Unexpected association")
  87. def test_ap_acl_deny(dev, apdev):
  88. """MAC ACL deny list"""
  89. ssid = "acl"
  90. params = {}
  91. params['ssid'] = ssid
  92. params['deny_mac_file'] = "hostapd.macaddr"
  93. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  94. dev[0].scan_for_bss(apdev[0]['bssid'], freq="2412")
  95. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  96. dev[1].scan_for_bss(apdev[0]['bssid'], freq="2412")
  97. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  98. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  99. if ev is not None:
  100. raise Exception("Unexpected association")
  101. def test_ap_wds_sta(dev, apdev):
  102. """WPA2-PSK AP with STA using 4addr mode"""
  103. ssid = "test-wpa2-psk"
  104. passphrase = 'qwertyuiop'
  105. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  106. params['wds_sta'] = "1"
  107. params['wds_bridge'] = "wds-br0"
  108. hostapd.add_ap(apdev[0]['ifname'], params)
  109. try:
  110. subprocess.call(['sudo', 'brctl', 'addbr', 'wds-br0'])
  111. subprocess.call(['sudo', 'brctl', 'setfd', 'wds-br0', '0'])
  112. subprocess.call(['sudo', 'ip', 'link', 'set', 'dev', 'wds-br0', 'up'])
  113. subprocess.call(['sudo', 'iw', dev[0].ifname, 'set', '4addr', 'on'])
  114. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  115. hwsim_utils.test_connectivity_iface(dev[0], "wds-br0", max_tries=15)
  116. finally:
  117. subprocess.call(['sudo', 'iw', dev[0].ifname, 'set', '4addr', 'off'])
  118. subprocess.call(['sudo', 'ip', 'link', 'set', 'dev', 'wds-br0', 'down'])
  119. subprocess.call(['sudo', 'brctl', 'delbr', 'wds-br0'])
  120. def test_ap_inactivity_poll(dev, apdev):
  121. """AP using inactivity poll"""
  122. ssid = "test-wpa2-psk"
  123. passphrase = 'qwertyuiop'
  124. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  125. params['ap_max_inactivity'] = "1"
  126. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  127. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  128. hapd.set("ext_mgmt_frame_handling", "1")
  129. dev[0].request("DISCONNECT")
  130. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  131. if ev is None:
  132. raise Exception("MGMT RX wait timed out for Deauth")
  133. hapd.set("ext_mgmt_frame_handling", "0")
  134. ev = hapd.wait_event(["AP-STA-DISCONNECTED"], timeout=30)
  135. if ev is None:
  136. raise Exception("STA disconnection on inactivity was not reported")
  137. def test_ap_inactivity_disconnect(dev, apdev):
  138. """AP using inactivity disconnect"""
  139. ssid = "test-wpa2-psk"
  140. passphrase = 'qwertyuiop'
  141. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  142. params['ap_max_inactivity'] = "1"
  143. params['skip_inactivity_poll'] = "1"
  144. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  145. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  146. hapd.set("ext_mgmt_frame_handling", "1")
  147. dev[0].request("DISCONNECT")
  148. ev = hapd.wait_event(["MGMT-RX"], timeout=5)
  149. if ev is None:
  150. raise Exception("MGMT RX wait timed out for Deauth")
  151. hapd.set("ext_mgmt_frame_handling", "0")
  152. ev = hapd.wait_event(["AP-STA-DISCONNECTED"], timeout=30)
  153. if ev is None:
  154. raise Exception("STA disconnection on inactivity was not reported")
  155. def test_ap_basic_rates(dev, apdev):
  156. """Open AP with lots of basic rates"""
  157. ssid = "basic rates"
  158. params = {}
  159. params['ssid'] = ssid
  160. params['basic_rates'] = "10 20 55 110 60 90 120 180 240 360 480 540"
  161. hostapd.add_ap(apdev[0]['ifname'], params)
  162. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  163. def test_ap_short_preamble(dev, apdev):
  164. """Open AP with short preamble"""
  165. ssid = "short preamble"
  166. params = {}
  167. params['ssid'] = ssid
  168. params['preamble'] = "1"
  169. hostapd.add_ap(apdev[0]['ifname'], params)
  170. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  171. def test_ap_spectrum_management_required(dev, apdev):
  172. """Open AP with spectrum management required"""
  173. ssid = "spectrum mgmt"
  174. params = {}
  175. params['ssid'] = ssid
  176. params["country_code"] = "JP"
  177. params["hw_mode"] = "a"
  178. params["channel"] = "36"
  179. params["ieee80211d"] = "1"
  180. params["local_pwr_constraint"] = "3"
  181. params['spectrum_mgmt_required'] = "1"
  182. try:
  183. hostapd.add_ap(apdev[0]['ifname'], params)
  184. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="5180")
  185. finally:
  186. subprocess.call(['sudo', 'iw', 'reg', 'set', '00'])
  187. def test_ap_max_listen_interval(dev, apdev):
  188. """Open AP with maximum listen interval limit"""
  189. ssid = "listen"
  190. params = {}
  191. params['ssid'] = ssid
  192. params['max_listen_interval'] = "1"
  193. hostapd.add_ap(apdev[0]['ifname'], params)
  194. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  195. ev = dev[0].wait_event(["CTRL-EVENT-ASSOC-REJECT"])
  196. if ev is None:
  197. raise Exception("Association rejection not reported")
  198. if "status_code=51" not in ev:
  199. raise Exception("Unexpected ASSOC-REJECT reason")
  200. def test_ap_max_num_sta(dev, apdev):
  201. """Open AP with maximum STA count"""
  202. ssid = "max"
  203. params = {}
  204. params['ssid'] = ssid
  205. params['max_num_sta'] = "1"
  206. hostapd.add_ap(apdev[0]['ifname'], params)
  207. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  208. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412", wait_connect=False)
  209. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  210. if ev is not None:
  211. raise Exception("Unexpected association")
  212. def test_ap_tx_queue_params(dev, apdev):
  213. """Open AP with TX queue params set"""
  214. ssid = "tx"
  215. params = {}
  216. params['ssid'] = ssid
  217. params['tx_queue_data2_aifs'] = "4"
  218. params['tx_queue_data2_cwmin'] = "7"
  219. params['tx_queue_data2_cwmax'] = "1023"
  220. params['tx_queue_data2_burst'] = "4.2"
  221. params['tx_queue_data1_aifs'] = "4"
  222. params['tx_queue_data1_cwmin'] = "7"
  223. params['tx_queue_data1_cwmax'] = "1023"
  224. params['tx_queue_data1_burst'] = "2"
  225. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  226. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  227. hwsim_utils.test_connectivity(dev[0], hapd)