wps-nfc.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 nfc
  12. import nfc.ndef
  13. import nfc.llcp
  14. import nfc.handover
  15. import logging
  16. logging.basicConfig()
  17. import wpactrl
  18. wpas_ctrl = '/var/run/wpa_supplicant'
  19. def wpas_connect():
  20. ifaces = []
  21. if os.path.isdir(wpas_ctrl):
  22. try:
  23. ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
  24. except OSError, error:
  25. print "Could not find wpa_supplicant: ", error
  26. return None
  27. if len(ifaces) < 1:
  28. print "No wpa_supplicant control interface found"
  29. return None
  30. for ctrl in ifaces:
  31. try:
  32. wpas = wpactrl.WPACtrl(ctrl)
  33. return wpas
  34. except wpactrl.error, error:
  35. print "Error: ", error
  36. pass
  37. return None
  38. def wpas_tag_read(message):
  39. wpas = wpas_connect()
  40. if (wpas == None):
  41. return
  42. print wpas.request("WPS_NFC_TAG_READ " + message.encode("hex"))
  43. def wpas_get_handover_req():
  44. wpas = wpas_connect()
  45. if (wpas == None):
  46. return None
  47. return wpas.request("NFC_GET_HANDOVER_REQ NDEF WPS").rstrip().decode("hex")
  48. def wpas_put_handover_sel(message):
  49. wpas = wpas_connect()
  50. if (wpas == None):
  51. return
  52. print wpas.request("NFC_RX_HANDOVER_SEL " + str(message).encode("hex"))
  53. def wps_handover_init(peer):
  54. print "Trying to initiate WPS handover"
  55. data = wpas_get_handover_req()
  56. if (data == None):
  57. print "Could not get handover request message from wpa_supplicant"
  58. return
  59. print "Handover request from wpa_supplicant: " + data.encode("hex")
  60. message = nfc.ndef.Message(data)
  61. print "Parsed handover request: " + message.pretty()
  62. nfc.llcp.activate(peer);
  63. client = nfc.handover.HandoverClient()
  64. try:
  65. print "Trying handover";
  66. client.connect()
  67. print "Connected for handover"
  68. except nfc.llcp.ConnectRefused:
  69. print "Handover connection refused"
  70. nfc.llcp.shutdown()
  71. client.close()
  72. return
  73. print "Sending handover request"
  74. if not client.send(message):
  75. print "Failed to send handover request"
  76. print "Receiving handover response"
  77. message = client._recv()
  78. print "Handover select received"
  79. print message.pretty()
  80. wpas_put_handover_sel(message)
  81. print "Remove peer"
  82. nfc.llcp.shutdown()
  83. client.close()
  84. print "Done with handover"
  85. def wps_tag_read(tag):
  86. if len(tag.ndef.message):
  87. message = nfc.ndef.Message(tag.ndef.message)
  88. print "message type " + message.type
  89. for record in message:
  90. print "record type " + record.type
  91. if record.type == "application/vnd.wfa.wsc":
  92. print "WPS tag - send to wpa_supplicant"
  93. wpas_tag_read(tag.ndef.message)
  94. break
  95. else:
  96. print "Empty tag"
  97. print "Remove tag"
  98. while tag.is_present:
  99. time.sleep(0.1)
  100. def find_peer(clf):
  101. while True:
  102. if nfc.llcp.connected():
  103. print "LLCP connected"
  104. general_bytes = nfc.llcp.startup({})
  105. peer = clf.listen(ord(os.urandom(1)) + 200, general_bytes)
  106. if isinstance(peer, nfc.DEP):
  107. print "listen -> DEP";
  108. if peer.general_bytes.startswith("Ffm"):
  109. print "Found DEP"
  110. return peer
  111. print "mismatch in general_bytes"
  112. print peer.general_bytes
  113. peer = clf.poll(general_bytes)
  114. if isinstance(peer, nfc.DEP):
  115. print "poll -> DEP";
  116. if peer.general_bytes.startswith("Ffm"):
  117. print "Found DEP"
  118. return peer
  119. print "mismatch in general_bytes"
  120. print peer.general_bytes
  121. if peer:
  122. print "Found tag"
  123. return peer
  124. def main():
  125. clf = nfc.ContactlessFrontend()
  126. try:
  127. while True:
  128. print "Waiting for a tag or peer to be touched"
  129. tag = find_peer(clf)
  130. if isinstance(tag, nfc.DEP):
  131. wps_handover_init(tag)
  132. continue
  133. if tag.ndef:
  134. wps_tag_read(tag)
  135. continue
  136. print "Not an NDEF tag - remove tag"
  137. while tag.is_present:
  138. time.sleep(0.1)
  139. except KeyboardInterrupt:
  140. raise SystemExit
  141. finally:
  142. clf.close()
  143. raise SystemExit
  144. if __name__ == '__main__':
  145. main()