1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // High frequency ISO14443B commands
9 //-----------------------------------------------------------------------------
19 #include "iso14443crc.h"
24 #include "cmdparser.h"
29 int CmdHF14BList(const char *Cmd
) {
30 PrintAndLog("Deprecated command, use 'hf list 14b' instead");
35 int CmdHF14BSim(const char *Cmd
) {
36 UsbCommand c
={CMD_SIMULATE_TAG_ISO_14443B
};
43 int CmdHF14BSnoop(const char *Cmd
) {
44 UsbCommand c
= {CMD_SNOOP_ISO_14443B
};
51 /* New command to read the contents of a SRI512 tag
52 * SRI512 tags are ISO14443-B modulated memory tags,
53 * this command just dumps the contents of the memory
55 int CmdSri512Read(const char *Cmd
) {
56 UsbCommand c
= {CMD_READ_SRI512_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
63 /* New command to read the contents of a SRIX4K tag
64 * SRIX4K tags are ISO14443-B modulated memory tags,
65 * this command just dumps the contents of the memory/
67 int CmdSrix4kRead(const char *Cmd
) {
68 UsbCommand c
= {CMD_READ_SRIX4K_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
75 static bool switch_off_field_14b(void) {
77 UsbCommand c
= {CMD_ISO_14443B_COMMAND
, {0, 0, 0}};
80 if (!WaitForResponseTimeout(CMD_ACK
, &resp
, 1000)) {
87 int HF14BCmdRaw(bool reply
, bool *crc
, bool power
, uint8_t *data
, uint8_t *datalen
, bool verbose
) {
89 UsbCommand c
= {CMD_ISO_14443B_COMMAND
, {0, 0, 0}}; // len,recv,power
91 uint8_t first
, second
;
92 ComputeCrc14443(CRC_14443_B
, data
, *datalen
, &first
, &second
);
93 data
[*datalen
] = first
;
94 data
[*datalen
+ 1] = second
;
101 memcpy(c
.d
.asBytes
,data
, *datalen
);
102 clearCommandBuffer();
105 if (!reply
) return 1;
107 if (!WaitForResponseTimeout(CMD_ACK
, &resp
, 1000)) {
108 if (verbose
) PrintAndLog("timeout while waiting for reply.");
112 int ret
= resp
.arg
[0];
115 PrintAndLog("tag didn't respond");
116 } else if (ret
== 0) {
117 PrintAndLog("received SOF only (maybe iCLASS/Picopass)");
119 PrintAndLog("received %u octets", ret
);
125 if (ret
< 2) return 0;
127 memcpy(data
, resp
.d
.asBytes
, *datalen
);
128 if (verbose
) PrintAndLog("%s", sprint_hex(data
, *datalen
));
130 uint8_t first
, second
;
131 ComputeCrc14443(CRC_14443_B
, data
, *datalen
-2, &first
, &second
);
132 if (data
[*datalen
-2] == first
&& data
[*datalen
-1] == second
) {
133 if (verbose
) PrintAndLog("CRC OK");
136 if (verbose
) PrintAndLog("CRC failed");
143 static int CmdHF14BCmdRaw (const char *Cmd
) {
150 uint8_t data
[100] = {0x00};
154 if (strlen(Cmd
) < 2) {
155 PrintAndLog("Usage: hf 14b raw [-r] [-c] [-p] [-s || -ss] <0A 0B 0C ... hex>");
156 PrintAndLog(" -r do not read response");
157 PrintAndLog(" -c calculate and append CRC");
158 PrintAndLog(" -p leave the field on after receive");
159 PrintAndLog(" -s active signal field ON with select");
160 PrintAndLog(" -ss active signal field ON with select for SRx ST Microelectronics tags");
165 while (*Cmd
== ' ' || *Cmd
== '\t') Cmd
++;
167 while (Cmd
[i
] != '\0') {
168 if (Cmd
[i
] == ' ' || Cmd
[i
] == '\t') { i
++; continue; }
186 if (Cmd
[i
+2] == 's' || Cmd
[i
+2] == 'S') {
192 PrintAndLog("Invalid option");
198 if ((Cmd
[i
] >= '0' && Cmd
[i
] <= '9') ||
199 (Cmd
[i
] >= 'a' && Cmd
[i
] <= 'f') ||
200 (Cmd
[i
] >= 'A' && Cmd
[i
] <= 'F') ) {
201 buf
[strlen(buf
)+1] = 0;
202 buf
[strlen(buf
)] = Cmd
[i
];
205 if (strlen(buf
) >= 2) {
206 sscanf(buf
, "%x", &temp
);
207 data
[datalen
++] = (uint8_t)(temp
& 0xff);
212 PrintAndLog("Invalid char on input");
216 PrintAndLog("Missing data input");
220 if (select
) { //auto select 14b tag
238 if (HF14BCmdRaw(true, &crc2
, true, cmd2
, &cmdLen
, false) == 0) return switch_off_field_14b();
241 if (cmdLen
!= 3 || !crc2
) return switch_off_field_14b();
243 if (cmd2
[0] != 0x50 || cmdLen
!= 14 || !crc2
) return switch_off_field_14b();
256 // UID from cmd2[1 - 4]
264 if (HF14BCmdRaw(true, &crc2
, true, cmd2
, &cmdLen
, false) == 0) return switch_off_field_14b();
266 if (cmdLen
!= 3 || !crc2
) return switch_off_field_14b();
267 if (SRx
&& cmd2
[0] != chipID
) return switch_off_field_14b();
270 return HF14BCmdRaw(reply
, &crc
, power
, data
, &datalen
, true);
275 // print full atqb info
276 static void print_atqb_resp(uint8_t *data
) {
277 //PrintAndLog (" UID: %s", sprint_hex(data+1,4));
278 PrintAndLog(" App Data: %s", sprint_hex(data
+5,4));
279 PrintAndLog(" Protocol: %s", sprint_hex(data
+9,3));
280 uint8_t BitRate
= data
[9];
282 PrintAndLog (" Bit Rate: 106 kbit/s only PICC <-> PCD");
284 PrintAndLog (" Bit Rate: 212 kbit/s PICC -> PCD supported");
286 PrintAndLog (" Bit Rate: 424 kbit/s PICC -> PCD supported");
288 PrintAndLog (" Bit Rate: 847 kbit/s PICC -> PCD supported");
290 PrintAndLog (" Bit Rate: 212 kbit/s PICC <- PCD supported");
292 PrintAndLog (" Bit Rate: 424 kbit/s PICC <- PCD supported");
294 PrintAndLog (" Bit Rate: 847 kbit/s PICC <- PCD supported");
296 PrintAndLog (" Same bit rate <-> required");
298 uint16_t maxFrame
= data
[10] >> 4;
300 maxFrame
= 8*maxFrame
+ 16;
301 else if (maxFrame
== 5)
303 else if (maxFrame
== 6)
305 else if (maxFrame
== 7)
307 else if (maxFrame
== 8)
312 PrintAndLog ("Max Frame Size: %u%s", maxFrame
, (maxFrame
== 257) ? "+ RFU" : "");
314 uint8_t protocolT
= data
[10] & 0xF;
315 PrintAndLog (" Protocol Type: Protocol is %scompliant with ISO/IEC 14443-4",(protocolT
) ? "" : "not " );
316 PrintAndLog ("Frame Wait Int: %u", data
[11]>>4);
317 PrintAndLog (" App Data Code: Application is %s",(data
[11]&4) ? "Standard" : "Proprietary");
318 PrintAndLog (" Frame Options: NAD is %ssupported",(data
[11]&2) ? "" : "not ");
319 PrintAndLog (" Frame Options: CID is %ssupported",(data
[11]&1) ? "" : "not ");
320 PrintAndLog ("Max Buf Length: %u (MBLI) %s",data
[14]>>4, (data
[14] & 0xF0) ? "" : "not supported");
326 int print_ST_Lock_info(uint8_t model
) {
327 //assume connection open and tag selected...
328 uint8_t data
[16] = {0x00};
335 if (model
== 0x02) { //SR176 has special command:
344 if (HF14BCmdRaw(true, &crc
, true, data
, &datalen
, false) == 0) return switch_off_field_14b();
346 if (datalen
!= resplen
|| !crc
) return switch_off_field_14b();
348 PrintAndLog("Chip Write Protection Bits:");
349 // now interpret the data
351 case 0x0: //fall through (SRIX4K special)
352 case 0x3: //fall through (SRIx4K)
356 PrintAndLog(" raw: %s",printBits(1,data
+3));
357 PrintAndLog(" 07/08:%slocked", (data
[3] & 1) ? " not " : " " );
358 for (uint8_t i
= 1; i
< 8; i
++){
359 PrintAndLog(" %02u:%slocked", blk1
, (data
[3] & (1 << i
)) ? " not " : " " );
363 case 0x4: //fall through (SRIX512)
364 case 0x6: //fall through (SRI512)
365 case 0xC: // (SRT512)
366 //need data[2] and data[3]
368 PrintAndLog(" raw: %s", printBits(2,data
+2));
369 for (uint8_t b
= 2; b
< 4; b
++) {
370 for (uint8_t i
= 0; i
< 8; i
++) {
371 PrintAndLog(" %02u:%slocked", blk1
, (data
[b
] & (1 << i
)) ? " not " : " " );
379 PrintAndLog(" raw: %s",printBits(1, data
+2));
380 for (uint8_t i
= 0; i
< 8; i
++){
381 PrintAndLog(" %02u/%02u:%slocked", blk1
, blk1
+1, (data
[2] & (1 << i
)) ? " " : " not " );
386 return switch_off_field_14b();
392 // print UID info from SRx chips (ST Microelectronics)
393 static void print_st_general_info(uint8_t *data
) {
394 //uid = first 8 bytes in data
395 PrintAndLog(" UID: %s", sprint_hex(SwapEndian64(data
, 8, 8), 8));
396 PrintAndLog(" MFG: %02X, %s", data
[6], getManufacturerName(data
[6]));
397 PrintAndLog(" Chip: %02X, %s", data
[5], getChipInfo(data
[6], data
[5]));
402 // 14b get and print UID only (general info)
403 int HF14BStdReader(uint8_t *data
, uint8_t *datalen
) {
404 //05 00 00 = find one tag in field
405 //1d xx xx xx xx 00 08 01 00 = attrib xx=UID (resp 10 [f9 e0])
406 //a3 = ? (resp 03 [e2 c2])
407 //02 = ? (resp 02 [6a d3])
408 // 022b (resp 02 67 00 [29 5b])
409 // 0200a40400 (resp 02 67 00 [29 5b])
410 // 0200a4040c07a0000002480300 (resp 02 67 00 [29 5b])
411 // 0200a4040c07a0000002480200 (resp 02 67 00 [29 5b])
412 // 0200a4040006a0000000010100 (resp 02 6a 82 [4b 4c])
413 // 0200a4040c09d27600002545500200 (resp 02 67 00 [29 5b])
414 // 0200a404000cd2760001354b414e4d30310000 (resp 02 6a 82 [4b 4c])
415 // 0200a404000ca000000063504b43532d313500 (resp 02 6a 82 [4b 4c])
416 // 0200a4040010a000000018300301000000000000000000 (resp 02 6a 82 [4b 4c])
417 //03 = ? (resp 03 [e3 c2])
418 //c2 = ? (resp c2 [66 15])
419 //b2 = ? (resp a3 [e9 67])
420 //a2 = ? (resp 02 [6a d3])
428 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false) == 0) return switch_off_field_14b();
430 if (data
[0] != 0x50 || *datalen
!= 14 || !crc
) return switch_off_field_14b();
432 PrintAndLog ("\n14443-3b tag found:");
433 PrintAndLog (" UID: %s", sprint_hex(data
+1, 4));
440 // UID from data[1 - 4]
452 if (HF14BCmdRaw(true, &crc2
, true, cmd2
, &cmdLen
, false) == 0) return switch_off_field_14b();
454 if (cmdLen
!= 3 || !crc2
) return switch_off_field_14b();
455 // add attrib responce to data
457 switch_off_field_14b();
462 // 14b get and print Full Info (as much as we know)
463 static bool HF14B_Std_Info(uint8_t *data
, uint8_t *datalen
) {
464 if (!HF14BStdReader(data
, datalen
)) return false;
467 print_atqb_resp(data
);
473 // SRx get and print general info about SRx chip from UID
474 static bool HF14B_ST_Reader(uint8_t *data
, uint8_t *datalen
, bool closeCon
){
482 // verbose on for now for testing - turn off when functional
483 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false) == 0) return switch_off_field_14b();
485 if (*datalen
!= 3 || !crc
) return switch_off_field_14b();
487 uint8_t chipID
= data
[0];
494 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false) == 0) return switch_off_field_14b();
496 if (*datalen
!= 3 || !crc
|| data
[0] != chipID
) return switch_off_field_14b();
503 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false) == 0) return switch_off_field_14b();
505 if (*datalen
!= 10 || !crc
) return switch_off_field_14b();
508 if (closeCon
) switch_off_field_14b();
510 PrintAndLog("\n14443-3b ST tag found:");
511 print_st_general_info(data
);
516 // SRx get and print full info (needs more info...)
517 static bool HF14B_ST_Info(bool verbose
) {
521 if (!HF14B_ST_Reader(data
, &datalen
, false)) return false;
523 //add locking bit information here.
524 if (print_ST_Lock_info(data
[5] >> 2))
525 switch_off_field_14b();
531 // test for other 14b type tags (mimic another reader - don't have tags to identify)
532 static bool HF14B_Other_Reader(uint8_t *data
, bool verbose
) {
543 if (HF14BCmdRaw(true, &crc
, true, data
, &datalen
, false) != 0) {
544 if (datalen
> 2 || !crc
) {
545 PrintAndLog ("\n14443-3b tag found:");
546 PrintAndLog ("Unknown tag type answered to a 0x000b3f80 command:");
547 PrintAndLog ("%s", sprint_hex(data
, datalen
));
548 switch_off_field_14b();
557 if (HF14BCmdRaw(true, &crc
, true, data
, &datalen
, false) != 0) {
559 PrintAndLog ("\n14443-3b tag found:");
560 PrintAndLog ("Unknown tag type answered to a 0x0A command:");
561 PrintAndLog ("%s", sprint_hex(data
, datalen
));
562 switch_off_field_14b();
571 if (HF14BCmdRaw(true, &crc
, true, data
, &datalen
, false) != 0) {
573 PrintAndLog ("\n14443-3b tag found:");
574 PrintAndLog ("Unknown tag type answered to a 0x0C command:");
575 PrintAndLog ("%s", sprint_hex(data
, datalen
));
576 switch_off_field_14b();
580 switch_off_field_14b();
585 // get and print all info known about any known 14b tag
586 static int usage_hf_14b_info(void) {
587 PrintAndLogEx(NORMAL
, "Usage: hf 14b info [h] [s]");
588 PrintAndLogEx(NORMAL
, "Options:");
589 PrintAndLogEx(NORMAL
, " h this help");
590 PrintAndLogEx(NORMAL
, " s silently");
591 PrintAndLogEx(NORMAL
, "Example:");
592 PrintAndLogEx(NORMAL
, " hf 14b info");
596 int infoHF14B(bool verbose
) {
600 // try std 14b (atqb)
601 if (HF14B_Std_Info(data
, &datalen
)) return 1;
604 if (HF14B_ST_Info(verbose
)) return 1;
606 // try unknown 14b read commands (to be identified later)
607 // could be read of calypso, CEPAS, moneo, or pico pass.
608 if (HF14B_Other_Reader(data
, verbose
)) return 1;
610 if (verbose
) PrintAndLog("no 14443B tag found");
615 // menu command to get and print all info known about any known 14b tag
616 static int CmdHF14Binfo(const char *Cmd
){
617 char cmdp
= tolower(param_getchar(Cmd
, 0));
618 if (cmdp
== 'h') return usage_hf_14b_info();
620 bool verbose
= !(cmdp
== 's');
621 return infoHF14B(verbose
);
625 // get and print general info about all known 14b chips
626 int readHF14B(bool verbose
){
630 // try std 14b (atqb)
631 if (HF14BStdReader(data
, &datalen
)) return 1;
634 if (HF14B_ST_Reader(data
, &datalen
, true)) return 1;
636 // try unknown 14b read commands (to be identified later)
637 // could be read of calypso, CEPAS, moneo, or pico pass.
638 if (HF14B_Other_Reader(data
, verbose
)) return 1;
640 if (verbose
) PrintAndLog("no 14443B tag found");
645 // menu command to get and print general info about all known 14b chips
646 static int usage_hf_14b_reader(void) {
647 PrintAndLogEx(NORMAL
, "Usage: hf 14b reader [h] [s]");
648 PrintAndLogEx(NORMAL
, "Options:");
649 PrintAndLogEx(NORMAL
, " h this help");
650 PrintAndLogEx(NORMAL
, " s silently");
651 PrintAndLogEx(NORMAL
, "Example:");
652 PrintAndLogEx(NORMAL
, " hf 14b reader");
657 static int CmdHF14BReader(const char *Cmd
) {
658 char cmdp
= tolower(param_getchar(Cmd
, 0));
659 if (cmdp
== 'h') return usage_hf_14b_reader();
661 bool verbose
= !(cmdp
== 's');
662 return readHF14B(verbose
);
666 int CmdSriWrite(const char *Cmd
) {
668 * For SRIX4K blocks 00 - 7F
669 * hf 14b raw -c -p 09 $srix4kwblock $srix4kwdata
671 * For SR512 blocks 00 - 0F
672 * hf 14b raw -c -p 09 $sr512wblock $sr512wdata
674 * Special block FF = otp_lock_reg block.
677 char cmdp
= param_getchar(Cmd
, 0);
678 uint8_t blockno
= -1;
679 uint8_t data
[4] = {0x00};
680 bool isSrix4k
= true;
682 if (strlen(Cmd
) < 1 || cmdp
== 'h' || cmdp
== 'H') {
683 PrintAndLog("Usage: hf 14b write <1|2> <BLOCK> <DATA>");
684 PrintAndLog(" [1 = SRIX4K]");
685 PrintAndLog(" [2 = SRI512]");
686 PrintAndLog(" [BLOCK number depends on tag, special block == FF]");
687 PrintAndLog(" sample: hf 14b write 1 7F 11223344");
688 PrintAndLog(" : hf 14b write 1 FF 11223344");
689 PrintAndLog(" : hf 14b write 2 15 11223344");
690 PrintAndLog(" : hf 14b write 2 FF 11223344");
697 //blockno = param_get8(Cmd, 1);
699 if (param_gethex(Cmd
,1, &blockno
, 2) ) {
700 PrintAndLog("Block number must include 2 HEX symbols");
705 if (blockno
> 0x7f && blockno
!= 0xff){
706 PrintAndLog("Block number out of range");
710 if (blockno
> 0x0f && blockno
!= 0xff){
711 PrintAndLog("Block number out of range");
716 if (param_gethex(Cmd
, 2, data
, 8)) {
717 PrintAndLog("Data must include 8 HEX symbols");
722 PrintAndLog("[%s] Write special block %02X [ %s ]", (isSrix4k
)?"SRIX4K":"SRI512", blockno
, sprint_hex(data
, 4));
724 PrintAndLog("[%s] Write block %02X [ %s ]", (isSrix4k
)?"SRIX4K":"SRI512", blockno
, sprint_hex(data
, 4));
727 sprintf(str
, "-ss -c 09 %02x %02x%02x%02x%02x", blockno
, data
[0], data
[1], data
[2], data
[3]);
734 static int CmdHelp(const char *Cmd
);
736 static command_t CommandTable
[] =
738 {"help", CmdHelp
, 1, "This help"},
739 {"info", CmdHF14Binfo
, 0, "Find and print details about a 14443B tag"},
740 {"list", CmdHF14BList
, 0, "[Deprecated] List ISO 14443B history"},
741 {"reader", CmdHF14BReader
, 0, "Act as a 14443B reader to identify a tag"},
742 {"sim", CmdHF14BSim
, 0, "Fake ISO 14443B tag"},
743 {"snoop", CmdHF14BSnoop
, 0, "Eavesdrop ISO 14443B"},
744 {"sri512read", CmdSri512Read
, 0, "Read contents of a SRI512 tag"},
745 {"srix4kread", CmdSrix4kRead
, 0, "Read contents of a SRIX4K tag"},
746 {"sriwrite", CmdSriWrite
, 0, "Write data to a SRI512 | SRIX4K tag"},
747 {"raw", CmdHF14BCmdRaw
, 0, "Send raw hex data to tag"},
748 {NULL
, NULL
, 0, NULL
}
751 int CmdHF14B(const char *Cmd
)
753 CmdsParse(CommandTable
, Cmd
);
757 int CmdHelp(const char *Cmd
)
759 CmdsHelp(CommandTable
);