wpasupplicant.py 22 KB

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