wpasupplicant.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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 wpaspy
  13. logger = logging.getLogger(__name__)
  14. wpas_ctrl = '/var/run/wpa_supplicant'
  15. class WpaSupplicant:
  16. def __init__(self, ifname):
  17. self.ifname = ifname
  18. self.group_ifname = None
  19. self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  20. self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
  21. self.mon.attach()
  22. def request(self, cmd):
  23. logger.debug(self.ifname + ": CTRL: " + cmd)
  24. return self.ctrl.request(cmd)
  25. def group_request(self, cmd):
  26. if self.group_ifname and self.group_ifname != self.ifname:
  27. logger.debug(self.group_ifname + ": CTRL: " + cmd)
  28. gctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, self.group_ifname))
  29. return gctrl.request(cmd)
  30. return self.request(cmd)
  31. def ping(self):
  32. return "PONG" in self.request("PING")
  33. def reset(self):
  34. self.request("FLUSH")
  35. self.request("SET ignore_old_scan_res 0")
  36. self.group_ifname = None
  37. def add_network(self):
  38. id = self.request("ADD_NETWORK")
  39. if "FAIL" in id:
  40. raise Exception("ADD_NETWORK failed")
  41. return int(id)
  42. def remove_network(self, id):
  43. id = self.request("REMOVE_NETWORK " + str(id))
  44. if "FAIL" in id:
  45. raise Exception("REMOVE_NETWORK failed")
  46. return None
  47. def set_network(self, id, field, value):
  48. res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
  49. if "FAIL" in res:
  50. raise Exception("SET_NETWORK failed")
  51. return None
  52. def set_network_quoted(self, id, field, value):
  53. res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
  54. if "FAIL" in res:
  55. raise Exception("SET_NETWORK failed")
  56. return None
  57. def select_network(self, id):
  58. id = self.request("SELECT_NETWORK " + str(id))
  59. if "FAIL" in id:
  60. raise Exception("SELECT_NETWORK failed")
  61. return None
  62. def connect_network(self, id):
  63. self.dump_monitor()
  64. self.select_network(id)
  65. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  66. if ev is None:
  67. raise Exception("Association with the AP timed out")
  68. self.dump_monitor()
  69. def get_status(self):
  70. res = self.request("STATUS")
  71. lines = res.splitlines()
  72. vals = dict()
  73. for l in lines:
  74. [name,value] = l.split('=', 1)
  75. vals[name] = value
  76. return vals
  77. def get_status_field(self, field):
  78. vals = self.get_status()
  79. if field in vals:
  80. return vals[field]
  81. return None
  82. def get_group_status(self):
  83. res = self.group_request("STATUS")
  84. lines = res.splitlines()
  85. vals = dict()
  86. for l in lines:
  87. [name,value] = l.split('=', 1)
  88. vals[name] = value
  89. return vals
  90. def get_group_status_field(self, field):
  91. vals = self.get_group_status()
  92. if field in vals:
  93. return vals[field]
  94. return None
  95. def p2p_dev_addr(self):
  96. return self.get_status_field("p2p_device_address")
  97. def p2p_interface_addr(self):
  98. return self.get_group_status_field("address")
  99. def p2p_listen(self):
  100. return self.request("P2P_LISTEN")
  101. def p2p_find(self, social=False):
  102. if social:
  103. return self.request("P2P_FIND type=social")
  104. return self.request("P2P_FIND")
  105. def p2p_stop_find(self):
  106. return self.request("P2P_STOP_FIND")
  107. def wps_read_pin(self):
  108. #TODO: make this random
  109. self.pin = "12345670"
  110. return self.pin
  111. def peer_known(self, peer, full=True):
  112. res = self.request("P2P_PEER " + peer)
  113. if peer.lower() not in res.lower():
  114. return False
  115. if not full:
  116. return True
  117. return "[PROBE_REQ_ONLY]" not in res
  118. def discover_peer(self, peer, full=True, timeout=15, social=True):
  119. logger.info(self.ifname + ": Trying to discover peer " + peer)
  120. if self.peer_known(peer, full):
  121. return True
  122. self.p2p_find(social)
  123. count = 0
  124. while count < timeout:
  125. time.sleep(1)
  126. count = count + 1
  127. if self.peer_known(peer, full):
  128. return True
  129. return False
  130. def group_form_result(self, ev, expect_failure=False):
  131. if expect_failure:
  132. if "P2P-GROUP-STARTED" in ev:
  133. raise Exception("Group formation succeeded when expecting failure")
  134. exp = r'<.>(P2P-GO-NEG-FAILURE) status=([0-9]*)'
  135. s = re.split(exp, ev)
  136. if len(s) < 3:
  137. return None
  138. res = {}
  139. res['result'] = 'go-neg-failed'
  140. res['status'] = int(s[2])
  141. return res
  142. if "P2P-GROUP-STARTED" not in ev:
  143. raise Exception("No P2P-GROUP-STARTED event seen")
  144. exp = r'<.>(P2P-GROUP-STARTED) ([^ ]*) ([^ ]*) ssid="(.*)" freq=([0-9]*) ((?:psk=.*)|(?:passphrase=".*")) go_dev_addr=([0-9a-f:]*)'
  145. s = re.split(exp, ev)
  146. if len(s) < 8:
  147. raise Exception("Could not parse P2P-GROUP-STARTED")
  148. res = {}
  149. res['result'] = 'success'
  150. res['ifname'] = s[2]
  151. self.group_ifname = s[2]
  152. res['role'] = s[3]
  153. res['ssid'] = s[4]
  154. res['freq'] = s[5]
  155. p = re.match(r'psk=([0-9a-f]*)', s[6])
  156. if p:
  157. res['psk'] = p.group(1)
  158. p = re.match(r'passphrase="(.*)"', s[6])
  159. if p:
  160. res['passphrase'] = p.group(1)
  161. res['go_dev_addr'] = s[7]
  162. return res
  163. def p2p_go_neg_auth(self, peer, pin, method, go_intent=None):
  164. if not self.discover_peer(peer):
  165. raise Exception("Peer " + peer + " not found")
  166. self.dump_monitor()
  167. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method + " auth"
  168. if go_intent:
  169. cmd = cmd + ' go_intent=' + str(go_intent)
  170. if "OK" in self.request(cmd):
  171. return None
  172. raise Exception("P2P_CONNECT (auth) failed")
  173. def p2p_go_neg_auth_result(self, timeout=1, expect_failure=False):
  174. ev = self.wait_event(["P2P-GROUP-STARTED","P2P-GO-NEG-FAILURE"], timeout);
  175. if ev is None:
  176. if expect_failure:
  177. return None
  178. raise Exception("Group formation timed out")
  179. self.dump_monitor()
  180. return self.group_form_result(ev, expect_failure)
  181. def p2p_go_neg_init(self, peer, pin, method, timeout=0, go_intent=None, expect_failure=False):
  182. if not self.discover_peer(peer):
  183. raise Exception("Peer " + peer + " not found")
  184. self.dump_monitor()
  185. if pin:
  186. cmd = "P2P_CONNECT " + peer + " " + pin + " " + method
  187. else:
  188. cmd = "P2P_CONNECT " + peer + " " + method
  189. if go_intent:
  190. cmd = cmd + ' go_intent=' + str(go_intent)
  191. if "OK" in self.request(cmd):
  192. if timeout == 0:
  193. self.dump_monitor()
  194. return None
  195. ev = self.wait_event(["P2P-GROUP-STARTED","P2P-GO-NEG-FAILURE"], timeout)
  196. if ev is None:
  197. if expect_failure:
  198. return None
  199. raise Exception("Group formation timed out")
  200. self.dump_monitor()
  201. return self.group_form_result(ev, expect_failure)
  202. raise Exception("P2P_CONNECT failed")
  203. def wait_event(self, events, timeout):
  204. count = 0
  205. while count < timeout * 10:
  206. count = count + 1
  207. time.sleep(0.1)
  208. while self.mon.pending():
  209. ev = self.mon.recv()
  210. logger.debug(self.ifname + ": " + ev)
  211. for event in events:
  212. if event in ev:
  213. return ev
  214. return None
  215. def dump_monitor(self):
  216. while self.mon.pending():
  217. ev = self.mon.recv()
  218. logger.debug(self.ifname + ": " + ev)
  219. def remove_group(self, ifname=None):
  220. if ifname is None:
  221. ifname = self.group_ifname if self.group_ifname else self.iname
  222. if "OK" not in self.request("P2P_GROUP_REMOVE " + ifname):
  223. raise Exception("Group could not be removed")
  224. self.group_ifname = None
  225. def p2p_start_go(self, persistent=None, freq=None):
  226. self.dump_monitor()
  227. cmd = "P2P_GROUP_ADD"
  228. if persistent is None:
  229. pass
  230. elif persistent is True:
  231. cmd = cmd + " persistent"
  232. else:
  233. cmd = cmd + " persistent=" + str(persistent)
  234. if freq:
  235. cmd = cmd + " freq=" + freq
  236. if "OK" in self.request(cmd):
  237. ev = self.wait_event(["P2P-GROUP-STARTED"], timeout=5)
  238. if ev is None:
  239. raise Exception("GO start up timed out")
  240. self.dump_monitor()
  241. return self.group_form_result(ev)
  242. raise Exception("P2P_GROUP_ADD failed")
  243. def p2p_go_authorize_client(self, pin):
  244. cmd = "WPS_PIN any " + pin
  245. if "FAIL" in self.group_request(cmd):
  246. raise Exception("Failed to authorize client connection on GO")
  247. return None
  248. def p2p_connect_group(self, go_addr, pin, timeout=0):
  249. self.dump_monitor()
  250. if not self.discover_peer(go_addr, social=False):
  251. raise Exception("GO " + go_addr + " not found")
  252. self.dump_monitor()
  253. cmd = "P2P_CONNECT " + go_addr + " " + pin + " join"
  254. if "OK" in self.request(cmd):
  255. if timeout == 0:
  256. self.dump_monitor()
  257. return None
  258. ev = self.wait_event(["P2P-GROUP-STARTED"], timeout)
  259. if ev is None:
  260. raise Exception("Joining the group timed out")
  261. self.dump_monitor()
  262. return self.group_form_result(ev)
  263. raise Exception("P2P_CONNECT(join) failed")
  264. def tdls_setup(self, peer):
  265. cmd = "TDLS_SETUP " + peer
  266. if "FAIL" in self.group_request(cmd):
  267. raise Exception("Failed to request TDLS setup")
  268. return None
  269. def tdls_teardown(self, peer):
  270. cmd = "TDLS_TEARDOWN " + peer
  271. if "FAIL" in self.group_request(cmd):
  272. raise Exception("Failed to request TDLS teardown")
  273. return None
  274. def connect(self, ssid, psk=None, proto=None, key_mgmt=None, wep_key0=None, ieee80211w=None):
  275. logger.info("Connect STA " + self.ifname + " to AP")
  276. id = self.add_network()
  277. self.set_network_quoted(id, "ssid", ssid)
  278. if psk:
  279. self.set_network_quoted(id, "psk", psk)
  280. if proto:
  281. self.set_network(id, "proto", proto)
  282. if key_mgmt:
  283. self.set_network(id, "key_mgmt", key_mgmt)
  284. if ieee80211w:
  285. self.set_network(id, "ieee80211w", ieee80211w)
  286. if wep_key0:
  287. self.set_network(id, "wep_key0", wep_key0)
  288. self.connect_network(id)
  289. def scan(self, type=None):
  290. if type:
  291. cmd = "SCAN TYPE=" + type
  292. else:
  293. cmd = "SCAN"
  294. self.dump_monitor()
  295. if not "OK" in self.request(cmd):
  296. raise Exception("Failed to trigger scan")
  297. ev = self.wait_event(["CTRL-EVENT-SCAN-RESULTS"], 15)
  298. if ev is None:
  299. raise Exception("Scan timed out")
  300. def roam(self, bssid):
  301. self.dump_monitor()
  302. self.request("ROAM " + bssid)
  303. ev = self.wait_event(["CTRL-EVENT-CONNECTED"], timeout=10)
  304. if ev is None:
  305. raise Exception("Roaming with the AP timed out")
  306. self.dump_monitor()