1 //-----------------------------------------------------------------------------
2 // Merlok - June 2011, 2012
3 // Gerhard de Koning Gans - May 2008
4 // Hagen Fritsch - June 2010
5 // Midnitesnake - Dec 2013
6 // Andy Davies - Apr 2014
9 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
10 // at your option, any later version. See the LICENSE.txt file for the text of
12 //-----------------------------------------------------------------------------
13 // Routines to support ISO 14443 type A.
14 //-----------------------------------------------------------------------------
16 #include "mifarecmd.h"
21 // the block number for the ISO14443-4 PCB
22 uint8_t pcb_blocknum
= 0;
23 // Deselect card by sending a s-block. the crc is precalced for speed
24 static uint8_t deselect_cmd
[] = {0xc2,0xe0,0xb4};
26 //-----------------------------------------------------------------------------
27 // Select, Authenticate, Read a MIFARE tag.
29 //-----------------------------------------------------------------------------
30 void MifareReadBlock(uint8_t arg0
, uint8_t arg1
, uint8_t arg2
, uint8_t *datain
)
33 uint8_t blockNo
= arg0
;
34 uint8_t keyType
= arg1
;
36 ui64Key
= bytes_to_num(datain
, 6);
40 byte_t dataoutbuf
[16];
43 struct Crypto1State mpcs
= {0, 0};
44 struct Crypto1State
*pcs
;
49 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
56 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
57 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
61 if(mifare_classic_auth(pcs
, cuid
, blockNo
, keyType
, ui64Key
, AUTH_FIRST
)) {
62 if (MF_DBGLEVEL
>= 1) Dbprintf("Auth error");
66 if(mifare_classic_readblock(pcs
, cuid
, blockNo
, dataoutbuf
)) {
67 if (MF_DBGLEVEL
>= 1) Dbprintf("Read block error");
71 if(mifare_classic_halt(pcs
, cuid
)) {
72 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
80 // ----------------------------- crypto1 destroy
83 if (MF_DBGLEVEL
>= 2) DbpString("READ BLOCK FINISHED");
86 cmd_send(CMD_ACK
,isOK
,0,0,dataoutbuf
,16);
89 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
93 void MifareUC_Auth(uint8_t arg0
, uint8_t *keybytes
){
95 bool turnOffField
= (arg0
== 1);
97 LED_A_ON(); LED_B_OFF(); LED_C_OFF();
99 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
101 if(!iso14443a_select_card(NULL
, NULL
, NULL
)) {
102 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Can't select card");
107 if(!mifare_ultra_auth(keybytes
)){
108 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Authentication failed");
114 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
117 cmd_send(CMD_ACK
,1,0,0,0,0);
121 // Arg1 = UsePwd bool
122 // datain = PWD bytes,
123 void MifareUReadBlock(uint8_t arg0
, uint8_t arg1
, uint8_t *datain
)
125 uint8_t blockNo
= arg0
;
126 byte_t dataout
[16] = {0x00};
127 bool useKey
= (arg1
== 1); //UL_C
128 bool usePwd
= (arg1
== 2); //UL_EV1/NTAG
133 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
135 int len
= iso14443a_select_card(NULL
, NULL
, NULL
);
137 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Can't select card (RC:%02X)",len
);
142 // UL-C authentication
144 uint8_t key
[16] = {0x00};
145 memcpy(key
, datain
, sizeof(key
) );
147 if ( !mifare_ultra_auth(key
) ) {
153 // UL-EV1 / NTAG authentication
155 uint8_t pwd
[4] = {0x00};
156 memcpy(pwd
, datain
, 4);
157 uint8_t pack
[4] = {0,0,0,0};
158 if (!mifare_ul_ev1_auth(pwd
, pack
)) {
164 if( mifare_ultra_readblock(blockNo
, dataout
) ) {
165 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Read block error");
170 if( mifare_ultra_halt() ) {
171 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Halt error");
176 cmd_send(CMD_ACK
,1,0,0,dataout
,16);
177 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
181 //-----------------------------------------------------------------------------
182 // Select, Authenticate, Read a MIFARE tag.
183 // read sector (data = 4 x 16 bytes = 64 bytes, or 16 x 16 bytes = 256 bytes)
184 //-----------------------------------------------------------------------------
185 void MifareReadSector(uint8_t arg0
, uint8_t arg1
, uint8_t arg2
, uint8_t *datain
)
188 uint8_t sectorNo
= arg0
;
189 uint8_t keyType
= arg1
;
190 uint64_t ui64Key
= 0;
191 ui64Key
= bytes_to_num(datain
, 6);
195 byte_t dataoutbuf
[16 * 16];
198 struct Crypto1State mpcs
= {0, 0};
199 struct Crypto1State
*pcs
;
205 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
212 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
214 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
218 if(isOK
&& mifare_classic_auth(pcs
, cuid
, FirstBlockOfSector(sectorNo
), keyType
, ui64Key
, AUTH_FIRST
)) {
220 if (MF_DBGLEVEL
>= 1) Dbprintf("Auth error");
223 for (uint8_t blockNo
= 0; isOK
&& blockNo
< NumBlocksPerSector(sectorNo
); blockNo
++) {
224 if(mifare_classic_readblock(pcs
, cuid
, FirstBlockOfSector(sectorNo
) + blockNo
, dataoutbuf
+ 16 * blockNo
)) {
226 if (MF_DBGLEVEL
>= 1) Dbprintf("Read sector %2d block %2d error", sectorNo
, blockNo
);
231 if(mifare_classic_halt(pcs
, cuid
)) {
232 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
235 // ----------------------------- crypto1 destroy
236 crypto1_destroy(pcs
);
238 if (MF_DBGLEVEL
>= 2) DbpString("READ SECTOR FINISHED");
241 cmd_send(CMD_ACK
,isOK
,0,0,dataoutbuf
,16*NumBlocksPerSector(sectorNo
));
245 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
249 // arg0 = blockNo (start)
250 // arg1 = Pages (number of blocks)
252 // datain = KEY bytes
253 void MifareUReadCard(uint8_t arg0
, uint16_t arg1
, uint8_t arg2
, uint8_t *datain
)
255 // free eventually allocated BigBuf memory
261 uint8_t blockNo
= arg0
;
262 uint16_t blocks
= arg1
;
263 bool useKey
= (arg2
== 1); //UL_C
264 bool usePwd
= (arg2
== 2); //UL_EV1/NTAG
265 uint32_t countblocks
= 0;
266 uint8_t *dataout
= BigBuf_malloc(CARD_MEMORY_SIZE
);
267 if (dataout
== NULL
){
268 Dbprintf("out of memory");
275 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
277 int len
= iso14443a_select_card(NULL
, NULL
, NULL
);
279 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Can't select card (RC:%d)",len
);
284 // UL-C authentication
286 uint8_t key
[16] = {0x00};
287 memcpy(key
, datain
, sizeof(key
) );
289 if ( !mifare_ultra_auth(key
) ) {
295 // UL-EV1 / NTAG authentication
297 uint8_t pwd
[4] = {0x00};
298 memcpy(pwd
, datain
, sizeof(pwd
));
299 uint8_t pack
[4] = {0,0,0,0};
301 if (!mifare_ul_ev1_auth(pwd
, pack
)){
307 for (int i
= 0; i
< blocks
; i
++){
308 if ((i
*4) + 4 >= CARD_MEMORY_SIZE
) {
309 Dbprintf("Data exceeds buffer!!");
313 len
= mifare_ultra_readblock(blockNo
+ i
, dataout
+ 4 * i
);
316 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Read block %d error",i
);
317 // if no blocks read - error out
322 //stop at last successful read block and return what we got
330 len
= mifare_ultra_halt();
332 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Halt error");
337 if (MF_DBGLEVEL
>= MF_DBG_EXTENDED
) Dbprintf("Blocks read %d", countblocks
);
341 cmd_send(CMD_ACK
, 1, countblocks
, BigBuf_max_traceLen(), 0, 0);
342 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
347 //-----------------------------------------------------------------------------
348 // Select, Authenticate, Write a MIFARE tag.
350 //-----------------------------------------------------------------------------
351 void MifareWriteBlock(uint8_t arg0
, uint8_t arg1
, uint8_t arg2
, uint8_t *datain
)
354 uint8_t blockNo
= arg0
;
355 uint8_t keyType
= arg1
;
356 uint64_t ui64Key
= 0;
357 byte_t blockdata
[16];
359 ui64Key
= bytes_to_num(datain
, 6);
360 memcpy(blockdata
, datain
+ 10, 16);
366 struct Crypto1State mpcs
= {0, 0};
367 struct Crypto1State
*pcs
;
373 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
380 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
381 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
385 if(mifare_classic_auth(pcs
, cuid
, blockNo
, keyType
, ui64Key
, AUTH_FIRST
)) {
386 if (MF_DBGLEVEL
>= 1) Dbprintf("Auth error");
390 if(mifare_classic_writeblock(pcs
, cuid
, blockNo
, blockdata
)) {
391 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
395 if(mifare_classic_halt(pcs
, cuid
)) {
396 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
404 // ----------------------------- crypto1 destroy
405 crypto1_destroy(pcs
);
407 if (MF_DBGLEVEL
>= 2) DbpString("WRITE BLOCK FINISHED");
410 cmd_send(CMD_ACK
,isOK
,0,0,0,0);
415 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
419 void MifareUWriteBlock(uint8_t arg0
, uint8_t *datain
)
421 uint8_t blockNo
= arg0
;
422 byte_t blockdata
[16] = {0x00};
424 memcpy(blockdata
, datain
, 16);
426 uint8_t uid
[10] = {0x00};
428 LED_A_ON(); LED_B_OFF(); LED_C_OFF();
431 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
433 if(!iso14443a_select_card(uid
, NULL
, NULL
)) {
434 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
439 if(mifare_ultra_writeblock(blockNo
, blockdata
)) {
440 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
444 if(mifare_ultra_halt()) {
445 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
450 if (MF_DBGLEVEL
>= 2) DbpString("WRITE BLOCK FINISHED");
452 cmd_send(CMD_ACK
,1,0,0,0,0);
453 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
457 // Arg0 : Block to write to.
458 // Arg1 : 0 = use no authentication.
459 // 1 = use 0x1A authentication.
460 // 2 = use 0x1B authentication.
461 // datain : 4 first bytes is data to be written.
462 // : 4/16 next bytes is authentication key.
463 void MifareUWriteBlock_Special(uint8_t arg0
, uint8_t arg1
, uint8_t *datain
)
465 uint8_t blockNo
= arg0
;
466 bool useKey
= (arg1
== 1); //UL_C
467 bool usePwd
= (arg1
== 2); //UL_EV1/NTAG
468 byte_t blockdata
[4] = {0x00};
470 memcpy(blockdata
, datain
,4);
475 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
477 if(!iso14443a_select_card(NULL
, NULL
, NULL
)) {
478 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
483 // UL-C authentication
485 uint8_t key
[16] = {0x00};
486 memcpy(key
, datain
+4, sizeof(key
) );
488 if ( !mifare_ultra_auth(key
) ) {
494 // UL-EV1 / NTAG authentication
496 uint8_t pwd
[4] = {0x00};
497 memcpy(pwd
, datain
+4, 4);
498 uint8_t pack
[4] = {0,0,0,0};
499 if (!mifare_ul_ev1_auth(pwd
, pack
)) {
505 if(mifare_ultra_special_writeblock(blockNo
, blockdata
)) {
506 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
511 if(mifare_ultra_halt()) {
512 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
517 if (MF_DBGLEVEL
>= 2) DbpString("WRITE BLOCK FINISHED");
519 cmd_send(CMD_ACK
,1,0,0,0,0);
520 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
524 void MifareUSetPwd(uint8_t arg0
, uint8_t *datain
){
526 uint8_t pwd
[16] = {0x00};
527 byte_t blockdata
[4] = {0x00};
529 memcpy(pwd
, datain
, 16);
531 LED_A_ON(); LED_B_OFF(); LED_C_OFF();
533 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
535 if(!iso14443a_select_card(NULL
, NULL
, NULL
)) {
536 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
541 blockdata
[0] = pwd
[7];
542 blockdata
[1] = pwd
[6];
543 blockdata
[2] = pwd
[5];
544 blockdata
[3] = pwd
[4];
545 if(mifare_ultra_special_writeblock( 44, blockdata
)) {
546 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
551 blockdata
[0] = pwd
[3];
552 blockdata
[1] = pwd
[2];
553 blockdata
[2] = pwd
[1];
554 blockdata
[3] = pwd
[0];
555 if(mifare_ultra_special_writeblock( 45, blockdata
)) {
556 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
561 blockdata
[0] = pwd
[15];
562 blockdata
[1] = pwd
[14];
563 blockdata
[2] = pwd
[13];
564 blockdata
[3] = pwd
[12];
565 if(mifare_ultra_special_writeblock( 46, blockdata
)) {
566 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
571 blockdata
[0] = pwd
[11];
572 blockdata
[1] = pwd
[10];
573 blockdata
[2] = pwd
[9];
574 blockdata
[3] = pwd
[8];
575 if(mifare_ultra_special_writeblock( 47, blockdata
)) {
576 if (MF_DBGLEVEL
>= 1) Dbprintf("Write block error");
581 if(mifare_ultra_halt()) {
582 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
587 cmd_send(CMD_ACK
,1,0,0,0,0);
588 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
592 // Return 1 if the nonce is invalid else return 0
593 int valid_nonce(uint32_t Nt
, uint32_t NtEnc
, uint32_t Ks1
, uint8_t *parity
) {
594 return ((oddparity((Nt
>> 24) & 0xFF) == ((parity
[0]) ^ oddparity((NtEnc
>> 24) & 0xFF) ^ BIT(Ks1
,16))) & \
595 (oddparity((Nt
>> 16) & 0xFF) == ((parity
[1]) ^ oddparity((NtEnc
>> 16) & 0xFF) ^ BIT(Ks1
,8))) & \
596 (oddparity((Nt
>> 8) & 0xFF) == ((parity
[2]) ^ oddparity((NtEnc
>> 8) & 0xFF) ^ BIT(Ks1
,0)))) ? 1 : 0;
600 //-----------------------------------------------------------------------------
601 // MIFARE nested authentication.
603 //-----------------------------------------------------------------------------
604 void MifareNested(uint32_t arg0
, uint32_t arg1
, uint32_t calibrate
, uint8_t *datain
)
607 uint8_t blockNo
= arg0
& 0xff;
608 uint8_t keyType
= (arg0
>> 8) & 0xff;
609 uint8_t targetBlockNo
= arg1
& 0xff;
610 uint8_t targetKeyType
= (arg1
>> 8) & 0xff;
611 uint64_t ui64Key
= 0;
613 ui64Key
= bytes_to_num(datain
, 6);
616 uint16_t rtr
, i
, j
, len
;
618 static uint16_t dmin
, dmax
;
620 uint32_t cuid
, nt1
, nt2
, nttmp
, nttest
, ks1
;
622 uint32_t target_nt
[2], target_ks
[2];
624 uint8_t par_array
[4];
626 struct Crypto1State mpcs
= {0, 0};
627 struct Crypto1State
*pcs
;
629 uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
];
631 uint32_t auth1_time
, auth2_time
;
632 static uint16_t delta_time
;
634 // free eventually allocated BigBuf memory
640 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
646 // statistics on nonce distance
647 if (calibrate
) { // for first call only. Otherwise reuse previous calibration
655 for (rtr
= 0; rtr
< 17; rtr
++) {
657 // prepare next select. No need to power down the card.
658 if(mifare_classic_halt(pcs
, cuid
)) {
659 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Halt error");
664 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
665 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Can't select card");
671 if(mifare_classic_authex(pcs
, cuid
, blockNo
, keyType
, ui64Key
, AUTH_FIRST
, &nt1
, &auth1_time
)) {
672 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Auth1 error");
678 auth2_time
= auth1_time
+ delta_time
;
682 if(mifare_classic_authex(pcs
, cuid
, blockNo
, keyType
, ui64Key
, AUTH_NESTED
, &nt2
, &auth2_time
)) {
683 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Auth2 error");
688 nttmp
= prng_successor(nt1
, 100); //NXP Mifare is typical around 840,but for some unlicensed/compatible mifare card this can be 160
689 for (i
= 101; i
< 1200; i
++) {
690 nttmp
= prng_successor(nttmp
, 1);
691 if (nttmp
== nt2
) break;
701 delta_time
= auth2_time
- auth1_time
+ 32; // allow some slack for proper timing
703 if (MF_DBGLEVEL
>= 3) Dbprintf("Nested: calibrating... ntdist=%d", i
);
707 if (rtr
<= 1) return;
709 davg
= (davg
+ (rtr
- 1)/2) / (rtr
- 1);
711 if (MF_DBGLEVEL
>= 3) Dbprintf("min=%d max=%d avg=%d, delta_time=%d", dmin
, dmax
, davg
, delta_time
);
719 // -------------------------------------------------------------------------------------------------
723 // get crypted nonces for target sector
724 for(i
=0; i
< 2; i
++) { // look for exactly two different nonces
727 while(target_nt
[i
] == 0) { // continue until we have an unambiguous nonce
729 // prepare next select. No need to power down the card.
730 if(mifare_classic_halt(pcs
, cuid
)) {
731 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Halt error");
735 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
736 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Can't select card");
741 if(mifare_classic_authex(pcs
, cuid
, blockNo
, keyType
, ui64Key
, AUTH_FIRST
, &nt1
, &auth1_time
)) {
742 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Auth1 error");
746 // nested authentication
747 auth2_time
= auth1_time
+ delta_time
;
748 len
= mifare_sendcmd_shortex(pcs
, AUTH_NESTED
, 0x60 + (targetKeyType
& 0x01), targetBlockNo
, receivedAnswer
, par
, &auth2_time
);
750 if (MF_DBGLEVEL
>= 1) Dbprintf("Nested: Auth2 error len=%d", len
);
754 nt2
= bytes_to_num(receivedAnswer
, 4);
755 if (MF_DBGLEVEL
>= 3) Dbprintf("Nonce#%d: Testing nt1=%08x nt2enc=%08x nt2par=%02x", i
+1, nt1
, nt2
, par
[0]);
757 // Parity validity check
758 for (j
= 0; j
< 4; j
++) {
759 par_array
[j
] = (oddparity(receivedAnswer
[j
]) != ((par
[0] >> (7-j
)) & 0x01));
763 nttest
= prng_successor(nt1
, dmin
- 1);
764 for (j
= dmin
; j
< dmax
+ 1; j
++) {
765 nttest
= prng_successor(nttest
, 1);
768 if (valid_nonce(nttest
, nt2
, ks1
, par_array
)){
769 if (ncount
> 0) { // we are only interested in disambiguous nonces, try again
770 if (MF_DBGLEVEL
>= 3) Dbprintf("Nonce#%d: dismissed (ambigous), ntdist=%d", i
+1, j
);
774 target_nt
[i
] = nttest
;
777 if (i
== 1 && target_nt
[1] == target_nt
[0]) { // we need two different nonces
779 if (MF_DBGLEVEL
>= 3) Dbprintf("Nonce#2: dismissed (= nonce#1), ntdist=%d", j
);
782 if (MF_DBGLEVEL
>= 3) Dbprintf("Nonce#%d: valid, ntdist=%d", i
+1, j
);
785 if (target_nt
[i
] == 0 && j
== dmax
+1 && MF_DBGLEVEL
>= 3) Dbprintf("Nonce#%d: dismissed (all invalid)", i
+1);
791 // ----------------------------- crypto1 destroy
792 crypto1_destroy(pcs
);
794 byte_t buf
[4 + 4 * 4];
795 memcpy(buf
, &cuid
, 4);
796 memcpy(buf
+4, &target_nt
[0], 4);
797 memcpy(buf
+8, &target_ks
[0], 4);
798 memcpy(buf
+12, &target_nt
[1], 4);
799 memcpy(buf
+16, &target_ks
[1], 4);
802 cmd_send(CMD_ACK
, 0, 2, targetBlockNo
+ (targetKeyType
* 0x100), buf
, sizeof(buf
));
805 if (MF_DBGLEVEL
>= 3) DbpString("NESTED FINISHED");
807 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
812 //-----------------------------------------------------------------------------
813 // MIFARE check keys. key count up to 85.
815 //-----------------------------------------------------------------------------
816 void MifareChkKeys(uint8_t arg0
, uint8_t arg1
, uint8_t arg2
, uint8_t *datain
)
819 uint8_t blockNo
= arg0
;
820 uint8_t keyType
= arg1
;
821 uint8_t keyCount
= arg2
;
822 uint64_t ui64Key
= 0;
829 struct Crypto1State mpcs
= {0, 0};
830 struct Crypto1State
*pcs
;
834 int OLD_MF_DBGLEVEL
= MF_DBGLEVEL
;
835 MF_DBGLEVEL
= MF_DBG_NONE
;
841 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
847 for (i
= 0; i
< keyCount
; i
++) {
848 if(mifare_classic_halt(pcs
, cuid
)) {
849 if (MF_DBGLEVEL
>= 1) Dbprintf("ChkKeys: Halt error");
852 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
853 if (OLD_MF_DBGLEVEL
>= 1) Dbprintf("ChkKeys: Can't select card");
857 ui64Key
= bytes_to_num(datain
+ i
* 6, 6);
858 if(mifare_classic_auth(pcs
, cuid
, blockNo
, keyType
, ui64Key
, AUTH_FIRST
)) {
866 // ----------------------------- crypto1 destroy
867 crypto1_destroy(pcs
);
870 cmd_send(CMD_ACK
,isOK
,0,0,datain
+ i
* 6,6);
873 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
876 // restore debug level
877 MF_DBGLEVEL
= OLD_MF_DBGLEVEL
;
880 //-----------------------------------------------------------------------------
881 // MIFARE commands set debug level
883 //-----------------------------------------------------------------------------
884 void MifareSetDbgLvl(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
886 Dbprintf("Debug level: %d", MF_DBGLEVEL
);
889 //-----------------------------------------------------------------------------
890 // Work with emulator memory
892 //-----------------------------------------------------------------------------
893 void MifareEMemClr(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
897 void MifareEMemSet(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
898 emlSetMem(datain
, arg0
, arg1
); // data, block num, blocks count
901 void MifareEMemGet(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
902 byte_t buf
[USB_CMD_DATA_SIZE
];
903 emlGetMem(buf
, arg0
, arg1
); // data, block num, blocks count (max 4)
906 cmd_send(CMD_ACK
,arg0
,arg1
,0,buf
,USB_CMD_DATA_SIZE
);
910 //-----------------------------------------------------------------------------
911 // Load a card into the emulator memory
913 //-----------------------------------------------------------------------------
914 void MifareECardLoad(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
915 uint8_t numSectors
= arg0
;
916 uint8_t keyType
= arg1
;
917 uint64_t ui64Key
= 0;
919 struct Crypto1State mpcs
= {0, 0};
920 struct Crypto1State
*pcs
;
924 byte_t dataoutbuf
[16];
925 byte_t dataoutbuf2
[16];
932 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
940 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
942 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
945 for (uint8_t sectorNo
= 0; isOK
&& sectorNo
< numSectors
; sectorNo
++) {
946 ui64Key
= emlGetKey(sectorNo
, keyType
);
948 if(isOK
&& mifare_classic_auth(pcs
, cuid
, FirstBlockOfSector(sectorNo
), keyType
, ui64Key
, AUTH_FIRST
)) {
950 if (MF_DBGLEVEL
>= 1) Dbprintf("Sector[%2d]. Auth error", sectorNo
);
954 if(isOK
&& mifare_classic_auth(pcs
, cuid
, FirstBlockOfSector(sectorNo
), keyType
, ui64Key
, AUTH_NESTED
)) {
956 if (MF_DBGLEVEL
>= 1) Dbprintf("Sector[%2d]. Auth nested error", sectorNo
);
961 for (uint8_t blockNo
= 0; isOK
&& blockNo
< NumBlocksPerSector(sectorNo
); blockNo
++) {
962 if(isOK
&& mifare_classic_readblock(pcs
, cuid
, FirstBlockOfSector(sectorNo
) + blockNo
, dataoutbuf
)) {
964 if (MF_DBGLEVEL
>= 1) Dbprintf("Error reading sector %2d block %2d", sectorNo
, blockNo
);
968 if (blockNo
< NumBlocksPerSector(sectorNo
) - 1) {
969 emlSetMem(dataoutbuf
, FirstBlockOfSector(sectorNo
) + blockNo
, 1);
970 } else { // sector trailer, keep the keys, set only the AC
971 emlGetMem(dataoutbuf2
, FirstBlockOfSector(sectorNo
) + blockNo
, 1);
972 memcpy(&dataoutbuf2
[6], &dataoutbuf
[6], 4);
973 emlSetMem(dataoutbuf2
, FirstBlockOfSector(sectorNo
) + blockNo
, 1);
980 if(mifare_classic_halt(pcs
, cuid
)) {
981 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
984 // ----------------------------- crypto1 destroy
985 crypto1_destroy(pcs
);
987 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
990 if (MF_DBGLEVEL
>= 2) DbpString("EMUL FILL SECTORS FINISHED");
995 //-----------------------------------------------------------------------------
996 // Work with "magic Chinese" card (email him: ouyangweidaxian@live.cn)
998 //-----------------------------------------------------------------------------
999 void MifareCSetBlock(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
1002 uint8_t needWipe
= arg0
;
1003 // bit 0 - need get UID
1004 // bit 1 - need wupC
1005 // bit 2 - need HALT after sequence
1006 // bit 3 - need init FPGA and field before sequence
1007 // bit 4 - need reset FPGA and LED
1008 uint8_t workFlags
= arg1
;
1009 uint8_t blockNo
= arg2
;
1012 uint8_t wupC1
[] = { 0x40 };
1013 uint8_t wupC2
[] = { 0x43 };
1014 uint8_t wipeC
[] = { 0x41 };
1018 uint8_t uid
[10] = {0x00};
1019 uint8_t d_block
[18] = {0x00};
1022 uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
];
1023 uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
];
1025 // reset FPGA and LED
1026 if (workFlags
& 0x08) {
1033 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
1038 // get UID from chip
1039 if (workFlags
& 0x01) {
1040 if(!iso14443a_select_card(uid
, NULL
, &cuid
)) {
1041 if (MF_DBGLEVEL
>= 1) Dbprintf("Can't select card");
1045 if(mifare_classic_halt(NULL
, cuid
)) {
1046 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
1053 ReaderTransmitBitsPar(wupC1
,7,0, NULL
);
1054 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1055 if (MF_DBGLEVEL
>= 1) Dbprintf("wupC1 error");
1059 ReaderTransmit(wipeC
, sizeof(wipeC
), NULL
);
1060 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1061 if (MF_DBGLEVEL
>= 1) Dbprintf("wipeC error");
1065 if(mifare_classic_halt(NULL
, cuid
)) {
1066 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
1072 if (workFlags
& 0x02) {
1073 ReaderTransmitBitsPar(wupC1
,7,0, NULL
);
1074 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1075 if (MF_DBGLEVEL
>= 1) Dbprintf("wupC1 error");
1079 ReaderTransmit(wupC2
, sizeof(wupC2
), NULL
);
1080 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1081 if (MF_DBGLEVEL
>= 1) Dbprintf("wupC2 error");
1086 if ((mifare_sendcmd_short(NULL
, 0, 0xA0, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
) != 1) || (receivedAnswer
[0] != 0x0a)) {
1087 if (MF_DBGLEVEL
>= 1) Dbprintf("write block send command error");
1091 memcpy(d_block
, datain
, 16);
1092 AppendCrc14443a(d_block
, 16);
1094 ReaderTransmit(d_block
, sizeof(d_block
), NULL
);
1095 if ((ReaderReceive(receivedAnswer
, receivedAnswerPar
) != 1) || (receivedAnswer
[0] != 0x0a)) {
1096 if (MF_DBGLEVEL
>= 1) Dbprintf("write block send data error");
1100 if (workFlags
& 0x04) {
1101 if (mifare_classic_halt(NULL
, cuid
)) {
1102 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
1112 cmd_send(CMD_ACK
,isOK
,0,0,uid
,4);
1115 if ((workFlags
& 0x10) || (!isOK
)) {
1116 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1122 void MifareCGetBlock(uint32_t arg0
, uint32_t arg1
, uint32_t arg2
, uint8_t *datain
){
1125 // bit 1 - need wupC
1126 // bit 2 - need HALT after sequence
1127 // bit 3 - need init FPGA and field before sequence
1128 // bit 4 - need reset FPGA and LED
1129 uint8_t workFlags
= arg0
;
1130 uint8_t blockNo
= arg2
;
1133 uint8_t wupC1
[] = { 0x40 };
1134 uint8_t wupC2
[] = { 0x43 };
1138 uint8_t data
[18] = {0x00};
1141 uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
];
1142 uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
];
1144 if (workFlags
& 0x08) {
1151 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
1155 if (workFlags
& 0x02) {
1156 ReaderTransmitBitsPar(wupC1
,7,0, NULL
);
1157 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1158 if (MF_DBGLEVEL
>= 1) Dbprintf("wupC1 error");
1162 ReaderTransmit(wupC2
, sizeof(wupC2
), NULL
);
1163 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1164 if (MF_DBGLEVEL
>= 1) Dbprintf("wupC2 error");
1170 if ((mifare_sendcmd_short(NULL
, 0, 0x30, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
) != 18)) {
1171 if (MF_DBGLEVEL
>= 1) Dbprintf("read block send command error");
1174 memcpy(data
, receivedAnswer
, 18);
1176 if (workFlags
& 0x04) {
1177 if (mifare_classic_halt(NULL
, cuid
)) {
1178 if (MF_DBGLEVEL
>= 1) Dbprintf("Halt error");
1188 cmd_send(CMD_ACK
,isOK
,0,0,data
,18);
1191 if ((workFlags
& 0x10) || (!isOK
)) {
1192 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1197 void MifareCIdent(){
1200 uint8_t wupC1
[] = { 0x40 };
1201 uint8_t wupC2
[] = { 0x43 };
1206 uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
];
1207 uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
];
1209 ReaderTransmitBitsPar(wupC1
,7,0, NULL
);
1210 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1214 ReaderTransmit(wupC2
, sizeof(wupC2
), NULL
);
1215 if(!ReaderReceive(receivedAnswer
, receivedAnswerPar
) || (receivedAnswer
[0] != 0x0a)) {
1219 if (mifare_classic_halt(NULL
, 0)) {
1223 cmd_send(CMD_ACK
,isOK
,0,0,0,0);
1230 void Mifare_DES_Auth1(uint8_t arg0
, uint8_t *datain
){
1232 byte_t dataout
[11] = {0x00};
1233 uint8_t uid
[10] = {0x00};
1237 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN
);
1239 int len
= iso14443a_select_card(uid
, NULL
, &cuid
);
1241 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Can't select card");
1246 if(mifare_desfire_des_auth1(cuid
, dataout
)){
1247 if (MF_DBGLEVEL
>= MF_DBG_ERROR
) Dbprintf("Authentication part1: Fail.");
1252 if (MF_DBGLEVEL
>= MF_DBG_EXTENDED
) DbpString("AUTH 1 FINISHED");
1253 cmd_send(CMD_ACK
,1,cuid
,0,dataout
, sizeof(dataout
));
1256 void Mifare_DES_Auth2(uint32_t arg0
, uint8_t *datain
){
1258 uint32_t cuid
= arg0
;
1259 uint8_t key
[16] = {0x00};
1261 byte_t dataout
[12] = {0x00};
1263 memcpy(key
, datain
, 16);
1265 isOK
= mifare_desfire_des_auth2(cuid
, key
, dataout
);
1268 if (MF_DBGLEVEL
>= MF_DBG_EXTENDED
)
1269 Dbprintf("Authentication part2: Failed");
1274 if (MF_DBGLEVEL
>= MF_DBG_EXTENDED
)
1275 DbpString("AUTH 2 FINISHED");
1277 cmd_send(CMD_ACK
, isOK
, 0, 0, dataout
, sizeof(dataout
));
1278 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1284 ReaderTransmit(deselect_cmd
, 3 , NULL
);
1285 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1289 void OnError(uint8_t reason
){
1291 ReaderTransmit(deselect_cmd
, 3 , NULL
);
1292 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1293 cmd_send(CMD_ACK
,0,reason
,0,0,0);