]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/mifareutil.c
d284149700840777f47dc627f5d853d668d78d9d
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 "../include/proxmark3.h"
17 #include "../common/iso14443crc.h"
18 #include "iso14443a.h"
20 #include "mifareutil.h"
22 int MF_DBGLEVEL
= MF_DBG_ALL
;
25 uint8_t* get_bigbufptr_recvrespbuf(void) {
26 return (((uint8_t *)BigBuf
) + RECV_RESP_OFFSET
);
28 uint8_t* get_bigbufptr_recvcmdbuf(void) {
29 return (((uint8_t *)BigBuf
) + RECV_CMD_OFFSET
);
31 uint8_t* get_bigbufptr_emlcardmem(void) {
32 return (((uint8_t *)BigBuf
) + CARD_MEMORY_OFFSET
);
36 void mf_crypto1_decrypt(struct Crypto1State
*pcs
, uint8_t *data
, int len
){
41 for (i
= 0; i
< len
; i
++)
42 data
[i
] = crypto1_byte(pcs
, 0x00, 0) ^ data
[i
];
45 for (i
= 0; i
< 4; i
++)
46 bt
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(data
[0], i
)) << i
;
53 void mf_crypto1_encrypt(struct Crypto1State
*pcs
, uint8_t *data
, uint16_t len
, uint8_t *par
) {
58 for (i
= 0; i
< len
; i
++) {
60 data
[i
] = crypto1_byte(pcs
, 0x00, 0) ^ data
[i
];
63 par
[i
>>3] |= (((filter(pcs
->odd
) ^ oddparity(bt
)) & 0x01)<<(7-(i
&0x0007)));
68 uint8_t mf_crypto1_encrypt4bit(struct Crypto1State
*pcs
, uint8_t data
) {
72 for (i
= 0; i
< 4; i
++)
73 bt
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(data
, i
)) << i
;
79 int mifare_sendcmd_short(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t data
, uint8_t *answer
, uint8_t *answer_parity
, uint32_t *timing
)
81 return mifare_sendcmd_shortex(pcs
, crypted
, cmd
, data
, answer
, answer_parity
, timing
);
84 int mifare_sendcmd_short_special(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t* data
, uint8_t* answer
, uint8_t *answer_parity
, uint32_t *timing
)
88 memcpy(dcmd
+1,data
,5);
90 AppendCrc14443a(dcmd
, 6);
91 ReaderTransmit(dcmd
, sizeof(dcmd
), NULL
);
92 int len
= ReaderReceive(answer
, answer_parity
);
94 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Card timeout.");
100 int mifare_sendcmd_short_mfucauth(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t *data
, uint8_t *answer
, uint8_t *answer_parity
, uint32_t *timing
)
105 memcpy(dcmd
+1,data
,16);
106 AppendCrc14443a(dcmd
, 17);
108 ReaderTransmit(dcmd
, sizeof(dcmd
), timing
);
109 len
= ReaderReceive(answer
, answer_parity
);
111 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Card timeout.");
112 len
= ReaderReceive(answer
,answer_parity
);
115 if (MF_DBGLEVEL
>= 1) Dbprintf("NAK - Authentication failed.");
121 int mifare_sendcmd_shortex(struct Crypto1State
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t data
, uint8_t *answer
, uint8_t *answer_parity
, uint32_t *timing
)
123 uint8_t dcmd
[4], ecmd
[4];
125 uint8_t par
[1]; // 1 Byte parity is enough here
128 AppendCrc14443a(dcmd
, 2);
130 memcpy(ecmd
, dcmd
, sizeof(dcmd
));
134 for (pos
= 0; pos
< 4; pos
++)
136 ecmd
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ dcmd
[pos
];
137 par
[0] |= (((filter(pcs
->odd
) ^ oddparity(dcmd
[pos
])) & 0x01) << (7-pos
));
140 ReaderTransmitPar(ecmd
, sizeof(ecmd
), par
, timing
);
143 ReaderTransmit(dcmd
, sizeof(dcmd
), timing
);
146 int len
= ReaderReceive(answer
, par
);
148 if (answer_parity
) *answer_parity
= par
[0];
150 if (crypted
== CRYPT_ALL
) {
153 for (pos
= 0; pos
< 4; pos
++)
154 res
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(answer
[0], pos
)) << pos
;
159 for (pos
= 0; pos
< len
; pos
++)
161 answer
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ answer
[pos
];
170 int mifare_classic_auth(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint8_t isNested
)
172 return mifare_classic_authex(pcs
, uid
, blockNo
, keyType
, ui64Key
, isNested
, NULL
, NULL
);
175 int mifare_classic_authex(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint8_t isNested
, uint32_t * ntptr
, uint32_t *timing
)
181 uint8_t par
[1] = {0x00};
183 uint32_t nt
, ntpp
; // Supplied tag nonce
185 uint8_t mf_nr_ar
[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
186 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
187 uint8_t *receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
189 // Transmit MIFARE_CLASSIC_AUTH
190 len
= mifare_sendcmd_short(pcs
, isNested
, 0x60 + (keyType
& 0x01), blockNo
, receivedAnswer
, receivedAnswerPar
, timing
);
191 if (MF_DBGLEVEL
>= 4) Dbprintf("rand tag nonce len: %x", len
);
192 if (len
!= 4) return 1;
194 // "random" reader nonce:
200 // Save the tag nonce (nt)
201 nt
= bytes_to_num(receivedAnswer
, 4);
203 // ----------------------------- crypto1 create
205 crypto1_destroy(pcs
);
207 // Init cipher with key
208 crypto1_create(pcs
, ui64Key
);
210 if (isNested
== AUTH_NESTED
) {
211 // decrypt nt with help of new key
212 nt
= crypto1_word(pcs
, nt
^ uid
, 1) ^ nt
;
214 // Load (plain) uid^nt into the cipher
215 crypto1_word(pcs
, nt
^ uid
, 0);
219 if (!ntptr
&& (MF_DBGLEVEL
>= 3))
220 Dbprintf("auth uid: %08x nt: %08x", uid
, nt
);
226 // Generate (encrypted) nr+parity by loading it into the cipher (Nr)
228 for (pos
= 0; pos
< 4; pos
++)
230 mf_nr_ar
[pos
] = crypto1_byte(pcs
, nr
[pos
], 0) ^ nr
[pos
];
231 par
[0] |= (((filter(pcs
->odd
) ^ oddparity(nr
[pos
])) & 0x01) << (7-pos
));
234 // Skip 32 bits in pseudo random generator
235 nt
= prng_successor(nt
,32);
238 for (pos
= 4; pos
< 8; pos
++)
240 nt
= prng_successor(nt
,8);
241 mf_nr_ar
[pos
] = crypto1_byte(pcs
,0x00,0) ^ (nt
& 0xff);
242 par
[0] |= (((filter(pcs
->odd
) ^ oddparity(nt
& 0xff)) & 0x01) << (7-pos
));
245 // Transmit reader nonce and reader answer
246 ReaderTransmitPar(mf_nr_ar
, sizeof(mf_nr_ar
), par
, NULL
);
248 // Receive 4 byte tag answer
249 len
= ReaderReceive(receivedAnswer
, receivedAnswerPar
);
252 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Card timeout.");
256 memcpy(tmp4
, receivedAnswer
, 4);
257 ntpp
= prng_successor(nt
, 32) ^ crypto1_word(pcs
, 0,0);
259 if (ntpp
!= bytes_to_num(tmp4
, 4)) {
260 if (MF_DBGLEVEL
>= 1) Dbprintf("Authentication failed. Error card response.");
267 int mifare_classic_readblock(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
273 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
274 uint8_t* receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
276 // command MIFARE_CLASSIC_READBLOCK
277 len
= mifare_sendcmd_short(pcs
, 1, 0x30, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
);
279 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
283 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: card timeout. len: %x", len
);
287 memcpy(bt
, receivedAnswer
+ 16, 2);
288 AppendCrc14443a(receivedAnswer
, 16);
289 if (bt
[0] != receivedAnswer
[16] || bt
[1] != receivedAnswer
[17]) {
290 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd CRC response error.");
294 memcpy(blockData
, receivedAnswer
, 16);
298 int mifare_ultra_auth1(uint32_t uid
, uint8_t *blockData
){
302 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
303 uint8_t* receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
305 // command MIFARE_CLASSIC_READBLOCK
306 len
= mifare_sendcmd_short(NULL
, 1, 0x1A, 0x00, receivedAnswer
,receivedAnswerPar
,NULL
);
308 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
312 if (MF_DBGLEVEL
>= 1) Dbprintf("Auth1 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
313 receivedAnswer
[0],receivedAnswer
[1],receivedAnswer
[2],receivedAnswer
[3],receivedAnswer
[4],
314 receivedAnswer
[5],receivedAnswer
[6],receivedAnswer
[7],receivedAnswer
[8],receivedAnswer
[9],
316 memcpy(blockData
, receivedAnswer
, 11);
319 //else something went wrong???
323 int mifare_ultra_auth2(uint32_t uid
, uint8_t *key
, uint8_t *blockData
){
327 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
328 uint8_t* receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
330 // command MIFARE_CLASSIC_READBLOCK
331 len
= mifare_sendcmd_short_mfucauth(NULL
, 1, 0xAF, key
, receivedAnswer
, receivedAnswerPar
, NULL
);
333 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
337 if (MF_DBGLEVEL
>= 1) Dbprintf("Auth2 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
338 receivedAnswer
[0],receivedAnswer
[1],receivedAnswer
[2],receivedAnswer
[3],receivedAnswer
[4],
339 receivedAnswer
[5],receivedAnswer
[6],receivedAnswer
[7],receivedAnswer
[8],receivedAnswer
[9],
341 memcpy(blockData
, receivedAnswer
, 11);
344 //something went wrong?
348 int mifare_ultra_readblock(uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
354 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
355 uint8_t* receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
358 // command MIFARE_CLASSIC_READBLOCK
359 len
= mifare_sendcmd_short(NULL
, 1, 0x30, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
);
361 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
365 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: card timeout. len: %x", len
);
369 memcpy(bt
, receivedAnswer
+ 16, 2);
370 AppendCrc14443a(receivedAnswer
, 16);
371 if (bt
[0] != receivedAnswer
[16] || bt
[1] != receivedAnswer
[17]) {
372 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd CRC response error.");
376 memcpy(blockData
, receivedAnswer
, 14);
381 int mifare_classic_writeblock(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
386 uint8_t par
[3] = {0x00};
389 uint8_t d_block
[18], d_block_enc
[18];
390 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
391 uint8_t* receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
393 // command MIFARE_CLASSIC_WRITEBLOCK
394 len
= mifare_sendcmd_short(pcs
, 1, 0xA0, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
);
396 if ((len
!= 1) || (receivedAnswer
[0] != 0x0A)) { // 0x0a - ACK
397 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);
401 memcpy(d_block
, blockData
, 16);
402 AppendCrc14443a(d_block
, 16);
405 for (pos
= 0; pos
< 18; pos
++)
407 d_block_enc
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ d_block
[pos
];
408 par
[pos
>>3] |= (((filter(pcs
->odd
) ^ oddparity(d_block
[pos
])) & 0x01) << (7 - (pos
&0x0007)));
411 ReaderTransmitPar(d_block_enc
, sizeof(d_block_enc
), par
, NULL
);
413 // Receive the response
414 len
= ReaderReceive(receivedAnswer
, receivedAnswerPar
);
417 for (i
= 0; i
< 4; i
++)
418 res
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(receivedAnswer
[0], i
)) << i
;
420 if ((len
!= 1) || (res
!= 0x0A)) {
421 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd send data2 Error: %02x", res
);
428 int mifare_ultra_writeblock(uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
432 uint8_t par
[3] = {0}; // enough for 18 parity bits
435 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
436 uint8_t* receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
438 // command MIFARE_CLASSIC_WRITEBLOCK
439 len
= mifare_sendcmd_short(NULL
, true, 0xA0, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
);
441 if ((len
!= 1) || (receivedAnswer
[0] != 0x0A)) { // 0x0a - ACK
442 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Addr Error: %02x", receivedAnswer
[0]);
446 memset(d_block
,'\0',18);
447 memcpy(d_block
, blockData
, 16);
448 AppendCrc14443a(d_block
, 16);
450 ReaderTransmitPar(d_block
, sizeof(d_block
), par
, NULL
);
452 // Receive the response
453 len
= ReaderReceive(receivedAnswer
, receivedAnswerPar
);
455 if ((len
!= 1) || (receivedAnswer
[0] != 0x0A)) { // 0x0a - ACK
456 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Data Error: %02x %d", receivedAnswer
[0],len
);
463 int mifare_ultra_special_writeblock(uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)
468 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
469 uint8_t *receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
471 // command MIFARE_CLASSIC_WRITEBLOCK
472 memset(d_block
,'\0',8);
474 memcpy(d_block
+1,blockData
,4);
475 AppendCrc14443a(d_block
, 6);
477 //i know the data send here is correct
478 len
= mifare_sendcmd_short_special(NULL
, 1, 0xA2, d_block
, receivedAnswer
, receivedAnswerPar
, NULL
);
480 if (receivedAnswer
[0] != 0x0A) { // 0x0a - ACK
481 if (MF_DBGLEVEL
>= 1) Dbprintf("Cmd Send Error: %02x %d", receivedAnswer
[0],len
);
487 int mifare_classic_halt(struct Crypto1State
*pcs
, uint32_t uid
)
490 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
491 uint8_t *receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
493 len
= mifare_sendcmd_short(pcs
, pcs
== NULL
? false:true, 0x50, 0x00, receivedAnswer
, receivedAnswerPar
, NULL
);
495 if (MF_DBGLEVEL
>= 1) Dbprintf("halt error. response len: %x", len
);
502 int mifare_ultra_halt(uint32_t uid
)
505 uint8_t* receivedAnswer
= get_bigbufptr_recvrespbuf();
506 uint8_t *receivedAnswerPar
= receivedAnswer
+ MAX_FRAME_SIZE
;
508 len
= mifare_sendcmd_short(NULL
, true, 0x50, 0x00, receivedAnswer
, receivedAnswerPar
, NULL
);
510 if (MF_DBGLEVEL
>= 1) Dbprintf("halt error. response len: %x", len
);
518 // Mifare Memory Structure: up to 32 Sectors with 4 blocks each (1k and 2k cards),
519 // plus evtl. 8 sectors with 16 blocks each (4k cards)
520 uint8_t NumBlocksPerSector(uint8_t sectorNo
)
528 uint8_t FirstBlockOfSector(uint8_t sectorNo
)
533 return 32*4 + (sectorNo
- 32) * 16;
538 // work with emulator memory
539 void emlSetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
540 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
541 memcpy(emCARD
+ blockNum
* 16, data
, blocksCount
* 16);
544 void emlGetMem(uint8_t *data
, int blockNum
, int blocksCount
) {
545 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
546 memcpy(data
, emCARD
+ blockNum
* 16, blocksCount
* 16);
549 void emlGetMemBt(uint8_t *data
, int bytePtr
, int byteCount
) {
550 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
551 memcpy(data
, emCARD
+ bytePtr
, byteCount
);
554 int emlCheckValBl(int blockNum
) {
555 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
556 uint8_t* data
= emCARD
+ blockNum
* 16;
558 if ((data
[0] != (data
[4] ^ 0xff)) || (data
[0] != data
[8]) ||
559 (data
[1] != (data
[5] ^ 0xff)) || (data
[1] != data
[9]) ||
560 (data
[2] != (data
[6] ^ 0xff)) || (data
[2] != data
[10]) ||
561 (data
[3] != (data
[7] ^ 0xff)) || (data
[3] != data
[11]) ||
562 (data
[12] != (data
[13] ^ 0xff)) || (data
[12] != data
[14]) ||
563 (data
[12] != (data
[15] ^ 0xff))
569 int emlGetValBl(uint32_t *blReg
, uint8_t *blBlock
, int blockNum
) {
570 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
571 uint8_t* data
= emCARD
+ blockNum
* 16;
573 if (emlCheckValBl(blockNum
)) {
577 memcpy(blReg
, data
, 4);
582 int emlSetValBl(uint32_t blReg
, uint8_t blBlock
, int blockNum
) {
583 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
584 uint8_t* data
= emCARD
+ blockNum
* 16;
586 memcpy(data
+ 0, &blReg
, 4);
587 memcpy(data
+ 8, &blReg
, 4);
588 blReg
= blReg
^ 0xffffffff;
589 memcpy(data
+ 4, &blReg
, 4);
592 data
[13] = blBlock
^ 0xff;
594 data
[15] = blBlock
^ 0xff;
599 uint64_t emlGetKey(int sectorNum
, int keyType
) {
601 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
603 memcpy(key
, emCARD
+ 16 * (FirstBlockOfSector(sectorNum
) + NumBlocksPerSector(sectorNum
) - 1) + keyType
* 10, 6);
604 return bytes_to_num(key
, 6);
607 void emlClearMem(void) {
610 const uint8_t trailer
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x80, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
611 const uint8_t uid
[] = {0xe6, 0x84, 0x87, 0xf3, 0x16, 0x88, 0x04, 0x00, 0x46, 0x8e, 0x45, 0x55, 0x4d, 0x70, 0x41, 0x04};
612 uint8_t* emCARD
= get_bigbufptr_emlcardmem();
614 memset(emCARD
, 0, CARD_MEMORY_SIZE
);
616 // fill sectors trailer data
617 for(b
= 3; b
< 256; b
<127?(b
+=4):(b
+=16)) {
618 emlSetMem((uint8_t *)trailer
, b
, 1);
622 emlSetMem((uint8_t *)uid
, 0, 1);