1 //-----------------------------------------------------------------------------
3 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
4 // at your option, any later version. See the LICENSE.txt file for the text of
6 //-----------------------------------------------------------------------------
7 // Low frequency T55xx commands
8 //-----------------------------------------------------------------------------
13 #include "proxmark3.h"
17 #include "cmdparser.h"
20 #include "cmdlft55xx.h"
24 #include "../common/crc.h"
25 #include "../common/iso14443crc.h"
28 #define CONFIGURATION_BLOCK 0x00
29 #define TRACE_BLOCK 0x01
31 // Default configuration
32 t55xx_conf_block_t config
= { .modulation
= DEMOD_ASK
, .inverted
= FALSE
, .offset
= 0x00, .block0
= 0x00};
34 int usage_t55xx_config(){
35 PrintAndLog("Usage: lf t55xx config [d <demodulation>] [i 1] [o <offset>]");
36 PrintAndLog("Options: ");
37 PrintAndLog(" h This help");
38 PrintAndLog(" b <8|16|32|40|50|64|100|128> Set bitrate");
39 PrintAndLog(" d <FSK|FSK1|FSK1a|FSK2|FSK2a|ASK|PSK1|PSK2|NZ|BI|BIa> Set demodulation FSK / ASK / PSK / NZ / Biphase / Biphase A");
40 PrintAndLog(" i [1] Invert data signal, defaults to normal");
41 PrintAndLog(" o [offset] Set offset, where data should start decode in bitstream");
43 PrintAndLog("Examples:");
44 PrintAndLog(" lf t55xx config d FSK - FSK demodulation");
45 PrintAndLog(" lf t55xx config d FSK i 1 - FSK demodulation, inverse data");
46 PrintAndLog(" lf t55xx config d FSK i 1 o 3 - FSK demodulation, inverse data, offset=3,start from position 3 to decode data");
50 int usage_t55xx_read(){
51 PrintAndLog("Usage: lf t55xx read <block> <password>");
52 PrintAndLog(" <block>, block number to read. Between 0-7");
53 PrintAndLog(" <password>, OPTIONAL password (8 hex characters)");
55 PrintAndLog("Examples:");
56 PrintAndLog(" lf t55xx read 0 - read data from block 0");
57 PrintAndLog(" lf t55xx read 0 feedbeef - read data from block 0 password feedbeef");
61 int usage_t55xx_write(){
62 PrintAndLog("Usage: lf t55xx wr <block> <data> [password]");
63 PrintAndLog(" <block>, block number to read. Between 0-7");
64 PrintAndLog(" <data>, 4 bytes of data to write (8 hex characters)");
65 PrintAndLog(" [password], OPTIONAL password 4bytes (8 hex characters)");
67 PrintAndLog("Examples:");
68 PrintAndLog(" lf t55xx wd 3 11223344 - write 11223344 to block 3");
69 PrintAndLog(" lf t55xx wd 3 11223344 feedbeef - write 11223344 to block 3 password feedbeef");
73 int usage_t55xx_trace() {
74 PrintAndLog("Usage: lf t55xx trace [1]");
75 PrintAndLog(" [graph buffer data], if set, use Graphbuffer otherwise read data from tag.");
77 PrintAndLog("Examples:");
78 PrintAndLog(" lf t55xx trace");
79 PrintAndLog(" lf t55xx trace 1");
83 int usage_t55xx_info() {
84 PrintAndLog("Usage: lf t55xx info [1]");
85 PrintAndLog(" [graph buffer data], if set, use Graphbuffer otherwise read data from tag.");
87 PrintAndLog("Examples:");
88 PrintAndLog(" lf t55xx info");
89 PrintAndLog(" lf t55xx info 1");
93 int usage_t55xx_dump(){
94 PrintAndLog("Usage: lf t55xx dump <password>");
95 PrintAndLog(" <password>, OPTIONAL password 4bytes (8 hex symbols)");
97 PrintAndLog("Examples:");
98 PrintAndLog(" lf t55xx dump");
99 PrintAndLog(" lf t55xx dump feedbeef");
103 int usage_t55xx_detect(){
104 PrintAndLog("Usage: lf t55xx detect");
106 PrintAndLog("Examples:");
107 PrintAndLog(" lf t55xx detect");
108 PrintAndLog(" lf t55xx detect 1");
113 static int CmdHelp(const char *Cmd
);
115 int CmdT55xxSetConfig(const char *Cmd
) {
120 char modulation
[5] = {0x00};
123 uint8_t rates
[9] = {8,16,32,40,50,64,100,128,0};
124 while(param_getchar(Cmd
, cmdp
) != 0x00 && !errors
)
126 tmp
= param_getchar(Cmd
, cmdp
);
131 return usage_t55xx_config();
133 errors
|= param_getdec(Cmd
, cmdp
+1, &bitRate
);
137 if (rates
[i
]==bitRate
) {
142 if (i
==9) errors
= TRUE
;
147 param_getstr(Cmd
, cmdp
+1, modulation
);
150 if ( strcmp(modulation
, "FSK" ) == 0)
151 config
.modulation
= DEMOD_FSK
;
152 else if ( strcmp(modulation
, "FSK1" ) == 0)
153 config
.modulation
= DEMOD_FSK1
;
154 else if ( strcmp(modulation
, "FSK1a" ) == 0)
155 config
.modulation
= DEMOD_FSK1a
;
156 else if ( strcmp(modulation
, "FSK2" ) == 0)
157 config
.modulation
= DEMOD_FSK2
;
158 else if ( strcmp(modulation
, "FSK2a" ) == 0)
159 config
.modulation
= DEMOD_FSK2a
;
160 else if ( strcmp(modulation
, "ASK" ) == 0)
161 config
.modulation
= DEMOD_ASK
;
162 else if ( strcmp(modulation
, "NRZ" ) == 0)
163 config
.modulation
= DEMOD_NRZ
;
164 else if ( strcmp(modulation
, "PSK1" ) == 0)
165 config
.modulation
= DEMOD_PSK1
;
166 else if ( strcmp(modulation
, "PSK2" ) == 0)
167 config
.modulation
= DEMOD_PSK2
;
168 else if ( strcmp(modulation
, "PSK3" ) == 0)
169 config
.modulation
= DEMOD_PSK3
;
170 else if ( strcmp(modulation
, "BIa" ) == 0)
171 config
.modulation
= DEMOD_BIa
;
172 else if ( strcmp(modulation
, "BI" ) == 0)
173 config
.modulation
= DEMOD_BI
;
175 PrintAndLog("Unknown modulation '%s'", modulation
);
180 config
.inverted
= param_getchar(Cmd
,cmdp
+1) == '1';
184 errors
|= param_getdec(Cmd
, cmdp
+1, &offset
);
186 config
.offset
= offset
;
190 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd
, cmdp
));
198 printConfiguration( config
);
203 return usage_t55xx_config();
206 printConfiguration ( config
);
210 int CmdT55xxReadBlock(const char *Cmd
) {
212 int password
= 0xFFFFFFFF; //default to blank Block 7
214 char cmdp
= param_getchar(Cmd
, 0);
215 if (cmdp
== 'h' || cmdp
== 'H')
216 return usage_t55xx_read();
218 int res
= sscanf(Cmd
, "%d %x", &block
, &password
);
220 if ( res
< 1 || res
> 2 )
221 return usage_t55xx_read();
224 if ((block
< 0) | (block
> 7)) {
225 PrintAndLog("Block must be between 0 and 7");
229 UsbCommand c
= {CMD_T55XX_READ_BLOCK
, {0, block
, 0}};
230 c
.d
.asBytes
[0] = 0x0;
235 c
.d
.asBytes
[0] = 0x1;
239 if ( !WaitForResponseTimeout(CMD_ACK
,NULL
,2500) ) {
240 PrintAndLog("command execution time out");
245 GetFromBigBuf(got
,sizeof(got
),0);
246 WaitForResponse(CMD_ACK
,NULL
);
247 setGraphBuf(got
, 12000);
249 if (!DecodeT55xxBlock()) return 3;
251 sprintf(blk
,"%d", block
);
252 printT55xxBlock(blk
);
256 bool DecodeT55xxBlock(){
258 char buf
[8] = {0x00};
261 uint8_t bitRate
[8] = {8,16,32,40,50,64,100,128};
263 DemodBufferLen
= 0x00;
265 switch( config
.modulation
){
268 sprintf(cmdStr
,"%d", bitRate
[config
.bitrate
]/2 );
270 sprintf(cmdStr
,"%d %d", bitRate
[config
.bitrate
], config
.inverted
);
271 ans
= FSKrawDemod(cmdStr
, FALSE
);
275 sprintf(cmdStr
,"%d", bitRate
[config
.bitrate
]/2 );
277 sprintf(cmdStr
,"%d 1 8 5", bitRate
[config
.bitrate
] );
278 ans
= FSKrawDemod(cmdStr
, FALSE
);
282 sprintf(cmdStr
,"%d", bitRate
[config
.bitrate
]/2 );
284 sprintf(cmdStr
,"%d 0 8 5", bitRate
[config
.bitrate
] );
285 ans
= FSKrawDemod(cmdStr
, FALSE
);
289 sprintf(cmdStr
,"%d", bitRate
[config
.bitrate
]/2 );
291 sprintf(cmdStr
,"%d 0 10 8", bitRate
[config
.bitrate
] );
292 ans
= FSKrawDemod(cmdStr
, FALSE
);
296 sprintf(cmdStr
,"%d", bitRate
[config
.bitrate
]/2 );
298 sprintf(cmdStr
,"%d 1 10 8", bitRate
[config
.bitrate
] );
299 ans
= FSKrawDemod(cmdStr
, FALSE
);
302 sprintf(cmdStr
,"%d %d 1", bitRate
[config
.bitrate
], config
.inverted
);
303 ans
= ASKmanDemod(cmdStr
, FALSE
, FALSE
);
306 sprintf(cmdStr
,"%d %d 1", bitRate
[config
.bitrate
], config
.inverted
);
307 ans
= PSKDemod(cmdStr
, FALSE
);
310 sprintf(cmdStr
,"%d 1", bitRate
[config
.bitrate
] );
311 ans
= PSKDemod(cmdStr
, FALSE
);
312 psk1TOpsk2(DemodBuffer
, DemodBufferLen
);
315 sprintf(cmdStr
,"%d %d 1", bitRate
[config
.bitrate
], config
.inverted
);
316 ans
= PSKDemod(cmdStr
, FALSE
);
317 psk1TOpsk2(DemodBuffer
, DemodBufferLen
);
320 sprintf(cmdStr
,"%d %d 1", bitRate
[config
.bitrate
], config
.inverted
);
321 ans
= NRZrawDemod(cmdStr
, FALSE
);
324 sprintf(cmdStr
,"0 %d 0 1", bitRate
[config
.bitrate
] );
325 ans
= ASKbiphaseDemod(cmdStr
, FALSE
);
328 sprintf(cmdStr
,"0 %d 1 1", bitRate
[config
.bitrate
] );
329 ans
= ASKbiphaseDemod(cmdStr
, FALSE
);
337 int CmdT55xxDetect(const char *Cmd
){
339 char cmdp
= param_getchar(Cmd
, 0);
340 if (strlen(Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H')
341 return usage_t55xx_detect();
344 AquireData( CONFIGURATION_BLOCK
);
346 if ( !tryDetectModulation() )
347 PrintAndLog("Could not detect modulation automatically. Try setting it manually with \'lf t55xx config\'");
352 // detect configuration?
353 bool tryDetectModulation(){
354 char cmdStr
[8] = {0};
356 t55xx_conf_block_t tests
[15];
358 if (GetFskClock("", FALSE
, FALSE
)){
359 uint8_t fc1
= 0, fc2
= 0, clk
=0;
360 fskClocks(&fc1
, &fc2
, &clk
, FALSE
);
361 sprintf(cmdStr
,"%d", clk
/2);
363 if ( FSKrawDemod("0 0", FALSE
) && test(DEMOD_FSK
, &tests
[hits
].offset
)){
364 tests
[hits
].modulation
= DEMOD_FSK
;
365 if (fc1
==8 && fc2
== 5)
366 tests
[hits
].modulation
= DEMOD_FSK1a
;
367 else if (fc1
==10 && fc2
== 8)
368 tests
[hits
].modulation
= DEMOD_FSK2
;
370 tests
[hits
].inverted
= FALSE
;
371 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
374 if ( FSKrawDemod("0 1", FALSE
) && test(DEMOD_FSK
, &tests
[hits
].offset
)) {
375 tests
[hits
].modulation
= DEMOD_FSK
;
376 if (fc1
==8 && fc2
== 5)
377 tests
[hits
].modulation
= DEMOD_FSK1
;
378 else if (fc1
==10 && fc2
== 8)
379 tests
[hits
].modulation
= DEMOD_FSK2a
;
381 tests
[hits
].inverted
= TRUE
;
382 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
386 if ( ASKmanDemod("0 0 1", FALSE
, FALSE
) && test(DEMOD_ASK
, &tests
[hits
].offset
)) {
387 tests
[hits
].modulation
= DEMOD_ASK
;
388 tests
[hits
].inverted
= FALSE
;
389 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
393 if ( ASKmanDemod("0 1 1", FALSE
, FALSE
) && test(DEMOD_ASK
, &tests
[hits
].offset
)) {
394 tests
[hits
].modulation
= DEMOD_ASK
;
395 tests
[hits
].inverted
= TRUE
;
396 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
400 if ( NRZrawDemod("0 0 1", FALSE
) && test(DEMOD_NRZ
, &tests
[hits
].offset
)) {
401 tests
[hits
].modulation
= DEMOD_NRZ
;
402 tests
[hits
].inverted
= FALSE
;
403 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
407 if ( NRZrawDemod("0 1 1", FALSE
) && test(DEMOD_NRZ
, &tests
[hits
].offset
)) {
408 tests
[hits
].modulation
= DEMOD_NRZ
;
409 tests
[hits
].inverted
= TRUE
;
410 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
414 if ( PSKDemod("0 0 1", FALSE
) && test(DEMOD_PSK1
, &tests
[hits
].offset
)) {
415 tests
[hits
].modulation
= DEMOD_PSK1
;
416 tests
[hits
].inverted
= FALSE
;
417 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
421 if ( PSKDemod("0 1 1", FALSE
) && test(DEMOD_PSK1
, &tests
[hits
].offset
)) {
422 tests
[hits
].modulation
= DEMOD_PSK1
;
423 tests
[hits
].inverted
= TRUE
;
424 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
428 // PSK2 - needs a call to psk1TOpsk2.
429 if ( PSKDemod("0 0 1", FALSE
)) {
430 psk1TOpsk2(DemodBuffer
, DemodBufferLen
);
431 if (test(DEMOD_PSK2
, &tests
[hits
].offset
)){
432 tests
[hits
].modulation
= DEMOD_PSK2
;
433 tests
[hits
].inverted
= FALSE
;
434 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
437 } // inverse waves does not affect this demod
439 // PSK3 - needs a call to psk1TOpsk2.
440 if ( PSKDemod("0 0 1", FALSE
)) {
441 psk1TOpsk2(DemodBuffer
, DemodBufferLen
);
442 if (test(DEMOD_PSK3
, &tests
[hits
].offset
)){
443 tests
[hits
].modulation
= DEMOD_PSK3
;
444 tests
[hits
].inverted
= FALSE
;
445 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
448 } // inverse waves does not affect this demod
450 if ( ASKbiphaseDemod("0 0 0 1", FALSE
) && test(DEMOD_BI
, &tests
[hits
].offset
) ) {
451 tests
[hits
].modulation
= DEMOD_BI
;
452 tests
[hits
].inverted
= FALSE
;
453 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
456 if ( ASKbiphaseDemod("0 0 1 1", FALSE
) && test(DEMOD_BIa
, &tests
[hits
].offset
) ) {
457 tests
[hits
].modulation
= DEMOD_BIa
;
458 tests
[hits
].inverted
= TRUE
;
459 tests
[hits
].block0
= PackBits(tests
[hits
].offset
, 32, DemodBuffer
);
464 config
.modulation
= tests
[0].modulation
;
465 config
.inverted
= tests
[0].inverted
;
466 config
.offset
= tests
[0].offset
;
467 config
.block0
= tests
[0].block0
;
468 printConfiguration( config
);
473 PrintAndLog("Found [%d] possible matches for modulation.",hits
);
474 for(int i
=0; i
<hits
; ++i
){
475 PrintAndLog("--[%d]---------------", i
+1);
476 printConfiguration( tests
[i
] );
482 bool testModulation(uint8_t mode
, uint8_t modread
){
485 if (modread
> 3 && modread
< 8) return TRUE
;
488 if (modread
== DEMOD_ASK
) return TRUE
;
491 if (modread
== DEMOD_PSK1
) return TRUE
;
494 if (modread
== DEMOD_PSK2
) return TRUE
;
497 if (modread
== DEMOD_PSK3
) return TRUE
;
500 if (modread
== DEMOD_NRZ
) return TRUE
;
503 if (modread
== DEMOD_BI
) return TRUE
;
506 if (modread
== DEMOD_BIa
) return TRUE
;
514 bool testBitRate(uint8_t readRate
, uint8_t mod
){
515 uint8_t expected
[8] = {8, 16, 32, 40, 50, 64, 100, 128};
519 detRate
= GetFskClock("",FALSE
, FALSE
);
520 if (expected
[readRate
] == detRate
) {
521 config
.bitrate
= readRate
;
526 detRate
= GetFskClock("",FALSE
, FALSE
);
527 if (expected
[readRate
] == detRate
) {
528 config
.bitrate
= readRate
;
533 detRate
= GetFskClock("",FALSE
, FALSE
);
534 if (expected
[readRate
] == detRate
) {
535 config
.bitrate
= readRate
;
540 detRate
= GetFskClock("",FALSE
, FALSE
);
541 if (expected
[readRate
] == detRate
) {
542 config
.bitrate
= readRate
;
547 detRate
= GetFskClock("",FALSE
, FALSE
);
548 if (expected
[readRate
] == detRate
) {
549 config
.bitrate
= readRate
;
554 detRate
= GetAskClock("",FALSE
, FALSE
);
555 if (expected
[readRate
] == detRate
) {
556 config
.bitrate
= readRate
;
561 detRate
= GetPskClock("",FALSE
, FALSE
);
562 if (expected
[readRate
] == detRate
) {
563 config
.bitrate
= readRate
;
568 detRate
= GetPskClock("",FALSE
, FALSE
);
569 if (expected
[readRate
] == detRate
) {
570 config
.bitrate
= readRate
;
575 detRate
= GetPskClock("",FALSE
, FALSE
);
576 if (expected
[readRate
] == detRate
) {
577 config
.bitrate
= readRate
;
582 detRate
= GetNrzClock("",FALSE
, FALSE
);
583 if (expected
[readRate
] == detRate
) {
584 config
.bitrate
= readRate
;
589 detRate
= GetAskClock("",FALSE
, FALSE
);
590 if (expected
[readRate
] == detRate
) {
591 config
.bitrate
= readRate
;
601 bool test(uint8_t mode
, uint8_t *offset
){
603 if ( !DemodBufferLen
) return FALSE
;
605 for (uint8_t idx
= 0; idx
< 64; idx
++){
607 if ( PackBits(si
, 32, DemodBuffer
) == 0x00 ) continue;
609 uint8_t safer
= PackBits(si
, 4, DemodBuffer
); si
+= 4; //master key
610 uint8_t resv
= PackBits(si
, 4, DemodBuffer
); si
+= 4; //was 7 & +=7+3 //should be only 4 bits if extended mode
611 // 2nibble must be zeroed.
612 // moved test to here, since this gets most faults first.
613 if ( resv
> 0x00) continue;
615 uint8_t xtRate
= PackBits(si
, 3, DemodBuffer
); si
+= 3; //new
616 uint8_t bitRate
= PackBits(si
, 3, DemodBuffer
); si
+= 3; //new could check bit rate
617 uint8_t extend
= PackBits(si
, 1, DemodBuffer
); si
+= 1; //bit 15 extended mode
618 uint8_t modread
= PackBits(si
, 5, DemodBuffer
); si
+= 5+2+1; //new
619 //uint8_t pskcr = PackBits(si, 2, DemodBuffer); si += 2+1; //new could check psk cr
620 uint8_t nml01
= PackBits(si
, 1, DemodBuffer
); si
+= 1+5; //bit 24 , 30, 31 could be tested for 0 if not extended mode
621 uint8_t nml02
= PackBits(si
, 2, DemodBuffer
); si
+= 2;
624 bool extMode
=( (safer
== 0x6 || safer
== 0x9) && extend
) ? TRUE
: FALSE
;
627 if (nml01
|| nml02
|| xtRate
) continue;
630 if (!testModulation(mode
, modread
)) continue;
633 if (!testBitRate(bitRate
, mode
)) continue;
639 void printT55xxBlock(const char *demodStr
){
641 uint8_t i
= config
.offset
;
642 uint8_t endpos
= 32 + i
;
643 uint32_t blockData
= 0;
644 uint8_t bits
[64] = {0x00};
646 if ( !DemodBufferLen
) return;
648 if ( endpos
> DemodBufferLen
){
649 PrintAndLog("The configured offset %d is too big. Possible offset: %d)", i
, DemodBufferLen
-32);
653 for (; i
< endpos
; ++i
)
654 bits
[i
- config
.offset
]=DemodBuffer
[i
];
656 blockData
= PackBits(0, 32, bits
);
657 PrintAndLog("0x%08X %s [%s]", blockData
, sprint_bin(bits
,32), demodStr
);
660 int special(const char *Cmd
) {
661 uint32_t blockData
= 0;
662 uint8_t bits
[32] = {0x00};
664 PrintAndLog("[OFFSET] [DATA] [BINARY]");
665 PrintAndLog("----------------------------------------------------");
669 for (i
= 0; i
< 32; ++i
)
670 bits
[i
]=DemodBuffer
[j
+i
];
672 blockData
= PackBits(0, 32, bits
);
674 PrintAndLog("[%02d] 0x%08X %s",j
, blockData
, sprint_bin(bits
,32));
679 void printConfiguration( t55xx_conf_block_t b
){
680 PrintAndLog("Modulation : %s", GetSelectedModulationStr(b
.modulation
) );
681 PrintAndLog("Bit Rate : %s", GetBitRateStr(b
.bitrate
) );
682 PrintAndLog("Inverted : %s", (b
.inverted
) ? "Yes" : "No" );
683 PrintAndLog("Offset : %d", b
.offset
);
684 PrintAndLog("Block0 : 0x%08X", b
.block0
);
688 int CmdT55xxWriteBlock(const char *Cmd
)
690 int block
= 8; //default to invalid block
691 int data
= 0xFFFFFFFF; //default to blank Block
692 int password
= 0xFFFFFFFF; //default to blank Block 7
694 char cmdp
= param_getchar(Cmd
, 0);
695 if (cmdp
== 'h' || cmdp
== 'H') {
700 int res
= sscanf(Cmd
, "%d %x %x",&block
, &data
, &password
);
702 if ( res
< 2 || res
> 3) {
708 PrintAndLog("Block number must be between 0 and 7");
712 UsbCommand c
= {CMD_T55XX_WRITE_BLOCK
, {data
, block
, 0}};
713 c
.d
.asBytes
[0] = 0x0;
715 PrintAndLog("Writing to block: %d data : 0x%08X", block
, data
);
720 c
.d
.asBytes
[0] = 0x1;
721 PrintAndLog("pwd : 0x%08X", password
);
727 int CmdT55xxReadTrace(const char *Cmd
)
729 char cmdp
= param_getchar(Cmd
, 0);
731 if (strlen(Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H')
732 return usage_t55xx_trace();
735 AquireData( TRACE_BLOCK
);
737 if (!DecodeT55xxBlock()) return 1;
739 if ( !DemodBufferLen
) return 1;
741 RepaintGraphWindow();
743 if (config
.offset
> 5)
745 uint8_t si
= config
.offset
+repeat
;
746 uint32_t bl0
= PackBits(si
, 32, DemodBuffer
);
747 uint32_t bl1
= PackBits(si
+32, 32, DemodBuffer
);
749 uint32_t acl
= PackBits(si
, 8, DemodBuffer
); si
+= 8;
750 uint32_t mfc
= PackBits(si
, 8, DemodBuffer
); si
+= 8;
751 uint32_t cid
= PackBits(si
, 5, DemodBuffer
); si
+= 5;
752 uint32_t icr
= PackBits(si
, 3, DemodBuffer
); si
+= 3;
753 uint32_t year
= PackBits(si
, 4, DemodBuffer
); si
+= 4;
754 uint32_t quarter
= PackBits(si
, 2, DemodBuffer
); si
+= 2;
755 uint32_t lotid
= PackBits(si
, 12, DemodBuffer
); si
+= 12;
756 uint32_t wafer
= PackBits(si
, 5, DemodBuffer
); si
+= 5;
757 uint32_t dw
= PackBits(si
, 15, DemodBuffer
);
762 PrintAndLog("-- T55xx Trace Information ----------------------------------");
763 PrintAndLog("-------------------------------------------------------------");
764 PrintAndLog(" ACL Allocation class (ISO/IEC 15963-1) : 0x%02X (%d)", acl
, acl
);
765 PrintAndLog(" MFC Manufacturer ID (ISO/IEC 7816-6) : 0x%02X (%d) - %s", mfc
, mfc
, getTagInfo(mfc
));
766 PrintAndLog(" CID : 0x%02X (%d) - %s", cid
, cid
, GetModelStrFromCID(cid
));
767 PrintAndLog(" ICR IC Revision : %d",icr
);
768 PrintAndLog(" Manufactured");
769 PrintAndLog(" Year/Quarter : %d/%d",year
, quarter
);
770 PrintAndLog(" Lot ID : %d", lotid
);
771 PrintAndLog(" Wafer number : %d", wafer
);
772 PrintAndLog(" Die Number : %d", dw
);
773 PrintAndLog("-------------------------------------------------------------");
774 PrintAndLog(" Raw Data - Page 1");
775 PrintAndLog(" Block 0 : 0x%08X %s", bl0
, sprint_bin(DemodBuffer
+config
.offset
+repeat
,32) );
776 PrintAndLog(" Block 1 : 0x%08X %s", bl1
, sprint_bin(DemodBuffer
+config
.offset
+repeat
+32,32) );
777 PrintAndLog("-------------------------------------------------------------");
780 PrintAndLog("The modulation is most likely wrong since the ACL is not 0xE0. ");
784 1-8 ACL Allocation class (ISO/IEC 15963-1) 0xE0
785 9-16 MFC Manufacturer ID (ISO/IEC 7816-6) 0x15 Atmel Corporation
786 17-21 CID 0x1 = Atmel ATA5577M1 0x2 = Atmel ATA5577M2
787 22-24 ICR IC revision
788 25-28 YEAR (BCD encoded) 9 (= 2009)
789 29-30 QUARTER 1,2,3,4
795 18-32 DW, die number sequential
801 int CmdT55xxInfo(const char *Cmd
){
803 Page 0 Block 0 Configuration data.
807 char cmdp
= param_getchar(Cmd
, 0);
809 if (strlen(Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H')
810 return usage_t55xx_info();
813 AquireData( CONFIGURATION_BLOCK
);
815 if (!DecodeT55xxBlock()) return 1;
817 if ( !DemodBufferLen
) return 1;
819 uint8_t si
= config
.offset
;
820 uint32_t bl0
= PackBits(si
, 32, DemodBuffer
);
822 uint32_t safer
= PackBits(si
, 4, DemodBuffer
); si
+= 4;
823 uint32_t resv
= PackBits(si
, 7, DemodBuffer
); si
+= 7;
824 uint32_t dbr
= PackBits(si
, 3, DemodBuffer
); si
+= 3;
825 uint32_t extend
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
826 uint32_t datamod
= PackBits(si
, 5, DemodBuffer
); si
+= 5;
827 uint32_t pskcf
= PackBits(si
, 2, DemodBuffer
); si
+= 2;
828 uint32_t aor
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
829 uint32_t otp
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
830 uint32_t maxblk
= PackBits(si
, 3, DemodBuffer
); si
+= 3;
831 uint32_t pwd
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
832 uint32_t sst
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
833 uint32_t fw
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
834 uint32_t inv
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
835 uint32_t por
= PackBits(si
, 1, DemodBuffer
); si
+= 1;
838 PrintAndLog("-- T55xx Configuration & Tag Information --------------------");
839 PrintAndLog("-------------------------------------------------------------");
840 PrintAndLog(" Safer key : %s", GetSaferStr(safer
));
841 PrintAndLog(" reserved : %d", resv
);
842 PrintAndLog(" Data bit rate : %s", GetBitRateStr(dbr
));
843 PrintAndLog(" eXtended mode : %s", (extend
) ? "Yes - Warning":"No");
844 PrintAndLog(" Modulation : %s", GetModulationStr(datamod
));
845 PrintAndLog(" PSK clock frequency : %d", pskcf
);
846 PrintAndLog(" AOR - Answer on Request : %s", (aor
) ? "Yes":"No");
847 PrintAndLog(" OTP - One Time Pad : %s", (otp
) ? "Yes - Warning":"No" );
848 PrintAndLog(" Max block : %d", maxblk
);
849 PrintAndLog(" Password mode : %s", (pwd
) ? "Yes":"No");
850 PrintAndLog(" Sequence Start Terminator : %s", (sst
) ? "Yes":"No");
851 PrintAndLog(" Fast Write : %s", (fw
) ? "Yes":"No");
852 PrintAndLog(" Inverse data : %s", (inv
) ? "Yes":"No");
853 PrintAndLog(" POR-Delay : %s", (por
) ? "Yes":"No");
854 PrintAndLog("-------------------------------------------------------------");
855 PrintAndLog(" Raw Data - Page 0");
856 PrintAndLog(" Block 0 : 0x%08X %s", bl0
, sprint_bin(DemodBuffer
+config
.offset
,32) );
857 PrintAndLog("-------------------------------------------------------------");
862 int CmdT55xxDump(const char *Cmd
){
865 uint8_t pwd
[4] = {0x00};
867 char cmdp
= param_getchar(Cmd
, 0);
868 if ( cmdp
== 'h' || cmdp
== 'H') {
873 bool hasPwd
= ( strlen(Cmd
) > 0);
875 if (param_gethex(Cmd
, 0, pwd
, 8)) {
876 PrintAndLog("password must include 8 HEX symbols");
881 for ( int i
= 0; i
<8; ++i
){
882 memset(s
,0,sizeof(s
));
884 sprintf(s
,"%d %02x%02x%02x%02x", i
, pwd
[0],pwd
[1],pwd
[2],pwd
[3]);
888 CmdT55xxReadBlock(s
);
893 int AquireData( uint8_t block
){
897 if ( block
== CONFIGURATION_BLOCK
)
898 c
.cmd
= CMD_T55XX_READ_BLOCK
;
899 else if (block
== TRACE_BLOCK
)
900 c
.cmd
= CMD_T55XX_READ_TRACE
;
905 c
.d
.asBytes
[0] = 0x0;
909 // c.arg[2] = password;
910 // c.d.asBytes[0] = 0x1;
914 if ( !WaitForResponseTimeout(CMD_ACK
,NULL
,2500) ) {
915 PrintAndLog("command execution time out");
920 GetFromBigBuf(got
,sizeof(got
),0);
921 WaitForResponse(CMD_ACK
,NULL
);
922 setGraphBuf(got
, 12000);
926 char * GetBitRateStr(uint32_t id
){
931 sprintf(retStr
,"%d - RF/8",id
);
934 sprintf(retStr
,"%d - RF/16",id
);
937 sprintf(retStr
,"%d - RF/32",id
);
940 sprintf(retStr
,"%d - RF/40",id
);
943 sprintf(retStr
,"%d - RF/50",id
);
946 sprintf(retStr
,"%d - RF/64",id
);
949 sprintf(retStr
,"%d - RF/100",id
);
952 sprintf(retStr
,"%d - RF/128",id
);
955 sprintf(retStr
,"%d - (Unknown)",id
);
962 char * GetSaferStr(uint32_t id
){
966 sprintf(retStr
,"%d",id
);
968 sprintf(retStr
,"%d - passwd",id
);
971 sprintf(retStr
,"%d - testmode",id
);
976 char * GetModulationStr( uint32_t id
){
982 sprintf(retStr
,"%d - DIRECT (ASK/NRZ)",id
);
985 sprintf(retStr
,"%d - PSK 1 phase change when input changes",id
);
988 sprintf(retStr
,"%d - PSK 2 phase change on bitclk if input high",id
);
991 sprintf(retStr
,"%d - PSK 3 phase change on rising edge of input",id
);
994 sprintf(retStr
,"%d - FSK 1 RF/8 RF/5",id
);
997 sprintf(retStr
,"%d - FSK 2 RF/8 RF/10",id
);
1000 sprintf(retStr
,"%d - FSK 1a RF/5 RF/8",id
);
1003 sprintf(retStr
,"%d - FSK 2a RF/10 RF/8",id
);
1006 sprintf(retStr
,"%d - Manschester",id
);
1009 sprintf(retStr
,"%d - Biphase",id
);
1012 sprintf(retStr
,"%d - Biphase a - AKA Conditional Dephase Encoding(CDP)",id
);
1015 sprintf(retStr
,"%d - Reserved",id
);
1018 sprintf(retStr
,"0x%02X (Unknown)",id
);
1024 char * GetModelStrFromCID(uint32_t cid
){
1026 static char buf
[10];
1029 if (cid
== 1) sprintf(retStr
,"ATA5577M1");
1030 if (cid
== 2) sprintf(retStr
,"ATA5577M2");
1034 char * GetSelectedModulationStr( uint8_t id
){
1036 static char buf
[16];
1041 sprintf(retStr
,"FSK");
1044 sprintf(retStr
,"FSK1");
1047 sprintf(retStr
,"FSK1a");
1050 sprintf(retStr
,"FSK2");
1053 sprintf(retStr
,"FSK2a");
1056 sprintf(retStr
,"ASK");
1059 sprintf(retStr
,"DIRECT/NRZ");
1062 sprintf(retStr
,"PSK1");
1065 sprintf(retStr
,"PSK2");
1068 sprintf(retStr
,"PSK3");
1071 sprintf(retStr
,"BIPHASE");
1074 sprintf(retStr
,"BIPHASEa - (CDP)");
1077 sprintf(retStr
,"(Unknown)");
1083 uint32_t PackBits(uint8_t start
, uint8_t len
, uint8_t* bits
){
1088 if (len
> 32) return 0;
1091 for (; j
>= 0; --j
, ++i
)
1092 tmp
|= bits
[i
] << j
;
1097 static command_t CommandTable
[] =
1099 {"help", CmdHelp
, 1, "This help"},
1100 {"config", CmdT55xxSetConfig
, 1, "Set/Get T55XX configuration (modulation, inverted, offset, rate)"},
1101 {"detect", CmdT55xxDetect
, 0, "[1] Try detecting the tag modulation from reading the configuration block."},
1102 {"read", CmdT55xxReadBlock
, 0, "<block> [password] -- Read T55xx block data (page 0) [optional password]"},
1103 {"write", CmdT55xxWriteBlock
,0, "<block> <data> [password] -- Write T55xx block data (page 0) [optional password]"},
1104 {"trace", CmdT55xxReadTrace
, 0, "[1] Show T55xx traceability data (page 1/ blk 0-1)"},
1105 {"info", CmdT55xxInfo
, 0, "[1] Show T55xx configuration data (page 0/ blk 0)"},
1106 {"dump", CmdT55xxDump
, 0, "[password] Dump T55xx card block 0-7. [optional password]"},
1107 {"special", special
, 0, "Show block changes with 64 different offsets"},
1108 {NULL
, NULL
, 0, NULL
}
1111 int CmdLFT55XX(const char *Cmd
)
1113 CmdsParse(CommandTable
, Cmd
);
1117 int CmdHelp(const char *Cmd
)
1119 CmdsHelp(CommandTable
);