]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhf14a.c
export apdu function
[proxmark3-svn] / client / cmdhf14a.c
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
f89c7050 2// 2011, Merlok
534983d7 3// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>, Hagen Fritsch
a553f267 4//
5// This code is licensed to you under the terms of the GNU GPL, version 2 or,
6// at your option, any later version. See the LICENSE.txt file for the text of
7// the license.
8//-----------------------------------------------------------------------------
9// High frequency ISO14443A commands
10//-----------------------------------------------------------------------------
11
7fe9b0b7 12#include "cmdhf14a.h"
13
14static int CmdHelp(const char *Cmd);
f1a983a3 15static int waitCmd(uint8_t iLen);
7fe9b0b7 16
52ab55ab 17// structure and database for uid -> tagtype lookups
18typedef struct {
19 uint8_t uid;
20 char* desc;
21} manufactureName;
22
23const manufactureName manufactureMapping[] = {
24 // ID, "Vendor Country"
25 { 0x01, "Motorola UK" },
26 { 0x02, "ST Microelectronics SA France" },
27 { 0x03, "Hitachi, Ltd Japan" },
28 { 0x04, "NXP Semiconductors Germany" },
29 { 0x05, "Infineon Technologies AG Germany" },
30 { 0x06, "Cylink USA" },
31 { 0x07, "Texas Instrument France" },
32 { 0x08, "Fujitsu Limited Japan" },
33 { 0x09, "Matsushita Electronics Corporation, Semiconductor Company Japan" },
34 { 0x0A, "NEC Japan" },
35 { 0x0B, "Oki Electric Industry Co. Ltd Japan" },
36 { 0x0C, "Toshiba Corp. Japan" },
37 { 0x0D, "Mitsubishi Electric Corp. Japan" },
38 { 0x0E, "Samsung Electronics Co. Ltd Korea" },
39 { 0x0F, "Hynix / Hyundai, Korea" },
40 { 0x10, "LG-Semiconductors Co. Ltd Korea" },
41 { 0x11, "Emosyn-EM Microelectronics USA" },
42 { 0x12, "INSIDE Technology France" },
43 { 0x13, "ORGA Kartensysteme GmbH Germany" },
44 { 0x14, "SHARP Corporation Japan" },
45 { 0x15, "ATMEL France" },
46 { 0x16, "EM Microelectronic-Marin SA Switzerland" },
47 { 0x17, "KSW Microtec GmbH Germany" },
48 { 0x18, "ZMD AG Germany" },
49 { 0x19, "XICOR, Inc. USA" },
50 { 0x1A, "Sony Corporation Japan Identifier Company Country" },
51 { 0x1B, "Malaysia Microelectronic Solutions Sdn. Bhd Malaysia" },
52 { 0x1C, "Emosyn USA" },
53 { 0x1D, "Shanghai Fudan Microelectronics Co. Ltd. P.R. China" },
54 { 0x1E, "Magellan Technology Pty Limited Australia" },
55 { 0x1F, "Melexis NV BO Switzerland" },
56 { 0x20, "Renesas Technology Corp. Japan" },
57 { 0x21, "TAGSYS France" },
58 { 0x22, "Transcore USA" },
59 { 0x23, "Shanghai belling corp., ltd. China" },
60 { 0x24, "Masktech Germany Gmbh Germany" },
61 { 0x25, "Innovision Research and Technology Plc UK" },
62 { 0x26, "Hitachi ULSI Systems Co., Ltd. Japan" },
63 { 0x27, "Cypak AB Sweden" },
64 { 0x28, "Ricoh Japan" },
65 { 0x29, "ASK France" },
66 { 0x2A, "Unicore Microsystems, LLC Russian Federation" },
67 { 0x2B, "Dallas Semiconductor/Maxim USA" },
68 { 0x2C, "Impinj, Inc. USA" },
69 { 0x2D, "RightPlug Alliance USA" },
70 { 0x2E, "Broadcom Corporation USA" },
71 { 0x2F, "MStar Semiconductor, Inc Taiwan, ROC" },
72 { 0x30, "BeeDar Technology Inc. USA" },
73 { 0x31, "RFIDsec Denmark" },
74 { 0x32, "Schweizer Electronic AG Germany" },
75 { 0x33, "AMIC Technology Corp Taiwan" },
76 { 0x34, "Mikron JSC Russia" },
77 { 0x35, "Fraunhofer Institute for Photonic Microsystems Germany" },
78 { 0x36, "IDS Microchip AG Switzerland" },
79 { 0x37, "Kovio USA" },
80 { 0x38, "HMT Microelectronic Ltd Switzerland Identifier Company Country" },
81 { 0x39, "Silicon Craft Technology Thailand" },
82 { 0x3A, "Advanced Film Device Inc. Japan" },
83 { 0x3B, "Nitecrest Ltd UK" },
84 { 0x3C, "Verayo Inc. USA" },
85 { 0x3D, "HID Global USA" },
86 { 0x3E, "Productivity Engineering Gmbh Germany" },
87 { 0x3F, "Austriamicrosystems AG (reserved) Austria" },
88 { 0x40, "Gemalto SA France" },
89 { 0x41, "Renesas Electronics Corporation Japan" },
90 { 0x42, "3Alogics Inc Korea" },
91 { 0x43, "Top TroniQ Asia Limited Hong Kong" },
92 { 0x44, "Gentag Inc (USA) USA" },
93 { 0x00, "no tag-info available" } // must be the last entry
94};
95
96
97// get a product description based on the UID
98// uid[8] tag uid
99// returns description of the best match
b915fda3 100char* getTagInfo(uint8_t uid) {
52ab55ab 101
68033ed7 102 int i;
52ab55ab 103 int len = sizeof(manufactureMapping) / sizeof(manufactureName);
104
68033ed7
MHS
105 for ( i = 0; i < len; ++i )
106 if ( uid == manufactureMapping[i].uid)
107 return manufactureMapping[i].desc;
52ab55ab 108
68033ed7
MHS
109 //No match, return default
110 return manufactureMapping[len-1].desc;
52ab55ab 111}
112
7fe9b0b7 113int CmdHF14AList(const char *Cmd)
114{
4c3de57a 115 PrintAndLog("Deprecated command, use 'hf list 14a' instead");
f89c7050 116 return 0;
7fe9b0b7 117}
118
7fe9b0b7 119int CmdHF14AReader(const char *Cmd)
120{
19d6d91f 121 UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT | ISO14A_NO_DISCONNECT, 0, 0}};
534983d7 122 SendCommand(&c);
902cb3c0 123
124 UsbCommand resp;
7bc95e2e 125 WaitForResponse(CMD_ACK,&resp);
902cb3c0 126
19d6d91f 127 iso14a_card_select_t card;
128 memcpy(&card, (iso14a_card_select_t *)resp.d.asBytes, sizeof(iso14a_card_select_t));
534983d7 129
ee1eadee 130 uint64_t select_status = resp.arg[0]; // 0: couldn't read, 1: OK, with ATS, 2: OK, no ATS, 3: proprietary Anticollision
19d6d91f 131
132 if(select_status == 0) {
6ce0e538 133 if (Cmd[0] != 's') PrintAndLog("iso14443a card select failed");
52bfb955 134 // disconnect
135 c.arg[0] = 0;
136 c.arg[1] = 0;
137 c.arg[2] = 0;
138 SendCommand(&c);
534983d7 139 return 0;
140 }
141
ee1eadee 142 if(select_status == 3) {
143 PrintAndLog("Card doesn't support standard iso14443-3 anticollision");
144 PrintAndLog("ATQA : %02x %02x", card.atqa[1], card.atqa[0]);
145 // disconnect
146 c.arg[0] = 0;
147 c.arg[1] = 0;
148 c.arg[2] = 0;
149 SendCommand(&c);
150 return 0;
151 }
152
19d6d91f 153 PrintAndLog(" UID : %s", sprint_hex(card.uid, card.uidlen));
4745afb6 154 PrintAndLog("ATQA : %02x %02x", card.atqa[1], card.atqa[0]);
19d6d91f 155 PrintAndLog(" SAK : %02x [%d]", card.sak, resp.arg[0]);
713e7ffb 156
19d6d91f 157 switch (card.sak) {
4745afb6 158 case 0x00:
8ceb6b03 159
160 //***************************************test****************
161 // disconnect
162 c.arg[0] = 0;
163 c.arg[1] = 0;
164 c.arg[2] = 0;
165 SendCommand(&c);
166
c7442b76 167 uint32_t tagT = GetHF14AMfU_Type();
8ceb6b03 168 ul_print_type(tagT, 0);
169
170 //reconnect for further tests
171 c.arg[0] = ISO14A_CONNECT | ISO14A_NO_DISCONNECT;
172 c.arg[1] = 0;
173 c.arg[2] = 0;
174
175 SendCommand(&c);
176
177 UsbCommand resp;
178 WaitForResponse(CMD_ACK,&resp);
179
180 memcpy(&card, (iso14a_card_select_t *)resp.d.asBytes, sizeof(iso14a_card_select_t));
181
182 select_status = resp.arg[0]; // 0: couldn't read, 1: OK, with ATS, 2: OK, no ATS
183
184 if(select_status == 0) {
185 //PrintAndLog("iso14443a card select failed");
186 // disconnect
187 c.arg[0] = 0;
188 c.arg[1] = 0;
189 c.arg[2] = 0;
190 SendCommand(&c);
191 return 0;
192 }
193
194 /* orig
4745afb6 195 // check if the tag answers to GETVERSION (0x60)
196 c.arg[0] = ISO14A_RAW | ISO14A_APPEND_CRC | ISO14A_NO_DISCONNECT;
197 c.arg[1] = 1;
198 c.arg[2] = 0;
199 c.d.asBytes[0] = 0x60;
200 SendCommand(&c);
201 WaitForResponse(CMD_ACK,&resp);
202
4b360379
MHS
203 uint8_t version[10] = {0};
204 memcpy(version, resp.d.asBytes, resp.arg[0] < sizeof(version) ? resp.arg[0] : sizeof(version));
4745afb6 205 uint8_t len = resp.arg[0] & 0xff;
206 switch ( len ){
207 // todo, identify "Magic UL-C tags". // they usually have a static nonce response to 0x1A command.
208 // UL-EV1, size, check version[6] == 0x0b (smaller) 0x0b * 4 == 48
209 case 0x0A:PrintAndLog("TYPE : NXP MIFARE Ultralight EV1 %d bytes", (version[6] == 0xB) ? 48 : 128);break;
210 case 0x01:PrintAndLog("TYPE : NXP MIFARE Ultralight C");break;
211 case 0x00:PrintAndLog("TYPE : NXP MIFARE Ultralight");break;
212 }
8ceb6b03 213 */
4745afb6 214 break;
3fe4ff4f 215 case 0x01: PrintAndLog("TYPE : NXP TNP3xxx Activision Game Appliance"); break;
79a73ab2 216 case 0x04: PrintAndLog("TYPE : NXP MIFARE (various !DESFire !DESFire EV1)"); break;
e691fc45 217 case 0x08: PrintAndLog("TYPE : NXP MIFARE CLASSIC 1k | Plus 2k SL1"); break;
79a73ab2 218 case 0x09: PrintAndLog("TYPE : NXP MIFARE Mini 0.3k"); break;
e691fc45 219 case 0x10: PrintAndLog("TYPE : NXP MIFARE Plus 2k SL2"); break;
220 case 0x11: PrintAndLog("TYPE : NXP MIFARE Plus 4k SL2"); break;
221 case 0x18: PrintAndLog("TYPE : NXP MIFARE Classic 4k | Plus 4k SL1"); break;
222 case 0x20: PrintAndLog("TYPE : NXP MIFARE DESFire 4k | DESFire EV1 2k/4k/8k | Plus 2k/4k SL3 | JCOP 31/41"); break;
79a73ab2 223 case 0x24: PrintAndLog("TYPE : NXP MIFARE DESFire | DESFire EV1"); break;
224 case 0x28: PrintAndLog("TYPE : JCOP31 or JCOP41 v2.3.1"); break;
225 case 0x38: PrintAndLog("TYPE : Nokia 6212 or 6131 MIFARE CLASSIC 4K"); break;
226 case 0x88: PrintAndLog("TYPE : Infineon MIFARE CLASSIC 1K"); break;
227 case 0x98: PrintAndLog("TYPE : Gemplus MPCOS"); break;
9ca155ba
M
228 default: ;
229 }
19d6d91f 230
4745afb6 231 // Double & triple sized UID, can be mapped to a manufacturer.
232 // HACK: does this apply for Ultralight cards?
233 if ( card.uidlen > 4 ) {
234 PrintAndLog("MANUFACTURER : %s", getTagInfo(card.uid[0]));
235 }
236
19d6d91f 237 // try to request ATS even if tag claims not to support it
238 if (select_status == 2) {
239 uint8_t rats[] = { 0xE0, 0x80 }; // FSDI=8 (FSD=256), CID=0
240 c.arg[0] = ISO14A_RAW | ISO14A_APPEND_CRC | ISO14A_NO_DISCONNECT;
241 c.arg[1] = 2;
242 c.arg[2] = 0;
243 memcpy(c.d.asBytes, rats, 2);
244 SendCommand(&c);
245 WaitForResponse(CMD_ACK,&resp);
246
4b360379 247 memcpy(card.ats, resp.d.asBytes, resp.arg[0]);
9a573554 248 card.ats_len = resp.arg[0]; // note: ats_len includes CRC Bytes
19d6d91f 249 }
250
9a573554 251 if(card.ats_len >= 3) { // a valid ATS consists of at least the length byte (TL) and 2 CRC bytes
561f7c11 252 bool ta1 = 0, tb1 = 0, tc1 = 0;
253 int pos;
254
9a573554 255 if (select_status == 2) {
19d6d91f 256 PrintAndLog("SAK incorrectly claims that card doesn't support RATS");
257 }
258 PrintAndLog(" ATS : %s", sprint_hex(card.ats, card.ats_len));
9a573554 259 PrintAndLog(" - TL : length is %d bytes", card.ats[0]);
260 if (card.ats[0] != card.ats_len - 2) {
261 PrintAndLog("ATS may be corrupted. Length of ATS (%d bytes incl. 2 Bytes CRC) doesn't match TL", card.ats_len);
561f7c11 262 }
9a573554 263
264 if (card.ats[0] > 1) { // there is a format byte (T0)
19d6d91f 265 ta1 = (card.ats[1] & 0x10) == 0x10;
266 tb1 = (card.ats[1] & 0x20) == 0x20;
267 tc1 = (card.ats[1] & 0x40) == 0x40;
9a573554 268 int16_t fsci = card.ats[1] & 0x0f;
561f7c11 269 PrintAndLog(" - T0 : TA1 is%s present, TB1 is%s present, "
9a573554 270 "TC1 is%s present, FSCI is %d (FSC = %ld)",
561f7c11 271 (ta1 ? "" : " NOT"), (tb1 ? "" : " NOT"), (tc1 ? "" : " NOT"),
9a573554 272 fsci,
273 fsci < 5 ? (fsci - 2) * 8 :
274 fsci < 8 ? (fsci - 3) * 32 :
275 fsci == 8 ? 256 :
276 -1
277 );
561f7c11 278 }
279 pos = 2;
9a573554 280 if (ta1) {
561f7c11 281 char dr[16], ds[16];
282 dr[0] = ds[0] = '\0';
19d6d91f 283 if (card.ats[pos] & 0x10) strcat(ds, "2, ");
284 if (card.ats[pos] & 0x20) strcat(ds, "4, ");
285 if (card.ats[pos] & 0x40) strcat(ds, "8, ");
286 if (card.ats[pos] & 0x01) strcat(dr, "2, ");
287 if (card.ats[pos] & 0x02) strcat(dr, "4, ");
288 if (card.ats[pos] & 0x04) strcat(dr, "8, ");
561f7c11 289 if (strlen(ds) != 0) ds[strlen(ds) - 2] = '\0';
290 if (strlen(dr) != 0) dr[strlen(dr) - 2] = '\0';
291 PrintAndLog(" - TA1 : different divisors are%s supported, "
292 "DR: [%s], DS: [%s]",
19d6d91f 293 (card.ats[pos] & 0x80 ? " NOT" : ""), dr, ds);
561f7c11 294 pos++;
295 }
9a573554 296 if (tb1) {
297 uint32_t sfgi = card.ats[pos] & 0x0F;
298 uint32_t fwi = card.ats[pos] >> 4;
299 PrintAndLog(" - TB1 : SFGI = %d (SFGT = %s%ld/fc), FWI = %d (FWT = %ld/fc)",
300 (sfgi),
301 sfgi ? "" : "(not needed) ",
302 sfgi ? (1 << 12) << sfgi : 0,
303 fwi,
304 (1 << 12) << fwi
305 );
561f7c11 306 pos++;
307 }
9a573554 308 if (tc1) {
561f7c11 309 PrintAndLog(" - TC1 : NAD is%s supported, CID is%s supported",
19d6d91f 310 (card.ats[pos] & 0x01) ? "" : " NOT",
311 (card.ats[pos] & 0x02) ? "" : " NOT");
561f7c11 312 pos++;
313 }
9a573554 314 if (card.ats[0] > pos) {
561f7c11 315 char *tip = "";
9a573554 316 if (card.ats[0] - pos >= 7) {
19d6d91f 317 if (memcmp(card.ats + pos, "\xC1\x05\x2F\x2F\x01\xBC\xD6", 7) == 0) {
561f7c11 318 tip = "-> MIFARE Plus X 2K or 4K";
19d6d91f 319 } else if (memcmp(card.ats + pos, "\xC1\x05\x2F\x2F\x00\x35\xC7", 7) == 0) {
561f7c11 320 tip = "-> MIFARE Plus S 2K or 4K";
321 }
322 }
9a573554 323 PrintAndLog(" - HB : %s%s", sprint_hex(card.ats + pos, card.ats[0] - pos), tip);
19d6d91f 324 if (card.ats[pos] == 0xC1) {
561f7c11 325 PrintAndLog(" c1 -> Mifare or (multiple) virtual cards of various type");
326 PrintAndLog(" %02x -> Length is %d bytes",
19d6d91f 327 card.ats[pos + 1], card.ats[pos + 1]);
328 switch (card.ats[pos + 2] & 0xf0) {
561f7c11 329 case 0x10:
330 PrintAndLog(" 1x -> MIFARE DESFire");
331 break;
332 case 0x20:
333 PrintAndLog(" 2x -> MIFARE Plus");
334 break;
335 }
19d6d91f 336 switch (card.ats[pos + 2] & 0x0f) {
561f7c11 337 case 0x00:
338 PrintAndLog(" x0 -> <1 kByte");
339 break;
340 case 0x01:
7cdf6236 341 PrintAndLog(" x1 -> 1 kByte");
561f7c11 342 break;
343 case 0x02:
7cdf6236 344 PrintAndLog(" x2 -> 2 kByte");
561f7c11 345 break;
346 case 0x03:
7cdf6236 347 PrintAndLog(" x3 -> 4 kByte");
561f7c11 348 break;
349 case 0x04:
7cdf6236 350 PrintAndLog(" x4 -> 8 kByte");
561f7c11 351 break;
352 }
19d6d91f 353 switch (card.ats[pos + 3] & 0xf0) {
561f7c11 354 case 0x00:
355 PrintAndLog(" 0x -> Engineering sample");
356 break;
357 case 0x20:
358 PrintAndLog(" 2x -> Released");
359 break;
360 }
19d6d91f 361 switch (card.ats[pos + 3] & 0x0f) {
561f7c11 362 case 0x00:
363 PrintAndLog(" x0 -> Generation 1");
364 break;
365 case 0x01:
366 PrintAndLog(" x1 -> Generation 2");
367 break;
368 case 0x02:
369 PrintAndLog(" x2 -> Generation 3");
370 break;
371 }
19d6d91f 372 switch (card.ats[pos + 4] & 0x0f) {
561f7c11 373 case 0x00:
374 PrintAndLog(" x0 -> Only VCSL supported");
375 break;
376 case 0x01:
377 PrintAndLog(" x1 -> VCS, VCSL, and SVC supported");
378 break;
379 case 0x0E:
380 PrintAndLog(" xE -> no VCS command supported");
381 break;
382 }
383 }
384 }
79a73ab2 385 } else {
19d6d91f 386 PrintAndLog("proprietary non iso14443-4 card found, RATS not supported");
387 }
534983d7 388
52ab55ab 389
390 // try to see if card responses to "chinese magic backdoor" commands.
e17660d5 391 mfCIdentify();
52ab55ab 392
19d6d91f 393 return select_status;
7fe9b0b7 394}
395
db22dfe6 396// Collect ISO14443 Type A UIDs
397int CmdHF14ACUIDs(const char *Cmd)
398{
399 // requested number of UIDs
400 int n = atoi(Cmd);
401 // collect at least 1 (e.g. if no parameter was given)
402 n = n > 0 ? n : 1;
403
404 PrintAndLog("Collecting %d UIDs", n);
acf0582d 405 PrintAndLog("Start: %" PRIu64, msclock()/1000);
db22dfe6 406 // repeat n times
407 for (int i = 0; i < n; i++) {
408 // execute anticollision procedure
c04a4b60 409 UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT | ISO14A_NO_RATS, 0, 0}};
db22dfe6 410 SendCommand(&c);
902cb3c0 411
72b1090a 412 UsbCommand resp;
413 WaitForResponse(CMD_ACK,&resp);
902cb3c0 414
72b1090a 415 iso14a_card_select_t *card = (iso14a_card_select_t *) resp.d.asBytes;
db22dfe6 416
417 // check if command failed
902cb3c0 418 if (resp.arg[0] == 0) {
db22dfe6 419 PrintAndLog("Card select failed.");
420 } else {
72b1090a 421 char uid_string[20];
422 for (uint16_t i = 0; i < card->uidlen; i++) {
423 sprintf(&uid_string[2*i], "%02X", card->uid[i]);
db22dfe6 424 }
72b1090a 425 PrintAndLog("%s", uid_string);
db22dfe6 426 }
427 }
acf0582d 428 PrintAndLog("End: %" PRIu64, msclock()/1000);
db22dfe6 429
430 return 1;
431}
432
7fe9b0b7 433// ## simulate iso14443a tag
434// ## greg - added ability to specify tag UID
435int CmdHF14ASim(const char *Cmd)
81cd0474 436{
437 UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,{0,0,0}};
438
439 // Retrieve the tag type
440 uint8_t tagtype = param_get8ex(Cmd,0,0,10);
441
442 // When no argument was given, just print help message
443 if (tagtype == 0) {
444 PrintAndLog("");
445 PrintAndLog(" Emulating ISO/IEC 14443 type A tag with 4 or 7 byte UID");
446 PrintAndLog("");
447 PrintAndLog(" syntax: hf 14a sim <type> <uid>");
448 PrintAndLog(" types: 1 = MIFARE Classic");
449 PrintAndLog(" 2 = MIFARE Ultralight");
5ee70129 450 PrintAndLog(" 3 = MIFARE Desfire");
81cd0474 451 PrintAndLog(" 4 = ISO/IEC 14443-4");
5ee70129 452 PrintAndLog(" 5 = MIFARE Tnp3xxx");
81cd0474 453 PrintAndLog("");
454 return 1;
455 }
456
457 // Store the tag type
458 c.arg[0] = tagtype;
459
460 // Retrieve the full 4 or 7 byte long uid
461 uint64_t long_uid = param_get64ex(Cmd,1,0,16);
462
463 // Are we handling the (optional) second part uid?
464 if (long_uid > 0xffffffff) {
43534cba 465 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 7 byte UID (%014" PRIx64 ")",long_uid);
81cd0474 466 // Store the second part
467 c.arg[2] = (long_uid & 0xffffffff);
468 long_uid >>= 32;
469 // Store the first part, ignore the first byte, it is replaced by cascade byte (0x88)
470 c.arg[1] = (long_uid & 0xffffff);
471 } else {
472 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 4 byte UID (%08x)",long_uid);
473 // Only store the first part
474 c.arg[1] = long_uid & 0xffffffff;
475 }
476/*
477 // At lease save the mandatory first part of the UID
478 c.arg[0] = long_uid & 0xffffffff;
479
81cd0474 480 if (c.arg[1] == 0) {
481 PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
482 }
483
484 switch (c.arg[0]) {
485 case 1: {
486 PrintAndLog("Emulating ISO/IEC 14443-3 type A tag with 4 byte UID");
487 UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,param_get32ex(Cmd,0,0,10),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16)};
488 } break;
489 case 2: {
490 PrintAndLog("Emulating ISO/IEC 14443-4 type A tag with 7 byte UID");
491 } break;
492 default: {
493 PrintAndLog("Error: unkown tag type (%d)",c.arg[0]);
494 PrintAndLog("syntax: hf 14a sim <uid>",c.arg[0]);
495 PrintAndLog(" type1: 4 ",c.arg[0]);
496
497 return 1;
498 } break;
499 }
500*/
501/*
7fe9b0b7 502 unsigned int hi = 0, lo = 0;
503 int n = 0, i = 0;
504 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
505 hi= (hi << 4) | (lo >> 28);
506 lo= (lo << 4) | (n & 0xf);
507 }
81cd0474 508*/
509// UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,param_get32ex(Cmd,0,0,10),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16)};
510// PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
7fe9b0b7 511 SendCommand(&c);
512 return 0;
513}
514
5cd9ec01
M
515int CmdHF14ASnoop(const char *Cmd) {
516 int param = 0;
517
df3e429d 518 uint8_t ctmp = param_getchar(Cmd, 0) ;
519 if (ctmp == 'h' || ctmp == 'H') {
5cd9ec01 520 PrintAndLog("It get data from the field and saves it into command buffer.");
4c3de57a 521 PrintAndLog("Buffer accessible from command hf list 14a.");
5cd9ec01
M
522 PrintAndLog("Usage: hf 14a snoop [c][r]");
523 PrintAndLog("c - triggered by first data from card");
524 PrintAndLog("r - triggered by first 7-bit request from reader (REQ,WUP,...)");
525 PrintAndLog("sample: hf 14a snoop c r");
526 return 0;
527 }
528
529 for (int i = 0; i < 2; i++) {
df3e429d 530 ctmp = param_getchar(Cmd, i);
5cd9ec01
M
531 if (ctmp == 'c' || ctmp == 'C') param |= 0x01;
532 if (ctmp == 'r' || ctmp == 'R') param |= 0x02;
533 }
534
e57c8b2e 535 UsbCommand c = {CMD_SNOOP_ISO_14443a, {param, 0, 0}};
536 SendCommand(&c);
537 return 0;
7fe9b0b7 538}
539
d1300b47 540int ExchangeAPDU14a(uint8_t *datain, int datainlen, bool activateField, bool leaveSignalON, uint8_t *dataout, int *dataoutlen) {
1208cdcb 541 uint8_t data[USB_CMD_DATA_SIZE];
d1300b47 542 int datalen;
1208cdcb 543 uint8_t cmdc = 0;
f2b0169c 544 uint8_t first, second;
d1300b47 545
546 if (activateField)
547 cmdc |= ISO14A_CONNECT;
548 if (leaveSignalON)
549 cmdc |= ISO14A_NO_DISCONNECT;
550
551 // ISO 14443 APDU frame: PCB [CID] [NAD] APDU CRC PCB=0x02
552 memcpy(data + 1, datain, datainlen);
553 data[0] = 0x02; // bnr,nad,cid,chn=0; i-block(0x00)
554 datalen = datainlen + 1;
555
556 ComputeCrc14443(CRC_14443_A, data, datalen, &first, &second);
557 data[datalen++] = first;
558 data[datalen++] = second;
559
560 // "Command APDU" length should be 5+255+1, but javacard's APDU buffer might be smaller - 133 bytes
561 // https://stackoverflow.com/questions/32994936/safe-max-java-card-apdu-data-command-and-respond-size
562 // here length USB_CMD_DATA_SIZE=512
563 // timeout timeout14a * 1.06 / 100, true, size, &keyBlock[6 * c], e_sector); // timeout is (ms * 106)/10 or us*0.0106
564 UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_RAW | ISO14A_SET_TIMEOUT | cmdc, (datalen & 0xFFFF), 1000 * 1000 * 1.06 / 100}};
565 memcpy(c.d.asBytes, data, datalen);
566 SendCommand(&c);
567
568 uint8_t *recv;
569 UsbCommand resp;
570
571 if (activateField) {
572 if (!WaitForResponseTimeout(CMD_ACK, &resp, 1500))
573 return 1;
574 if (resp.arg[0] != 1)
575 return 1;
576 }
577
578 if (WaitForResponseTimeout(CMD_ACK, &resp, 1500)) {
579 recv = resp.d.asBytes;
580 uint8_t iLen = resp.arg[0];
581
582 *dataoutlen = iLen - 1 - 2;
583 if (*dataoutlen < 0)
584 *dataoutlen = 0;
585 memcpy(dataout, recv + 1, *dataoutlen);
586
587 if(!iLen)
588 return 1;
589
590 // check apdu length
591 if (iLen < 5) {
592 PrintAndLog("APDU ERROR: Small APDU response.");
593 return 2;
594 }
595
596 // check block
597 if (data[0] != recv[0]) {
598 PrintAndLog("APDU ERROR: Block type mismatch: %02x-%02x", data[0], recv[0]);
599 return 2;
600 }
601
602 // CRC Check
603 ComputeCrc14443(CRC_14443_A, recv, iLen, &first, &second);
604 if (first || second) {
605 PrintAndLog("APDU ERROR: ISO 14443A CRC error.");
606 return 3;
607 }
608
609 } else {
610 PrintAndLog("APDU ERROR: Reply timeout.");
611 return 4;
612 }
613
614 return 0;
615}
616
617int CmdHF14AAPDU(const char *cmd) {
618 uint8_t data[USB_CMD_DATA_SIZE];
619 int datalen = 0;
980417ea 620 bool activateField = false;
621 bool leaveSignalON = false;
622 bool decodeTLV = false;
1208cdcb 623
8019540b 624 if (strlen(cmd) < 2) {
7710983b 625 PrintAndLog("Usage: hf 14a apdu [-s] [-k] [-t] <APDU (hex)>");
626 PrintAndLog(" -s activate field and select card");
627 PrintAndLog(" -k leave the signal field ON after receive response");
628 PrintAndLog(" -t executes TLV decoder if it possible");
629 return 0;
630 }
980417ea 631
8019540b 632 int cmdp = 0;
633 while(param_getchar(cmd, cmdp) != 0x00) {
634 char c = param_getchar(cmd, cmdp);
635 if ((c == '-') && (param_getlength(cmd, cmdp) == 2))
636 switch (param_getchar_indx(cmd, 1, cmdp)) {
980417ea 637 case 's':
638 case 'S':
639 activateField = true;
640 break;
641 case 'k':
642 case 'K':
643 leaveSignalON = true;
644 break;
645 case 't':
646 case 'T':
647 decodeTLV = true;
648 break;
649 default:
8019540b 650 PrintAndLog("Unknown parameter '%c'", param_getchar_indx(cmd, 1, cmdp));
980417ea 651 return 1;
652 }
8019540b 653
654 if (isxdigit(c)) {
d1300b47 655 // len = data + PCB(1b) + CRC(2b)
656 switch(param_gethex_to_eol(cmd, cmdp, data, sizeof(data) - 1 - 2, &datalen)) {
8019540b 657 case 1:
658 PrintAndLog("Invalid HEX value.");
659 return 1;
660 case 2:
661 PrintAndLog("APDU too large.");
662 return 1;
663 case 3:
664 PrintAndLog("Hex must have even number of digits.");
665 return 1;
980417ea 666 }
8019540b 667
668 // we get all the hex to end of line with spaces
669 break;
980417ea 670 }
8019540b 671
672 cmdp++;
980417ea 673 }
f2b0169c 674
675 PrintAndLog("--%s %s %s >>>> %s", activateField ? "sel": "", leaveSignalON ? "keep": "", decodeTLV ? "TLV": "", sprint_hex(data, datalen));
7710983b 676
d1300b47 677 switch(ExchangeAPDU14a(data, datalen, activateField, leaveSignalON, data, &datalen)) {
678 case 0:
679 break;
680 case 1:
681 PrintAndLog("APDU ERROR: Send APDU error.");
682 return 1;
683 case 2:
f1a983a3 684 return 2;
d1300b47 685 case 3:
686 return 3;
687 case 4:
688 return 4;
689 default:
690 return 5;
980417ea 691 }
692
d1300b47 693 PrintAndLog("<<<< %s", sprint_hex(data, datalen));
694
695 PrintAndLog("APDU response: %02x %02x", data[datalen - 2], data[datalen - 1]); // TODO add APDU descriptions
f2b0169c 696
d1300b47 697 // here TLV decoder...
698 if (decodeTLV) {
699 PrintAndLog("--- TLV decoded:");
700 }
7710983b 701
702 return 0;
703}
48ece4a7 704
5f6d6c90 705int CmdHF14ACmdRaw(const char *cmd) {
e57c8b2e 706 UsbCommand c = {CMD_READER_ISO_14443a, {0, 0, 0}};
707 bool reply=1;
708 bool crc = false;
709 bool power = false;
710 bool active = false;
711 bool active_select = false;
c04a4b60 712 bool no_rats = false;
e57c8b2e 713 uint16_t numbits = 0;
7cb8516c 714 bool bTimeout = false;
48ece4a7 715 uint32_t timeout = 0;
7cb8516c 716 bool topazmode = false;
e57c8b2e 717 char buf[5]="";
718 int i = 0;
719 uint8_t data[USB_CMD_DATA_SIZE];
48ece4a7 720 uint16_t datalen = 0;
19a700a8 721 uint32_t temp;
5f6d6c90 722
e57c8b2e 723 if (strlen(cmd)<2) {
724 PrintAndLog("Usage: hf 14a raw [-r] [-c] [-p] [-f] [-b] [-t] <number of bits> <0A 0B 0C ... hex>");
725 PrintAndLog(" -r do not read response");
726 PrintAndLog(" -c calculate and append CRC");
727 PrintAndLog(" -p leave the signal field ON after receive");
728 PrintAndLog(" -a active signal field ON without select");
729 PrintAndLog(" -s active signal field ON with select");
730 PrintAndLog(" -b number of bits to send. Useful for send partial byte");
19a700a8 731 PrintAndLog(" -t timeout in ms");
48ece4a7 732 PrintAndLog(" -T use Topaz protocol to send command");
c04a4b60 733 PrintAndLog(" -3 ISO14443-3 select only (skip RATS)");
e57c8b2e 734 return 0;
735 }
5f6d6c90 736
e57c8b2e 737
738 // strip
739 while (*cmd==' ' || *cmd=='\t') cmd++;
740
741 while (cmd[i]!='\0') {
742 if (cmd[i]==' ' || cmd[i]=='\t') { i++; continue; }
743 if (cmd[i]=='-') {
744 switch (cmd[i+1]) {
745 case 'r':
746 reply = false;
747 break;
748 case 'c':
749 crc = true;
750 break;
751 case 'p':
752 power = true;
753 break;
754 case 'a':
755 active = true;
756 break;
757 case 's':
758 active_select = true;
759 break;
760 case 'b':
761 sscanf(cmd+i+2,"%d",&temp);
762 numbits = temp & 0xFFFF;
763 i+=3;
764 while(cmd[i]!=' ' && cmd[i]!='\0') { i++; }
765 i-=2;
766 break;
79bf1ad2 767 case 't':
7cb8516c 768 bTimeout = true;
79bf1ad2 769 sscanf(cmd+i+2,"%d",&temp);
19a700a8 770 timeout = temp;
79bf1ad2 771 i+=3;
772 while(cmd[i]!=' ' && cmd[i]!='\0') { i++; }
04bc1c66 773 i-=2;
79bf1ad2 774 break;
e57c8b2e 775 case 'T':
7cb8516c 776 topazmode = true;
48ece4a7 777 break;
c04a4b60 778 case '3':
779 no_rats = true;
780 break;
e57c8b2e 781 default:
782 PrintAndLog("Invalid option");
783 return 0;
784 }
785 i+=2;
786 continue;
787 }
788 if ((cmd[i]>='0' && cmd[i]<='9') ||
789 (cmd[i]>='a' && cmd[i]<='f') ||
790 (cmd[i]>='A' && cmd[i]<='F') ) {
791 buf[strlen(buf)+1]=0;
792 buf[strlen(buf)]=cmd[i];
793 i++;
794
795 if (strlen(buf)>=2) {
796 sscanf(buf,"%x",&temp);
797 data[datalen]=(uint8_t)(temp & 0xff);
798 *buf=0;
799 if (datalen > sizeof(data)-1) {
79bf1ad2 800 if (crc)
801 PrintAndLog("Buffer is full, we can't add CRC to your data");
802 break;
e57c8b2e 803 } else {
b4810303 804 datalen++;
79bf1ad2 805 }
e57c8b2e 806 }
807 continue;
808 }
809 PrintAndLog("Invalid char on input");
810 return 0;
811 }
812
813 if(crc && datalen>0 && datalen<sizeof(data)-2)
814 {
815 uint8_t first, second;
48ece4a7 816 if (topazmode) {
817 ComputeCrc14443(CRC_14443_B, data, datalen, &first, &second);
818 } else {
819 ComputeCrc14443(CRC_14443_A, data, datalen, &first, &second);
820 }
e57c8b2e 821 data[datalen++] = first;
822 data[datalen++] = second;
823 }
5f6d6c90 824
e57c8b2e 825 if(active || active_select)
826 {
827 c.arg[0] |= ISO14A_CONNECT;
828 if(active)
829 c.arg[0] |= ISO14A_NO_SELECT;
830 }
04bc1c66 831
79bf1ad2 832 if(bTimeout){
e57c8b2e 833 #define MAX_TIMEOUT 40542464 // = (2^32-1) * (8*16) / 13560000Hz * 1000ms/s
834 c.arg[0] |= ISO14A_SET_TIMEOUT;
835 if(timeout > MAX_TIMEOUT) {
836 timeout = MAX_TIMEOUT;
837 PrintAndLog("Set timeout to 40542 seconds (11.26 hours). The max we can wait for response");
838 }
04bc1c66 839 c.arg[2] = 13560000 / 1000 / (8*16) * timeout; // timeout in ETUs (time to transfer 1 bit, approx. 9.4 us)
79bf1ad2 840 }
48ece4a7 841
e57c8b2e 842 if(power) {
843 c.arg[0] |= ISO14A_NO_DISCONNECT;
844 }
48ece4a7 845
29435274 846 if(datalen > 0) {
e57c8b2e 847 c.arg[0] |= ISO14A_RAW;
848 }
5f6d6c90 849
29435274 850 if(topazmode) {
48ece4a7 851 c.arg[0] |= ISO14A_TOPAZMODE;
e57c8b2e 852 }
853
c04a4b60 854 if(no_rats) {
855 c.arg[0] |= ISO14A_NO_RATS;
856 }
857
e57c8b2e 858 // Max buffer is USB_CMD_DATA_SIZE (512)
859 c.arg[1] = (datalen & 0xFFFF) | ((uint32_t)numbits << 16);
860 memcpy(c.d.asBytes,data,datalen);
861
862 SendCommand(&c);
863
864 if (reply) {
f1a983a3 865 int res = 0;
866 if (active_select)
867 res = waitCmd(1);
868 if (!res && datalen > 0)
e57c8b2e 869 waitCmd(0);
870 } // if reply
871 return 0;
5f6d6c90 872}
873
48ece4a7 874
f1a983a3 875static int waitCmd(uint8_t iSelect) {
5f6d6c90 876 uint8_t *recv;
877 UsbCommand resp;
878 char *hexout;
879
b915fda3 880 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
5f6d6c90 881 recv = resp.d.asBytes;
882 uint8_t iLen = iSelect ? resp.arg[1] : resp.arg[0];
48ece4a7 883 PrintAndLog("received %i octets", iLen);
5f6d6c90 884 if(!iLen)
f1a983a3 885 return 1;
5f6d6c90 886 hexout = (char *)malloc(iLen * 3 + 1);
887 if (hexout != NULL) {
5f6d6c90 888 for (int i = 0; i < iLen; i++) { // data in hex
f66021cf 889 sprintf(&hexout[i * 3], "%02X ", recv[i]);
5f6d6c90 890 }
891 PrintAndLog("%s", hexout);
892 free(hexout);
893 } else {
894 PrintAndLog("malloc failed your client has low memory?");
f1a983a3 895 return 2;
5f6d6c90 896 }
897 } else {
898 PrintAndLog("timeout while waiting for reply.");
f1a983a3 899 return 3;
5f6d6c90 900 }
f1a983a3 901 return 0;
5f6d6c90 902}
903
7fe9b0b7 904static command_t CommandTable[] =
905{
5acd09bd 906 {"help", CmdHelp, 1, "This help"},
4c3de57a 907 {"list", CmdHF14AList, 0, "[Deprecated] List ISO 14443a history"},
5acd09bd 908 {"reader", CmdHF14AReader, 0, "Act like an ISO14443 Type A reader"},
909 {"cuids", CmdHF14ACUIDs, 0, "<n> Collect n>0 ISO14443 Type A UIDs in one go"},
df3e429d 910 {"sim", CmdHF14ASim, 0, "<UID> -- Simulate ISO 14443a tag"},
5acd09bd 911 {"snoop", CmdHF14ASnoop, 0, "Eavesdrop ISO 14443 Type A"},
7710983b 912 {"apdu", CmdHF14AAPDU, 0, "Send ISO 1443-4 APDU to tag"},
5f6d6c90 913 {"raw", CmdHF14ACmdRaw, 0, "Send raw hex data to tag"},
7fe9b0b7 914 {NULL, NULL, 0, NULL}
915};
916
902cb3c0 917int CmdHF14A(const char *Cmd) {
f397b5cc 918 // flush
902cb3c0 919 WaitForResponseTimeout(CMD_ACK,NULL,100);
f397b5cc
M
920
921 // parse
7fe9b0b7 922 CmdsParse(CommandTable, Cmd);
923 return 0;
924}
925
926int CmdHelp(const char *Cmd)
927{
928 CmdsHelp(CommandTable);
929 return 0;
930}
Impressum, Datenschutz