wpasupplicant.py 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. # Python class for controlling wpa_supplicant
  2. # Copyright (c) 2013-2014, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import os
  7. import time
  8. import logging
  9. import re
  10. import subprocess
  11. import wpaspy
  12. logger = logging.getLogger()
  13. wpas_ctrl = '/var/run/wpa_supplicant'
  14. class WpaSupplicant:
  15. def __init__(self, ifname=None, global_iface=None):
  16. self.group_ifname = None
  17. if ifname:
  18. self.set_ifname(ifname)
  19. else:
  20. self.ifname = None
  21. self.global_iface = global_iface
  22. if global_iface:
  23. self.global_ctrl = wpaspy.Ctrl(global_iface)
  24. self.global_mon = wpaspy.Ctrl(global_iface)
  25. self.global_mon.attach()
  26. def set_ifname(self, ifname):
  27. self.ifname = ifname
  28. self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  29. self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  30. self.mon.attach()
  31. def remove_ifname(self):
  32. if self.ifname:
  33. self.mon.detach()
  34. self.mon = None
  35. self.ctrl = None
  36. self.ifname = None
  37. def interface_add(self, ifname, driver="nl80211", drv_params=None):
  38. try:
  39. groups = subprocess.check_output(["id"])
  40. group = "admin" if "(admin)" in groups else "adm"
  41. except Exception, e:
  42. group = "admin"
  43. cmd = "INTERFACE_ADD " + ifname + "\t\t" + driver + "\tDIR=/var/run/wpa_supplicant GROUP=" + group
  44. if drv_params:
  45. cmd = cmd + '\t' + drv_params
  46. if "FAIL" in self.global_request(cmd):
  47. raise Exception("Failed to add a dynamic wpa_supplicant interface")
  48. self.set_ifname(ifname)
  49. def interface_remove(self, ifname):
  50. self.remove_ifname()
  51. self.global_request("INTERFACE_REMOVE " + ifname)
  52. def request(self, cmd):
  53. logger.debug(self.ifname + ": CTRL: " + cmd)
  54. return self.ctrl.request(cmd)
  55. def global_request(self, cmd):
  56. if self.global_iface is None:
  57. self.request(cmd)
  58. else:
  59. ifname = self.ifname or self.global_iface
  60. logger.debug(ifname + ": CTRL: " + cmd)
  61. return self.global_ctrl.request(cmd)
  62. def group_request(self, cmd):
  63. if self.group_ifname and self.group_ifname != self.ifname:
  64. logger.debug(self.group_ifname + ": CTRL: " + cmd)
  65. gctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, self.group_ifname))
  66. return gctrl.request(cmd)
  67. return self.request(cmd)
  68. def ping(self):
  69. return "PONG" in self.request("PING")
  70. def reset(self):
  71. res = self.request("FLUSH")
  72. if not "OK" in res:
  73. logger.info("FLUSH to " + self.ifname + " failed: " + res)
  74. self.request("WPS_ER_STOP")
  75. self.request("SET pmf 0")
  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", "domain_suffix_match" ]
  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. try:
  212. [name,value] = l.split('=', 1)
  213. vals[name] = value
  214. except ValueError, e:
  215. logger.info(self.ifname + ": Ignore unexpected STATUS line: " + l)
  216. return vals
  217. def get_status_field(self, field):
  218. vals = self.get_status()
  219. if field in vals:
  220. return vals[field]
  221. return None
  222. def get_group_status(self):
  223. res = self.group_request("STATUS")
  224. lines = res.splitlines()
  225. vals = dict()
  226. for l in lines:
  227. [name,value] = l.split('=', 1)
  228. vals[name] = value
  229. return vals
  230. def get_group_status_field(self, field):
  231. vals = self.get_group_status()
  232. if field in vals:
  233. return vals[field]
  234. return None
  235. def get_driver_status(self):
  236. res = self.request("STATUS-DRIVER")
  237. lines = res.splitlines()
  238. vals = dict()
  239. for l in lines:
  240. [name,value] = l.split('=', 1)
  241. vals[name] = value
  242. return vals
  243. def get_driver_status_field(self, field):
  244. vals = self.get_driver_status()
  245. if field in vals:
  246. return vals[field]
  247. return None
  248. def p2p_dev_addr(self):
  249. return self.get_status_field("p2p_device_address")
  250. def p2p_interface_addr(self):
  251. return self.get_group_status_field("address")
  252. def p2p_listen(self):
  253. return self.global_request("P2P_LISTEN")
  254. def p2p_find(self, social=False, dev_id=None, dev_type=None):
  255. cmd = "P2P_FIND"
  256. if social:
  257. cmd = cmd + " type=social"
  258. if dev_id:
  259. cmd = cmd + " dev_id=" + dev_id
  260. if dev_type:
  261. cmd = cmd + " dev_type=" + dev_type
  262. return self.global_request(cmd)
  263. def p2p_stop_find(self):
  264. return self.global_request("P2P_STOP_FIND")
  265. def wps_read_pin(self):
  266. #TODO: make this random
  267. self.pin = "12345670"
  268. return self.pin
  269. def peer_known(self, peer, full=True):
  270. res = self.global_request("P2P_PEER " + peer)
  271. if peer.lower() not in res.lower():
  272. return False
  273. if not full:
  274. return True
  275. return "[PROBE_REQ_ONLY]" not in res
  276. def discover_peer(self, peer, full=True, timeout=15, social=True, force_find=False):
  277. logger.info(self.ifname + ": Trying to discover peer " + peer)
  278. if not force_find and self.peer_known(peer, full):
  279. return True
  280. self.p2p_find(social)
  281. count = 0
  282. while count < timeout:
  283. time.sleep(1)
  284. count = count + 1
  285. if self.peer_known(peer, full):
  286. return True
  287. return False
  288. def get_peer(self, peer):
  289. res = self.global_request("P2P_PEER " + peer)
  290. if peer.lower() not in res.lower():
  291. raise Exception("Peer information not available")
  292. lines = res.splitlines()
  293. vals = dict()
  294. for l in lines:
  295. if '=' in l:
  296. [name,value] = l.split('=', 1)
  297. vals[name] = value
  298. return vals
  299. def group_form_result(self, ev, expect_failure=False, go_neg_res=None):
  300. if expect_failure:
  301. if "P2P-GROUP-STARTED" in ev:
  302. raise Exception("Group formation succeeded when expecting failure")
  303. exp = r'<.>(P2P-GO-NEG-FAILURE) status=([0-9]*)'
  304. s = re.split(exp, ev)
  305. if len(s) < 3:
  306. return None
  307. res = {}
  308. res['result'] = 'go-neg-failed'
  309. res['status'] = int(s[2])
  310. return res
  311. if "P2P-GROUP-STARTED" not in ev:
  312. raise Exception("No P2P-GROUP-STARTED event seen")
  313. 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.]*)'
  314. s = re.split(exp, ev)
  315. if len(s) < 11:
  316. exp = r'<.>(P2P-GROUP-STARTED) ([^ ]*) ([^ ]*) ssid="(.*)" freq=([0-9]*) ((?:psk=.*)|(?:passphrase=".*")) go_dev_addr=([0-9a-f:]*)'
  317. s = re.split(exp, ev)
  318. if len(s) < 8:
  319. raise Exception("Could not parse P2P-GROUP-STARTED")
  320. res = {}
  321. res['result'] = 'success'
  322. res['ifname'] = s[2]
  323. self.group_ifname = s[2]
  324. res['role'] = s[3]
  325. res['ssid'] = s[4]
  326. res['freq'] = s[5]
  327. if "[PERSISTENT]" in ev:
  328. res['persistent'] = True
  329. else:
  330. res['persistent'] = False
  331. p = re.match(r'psk=([0-9a-f]*)', s[6])
  332. if p:
  333. res['psk'] = p.group(1)
  334. p = re.match(r'passphrase="(.*)"', s[6])
  335. if p:
  336. res['passphrase'] = p.group(1)
  337. res['go_dev_addr'] = s[7]
  338. if len(s) > 8 and len(s[8]) > 0:
  339. res['ip_addr'] = s[8]
  340. if len(s) > 9:
  341. res['ip_mask'] = s[9]
  342. if len(s) > 10:
  343. res['go_ip_addr'] = s[10]
  344. if go_neg_res:
  345. exp = r'<.>(P2P-GO-NEG-SUCCESS) role=(GO|client) freq=([0-9]*)'
  346. s = re.split(exp, go_neg_res)
  347. if len(s) < 4:
  348. raise Exception("Could not parse P2P-GO-NEG-SUCCESS")
  349. res['go_neg_role'] = s[2]
  350. res['go_neg_freq'] = s[3]
  351. return res
  352. def p2p_go_neg_auth(self, peer, pin, method, go_intent=None, persistent=False, freq=None):
  353. if not self.discover_peer(peer):
  354. raise Exception("Peer " + peer + " not found")
  355. self.dump_monitor()
  356. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method + " auth"
  357. if go_intent:
  358. cmd = cmd + ' go_intent=' + str(go_intent)
  359. if freq:
  360. cmd = cmd + ' freq=' + str(freq)
  361. if persistent:
  362. cmd = cmd + " persistent"
  363. if "OK" in self.global_request(cmd):
  364. return None
  365. raise Exception("P2P_CONNECT (auth) failed")
  366. def p2p_go_neg_auth_result(self, timeout=1, expect_failure=False):
  367. go_neg_res = None
  368. ev = self.wait_global_event(["P2P-GO-NEG-SUCCESS",
  369. "P2P-GO-NEG-FAILURE"], timeout);
  370. if ev is None:
  371. if expect_failure:
  372. return None
  373. raise Exception("Group formation timed out")
  374. if "P2P-GO-NEG-SUCCESS" in ev:
  375. go_neg_res = ev
  376. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout);
  377. if ev is None:
  378. if expect_failure:
  379. return None
  380. raise Exception("Group formation timed out")
  381. self.dump_monitor()
  382. return self.group_form_result(ev, expect_failure, go_neg_res)
  383. def p2p_go_neg_init(self, peer, pin, method, timeout=0, go_intent=None, expect_failure=False, persistent=False, freq=None):
  384. if not self.discover_peer(peer):
  385. raise Exception("Peer " + peer + " not found")
  386. self.dump_monitor()
  387. if pin:
  388. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method
  389. else:
  390. cmd = "P2P_CONNECT " + peer + " " + method
  391. if go_intent:
  392. cmd = cmd + ' go_intent=' + str(go_intent)
  393. if freq:
  394. cmd = cmd + ' freq=' + str(freq)
  395. if persistent:
  396. cmd = cmd + " persistent"
  397. if "OK" in self.global_request(cmd):
  398. if timeout == 0:
  399. self.dump_monitor()
  400. return None
  401. go_neg_res = None
  402. ev = self.wait_global_event(["P2P-GO-NEG-SUCCESS",
  403. "P2P-GO-NEG-FAILURE"], timeout)
  404. if ev is None:
  405. if expect_failure:
  406. return None
  407. raise Exception("Group formation timed out")
  408. if "P2P-GO-NEG-SUCCESS" in ev:
  409. go_neg_res = ev
  410. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout)
  411. if ev is None:
  412. if expect_failure:
  413. return None
  414. raise Exception("Group formation timed out")
  415. self.dump_monitor()
  416. return self.group_form_result(ev, expect_failure, go_neg_res)
  417. raise Exception("P2P_CONNECT failed")
  418. def wait_event(self, events, timeout=10):
  419. start = os.times()[4]
  420. while True:
  421. while self.mon.pending():
  422. ev = self.mon.recv()
  423. logger.debug(self.ifname + ": " + ev)
  424. for event in events:
  425. if event in ev:
  426. return ev
  427. now = os.times()[4]
  428. remaining = start + timeout - now
  429. if remaining <= 0:
  430. break
  431. if not self.mon.pending(timeout=remaining):
  432. break
  433. return None
  434. def wait_global_event(self, events, timeout):
  435. if self.global_iface is None:
  436. self.wait_event(events, timeout)
  437. else:
  438. start = os.times()[4]
  439. while True:
  440. while self.global_mon.pending():
  441. ev = self.global_mon.recv()
  442. logger.debug(self.ifname + "(global): " + ev)
  443. for event in events:
  444. if event in ev:
  445. return ev
  446. now = os.times()[4]
  447. remaining = start + timeout - now
  448. if remaining <= 0:
  449. break
  450. if not self.global_mon.pending(timeout=remaining):
  451. break
  452. return None
  453. def wait_go_ending_session(self):
  454. ev = self.wait_event(["P2P-GROUP-REMOVED"], timeout=3)
  455. if ev is None:
  456. raise Exception("Group removal event timed out")
  457. if "reason=GO_ENDING_SESSION" not in ev:
  458. raise Exception("Unexpected group removal reason")
  459. def dump_monitor(self):
  460. while self.mon.pending():
  461. ev = self.mon.recv()
  462. logger.debug(self.ifname + ": " + ev)
  463. while self.global_mon.pending():
  464. ev = self.global_mon.recv()
  465. logger.debug(self.ifname + "(global): " + ev)
  466. def remove_group(self, ifname=None):
  467. if ifname is None:
  468. ifname = self.group_ifname if self.group_ifname else self.ifname
  469. if "OK" not in self.global_request("P2P_GROUP_REMOVE " + ifname):
  470. raise Exception("Group could not be removed")
  471. self.group_ifname = None
  472. def p2p_start_go(self, persistent=None, freq=None):
  473. self.dump_monitor()
  474. cmd = "P2P_GROUP_ADD"
  475. if persistent is None:
  476. pass
  477. elif persistent is True:
  478. cmd = cmd + " persistent"
  479. else:
  480. cmd = cmd + " persistent=" + str(persistent)
  481. if freq:
  482. cmd = cmd + " freq=" + str(freq)
  483. if "OK" in self.global_request(cmd):
  484. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout=5)
  485. if ev is None:
  486. raise Exception("GO start up timed out")
  487. self.dump_monitor()
  488. return self.group_form_result(ev)
  489. raise Exception("P2P_GROUP_ADD failed")
  490. def p2p_go_authorize_client(self, pin):
  491. cmd = "WPS_PIN any " + pin
  492. if "FAIL" in self.group_request(cmd):
  493. raise Exception("Failed to authorize client connection on GO")
  494. return None
  495. def p2p_go_authorize_client_pbc(self):
  496. cmd = "WPS_PBC"
  497. if "FAIL" in self.group_request(cmd):
  498. raise Exception("Failed to authorize client connection on GO")
  499. return None
  500. def p2p_connect_group(self, go_addr, pin, timeout=0, social=False):
  501. self.dump_monitor()
  502. if not self.discover_peer(go_addr, social=social):
  503. raise Exception("GO " + go_addr + " not found")
  504. self.dump_monitor()
  505. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  506. if "OK" in self.global_request(cmd):
  507. if timeout == 0:
  508. self.dump_monitor()
  509. return None
  510. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout)
  511. if ev is None:
  512. raise Exception("Joining the group timed out")
  513. self.dump_monitor()
  514. return self.group_form_result(ev)
  515. raise Exception("P2P_CONNECT(join) failed")
  516. def tdls_setup(self, peer):
  517. cmd = "TDLS_SETUP " + peer
  518. if "FAIL" in self.group_request(cmd):
  519. raise Exception("Failed to request TDLS setup")
  520. return None
  521. def tdls_teardown(self, peer):
  522. cmd = "TDLS_TEARDOWN " + peer
  523. if "FAIL" in self.group_request(cmd):
  524. raise Exception("Failed to request TDLS teardown")
  525. return None
  526. def connect(self, ssid=None, ssid2=None, **kwargs):
  527. logger.info("Connect STA " + self.ifname + " to AP")
  528. id = self.add_network()
  529. if ssid:
  530. self.set_network_quoted(id, "ssid", ssid)
  531. elif ssid2:
  532. self.set_network(id, "ssid", ssid2)
  533. quoted = [ "psk", "identity", "anonymous_identity", "password",
  534. "ca_cert", "client_cert", "private_key",
  535. "private_key_passwd", "ca_cert2", "client_cert2",
  536. "private_key2", "phase1", "phase2", "domain_suffix_match",
  537. "altsubject_match", "subject_match", "pac_file", "dh_file" ]
  538. for field in quoted:
  539. if field in kwargs and kwargs[field]:
  540. self.set_network_quoted(id, field, kwargs[field])
  541. not_quoted = [ "proto", "key_mgmt", "ieee80211w", "pairwise",
  542. "group", "wep_key0", "scan_freq", "eap",
  543. "eapol_flags", "fragment_size", "scan_ssid", "auth_alg" ]
  544. for field in not_quoted:
  545. if field in kwargs and kwargs[field]:
  546. self.set_network(id, field, kwargs[field])
  547. if "raw_psk" in kwargs and kwargs['raw_psk']:
  548. self.set_network(id, "psk", kwargs['raw_psk'])
  549. if "password_hex" in kwargs and kwargs['password_hex']:
  550. self.set_network(id, "password", kwargs['password_hex'])
  551. if "peerkey" in kwargs and kwargs['peerkey']:
  552. self.set_network(id, "peerkey", "1")
  553. if "okc" in kwargs and kwargs['okc']:
  554. self.set_network(id, "proactive_key_caching", "1")
  555. if "ocsp" in kwargs and kwargs['ocsp']:
  556. self.set_network(id, "ocsp", str(kwargs['ocsp']))
  557. if "only_add_network" in kwargs and kwargs['only_add_network']:
  558. return id
  559. if "wait_connect" not in kwargs or kwargs['wait_connect']:
  560. if "eap" in kwargs:
  561. self.connect_network(id, timeout=20)
  562. else:
  563. self.connect_network(id)
  564. else:
  565. self.dump_monitor()
  566. self.select_network(id)
  567. return id
  568. def scan(self, type=None, freq=None, no_wait=False):
  569. if type:
  570. cmd = "SCAN TYPE=" + type
  571. else:
  572. cmd = "SCAN"
  573. if freq:
  574. cmd = cmd + " freq=" + freq
  575. if not no_wait:
  576. self.dump_monitor()
  577. if not "OK" in self.request(cmd):
  578. raise Exception("Failed to trigger scan")
  579. if no_wait:
  580. return
  581. ev = self.wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  582. if ev is None:
  583. raise Exception("Scan timed out")
  584. def roam(self, bssid):
  585. self.dump_monitor()
  586. self.request("ROAM " + bssid)
  587. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  588. if ev is None:
  589. raise Exception("Roaming with the AP timed out")
  590. self.dump_monitor()
  591. def roam_over_ds(self, bssid):
  592. self.dump_monitor()
  593. self.request("FT_DS " + bssid)
  594. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  595. if ev is None:
  596. raise Exception("Roaming with the AP timed out")
  597. self.dump_monitor()
  598. def wps_reg(self, bssid, pin, new_ssid=None, key_mgmt=None, cipher=None,
  599. new_passphrase=None, no_wait=False):
  600. self.dump_monitor()
  601. if new_ssid:
  602. self.request("WPS_REG " + bssid + " " + pin + " " +
  603. new_ssid.encode("hex") + " " + key_mgmt + " " +
  604. cipher + " " + new_passphrase.encode("hex"))
  605. if no_wait:
  606. return
  607. ev = self.wait_event(["WPS-SUCCESS"], timeout=15)
  608. else:
  609. self.request("WPS_REG " + bssid + " " + pin)
  610. if no_wait:
  611. return
  612. ev = self.wait_event(["WPS-CRED-RECEIVED"], timeout=15)
  613. if ev is None:
  614. raise Exception("WPS cred timed out")
  615. ev = self.wait_event(["WPS-FAIL"], timeout=15)
  616. if ev is None:
  617. raise Exception("WPS timed out")
  618. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=15)
  619. if ev is None:
  620. raise Exception("Association with the AP timed out")
  621. def relog(self):
  622. self.request("RELOG")
  623. def wait_completed(self, timeout=10):
  624. for i in range(0, timeout * 2):
  625. if self.get_status_field("wpa_state") == "COMPLETED":
  626. return
  627. time.sleep(0.5)
  628. raise Exception("Timeout while waiting for COMPLETED state")
  629. def get_capability(self, field):
  630. res = self.request("GET_CAPABILITY " + field)
  631. if "FAIL" in res:
  632. return None
  633. return res.split(' ')
  634. def get_bss(self, bssid):
  635. res = self.request("BSS " + bssid)
  636. lines = res.splitlines()
  637. vals = dict()
  638. for l in lines:
  639. [name,value] = l.split('=', 1)
  640. vals[name] = value
  641. return vals
  642. def get_pmksa(self, bssid):
  643. res = self.request("PMKSA")
  644. lines = res.splitlines()
  645. for l in lines:
  646. if bssid not in l:
  647. continue
  648. vals = dict()
  649. [index,aa,pmkid,expiration,opportunistic] = l.split(' ')
  650. vals['index'] = index
  651. vals['pmkid'] = pmkid
  652. vals['expiration'] = expiration
  653. vals['opportunistic'] = opportunistic
  654. return vals
  655. return None
  656. def get_sta(self, addr, info=None, next=False):
  657. cmd = "STA-NEXT " if next else "STA "
  658. if addr is None:
  659. res = self.request("STA-FIRST")
  660. elif info:
  661. res = self.request(cmd + addr + " " + info)
  662. else:
  663. res = self.request(cmd + addr)
  664. lines = res.splitlines()
  665. vals = dict()
  666. first = True
  667. for l in lines:
  668. if first:
  669. vals['addr'] = l
  670. first = False
  671. else:
  672. [name,value] = l.split('=', 1)
  673. vals[name] = value
  674. return vals