wpasupplicant.py 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  1. #!/usr/bin/python
  2. #
  3. # Python class for controlling wpa_supplicant
  4. # Copyright (c) 2013, Jouni Malinen <j@w1.fi>
  5. #
  6. # This software may be distributed under the terms of the BSD license.
  7. # See README for more details.
  8. import os
  9. import time
  10. import logging
  11. import re
  12. import subprocess
  13. import wpaspy
  14. logger = logging.getLogger()
  15. wpas_ctrl = '/var/run/wpa_supplicant'
  16. class WpaSupplicant:
  17. def __init__(self, ifname, global_iface=None):
  18. self.ifname = ifname
  19. self.group_ifname = None
  20. self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  21. self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  22. self.mon.attach()
  23. self.global_iface = global_iface
  24. if global_iface:
  25. self.global_ctrl = wpaspy.Ctrl(global_iface)
  26. self.global_mon = wpaspy.Ctrl(global_iface)
  27. self.global_mon.attach()
  28. def request(self, cmd):
  29. logger.debug(self.ifname + ": CTRL: " + cmd)
  30. return self.ctrl.request(cmd)
  31. def global_request(self, cmd):
  32. if self.global_iface is None:
  33. self.request(cmd)
  34. else:
  35. logger.debug(self.ifname + ": CTRL: " + cmd)
  36. return self.global_ctrl.request(cmd)
  37. def group_request(self, cmd):
  38. if self.group_ifname and self.group_ifname != self.ifname:
  39. logger.debug(self.group_ifname + ": CTRL: " + cmd)
  40. gctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, self.group_ifname))
  41. return gctrl.request(cmd)
  42. return self.request(cmd)
  43. def ping(self):
  44. return "PONG" in self.request("PING")
  45. def reset(self):
  46. res = self.request("FLUSH")
  47. if not "OK" in res:
  48. logger.info("FLUSH to " + self.ifname + " failed: " + res)
  49. self.request("SET ignore_old_scan_res 0")
  50. self.request("SET external_sim 0")
  51. self.request("SET hessid 00:00:00:00:00:00")
  52. self.request("SET access_network_type 15")
  53. self.request("SET p2p_add_cli_chan 0")
  54. self.request("SET p2p_no_go_freq ")
  55. self.request("SET p2p_pref_chan ")
  56. self.request("SET disallow_aps ")
  57. self.request("SET p2p_no_group_iface 1")
  58. self.request("P2P_SET per_sta_psk 0")
  59. self.request("P2P_SET disabled 0")
  60. self.request("P2P_SERVICE_FLUSH")
  61. self.group_ifname = None
  62. self.dump_monitor()
  63. iter = 0
  64. while iter < 60:
  65. state = self.get_driver_status_field("scan_state")
  66. if "SCAN_STARTED" in state or "SCAN_REQUESTED" in state:
  67. logger.info(self.ifname + ": Waiting for scan operation to complete before continuing")
  68. time.sleep(1)
  69. else:
  70. break
  71. iter = iter + 1
  72. if iter == 60:
  73. logger.error(self.ifname + ": Driver scan state did not clear")
  74. print "Trying to clear cfg80211/mac80211 scan state"
  75. try:
  76. cmd = ["sudo", "ifconfig", self.ifname, "down"]
  77. subprocess.call(cmd)
  78. except subprocess.CalledProcessError, e:
  79. logger.info("ifconfig failed: " + str(e.returncode))
  80. logger.info(e.output)
  81. try:
  82. cmd = ["sudo", "ifconfig", self.ifname, "up"]
  83. subprocess.call(cmd)
  84. except subprocess.CalledProcessError, e:
  85. logger.info("ifconfig failed: " + str(e.returncode))
  86. logger.info(e.output)
  87. if not self.ping():
  88. logger.info("No PING response from " + self.ifname + " after reset")
  89. def add_network(self):
  90. id = self.request("ADD_NETWORK")
  91. if "FAIL" in id:
  92. raise Exception("ADD_NETWORK failed")
  93. return int(id)
  94. def remove_network(self, id):
  95. id = self.request("REMOVE_NETWORK " + str(id))
  96. if "FAIL" in id:
  97. raise Exception("REMOVE_NETWORK failed")
  98. return None
  99. def set_network(self, id, field, value):
  100. res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
  101. if "FAIL" in res:
  102. raise Exception("SET_NETWORK failed")
  103. return None
  104. def set_network_quoted(self, id, field, value):
  105. res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
  106. if "FAIL" in res:
  107. raise Exception("SET_NETWORK failed")
  108. return None
  109. def list_networks(self):
  110. res = self.request("LIST_NETWORKS")
  111. lines = res.splitlines()
  112. networks = []
  113. for l in lines:
  114. if "network id" in l:
  115. continue
  116. [id,ssid,bssid,flags] = l.split('\t')
  117. network = {}
  118. network['id'] = id
  119. network['ssid'] = ssid
  120. network['bssid'] = bssid
  121. network['flags'] = flags
  122. networks.append(network)
  123. return networks
  124. def hs20_enable(self):
  125. self.request("SET interworking 1")
  126. self.request("SET hs20 1")
  127. def add_cred(self):
  128. id = self.request("ADD_CRED")
  129. if "FAIL" in id:
  130. raise Exception("ADD_CRED failed")
  131. return int(id)
  132. def remove_cred(self, id):
  133. id = self.request("REMOVE_CRED " + str(id))
  134. if "FAIL" in id:
  135. raise Exception("REMOVE_CRED failed")
  136. return None
  137. def set_cred(self, id, field, value):
  138. res = self.request("SET_CRED " + str(id) + " " + field + " " + value)
  139. if "FAIL" in res:
  140. raise Exception("SET_CRED failed")
  141. return None
  142. def set_cred_quoted(self, id, field, value):
  143. res = self.request("SET_CRED " + str(id) + " " + field + ' "' + value + '"')
  144. if "FAIL" in res:
  145. raise Exception("SET_CRED failed")
  146. return None
  147. def add_cred_values(self, params):
  148. id = self.add_cred()
  149. quoted = [ "realm", "username", "password", "domain", "imsi",
  150. "excluded_ssid", "milenage", "ca_cert", "client_cert",
  151. "private_key" ]
  152. for field in quoted:
  153. if field in params:
  154. self.set_cred_quoted(id, field, params[field])
  155. not_quoted = [ "eap", "roaming_consortium",
  156. "required_roaming_consortium" ]
  157. for field in not_quoted:
  158. if field in params:
  159. self.set_cred(id, field, params[field])
  160. return id;
  161. def select_network(self, id):
  162. id = self.request("SELECT_NETWORK " + str(id))
  163. if "FAIL" in id:
  164. raise Exception("SELECT_NETWORK failed")
  165. return None
  166. def connect_network(self, id):
  167. self.dump_monitor()
  168. self.select_network(id)
  169. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  170. if ev is None:
  171. raise Exception("Association with the AP timed out")
  172. self.dump_monitor()
  173. def get_status(self):
  174. res = self.request("STATUS")
  175. lines = res.splitlines()
  176. vals = dict()
  177. for l in lines:
  178. [name,value] = l.split('=', 1)
  179. vals[name] = value
  180. return vals
  181. def get_status_field(self, field):
  182. vals = self.get_status()
  183. if field in vals:
  184. return vals[field]
  185. return None
  186. def get_group_status(self):
  187. res = self.group_request("STATUS")
  188. lines = res.splitlines()
  189. vals = dict()
  190. for l in lines:
  191. [name,value] = l.split('=', 1)
  192. vals[name] = value
  193. return vals
  194. def get_group_status_field(self, field):
  195. vals = self.get_group_status()
  196. if field in vals:
  197. return vals[field]
  198. return None
  199. def get_driver_status(self):
  200. res = self.request("STATUS-DRIVER")
  201. lines = res.splitlines()
  202. vals = dict()
  203. for l in lines:
  204. [name,value] = l.split('=', 1)
  205. vals[name] = value
  206. return vals
  207. def get_driver_status_field(self, field):
  208. vals = self.get_driver_status()
  209. if field in vals:
  210. return vals[field]
  211. return None
  212. def p2p_dev_addr(self):
  213. return self.get_status_field("p2p_device_address")
  214. def p2p_interface_addr(self):
  215. return self.get_group_status_field("address")
  216. def p2p_listen(self):
  217. return self.global_request("P2P_LISTEN")
  218. def p2p_find(self, social=False):
  219. if social:
  220. return self.global_request("P2P_FIND type=social")
  221. return self.global_request("P2P_FIND")
  222. def p2p_stop_find(self):
  223. return self.global_request("P2P_STOP_FIND")
  224. def wps_read_pin(self):
  225. #TODO: make this random
  226. self.pin = "12345670"
  227. return self.pin
  228. def peer_known(self, peer, full=True):
  229. res = self.global_request("P2P_PEER " + peer)
  230. if peer.lower() not in res.lower():
  231. return False
  232. if not full:
  233. return True
  234. return "[PROBE_REQ_ONLY]" not in res
  235. def discover_peer(self, peer, full=True, timeout=15, social=True):
  236. logger.info(self.ifname + ": Trying to discover peer " + peer)
  237. if self.peer_known(peer, full):
  238. return True
  239. self.p2p_find(social)
  240. count = 0
  241. while count < timeout:
  242. time.sleep(1)
  243. count = count + 1
  244. if self.peer_known(peer, full):
  245. return True
  246. return False
  247. def get_peer(self, peer):
  248. res = self.global_request("P2P_PEER " + peer)
  249. if peer.lower() not in res.lower():
  250. raise Exception("Peer information not available")
  251. lines = res.splitlines()
  252. vals = dict()
  253. for l in lines:
  254. if '=' in l:
  255. [name,value] = l.split('=', 1)
  256. vals[name] = value
  257. return vals
  258. def group_form_result(self, ev, expect_failure=False, go_neg_res=None):
  259. if expect_failure:
  260. if "P2P-GROUP-STARTED" in ev:
  261. raise Exception("Group formation succeeded when expecting failure")
  262. exp = r'<.>(P2P-GO-NEG-FAILURE) status=([0-9]*)'
  263. s = re.split(exp, ev)
  264. if len(s) < 3:
  265. return None
  266. res = {}
  267. res['result'] = 'go-neg-failed'
  268. res['status'] = int(s[2])
  269. return res
  270. if "P2P-GROUP-STARTED" not in ev:
  271. raise Exception("No P2P-GROUP-STARTED event seen")
  272. exp = r'<.>(P2P-GROUP-STARTED) ([^ ]*) ([^ ]*) ssid="(.*)" freq=([0-9]*) ((?:psk=.*)|(?:passphrase=".*")) go_dev_addr=([0-9a-f:]*)'
  273. s = re.split(exp, ev)
  274. if len(s) < 8:
  275. raise Exception("Could not parse P2P-GROUP-STARTED")
  276. res = {}
  277. res['result'] = 'success'
  278. res['ifname'] = s[2]
  279. self.group_ifname = s[2]
  280. res['role'] = s[3]
  281. res['ssid'] = s[4]
  282. res['freq'] = s[5]
  283. if "[PERSISTENT]" in ev:
  284. res['persistent'] = True
  285. else:
  286. res['persistent'] = False
  287. p = re.match(r'psk=([0-9a-f]*)', s[6])
  288. if p:
  289. res['psk'] = p.group(1)
  290. p = re.match(r'passphrase="(.*)"', s[6])
  291. if p:
  292. res['passphrase'] = p.group(1)
  293. res['go_dev_addr'] = s[7]
  294. if go_neg_res:
  295. exp = r'<.>(P2P-GO-NEG-SUCCESS) role=(GO|client) freq=([0-9]*)'
  296. s = re.split(exp, go_neg_res)
  297. if len(s) < 4:
  298. raise Exception("Could not parse P2P-GO-NEG-SUCCESS")
  299. res['go_neg_role'] = s[2]
  300. res['go_neg_freq'] = s[3]
  301. return res
  302. def p2p_go_neg_auth(self, peer, pin, method, go_intent=None, persistent=False, freq=None):
  303. if not self.discover_peer(peer):
  304. raise Exception("Peer " + peer + " not found")
  305. self.dump_monitor()
  306. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method + " auth"
  307. if go_intent:
  308. cmd = cmd + ' go_intent=' + str(go_intent)
  309. if freq:
  310. cmd = cmd + ' freq=' + str(freq)
  311. if persistent:
  312. cmd = cmd + " persistent"
  313. if "OK" in self.global_request(cmd):
  314. return None
  315. raise Exception("P2P_CONNECT (auth) failed")
  316. def p2p_go_neg_auth_result(self, timeout=1, expect_failure=False):
  317. go_neg_res = None
  318. ev = self.wait_global_event(["P2P-GO-NEG-SUCCESS",
  319. "P2P-GO-NEG-FAILURE"], timeout);
  320. if ev is None:
  321. if expect_failure:
  322. return None
  323. raise Exception("Group formation timed out")
  324. if "P2P-GO-NEG-SUCCESS" in ev:
  325. go_neg_res = ev
  326. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout);
  327. if ev is None:
  328. if expect_failure:
  329. return None
  330. raise Exception("Group formation timed out")
  331. self.dump_monitor()
  332. return self.group_form_result(ev, expect_failure, go_neg_res)
  333. def p2p_go_neg_init(self, peer, pin, method, timeout=0, go_intent=None, expect_failure=False, persistent=False, freq=None):
  334. if not self.discover_peer(peer):
  335. raise Exception("Peer " + peer + " not found")
  336. self.dump_monitor()
  337. if pin:
  338. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method
  339. else:
  340. cmd = "P2P_CONNECT " + peer + " " + method
  341. if go_intent:
  342. cmd = cmd + ' go_intent=' + str(go_intent)
  343. if freq:
  344. cmd = cmd + ' freq=' + str(freq)
  345. if persistent:
  346. cmd = cmd + " persistent"
  347. if "OK" in self.global_request(cmd):
  348. if timeout == 0:
  349. self.dump_monitor()
  350. return None
  351. go_neg_res = None
  352. ev = self.wait_global_event(["P2P-GO-NEG-SUCCESS",
  353. "P2P-GO-NEG-FAILURE"], timeout)
  354. if ev is None:
  355. if expect_failure:
  356. return None
  357. raise Exception("Group formation timed out")
  358. if "P2P-GO-NEG-SUCCESS" in ev:
  359. go_neg_res = ev
  360. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout)
  361. if ev is None:
  362. if expect_failure:
  363. return None
  364. raise Exception("Group formation timed out")
  365. self.dump_monitor()
  366. return self.group_form_result(ev, expect_failure, go_neg_res)
  367. raise Exception("P2P_CONNECT failed")
  368. def wait_event(self, events, timeout=10):
  369. count = 0
  370. while count < timeout * 10:
  371. count = count + 1
  372. time.sleep(0.1)
  373. while self.mon.pending():
  374. ev = self.mon.recv()
  375. logger.debug(self.ifname + ": " + ev)
  376. for event in events:
  377. if event in ev:
  378. return ev
  379. return None
  380. def wait_global_event(self, events, timeout):
  381. if self.global_iface is None:
  382. self.wait_event(events, timeout)
  383. else:
  384. count = 0
  385. while count < timeout * 10:
  386. count = count + 1
  387. time.sleep(0.1)
  388. while self.global_mon.pending():
  389. ev = self.global_mon.recv()
  390. logger.debug(self.ifname + "(global): " + ev)
  391. for event in events:
  392. if event in ev:
  393. return ev
  394. return None
  395. def wait_go_ending_session(self):
  396. ev = self.wait_event(["P2P-GROUP-REMOVED"], timeout=3)
  397. if ev is None:
  398. raise Exception("Group removal event timed out")
  399. if "reason=GO_ENDING_SESSION" not in ev:
  400. raise Exception("Unexpected group removal reason")
  401. def dump_monitor(self):
  402. while self.mon.pending():
  403. ev = self.mon.recv()
  404. logger.debug(self.ifname + ": " + ev)
  405. while self.global_mon.pending():
  406. ev = self.global_mon.recv()
  407. logger.debug(self.ifname + "(global): " + ev)
  408. def remove_group(self, ifname=None):
  409. if ifname is None:
  410. ifname = self.group_ifname if self.group_ifname else self.ifname
  411. if "OK" not in self.global_request("P2P_GROUP_REMOVE " + ifname):
  412. raise Exception("Group could not be removed")
  413. self.group_ifname = None
  414. def p2p_start_go(self, persistent=None, freq=None):
  415. self.dump_monitor()
  416. cmd = "P2P_GROUP_ADD"
  417. if persistent is None:
  418. pass
  419. elif persistent is True:
  420. cmd = cmd + " persistent"
  421. else:
  422. cmd = cmd + " persistent=" + str(persistent)
  423. if freq:
  424. cmd = cmd + " freq=" + str(freq)
  425. if "OK" in self.global_request(cmd):
  426. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout=5)
  427. if ev is None:
  428. raise Exception("GO start up timed out")
  429. self.dump_monitor()
  430. return self.group_form_result(ev)
  431. raise Exception("P2P_GROUP_ADD failed")
  432. def p2p_go_authorize_client(self, pin):
  433. cmd = "WPS_PIN any " + pin
  434. if "FAIL" in self.group_request(cmd):
  435. raise Exception("Failed to authorize client connection on GO")
  436. return None
  437. def p2p_go_authorize_client_pbc(self):
  438. cmd = "WPS_PBC"
  439. if "FAIL" in self.group_request(cmd):
  440. raise Exception("Failed to authorize client connection on GO")
  441. return None
  442. def p2p_connect_group(self, go_addr, pin, timeout=0, social=False):
  443. self.dump_monitor()
  444. if not self.discover_peer(go_addr, social=social):
  445. raise Exception("GO " + go_addr + " not found")
  446. self.dump_monitor()
  447. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  448. if "OK" in self.global_request(cmd):
  449. if timeout == 0:
  450. self.dump_monitor()
  451. return None
  452. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout)
  453. if ev is None:
  454. raise Exception("Joining the group timed out")
  455. self.dump_monitor()
  456. return self.group_form_result(ev)
  457. raise Exception("P2P_CONNECT(join) failed")
  458. def tdls_setup(self, peer):
  459. cmd = "TDLS_SETUP " + peer
  460. if "FAIL" in self.group_request(cmd):
  461. raise Exception("Failed to request TDLS setup")
  462. return None
  463. def tdls_teardown(self, peer):
  464. cmd = "TDLS_TEARDOWN " + peer
  465. if "FAIL" in self.group_request(cmd):
  466. raise Exception("Failed to request TDLS teardown")
  467. return None
  468. def connect(self, ssid, psk=None, proto=None, key_mgmt=None, wep_key0=None,
  469. ieee80211w=None, pairwise=None, group=None, scan_freq=None,
  470. eap=None, identity=None, anonymous_identity=None,
  471. password=None, phase1=None, phase2=None, ca_cert=None,
  472. domain_suffix_match=None, password_hex=None,
  473. client_cert=None, private_key=None, peerkey=False, okc=False,
  474. wait_connect=True, only_add_network=False):
  475. logger.info("Connect STA " + self.ifname + " to AP")
  476. id = self.add_network()
  477. self.set_network_quoted(id, "ssid", ssid)
  478. if psk:
  479. self.set_network_quoted(id, "psk", psk)
  480. if proto:
  481. self.set_network(id, "proto", proto)
  482. if key_mgmt:
  483. self.set_network(id, "key_mgmt", key_mgmt)
  484. if ieee80211w:
  485. self.set_network(id, "ieee80211w", ieee80211w)
  486. if pairwise:
  487. self.set_network(id, "pairwise", pairwise)
  488. if group:
  489. self.set_network(id, "group", group)
  490. if wep_key0:
  491. self.set_network(id, "wep_key0", wep_key0)
  492. if scan_freq:
  493. self.set_network(id, "scan_freq", scan_freq)
  494. if eap:
  495. self.set_network(id, "eap", eap)
  496. if identity:
  497. self.set_network_quoted(id, "identity", identity)
  498. if anonymous_identity:
  499. self.set_network_quoted(id, "anonymous_identity",
  500. anonymous_identity)
  501. if password:
  502. self.set_network_quoted(id, "password", password)
  503. if password_hex:
  504. self.set_network(id, "password", password_hex)
  505. if ca_cert:
  506. self.set_network_quoted(id, "ca_cert", ca_cert)
  507. if client_cert:
  508. self.set_network_quoted(id, "client_cert", client_cert)
  509. if private_key:
  510. self.set_network_quoted(id, "private_key", private_key)
  511. if phase1:
  512. self.set_network_quoted(id, "phase1", phase1)
  513. if phase2:
  514. self.set_network_quoted(id, "phase2", phase2)
  515. if domain_suffix_match:
  516. self.set_network_quoted(id, "domain_suffix_match",
  517. domain_suffix_match)
  518. if peerkey:
  519. self.set_network(id, "peerkey", "1")
  520. if okc:
  521. self.set_network(id, "proactive_key_caching", "1")
  522. if only_add_network:
  523. return id
  524. if wait_connect:
  525. self.connect_network(id)
  526. else:
  527. self.dump_monitor()
  528. self.select_network(id)
  529. return id
  530. def scan(self, type=None, freq=None):
  531. if type:
  532. cmd = "SCAN TYPE=" + type
  533. else:
  534. cmd = "SCAN"
  535. if freq:
  536. cmd = cmd + " freq=" + freq
  537. self.dump_monitor()
  538. if not "OK" in self.request(cmd):
  539. raise Exception("Failed to trigger scan")
  540. ev = self.wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  541. if ev is None:
  542. raise Exception("Scan timed out")
  543. def roam(self, bssid):
  544. self.dump_monitor()
  545. self.request("ROAM " + bssid)
  546. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  547. if ev is None:
  548. raise Exception("Roaming with the AP timed out")
  549. self.dump_monitor()
  550. def roam_over_ds(self, bssid):
  551. self.dump_monitor()
  552. self.request("FT_DS " + bssid)
  553. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  554. if ev is None:
  555. raise Exception("Roaming with the AP timed out")
  556. self.dump_monitor()
  557. def wps_reg(self, bssid, pin, new_ssid=None, key_mgmt=None, cipher=None,
  558. new_passphrase=None, no_wait=False):
  559. self.dump_monitor()
  560. if new_ssid:
  561. self.request("WPS_REG " + bssid + " " + pin + " " +
  562. new_ssid.encode("hex") + " " + key_mgmt + " " +
  563. cipher + " " + new_passphrase.encode("hex"))
  564. if no_wait:
  565. return
  566. ev = self.wait_event(["WPS-SUCCESS"], timeout=15)
  567. else:
  568. self.request("WPS_REG " + bssid + " " + pin)
  569. if no_wait:
  570. return
  571. ev = self.wait_event(["WPS-CRED-RECEIVED"], timeout=15)
  572. if ev is None:
  573. raise Exception("WPS cred timed out")
  574. ev = self.wait_event(["WPS-FAIL"], timeout=15)
  575. if ev is None:
  576. raise Exception("WPS timed out")
  577. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  578. if ev is None:
  579. raise Exception("Association with the AP timed out")
  580. def relog(self):
  581. self.request("RELOG")
  582. def wait_completed(self, timeout=10):
  583. for i in range(0, timeout * 2):
  584. if self.get_status_field("wpa_state") == "COMPLETED":
  585. return
  586. time.sleep(0.5)
  587. raise Exception("Timeout while waiting for COMPLETED state")
  588. def get_capability(self, field):
  589. res = self.request("GET_CAPABILITY " + field)
  590. if "FAIL" in res:
  591. return None
  592. return res.split(' ')
  593. def get_bss(self, bssid):
  594. res = self.request("BSS " + bssid)
  595. lines = res.splitlines()
  596. vals = dict()
  597. for l in lines:
  598. [name,value] = l.split('=', 1)
  599. vals[name] = value
  600. return vals
  601. def get_pmksa(self, bssid):
  602. res = self.request("PMKSA")
  603. lines = res.splitlines()
  604. for l in lines:
  605. if bssid not in l:
  606. continue
  607. vals = dict()
  608. [index,aa,pmkid,expiration,opportunistic] = l.split(' ')
  609. vals['index'] = index
  610. vals['pmkid'] = pmkid
  611. vals['expiration'] = expiration
  612. vals['opportunistic'] = opportunistic
  613. return vals
  614. return None