]>
cvs.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"
19 int compar_int(const void * a
, const void * b
) {
20 // didn't work: (the result is truncated to 32 bits)
21 //return (*(uint64_t*)b - *(uint64_t*)a);
24 if (*(uint64_t*)b
== *(uint64_t*)a
) return 0;
25 else if (*(uint64_t*)b
> *(uint64_t*)a
) return 1;
29 // Compare 16 Bits out of cryptostate
30 int Compare16Bits(const void * a
, const void * b
) {
31 if ((*(uint64_t*)b
& 0x00ff000000ff0000) == (*(uint64_t*)a
& 0x00ff000000ff0000)) return 0;
32 else if ((*(uint64_t*)b
& 0x00ff000000ff0000) > (*(uint64_t*)a
& 0x00ff000000ff0000)) return 1;
39 struct Crypto1State
*slhead
;
43 struct Crypto1State
*sltail
;
55 // wrapper function for multi-threaded lfsr_recovery32
56 void* nested_worker_thread(void *arg
)
58 struct Crypto1State
*p1
;
59 StateList_t
*statelist
= arg
;
61 statelist
->head
.slhead
= lfsr_recovery32(statelist
->ks1
, statelist
->nt
^ statelist
->uid
);
62 for (p1
= statelist
->head
.slhead
; *(uint64_t *)p1
!= 0; p1
++);
63 statelist
->len
= p1
- statelist
->head
.slhead
;
64 statelist
->tail
.sltail
= --p1
;
65 qsort(statelist
->head
.slhead
, statelist
->len
, sizeof(uint64_t), Compare16Bits
);
67 return statelist
->head
.slhead
;
70 int mfnested(uint8_t blockNo
, uint8_t keyType
, uint8_t * key
, uint8_t trgBlockNo
, uint8_t trgKeyType
, uint8_t * resultKey
, bool calibrate
)
75 StateList_t statelists
[2];
76 struct Crypto1State
*p1
, *p2
, *p3
, *p4
;
79 WaitForResponseTimeout(CMD_ACK
,NULL
,100);
81 UsbCommand c
= {CMD_MIFARE_NESTED
, {blockNo
+ keyType
* 0x100, trgBlockNo
+ trgKeyType
* 0x100, calibrate
}};
82 memcpy(c
.d
.asBytes
, key
, 6);
85 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
88 memcpy(&uid
, resp
.d
.asBytes
, 4);
89 PrintAndLog("uid:%08x len=%d trgbl=%d trgkey=%x", uid
, len
, (uint16_t)resp
.arg
[2] & 0xff, (uint16_t)resp
.arg
[2] >> 8);
91 for (i
= 0; i
< 2; i
++) {
92 statelists
[i
].blockNo
= resp
.arg
[2] & 0xff;
93 statelists
[i
].keyType
= (resp
.arg
[2] >> 8) & 0xff;
94 statelists
[i
].uid
= uid
;
96 memcpy(&statelists
[i
].nt
, (void *)(resp
.d
.asBytes
+ 4 + i
* 8 + 0), 4);
97 memcpy(&statelists
[i
].ks1
, (void *)(resp
.d
.asBytes
+ 4 + i
* 8 + 4), 4);
101 PrintAndLog("Got 0 keys from proxmark.");
108 pthread_t thread_id
[2];
110 // create and run worker threads
111 for (i
= 0; i
< 2; i
++) {
112 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
);
121 // the first 16 Bits of the cryptostate already contain part of our key.
122 // Create the intersection of the two lists based on these 16 Bits and
123 // roll back the cryptostate
124 p1
= p3
= statelists
[0].head
.slhead
;
125 p2
= p4
= statelists
[1].head
.slhead
;
126 while (p1
<= statelists
[0].tail
.sltail
&& p2
<= statelists
[1].tail
.sltail
) {
127 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
++;
149 p3
->even
= 0; p3
->odd
= 0;
150 p4
->even
= 0; p4
->odd
= 0;
151 statelists
[0].len
= p3
- statelists
[0].head
.slhead
;
152 statelists
[1].len
= p4
- statelists
[1].head
.slhead
;
153 statelists
[0].tail
.sltail
=--p3
;
154 statelists
[1].tail
.sltail
=--p4
;
156 // the statelists now contain possible keys. The key we are searching for must be in the
157 // intersection of both lists. Create the intersection:
158 qsort(statelists
[0].head
.keyhead
, statelists
[0].len
, sizeof(uint64_t), compar_int
);
159 qsort(statelists
[1].head
.keyhead
, statelists
[1].len
, sizeof(uint64_t), compar_int
);
161 uint64_t *p5
, *p6
, *p7
;
162 p5
= p7
= statelists
[0].head
.keyhead
;
163 p6
= statelists
[1].head
.keyhead
;
164 while (p5
<= statelists
[0].tail
.keytail
&& p6
<= statelists
[1].tail
.keytail
) {
165 if (compar_int(p5
, p6
) == 0) {
170 while (compar_int(p5
, p6
) == -1) p5
++;
171 while (compar_int(p5
, p6
) == 1) p6
++;
174 statelists
[0].len
= p7
- statelists
[0].head
.keyhead
;
175 statelists
[0].tail
.keytail
=--p7
;
177 memset(resultKey
, 0, 6);
178 // The list may still contain several key candidates. Test each of them with mfCheckKeys
179 for (i
= 0; i
< statelists
[0].len
; i
++) {
182 crypto1_get_lfsr(statelists
[0].head
.slhead
+ i
, &key64
);
183 num_to_bytes(key64
, 6, keyBlock
);
185 if (!mfCheckKeys(statelists
[0].blockNo
, statelists
[0].keyType
, 1, keyBlock
, &key64
)) {
186 num_to_bytes(key64
, 6, resultKey
);
191 free(statelists
[0].head
.slhead
);
192 free(statelists
[1].head
.slhead
);
197 int mfCheckKeys (uint8_t blockNo
, uint8_t keyType
, uint8_t keycnt
, uint8_t * keyBlock
, uint64_t * key
){
201 UsbCommand c
= {CMD_MIFARE_CHKKEYS
, {blockNo
, keyType
, keycnt
}};
202 memcpy(c
.d
.asBytes
, keyBlock
, 6 * keycnt
);
206 if (!WaitForResponseTimeout(CMD_ACK
,&resp
,3000)) return 1;
207 if ((resp
.arg
[0] & 0xff) != 0x01) return 2;
208 *key
= bytes_to_num(resp
.d
.asBytes
, 6);
214 int mfEmlGetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
215 UsbCommand c
= {CMD_MIFARE_EML_MEMGET
, {blockNum
, blocksCount
, 0}};
219 if (!WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) return 1;
220 memcpy(data
, resp
.d
.asBytes
, blocksCount
* 16);
224 int mfEmlSetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
225 UsbCommand c
= {CMD_MIFARE_EML_MEMSET
, {blockNum
, blocksCount
, 0}};
226 memcpy(c
.d
.asBytes
, data
, blocksCount
* 16);
233 int mfCSetUID(uint8_t *uid
, uint8_t *atqa
, uint8_t *sak
, uint8_t *oldUID
, bool wantWipe
) {
234 uint8_t oldblock0
[16] = {0x00};
235 uint8_t block0
[16] = {0x00};
237 int old
= mfCGetBlock(0, oldblock0
, CSETBLOCK_SINGLE_OPER
);
239 memcpy(block0
, oldblock0
, 16);
240 PrintAndLog("old block 0: %s", sprint_hex(block0
,16));
242 PrintAndLog("Couldn't get old data. Will write over the last bytes of Block 0.");
245 // fill in the new values
247 memcpy(block0
, uid
, 4);
249 block0
[4] = block0
[0]^block0
[1]^block0
[2]^block0
[3];
250 // mifare classic SAK(byte 5) and ATQA(byte 6 and 7, reversed)
257 PrintAndLog("new block 0: %s", sprint_hex(block0
,16));
258 return mfCSetBlock(0, block0
, oldUID
, wantWipe
, CSETBLOCK_SINGLE_OPER
);
261 int mfCSetBlock(uint8_t blockNo
, uint8_t *data
, uint8_t *uid
, bool wantWipe
, uint8_t params
) {
264 UsbCommand c
= {CMD_MIFARE_CSETBLOCK
, {wantWipe
, params
& (0xFE | (uid
== NULL
? 0:1)), blockNo
}};
265 memcpy(c
.d
.asBytes
, data
, 16);
269 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
270 isOK
= resp
.arg
[0] & 0xff;
272 memcpy(uid
, resp
.d
.asBytes
, 4);
276 PrintAndLog("Command execute timeout");
282 int mfCGetBlock(uint8_t blockNo
, uint8_t *data
, uint8_t params
) {
285 UsbCommand c
= {CMD_MIFARE_CGETBLOCK
, {params
, 0, blockNo
}};
289 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
290 isOK
= resp
.arg
[0] & 0xff;
291 memcpy(data
, resp
.d
.asBytes
, 16);
294 PrintAndLog("Command execute timeout");
303 static uint8_t trailerAccessBytes
[4] = {0x08, 0x77, 0x8F, 0x00};
306 char logHexFileName
[FILE_PATH_SIZE
] = {0x00};
307 static uint8_t traceCard
[4096] = {0x00};
308 static char traceFileName
[FILE_PATH_SIZE
] = {0x00};
309 static int traceState
= TRACE_IDLE
;
310 static uint8_t traceCurBlock
= 0;
311 static uint8_t traceCurKey
= 0;
313 struct Crypto1State
*traceCrypto1
= NULL
;
315 struct Crypto1State
*revstate
;
320 uint32_t uid
; // serial number
321 uint32_t nt
; // tag challenge
322 uint32_t nr_enc
; // encrypted reader challenge
323 uint32_t ar_enc
; // encrypted reader response
324 uint32_t at_enc
; // encrypted tag response
326 int isTraceCardEmpty(void) {
327 return ((traceCard
[0] == 0) && (traceCard
[1] == 0) && (traceCard
[2] == 0) && (traceCard
[3] == 0));
330 int isBlockEmpty(int blockN
) {
331 for (int i
= 0; i
< 16; i
++)
332 if (traceCard
[blockN
* 16 + i
] != 0) return 0;
337 int isBlockTrailer(int blockN
) {
338 return ((blockN
& 0x03) == 0x03);
341 int loadTraceCard(uint8_t *tuid
) {
343 char buf
[64] = {0x00};
344 uint8_t buf8
[64] = {0x00};
347 if (!isTraceCardEmpty())
350 memset(traceCard
, 0x00, 4096);
351 memcpy(traceCard
, tuid
+ 3, 4);
353 FillFileNameByUID(traceFileName
, tuid
, ".eml", 7);
355 f
= fopen(traceFileName
, "r");
365 memset(buf
, 0, sizeof(buf
));
366 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
367 PrintAndLog("File reading error.");
372 if (strlen(buf
) < 32){
374 PrintAndLog("File content error. Block data must include 32 HEX symbols");
378 for (i
= 0; i
< 32; i
+= 2)
379 sscanf(&buf
[i
], "%02x", (unsigned int *)&buf8
[i
/ 2]);
381 memcpy(traceCard
+ blockNum
* 16, buf8
, 16);
390 int saveTraceCard(void) {
393 if ((!strlen(traceFileName
)) || (isTraceCardEmpty())) return 0;
395 f
= fopen(traceFileName
, "w+");
401 for (int i
= 0; i
< 64; i
++) { // blocks
402 for (int j
= 0; j
< 16; j
++) // bytes
403 fprintf(f
, "%02x", *(traceCard
+ i
* 16 + j
));
410 int mfTraceInit(uint8_t *tuid
, uint8_t *atqa
, uint8_t sak
, bool wantSaveToEmlFile
) {
413 crypto1_destroy(traceCrypto1
);
417 if (wantSaveToEmlFile
)
420 traceCard
[4] = traceCard
[0] ^ traceCard
[1] ^ traceCard
[2] ^ traceCard
[3];
422 memcpy(&traceCard
[6], atqa
, 2);
424 uid
= bytes_to_num(tuid
+ 3, 4);
426 traceState
= TRACE_IDLE
;
431 void mf_crypto1_decrypt(struct Crypto1State
*pcs
, uint8_t *data
, int len
, bool isEncrypted
){
436 for (i
= 0; i
< len
; i
++)
437 data
[i
] = crypto1_byte(pcs
, 0x00, isEncrypted
) ^ data
[i
];
440 for (i
= 0; i
< 4; i
++)
441 bt
|= (crypto1_bit(pcs
, 0, isEncrypted
) ^ BIT(data
[0], i
)) << i
;
449 int mfTraceDecode(uint8_t *data_src
, int len
, bool wantSaveToEmlFile
) {
452 if (traceState
== TRACE_ERROR
) return 1;
454 traceState
= TRACE_ERROR
;
458 memcpy(data
, data_src
, len
);
459 if ((traceCrypto1
) && ((traceState
== TRACE_IDLE
) || (traceState
> TRACE_AUTH_OK
))) {
460 mf_crypto1_decrypt(traceCrypto1
, data
, len
, 0);
461 PrintAndLog("dec> %s", sprint_hex(data
, len
));
462 AddLogHex(logHexFileName
, "dec> ", data
, len
);
465 switch (traceState
) {
467 // check packet crc16!
468 if ((len
>= 4) && (!CheckCrc14443(CRC_14443_A
, data
, len
))) {
469 PrintAndLog("dec> CRC ERROR!!!");
470 AddLogLine(logHexFileName
, "dec> ", "CRC ERROR!!!");
471 traceState
= TRACE_ERROR
; // do not decrypt the next commands
476 if ((len
== 4) && ((data
[0] == 0x60) || (data
[0] == 0x61))) {
477 traceState
= TRACE_AUTH1
;
478 traceCurBlock
= data
[1];
479 traceCurKey
= data
[0] == 60 ? 1:0;
484 if ((len
==4) && ((data
[0] == 0x30))) {
485 traceState
= TRACE_READ_DATA
;
486 traceCurBlock
= data
[1];
491 if ((len
==4) && ((data
[0] == 0xA0))) {
492 traceState
= TRACE_WRITE_OK
;
493 traceCurBlock
= data
[1];
498 if ((len
==4) && ((data
[0] == 0x50) && (data
[1] == 0x00))) {
499 traceState
= TRACE_ERROR
; // do not decrypt the next commands
506 case TRACE_READ_DATA
:
508 traceState
= TRACE_IDLE
;
510 if (isBlockTrailer(traceCurBlock
)) {
511 memcpy(traceCard
+ traceCurBlock
* 16 + 6, data
+ 6, 4);
513 memcpy(traceCard
+ traceCurBlock
* 16, data
, 16);
515 if (wantSaveToEmlFile
) saveTraceCard();
518 traceState
= TRACE_ERROR
;
524 if ((len
== 1) && (data
[0] == 0x0a)) {
525 traceState
= TRACE_WRITE_DATA
;
529 traceState
= TRACE_ERROR
;
534 case TRACE_WRITE_DATA
:
536 traceState
= TRACE_IDLE
;
538 memcpy(traceCard
+ traceCurBlock
* 16, data
, 16);
539 if (wantSaveToEmlFile
) saveTraceCard();
542 traceState
= TRACE_ERROR
;
549 traceState
= TRACE_AUTH2
;
550 nt
= bytes_to_num(data
, 4);
553 traceState
= TRACE_ERROR
;
560 traceState
= TRACE_AUTH_OK
;
562 nr_enc
= bytes_to_num(data
, 4);
563 ar_enc
= bytes_to_num(data
+ 4, 4);
566 traceState
= TRACE_ERROR
;
573 traceState
= TRACE_IDLE
;
575 at_enc
= bytes_to_num(data
, 4);
578 ks2
= ar_enc
^ prng_successor(nt
, 64);
579 ks3
= at_enc
^ prng_successor(nt
, 96);
580 revstate
= lfsr_recovery64(ks2
, ks3
);
581 lfsr_rollback_word(revstate
, 0, 0);
582 lfsr_rollback_word(revstate
, 0, 0);
583 lfsr_rollback_word(revstate
, nr_enc
, 1);
584 lfsr_rollback_word(revstate
, uid
^ nt
, 0);
586 crypto1_get_lfsr(revstate
, &lfsr
);
587 printf("key> %x%x\n", (unsigned int)((lfsr
& 0xFFFFFFFF00000000) >> 32), (unsigned int)(lfsr
& 0xFFFFFFFF));
588 AddLogUint64(logHexFileName
, "key> ", lfsr
);
590 int blockShift
= ((traceCurBlock
& 0xFC) + 3) * 16;
591 if (isBlockEmpty((traceCurBlock
& 0xFC) + 3)) memcpy(traceCard
+ blockShift
+ 6, trailerAccessBytes
, 4);
594 num_to_bytes(lfsr
, 6, traceCard
+ blockShift
+ 10);
596 num_to_bytes(lfsr
, 6, traceCard
+ blockShift
);
598 if (wantSaveToEmlFile
) saveTraceCard();
601 crypto1_destroy(traceCrypto1
);
604 // set cryptosystem state
605 traceCrypto1
= lfsr_recovery64(ks2
, ks3
);
607 // nt = crypto1_word(traceCrypto1, nt ^ uid, 1) ^ nt;
609 /* traceCrypto1 = crypto1_create(lfsr); // key in lfsr
610 crypto1_word(traceCrypto1, nt ^ uid, 0);
611 crypto1_word(traceCrypto1, ar, 1);
612 crypto1_word(traceCrypto1, 0, 0);
613 crypto1_word(traceCrypto1, 0, 0);*/
617 traceState
= TRACE_ERROR
;
623 traceState
= TRACE_ERROR
;