wpasupplicant.py 40 KB

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