]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/mifareutil.c
1 //-----------------------------------------------------------------------------
2 // Merlok, May 2011, 2012
3 // Many authors, whom made it possible
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // Work with mifare cards.
10 //-----------------------------------------------------------------------------
12 #include "proxmark3.h"
17 #include "iso14443crc.h"
18 #include "iso14443a.h"
20 #include "mifareutil.h"
22 int MF_DBGLEVEL
= MF_DBG_ALL
;
25 uint8_t* mifare_get_bigbufptr(void) {
26 return (((uint8_t *)BigBuf
) + MIFARE_BUFF_OFFSET
); // was 3560 - tied to other size changes
28 uint8_t* eml_get_bigbufptr_sendbuf(void) {
29 return (((uint8_t *)BigBuf
) + RECV_CMD_OFFSET
);
31 uint8_t* eml_get_bigbufptr_recbuf(void) {
32 return (((uint8_t *)BigBuf
) + MIFARE_BUFF_OFFSET
);
34 uint8_t* eml_get_bigbufptr_cardmem(void) {
35 return (((uint8_t *)BigBuf
) + CARD_MEMORY
);
39 void mf_crypto1_decrypt(struct Crypto1State
*pcs
, uint8_t *data
, int len
){
44 for (i
= 0; i
< len
; i
++)
45 data
[i
] = crypto1_byte(pcs
, 0x00, 0) ^ data
[i
];
48 for (i
= 0; i
< 4; i
++)
49 bt
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(data
[0], i
)) << i
;
56 void mf_crypto1_encrypt(struct Crypto1State
*pcs
, uint8_t *data
, int len
, uint32_t *par
) {
59 uint32_t mltpl
= 1 << (len
- 1); // for len=18 it=0x20000
61 for (i
= 0; i
< len
; i
++) {
63 data
[i
] = crypto1_byte(pcs
, 0x00, 0) ^ data
[i
];
64 *par
= (*par
>> 1) | ( ((filter(pcs
->odd
) ^ oddparity(bt
)) & 0x01) * mltpl
);
69 uint8_t mf_crypto1_encrypt4bit(struct Crypto1State
*pcs
, uint8_t data
) {
73 for (i
= 0; i
< 4; i
++)
74 bt
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(data
, i
)) << i
;
80 int mifare_sendcmd_short(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t data
, uint8_t* answer
, uint32_t *timing
)
82 return mifare_sendcmd_shortex(pcs
, crypted
, cmd
, data
, answer
, NULL
, timing
);
85 int mifare_sendcmd_short_special(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t* data
, uint8_t* answer
, uint8_t *timing
)
87 uint8_t dcmd
[8];//, ecmd[4];
96 AppendCrc14443a(dcmd
, 6);
97 //Dbprintf("Data command: %02x", dcmd[0]);
98 //Dbprintf("Data R: %02x %02x %02x %02x %02x %02x %02x", dcmd[1],dcmd[2],dcmd[3],dcmd[4],dcmd[5],dcmd[6],dcmd[7]);
100 //memcpy(ecmd, dcmd, sizeof(dcmd));
101 ReaderTransmit(dcmd
, sizeof(dcmd
), NULL
);
102 int len
= ReaderReceive(answer
);
105 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Card timeout.");
111 int mifare_sendcmd_shortex(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t data
, uint8_t* answer
, uint32_t * parptr
, uint32_t *timing
)
113 uint8_t dcmd
[4], ecmd
[4];
114 uint32_t pos
, par
, res
;
118 AppendCrc14443a(dcmd
, 2);
120 memcpy(ecmd
, dcmd
, sizeof(dcmd
));
124 for (pos
= 0; pos
< 4; pos
++)
126 ecmd
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ dcmd
[pos
];
127 par
= (par
>> 1) | ( ((filter(pcs
->odd
) ^ oddparity(dcmd
[pos
])) & 0x01) * 0x08 );
130 ReaderTransmitPar(ecmd
, sizeof(ecmd
), par
, timing
);
133 ReaderTransmit(dcmd
, sizeof(dcmd
), timing
);
136 int len
= ReaderReceivePar(answer
, &par
);
138 if (parptr
) *parptr
= par
;
140 if (crypted
== CRYPT_ALL
) {
143 for (pos
= 0; pos
< 4; pos
++)
144 res
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(answer
[0], pos
)) << pos
;
149 for (pos
= 0; pos
< len
; pos
++)
151 answer
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ answer
[pos
];
160 int mifare_classic_auth(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint64_t isNested
)
162 return mifare_classic_authex(pcs
, uid
, blockNo
, keyType
, ui64Key
, isNested
, NULL
, NULL
);
165 int mifare_classic_authex(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint64_t isNested
, uint32_t * ntptr
, uint32_t *timing
)
173 uint32_t nt
, ntpp
; // Supplied tag nonce
175 uint8_t mf_nr_ar
[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
176 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
178 // Transmit MIFARE_CLASSIC_AUTH
179 len
= mifare_sendcmd_short(pcs
, isNested
, 0x60 + (keyType
& 0x01), blockNo
, receivedAnswer
, timing
);
180 if (MF_DBGLEVEL
>= 4) Dbprintf("rand nonce len: %x", len
);
181 if (len
!= 4) return 1;
188 // Save the tag nonce (nt)
189 nt
= bytes_to_num(receivedAnswer
, 4);
191 // ----------------------------- crypto1 create
193 crypto1_destroy(pcs
);
195 // Init cipher with key
196 crypto1_create(pcs
, ui64Key
);
198 if (isNested
== AUTH_NESTED
) {
199 // decrypt nt with help of new key
200 nt
= crypto1_word(pcs
, nt
^ uid
, 1) ^ nt
;
202 // Load (plain) uid^nt into the cipher
203 crypto1_word(pcs
, nt
^ uid
, 0);
207 if (!ntptr
&& (MF_DBGLEVEL
>= 3))
208 Dbprintf("auth uid: %08x nt: %08x", uid
, nt
);
215 // Generate (encrypted) nr+parity by loading it into the cipher (Nr)
216 for (pos
= 0; pos
< 4; pos
++)
218 mf_nr_ar
[pos
] = crypto1_byte(pcs
, ar
[pos
], 0) ^ ar
[pos
];
219 par
= (par
>> 1) | ( ((filter(pcs
->odd
) ^ oddparity(ar
[pos
])) & 0x01) * 0x80 );
222 // Skip 32 bits in pseudo random generator
223 nt
= prng_successor(nt
,32);
226 for (pos
= 4; pos
< 8; pos
++)
228 nt
= prng_successor(nt
,8);
229 mf_nr_ar
[pos
] = crypto1_byte(pcs
,0x00,0) ^ (nt
& 0xff);
230 par
= (par
>> 1)| ( ((filter(pcs
->odd
) ^ oddparity(nt
& 0xff)) & 0x01) * 0x80 );
233 // Transmit reader nonce and reader answer
234 ReaderTransmitPar(mf_nr_ar
, sizeof(mf_nr_ar
), par
, NULL
);
236 // Receive 4 bit answer
237 len
= ReaderReceive(receivedAnswer
);
240 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Card timeout.");
244 memcpy(tmp4
, receivedAnswer
, 4);
245 ntpp
= prng_successor(nt
, 32) ^ crypto1_word(pcs
, 0,0);
247 if (ntpp
!= bytes_to_num(tmp4
, 4)) {
248 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Error card response.");
255 int mifare_classic_readblock(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
261 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
263 // command MIFARE_CLASSIC_READBLOCK
264 len
= mifare_sendcmd_short(pcs
, 1, 0x30, blockNo
, receivedAnswer
, NULL
);
266 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
270 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: card timeout. len: %x", len
);
274 memcpy(bt
, receivedAnswer
+ 16, 2);
275 AppendCrc14443a(receivedAnswer
, 16);
276 if (bt
[0] != receivedAnswer
[16] || bt
[1] != receivedAnswer
[17]) {
277 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd CRC response error.");
281 memcpy(blockData
, receivedAnswer
, 16);
285 int mifare_ultra_readblock(uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
291 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
293 // command MIFARE_CLASSIC_READBLOCK
294 len
= mifare_sendcmd_short(NULL
, 1, 0x30, blockNo
, receivedAnswer
,NULL
);
296 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
300 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: card timeout. len: %x", len
);
304 memcpy(bt
, receivedAnswer
+ 16, 2);
305 AppendCrc14443a(receivedAnswer
, 16);
306 if (bt
[0] != receivedAnswer
[16] || bt
[1] != receivedAnswer
[17]) {
307 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd CRC response error.");
311 memcpy(blockData
, receivedAnswer
, 14);
316 int mifare_classic_writeblock(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
324 uint8_t d_block
[18], d_block_enc
[18];
325 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
327 // command MIFARE_CLASSIC_WRITEBLOCK
328 len
= mifare_sendcmd_short(pcs
, 1, 0xA0, blockNo
, receivedAnswer
, NULL
);
330 if ((len
!= 1) || (receivedAnswer
[0] != 0x0A)) { // 0x0a - ACK
331 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
335 memcpy(d_block
, blockData
, 16);
336 AppendCrc14443a(d_block
, 16);
340 for (pos
= 0; pos
< 18; pos
++)
342 d_block_enc
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ d_block
[pos
];
343 par
= (par
>> 1) | ( ((filter(pcs
->odd
) ^ oddparity(d_block
[pos
])) & 0x01) * 0x20000 );
346 ReaderTransmitPar(d_block_enc
, sizeof(d_block_enc
), par
, NULL
);
348 // Receive the response
349 len
= ReaderReceive(receivedAnswer
);
352 for (i
= 0; i
< 4; i
++)
353 res
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(receivedAnswer
[0], i
)) << i
;
355 if ((len
!= 1) || (res
!= 0x0A)) {
356 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd send data2 Error: %02x", res
);
363 int mifare_ultra_writeblock(uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
370 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
372 // command MIFARE_CLASSIC_WRITEBLOCK
373 len
= mifare_sendcmd_short(NULL
, 1, 0xA0, blockNo
, receivedAnswer
,NULL
);
375 if ((len
!= 1) || (receivedAnswer
[0] != 0x0A)) { // 0x0a - ACK
376 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Addr Error: %02x", receivedAnswer
[0]);
380 memset(d_block
,'\0',18);
381 memcpy(d_block
, blockData
, 16);
382 AppendCrc14443a(d_block
, 16);
384 ReaderTransmitPar(d_block
, sizeof(d_block
), par
, NULL
);
386 // Receive the response
387 len
= ReaderReceive(receivedAnswer
);
389 if ((len
!= 1) || (receivedAnswer
[0] != 0x0A)) { // 0x0a - ACK
390 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Data Error: %02x %d", receivedAnswer
[0],len
);
397 int mifare_ultra_special_writeblock(uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
404 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
406 // command MIFARE_CLASSIC_WRITEBLOCK
407 memset(d_block
,'\0',8);
409 memcpy(d_block
+1,blockData
,4);
410 AppendCrc14443a(d_block
, 6);
412 //i know the data send here is correct
413 len
= mifare_sendcmd_short_special(NULL
, 1, 0xA2, d_block
, receivedAnswer
,NULL
);
415 if (receivedAnswer
[0] != 0x0A) { // 0x0a - ACK
416 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Send Error: %02x %d", receivedAnswer
[0],len
);
422 int mifare_classic_halt(struct Crypto1State
*pcs
, uint32_t uid
)
428 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
430 len
= mifare_sendcmd_short(pcs
, pcs
== NULL
? 0:1, 0x50, 0x00, receivedAnswer
, NULL
);
432 if (MF_DBGLEVEL
>= 1) Dbprintf("halt error. response len: %x", len
);
439 int mifare_ultra_halt(uint32_t uid
)
445 uint8_t* receivedAnswer
= mifare_get_bigbufptr();
447 len
= mifare_sendcmd_short(NULL
, 1, 0x50, 0x00, receivedAnswer
, NULL
);
449 if (MF_DBGLEVEL
>= 1) Dbprintf("halt error. response len: %x", len
);
456 // work with emulator memory
457 void emlSetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
458 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
460 memcpy(emCARD
+ blockNum
* 16, data
, blocksCount
* 16);
463 void emlGetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
464 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
466 memcpy(data
, emCARD
+ blockNum
* 16, blocksCount
* 16);
469 void emlGetMemBt(uint8_t *data
, int bytePtr
, int byteCount
) {
470 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
472 memcpy(data
, emCARD
+ bytePtr
, byteCount
);
475 int emlCheckValBl(int blockNum
) {
476 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
477 uint8_t* data
= emCARD
+ blockNum
* 16;
479 if ((data
[0] != (data
[4] ^ 0xff)) || (data
[0] != data
[8]) ||
480 (data
[1] != (data
[5] ^ 0xff)) || (data
[1] != data
[9]) ||
481 (data
[2] != (data
[6] ^ 0xff)) || (data
[2] != data
[10]) ||
482 (data
[3] != (data
[7] ^ 0xff)) || (data
[3] != data
[11]) ||
483 (data
[12] != (data
[13] ^ 0xff)) || (data
[12] != data
[14]) ||
484 (data
[12] != (data
[15] ^ 0xff))
490 int emlGetValBl(uint32_t *blReg
, uint8_t *blBlock
, int blockNum
) {
491 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
492 uint8_t* data
= emCARD
+ blockNum
* 16;
494 if (emlCheckValBl(blockNum
)) {
498 memcpy(blReg
, data
, 4);
504 int emlSetValBl(uint32_t blReg
, uint8_t blBlock
, int blockNum
) {
505 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
506 uint8_t* data
= emCARD
+ blockNum
* 16;
508 memcpy(data
+ 0, &blReg
, 4);
509 memcpy(data
+ 8, &blReg
, 4);
510 blReg
= blReg
^ 0xffffffff;
511 memcpy(data
+ 4, &blReg
, 4);
514 data
[13] = blBlock
^ 0xff;
516 data
[15] = blBlock
^ 0xff;
521 uint64_t emlGetKey(int sectorNum
, int keyType
) {
523 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
525 memcpy(key
, emCARD
+ 3 * 16 + sectorNum
* 4 * 16 + keyType
* 10, 6);
526 return bytes_to_num(key
, 6);
529 void emlClearMem(void) {
532 const uint8_t trailer
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x80, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
533 const uint8_t uid
[] = {0xe6, 0x84, 0x87, 0xf3, 0x16, 0x88, 0x04, 0x00, 0x46, 0x8e, 0x45, 0x55, 0x4d, 0x70, 0x41, 0x04};
534 uint8_t* emCARD
= eml_get_bigbufptr_cardmem();
536 memset(emCARD
, 0, CARD_MEMORY_LEN
);
538 // fill sectors trailer data
539 for(b
= 3; b
< 256; b
<127?(b
+=4):(b
+=16)) {
540 emlSetMem((uint8_t *)trailer
, b
, 1);
544 emlSetMem((uint8_t *)uid
, 0, 1);