test_hapd_ctrl.py 37 KB

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