2013-02-09 19:44:15 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# Example nfcpy to hostapd wrapper for WPS NFC operations
|
|
|
|
# Copyright (c) 2012-2013, Jouni Malinen <j@w1.fi>
|
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
import nfc
|
|
|
|
import nfc.ndef
|
|
|
|
import nfc.llcp
|
|
|
|
import nfc.handover
|
|
|
|
|
2013-02-10 15:20:25 +01:00
|
|
|
import logging
|
|
|
|
logging.basicConfig()
|
|
|
|
|
2013-03-16 20:47:10 +01:00
|
|
|
import wpaspy
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
wpas_ctrl = '/var/run/hostapd'
|
|
|
|
|
|
|
|
def wpas_connect():
|
|
|
|
ifaces = []
|
|
|
|
if os.path.isdir(wpas_ctrl):
|
|
|
|
try:
|
|
|
|
ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
|
|
|
|
except OSError, error:
|
|
|
|
print "Could not find hostapd: ", error
|
|
|
|
return None
|
|
|
|
|
|
|
|
if len(ifaces) < 1:
|
|
|
|
print "No hostapd control interface found"
|
|
|
|
return None
|
|
|
|
|
|
|
|
for ctrl in ifaces:
|
|
|
|
try:
|
2013-03-16 20:47:10 +01:00
|
|
|
wpas = wpaspy.Ctrl(ctrl)
|
2013-02-09 19:44:15 +01:00
|
|
|
return wpas
|
2013-03-16 20:47:10 +01:00
|
|
|
except Exception, e:
|
2013-02-09 19:44:15 +01:00
|
|
|
pass
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def wpas_tag_read(message):
|
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
|
|
|
return
|
|
|
|
print wpas.request("WPS_NFC_TAG_READ " + message.encode("hex"))
|
|
|
|
|
|
|
|
|
|
|
|
def wpas_get_config_token():
|
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
|
|
|
return None
|
|
|
|
return wpas.request("WPS_NFC_CONFIG_TOKEN NDEF").rstrip().decode("hex")
|
|
|
|
|
|
|
|
|
|
|
|
def wpas_get_password_token():
|
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
|
|
|
return None
|
|
|
|
return wpas.request("WPS_NFC_TOKEN NDEF").rstrip().decode("hex")
|
|
|
|
|
|
|
|
|
2013-02-10 16:14:11 +01:00
|
|
|
def wpas_get_handover_sel():
|
2013-02-09 19:44:15 +01:00
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
|
|
|
return None
|
2013-02-10 16:14:11 +01:00
|
|
|
return wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR").rstrip().decode("hex")
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
2013-02-11 17:43:46 +01:00
|
|
|
def wpas_report_handover(req, sel):
|
2013-02-09 19:44:15 +01:00
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
2013-02-11 17:43:46 +01:00
|
|
|
return None
|
|
|
|
return wpas.request("NFC_REPORT_HANDOVER RESP WPS " +
|
|
|
|
str(req).encode("hex") + " " +
|
|
|
|
str(sel).encode("hex"))
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
2013-02-10 16:14:11 +01:00
|
|
|
class HandoverServer(nfc.handover.HandoverServer):
|
|
|
|
def __init__(self):
|
|
|
|
super(HandoverServer, self).__init__()
|
2013-02-09 19:44:15 +01:00
|
|
|
|
2013-02-10 16:14:11 +01:00
|
|
|
def process_request(self, request):
|
|
|
|
print "HandoverServer - request received"
|
|
|
|
print "Parsed handover request: " + request.pretty()
|
|
|
|
|
|
|
|
sel = nfc.ndef.HandoverSelectMessage(version="1.2")
|
|
|
|
|
|
|
|
for carrier in request.carriers:
|
|
|
|
print "Remote carrier type: " + carrier.type
|
|
|
|
if carrier.type == "application/vnd.wfa.wsc":
|
|
|
|
print "WPS carrier type match - add WPS carrier record"
|
2013-02-11 17:43:46 +01:00
|
|
|
self.received_carrier = carrier.record
|
2013-02-10 16:14:11 +01:00
|
|
|
data = wpas_get_handover_sel()
|
|
|
|
if data is None:
|
|
|
|
print "Could not get handover select carrier record from hostapd"
|
|
|
|
continue
|
|
|
|
print "Handover select carrier record from hostapd:"
|
|
|
|
print data.encode("hex")
|
2013-02-11 17:43:46 +01:00
|
|
|
self.sent_carrier = data
|
2013-02-10 16:14:11 +01:00
|
|
|
|
|
|
|
message = nfc.ndef.Message(data);
|
|
|
|
sel.add_carrier(message[0], "active", message[1:])
|
|
|
|
|
|
|
|
print "Handover select:"
|
|
|
|
print sel.pretty()
|
|
|
|
print str(sel).encode("hex")
|
|
|
|
|
|
|
|
print "Sending handover select"
|
|
|
|
return sel
|
|
|
|
|
|
|
|
|
|
|
|
def wps_handover_resp(peer):
|
|
|
|
print "Trying to handle WPS handover"
|
|
|
|
|
|
|
|
srv = HandoverServer()
|
2013-02-24 12:12:32 +01:00
|
|
|
srv.sent_carrier = None
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
nfc.llcp.activate(peer);
|
|
|
|
|
|
|
|
try:
|
|
|
|
print "Trying handover";
|
2013-02-10 16:14:11 +01:00
|
|
|
srv.start()
|
|
|
|
print "Wait for disconnect"
|
|
|
|
while nfc.llcp.connected():
|
|
|
|
time.sleep(0.1)
|
|
|
|
print "Disconnected after handover"
|
2013-02-09 19:44:15 +01:00
|
|
|
except nfc.llcp.ConnectRefused:
|
|
|
|
print "Handover connection refused"
|
|
|
|
nfc.llcp.shutdown()
|
|
|
|
return
|
|
|
|
|
2013-02-11 17:43:46 +01:00
|
|
|
if srv.sent_carrier:
|
|
|
|
wpas_report_handover(srv.received_carrier, srv.sent_carrier)
|
|
|
|
|
2013-02-09 19:44:15 +01:00
|
|
|
print "Remove peer"
|
|
|
|
nfc.llcp.shutdown()
|
|
|
|
print "Done with handover"
|
|
|
|
|
|
|
|
|
|
|
|
def wps_tag_read(tag):
|
|
|
|
if len(tag.ndef.message):
|
|
|
|
message = nfc.ndef.Message(tag.ndef.message)
|
|
|
|
print "message type " + message.type
|
|
|
|
|
|
|
|
for record in message:
|
|
|
|
print "record type " + record.type
|
|
|
|
if record.type == "application/vnd.wfa.wsc":
|
|
|
|
print "WPS tag - send to hostapd"
|
|
|
|
wpas_tag_read(tag.ndef.message)
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
print "Empty tag"
|
|
|
|
|
|
|
|
print "Remove tag"
|
|
|
|
while tag.is_present:
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
|
|
|
|
def wps_write_config_tag(clf):
|
|
|
|
print "Write WPS config token"
|
|
|
|
data = wpas_get_config_token()
|
|
|
|
if (data == None):
|
|
|
|
print "Could not get WPS config token from hostapd"
|
|
|
|
return
|
|
|
|
|
|
|
|
print "Touch an NFC tag"
|
|
|
|
while True:
|
|
|
|
tag = clf.poll()
|
|
|
|
if tag == None:
|
|
|
|
time.sleep(0.1)
|
|
|
|
continue
|
|
|
|
break
|
|
|
|
|
|
|
|
print "Tag found - writing"
|
|
|
|
tag.ndef.message = data
|
|
|
|
print "Done - remove tag"
|
|
|
|
while tag.is_present:
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
|
|
|
|
def wps_write_password_tag(clf):
|
|
|
|
print "Write WPS password token"
|
|
|
|
data = wpas_get_password_token()
|
|
|
|
if (data == None):
|
|
|
|
print "Could not get WPS password token from hostapd"
|
|
|
|
return
|
|
|
|
|
|
|
|
print "Touch an NFC tag"
|
|
|
|
while True:
|
|
|
|
tag = clf.poll()
|
|
|
|
if tag == None:
|
|
|
|
time.sleep(0.1)
|
|
|
|
continue
|
|
|
|
break
|
|
|
|
|
|
|
|
print "Tag found - writing"
|
|
|
|
tag.ndef.message = data
|
|
|
|
print "Done - remove tag"
|
|
|
|
while tag.is_present:
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
|
2013-02-10 15:25:20 +01:00
|
|
|
def find_peer(clf):
|
|
|
|
while True:
|
|
|
|
if nfc.llcp.connected():
|
|
|
|
print "LLCP connected"
|
|
|
|
general_bytes = nfc.llcp.startup({})
|
2013-02-10 17:49:20 +01:00
|
|
|
peer = clf.listen(ord(os.urandom(1)) + 250, general_bytes)
|
2013-02-10 15:25:20 +01:00
|
|
|
if isinstance(peer, nfc.DEP):
|
|
|
|
print "listen -> DEP";
|
|
|
|
if peer.general_bytes.startswith("Ffm"):
|
|
|
|
print "Found DEP"
|
|
|
|
return peer
|
|
|
|
print "mismatch in general_bytes"
|
|
|
|
print peer.general_bytes
|
|
|
|
|
|
|
|
peer = clf.poll(general_bytes)
|
|
|
|
if isinstance(peer, nfc.DEP):
|
|
|
|
print "poll -> DEP";
|
|
|
|
if peer.general_bytes.startswith("Ffm"):
|
|
|
|
print "Found DEP"
|
|
|
|
return peer
|
|
|
|
print "mismatch in general_bytes"
|
|
|
|
print peer.general_bytes
|
|
|
|
|
|
|
|
if peer:
|
|
|
|
print "Found tag"
|
|
|
|
return peer
|
|
|
|
|
|
|
|
|
2013-02-09 19:44:15 +01:00
|
|
|
def main():
|
|
|
|
clf = nfc.ContactlessFrontend()
|
|
|
|
|
|
|
|
try:
|
|
|
|
if len(sys.argv) > 1 and sys.argv[1] == "write-config":
|
|
|
|
wps_write_config_tag(clf)
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
if len(sys.argv) > 1 and sys.argv[1] == "write-password":
|
|
|
|
wps_write_password_tag(clf)
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
while True:
|
|
|
|
print "Waiting for a tag or peer to be touched"
|
|
|
|
|
2013-02-10 15:25:20 +01:00
|
|
|
tag = find_peer(clf)
|
|
|
|
if isinstance(tag, nfc.DEP):
|
2013-02-10 16:14:11 +01:00
|
|
|
wps_handover_resp(tag)
|
2013-02-10 15:25:20 +01:00
|
|
|
continue
|
|
|
|
|
|
|
|
if tag.ndef:
|
|
|
|
wps_tag_read(tag)
|
|
|
|
continue
|
|
|
|
|
|
|
|
print "Not an NDEF tag - remove tag"
|
|
|
|
while tag.is_present:
|
|
|
|
time.sleep(0.1)
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
raise SystemExit
|
|
|
|
finally:
|
|
|
|
clf.close()
|
|
|
|
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|