wpasupplicant.py 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090
  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 binascii
  10. import re
  11. import struct
  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. self.gctrl_mon = None
  20. if ifname:
  21. self.set_ifname(ifname)
  22. else:
  23. self.ifname = None
  24. self.global_iface = global_iface
  25. if global_iface:
  26. self.global_ctrl = wpaspy.Ctrl(global_iface)
  27. self.global_mon = wpaspy.Ctrl(global_iface)
  28. self.global_mon.attach()
  29. else:
  30. self.global_mon = None
  31. def close_ctrl(self):
  32. if self.global_mon:
  33. self.global_mon.detach()
  34. self.global_mon = None
  35. self.global_ctrl = None
  36. self.remove_ifname()
  37. def set_ifname(self, ifname):
  38. self.ifname = ifname
  39. self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  40. self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  41. self.mon.attach()
  42. def remove_ifname(self):
  43. if self.ifname:
  44. self.mon.detach()
  45. self.mon = None
  46. self.ctrl = None
  47. self.ifname = None
  48. def interface_add(self, ifname, config="", driver="nl80211",
  49. drv_params=None, br_ifname=None, create=False,
  50. set_ifname=True, all_params=False):
  51. try:
  52. groups = subprocess.check_output(["id"])
  53. group = "admin" if "(admin)" in groups else "adm"
  54. except Exception, e:
  55. group = "admin"
  56. cmd = "INTERFACE_ADD " + ifname + "\t" + config + "\t" + driver + "\tDIR=/var/run/wpa_supplicant GROUP=" + group
  57. if drv_params:
  58. cmd = cmd + '\t' + drv_params
  59. if br_ifname:
  60. if not drv_params:
  61. cmd += '\t'
  62. cmd += '\t' + br_ifname
  63. if create:
  64. if not br_ifname:
  65. cmd += '\t'
  66. if not drv_params:
  67. cmd += '\t'
  68. cmd += '\tcreate'
  69. if all_params and not create:
  70. if not br_ifname:
  71. cmd += '\t'
  72. if not drv_params:
  73. cmd += '\t'
  74. cmd += '\t'
  75. if "FAIL" in self.global_request(cmd):
  76. raise Exception("Failed to add a dynamic wpa_supplicant interface")
  77. if not create and set_ifname:
  78. self.set_ifname(ifname)
  79. def interface_remove(self, ifname):
  80. self.remove_ifname()
  81. self.global_request("INTERFACE_REMOVE " + ifname)
  82. def request(self, cmd, timeout=10):
  83. logger.debug(self.ifname + ": CTRL: " + cmd)
  84. return self.ctrl.request(cmd, timeout=timeout)
  85. def global_request(self, cmd):
  86. if self.global_iface is None:
  87. self.request(cmd)
  88. else:
  89. ifname = self.ifname or self.global_iface
  90. logger.debug(ifname + ": CTRL(global): " + cmd)
  91. return self.global_ctrl.request(cmd)
  92. def group_request(self, cmd):
  93. if self.group_ifname and self.group_ifname != self.ifname:
  94. logger.debug(self.group_ifname + ": CTRL: " + cmd)
  95. gctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, self.group_ifname))
  96. return gctrl.request(cmd)
  97. return self.request(cmd)
  98. def ping(self):
  99. return "PONG" in self.request("PING")
  100. def global_ping(self):
  101. return "PONG" in self.global_request("PING")
  102. def reset(self):
  103. self.dump_monitor()
  104. res = self.request("FLUSH")
  105. if not "OK" in res:
  106. logger.info("FLUSH to " + self.ifname + " failed: " + res)
  107. self.global_request("REMOVE_NETWORK all")
  108. self.request("SET p2p_add_cli_chan 0")
  109. self.request("SET p2p_no_go_freq ")
  110. self.request("SET p2p_pref_chan ")
  111. self.request("SET p2p_no_group_iface 1")
  112. self.request("SET p2p_go_intent 7")
  113. self.request("SET ignore_old_scan_res 0")
  114. if self.gctrl_mon:
  115. try:
  116. self.gctrl_mon.detach()
  117. except:
  118. pass
  119. self.gctrl_mon = None
  120. self.group_ifname = None
  121. self.dump_monitor()
  122. iter = 0
  123. while iter < 60:
  124. state = self.get_driver_status_field("scan_state")
  125. if "SCAN_STARTED" in state or "SCAN_REQUESTED" in state:
  126. logger.info(self.ifname + ": Waiting for scan operation to complete before continuing")
  127. time.sleep(1)
  128. else:
  129. break
  130. iter = iter + 1
  131. if iter == 60:
  132. logger.error(self.ifname + ": Driver scan state did not clear")
  133. print "Trying to clear cfg80211/mac80211 scan state"
  134. try:
  135. cmd = ["ifconfig", self.ifname, "down"]
  136. subprocess.call(cmd)
  137. except subprocess.CalledProcessError, e:
  138. logger.info("ifconfig failed: " + str(e.returncode))
  139. logger.info(e.output)
  140. try:
  141. cmd = ["ifconfig", self.ifname, "up"]
  142. subprocess.call(cmd)
  143. except subprocess.CalledProcessError, e:
  144. logger.info("ifconfig failed: " + str(e.returncode))
  145. logger.info(e.output)
  146. if iter > 0:
  147. # The ongoing scan could have discovered BSSes or P2P peers
  148. logger.info("Run FLUSH again since scan was in progress")
  149. self.request("FLUSH")
  150. self.dump_monitor()
  151. if not self.ping():
  152. logger.info("No PING response from " + self.ifname + " after reset")
  153. def add_network(self):
  154. id = self.request("ADD_NETWORK")
  155. if "FAIL" in id:
  156. raise Exception("ADD_NETWORK failed")
  157. return int(id)
  158. def remove_network(self, id):
  159. id = self.request("REMOVE_NETWORK " + str(id))
  160. if "FAIL" in id:
  161. raise Exception("REMOVE_NETWORK failed")
  162. return None
  163. def get_network(self, id, field):
  164. res = self.request("GET_NETWORK " + str(id) + " " + field)
  165. if res == "FAIL\n":
  166. return None
  167. return res
  168. def set_network(self, id, field, value):
  169. res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
  170. if "FAIL" in res:
  171. raise Exception("SET_NETWORK failed")
  172. return None
  173. def set_network_quoted(self, id, field, value):
  174. res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
  175. if "FAIL" in res:
  176. raise Exception("SET_NETWORK failed")
  177. return None
  178. def list_networks(self, p2p=False):
  179. if p2p:
  180. res = self.global_request("LIST_NETWORKS")
  181. else:
  182. res = self.request("LIST_NETWORKS")
  183. lines = res.splitlines()
  184. networks = []
  185. for l in lines:
  186. if "network id" in l:
  187. continue
  188. [id,ssid,bssid,flags] = l.split('\t')
  189. network = {}
  190. network['id'] = id
  191. network['ssid'] = ssid
  192. network['bssid'] = bssid
  193. network['flags'] = flags
  194. networks.append(network)
  195. return networks
  196. def hs20_enable(self, auto_interworking=False):
  197. self.request("SET interworking 1")
  198. self.request("SET hs20 1")
  199. if auto_interworking:
  200. self.request("SET auto_interworking 1")
  201. else:
  202. self.request("SET auto_interworking 0")
  203. def interworking_add_network(self, bssid):
  204. id = self.request("INTERWORKING_ADD_NETWORK " + bssid)
  205. if "FAIL" in id or "OK" in id:
  206. raise Exception("INTERWORKING_ADD_NETWORK failed")
  207. return int(id)
  208. def add_cred(self):
  209. id = self.request("ADD_CRED")
  210. if "FAIL" in id:
  211. raise Exception("ADD_CRED failed")
  212. return int(id)
  213. def remove_cred(self, id):
  214. id = self.request("REMOVE_CRED " + str(id))
  215. if "FAIL" in id:
  216. raise Exception("REMOVE_CRED failed")
  217. return None
  218. def set_cred(self, id, field, value):
  219. res = self.request("SET_CRED " + str(id) + " " + field + " " + value)
  220. if "FAIL" in res:
  221. raise Exception("SET_CRED failed")
  222. return None
  223. def set_cred_quoted(self, id, field, value):
  224. res = self.request("SET_CRED " + str(id) + " " + field + ' "' + value + '"')
  225. if "FAIL" in res:
  226. raise Exception("SET_CRED failed")
  227. return None
  228. def get_cred(self, id, field):
  229. return self.request("GET_CRED " + str(id) + " " + field)
  230. def add_cred_values(self, params):
  231. id = self.add_cred()
  232. quoted = [ "realm", "username", "password", "domain", "imsi",
  233. "excluded_ssid", "milenage", "ca_cert", "client_cert",
  234. "private_key", "domain_suffix_match", "provisioning_sp",
  235. "roaming_partner", "phase1", "phase2" ]
  236. for field in quoted:
  237. if field in params:
  238. self.set_cred_quoted(id, field, params[field])
  239. not_quoted = [ "eap", "roaming_consortium", "priority",
  240. "required_roaming_consortium", "sp_priority",
  241. "max_bss_load", "update_identifier", "req_conn_capab",
  242. "min_dl_bandwidth_home", "min_ul_bandwidth_home",
  243. "min_dl_bandwidth_roaming", "min_ul_bandwidth_roaming" ]
  244. for field in not_quoted:
  245. if field in params:
  246. self.set_cred(id, field, params[field])
  247. return id;
  248. def select_network(self, id, freq=None):
  249. if freq:
  250. extra = " freq=" + str(freq)
  251. else:
  252. extra = ""
  253. id = self.request("SELECT_NETWORK " + str(id) + extra)
  254. if "FAIL" in id:
  255. raise Exception("SELECT_NETWORK failed")
  256. return None
  257. def mesh_group_add(self, id):
  258. id = self.request("MESH_GROUP_ADD " + str(id))
  259. if "FAIL" in id:
  260. raise Exception("MESH_GROUP_ADD failed")
  261. return None
  262. def mesh_group_remove(self):
  263. id = self.request("MESH_GROUP_REMOVE " + str(self.ifname))
  264. if "FAIL" in id:
  265. raise Exception("MESH_GROUP_REMOVE failed")
  266. return None
  267. def connect_network(self, id, timeout=10):
  268. self.dump_monitor()
  269. self.select_network(id)
  270. self.wait_connected(timeout=timeout)
  271. self.dump_monitor()
  272. def get_status(self, extra=None):
  273. if extra:
  274. extra = "-" + extra
  275. else:
  276. extra = ""
  277. res = self.request("STATUS" + extra)
  278. lines = res.splitlines()
  279. vals = dict()
  280. for l in lines:
  281. try:
  282. [name,value] = l.split('=', 1)
  283. vals[name] = value
  284. except ValueError, e:
  285. logger.info(self.ifname + ": Ignore unexpected STATUS line: " + l)
  286. return vals
  287. def get_status_field(self, field, extra=None):
  288. vals = self.get_status(extra)
  289. if field in vals:
  290. return vals[field]
  291. return None
  292. def get_group_status(self, extra=None):
  293. if extra:
  294. extra = "-" + extra
  295. else:
  296. extra = ""
  297. res = self.group_request("STATUS" + extra)
  298. lines = res.splitlines()
  299. vals = dict()
  300. for l in lines:
  301. try:
  302. [name,value] = l.split('=', 1)
  303. except ValueError:
  304. logger.info(self.ifname + ": Ignore unexpected status line: " + l)
  305. continue
  306. vals[name] = value
  307. return vals
  308. def get_group_status_field(self, field, extra=None):
  309. vals = self.get_group_status(extra)
  310. if field in vals:
  311. return vals[field]
  312. return None
  313. def get_driver_status(self):
  314. res = self.request("STATUS-DRIVER")
  315. lines = res.splitlines()
  316. vals = dict()
  317. for l in lines:
  318. try:
  319. [name,value] = l.split('=', 1)
  320. except ValueError:
  321. logger.info(self.ifname + ": Ignore unexpected status-driver line: " + l)
  322. continue
  323. vals[name] = value
  324. return vals
  325. def get_driver_status_field(self, field):
  326. vals = self.get_driver_status()
  327. if field in vals:
  328. return vals[field]
  329. return None
  330. def get_mcc(self):
  331. mcc = int(self.get_driver_status_field('capa.num_multichan_concurrent'))
  332. return 1 if mcc < 2 else mcc
  333. def get_mib(self):
  334. res = self.request("MIB")
  335. lines = res.splitlines()
  336. vals = dict()
  337. for l in lines:
  338. try:
  339. [name,value] = l.split('=', 1)
  340. vals[name] = value
  341. except ValueError, e:
  342. logger.info(self.ifname + ": Ignore unexpected MIB line: " + l)
  343. return vals
  344. def p2p_dev_addr(self):
  345. return self.get_status_field("p2p_device_address")
  346. def p2p_interface_addr(self):
  347. return self.get_group_status_field("address")
  348. def own_addr(self):
  349. try:
  350. res = self.p2p_interface_addr()
  351. except:
  352. res = self.p2p_dev_addr()
  353. return res
  354. def p2p_listen(self):
  355. return self.global_request("P2P_LISTEN")
  356. def p2p_find(self, social=False, progressive=False, dev_id=None,
  357. dev_type=None, delay=None, freq=None):
  358. cmd = "P2P_FIND"
  359. if social:
  360. cmd = cmd + " type=social"
  361. elif progressive:
  362. cmd = cmd + " type=progressive"
  363. if dev_id:
  364. cmd = cmd + " dev_id=" + dev_id
  365. if dev_type:
  366. cmd = cmd + " dev_type=" + dev_type
  367. if delay:
  368. cmd = cmd + " delay=" + str(delay)
  369. if freq:
  370. cmd = cmd + " freq=" + str(freq)
  371. return self.global_request(cmd)
  372. def p2p_stop_find(self):
  373. return self.global_request("P2P_STOP_FIND")
  374. def wps_read_pin(self):
  375. self.pin = self.request("WPS_PIN get").rstrip("\n")
  376. if "FAIL" in self.pin:
  377. raise Exception("Could not generate PIN")
  378. return self.pin
  379. def peer_known(self, peer, full=True):
  380. res = self.global_request("P2P_PEER " + peer)
  381. if peer.lower() not in res.lower():
  382. return False
  383. if not full:
  384. return True
  385. return "[PROBE_REQ_ONLY]" not in res
  386. def discover_peer(self, peer, full=True, timeout=15, social=True, force_find=False):
  387. logger.info(self.ifname + ": Trying to discover peer " + peer)
  388. if not force_find and self.peer_known(peer, full):
  389. return True
  390. self.p2p_find(social)
  391. count = 0
  392. while count < timeout * 4:
  393. time.sleep(0.25)
  394. count = count + 1
  395. if self.peer_known(peer, full):
  396. return True
  397. return False
  398. def get_peer(self, peer):
  399. res = self.global_request("P2P_PEER " + peer)
  400. if peer.lower() not in res.lower():
  401. raise Exception("Peer information not available")
  402. lines = res.splitlines()
  403. vals = dict()
  404. for l in lines:
  405. if '=' in l:
  406. [name,value] = l.split('=', 1)
  407. vals[name] = value
  408. return vals
  409. def group_form_result(self, ev, expect_failure=False, go_neg_res=None):
  410. if expect_failure:
  411. if "P2P-GROUP-STARTED" in ev:
  412. raise Exception("Group formation succeeded when expecting failure")
  413. exp = r'<.>(P2P-GO-NEG-FAILURE) status=([0-9]*)'
  414. s = re.split(exp, ev)
  415. if len(s) < 3:
  416. return None
  417. res = {}
  418. res['result'] = 'go-neg-failed'
  419. res['status'] = int(s[2])
  420. return res
  421. if "P2P-GROUP-STARTED" not in ev:
  422. raise Exception("No P2P-GROUP-STARTED event seen")
  423. 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.]*)'
  424. s = re.split(exp, ev)
  425. if len(s) < 11:
  426. exp = r'<.>(P2P-GROUP-STARTED) ([^ ]*) ([^ ]*) ssid="(.*)" freq=([0-9]*) ((?:psk=.*)|(?:passphrase=".*")) go_dev_addr=([0-9a-f:]*)'
  427. s = re.split(exp, ev)
  428. if len(s) < 8:
  429. raise Exception("Could not parse P2P-GROUP-STARTED")
  430. res = {}
  431. res['result'] = 'success'
  432. res['ifname'] = s[2]
  433. self.group_ifname = s[2]
  434. try:
  435. self.gctrl_mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, self.group_ifname))
  436. self.gctrl_mon.attach()
  437. except:
  438. logger.debug("Could not open monitor socket for group interface")
  439. self.gctrl_mon = None
  440. res['role'] = s[3]
  441. res['ssid'] = s[4]
  442. res['freq'] = s[5]
  443. if "[PERSISTENT]" in ev:
  444. res['persistent'] = True
  445. else:
  446. res['persistent'] = False
  447. p = re.match(r'psk=([0-9a-f]*)', s[6])
  448. if p:
  449. res['psk'] = p.group(1)
  450. p = re.match(r'passphrase="(.*)"', s[6])
  451. if p:
  452. res['passphrase'] = p.group(1)
  453. res['go_dev_addr'] = s[7]
  454. if len(s) > 8 and len(s[8]) > 0:
  455. res['ip_addr'] = s[8]
  456. if len(s) > 9:
  457. res['ip_mask'] = s[9]
  458. if len(s) > 10:
  459. res['go_ip_addr'] = s[10]
  460. if go_neg_res:
  461. exp = r'<.>(P2P-GO-NEG-SUCCESS) role=(GO|client) freq=([0-9]*)'
  462. s = re.split(exp, go_neg_res)
  463. if len(s) < 4:
  464. raise Exception("Could not parse P2P-GO-NEG-SUCCESS")
  465. res['go_neg_role'] = s[2]
  466. res['go_neg_freq'] = s[3]
  467. return res
  468. def p2p_go_neg_auth(self, peer, pin, method, go_intent=None, persistent=False, freq=None):
  469. if not self.discover_peer(peer):
  470. raise Exception("Peer " + peer + " not found")
  471. self.dump_monitor()
  472. if pin:
  473. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method + " auth"
  474. else:
  475. cmd = "P2P_CONNECT " + peer + " " + method + " auth"
  476. if go_intent:
  477. cmd = cmd + ' go_intent=' + str(go_intent)
  478. if freq:
  479. cmd = cmd + ' freq=' + str(freq)
  480. if persistent:
  481. cmd = cmd + " persistent"
  482. if "OK" in self.global_request(cmd):
  483. return None
  484. raise Exception("P2P_CONNECT (auth) failed")
  485. def p2p_go_neg_auth_result(self, timeout=1, expect_failure=False):
  486. go_neg_res = None
  487. ev = self.wait_global_event(["P2P-GO-NEG-SUCCESS",
  488. "P2P-GO-NEG-FAILURE"], timeout);
  489. if ev is None:
  490. if expect_failure:
  491. return None
  492. raise Exception("Group formation timed out")
  493. if "P2P-GO-NEG-SUCCESS" in ev:
  494. go_neg_res = ev
  495. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout);
  496. if ev is None:
  497. if expect_failure:
  498. return None
  499. raise Exception("Group formation timed out")
  500. self.dump_monitor()
  501. return self.group_form_result(ev, expect_failure, go_neg_res)
  502. def p2p_go_neg_init(self, peer, pin, method, timeout=0, go_intent=None, expect_failure=False, persistent=False, persistent_id=None, freq=None, provdisc=False, wait_group=True):
  503. if not self.discover_peer(peer):
  504. raise Exception("Peer " + peer + " not found")
  505. self.dump_monitor()
  506. if pin:
  507. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method
  508. else:
  509. cmd = "P2P_CONNECT " + peer + " " + method
  510. if go_intent:
  511. cmd = cmd + ' go_intent=' + str(go_intent)
  512. if freq:
  513. cmd = cmd + ' freq=' + str(freq)
  514. if persistent:
  515. cmd = cmd + " persistent"
  516. elif persistent_id:
  517. cmd = cmd + " persistent=" + persistent_id
  518. if provdisc:
  519. cmd = cmd + " provdisc"
  520. if "OK" in self.global_request(cmd):
  521. if timeout == 0:
  522. self.dump_monitor()
  523. return None
  524. go_neg_res = None
  525. ev = self.wait_global_event(["P2P-GO-NEG-SUCCESS",
  526. "P2P-GO-NEG-FAILURE"], timeout)
  527. if ev is None:
  528. if expect_failure:
  529. return None
  530. raise Exception("Group formation timed out")
  531. if "P2P-GO-NEG-SUCCESS" in ev:
  532. if not wait_group:
  533. return ev
  534. go_neg_res = ev
  535. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout)
  536. if ev is None:
  537. if expect_failure:
  538. return None
  539. raise Exception("Group formation timed out")
  540. self.dump_monitor()
  541. return self.group_form_result(ev, expect_failure, go_neg_res)
  542. raise Exception("P2P_CONNECT failed")
  543. def wait_event(self, events, timeout=10):
  544. start = os.times()[4]
  545. while True:
  546. while self.mon.pending():
  547. ev = self.mon.recv()
  548. logger.debug(self.ifname + ": " + ev)
  549. for event in events:
  550. if event in ev:
  551. return ev
  552. now = os.times()[4]
  553. remaining = start + timeout - now
  554. if remaining <= 0:
  555. break
  556. if not self.mon.pending(timeout=remaining):
  557. break
  558. return None
  559. def wait_global_event(self, events, timeout):
  560. if self.global_iface is None:
  561. self.wait_event(events, timeout)
  562. else:
  563. start = os.times()[4]
  564. while True:
  565. while self.global_mon.pending():
  566. ev = self.global_mon.recv()
  567. logger.debug(self.ifname + "(global): " + ev)
  568. for event in events:
  569. if event in ev:
  570. return ev
  571. now = os.times()[4]
  572. remaining = start + timeout - now
  573. if remaining <= 0:
  574. break
  575. if not self.global_mon.pending(timeout=remaining):
  576. break
  577. return None
  578. def wait_group_event(self, events, timeout=10):
  579. if self.group_ifname and self.group_ifname != self.ifname:
  580. if self.gctrl_mon is None:
  581. return None
  582. start = os.times()[4]
  583. while True:
  584. while self.gctrl_mon.pending():
  585. ev = self.gctrl_mon.recv()
  586. logger.debug(self.group_ifname + ": " + ev)
  587. for event in events:
  588. if event in ev:
  589. return ev
  590. now = os.times()[4]
  591. remaining = start + timeout - now
  592. if remaining <= 0:
  593. break
  594. if not self.gctrl_mon.pending(timeout=remaining):
  595. break
  596. return None
  597. return self.wait_event(events, timeout)
  598. def wait_go_ending_session(self):
  599. if self.gctrl_mon:
  600. try:
  601. self.gctrl_mon.detach()
  602. except:
  603. pass
  604. self.gctrl_mon = None
  605. ev = self.wait_global_event(["P2P-GROUP-REMOVED"], timeout=3)
  606. if ev is None:
  607. raise Exception("Group removal event timed out")
  608. if "reason=GO_ENDING_SESSION" not in ev:
  609. raise Exception("Unexpected group removal reason")
  610. def dump_monitor(self):
  611. while self.mon.pending():
  612. ev = self.mon.recv()
  613. logger.debug(self.ifname + ": " + ev)
  614. while self.global_mon and self.global_mon.pending():
  615. ev = self.global_mon.recv()
  616. logger.debug(self.ifname + "(global): " + ev)
  617. def remove_group(self, ifname=None):
  618. if self.gctrl_mon:
  619. try:
  620. self.gctrl_mon.detach()
  621. except:
  622. pass
  623. self.gctrl_mon = None
  624. if ifname is None:
  625. ifname = self.group_ifname if self.group_ifname else self.ifname
  626. if "OK" not in self.global_request("P2P_GROUP_REMOVE " + ifname):
  627. raise Exception("Group could not be removed")
  628. self.group_ifname = None
  629. def p2p_start_go(self, persistent=None, freq=None, no_event_clear=False):
  630. self.dump_monitor()
  631. cmd = "P2P_GROUP_ADD"
  632. if persistent is None:
  633. pass
  634. elif persistent is True:
  635. cmd = cmd + " persistent"
  636. else:
  637. cmd = cmd + " persistent=" + str(persistent)
  638. if freq:
  639. cmd = cmd + " freq=" + str(freq)
  640. if "OK" in self.global_request(cmd):
  641. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout=5)
  642. if ev is None:
  643. raise Exception("GO start up timed out")
  644. if not no_event_clear:
  645. self.dump_monitor()
  646. return self.group_form_result(ev)
  647. raise Exception("P2P_GROUP_ADD failed")
  648. def p2p_go_authorize_client(self, pin):
  649. cmd = "WPS_PIN any " + pin
  650. if "FAIL" in self.group_request(cmd):
  651. raise Exception("Failed to authorize client connection on GO")
  652. return None
  653. def p2p_go_authorize_client_pbc(self):
  654. cmd = "WPS_PBC"
  655. if "FAIL" in self.group_request(cmd):
  656. raise Exception("Failed to authorize client connection on GO")
  657. return None
  658. def p2p_connect_group(self, go_addr, pin, timeout=0, social=False,
  659. freq=None):
  660. self.dump_monitor()
  661. if not self.discover_peer(go_addr, social=social):
  662. if social or not self.discover_peer(go_addr, social=social):
  663. raise Exception("GO " + go_addr + " not found")
  664. self.dump_monitor()
  665. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  666. if freq:
  667. cmd += " freq=" + str(freq)
  668. if "OK" in self.global_request(cmd):
  669. if timeout == 0:
  670. self.dump_monitor()
  671. return None
  672. ev = self.wait_global_event(["P2P-GROUP-STARTED"], timeout)
  673. if ev is None:
  674. raise Exception("Joining the group timed out")
  675. self.dump_monitor()
  676. return self.group_form_result(ev)
  677. raise Exception("P2P_CONNECT(join) failed")
  678. def tdls_setup(self, peer):
  679. cmd = "TDLS_SETUP " + peer
  680. if "FAIL" in self.group_request(cmd):
  681. raise Exception("Failed to request TDLS setup")
  682. return None
  683. def tdls_teardown(self, peer):
  684. cmd = "TDLS_TEARDOWN " + peer
  685. if "FAIL" in self.group_request(cmd):
  686. raise Exception("Failed to request TDLS teardown")
  687. return None
  688. def tdls_link_status(self, peer):
  689. cmd = "TDLS_LINK_STATUS " + peer
  690. ret = self.group_request(cmd)
  691. if "FAIL" in ret:
  692. raise Exception("Failed to request TDLS link status")
  693. return ret
  694. def tspecs(self):
  695. """Return (tsid, up) tuples representing current tspecs"""
  696. res = self.request("WMM_AC_STATUS")
  697. tspecs = re.findall(r"TSID=(\d+) UP=(\d+)", res)
  698. tspecs = [tuple(map(int, tspec)) for tspec in tspecs]
  699. logger.debug("tspecs: " + str(tspecs))
  700. return tspecs
  701. def add_ts(self, tsid, up, direction="downlink", expect_failure=False,
  702. extra=None):
  703. params = {
  704. "sba": 9000,
  705. "nominal_msdu_size": 1500,
  706. "min_phy_rate": 6000000,
  707. "mean_data_rate": 1500,
  708. }
  709. cmd = "WMM_AC_ADDTS %s tsid=%d up=%d" % (direction, tsid, up)
  710. for (key, value) in params.iteritems():
  711. cmd += " %s=%d" % (key, value)
  712. if extra:
  713. cmd += " " + extra
  714. if self.request(cmd).strip() != "OK":
  715. raise Exception("ADDTS failed (tsid=%d up=%d)" % (tsid, up))
  716. if expect_failure:
  717. ev = self.wait_event(["TSPEC-REQ-FAILED"], timeout=2)
  718. if ev is None:
  719. raise Exception("ADDTS failed (time out while waiting failure)")
  720. if "tsid=%d" % (tsid) not in ev:
  721. raise Exception("ADDTS failed (invalid tsid in TSPEC-REQ-FAILED")
  722. return
  723. ev = self.wait_event(["TSPEC-ADDED"], timeout=1)
  724. if ev is None:
  725. raise Exception("ADDTS failed (time out)")
  726. if "tsid=%d" % (tsid) not in ev:
  727. raise Exception("ADDTS failed (invalid tsid in TSPEC-ADDED)")
  728. if not (tsid, up) in self.tspecs():
  729. raise Exception("ADDTS failed (tsid not in tspec list)")
  730. def del_ts(self, tsid):
  731. if self.request("WMM_AC_DELTS %d" % (tsid)).strip() != "OK":
  732. raise Exception("DELTS failed")
  733. ev = self.wait_event(["TSPEC-REMOVED"], timeout=1)
  734. if ev is None:
  735. raise Exception("DELTS failed (time out)")
  736. if "tsid=%d" % (tsid) not in ev:
  737. raise Exception("DELTS failed (invalid tsid in TSPEC-REMOVED)")
  738. tspecs = [(t, u) for (t, u) in self.tspecs() if t == tsid]
  739. if tspecs:
  740. raise Exception("DELTS failed (still in tspec list)")
  741. def connect(self, ssid=None, ssid2=None, **kwargs):
  742. logger.info("Connect STA " + self.ifname + " to AP")
  743. id = self.add_network()
  744. if ssid:
  745. self.set_network_quoted(id, "ssid", ssid)
  746. elif ssid2:
  747. self.set_network(id, "ssid", ssid2)
  748. quoted = [ "psk", "identity", "anonymous_identity", "password",
  749. "ca_cert", "client_cert", "private_key",
  750. "private_key_passwd", "ca_cert2", "client_cert2",
  751. "private_key2", "phase1", "phase2", "domain_suffix_match",
  752. "altsubject_match", "subject_match", "pac_file", "dh_file",
  753. "bgscan", "ht_mcs", "id_str", "openssl_ciphers",
  754. "domain_match" ]
  755. for field in quoted:
  756. if field in kwargs and kwargs[field]:
  757. self.set_network_quoted(id, field, kwargs[field])
  758. not_quoted = [ "proto", "key_mgmt", "ieee80211w", "pairwise",
  759. "group", "wep_key0", "wep_key1", "wep_key2", "wep_key3",
  760. "wep_tx_keyidx", "scan_freq", "eap",
  761. "eapol_flags", "fragment_size", "scan_ssid", "auth_alg",
  762. "wpa_ptk_rekey", "disable_ht", "disable_vht", "bssid",
  763. "disable_max_amsdu", "ampdu_factor", "ampdu_density",
  764. "disable_ht40", "disable_sgi", "disable_ldpc",
  765. "ht40_intolerant", "update_identifier", "mac_addr",
  766. "erp", "bg_scan_period", "bssid_blacklist",
  767. "bssid_whitelist", "mem_only_psk", "eap_workaround" ]
  768. for field in not_quoted:
  769. if field in kwargs and kwargs[field]:
  770. self.set_network(id, field, kwargs[field])
  771. if "raw_psk" in kwargs and kwargs['raw_psk']:
  772. self.set_network(id, "psk", kwargs['raw_psk'])
  773. if "password_hex" in kwargs and kwargs['password_hex']:
  774. self.set_network(id, "password", kwargs['password_hex'])
  775. if "peerkey" in kwargs and kwargs['peerkey']:
  776. self.set_network(id, "peerkey", "1")
  777. if "okc" in kwargs and kwargs['okc']:
  778. self.set_network(id, "proactive_key_caching", "1")
  779. if "ocsp" in kwargs and kwargs['ocsp']:
  780. self.set_network(id, "ocsp", str(kwargs['ocsp']))
  781. if "only_add_network" in kwargs and kwargs['only_add_network']:
  782. return id
  783. if "wait_connect" not in kwargs or kwargs['wait_connect']:
  784. if "eap" in kwargs:
  785. self.connect_network(id, timeout=20)
  786. else:
  787. self.connect_network(id)
  788. else:
  789. self.dump_monitor()
  790. self.select_network(id)
  791. return id
  792. def scan(self, type=None, freq=None, no_wait=False, only_new=False):
  793. if type:
  794. cmd = "SCAN TYPE=" + type
  795. else:
  796. cmd = "SCAN"
  797. if freq:
  798. cmd = cmd + " freq=" + str(freq)
  799. if only_new:
  800. cmd += " only_new=1"
  801. if not no_wait:
  802. self.dump_monitor()
  803. if not "OK" in self.request(cmd):
  804. raise Exception("Failed to trigger scan")
  805. if no_wait:
  806. return
  807. ev = self.wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  808. if ev is None:
  809. raise Exception("Scan timed out")
  810. def scan_for_bss(self, bssid, freq=None, force_scan=False, only_new=False):
  811. if not force_scan and self.get_bss(bssid) is not None:
  812. return
  813. for i in range(0, 10):
  814. self.scan(freq=freq, type="ONLY", only_new=only_new)
  815. if self.get_bss(bssid) is not None:
  816. return
  817. raise Exception("Could not find BSS " + bssid + " in scan")
  818. def flush_scan_cache(self, freq=2417):
  819. self.request("BSS_FLUSH 0")
  820. self.scan(freq=freq, only_new=True)
  821. def roam(self, bssid, fail_test=False):
  822. self.dump_monitor()
  823. if "OK" not in self.request("ROAM " + bssid):
  824. raise Exception("ROAM failed")
  825. if fail_test:
  826. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  827. if ev is not None:
  828. raise Exception("Unexpected connection")
  829. self.dump_monitor()
  830. return
  831. self.wait_connected(timeout=10, error="Roaming with the AP timed out")
  832. self.dump_monitor()
  833. def roam_over_ds(self, bssid, fail_test=False):
  834. self.dump_monitor()
  835. if "OK" not in self.request("FT_DS " + bssid):
  836. raise Exception("FT_DS failed")
  837. if fail_test:
  838. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  839. if ev is not None:
  840. raise Exception("Unexpected connection")
  841. self.dump_monitor()
  842. return
  843. self.wait_connected(timeout=10, error="Roaming with the AP timed out")
  844. self.dump_monitor()
  845. def wps_reg(self, bssid, pin, new_ssid=None, key_mgmt=None, cipher=None,
  846. new_passphrase=None, no_wait=False):
  847. self.dump_monitor()
  848. if new_ssid:
  849. self.request("WPS_REG " + bssid + " " + pin + " " +
  850. new_ssid.encode("hex") + " " + key_mgmt + " " +
  851. cipher + " " + new_passphrase.encode("hex"))
  852. if no_wait:
  853. return
  854. ev = self.wait_event(["WPS-SUCCESS"], timeout=15)
  855. else:
  856. self.request("WPS_REG " + bssid + " " + pin)
  857. if no_wait:
  858. return
  859. ev = self.wait_event(["WPS-CRED-RECEIVED"], timeout=15)
  860. if ev is None:
  861. raise Exception("WPS cred timed out")
  862. ev = self.wait_event(["WPS-FAIL"], timeout=15)
  863. if ev is None:
  864. raise Exception("WPS timed out")
  865. self.wait_connected(timeout=15)
  866. def relog(self):
  867. self.global_request("RELOG")
  868. def wait_completed(self, timeout=10):
  869. for i in range(0, timeout * 2):
  870. if self.get_status_field("wpa_state") == "COMPLETED":
  871. return
  872. time.sleep(0.5)
  873. raise Exception("Timeout while waiting for COMPLETED state")
  874. def get_capability(self, field):
  875. res = self.request("GET_CAPABILITY " + field)
  876. if "FAIL" in res:
  877. return None
  878. return res.split(' ')
  879. def get_bss(self, bssid, ifname=None):
  880. if not ifname or ifname == self.ifname:
  881. res = self.request("BSS " + bssid)
  882. elif ifname == self.group_ifname:
  883. res = self.group_request("BSS " + bssid)
  884. else:
  885. return None
  886. if "FAIL" in res:
  887. return None
  888. lines = res.splitlines()
  889. vals = dict()
  890. for l in lines:
  891. [name,value] = l.split('=', 1)
  892. vals[name] = value
  893. if len(vals) == 0:
  894. return None
  895. return vals
  896. def get_pmksa(self, bssid):
  897. res = self.request("PMKSA")
  898. lines = res.splitlines()
  899. for l in lines:
  900. if bssid not in l:
  901. continue
  902. vals = dict()
  903. [index,aa,pmkid,expiration,opportunistic] = l.split(' ')
  904. vals['index'] = index
  905. vals['pmkid'] = pmkid
  906. vals['expiration'] = expiration
  907. vals['opportunistic'] = opportunistic
  908. return vals
  909. return None
  910. def get_sta(self, addr, info=None, next=False):
  911. cmd = "STA-NEXT " if next else "STA "
  912. if addr is None:
  913. res = self.request("STA-FIRST")
  914. elif info:
  915. res = self.request(cmd + addr + " " + info)
  916. else:
  917. res = self.request(cmd + addr)
  918. lines = res.splitlines()
  919. vals = dict()
  920. first = True
  921. for l in lines:
  922. if first:
  923. vals['addr'] = l
  924. first = False
  925. else:
  926. [name,value] = l.split('=', 1)
  927. vals[name] = value
  928. return vals
  929. def mgmt_rx(self, timeout=5):
  930. ev = self.wait_event(["MGMT-RX"], timeout=timeout)
  931. if ev is None:
  932. return None
  933. msg = {}
  934. items = ev.split(' ')
  935. field,val = items[1].split('=')
  936. if field != "freq":
  937. raise Exception("Unexpected MGMT-RX event format: " + ev)
  938. msg['freq'] = val
  939. frame = binascii.unhexlify(items[4])
  940. msg['frame'] = frame
  941. hdr = struct.unpack('<HH6B6B6BH', frame[0:24])
  942. msg['fc'] = hdr[0]
  943. msg['subtype'] = (hdr[0] >> 4) & 0xf
  944. hdr = hdr[1:]
  945. msg['duration'] = hdr[0]
  946. hdr = hdr[1:]
  947. msg['da'] = "%02x:%02x:%02x:%02x:%02x:%02x" % hdr[0:6]
  948. hdr = hdr[6:]
  949. msg['sa'] = "%02x:%02x:%02x:%02x:%02x:%02x" % hdr[0:6]
  950. hdr = hdr[6:]
  951. msg['bssid'] = "%02x:%02x:%02x:%02x:%02x:%02x" % hdr[0:6]
  952. hdr = hdr[6:]
  953. msg['seq_ctrl'] = hdr[0]
  954. msg['payload'] = frame[24:]
  955. return msg
  956. def wait_connected(self, timeout=10, error="Connection timed out"):
  957. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=timeout)
  958. if ev is None:
  959. raise Exception(error)
  960. return ev
  961. def wait_disconnected(self, timeout=10, error="Disconnection timed out"):
  962. ev = self.wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=timeout)
  963. if ev is None:
  964. raise Exception(error)
  965. return ev
  966. def get_group_ifname(self):
  967. return self.group_ifname if self.group_ifname else self.ifname
  968. def get_config(self):
  969. res = self.request("DUMP")
  970. if res.startswith("FAIL"):
  971. raise Exception("DUMP failed")
  972. lines = res.splitlines()
  973. vals = dict()
  974. for l in lines:
  975. [name,value] = l.split('=', 1)
  976. vals[name] = value
  977. return vals