test_hapd_ctrl.py 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  1. # hostapd control interface
  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. from remotehost import remote_compatible
  7. import hostapd
  8. import hwsim_utils
  9. from utils import skip_with_fips, alloc_fail, fail_test
  10. @remote_compatible
  11. def test_hapd_ctrl_status(dev, apdev):
  12. """hostapd ctrl_iface STATUS commands"""
  13. ssid = "hapd-ctrl"
  14. bssid = apdev[0]['bssid']
  15. params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678")
  16. hapd = hostapd.add_ap(apdev[0], params)
  17. status = hapd.get_status()
  18. driver = hapd.get_driver_status()
  19. if status['bss[0]'] != apdev[0]['ifname']:
  20. raise Exception("Unexpected bss[0]")
  21. if status['ssid[0]'] != ssid:
  22. raise Exception("Unexpected ssid[0]")
  23. if status['bssid[0]'] != bssid:
  24. raise Exception("Unexpected bssid[0]")
  25. if status['freq'] != "2412":
  26. raise Exception("Unexpected freq")
  27. if driver['beacon_set'] != "1":
  28. raise Exception("Unexpected beacon_set")
  29. if driver['addr'] != bssid:
  30. raise Exception("Unexpected addr")
  31. @remote_compatible
  32. def test_hapd_ctrl_p2p_manager(dev, apdev):
  33. """hostapd as P2P Device manager"""
  34. ssid = "hapd-p2p-mgr"
  35. passphrase = "12345678"
  36. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  37. params['manage_p2p'] = '1'
  38. params['allow_cross_connection'] = '0'
  39. hapd = hostapd.add_ap(apdev[0], params)
  40. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  41. addr = dev[0].own_addr()
  42. if "OK" not in hapd.request("DEAUTHENTICATE " + addr + " p2p=2"):
  43. raise Exception("DEAUTHENTICATE command failed")
  44. dev[0].wait_disconnected(timeout=5)
  45. dev[0].wait_connected(timeout=10, error="Re-connection timed out")
  46. if "OK" not in hapd.request("DISASSOCIATE " + addr + " p2p=2"):
  47. raise Exception("DISASSOCIATE command failed")
  48. dev[0].wait_disconnected(timeout=5)
  49. dev[0].wait_connected(timeout=10, error="Re-connection timed out")
  50. @remote_compatible
  51. def test_hapd_ctrl_sta(dev, apdev):
  52. """hostapd and STA ctrl_iface commands"""
  53. ssid = "hapd-ctrl-sta"
  54. passphrase = "12345678"
  55. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  56. hapd = hostapd.add_ap(apdev[0], params)
  57. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  58. addr = dev[0].own_addr()
  59. if "FAIL" in hapd.request("STA " + addr):
  60. raise Exception("Unexpected STA failure")
  61. if "FAIL" not in hapd.request("STA " + addr + " eapol"):
  62. raise Exception("Unexpected STA-eapol success")
  63. if "FAIL" not in hapd.request("STA " + addr + " foo"):
  64. raise Exception("Unexpected STA-foo success")
  65. if "FAIL" not in hapd.request("STA 00:11:22:33:44"):
  66. raise Exception("Unexpected STA success")
  67. if "FAIL" not in hapd.request("STA 00:11:22:33:44:55"):
  68. raise Exception("Unexpected STA success")
  69. if len(hapd.request("STA-NEXT " + addr).splitlines()) > 0:
  70. raise Exception("Unexpected STA-NEXT result")
  71. if "FAIL" not in hapd.request("STA-NEXT 00:11:22:33:44"):
  72. raise Exception("Unexpected STA-NEXT success")
  73. @remote_compatible
  74. def test_hapd_ctrl_disconnect(dev, apdev):
  75. """hostapd and disconnection ctrl_iface commands"""
  76. ssid = "hapd-ctrl"
  77. passphrase = "12345678"
  78. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  79. hapd = hostapd.add_ap(apdev[0], params)
  80. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  81. addr = dev[0].p2p_dev_addr()
  82. if "FAIL" not in hapd.request("DEAUTHENTICATE 00:11:22:33:44"):
  83. raise Exception("Unexpected DEAUTHENTICATE success")
  84. if "OK" not in hapd.request("DEAUTHENTICATE ff:ff:ff:ff:ff:ff"):
  85. raise Exception("Unexpected DEAUTHENTICATE failure")
  86. dev[0].wait_disconnected(timeout=5)
  87. dev[0].wait_connected(timeout=10, error="Re-connection timed out")
  88. if "FAIL" not in hapd.request("DISASSOCIATE 00:11:22:33:44"):
  89. raise Exception("Unexpected DISASSOCIATE success")
  90. if "OK" not in hapd.request("DISASSOCIATE ff:ff:ff:ff:ff:ff"):
  91. raise Exception("Unexpected DISASSOCIATE failure")
  92. dev[0].wait_disconnected(timeout=5)
  93. dev[0].wait_connected(timeout=10, error="Re-connection timed out")
  94. @remote_compatible
  95. def test_hapd_ctrl_chan_switch(dev, apdev):
  96. """hostapd and CHAN_SWITCH ctrl_iface command"""
  97. ssid = "hapd-ctrl"
  98. params = { "ssid": ssid }
  99. hapd = hostapd.add_ap(apdev[0], params)
  100. if "FAIL" not in hapd.request("CHAN_SWITCH "):
  101. raise Exception("Unexpected CHAN_SWITCH success")
  102. if "FAIL" not in hapd.request("CHAN_SWITCH qwerty 2422"):
  103. raise Exception("Unexpected CHAN_SWITCH success")
  104. if "FAIL" not in hapd.request("CHAN_SWITCH 5 qwerty"):
  105. raise Exception("Unexpected CHAN_SWITCH success")
  106. if "FAIL" not in hapd.request("CHAN_SWITCH 0 2432 center_freq1=123 center_freq2=234 bandwidth=1000 sec_channel_offset=20 ht vht"):
  107. raise Exception("Unexpected CHAN_SWITCH success")
  108. @remote_compatible
  109. def test_hapd_ctrl_level(dev, apdev):
  110. """hostapd and LEVEL ctrl_iface command"""
  111. ssid = "hapd-ctrl"
  112. params = { "ssid": ssid }
  113. hapd = hostapd.add_ap(apdev[0], params)
  114. if "FAIL" not in hapd.request("LEVEL 0"):
  115. raise Exception("Unexpected LEVEL success on non-monitor interface")
  116. @remote_compatible
  117. def test_hapd_ctrl_new_sta(dev, apdev):
  118. """hostapd and NEW_STA ctrl_iface command"""
  119. ssid = "hapd-ctrl"
  120. params = { "ssid": ssid }
  121. hapd = hostapd.add_ap(apdev[0], params)
  122. if "FAIL" not in hapd.request("NEW_STA 00:11:22:33:44"):
  123. raise Exception("Unexpected NEW_STA success")
  124. if "OK" not in hapd.request("NEW_STA 00:11:22:33:44:55"):
  125. raise Exception("Unexpected NEW_STA failure")
  126. if "AUTHORIZED" not in hapd.request("STA 00:11:22:33:44:55"):
  127. raise Exception("Unexpected NEW_STA STA status")
  128. if "OK" not in hapd.request("NEW_STA 00:11:22:33:44:55"):
  129. raise Exception("Unexpected NEW_STA failure")
  130. with alloc_fail(hapd, 1, "ap_sta_add;hostapd_ctrl_iface_new_sta"):
  131. if "FAIL" not in hapd.request("NEW_STA 00:11:22:33:44:66"):
  132. raise Exception("Unexpected NEW_STA success during OOM")
  133. @remote_compatible
  134. def test_hapd_ctrl_get(dev, apdev):
  135. """hostapd and GET ctrl_iface command"""
  136. ssid = "hapd-ctrl"
  137. params = { "ssid": ssid }
  138. hapd = hostapd.add_ap(apdev[0], params)
  139. if "FAIL" not in hapd.request("GET foo"):
  140. raise Exception("Unexpected GET success")
  141. if "FAIL" in hapd.request("GET version"):
  142. raise Exception("Unexpected GET version failure")
  143. @remote_compatible
  144. def test_hapd_ctrl_unknown(dev, apdev):
  145. """hostapd and unknown ctrl_iface command"""
  146. ssid = "hapd-ctrl"
  147. params = { "ssid": ssid }
  148. hapd = hostapd.add_ap(apdev[0], params)
  149. if "UNKNOWN COMMAND" not in hapd.request("FOO"):
  150. raise Exception("Unexpected response")
  151. @remote_compatible
  152. def test_hapd_ctrl_hs20_wnm_notif(dev, apdev):
  153. """hostapd and HS20_WNM_NOTIF ctrl_iface command"""
  154. ssid = "hapd-ctrl"
  155. params = { "ssid": ssid }
  156. hapd = hostapd.add_ap(apdev[0], params)
  157. if "FAIL" not in hapd.request("HS20_WNM_NOTIF 00:11:22:33:44 http://example.com/"):
  158. raise Exception("Unexpected HS20_WNM_NOTIF success")
  159. if "FAIL" not in hapd.request("HS20_WNM_NOTIF 00:11:22:33:44:55http://example.com/"):
  160. raise Exception("Unexpected HS20_WNM_NOTIF success")
  161. @remote_compatible
  162. def test_hapd_ctrl_hs20_deauth_req(dev, apdev):
  163. """hostapd and HS20_DEAUTH_REQ ctrl_iface command"""
  164. ssid = "hapd-ctrl"
  165. params = { "ssid": ssid }
  166. hapd = hostapd.add_ap(apdev[0], params)
  167. if "FAIL" not in hapd.request("HS20_DEAUTH_REQ 00:11:22:33:44 1 120 http://example.com/"):
  168. raise Exception("Unexpected HS20_DEAUTH_REQ success")
  169. if "FAIL" not in hapd.request("HS20_DEAUTH_REQ 00:11:22:33:44:55"):
  170. raise Exception("Unexpected HS20_DEAUTH_REQ success")
  171. if "FAIL" not in hapd.request("HS20_DEAUTH_REQ 00:11:22:33:44:55 1"):
  172. raise Exception("Unexpected HS20_DEAUTH_REQ success")
  173. @remote_compatible
  174. def test_hapd_ctrl_disassoc_imminent(dev, apdev):
  175. """hostapd and DISASSOC_IMMINENT ctrl_iface command"""
  176. ssid = "hapd-ctrl"
  177. params = { "ssid": ssid }
  178. hapd = hostapd.add_ap(apdev[0], params)
  179. if "FAIL" not in hapd.request("DISASSOC_IMMINENT 00:11:22:33:44"):
  180. raise Exception("Unexpected DISASSOC_IMMINENT success")
  181. if "FAIL" not in hapd.request("DISASSOC_IMMINENT 00:11:22:33:44:55"):
  182. raise Exception("Unexpected DISASSOC_IMMINENT success")
  183. if "FAIL" not in hapd.request("DISASSOC_IMMINENT 00:11:22:33:44:55 2"):
  184. raise Exception("Unexpected DISASSOC_IMMINENT success")
  185. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  186. addr = dev[0].p2p_interface_addr()
  187. if "OK" not in hapd.request("DISASSOC_IMMINENT " + addr + " 2"):
  188. raise Exception("Unexpected DISASSOC_IMMINENT failure")
  189. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  190. if ev is None:
  191. raise Exception("Scan timed out")
  192. @remote_compatible
  193. def test_hapd_ctrl_ess_disassoc(dev, apdev):
  194. """hostapd and ESS_DISASSOC ctrl_iface command"""
  195. ssid = "hapd-ctrl"
  196. params = { "ssid": ssid }
  197. hapd = hostapd.add_ap(apdev[0], params)
  198. if "FAIL" not in hapd.request("ESS_DISASSOC 00:11:22:33:44"):
  199. raise Exception("Unexpected ESS_DISASSOCT success")
  200. if "FAIL" not in hapd.request("ESS_DISASSOC 00:11:22:33:44:55"):
  201. raise Exception("Unexpected ESS_DISASSOC success")
  202. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  203. addr = dev[0].p2p_interface_addr()
  204. if "FAIL" not in hapd.request("ESS_DISASSOC " + addr):
  205. raise Exception("Unexpected ESS_DISASSOC success")
  206. if "FAIL" not in hapd.request("ESS_DISASSOC " + addr + " -1"):
  207. raise Exception("Unexpected ESS_DISASSOC success")
  208. if "FAIL" not in hapd.request("ESS_DISASSOC " + addr + " 1"):
  209. raise Exception("Unexpected ESS_DISASSOC success")
  210. if "OK" not in hapd.request("ESS_DISASSOC " + addr + " 20 http://example.com/"):
  211. raise Exception("Unexpected ESS_DISASSOC failure")
  212. ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  213. if ev is None:
  214. raise Exception("Scan timed out")
  215. def test_hapd_ctrl_set_deny_mac_file(dev, apdev):
  216. """hostapd and SET deny_mac_file ctrl_iface command"""
  217. ssid = "hapd-ctrl"
  218. params = { "ssid": ssid }
  219. hapd = hostapd.add_ap(apdev[0], params)
  220. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  221. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  222. if "OK" not in hapd.request("SET deny_mac_file hostapd.macaddr"):
  223. raise Exception("Unexpected SET failure")
  224. dev[0].wait_disconnected(timeout=15)
  225. ev = dev[1].wait_event(["CTRL-EVENT-DISCONNECTED"], 1)
  226. if ev is not None:
  227. raise Exception("Unexpected disconnection")
  228. def test_hapd_ctrl_set_accept_mac_file(dev, apdev):
  229. """hostapd and SET accept_mac_file ctrl_iface command"""
  230. ssid = "hapd-ctrl"
  231. params = { "ssid": ssid }
  232. hapd = hostapd.add_ap(apdev[0], params)
  233. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  234. dev[1].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  235. hapd.request("SET macaddr_acl 1")
  236. if "OK" not in hapd.request("SET accept_mac_file hostapd.macaddr"):
  237. raise Exception("Unexpected SET failure")
  238. dev[1].wait_disconnected(timeout=15)
  239. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], 1)
  240. if ev is not None:
  241. raise Exception("Unexpected disconnection")
  242. @remote_compatible
  243. def test_hapd_ctrl_set_error_cases(dev, apdev):
  244. """hostapd and SET error cases"""
  245. ssid = "hapd-ctrl"
  246. params = { "ssid": ssid }
  247. hapd = hostapd.add_ap(apdev[0], params)
  248. errors = [ "wpa_key_mgmt FOO",
  249. "wpa_key_mgmt WPA-PSK \t FOO",
  250. "wpa_key_mgmt \t ",
  251. "wpa_pairwise FOO",
  252. "wpa_pairwise \t ",
  253. 'wep_key0 "',
  254. 'wep_key0 "abcde',
  255. "wep_key0 1",
  256. "wep_key0 12q3456789",
  257. "wep_key_len_broadcast 20",
  258. "wep_rekey_period -1",
  259. "wep_default_key 4",
  260. "r0kh 02:00:00:00:03:0q nas1.w1.fi 100102030405060708090a0b0c0d0e0f",
  261. "r0kh 02:00:00:00:03:00 12345678901234567890123456789012345678901234567890.nas1.w1.fi 100102030405060708090a0b0c0d0e0f",
  262. "r0kh 02:00:00:00:03:00 nas1.w1.fi 100q02030405060708090a0b0c0d0e0f",
  263. "r1kh 02:00:00:00:04:q0 00:01:02:03:04:06 200102030405060708090a0b0c0d0e0f",
  264. "r1kh 02:00:00:00:04:00 00:01:02:03:04:q6 200102030405060708090a0b0c0d0e0f",
  265. "r1kh 02:00:00:00:04:00 00:01:02:03:04:06 2q0102030405060708090a0b0c0d0e0f",
  266. "roaming_consortium 1",
  267. "roaming_consortium 12",
  268. "roaming_consortium 112233445566778899aabbccddeeff00",
  269. 'venue_name P"engExample venue"',
  270. 'venue_name P"engExample venue',
  271. "venue_name engExample venue",
  272. "venue_name e:Example venue",
  273. "venue_name eng1:Example venue",
  274. "venue_name eng:Example venue 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890",
  275. "anqp_3gpp_cell_net abc",
  276. "anqp_3gpp_cell_net ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
  277. "anqp_3gpp_cell_net 244",
  278. "anqp_3gpp_cell_net 24,123",
  279. "anqp_3gpp_cell_net 244,1",
  280. "anqp_3gpp_cell_net 244,1234",
  281. "nai_realm 0",
  282. "nai_realm 0,1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890.nas1.w1.fi",
  283. "nai_realm 0,example.org,1,2,3,4,5,6,7,8",
  284. "nai_realm 0,example.org,1[1:1][2:2][3:3][4:4][5:5]",
  285. "nai_realm 0,example.org,1[1]",
  286. "nai_realm 0,example.org,1[1:1",
  287. "nai_realm 0,a.example.org;b.example.org;c.example.org;d.example.org;e.example.org;f.example.org;g.example.org;h.example.org;i.example.org;j.example.org;k.example.org",
  288. "qos_map_set 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60",
  289. "qos_map_set 53,2,22,6,8,15,0,7,255,255,16,31,32,39,255,255,40,47,255,300",
  290. "qos_map_set 53,2,22,6,8,15,0,7,255,255,16,31,32,39,255,255,40,47,255,-1",
  291. "qos_map_set 53,2,22,6,8,15,0,7,255,255,16,31,32,39,255,255,40,47,255,255,1",
  292. "qos_map_set 1",
  293. "qos_map_set 1,2",
  294. "hs20_conn_capab 1",
  295. "hs20_conn_capab 6:22",
  296. "hs20_wan_metrics 0q:8000:1000:80:240:3000",
  297. "hs20_wan_metrics 01",
  298. "hs20_wan_metrics 01:8000",
  299. "hs20_wan_metrics 01:8000:1000",
  300. "hs20_wan_metrics 01:8000:1000:80",
  301. "hs20_wan_metrics 01:8000:1000:80:240",
  302. "hs20_oper_friendly_name eng1:Example",
  303. "hs20_icon 32",
  304. "hs20_icon 32:32",
  305. "hs20_icon 32:32:eng",
  306. "hs20_icon 32:32:eng:image/png",
  307. "hs20_icon 32:32:eng:image/png:icon32",
  308. "hs20_icon 32:32:eng:image/png:123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890:/tmp/icon32.png",
  309. "hs20_icon 32:32:eng:image/png:name:/tmp/123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890.png",
  310. "osu_ssid ",
  311. "osu_ssid P",
  312. 'osu_ssid P"abc',
  313. 'osu_ssid "1234567890123456789012345678901234567890"',
  314. "osu_friendly_name eng:Example",
  315. "osu_nai anonymous@example.com",
  316. "osu_method_list 1 0",
  317. "osu_icon foo",
  318. "osu_service_desc eng:Example services",
  319. "ssid 1234567890123456789012345678901234567890",
  320. "pac_opaque_encr_key 123456",
  321. "eap_fast_a_id 12345",
  322. "eap_fast_a_id 12345q",
  323. "own_ip_addr foo",
  324. "auth_server_addr foo2",
  325. "auth_server_shared_secret ",
  326. "acct_server_addr foo3",
  327. "acct_server_shared_secret ",
  328. "radius_auth_req_attr 123::",
  329. "radius_acct_req_attr 123::",
  330. "radius_das_client 192.168.1.123",
  331. "radius_das_client 192.168.1.1a foo",
  332. "auth_algs 0",
  333. "max_num_sta -1",
  334. "max_num_sta 1000000",
  335. "wpa_passphrase 1234567",
  336. "wpa_passphrase 1234567890123456789012345678901234567890123456789012345678901234",
  337. "wpa_psk 1234567890123456789012345678901234567890123456789012345678901234a",
  338. "wpa_psk 12345678901234567890123456789012345678901234567890123456789012",
  339. "wpa_psk_radius 123",
  340. "wpa_pairwise NONE",
  341. "wpa_pairwise WEP40",
  342. "wpa_pairwise WEP104",
  343. "rsn_pairwise NONE",
  344. "rsn_pairwise WEP40",
  345. "rsn_pairwise WEP104",
  346. "mobility_domain 01",
  347. "r1_key_holder 0011223344",
  348. "ctrl_interface_group nosuchgrouphere",
  349. "hw_mode foo",
  350. "wps_rf_bands foo",
  351. "beacon_int 0",
  352. "beacon_int 65536",
  353. "acs_num_scans 0",
  354. "acs_num_scans 101",
  355. "rts_threshold -2",
  356. "rts_threshold 65536",
  357. "fragm_threshold -2",
  358. "fragm_threshold 2347",
  359. "send_probe_response -1",
  360. "send_probe_response 2",
  361. "vlan_naming -1",
  362. "vlan_naming 10000000",
  363. "group_mgmt_cipher FOO",
  364. "assoc_sa_query_max_timeout 0",
  365. "assoc_sa_query_retry_timeout 0",
  366. "wps_state -1",
  367. "wps_state 3",
  368. "uuid FOO",
  369. "device_name 1234567890123456789012345678901234567890",
  370. "manufacturer 1234567890123456789012345678901234567890123456789012345678901234567890",
  371. "model_name 1234567890123456789012345678901234567890",
  372. "model_number 1234567890123456789012345678901234567890",
  373. "serial_number 1234567890123456789012345678901234567890",
  374. "device_type FOO",
  375. "os_version 1",
  376. "ap_settings /tmp/does/not/exist/ap-settings.foo",
  377. "wps_nfc_dev_pw_id 4",
  378. "wps_nfc_dev_pw_id 100000",
  379. "time_zone A",
  380. "access_network_type -1",
  381. "access_network_type 16",
  382. "hessid 00:11:22:33:44",
  383. "network_auth_type 0q",
  384. "ipaddr_type_availability 1q",
  385. "hs20_operating_class 0",
  386. "hs20_operating_class 0q",
  387. "bss_load_test ",
  388. "bss_load_test 12",
  389. "bss_load_test 12:80",
  390. "vendor_elements 0",
  391. "vendor_elements 0q",
  392. "assocresp_elements 0",
  393. "assocresp_elements 0q",
  394. "local_pwr_constraint -1",
  395. "local_pwr_constraint 256",
  396. "wmm_ac_bk_cwmin -1",
  397. "wmm_ac_be_cwmin 16",
  398. "wmm_ac_vi_cwmax -1",
  399. "wmm_ac_vo_cwmax 16",
  400. "wmm_ac_foo_cwmax 6",
  401. "wmm_ac_bk_aifs 0",
  402. "wmm_ac_bk_aifs 256",
  403. "wmm_ac_bk_txop_limit -1",
  404. "wmm_ac_bk_txop_limit 65536",
  405. "wmm_ac_bk_acm -1",
  406. "wmm_ac_bk_acm 2",
  407. "wmm_ac_bk_foo 2",
  408. "tx_queue_foo_aifs 3",
  409. "tx_queue_data3_cwmin 4",
  410. "tx_queue_data3_cwmax 4",
  411. "tx_queue_data3_aifs -4",
  412. "tx_queue_data3_foo 1" ]
  413. for e in errors:
  414. if "FAIL" not in hapd.request("SET " + e):
  415. raise Exception("Unexpected SET success: '%s'" % e)
  416. if "OK" not in hapd.request("SET osu_server_uri https://example.com/"):
  417. raise Exception("Unexpected SET osu_server_uri failure")
  418. if "OK" not in hapd.request("SET osu_friendly_name eng:Example"):
  419. raise Exception("Unexpected SET osu_friendly_name failure")
  420. errors = [ "osu_friendly_name eng1:Example",
  421. "osu_service_desc eng1:Example services" ]
  422. for e in errors:
  423. if "FAIL" not in hapd.request("SET " + e):
  424. raise Exception("Unexpected SET success: '%s'" % e)
  425. no_err = [ "wps_nfc_dh_pubkey 0",
  426. "wps_nfc_dh_privkey 0q",
  427. "wps_nfc_dev_pw 012",
  428. "manage_p2p 0",
  429. "disassoc_low_ack 0",
  430. "network_auth_type 01",
  431. "tdls_prohibit 0",
  432. "tdls_prohibit_chan_switch 0" ]
  433. for e in no_err:
  434. if "OK" not in hapd.request("SET " + e):
  435. raise Exception("Unexpected SET failure: '%s'" % e)
  436. @remote_compatible
  437. def test_hapd_ctrl_global(dev, apdev):
  438. """hostapd and GET ctrl_iface command"""
  439. ssid = "hapd-ctrl"
  440. params = { "ssid": ssid }
  441. ifname = apdev[0]['ifname']
  442. hapd = hostapd.add_ap(apdev[0], params)
  443. hapd_global = hostapd.HostapdGlobal(apdev[0])
  444. res = hapd_global.request("IFNAME=" + ifname + " PING")
  445. if "PONG" not in res:
  446. raise Exception("Could not ping hostapd interface " + ifname + " via global control interface")
  447. res = hapd_global.request("IFNAME=" + ifname + " GET version")
  448. if "FAIL" in res:
  449. raise Exception("Could not get hostapd version for " + ifname + " via global control interface")
  450. res = hapd_global.request("INTERFACES")
  451. if "FAIL" in res:
  452. raise Exception("INTERFACES command failed")
  453. if apdev[0]['ifname'] not in res.splitlines():
  454. raise Exception("AP interface missing from INTERFACES")
  455. res = hapd_global.request("INTERFACES ctrl")
  456. if "FAIL" in res:
  457. raise Exception("INTERFACES ctrl command failed")
  458. if apdev[0]['ifname'] + " ctrl_iface=" not in res:
  459. raise Exception("AP interface missing from INTERFACES ctrl")
  460. def dup_network(hapd_global, src, dst, param):
  461. res = hapd_global.request("DUP_NETWORK %s %s %s" % (src, dst, param))
  462. if "OK" not in res:
  463. raise Exception("Could not dup %s param from %s to %s" % (param, src,
  464. dst))
  465. def test_hapd_dup_network_global_wpa2(dev, apdev):
  466. """hostapd and DUP_NETWORK command (WPA2"""
  467. passphrase="12345678"
  468. src_ssid = "hapd-ctrl-src"
  469. dst_ssid = "hapd-ctrl-dst"
  470. src_params = hostapd.wpa2_params(ssid=src_ssid, passphrase=passphrase)
  471. src_ifname = apdev[0]['ifname']
  472. src_hapd = hostapd.add_ap(apdev[0], src_params)
  473. dst_params = { "ssid": dst_ssid }
  474. dst_ifname = apdev[1]['ifname']
  475. dst_hapd = hostapd.add_ap(apdev[1], dst_params, no_enable=True)
  476. hapd_global = hostapd.HostapdGlobal()
  477. for param in [ "wpa", "wpa_passphrase", "wpa_key_mgmt", "rsn_pairwise" ]:
  478. dup_network(hapd_global, src_ifname, dst_ifname, param)
  479. dst_hapd.enable()
  480. dev[0].connect(dst_ssid, psk=passphrase, proto="RSN", pairwise="CCMP",
  481. scan_freq="2412")
  482. addr = dev[0].own_addr()
  483. if "FAIL" in dst_hapd.request("STA " + addr):
  484. raise Exception("Could not connect using duplicated wpa params")
  485. def test_hapd_dup_network_global_wpa(dev, apdev):
  486. """hostapd and DUP_NETWORK command (WPA)"""
  487. skip_with_fips(dev[0])
  488. psk = '602e323e077bc63bd80307ef4745b754b0ae0a925c2638ecd13a794b9527b9e6'
  489. src_ssid = "hapd-ctrl-src"
  490. dst_ssid = "hapd-ctrl-dst"
  491. src_params = hostapd.wpa_params(ssid=src_ssid)
  492. src_params['wpa_psk'] = psk
  493. src_ifname = apdev[0]['ifname']
  494. src_hapd = hostapd.add_ap(apdev[0], src_params)
  495. dst_params = { "ssid": dst_ssid }
  496. dst_ifname = apdev[1]['ifname']
  497. dst_hapd = hostapd.add_ap(apdev[1], dst_params, no_enable=True)
  498. hapd_global = hostapd.HostapdGlobal()
  499. for param in [ "wpa", "wpa_psk", "wpa_key_mgmt", "wpa_pairwise" ]:
  500. dup_network(hapd_global, src_ifname, dst_ifname, param)
  501. dst_hapd.enable()
  502. dev[0].connect(dst_ssid, raw_psk=psk, proto="WPA", pairwise="TKIP",
  503. scan_freq="2412")
  504. addr = dev[0].own_addr()
  505. if "FAIL" in dst_hapd.request("STA " + addr):
  506. raise Exception("Could not connect using duplicated wpa params")
  507. @remote_compatible
  508. def test_hapd_ctrl_log_level(dev, apdev):
  509. """hostapd ctrl_iface LOG_LEVEL"""
  510. hapd = hostapd.add_ap(apdev[0], { "ssid": "open" })
  511. level = hapd.request("LOG_LEVEL")
  512. if "Current level: MSGDUMP" not in level:
  513. raise Exception("Unexpected debug level(1): " + level)
  514. if "Timestamp: 1" not in level:
  515. raise Exception("Unexpected timestamp(1): " + level)
  516. if "OK" not in hapd.request("LOG_LEVEL MSGDUMP 0"):
  517. raise Exception("LOG_LEVEL failed")
  518. level = hapd.request("LOG_LEVEL")
  519. if "Current level: MSGDUMP" not in level:
  520. raise Exception("Unexpected debug level(2): " + level)
  521. if "Timestamp: 0" not in level:
  522. raise Exception("Unexpected timestamp(2): " + level)
  523. if "OK" not in hapd.request("LOG_LEVEL MSGDUMP 1"):
  524. raise Exception("LOG_LEVEL failed")
  525. level = hapd.request("LOG_LEVEL")
  526. if "Current level: MSGDUMP" not in level:
  527. raise Exception("Unexpected debug level(3): " + level)
  528. if "Timestamp: 1" not in level:
  529. raise Exception("Unexpected timestamp(3): " + level)
  530. if "FAIL" not in hapd.request("LOG_LEVEL FOO"):
  531. raise Exception("Invalid LOG_LEVEL accepted")
  532. for lev in [ "EXCESSIVE", "MSGDUMP", "DEBUG", "INFO", "WARNING", "ERROR" ]:
  533. if "OK" not in hapd.request("LOG_LEVEL " + lev):
  534. raise Exception("LOG_LEVEL failed for " + lev)
  535. level = hapd.request("LOG_LEVEL")
  536. if "Current level: " + lev not in level:
  537. raise Exception("Unexpected debug level: " + level)
  538. if "OK" not in hapd.request("LOG_LEVEL MSGDUMP 1"):
  539. raise Exception("LOG_LEVEL failed")
  540. level = hapd.request("LOG_LEVEL")
  541. if "Current level: MSGDUMP" not in level:
  542. raise Exception("Unexpected debug level(3): " + level)
  543. if "Timestamp: 1" not in level:
  544. raise Exception("Unexpected timestamp(3): " + level)
  545. @remote_compatible
  546. def test_hapd_ctrl_disconnect_no_tx(dev, apdev):
  547. """hostapd disconnecting STA without transmitting Deauth/Disassoc"""
  548. ssid = "hapd-test"
  549. passphrase = "12345678"
  550. params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
  551. hapd = hostapd.add_ap(apdev[0], params)
  552. bssid = apdev[0]['bssid']
  553. dev[0].connect(ssid, psk=passphrase, scan_freq="2412")
  554. addr0 = dev[0].own_addr()
  555. dev[1].connect(ssid, psk=passphrase, scan_freq="2412")
  556. addr1 = dev[1].own_addr()
  557. # Disconnect the STA without sending out Deauthentication frame
  558. if "OK" not in hapd.request("DEAUTHENTICATE " + addr0 + " tx=0"):
  559. raise Exception("DEAUTHENTICATE command failed")
  560. # Force disconnection due to AP receiving a frame from not-asssociated STA
  561. dev[0].request("DATA_TEST_CONFIG 1")
  562. dev[0].request("DATA_TEST_TX " + bssid + " " + addr0)
  563. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=5)
  564. dev[0].request("DATA_TEST_CONFIG 0")
  565. if ev is None:
  566. raise Exception("Disconnection event not seen after TX attempt")
  567. if "reason=7" not in ev:
  568. raise Exception("Unexpected disconnection reason: " + ev)
  569. # Disconnect the STA without sending out Disassociation frame
  570. if "OK" not in hapd.request("DISASSOCIATE " + addr1 + " tx=0"):
  571. raise Exception("DISASSOCIATE command failed")
  572. # Force disconnection due to AP receiving a frame from not-asssociated STA
  573. dev[1].request("DATA_TEST_CONFIG 1")
  574. dev[1].request("DATA_TEST_TX " + bssid + " " + addr1)
  575. ev = dev[1].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=5)
  576. dev[1].request("DATA_TEST_CONFIG 0")
  577. if ev is None:
  578. raise Exception("Disconnection event not seen after TX attempt")
  579. if "reason=7" not in ev:
  580. raise Exception("Unexpected disconnection reason: " + ev)
  581. def test_hapd_ctrl_mib(dev, apdev):
  582. """hostapd and MIB ctrl_iface command with open network"""
  583. ssid = "hapd-ctrl"
  584. params = { "ssid": ssid }
  585. hapd = hostapd.add_ap(apdev[0], params)
  586. mib = hapd.request("MIB")
  587. if len(mib) != 0:
  588. raise Exception("Unexpected MIB response: " + mib)
  589. mib = hapd.request("MIB radius_server")
  590. if len(mib) != 0:
  591. raise Exception("Unexpected 'MIB radius_server' response: " + mib)
  592. if "FAIL" not in hapd.request("MIB foo"):
  593. raise Exception("'MIB foo' succeeded")
  594. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")
  595. mib = hapd.request("MIB")
  596. if "FAIL" in mib:
  597. raise Exception("Unexpected MIB response: " + mib)
  598. mib = hapd.request("MIB radius_server")
  599. if len(mib) != 0:
  600. raise Exception("Unexpected 'MIB radius_server' response: " + mib)
  601. if "FAIL" not in hapd.request("MIB foo"):
  602. raise Exception("'MIB foo' succeeded")
  603. def test_hapd_ctrl_not_yet_fully_enabled(dev, apdev):
  604. """hostapd and ctrl_iface commands when BSS not yet fully enabled"""
  605. ssid = "hapd-ctrl"
  606. params = { "ssid": ssid }
  607. hapd = hostapd.add_ap(apdev[0], params, no_enable=True)
  608. if not hapd.ping():
  609. raise Exception("PING failed")
  610. if "FAIL" in hapd.request("MIB"):
  611. raise Exception("MIB failed")
  612. if len(hapd.request("MIB radius_server")) != 0:
  613. raise Exception("Unexpected 'MIB radius_server' response")
  614. if "state=UNINITIALIZED" not in hapd.request("STATUS"):
  615. raise Exception("Unexpected STATUS response")
  616. if "FAIL" not in hapd.request("STATUS-DRIVER"):
  617. raise Exception("Unexpected response to STATUS-DRIVER")
  618. if len(hapd.request("STA-FIRST")) != 0:
  619. raise Exception("Unexpected response to STA-FIRST")
  620. if "FAIL" not in hapd.request("STA ff:ff:ff:ff:ff:ff"):
  621. raise Exception("Unexpected response to STA")
  622. cmds = [ "NEW_STA 02:ff:ff:ff:ff:ff",
  623. "DEAUTHENTICATE 02:ff:ff:ff:ff:ff",
  624. "DEAUTHENTICATE 02:ff:ff:ff:ff:ff test=0",
  625. "DEAUTHENTICATE 02:ff:ff:ff:ff:ff p2p=0",
  626. "DEAUTHENTICATE 02:ff:ff:ff:ff:ff tx=0",
  627. "DISASSOCIATE 02:ff:ff:ff:ff:ff",
  628. "DISASSOCIATE 02:ff:ff:ff:ff:ff test=0",
  629. "DISASSOCIATE 02:ff:ff:ff:ff:ff p2p=0",
  630. "DISASSOCIATE 02:ff:ff:ff:ff:ff tx=0",
  631. "SA_QUERY 02:ff:ff:ff:ff:ff",
  632. "WPS_PIN any 12345670",
  633. "WPS_PBC",
  634. "WPS_CANCEL",
  635. "WPS_AP_PIN random",
  636. "WPS_AP_PIN disable",
  637. "WPS_CHECK_PIN 123456789",
  638. "WPS_GET_STATUS",
  639. "WPS_NFC_TAG_READ 00",
  640. "WPS_NFC_CONFIG_TOKEN NDEF",
  641. "WPS_NFC_TOKEN WPS",
  642. "NFC_GET_HANDOVER_SEL NDEF WPS-CR",
  643. "NFC_REPORT_HANDOVER RESP WPS 00 00",
  644. "SET_QOS_MAP_SET 22,6,8,15,0,7,255,255,16,31,32,39,255,255,40,47,48,55",
  645. "SEND_QOS_MAP_CONF 02:ff:ff:ff:ff:ff",
  646. "HS20_WNM_NOTIF 02:ff:ff:ff:ff:ff https://example.com/",
  647. "HS20_DEAUTH_REQ 02:ff:ff:ff:ff:ff 1 120 https://example.com/",
  648. "DISASSOC_IMMINENT 02:ff:ff:ff:ff:ff 10",
  649. "ESS_DISASSOC 02:ff:ff:ff:ff:ff 10 https://example.com/",
  650. "BSS_TM_REQ 02:ff:ff:ff:ff:ff",
  651. "GET_CONFIG",
  652. "RADAR DETECTED freq=5260 ht_enabled=1 chan_width=1",
  653. "CHAN_SWITCH 5 5200 ht sec_channel_offset=-1 bandwidth=40",
  654. "TRACK_STA_LIST",
  655. "PMKSA",
  656. "PMKSA_FLUSH",
  657. "SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\"",
  658. "REMOVE_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\"",
  659. "REQ_LCI 00:11:22:33:44:55",
  660. "REQ_RANGE 00:11:22:33:44:55",
  661. "DRIVER_FLAGS",
  662. "STOP_AP" ]
  663. for cmd in cmds:
  664. hapd.request(cmd)
  665. def test_hapd_ctrl_set(dev, apdev):
  666. """hostapd and SET ctrl_iface command"""
  667. ssid = "hapd-ctrl"
  668. params = { "ssid": ssid }
  669. hapd = hostapd.add_ap(apdev[0], params)
  670. tests = [ "foo",
  671. "wps_version_number 300",
  672. "gas_frag_limit 0",
  673. "mbo_assoc_disallow 0" ]
  674. for t in tests:
  675. if "FAIL" not in hapd.request("SET " + t):
  676. raise Exception("Invalid SET command accepted: " + t)
  677. def test_hapd_ctrl_radar(dev, apdev):
  678. """hostapd and RADAR ctrl_iface command"""
  679. ssid = "hapd-ctrl"
  680. params = { "ssid": ssid }
  681. hapd = hostapd.add_ap(apdev[0], params)
  682. tests = [ "foo", "foo bar" ]
  683. for t in tests:
  684. if "FAIL" not in hapd.request("RADAR " + t):
  685. raise Exception("Invalid RADAR command accepted: " + t)
  686. tests = [ "DETECTED freq=2412 chan_offset=12 cf1=1234 cf2=2345",
  687. "CAC-FINISHED freq=2412",
  688. "CAC-ABORTED freq=2412",
  689. "NOP-FINISHED freq=2412" ]
  690. for t in tests:
  691. hapd.request("RADAR " + t)
  692. def test_hapd_ctrl_ext_io_errors(dev, apdev):
  693. """hostapd and external I/O errors"""
  694. ssid = "hapd-ctrl"
  695. params = { "ssid": ssid }
  696. hapd = hostapd.add_ap(apdev[0], params)
  697. tests = [ "MGMT_TX 1",
  698. "MGMT_TX 1q",
  699. "MGMT_RX_PROCESS freq=2412",
  700. "EAPOL_RX foo",
  701. "EAPOL_RX 00:11:22:33:44:55 1",
  702. "EAPOL_RX 00:11:22:33:44:55 1q" ]
  703. for t in tests:
  704. if "FAIL" not in hapd.request(t):
  705. raise Exception("Invalid command accepted: " + t)
  706. with alloc_fail(hapd, 1, "=hostapd_ctrl_iface_mgmt_tx"):
  707. if "FAIL" not in hapd.request("MGMT_TX 12"):
  708. raise Exception("MGMT_TX accepted during OOM")
  709. with alloc_fail(hapd, 1, "=hostapd_ctrl_iface_eapol_rx"):
  710. if "FAIL" not in hapd.request("EAPOL_RX 00:11:22:33:44:55 11"):
  711. raise Exception("EAPOL_RX accepted during OOM")
  712. hapd.set("ext_mgmt_frame_handling", "1")
  713. tests = [ "MGMT_RX_PROCESS freq=2412",
  714. "MGMT_RX_PROCESS freq=2412 ssi_signal=0",
  715. "MGMT_RX_PROCESS freq=2412 frame=1",
  716. "MGMT_RX_PROCESS freq=2412 frame=1q" ]
  717. for t in tests:
  718. if "FAIL" not in hapd.request(t):
  719. raise Exception("Invalid command accepted: " + t)
  720. with alloc_fail(hapd, 1, "=hostapd_ctrl_iface_mgmt_rx_process"):
  721. if "FAIL" not in hapd.request("MGMT_RX_PROCESS freq=2412 frame=11"):
  722. raise Exception("MGMT_RX_PROCESS accepted during OOM")
  723. hapd.set("ext_mgmt_frame_handling", "0")
  724. if "OK" not in hapd.request("DATA_TEST_CONFIG 1"):
  725. raise Exception("Failed to enable l2_test")
  726. if "OK" not in hapd.request("DATA_TEST_CONFIG 1"):
  727. raise Exception("Failed to enable l2_test(2)")
  728. tests = [ "DATA_TEST_TX foo",
  729. "DATA_TEST_TX 00:11:22:33:44:55 foo",
  730. "DATA_TEST_TX 00:11:22:33:44:55 00:11:22:33:44:55 -1",
  731. "DATA_TEST_TX 00:11:22:33:44:55 00:11:22:33:44:55 256" ]
  732. for t in tests:
  733. if "FAIL" not in hapd.request(t):
  734. raise Exception("Invalid command accepted: " + t)
  735. if "OK" not in hapd.request("DATA_TEST_CONFIG 0"):
  736. raise Exception("Failed to disable l2_test")
  737. tests = [ "DATA_TEST_TX 00:11:22:33:44:55 00:11:22:33:44:55 0",
  738. "DATA_TEST_FRAME ifname=foo",
  739. "DATA_TEST_FRAME 1",
  740. "DATA_TEST_FRAME 11",
  741. "DATA_TEST_FRAME 112233445566778899aabbccddeefq" ]
  742. for t in tests:
  743. if "FAIL" not in hapd.request(t):
  744. raise Exception("Invalid command accepted: " + t)
  745. with alloc_fail(hapd, 1, "=hostapd_ctrl_iface_data_test_frame"):
  746. if "FAIL" not in hapd.request("DATA_TEST_FRAME 112233445566778899aabbccddeeff"):
  747. raise Exception("DATA_TEST_FRAME accepted during OOM")
  748. def test_hapd_ctrl_vendor_errors(dev, apdev):
  749. """hostapd and VENDOR errors"""
  750. ssid = "hapd-ctrl"
  751. params = { "ssid": ssid }
  752. hapd = hostapd.add_ap(apdev[0], params)
  753. tests = [ "q",
  754. "10q",
  755. "10 10q",
  756. "10 10 123q",
  757. "10 10" ]
  758. for t in tests:
  759. if "FAIL" not in hapd.request("VENDOR " + t):
  760. raise Exception("Invalid VENDOR command accepted: " + t)
  761. with alloc_fail(hapd, 1, "=hostapd_ctrl_iface_vendor"):
  762. if "FAIL" not in hapd.request("VENDOR 10 10 10"):
  763. raise Exception("VENDOR accepted during OOM")
  764. with alloc_fail(hapd, 1, "wpabuf_alloc;hostapd_ctrl_iface_vendor"):
  765. if "FAIL" not in hapd.request("VENDOR 10 10"):
  766. raise Exception("VENDOR accepted during OOM")
  767. def test_hapd_ctrl_eapol_reauth_errors(dev, apdev):
  768. """hostapd and EAPOL_REAUTH errors"""
  769. ssid = "hapd-ctrl"
  770. params = { "ssid": ssid }
  771. hapd = hostapd.add_ap(apdev[0], params)
  772. tests = [ "foo",
  773. "11:22:33:44:55:66" ]
  774. for t in tests:
  775. if "FAIL" not in hapd.request("EAPOL_REAUTH " + t):
  776. raise Exception("Invalid EAPOL_REAUTH command accepted: " + t)
  777. def test_hapd_ctrl_eapol_relog(dev, apdev):
  778. """hostapd and RELOG"""
  779. ssid = "hapd-ctrl"
  780. params = { "ssid": ssid }
  781. hapd = hostapd.add_ap(apdev[0], params)
  782. if "OK" not in hapd.request("RELOG"):
  783. raise Exception("RELOG failed")
  784. def test_hapd_ctrl_poll_sta_errors(dev, apdev):
  785. """hostapd and POLL_STA errors"""
  786. ssid = "hapd-ctrl"
  787. params = { "ssid": ssid }
  788. hapd = hostapd.add_ap(apdev[0], params)
  789. tests = [ "foo",
  790. "11:22:33:44:55:66" ]
  791. for t in tests:
  792. if "FAIL" not in hapd.request("POLL_STA " + t):
  793. raise Exception("Invalid POLL_STA command accepted: " + t)
  794. def test_hapd_ctrl_update_beacon(dev, apdev):
  795. """hostapd and UPDATE_BEACON"""
  796. ssid = "hapd-ctrl"
  797. params = { "ssid": ssid }
  798. hapd = hostapd.add_ap(apdev[0], params)
  799. if "OK" not in hapd.request("UPDATE_BEACON"):
  800. raise Exception("UPDATE_BEACON failed")
  801. with fail_test(hapd, 1, "ieee802_11_set_beacon"):
  802. if "FAIL" not in hapd.request("UPDATE_BEACON"):
  803. raise Exception("UPDATE_BEACON succeeded unexpectedly")
  804. dev[0].connect(ssid, key_mgmt="NONE", scan_freq="2412")