]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/mifarehost.c
2 // people from mifare@nethemba.com, 2010
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 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
15 #include "mifarehost.h"
16 #include "proxmark3.h"
17 //#include "radixsort.h"
21 int compar_int(const void * a
, const void * b
) {
22 // didn't work: (the result is truncated to 32 bits)
23 //return (*(uint64_t*)b - *(uint64_t*)a);
26 if (*(uint64_t*)b
> *(uint64_t*)a
) return 1;
27 if (*(uint64_t*)b
< *(uint64_t*)a
) return -1;
30 //return (*(uint64_t*)b > *(uint64_t*)a) - (*(uint64_t*)b < *(uint64_t*)a);
33 // Compare 16 Bits out of cryptostate
34 int Compare16Bits(const void * a
, const void * b
) {
35 if ((*(uint64_t*)b
& 0x00ff000000ff0000) > (*(uint64_t*)a
& 0x00ff000000ff0000)) return 1;
36 if ((*(uint64_t*)b
& 0x00ff000000ff0000) < (*(uint64_t*)a
& 0x00ff000000ff0000)) return -1;
40 ((*(uint64_t*)b & 0x00ff000000ff0000) > (*(uint64_t*)a & 0x00ff000000ff0000))
42 ((*(uint64_t*)b & 0x00ff000000ff0000) < (*(uint64_t*)a & 0x00ff000000ff0000))
50 struct Crypto1State
*slhead
;
54 struct Crypto1State
*sltail
;
66 // wrapper function for multi-threaded lfsr_recovery32
67 void* nested_worker_thread(void *arg
)
69 struct Crypto1State
*p1
;
70 StateList_t
*statelist
= arg
;
71 statelist
->head
.slhead
= lfsr_recovery32(statelist
->ks1
, statelist
->nt
^ statelist
->uid
);
73 for (p1
= statelist
->head
.slhead
; *(uint64_t *)p1
!= 0; p1
++);
75 statelist
->len
= p1
- statelist
->head
.slhead
;
76 statelist
->tail
.sltail
= --p1
;
77 qsort(statelist
->head
.slhead
, statelist
->len
, sizeof(uint64_t), Compare16Bits
);
78 return statelist
->head
.slhead
;
81 int mfnested(uint8_t blockNo
, uint8_t keyType
, uint8_t * key
, uint8_t trgBlockNo
, uint8_t trgKeyType
, uint8_t * resultKey
, bool calibrate
)
86 StateList_t statelists
[2];
87 struct Crypto1State
*p1
, *p2
, *p3
, *p4
;
89 UsbCommand c
= {CMD_MIFARE_NESTED
, {blockNo
+ keyType
* 0x100, trgBlockNo
+ trgKeyType
* 0x100, calibrate
}};
90 memcpy(c
.d
.asBytes
, key
, 6);
93 if (!WaitForResponseTimeout(CMD_ACK
, &resp
, 1500)) return -1;
95 // error during nested
96 if (resp
.arg
[0]) return resp
.arg
[0];
98 memcpy(&uid
, resp
.d
.asBytes
, 4);
100 for (i
= 0; i
< 2; i
++) {
101 statelists
[i
].blockNo
= resp
.arg
[2] & 0xff;
102 statelists
[i
].keyType
= (resp
.arg
[2] >> 8) & 0xff;
103 statelists
[i
].uid
= uid
;
104 memcpy(&statelists
[i
].nt
, (void *)(resp
.d
.asBytes
+ 4 + i
* 8 + 0), 4);
105 memcpy(&statelists
[i
].ks1
, (void *)(resp
.d
.asBytes
+ 4 + i
* 8 + 4), 4);
109 pthread_t thread_id
[2];
111 // create and run worker threads
112 for (i
= 0; i
< 2; i
++)
113 pthread_create(thread_id
+ i
, NULL
, nested_worker_thread
, &statelists
[i
]);
115 // wait for threads to terminate:
116 for (i
= 0; i
< 2; i
++)
117 pthread_join(thread_id
[i
], (void*)&statelists
[i
].head
.slhead
);
119 // the first 16 Bits of the cryptostate already contain part of our key.
120 // Create the intersection of the two lists based on these 16 Bits and
121 // roll back the cryptostate
122 p1
= p3
= statelists
[0].head
.slhead
;
123 p2
= p4
= statelists
[1].head
.slhead
;
125 while (p1
<= statelists
[0].tail
.sltail
&& p2
<= statelists
[1].tail
.sltail
) {
126 if (Compare16Bits(p1
, p2
) == 0) {
128 struct Crypto1State savestate
, *savep
= &savestate
;
130 while(Compare16Bits(p1
, savep
) == 0 && p1
<= statelists
[0].tail
.sltail
) {
132 lfsr_rollback_word(p3
, statelists
[0].nt
^ statelists
[0].uid
, 0);
137 while(Compare16Bits(p2
, savep
) == 0 && p2
<= statelists
[1].tail
.sltail
) {
139 lfsr_rollback_word(p4
, statelists
[1].nt
^ statelists
[1].uid
, 0);
145 while (Compare16Bits(p1
, p2
) == -1) p1
++;
146 while (Compare16Bits(p1
, p2
) == 1) p2
++;
150 p3
->even
= 0; p3
->odd
= 0;
151 p4
->even
= 0; p4
->odd
= 0;
152 statelists
[0].len
= p3
- statelists
[0].head
.slhead
;
153 statelists
[1].len
= p4
- statelists
[1].head
.slhead
;
154 statelists
[0].tail
.sltail
=--p3
;
155 statelists
[1].tail
.sltail
=--p4
;
157 // the statelists now contain possible keys. The key we are searching for must be in the
158 // intersection of both lists. Create the intersection:
159 qsort(statelists
[0].head
.keyhead
, statelists
[0].len
, sizeof(uint64_t), compar_int
);
160 qsort(statelists
[1].head
.keyhead
, statelists
[1].len
, sizeof(uint64_t), compar_int
);
162 uint64_t *p5
, *p6
, *p7
;
163 p5
= p7
= statelists
[0].head
.keyhead
;
164 p6
= statelists
[1].head
.keyhead
;
166 while (p5
<= statelists
[0].tail
.keytail
&& p6
<= statelists
[1].tail
.keytail
) {
167 if (compar_int(p5
, p6
) == 0) {
172 while (compar_int(p5
, p6
) == -1) p5
++;
173 while (compar_int(p5
, p6
) == 1) p6
++;
176 statelists
[0].len
= p7
- statelists
[0].head
.keyhead
;
177 statelists
[0].tail
.keytail
= --p7
;
179 uint32_t numOfCandidates
= statelists
[0].len
;
180 if ( numOfCandidates
== 0 ) goto out
;
182 memset(resultKey
, 0, 6);
185 // The list may still contain several key candidates. Test each of them with mfCheckKeys
186 // uint32_t max_keys = keycnt > (USB_CMD_DATA_SIZE/6) ? (USB_CMD_DATA_SIZE/6) : keycnt;
187 uint8_t keyBlock
[USB_CMD_DATA_SIZE
] = {0x00};
189 for (i
= 0; i
< numOfCandidates
; ++i
){
190 crypto1_get_lfsr(statelists
[0].head
.slhead
+ i
, &key64
);
191 num_to_bytes(key64
, 6, keyBlock
+ i
* 6);
194 if (!mfCheckKeys(statelists
[0].blockNo
, statelists
[0].keyType
, false, numOfCandidates
, keyBlock
, &key64
)) {
195 free(statelists
[0].head
.slhead
);
196 free(statelists
[1].head
.slhead
);
197 num_to_bytes(key64
, 6, resultKey
);
199 PrintAndLog("UID: %08x target block:%3u key type: %c -- Found key [%012"llx
"]",
201 (uint16_t)resp
.arg
[2] & 0xff,
202 (resp
.arg
[2] >> 8) ? 'B' : 'A',
209 PrintAndLog("UID: %08x target block:%3u key type: %c",
211 (uint16_t)resp
.arg
[2] & 0xff,
212 (resp
.arg
[2] >> 8) ? 'B' : 'A'
215 free(statelists
[0].head
.slhead
);
216 free(statelists
[1].head
.slhead
);
220 int mfCheckKeys (uint8_t blockNo
, uint8_t keyType
, bool clear_trace
, uint8_t keycnt
, uint8_t * keyBlock
, uint64_t * key
){
222 UsbCommand c
= {CMD_MIFARE_CHKKEYS
, { (blockNo
| (keyType
<<8)), clear_trace
, keycnt
}};
223 memcpy(c
.d
.asBytes
, keyBlock
, 6 * keycnt
);
224 clearCommandBuffer();
227 if (!WaitForResponseTimeout(CMD_ACK
, &resp
, 2500)) return 1;
228 if ((resp
.arg
[0] & 0xff) != 0x01) return 2;
229 *key
= bytes_to_num(resp
.d
.asBytes
, 6);
235 int mfEmlGetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
236 UsbCommand c
= {CMD_MIFARE_EML_MEMGET
, {blockNum
, blocksCount
, 0}};
237 clearCommandBuffer();
240 if (!WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) return 1;
241 memcpy(data
, resp
.d
.asBytes
, blocksCount
* 16);
245 int mfEmlSetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
246 return mfEmlSetMem_xt(data
, blockNum
, blocksCount
, 16);
249 int mfEmlSetMem_xt(uint8_t *data
, int blockNum
, int blocksCount
, int blockBtWidth
) {
250 UsbCommand c
= {CMD_MIFARE_EML_MEMSET
, {blockNum
, blocksCount
, blockBtWidth
}};
251 memcpy(c
.d
.asBytes
, data
, blocksCount
* blockBtWidth
);
252 clearCommandBuffer();
258 int mfCSetUID(uint8_t *uid
, uint8_t *atqa
, uint8_t *sak
, uint8_t *oldUID
, uint8_t wipecard
) {
260 uint8_t params
= MAGIC_SINGLE
;
262 memset(block0
, 0x00, sizeof(block0
));
264 int old
= mfCGetBlock(0, block0
, params
);
266 PrintAndLog("old block 0: %s", sprint_hex(block0
, sizeof(block0
)));
268 PrintAndLog("Couldn't get old data. Will write over the last bytes of Block 0.");
270 // fill in the new values
272 memcpy(block0
, uid
, 4);
274 block0
[4] = block0
[0]^block0
[1]^block0
[2]^block0
[3];
275 // mifare classic SAK(byte 5) and ATQA(byte 6 and 7, reversed)
279 if ( atqa
!= NULL
) {
283 PrintAndLog("new block 0: %s", sprint_hex(block0
,16));
285 if ( wipecard
) params
|= MAGIC_WIPE
;
286 if ( oldUID
== NULL
) params
|= MAGIC_UID
;
288 return mfCSetBlock(0, block0
, oldUID
, params
);
291 int mfCSetBlock(uint8_t blockNo
, uint8_t *data
, uint8_t *uid
, uint8_t params
) {
294 UsbCommand c
= {CMD_MIFARE_CSETBLOCK
, {params
, blockNo
, 0}};
295 memcpy(c
.d
.asBytes
, data
, 16);
296 clearCommandBuffer();
299 if (WaitForResponseTimeout(CMD_ACK
, &resp
, 1500)) {
300 isOK
= resp
.arg
[0] & 0xff;
302 memcpy(uid
, resp
.d
.asBytes
, 4);
306 PrintAndLog("Command execute timeout");
312 int mfCGetBlock(uint8_t blockNo
, uint8_t *data
, uint8_t params
) {
314 UsbCommand c
= {CMD_MIFARE_CGETBLOCK
, {params
, blockNo
, 0}};
315 clearCommandBuffer();
318 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
319 isOK
= resp
.arg
[0] & 0xff;
320 memcpy(data
, resp
.d
.asBytes
, 16);
323 PrintAndLog("Command execute timeout");
330 // [iceman] so many global variables....
333 static uint8_t trailerAccessBytes
[4] = {0x08, 0x77, 0x8F, 0x00};
336 char logHexFileName
[FILE_PATH_SIZE
] = {0x00};
337 static uint8_t traceCard
[4096] = {0x00};
338 static char traceFileName
[FILE_PATH_SIZE
] = {0x00};
339 static int traceState
= TRACE_IDLE
;
340 static uint8_t traceCurBlock
= 0;
341 static uint8_t traceCurKey
= 0;
343 struct Crypto1State
*traceCrypto1
= NULL
;
344 struct Crypto1State
*revstate
= NULL
;
349 uint32_t cuid
= 0; // serial number
350 uint32_t nt
=0; // tag challenge
351 uint32_t nr_enc
=0; // encrypted reader challenge
352 uint32_t ar_enc
=0; // encrypted reader response
353 uint32_t at_enc
=0; // encrypted tag response
355 int isTraceCardEmpty(void) {
356 return ((traceCard
[0] == 0) && (traceCard
[1] == 0) && (traceCard
[2] == 0) && (traceCard
[3] == 0));
359 int isBlockEmpty(int blockN
) {
360 for (int i
= 0; i
< 16; i
++)
361 if (traceCard
[blockN
* 16 + i
] != 0) return 0;
366 int isBlockTrailer(int blockN
) {
367 return ((blockN
& 0x03) == 0x03);
370 int loadTraceCard(uint8_t *tuid
, uint8_t uidlen
) {
372 char buf
[64] = {0x00};
373 uint8_t buf8
[64] = {0x00};
376 if (!isTraceCardEmpty())
379 memset(traceCard
, 0x00, 4096);
380 memcpy(traceCard
, tuid
, uidlen
);
382 FillFileNameByUID(traceFileName
, tuid
, ".eml", uidlen
);
384 f
= fopen(traceFileName
, "r");
391 memset(buf
, 0, sizeof(buf
));
392 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
393 PrintAndLog("No trace file found or reading error.");
398 if (strlen(buf
) < 32){
400 PrintAndLog("File content error. Block data must include 32 HEX symbols");
404 for (i
= 0; i
< 32; i
+= 2)
405 sscanf(&buf
[i
], "%02X", (unsigned int *)&buf8
[i
/ 2]);
407 memcpy(traceCard
+ blockNum
* 16, buf8
, 16);
415 int saveTraceCard(void) {
417 if ((!strlen(traceFileName
)) || (isTraceCardEmpty())) return 0;
420 f
= fopen(traceFileName
, "w+");
423 for (int i
= 0; i
< 64; i
++) { // blocks
424 for (int j
= 0; j
< 16; j
++) // bytes
425 fprintf(f
, "%02X", *(traceCard
+ i
* 16 + j
));
433 int mfTraceInit(uint8_t *tuid
, uint8_t uidlen
, uint8_t *atqa
, uint8_t sak
, bool wantSaveToEmlFile
) {
436 crypto1_destroy(traceCrypto1
);
440 if (wantSaveToEmlFile
)
441 loadTraceCard(tuid
, uidlen
);
443 traceCard
[4] = traceCard
[0] ^ traceCard
[1] ^ traceCard
[2] ^ traceCard
[3];
445 memcpy(&traceCard
[6], atqa
, 2);
447 cuid
= bytes_to_num(tuid
+(uidlen
-4), 4);
448 traceState
= TRACE_IDLE
;
452 void mf_crypto1_decrypt(struct Crypto1State
*pcs
, uint8_t *data
, int len
, bool isEncrypted
){
457 for (i
= 0; i
< len
; i
++)
458 data
[i
] = crypto1_byte(pcs
, 0x00, isEncrypted
) ^ data
[i
];
461 bt
|= (crypto1_bit(pcs
, 0, isEncrypted
) ^ BIT(data
[0], 0)) << 0;
462 bt
|= (crypto1_bit(pcs
, 0, isEncrypted
) ^ BIT(data
[0], 1)) << 1;
463 bt
|= (crypto1_bit(pcs
, 0, isEncrypted
) ^ BIT(data
[0], 2)) << 2;
464 bt
|= (crypto1_bit(pcs
, 0, isEncrypted
) ^ BIT(data
[0], 3)) << 3;
470 int mfTraceDecode(uint8_t *data_src
, int len
, bool wantSaveToEmlFile
) {
472 if (traceState
== TRACE_ERROR
) return 1;
475 traceState
= TRACE_ERROR
;
480 memset(data
, 0x00, sizeof(data
));
482 memcpy(data
, data_src
, len
);
484 if ((traceCrypto1
) && ((traceState
== TRACE_IDLE
) || (traceState
> TRACE_AUTH_OK
))) {
485 mf_crypto1_decrypt(traceCrypto1
, data
, len
, 0);
486 PrintAndLog("DEC| %s", sprint_hex(data
, len
));
487 AddLogHex(logHexFileName
, "DEC| ", data
, len
);
490 switch (traceState
) {
492 // check packet crc16!
493 if ((len
>= 4) && (!CheckCrc14443(CRC_14443_A
, data
, len
))) {
494 PrintAndLog("DEC| CRC ERROR!!!");
495 AddLogLine(logHexFileName
, "DEC| ", "CRC ERROR!!!");
496 traceState
= TRACE_ERROR
; // do not decrypt the next commands
501 if ((len
== 4) && ((data
[0] == MIFARE_AUTH_KEYA
) || (data
[0] == MIFARE_AUTH_KEYB
))) {
502 traceState
= TRACE_AUTH1
;
503 traceCurBlock
= data
[1];
504 traceCurKey
= data
[0] == 60 ? 1:0;
509 if ((len
==4) && ((data
[0] == ISO14443A_CMD_READBLOCK
))) {
510 traceState
= TRACE_READ_DATA
;
511 traceCurBlock
= data
[1];
516 if ((len
==4) && ((data
[0] == ISO14443A_CMD_WRITEBLOCK
))) {
517 traceState
= TRACE_WRITE_OK
;
518 traceCurBlock
= data
[1];
523 if ((len
==4) && ((data
[0] == ISO14443A_CMD_HALT
) && (data
[1] == 0x00))) {
524 traceState
= TRACE_ERROR
; // do not decrypt the next commands
528 case TRACE_READ_DATA
:
530 traceState
= TRACE_IDLE
;
532 if (isBlockTrailer(traceCurBlock
)) {
533 memcpy(traceCard
+ traceCurBlock
* 16 + 6, data
+ 6, 4);
535 memcpy(traceCard
+ traceCurBlock
* 16, data
, 16);
537 if (wantSaveToEmlFile
) saveTraceCard();
540 traceState
= TRACE_ERROR
;
545 if ((len
== 1) && (data
[0] == 0x0a)) {
546 traceState
= TRACE_WRITE_DATA
;
549 traceState
= TRACE_ERROR
;
553 case TRACE_WRITE_DATA
:
555 traceState
= TRACE_IDLE
;
556 memcpy(traceCard
+ traceCurBlock
* 16, data
, 16);
557 if (wantSaveToEmlFile
) saveTraceCard();
560 traceState
= TRACE_ERROR
;
566 traceState
= TRACE_AUTH2
;
567 nt
= bytes_to_num(data
, 4);
570 traceState
= TRACE_ERROR
;
576 traceState
= TRACE_AUTH_OK
;
577 nr_enc
= bytes_to_num(data
, 4);
578 ar_enc
= bytes_to_num(data
+ 4, 4);
581 traceState
= TRACE_ERROR
;
587 traceState
= TRACE_IDLE
;
588 at_enc
= bytes_to_num(data
, 4);
591 ks2
= ar_enc
^ prng_successor(nt
, 64);
592 ks3
= at_enc
^ prng_successor(nt
, 96);
593 revstate
= lfsr_recovery64(ks2
, ks3
);
594 lfsr_rollback_word(revstate
, 0, 0);
595 lfsr_rollback_word(revstate
, 0, 0);
596 lfsr_rollback_word(revstate
, nr_enc
, 1);
597 lfsr_rollback_word(revstate
, cuid
^ nt
, 0);
598 crypto1_get_lfsr(revstate
, &key
);
599 PrintAndLog("Found Key: [%012"llx
"]", key
);
601 //if ( tryMfk64(cuid, nt, nr_enc, ar_enc, at_enc, &key) )
602 AddLogUint64(logHexFileName
, "Found Key: ", key
);
604 int blockShift
= ((traceCurBlock
& 0xFC) + 3) * 16;
605 if (isBlockEmpty((traceCurBlock
& 0xFC) + 3)) memcpy(traceCard
+ blockShift
+ 6, trailerAccessBytes
, 4);
608 num_to_bytes(key
, 6, traceCard
+ blockShift
+ 10);
610 num_to_bytes(key
, 6, traceCard
+ blockShift
);
612 if (wantSaveToEmlFile
)
616 crypto1_destroy(traceCrypto1
);
618 // set cryptosystem state
619 traceCrypto1
= lfsr_recovery64(ks2
, ks3
);
623 traceState
= TRACE_ERROR
;
628 traceState
= TRACE_ERROR
;
634 int tryDecryptWord(uint32_t nt
, uint32_t ar_enc
, uint32_t at_enc
, uint8_t *data
, int len
){
635 PrintAndLog("\nEncrypted data: [%s]", sprint_hex(data
, len
) );
636 struct Crypto1State
*pcs
= NULL
;
637 ks2
= ar_enc
^ prng_successor(nt
, 64);
638 ks3
= at_enc
^ prng_successor(nt
, 96);
639 pcs
= lfsr_recovery64(ks2
, ks3
);
640 mf_crypto1_decrypt(pcs
, data
, len
, FALSE
);
641 PrintAndLog("Decrypted data: [%s]", sprint_hex(data
, len
) );
642 crypto1_destroy(pcs
);