1 local cmds = require('commands')
2 local getopt = require('getopt')
3 local lib14a = require('read14a')
5 example = "script run 14araw -x 6000F57b"
6 author = "Martin Holst Swende"
11 This is a script to allow raw 1444a commands to be sent and received.
14 -o do not connect - use this only if you previously used -p to stay connected
15 -r do not read response
16 -c calculate and append CRC
17 -p stay connected - dont inactivate the field
18 -x <payload> Data to send (NO SPACES!)
23 # 1. Connect and don't disconnect
25 # 2. Send mf auth, read response (nonce)
26 script run 14araw -o -x 6000F57b -p
30 # All three steps in one go:
31 script run 14araw -x 6000F57b
36 This script communicates with
37 /armsrc/iso14443a.c, specifically ReaderIso14443a() at around line 1779 and onwards.
39 Check there for details about data format and how commands are interpreted on the
44 local TIMEOUT = 2000 -- Shouldn't take longer than 2 seconds
45 local DEBUG = false -- the debug flag
47 -------------------------------
49 -------------------------------
52 -- A debug printout-function
59 -- This is only meant to be used when errors occur
69 print("Example usage")
74 -- The main entry point
77 if args == nil or #args == 0 then
81 local ignore_response = false
82 local appendcrc = false
83 local stayconnected = false
85 local doconnect = true
87 -- Read the parameters
88 for o, a in getopt.getopt(args, 'corcpx:') do
89 if o == "o" then doconnect = false end
90 if o == "r" then ignore_response = true end
91 if o == "c" then appendcrc = true end
92 if o == "p" then stayconnected = true end
93 if o == "x" then payload = a end
94 if o == "d" then DEBUG = true end
97 -- First of all, connect
100 -- We reuse the connect functionality from a
102 info, err = lib14a.read1443a(true)
104 if err then return oops(err) end
105 print(("Connected to card, uid = %s"):format(info.uid))
108 -- The actual raw payload, if any
110 res,err = sendRaw(payload,{ignore_response = ignore_response})
111 if err then return oops(err) end
113 if not ignoreresponse then
114 -- Display the returned data
118 -- And, perhaps disconnect?
119 if not stayconnected then
124 --- Picks out and displays the data read from a tag
125 -- Specifically, takes a usb packet, converts to a Command
126 -- (as in commands.lua), takes the data-array and
127 -- reads the number of bytes specified in arg1 (arg0 in c-struct)
128 -- and displays the data
129 -- @param usbpacket the data received from the device
130 function showdata(usbpacket)
131 local cmd_response = Command.parse(usbpacket)
132 local len = tonumber(cmd_response.arg1) *2
133 --print("data length:",len)
134 local data = string.sub(tostring(cmd_response.data), 0, len);
136 --print("----------------")
141 function sendRaw(rawdata, options)
142 print(">> ", rawdata)
144 local flags = lib14a.ISO14A_COMMAND.ISO14A_NO_DISCONNECT + lib14a.ISO14A_COMMAND.ISO14A_RAW
146 local command = Command:new{cmd = cmds.CMD_READER_ISO_14443a,
147 arg1 = flags, -- Send raw
148 -- arg2 contains the length, which is half the length
149 -- of the ASCII-string rawdata
150 arg2 = string.len(rawdata)/2,
152 return lib14a.sendToDevice(command, options.ignore_response)
155 -- Sends an instruction to do nothing, only disconnect
156 function disconnect()
158 local command = Command:new{cmd = cmds.CMD_READER_ISO_14443a,
161 -- We can ignore the response here, no ACK is returned for this command
162 -- Check /armsrc/iso14443a.c, ReaderIso14443a() for details
163 return lib14a.sendToDevice(command,true)
167 -------------------------
169 -------------------------
172 dbg("Performing test")
175 main(" -o -x 6000F57b -p")
180 -- Flip the switch here to perform a sanity check.
181 -- It read a nonce in two different ways, as specified in the usage-section
182 if "--test"==args then