wps-nfc.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. #!/usr/bin/python
  2. #
  3. # Example nfcpy to wpa_supplicant wrapper for WPS NFC operations
  4. # Copyright (c) 2012-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 sys
  10. import time
  11. import random
  12. import StringIO
  13. import threading
  14. import argparse
  15. import nfc
  16. import nfc.ndef
  17. import nfc.llcp
  18. import nfc.handover
  19. import logging
  20. logging.basicConfig()
  21. import wpaspy
  22. wpas_ctrl = '/var/run/wpa_supplicant'
  23. srv = None
  24. continue_loop = True
  25. terminate_now = False
  26. def wpas_connect():
  27. ifaces = []
  28. if os.path.isdir(wpas_ctrl):
  29. try:
  30. ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
  31. except OSError, error:
  32. print "Could not find wpa_supplicant: ", error
  33. return None
  34. if len(ifaces) < 1:
  35. print "No wpa_supplicant control interface found"
  36. return None
  37. for ctrl in ifaces:
  38. try:
  39. wpas = wpaspy.Ctrl(ctrl)
  40. return wpas
  41. except Exception, e:
  42. pass
  43. return None
  44. def wpas_tag_read(message):
  45. wpas = wpas_connect()
  46. if (wpas == None):
  47. return False
  48. if "FAIL" in wpas.request("WPS_NFC_TAG_READ " + str(message).encode("hex")):
  49. return False
  50. return True
  51. def wpas_get_config_token(id=None):
  52. wpas = wpas_connect()
  53. if (wpas == None):
  54. return None
  55. if id:
  56. ret = wpas.request("WPS_NFC_CONFIG_TOKEN NDEF " + id)
  57. else:
  58. ret = wpas.request("WPS_NFC_CONFIG_TOKEN NDEF")
  59. if "FAIL" in ret:
  60. return None
  61. return ret.rstrip().decode("hex")
  62. def wpas_get_er_config_token(uuid):
  63. wpas = wpas_connect()
  64. if (wpas == None):
  65. return None
  66. ret = wpas.request("WPS_ER_NFC_CONFIG_TOKEN NDEF " + uuid)
  67. if "FAIL" in ret:
  68. return None
  69. return ret.rstrip().decode("hex")
  70. def wpas_get_password_token():
  71. wpas = wpas_connect()
  72. if (wpas == None):
  73. return None
  74. return wpas.request("WPS_NFC_TOKEN NDEF").rstrip().decode("hex")
  75. def wpas_get_handover_req():
  76. wpas = wpas_connect()
  77. if (wpas == None):
  78. return None
  79. return wpas.request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip().decode("hex")
  80. def wpas_get_handover_sel(uuid):
  81. wpas = wpas_connect()
  82. if (wpas == None):
  83. return None
  84. if uuid is None:
  85. res = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip()
  86. else:
  87. res = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + uuid).rstrip()
  88. if "FAIL" in res:
  89. return None
  90. return res.decode("hex")
  91. def wpas_report_handover(req, sel, type):
  92. wpas = wpas_connect()
  93. if (wpas == None):
  94. return None
  95. return wpas.request("NFC_REPORT_HANDOVER " + type + " WPS " +
  96. str(req).encode("hex") + " " +
  97. str(sel).encode("hex"))
  98. class HandoverServer(nfc.handover.HandoverServer):
  99. def __init__(self, llc):
  100. super(HandoverServer, self).__init__(llc)
  101. self.sent_carrier = None
  102. self.ho_server_processing = False
  103. self.success = False
  104. def process_request(self, request):
  105. self.ho_server_processing = True
  106. print "HandoverServer - request received"
  107. print "Parsed handover request: " + request.pretty()
  108. sel = nfc.ndef.HandoverSelectMessage(version="1.2")
  109. for carrier in request.carriers:
  110. print "Remote carrier type: " + carrier.type
  111. if carrier.type == "application/vnd.wfa.wsc":
  112. print "WPS carrier type match - add WPS carrier record"
  113. data = wpas_get_handover_sel(self.uuid)
  114. if data is None:
  115. print "Could not get handover select carrier record from wpa_supplicant"
  116. continue
  117. print "Handover select carrier record from wpa_supplicant:"
  118. print data.encode("hex")
  119. self.sent_carrier = data
  120. wpas_report_handover(carrier.record, self.sent_carrier, "RESP")
  121. message = nfc.ndef.Message(data);
  122. sel.add_carrier(message[0], "active", message[1:])
  123. print "Handover select:"
  124. print sel.pretty()
  125. print str(sel).encode("hex")
  126. print "Sending handover select"
  127. self.success = True
  128. return sel
  129. def wps_handover_init(llc):
  130. print "Trying to initiate WPS handover"
  131. data = wpas_get_handover_req()
  132. if (data == None):
  133. print "Could not get handover request carrier record from wpa_supplicant"
  134. return
  135. print "Handover request carrier record from wpa_supplicant: " + data.encode("hex")
  136. record = nfc.ndef.Record()
  137. f = StringIO.StringIO(data)
  138. record._read(f)
  139. record = nfc.ndef.HandoverCarrierRecord(record)
  140. print "Parsed handover request carrier record:"
  141. print record.pretty()
  142. message = nfc.ndef.HandoverRequestMessage(version="1.2")
  143. message.nonce = random.randint(0, 0xffff)
  144. message.add_carrier(record, "active")
  145. print "Handover request:"
  146. print message.pretty()
  147. client = nfc.handover.HandoverClient(llc)
  148. try:
  149. print "Trying handover";
  150. client.connect()
  151. print "Connected for handover"
  152. except nfc.llcp.ConnectRefused:
  153. print "Handover connection refused"
  154. client.close()
  155. return
  156. print "Sending handover request"
  157. if not client.send(message):
  158. print "Failed to send handover request"
  159. print "Receiving handover response"
  160. message = client._recv()
  161. if message is None:
  162. print "No response received"
  163. client.close()
  164. return
  165. if message.type != "urn:nfc:wkt:Hs":
  166. print "Response was not Hs - received: " + message.type
  167. client.close()
  168. return
  169. print "Received message"
  170. print message.pretty()
  171. message = nfc.ndef.HandoverSelectMessage(message)
  172. print "Handover select received"
  173. print message.pretty()
  174. for carrier in message.carriers:
  175. print "Remote carrier type: " + carrier.type
  176. if carrier.type == "application/vnd.wfa.wsc":
  177. print "WPS carrier type match - send to wpa_supplicant"
  178. wpas_report_handover(data, carrier.record, "INIT")
  179. wifi = nfc.ndef.WifiConfigRecord(carrier.record)
  180. print wifi.pretty()
  181. print "Remove peer"
  182. client.close()
  183. print "Done with handover"
  184. global only_one
  185. if only_one:
  186. global continue_loop
  187. continue_loop = False
  188. global no_wait
  189. if no_wait:
  190. print "Trying to exit.."
  191. global terminate_now
  192. terminate_now = True
  193. def wps_tag_read(tag, wait_remove=True):
  194. success = False
  195. if len(tag.ndef.message):
  196. for record in tag.ndef.message:
  197. print "record type " + record.type
  198. if record.type == "application/vnd.wfa.wsc":
  199. print "WPS tag - send to wpa_supplicant"
  200. success = wpas_tag_read(tag.ndef.message)
  201. break
  202. else:
  203. print "Empty tag"
  204. if wait_remove:
  205. print "Remove tag"
  206. while tag.is_present:
  207. time.sleep(0.1)
  208. return success
  209. def rdwr_connected_write(tag):
  210. print "Tag found - writing"
  211. global write_data
  212. tag.ndef.message = str(write_data)
  213. print "Done - remove tag"
  214. global only_one
  215. if only_one:
  216. global continue_loop
  217. continue_loop = False
  218. global write_wait_remove
  219. while write_wait_remove and tag.is_present:
  220. time.sleep(0.1)
  221. def wps_write_config_tag(clf, id=None, wait_remove=True):
  222. print "Write WPS config token"
  223. global write_data, write_wait_remove
  224. write_wait_remove = wait_remove
  225. write_data = wpas_get_config_token(id)
  226. if write_data == None:
  227. print "Could not get WPS config token from wpa_supplicant"
  228. sys.exit(1)
  229. return
  230. print "Touch an NFC tag"
  231. clf.connect(rdwr={'on-connect': rdwr_connected_write})
  232. def wps_write_er_config_tag(clf, uuid, wait_remove=True):
  233. print "Write WPS ER config token"
  234. global write_data, write_wait_remove
  235. write_wait_remove = wait_remove
  236. write_data = wpas_get_er_config_token(uuid)
  237. if write_data == None:
  238. print "Could not get WPS config token from wpa_supplicant"
  239. return
  240. print "Touch an NFC tag"
  241. clf.connect(rdwr={'on-connect': rdwr_connected_write})
  242. def wps_write_password_tag(clf, wait_remove=True):
  243. print "Write WPS password token"
  244. global write_data, write_wait_remove
  245. write_wait_remove = wait_remove
  246. write_data = wpas_get_password_token()
  247. if write_data == None:
  248. print "Could not get WPS password token from wpa_supplicant"
  249. return
  250. print "Touch an NFC tag"
  251. clf.connect(rdwr={'on-connect': rdwr_connected_write})
  252. def rdwr_connected(tag):
  253. global only_one, no_wait
  254. print "Tag connected: " + str(tag)
  255. if tag.ndef:
  256. print "NDEF tag: " + tag.type
  257. try:
  258. print tag.ndef.message.pretty()
  259. except Exception, e:
  260. print e
  261. success = wps_tag_read(tag, not only_one)
  262. if only_one and success:
  263. global continue_loop
  264. continue_loop = False
  265. else:
  266. print "Not an NDEF tag - remove tag"
  267. return not no_wait
  268. def llcp_worker(llc):
  269. global arg_uuid
  270. if arg_uuid is None:
  271. wps_handover_init(llc)
  272. print "Exiting llcp_worker thread"
  273. return
  274. global srv
  275. global wait_connection
  276. while not wait_connection and srv.sent_carrier is None:
  277. if srv.ho_server_processing:
  278. time.sleep(0.025)
  279. def llcp_startup(clf, llc):
  280. global arg_uuid
  281. if arg_uuid:
  282. print "Start LLCP server"
  283. global srv
  284. srv = HandoverServer(llc)
  285. if arg_uuid is "ap":
  286. print "Trying to handle WPS handover"
  287. srv.uuid = None
  288. else:
  289. print "Trying to handle WPS handover with AP " + arg_uuid
  290. srv.uuid = arg_uuid
  291. return llc
  292. def llcp_connected(llc):
  293. print "P2P LLCP connected"
  294. global wait_connection
  295. wait_connection = False
  296. global arg_uuid
  297. if arg_uuid:
  298. global srv
  299. srv.start()
  300. else:
  301. threading.Thread(target=llcp_worker, args=(llc,)).start()
  302. print "llcp_connected returning"
  303. return True
  304. def terminate_loop():
  305. global terminate_now
  306. return terminate_now
  307. def main():
  308. clf = nfc.ContactlessFrontend()
  309. parser = argparse.ArgumentParser(description='nfcpy to wpa_supplicant integration for WPS NFC operations')
  310. parser.add_argument('--only-one', '-1', action='store_true',
  311. help='run only one operation and exit')
  312. parser.add_argument('--no-wait', action='store_true',
  313. help='do not wait for tag to be removed before exiting')
  314. parser.add_argument('--uuid',
  315. help='UUID of an AP (used for WPS ER operations)')
  316. parser.add_argument('--id',
  317. help='network id (used for WPS ER operations)')
  318. parser.add_argument('command', choices=['write-config',
  319. 'write-er-config',
  320. 'write-password'],
  321. nargs='?')
  322. args = parser.parse_args()
  323. global arg_uuid
  324. arg_uuid = args.uuid
  325. global only_one
  326. only_one = args.only_one
  327. global no_wait
  328. no_wait = args.no_wait
  329. try:
  330. if not clf.open("usb"):
  331. print "Could not open connection with an NFC device"
  332. raise SystemExit
  333. if args.command == "write-config":
  334. wps_write_config_tag(clf, id=args.id, wait_remove=not args.no_wait)
  335. raise SystemExit
  336. if args.command == "write-er-config":
  337. wps_write_er_config_tag(clf, args.uuid, wait_remove=not args.no_wait)
  338. raise SystemExit
  339. if args.command == "write-password":
  340. wps_write_password_tag(clf, wait_remove=not args.no_wait)
  341. raise SystemExit
  342. global continue_loop
  343. while continue_loop:
  344. print "Waiting for a tag or peer to be touched"
  345. wait_connection = True
  346. try:
  347. if not clf.connect(rdwr={'on-connect': rdwr_connected},
  348. llcp={'on-startup': llcp_startup,
  349. 'on-connect': llcp_connected},
  350. terminate=terminate_loop):
  351. break
  352. except Exception, e:
  353. print "clf.connect failed"
  354. global srv
  355. if only_one and srv and srv.success:
  356. raise SystemExit
  357. except KeyboardInterrupt:
  358. raise SystemExit
  359. finally:
  360. clf.close()
  361. raise SystemExit
  362. if __name__ == '__main__':
  363. main()