1 local cmds = require('commands')
2 local getopt = require('getopt')
3 local lib14b = require('read14b')
4 local utils = require('utils')
5 local iso7816 = require('7816_error')
7 example = "script runs 14b raw commands to query a CAPLYPSO tag"
8 author = "Iceman, 2016"
11 This is a script to communicate with a CALYSPO / 14443b tag using the '14b raw' commands
16 script run f -b 11223344
21 # 1. Connect and don't disconnect
23 # 2. Send mf auth, read response
31 This script communicates with /armsrc/iso14443b.c,
32 Check there for details about data format and how commands are interpreted on the
38 local function calypso_switch_on_field()
39 local flags = lib14b.ISO14B_COMMAND.ISO14B_CONNECT
40 local c = Command:new{cmd = cmds.CMD_ISO_14443B_COMMAND, arg1 = flags}
41 return lib14b.sendToDevice(c, true)
44 -- Disconnect (poweroff) the antenna forcing a disconnect of a 14b tag.
45 local function calypso_switch_off_field()
46 local flags = lib14b.ISO14B_COMMAND.ISO14B_DISCONNECT
47 local c = Command:new{cmd = cmds.CMD_ISO_14443B_COMMAND, arg1 = flags}
48 return lib14b.sendToDevice(c, true)
51 local function calypso_parse(result)
52 local r = Command.parse(result)
53 local len = r.arg2 * 2
54 r.data = string.sub(r.data, 0, len);
62 -- A debug printout-function
63 local function dbg(args)
69 -- This is only meant to be used when errors occur
70 local function oops(err)
72 calypso_switch_off_field()
79 print("Example usage")
83 -- helper function, give current count of items in lua-table.
84 local function tablelen(T)
86 for _ in pairs(T) do count = count + 1 end
90 -- helper function, gives a sorted table from table t,
91 -- order can be a seperate sorting-order function.
92 local function spairs(t, order)
95 for k in pairs(t) do keys[#keys+1] = k end
97 -- if order function given, sort by it by passing the table and keys a, b,
98 -- otherwise just sort the keys
100 table.sort(keys, function(a,b) return order(t, a, b) end)
105 -- return the iterator function
110 return keys[i], t[keys[i]]
115 -- Sends a usbpackage , "hf 14b raw"
116 -- if it reads the response, it converts it to a lua object "Command" first and the Data is cut to correct length.
117 local function calypso_send_cmd_raw(data, ignoreresponse )
119 local command, flags, result, err
120 flags = lib14b.ISO14B_COMMAND.ISO14B_RAW +
121 lib14b.ISO14B_COMMAND.ISO14B_APPEND_CRC
125 command = Command:new{cmd = cmds.CMD_ISO_14443B_COMMAND,
127 arg2 = #data/2, -- LEN of data, half the length of the ASCII-string hex string
129 data = data} -- data bytes (commands etc)
130 result, err = lib14b.sendToDevice(command, false)
132 if ignoreresponse then return response, err end
135 local r = calypso_parse(result)
141 -- calypso_card_num : Reads card number from ATR and
142 -- writes it in the tree in decimal format.
143 local function calypso_card_num(card)
144 if not card then return end
145 local card_num = tonumber( card.uid:sub(1,8),16 )
146 print('Card UID', card.uid)
147 print('Card Number', card_num)
150 -- analyse CALYPSO apdu status bytes.
151 local function calypso_apdu_status(apdu)
153 -- next two is APDU status bytes.
156 local sw = apdu:sub( #apdu-7, #apdu-4)
157 desc, err = iso7816.tostring(sw)
158 print ('SW', sw, desc, err )
160 status = ( sw == '9000' )
165 local _calypso_cmds = {
166 ["01.Select ICC file"] = '0294 a4 00 0002 3f00',
167 --["01.Select ICC file"] = '0294 a4 080004 3f00 0002',
168 ["02.ICC"] = '0294 b2 01 041d',
169 ["03.Select EnvHol file"] = '0294 a4 080004 2000 2001',
170 ["04.EnvHol1"] = '0294 b2 01 041d',
171 ["05.Select EvLog file"] = '0294 a4 080004 2000 2010',
172 ["06.EvLog1"] = '0294 b2 01 041d',
173 ["07.EvLog2"] = '0294 b2 02 041d',
174 ["08.EvLog3"] = '0294 b2 03 041d',
175 ["09.Select ConList file"] ='0294 a4 080004 2000 2050',
176 ["10.ConList"] = '0294 b2 01 041d',
177 ["11.Select Contra file"] = '0294 a4 080004 2000 2020',
178 ["12.Contra1"] = '0294 b2 01 041d',
179 ["13.Contra2"] = '0294 b2 02 041d',
180 ["14.Contra3"] = '0294 b2 03 041d',
181 ["15.Contra4"] = '0294 b2 04 041d',
182 ["16.Select Counter file"]= '0294 a4 080004 2000 2069',
183 ["17.Counter"] = '0294 b2 01 041d',
184 ["18.Select SpecEv file"]= '0294 a4 080004 2000 2040',
185 ["19.SpecEv1"] = '0294 b2 01 041d',
189 -- The main entry point
192 local data, apdu, flags, uid, cid, result, err, card
193 -- Read the parameters
194 for o, a in getopt.getopt(args, 'h') do
195 if o == "h" then return help() end
198 calypso_switch_on_field()
201 card, err = lib14b.waitFor14443b()
202 if not card then return oops(err) end
204 calypso_card_num(card)
218 apdu = '0a 00 94 a4 08 00 04 3f 00 00 02' --select ICC file
222 --result, err = calypso_send_cmd_raw('0294a40800043f000002',false) --select ICC file
223 for i, apdu in spairs(_calypso_cmds) do
225 apdu = apdu:gsub("%s+","")
226 result, err = calypso_send_cmd_raw(apdu , false)
228 calypso_apdu_status(result.data)
229 print('<<', result.data )
231 print('<< no answer')
234 calypso_switch_off_field()
237 -- a simple selftest function, tries to convert
240 dbg("Performing test")
243 -- Flip the switch here to perform a sanity check.
244 -- It read a nonce in two different ways, as specified in the usage-section
245 if "--test"==args then