wps-ap-nfc.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. #!/usr/bin/python
  2. #
  3. # Example nfcpy to hostapd 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 nfc
  12. import nfc.ndef
  13. import nfc.llcp
  14. import nfc.handover
  15. import wpactrl
  16. wpas_ctrl = '/var/run/hostapd'
  17. def wpas_connect():
  18. ifaces = []
  19. if os.path.isdir(wpas_ctrl):
  20. try:
  21. ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
  22. except OSError, error:
  23. print "Could not find hostapd: ", error
  24. return None
  25. if len(ifaces) < 1:
  26. print "No hostapd control interface found"
  27. return None
  28. for ctrl in ifaces:
  29. try:
  30. wpas = wpactrl.WPACtrl(ctrl)
  31. return wpas
  32. except wpactrl.error, error:
  33. print "Error: ", error
  34. pass
  35. return None
  36. def wpas_tag_read(message):
  37. wpas = wpas_connect()
  38. if (wpas == None):
  39. return
  40. print wpas.request("WPS_NFC_TAG_READ " + message.encode("hex"))
  41. def wpas_get_config_token():
  42. wpas = wpas_connect()
  43. if (wpas == None):
  44. return None
  45. return wpas.request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip().decode("hex")
  46. def wpas_get_password_token():
  47. wpas = wpas_connect()
  48. if (wpas == None):
  49. return None
  50. return wpas.request("WPS_NFC_TOKEN NDEF").rstrip().decode("hex")
  51. def wpas_get_handover_req():
  52. wpas = wpas_connect()
  53. if (wpas == None):
  54. return None
  55. return wpas.request("NFC_GET_HANDOVER_REQ NDEF WPS").rstrip().decode("hex")
  56. def wpas_put_handover_sel(message):
  57. wpas = wpas_connect()
  58. if (wpas == None):
  59. return
  60. print wpas.request("NFC_RX_HANDOVER_SEL " + str(message).encode("hex"))
  61. def wps_handover_init(peer):
  62. print "Trying to initiate WPS handover"
  63. data = wpas_get_handover_req()
  64. if (data == None):
  65. print "Could not get handover request message from hostapd"
  66. return
  67. print "Handover request from hostapd: " + data.encode("hex")
  68. message = nfc.ndef.Message(data)
  69. print "Parsed handover request: " + message.pretty()
  70. nfc.llcp.activate(peer);
  71. time.sleep(0.5)
  72. client = nfc.handover.HandoverClient()
  73. try:
  74. print "Trying handover";
  75. client.connect()
  76. print "Connected for handover"
  77. except nfc.llcp.ConnectRefused:
  78. print "Handover connection refused"
  79. nfc.llcp.shutdown()
  80. client.close()
  81. return
  82. print "Sending handover request"
  83. if not client.send(message):
  84. print "Failed to send handover request"
  85. print "Receiving handover response"
  86. message = client._recv()
  87. print "Handover select received"
  88. print message.pretty()
  89. wpas_put_handover_sel(message)
  90. print "Remove peer"
  91. nfc.llcp.shutdown()
  92. client.close()
  93. print "Done with handover"
  94. def wps_tag_read(tag):
  95. if len(tag.ndef.message):
  96. message = nfc.ndef.Message(tag.ndef.message)
  97. print "message type " + message.type
  98. for record in message:
  99. print "record type " + record.type
  100. if record.type == "application/vnd.wfa.wsc":
  101. print "WPS tag - send to hostapd"
  102. wpas_tag_read(tag.ndef.message)
  103. break
  104. else:
  105. print "Empty tag"
  106. print "Remove tag"
  107. while tag.is_present:
  108. time.sleep(0.1)
  109. def wps_write_config_tag(clf):
  110. print "Write WPS config token"
  111. data = wpas_get_config_token()
  112. if (data == None):
  113. print "Could not get WPS config token from hostapd"
  114. return
  115. print "Touch an NFC tag"
  116. while True:
  117. tag = clf.poll()
  118. if tag == None:
  119. time.sleep(0.1)
  120. continue
  121. break
  122. print "Tag found - writing"
  123. tag.ndef.message = data
  124. print "Done - remove tag"
  125. while tag.is_present:
  126. time.sleep(0.1)
  127. def wps_write_password_tag(clf):
  128. print "Write WPS password token"
  129. data = wpas_get_password_token()
  130. if (data == None):
  131. print "Could not get WPS password token from hostapd"
  132. return
  133. print "Touch an NFC tag"
  134. while True:
  135. tag = clf.poll()
  136. if tag == None:
  137. time.sleep(0.1)
  138. continue
  139. break
  140. print "Tag found - writing"
  141. tag.ndef.message = data
  142. print "Done - remove tag"
  143. while tag.is_present:
  144. time.sleep(0.1)
  145. def main():
  146. clf = nfc.ContactlessFrontend()
  147. try:
  148. if len(sys.argv) > 1 and sys.argv[1] == "write-config":
  149. wps_write_config_tag(clf)
  150. raise SystemExit
  151. if len(sys.argv) > 1 and sys.argv[1] == "write-password":
  152. wps_write_password_tag(clf)
  153. raise SystemExit
  154. while True:
  155. print "Waiting for a tag or peer to be touched"
  156. while True:
  157. general_bytes = nfc.llcp.startup({})
  158. tag = clf.poll(general_bytes)
  159. if tag == None:
  160. continue
  161. if isinstance(tag, nfc.DEP):
  162. wps_handover_init(tag)
  163. break
  164. if tag.ndef:
  165. wps_tag_read(tag)
  166. break
  167. if tag:
  168. print "Not an NDEF tag - remove tag"
  169. while tag.is_present:
  170. time.sleep(0.1)
  171. break
  172. except KeyboardInterrupt:
  173. raise SystemExit
  174. finally:
  175. clf.close()
  176. raise SystemExit
  177. if __name__ == '__main__':
  178. main()