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
|
2013-11-29 11:41:34 +01:00
|
|
|
import argparse
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
import nfc
|
|
|
|
import nfc.ndef
|
|
|
|
import nfc.llcp
|
|
|
|
import nfc.handover
|
|
|
|
|
2013-02-10 15:20:25 +01:00
|
|
|
import logging
|
|
|
|
|
2013-03-16 20:47:10 +01:00
|
|
|
import wpaspy
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
wpas_ctrl = '/var/run/hostapd'
|
2013-11-29 11:16:38 +01:00
|
|
|
continue_loop = True
|
2014-02-12 11:48:26 +01:00
|
|
|
summary_file = None
|
|
|
|
success_file = None
|
|
|
|
|
|
|
|
def summary(txt):
|
2019-01-24 08:45:42 +01:00
|
|
|
print(txt)
|
2014-02-12 11:48:26 +01:00
|
|
|
if summary_file:
|
|
|
|
with open(summary_file, 'a') as f:
|
|
|
|
f.write(txt + "\n")
|
|
|
|
|
|
|
|
def success_report(txt):
|
|
|
|
summary(txt)
|
|
|
|
if success_file:
|
|
|
|
with open(success_file, 'a') as f:
|
|
|
|
f.write(txt + "\n")
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
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)]
|
2019-01-24 08:45:41 +01:00
|
|
|
except OSError as error:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Could not find hostapd: ", error)
|
2013-02-09 19:44:15 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
if len(ifaces) < 1:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("No hostapd control interface found")
|
2013-02-09 19:44:15 +01:00
|
|
|
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
|
2019-01-24 08:45:41 +01:00
|
|
|
except Exception as e:
|
2013-02-09 19:44:15 +01:00
|
|
|
pass
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def wpas_tag_read(message):
|
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
2014-02-12 11:48:26 +01:00
|
|
|
return False
|
2013-11-29 11:16:38 +01:00
|
|
|
if "FAIL" in wpas.request("WPS_NFC_TAG_READ " + str(message).encode("hex")):
|
|
|
|
return False
|
|
|
|
return True
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
def wpas_get_config_token():
|
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
|
|
|
return None
|
2014-02-12 11:48:26 +01:00
|
|
|
ret = wpas.request("WPS_NFC_CONFIG_TOKEN NDEF")
|
|
|
|
if "FAIL" in ret:
|
|
|
|
return None
|
|
|
|
return ret.rstrip().decode("hex")
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
def wpas_get_password_token():
|
|
|
|
wpas = wpas_connect()
|
|
|
|
if (wpas == None):
|
|
|
|
return None
|
2014-02-12 11:48:26 +01:00
|
|
|
ret = wpas.request("WPS_NFC_TOKEN NDEF")
|
|
|
|
if "FAIL" in ret:
|
|
|
|
return None
|
|
|
|
return ret.rstrip().decode("hex")
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
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
|
2014-02-12 11:48:26 +01:00
|
|
|
ret = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR")
|
|
|
|
if "FAIL" in ret:
|
|
|
|
return None
|
|
|
|
return ret.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):
|
2013-11-29 11:16:38 +01:00
|
|
|
def __init__(self, llc):
|
|
|
|
super(HandoverServer, self).__init__(llc)
|
|
|
|
self.ho_server_processing = False
|
|
|
|
self.success = False
|
2013-02-09 19:44:15 +01:00
|
|
|
|
2014-02-13 15:14:04 +01:00
|
|
|
# override to avoid parser error in request/response.pretty() in nfcpy
|
|
|
|
# due to new WSC handover format
|
|
|
|
def _process_request(self, request):
|
|
|
|
summary("received handover request {}".format(request.type))
|
|
|
|
response = nfc.ndef.Message("\xd1\x02\x01Hs\x12")
|
|
|
|
if not request.type == 'urn:nfc:wkt:Hr':
|
|
|
|
summary("not a handover request")
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
request = nfc.ndef.HandoverRequestMessage(request)
|
|
|
|
except nfc.ndef.DecodeError as e:
|
|
|
|
summary("error decoding 'Hr' message: {}".format(e))
|
|
|
|
else:
|
|
|
|
response = self.process_request(request)
|
|
|
|
summary("send handover response {}".format(response.type))
|
|
|
|
return response
|
|
|
|
|
2013-02-10 16:14:11 +01:00
|
|
|
def process_request(self, request):
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("HandoverServer - request received")
|
2013-11-29 12:01:39 +01:00
|
|
|
try:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Parsed handover request: " + request.pretty())
|
2019-01-24 08:45:41 +01:00
|
|
|
except Exception as e:
|
2019-01-24 08:45:42 +01:00
|
|
|
print(e)
|
|
|
|
print(str(request).encode("hex"))
|
2013-02-10 16:14:11 +01:00
|
|
|
|
|
|
|
sel = nfc.ndef.HandoverSelectMessage(version="1.2")
|
|
|
|
|
|
|
|
for carrier in request.carriers:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Remote carrier type: " + carrier.type)
|
2013-02-10 16:14:11 +01:00
|
|
|
if carrier.type == "application/vnd.wfa.wsc":
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("WPS carrier type match - add WPS carrier record")
|
2013-02-10 16:14:11 +01:00
|
|
|
data = wpas_get_handover_sel()
|
|
|
|
if data is None:
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Could not get handover select carrier record from hostapd")
|
2013-02-10 16:14:11 +01:00
|
|
|
continue
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Handover select carrier record from hostapd:")
|
|
|
|
print(data.encode("hex"))
|
2014-02-12 11:48:26 +01:00
|
|
|
if "OK" in wpas_report_handover(carrier.record, data):
|
|
|
|
success_report("Handover reported successfully")
|
|
|
|
else:
|
|
|
|
summary("Handover report rejected")
|
2013-02-10 16:14:11 +01:00
|
|
|
|
|
|
|
message = nfc.ndef.Message(data);
|
|
|
|
sel.add_carrier(message[0], "active", message[1:])
|
|
|
|
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Handover select:")
|
2013-11-29 12:01:39 +01:00
|
|
|
try:
|
2019-01-24 08:45:42 +01:00
|
|
|
print(sel.pretty())
|
2019-01-24 08:45:41 +01:00
|
|
|
except Exception as e:
|
2019-01-24 08:45:42 +01:00
|
|
|
print(e)
|
|
|
|
print(str(sel).encode("hex"))
|
2013-02-10 16:14:11 +01:00
|
|
|
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Sending handover select")
|
2013-11-29 11:16:38 +01:00
|
|
|
self.success = True
|
2013-02-10 16:14:11 +01:00
|
|
|
return sel
|
|
|
|
|
|
|
|
|
2013-02-09 19:44:15 +01:00
|
|
|
def wps_tag_read(tag):
|
2013-11-29 11:16:38 +01:00
|
|
|
success = False
|
2013-02-09 19:44:15 +01:00
|
|
|
if len(tag.ndef.message):
|
2013-11-29 11:16:38 +01:00
|
|
|
for record in tag.ndef.message:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("record type " + record.type)
|
2013-02-09 19:44:15 +01:00
|
|
|
if record.type == "application/vnd.wfa.wsc":
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("WPS tag - send to hostapd")
|
2013-11-29 11:16:38 +01:00
|
|
|
success = wpas_tag_read(tag.ndef.message)
|
2013-02-09 19:44:15 +01:00
|
|
|
break
|
|
|
|
else:
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Empty tag")
|
|
|
|
|
|
|
|
if success:
|
|
|
|
success_report("Tag read succeeded")
|
2013-02-09 19:44:15 +01:00
|
|
|
|
2013-11-29 11:16:38 +01:00
|
|
|
return success
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
2013-11-29 11:16:38 +01:00
|
|
|
def rdwr_connected_write(tag):
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Tag found - writing - " + str(tag))
|
2013-11-29 11:16:38 +01:00
|
|
|
global write_data
|
|
|
|
tag.ndef.message = str(write_data)
|
2014-02-12 11:48:26 +01:00
|
|
|
success_report("Tag write succeeded")
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Done - remove tag")
|
2013-11-29 11:16:38 +01:00
|
|
|
global only_one
|
|
|
|
if only_one:
|
|
|
|
global continue_loop
|
|
|
|
continue_loop = False
|
|
|
|
global write_wait_remove
|
|
|
|
while write_wait_remove and tag.is_present:
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
2013-11-29 11:57:34 +01:00
|
|
|
def wps_write_config_tag(clf, wait_remove=True):
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Write WPS config token")
|
2013-11-29 11:16:38 +01:00
|
|
|
global write_data, write_wait_remove
|
2013-11-29 11:57:34 +01:00
|
|
|
write_wait_remove = wait_remove
|
2013-11-29 11:16:38 +01:00
|
|
|
write_data = wpas_get_config_token()
|
|
|
|
if write_data == None:
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Could not get WPS config token from hostapd")
|
2013-02-09 19:44:15 +01:00
|
|
|
return
|
|
|
|
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Touch an NFC tag")
|
2013-11-29 11:16:38 +01:00
|
|
|
clf.connect(rdwr={'on-connect': rdwr_connected_write})
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
|
2013-11-29 11:57:34 +01:00
|
|
|
def wps_write_password_tag(clf, wait_remove=True):
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Write WPS password token")
|
2013-11-29 11:16:38 +01:00
|
|
|
global write_data, write_wait_remove
|
2013-11-29 11:57:34 +01:00
|
|
|
write_wait_remove = wait_remove
|
2013-11-29 11:16:38 +01:00
|
|
|
write_data = wpas_get_password_token()
|
|
|
|
if write_data == None:
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Could not get WPS password token from hostapd")
|
2013-02-09 19:44:15 +01:00
|
|
|
return
|
|
|
|
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Touch an NFC tag")
|
2013-11-29 11:16:38 +01:00
|
|
|
clf.connect(rdwr={'on-connect': rdwr_connected_write})
|
|
|
|
|
|
|
|
|
|
|
|
def rdwr_connected(tag):
|
2013-11-29 11:57:34 +01:00
|
|
|
global only_one, no_wait
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Tag connected: " + str(tag))
|
2013-11-29 11:16:38 +01:00
|
|
|
|
|
|
|
if tag.ndef:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("NDEF tag: " + tag.type)
|
2013-11-29 11:16:38 +01:00
|
|
|
try:
|
2019-01-24 08:45:42 +01:00
|
|
|
print(tag.ndef.message.pretty())
|
2019-01-24 08:45:41 +01:00
|
|
|
except Exception as e:
|
2019-01-24 08:45:42 +01:00
|
|
|
print(e)
|
2013-11-29 11:16:38 +01:00
|
|
|
success = wps_tag_read(tag)
|
|
|
|
if only_one and success:
|
|
|
|
global continue_loop
|
|
|
|
continue_loop = False
|
|
|
|
else:
|
2014-02-12 11:48:26 +01:00
|
|
|
summary("Not an NDEF tag - remove tag")
|
|
|
|
return True
|
2013-02-09 19:44:15 +01:00
|
|
|
|
2013-11-29 11:16:38 +01:00
|
|
|
return not no_wait
|
|
|
|
|
2013-02-09 19:44:15 +01:00
|
|
|
|
2013-11-29 11:16:38 +01:00
|
|
|
def llcp_startup(clf, llc):
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Start LLCP server")
|
2013-11-29 11:16:38 +01:00
|
|
|
global srv
|
|
|
|
srv = HandoverServer(llc)
|
|
|
|
return llc
|
2013-02-09 19:44:15 +01:00
|
|
|
|
2013-11-29 11:16:38 +01:00
|
|
|
def llcp_connected(llc):
|
2019-01-24 08:45:42 +01:00
|
|
|
print("P2P LLCP connected")
|
2013-11-29 11:16:38 +01:00
|
|
|
global wait_connection
|
|
|
|
wait_connection = False
|
|
|
|
global srv
|
|
|
|
srv.start()
|
|
|
|
return True
|
2013-02-10 15:25:20 +01:00
|
|
|
|
|
|
|
|
2013-02-09 19:44:15 +01:00
|
|
|
def main():
|
|
|
|
clf = nfc.ContactlessFrontend()
|
|
|
|
|
2013-11-29 11:41:34 +01:00
|
|
|
parser = argparse.ArgumentParser(description='nfcpy to hostapd integration for WPS NFC operations')
|
2013-11-30 15:49:04 +01:00
|
|
|
parser.add_argument('-d', const=logging.DEBUG, default=logging.INFO,
|
|
|
|
action='store_const', dest='loglevel',
|
|
|
|
help='verbose debug output')
|
|
|
|
parser.add_argument('-q', const=logging.WARNING, action='store_const',
|
|
|
|
dest='loglevel', help='be quiet')
|
2013-11-29 11:41:34 +01:00
|
|
|
parser.add_argument('--only-one', '-1', action='store_true',
|
|
|
|
help='run only one operation and exit')
|
2013-11-29 11:57:34 +01:00
|
|
|
parser.add_argument('--no-wait', action='store_true',
|
|
|
|
help='do not wait for tag to be removed before exiting')
|
2014-02-12 11:48:26 +01:00
|
|
|
parser.add_argument('--summary',
|
|
|
|
help='summary file for writing status updates')
|
|
|
|
parser.add_argument('--success',
|
|
|
|
help='success file for writing success update')
|
2013-11-29 11:41:34 +01:00
|
|
|
parser.add_argument('command', choices=['write-config',
|
|
|
|
'write-password'],
|
|
|
|
nargs='?')
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
global only_one
|
|
|
|
only_one = args.only_one
|
|
|
|
|
2013-11-29 11:57:34 +01:00
|
|
|
global no_wait
|
|
|
|
no_wait = args.no_wait
|
|
|
|
|
2014-02-12 11:48:26 +01:00
|
|
|
if args.summary:
|
|
|
|
global summary_file
|
|
|
|
summary_file = args.summary
|
|
|
|
|
|
|
|
if args.success:
|
|
|
|
global success_file
|
|
|
|
success_file = args.success
|
|
|
|
|
2013-11-30 15:49:04 +01:00
|
|
|
logging.basicConfig(level=args.loglevel)
|
|
|
|
|
2013-02-09 19:44:15 +01:00
|
|
|
try:
|
2013-11-29 11:16:38 +01:00
|
|
|
if not clf.open("usb"):
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Could not open connection with an NFC device")
|
2013-11-29 11:16:38 +01:00
|
|
|
raise SystemExit
|
|
|
|
|
2013-11-29 11:41:34 +01:00
|
|
|
if args.command == "write-config":
|
2013-11-29 11:57:34 +01:00
|
|
|
wps_write_config_tag(clf, wait_remove=not args.no_wait)
|
2013-02-09 19:44:15 +01:00
|
|
|
raise SystemExit
|
|
|
|
|
2013-11-29 11:41:34 +01:00
|
|
|
if args.command == "write-password":
|
2013-11-29 11:57:34 +01:00
|
|
|
wps_write_password_tag(clf, wait_remove=not args.no_wait)
|
2013-02-09 19:44:15 +01:00
|
|
|
raise SystemExit
|
|
|
|
|
2013-11-29 11:16:38 +01:00
|
|
|
global continue_loop
|
|
|
|
while continue_loop:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("Waiting for a tag or peer to be touched")
|
2013-11-29 11:16:38 +01:00
|
|
|
wait_connection = True
|
|
|
|
try:
|
|
|
|
if not clf.connect(rdwr={'on-connect': rdwr_connected},
|
|
|
|
llcp={'on-startup': llcp_startup,
|
|
|
|
'on-connect': llcp_connected}):
|
|
|
|
break
|
2019-01-24 08:45:41 +01:00
|
|
|
except Exception as e:
|
2019-01-24 08:45:42 +01:00
|
|
|
print("clf.connect failed")
|
2013-11-29 11:16:38 +01:00
|
|
|
|
|
|
|
global srv
|
|
|
|
if only_one and srv and srv.success:
|
|
|
|
raise SystemExit
|
2013-02-09 19:44:15 +01:00
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
raise SystemExit
|
|
|
|
finally:
|
|
|
|
clf.close()
|
|
|
|
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|