wpasupplicant.py 29 KB

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