wps-nfc.py 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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 nfc
  14. import nfc.ndef
  15. import nfc.llcp
  16. import nfc.handover
  17. import logging
  18. logging.basicConfig()
  19. import wpactrl
  20. wpas_ctrl = '/var/run/wpa_supplicant'
  21. def wpas_connect():
  22. ifaces = []
  23. if os.path.isdir(wpas_ctrl):
  24. try:
  25. ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
  26. except OSError, error:
  27. print "Could not find wpa_supplicant: ", error
  28. return None
  29. if len(ifaces) < 1:
  30. print "No wpa_supplicant control interface found"
  31. return None
  32. for ctrl in ifaces:
  33. try:
  34. wpas = wpactrl.WPACtrl(ctrl)
  35. return wpas
  36. except wpactrl.error, error:
  37. print "Error: ", error
  38. pass
  39. return None
  40. def wpas_tag_read(message):
  41. wpas = wpas_connect()
  42. if (wpas == None):
  43. return
  44. print wpas.request("WPS_NFC_TAG_READ " + message.encode("hex"))
  45. def wpas_get_config_token():
  46. wpas = wpas_connect()
  47. if (wpas == None):
  48. return None
  49. return wpas.request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip().decode("hex")
  50. def wpas_get_password_token():
  51. wpas = wpas_connect()
  52. if (wpas == None):
  53. return None
  54. return wpas.request("WPS_NFC_TOKEN NDEF").rstrip().decode("hex")
  55. def wpas_get_handover_req():
  56. wpas = wpas_connect()
  57. if (wpas == None):
  58. return None
  59. return wpas.request("NFC_GET_HANDOVER_REQ NDEF WPS-CR").rstrip().decode("hex")
  60. def wpas_report_handover(req, sel):
  61. wpas = wpas_connect()
  62. if (wpas == None):
  63. return None
  64. return wpas.request("NFC_REPORT_HANDOVER INIT WPS " +
  65. str(req).encode("hex") + " " +
  66. str(sel).encode("hex"))
  67. def wps_handover_init(peer):
  68. print "Trying to initiate WPS handover"
  69. data = wpas_get_handover_req()
  70. if (data == None):
  71. print "Could not get handover request carrier record from wpa_supplicant"
  72. return
  73. print "Handover request carrier record from wpa_supplicant: " + data.encode("hex")
  74. record = nfc.ndef.Record()
  75. f = StringIO.StringIO(data)
  76. record._read(f)
  77. record = nfc.ndef.HandoverCarrierRecord(record)
  78. print "Parsed handover request carrier record:"
  79. print record.pretty()
  80. message = nfc.ndef.HandoverRequestMessage(version="1.2")
  81. message.nonce = random.randint(0, 0xffff)
  82. message.add_carrier(record, "active")
  83. print "Handover request:"
  84. print message.pretty()
  85. nfc.llcp.activate(peer);
  86. client = nfc.handover.HandoverClient()
  87. try:
  88. print "Trying handover";
  89. client.connect()
  90. print "Connected for handover"
  91. except nfc.llcp.ConnectRefused:
  92. print "Handover connection refused"
  93. nfc.llcp.shutdown()
  94. client.close()
  95. return
  96. print "Sending handover request"
  97. if not client.send(message):
  98. print "Failed to send handover request"
  99. print "Receiving handover response"
  100. message = client._recv()
  101. if message is None:
  102. print "No response received"
  103. nfc.llcp.shutdown()
  104. client.close()
  105. return
  106. if message.type != "urn:nfc:wkt:Hs":
  107. print "Response was not Hs - received: " + message.type
  108. nfc.llcp.shutdown()
  109. client.close()
  110. return
  111. print "Received message"
  112. print message.pretty()
  113. message = nfc.ndef.HandoverSelectMessage(message)
  114. print "Handover select received"
  115. print message.pretty()
  116. for carrier in message.carriers:
  117. print "Remote carrier type: " + carrier.type
  118. if carrier.type == "application/vnd.wfa.wsc":
  119. print "WPS carrier type match - send to wpa_supplicant"
  120. wpas_report_handover(data, carrier.record)
  121. wifi = nfc.ndef.WifiConfigRecord(carrier.record)
  122. print wifi.pretty()
  123. print "Remove peer"
  124. nfc.llcp.shutdown()
  125. client.close()
  126. print "Done with handover"
  127. def wps_tag_read(tag):
  128. if len(tag.ndef.message):
  129. message = nfc.ndef.Message(tag.ndef.message)
  130. print "message type " + message.type
  131. for record in message:
  132. print "record type " + record.type
  133. if record.type == "application/vnd.wfa.wsc":
  134. print "WPS tag - send to wpa_supplicant"
  135. wpas_tag_read(tag.ndef.message)
  136. break
  137. else:
  138. print "Empty tag"
  139. print "Remove tag"
  140. while tag.is_present:
  141. time.sleep(0.1)
  142. def wps_write_config_tag(clf):
  143. print "Write WPS config token"
  144. data = wpas_get_config_token()
  145. if (data == None):
  146. print "Could not get WPS config token from wpa_supplicant"
  147. return
  148. print "Touch an NFC tag"
  149. while True:
  150. tag = clf.poll()
  151. if tag == None:
  152. time.sleep(0.1)
  153. continue
  154. break
  155. print "Tag found - writing"
  156. tag.ndef.message = data
  157. print "Done - remove tag"
  158. while tag.is_present:
  159. time.sleep(0.1)
  160. def wps_write_password_tag(clf):
  161. print "Write WPS password token"
  162. data = wpas_get_password_token()
  163. if (data == None):
  164. print "Could not get WPS password token from wpa_supplicant"
  165. return
  166. print "Touch an NFC tag"
  167. while True:
  168. tag = clf.poll()
  169. if tag == None:
  170. time.sleep(0.1)
  171. continue
  172. break
  173. print "Tag found - writing"
  174. tag.ndef.message = data
  175. print "Done - remove tag"
  176. while tag.is_present:
  177. time.sleep(0.1)
  178. def find_peer(clf):
  179. while True:
  180. if nfc.llcp.connected():
  181. print "LLCP connected"
  182. general_bytes = nfc.llcp.startup({})
  183. peer = clf.listen(ord(os.urandom(1)) + 250, general_bytes)
  184. if isinstance(peer, nfc.DEP):
  185. print "listen -> DEP";
  186. if peer.general_bytes.startswith("Ffm"):
  187. print "Found DEP"
  188. return peer
  189. print "mismatch in general_bytes"
  190. print peer.general_bytes
  191. peer = clf.poll(general_bytes)
  192. if isinstance(peer, nfc.DEP):
  193. print "poll -> DEP";
  194. if peer.general_bytes.startswith("Ffm"):
  195. print "Found DEP"
  196. return peer
  197. print "mismatch in general_bytes"
  198. print peer.general_bytes
  199. if peer:
  200. print "Found tag"
  201. return peer
  202. def main():
  203. clf = nfc.ContactlessFrontend()
  204. try:
  205. if len(sys.argv) > 1 and sys.argv[1] == "write-config":
  206. wps_write_config_tag(clf)
  207. raise SystemExit
  208. if len(sys.argv) > 1 and sys.argv[1] == "write-password":
  209. wps_write_password_tag(clf)
  210. raise SystemExit
  211. while True:
  212. print "Waiting for a tag or peer to be touched"
  213. tag = find_peer(clf)
  214. if isinstance(tag, nfc.DEP):
  215. wps_handover_init(tag)
  216. continue
  217. if tag.ndef:
  218. wps_tag_read(tag)
  219. continue
  220. print "Not an NDEF tag - remove tag"
  221. while tag.is_present:
  222. time.sleep(0.1)
  223. except KeyboardInterrupt:
  224. raise SystemExit
  225. finally:
  226. clf.close()
  227. raise SystemExit
  228. if __name__ == '__main__':
  229. main()