wps-nfc.py 13 KB

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