]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/mifareutil.c
MF Ultralight - Iceman's updates + mine
[proxmark3-svn] / armsrc / mifareutil.c
1 //-----------------------------------------------------------------------------
2 // Merlok, May 2011, 2012
3 // Many authors, whom made it possible
4 //
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
7 // the license.
8 //-----------------------------------------------------------------------------
9 // Work with mifare cards.
10 //-----------------------------------------------------------------------------
11
12 #include "proxmark3.h"
13 #include "apps.h"
14 #include "util.h"
15 #include "string.h"
16
17 #include "iso14443crc.h"
18 #include "iso14443a.h"
19 #include "crapto1.h"
20 #include "mifareutil.h"
21
22 int MF_DBGLEVEL = MF_DBG_ALL;
23
24 // crypto1 helpers
25 void mf_crypto1_decrypt(struct Crypto1State *pcs, uint8_t *data, int len){
26 uint8_t bt = 0;
27 int i;
28
29 if (len != 1) {
30 for (i = 0; i < len; i++)
31 data[i] = crypto1_byte(pcs, 0x00, 0) ^ data[i];
32 } else {
33 bt = 0;
34 for (i = 0; i < 4; i++)
35 bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data[0], i)) << i;
36
37 data[0] = bt;
38 }
39 return;
40 }
41
42 void mf_crypto1_encrypt(struct Crypto1State *pcs, uint8_t *data, uint16_t len, uint8_t *par) {
43 uint8_t bt = 0;
44 int i;
45 par[0] = 0;
46
47 for (i = 0; i < len; i++) {
48 bt = data[i];
49 data[i] = crypto1_byte(pcs, 0x00, 0) ^ data[i];
50 if((i&0x0007) == 0)
51 par[i>>3] = 0;
52 par[i>>3] |= (((filter(pcs->odd) ^ oddparity(bt)) & 0x01)<<(7-(i&0x0007)));
53 }
54 return;
55 }
56
57 uint8_t mf_crypto1_encrypt4bit(struct Crypto1State *pcs, uint8_t data) {
58 uint8_t bt = 0;
59 int i;
60
61 for (i = 0; i < 4; i++)
62 bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data, i)) << i;
63
64 return bt;
65 }
66
67 // send commands
68 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)
69 {
70 return mifare_sendcmd_shortex(pcs, crypted, cmd, data, answer, answer_parity, timing);
71 }
72
73 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)
74 {
75 uint8_t dcmd[8];
76 dcmd[0] = cmd;
77 dcmd[1] = data[0];
78 dcmd[2] = data[1];
79 dcmd[3] = data[2];
80 dcmd[4] = data[3];
81 dcmd[5] = data[4];
82 AppendCrc14443a(dcmd, 6);
83 ReaderTransmit(dcmd, sizeof(dcmd), NULL);
84 int len = ReaderReceive(answer, answer_parity);
85 if(!len) {
86 if (MF_DBGLEVEL >= 1) Dbprintf("Authentication failed. Card timeout.");
87 return 2;
88 }
89 return len;
90 }
91
92 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)
93 {
94 uint8_t dcmd[19];
95 int len;
96 dcmd[0] = cmd;
97 memcpy(dcmd+1,data,16);
98 AppendCrc14443a(dcmd, 17);
99
100 ReaderTransmit(dcmd, sizeof(dcmd), timing);
101 len = ReaderReceive(answer, answer_parity);
102 if(!len) {
103 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Authentication failed. Card timeout.");
104 len = ReaderReceive(answer,answer_parity);
105 }
106 if(len==1) {
107 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("NAK - Authentication failed.");
108 return 1;
109 }
110 return len;
111 }
112
113 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)
114 {
115 uint8_t dcmd[4], ecmd[4];
116 uint16_t pos, res;
117 uint8_t par[1]; // 1 Byte parity is enough here
118 dcmd[0] = cmd;
119 dcmd[1] = data;
120 AppendCrc14443a(dcmd, 2);
121
122 memcpy(ecmd, dcmd, sizeof(dcmd));
123
124 if (crypted) {
125 par[0] = 0;
126 for (pos = 0; pos < 4; pos++)
127 {
128 ecmd[pos] = crypto1_byte(pcs, 0x00, 0) ^ dcmd[pos];
129 par[0] |= (((filter(pcs->odd) ^ oddparity(dcmd[pos])) & 0x01) << (7-pos));
130 }
131
132 ReaderTransmitPar(ecmd, sizeof(ecmd), par, timing);
133
134 } else {
135 ReaderTransmit(dcmd, sizeof(dcmd), timing);
136 }
137
138 int len = ReaderReceive(answer, par);
139
140 if (answer_parity) *answer_parity = par[0];
141
142 if (crypted == CRYPT_ALL) {
143 if (len == 1) {
144 res = 0;
145 for (pos = 0; pos < 4; pos++)
146 res |= (crypto1_bit(pcs, 0, 0) ^ BIT(answer[0], pos)) << pos;
147
148 answer[0] = res;
149
150 } else {
151 for (pos = 0; pos < len; pos++)
152 {
153 answer[pos] = crypto1_byte(pcs, 0x00, 0) ^ answer[pos];
154 }
155 }
156 }
157
158 return len;
159 }
160
161 // mifare classic commands
162 int mifare_classic_auth(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t keyType, uint64_t ui64Key, uint8_t isNested)
163 {
164 return mifare_classic_authex(pcs, uid, blockNo, keyType, ui64Key, isNested, NULL, NULL);
165 }
166
167 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)
168 {
169 // variables
170 int len;
171 uint32_t pos;
172 uint8_t tmp4[4];
173 uint8_t par[1] = {0x00};
174 byte_t nr[4];
175 uint32_t nt, ntpp; // Supplied tag nonce
176
177 uint8_t mf_nr_ar[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
178 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
179 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
180
181 // Transmit MIFARE_CLASSIC_AUTH
182 len = mifare_sendcmd_short(pcs, isNested, 0x60 + (keyType & 0x01), blockNo, receivedAnswer, receivedAnswerPar, timing);
183 if (MF_DBGLEVEL >= 4) Dbprintf("rand tag nonce len: %x", len);
184 if (len != 4) return 1;
185
186 // "random" reader nonce:
187 nr[0] = 0x55;
188 nr[1] = 0x41;
189 nr[2] = 0x49;
190 nr[3] = 0x92;
191
192 // Save the tag nonce (nt)
193 nt = bytes_to_num(receivedAnswer, 4);
194
195 // ----------------------------- crypto1 create
196 if (isNested)
197 crypto1_destroy(pcs);
198
199 // Init cipher with key
200 crypto1_create(pcs, ui64Key);
201
202 if (isNested == AUTH_NESTED) {
203 // decrypt nt with help of new key
204 nt = crypto1_word(pcs, nt ^ uid, 1) ^ nt;
205 } else {
206 // Load (plain) uid^nt into the cipher
207 crypto1_word(pcs, nt ^ uid, 0);
208 }
209
210 // some statistic
211 if (!ntptr && (MF_DBGLEVEL >= 3))
212 Dbprintf("auth uid: %08x nt: %08x", uid, nt);
213
214 // save Nt
215 if (ntptr)
216 *ntptr = nt;
217
218 // Generate (encrypted) nr+parity by loading it into the cipher (Nr)
219 par[0] = 0;
220 for (pos = 0; pos < 4; pos++)
221 {
222 mf_nr_ar[pos] = crypto1_byte(pcs, nr[pos], 0) ^ nr[pos];
223 par[0] |= (((filter(pcs->odd) ^ oddparity(nr[pos])) & 0x01) << (7-pos));
224 }
225
226 // Skip 32 bits in pseudo random generator
227 nt = prng_successor(nt,32);
228
229 // ar+parity
230 for (pos = 4; pos < 8; pos++)
231 {
232 nt = prng_successor(nt,8);
233 mf_nr_ar[pos] = crypto1_byte(pcs,0x00,0) ^ (nt & 0xff);
234 par[0] |= (((filter(pcs->odd) ^ oddparity(nt & 0xff)) & 0x01) << (7-pos));
235 }
236
237 // Transmit reader nonce and reader answer
238 ReaderTransmitPar(mf_nr_ar, sizeof(mf_nr_ar), par, NULL);
239
240 // Receive 4 byte tag answer
241 len = ReaderReceive(receivedAnswer, receivedAnswerPar);
242 if (!len)
243 {
244 if (MF_DBGLEVEL >= 1) Dbprintf("Authentication failed. Card timeout.");
245 return 2;
246 }
247
248 memcpy(tmp4, receivedAnswer, 4);
249 ntpp = prng_successor(nt, 32) ^ crypto1_word(pcs, 0,0);
250
251 if (ntpp != bytes_to_num(tmp4, 4)) {
252 if (MF_DBGLEVEL >= 1) Dbprintf("Authentication failed. Error card response.");
253 return 3;
254 }
255
256 return 0;
257 }
258
259 int mifare_classic_readblock(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t *blockData)
260 {
261 // variables
262 int len;
263 uint8_t bt[2];
264
265 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
266 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
267
268 // command MIFARE_CLASSIC_READBLOCK
269 len = mifare_sendcmd_short(pcs, 1, 0x30, blockNo, receivedAnswer, receivedAnswerPar, NULL);
270 if (len == 1) {
271 if (MF_DBGLEVEL >= 1) Dbprintf("Cmd Error: %02x", receivedAnswer[0]);
272 return 1;
273 }
274 if (len != 18) {
275 if (MF_DBGLEVEL >= 1) Dbprintf("Cmd Error: card timeout. len: %x", len);
276 return 2;
277 }
278
279 memcpy(bt, receivedAnswer + 16, 2);
280 AppendCrc14443a(receivedAnswer, 16);
281 if (bt[0] != receivedAnswer[16] || bt[1] != receivedAnswer[17]) {
282 if (MF_DBGLEVEL >= 1) Dbprintf("Cmd CRC response error.");
283 return 3;
284 }
285
286 memcpy(blockData, receivedAnswer, 16);
287 return 0;
288 }
289
290 // mifare ultralight commands
291 int mifare_ultra_auth1(uint8_t *blockData){
292
293 uint16_t len;
294 uint8_t receivedAnswer[MAX_FRAME_SIZE];
295 uint8_t receivedAnswerPar[MAX_PARITY_SIZE];
296
297 len = mifare_sendcmd_short(NULL, 1, 0x1A, 0x00, receivedAnswer,receivedAnswerPar ,NULL);
298 if (len != 11) {
299 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Cmd Error: %02x", receivedAnswer[0]);
300 return 1;
301 }
302
303 if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {
304 Dbprintf("Auth1 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
305 receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],
306 receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],
307 receivedAnswer[10]);
308 }
309 memcpy(blockData, receivedAnswer, 11);
310 return 0;
311 }
312
313 int mifare_ultra_auth2(uint8_t *key, uint8_t *blockData){
314
315 uint16_t len;
316 uint8_t receivedAnswer[MAX_FRAME_SIZE];
317 uint8_t receivedAnswerPar[MAX_PARITY_SIZE];
318
319 len = mifare_sendcmd_short_mfucauth(NULL, 1, 0xAF, key, receivedAnswer, receivedAnswerPar, NULL);
320 if (len != 11) {
321 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Cmd Error: %02x", receivedAnswer[0]);
322 return 1;
323 }
324
325 if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {
326 Dbprintf("Auth2 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
327 receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],
328 receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],
329 receivedAnswer[10]);
330 }
331 memcpy(blockData, receivedAnswer, 11);
332 return 0;
333 }
334
335 int mifare_ultra_readblock(uint8_t blockNo, uint8_t *blockData)
336 {
337 uint16_t len;
338 uint8_t bt[2];
339 uint8_t receivedAnswer[MAX_FRAME_SIZE];
340 uint8_t receivedAnswerPar[MAX_PARITY_SIZE];
341
342 len = mifare_sendcmd_short(NULL, 1, 0x30, blockNo, receivedAnswer, receivedAnswerPar, NULL);
343 if (len == 1) {
344 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Cmd Error: %02x", receivedAnswer[0]);
345 return 1;
346 }
347 if (len != 18) {
348 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Cmd Error: card timeout. len: %x", len);
349 return 2;
350 }
351
352 memcpy(bt, receivedAnswer + 16, 2);
353 AppendCrc14443a(receivedAnswer, 16);
354 if (bt[0] != receivedAnswer[16] || bt[1] != receivedAnswer[17]) {
355 if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Cmd CRC response error.");
356 return 3;
357 }
358
359 memcpy(blockData, receivedAnswer, 14);
360 return 0;
361 }
362
363
364
365 int mifare_classic_writeblock(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t *blockData)
366 {
367 // variables
368 uint16_t len, i;
369 uint32_t pos;
370 uint8_t par[3] = {0}; // enough for 18 Bytes to send
371 byte_t res;
372
373 uint8_t d_block[18], d_block_enc[18];
374 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
375 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
376
377 // command MIFARE_CLASSIC_WRITEBLOCK
378 len = mifare_sendcmd_short(pcs, 1, 0xA0, blockNo, receivedAnswer, receivedAnswerPar, NULL);
379
380 if ((len != 1) || (receivedAnswer[0] != 0x0A)) { // 0x0a - ACK
381 if (MF_DBGLEVEL >= 1) Dbprintf("Cmd Error: %02x", receivedAnswer[0]);
382 return 1;
383 }
384
385 memcpy(d_block, blockData, 16);
386 AppendCrc14443a(d_block, 16);
387
388 // crypto
389 for (pos = 0; pos < 18; pos++)
390 {
391 d_block_enc[pos] = crypto1_byte(pcs, 0x00, 0) ^ d_block[pos];
392 par[pos>>3] |= (((filter(pcs->odd) ^ oddparity(d_block[pos])) & 0x01) << (7 - (pos&0x0007)));
393 }
394
395 ReaderTransmitPar(d_block_enc, sizeof(d_block_enc), par, NULL);
396
397 // Receive the response
398 len = ReaderReceive(receivedAnswer, receivedAnswerPar);
399
400 res = 0;
401 for (i = 0; i < 4; i++)
402 res |= (crypto1_bit(pcs, 0, 0) ^ BIT(receivedAnswer[0], i)) << i;
403
404 if ((len != 1) || (res != 0x0A)) {
405 if (MF_DBGLEVEL >= 1) Dbprintf("Cmd send data2 Error: %02x", res);
406 return 2;
407 }
408
409 return 0;
410 }
411
412 int mifare_ultra_writeblock(uint8_t blockNo, uint8_t *blockData)
413 {
414 uint16_t len;
415 uint8_t par[3] = {0}; // enough for 18 parity bits
416 uint8_t d_block[18] = {0x00};
417 uint8_t receivedAnswer[MAX_FRAME_SIZE];
418 uint8_t receivedAnswerPar[MAX_PARITY_SIZE];
419
420 // command MIFARE_CLASSIC_WRITEBLOCK
421 len = mifare_sendcmd_short(NULL, true, 0xA0, blockNo, receivedAnswer, receivedAnswerPar, NULL);
422
423 if ((len != 1) || (receivedAnswer[0] != 0x0A)) { // 0x0a - ACK
424 if (MF_DBGLEVEL >= MF_DBG_ERROR)
425 Dbprintf("Cmd Addr Error: %02x", receivedAnswer[0]);
426 return 1;
427 }
428
429 memcpy(d_block, blockData, 16);
430 AppendCrc14443a(d_block, 16);
431
432 ReaderTransmitPar(d_block, sizeof(d_block), par, NULL);
433
434 len = ReaderReceive(receivedAnswer, receivedAnswerPar);
435
436 if ((len != 1) || (receivedAnswer[0] != 0x0A)) { // 0x0a - ACK
437 if (MF_DBGLEVEL >= MF_DBG_ERROR)
438 Dbprintf("Cmd Data Error: %02x %d", receivedAnswer[0],len);
439 return 2;
440 }
441 return 0;
442 }
443
444 int mifare_ultra_special_writeblock(uint8_t blockNo, uint8_t *blockData)
445 {
446 uint16_t len;
447 uint8_t d_block[8] = {0x00};
448 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
449 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
450
451 // command MIFARE_CLASSIC_WRITEBLOCK
452 d_block[0]= blockNo;
453 memcpy(d_block+1,blockData,4);
454 AppendCrc14443a(d_block, 6);
455
456 len = mifare_sendcmd_short_special(NULL, 1, 0xA2, d_block, receivedAnswer, receivedAnswerPar, NULL);
457
458 if (receivedAnswer[0] != 0x0A) { // 0x0a - ACK
459 if (MF_DBGLEVEL >= MF_DBG_ERROR)
460 Dbprintf("Cmd Send Error: %02x %d", receivedAnswer[0],len);
461 return 1;
462 }
463 return 0;
464 }
465
466 int mifare_classic_halt(struct Crypto1State *pcs, uint32_t uid)
467 {
468 uint16_t len;
469 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
470 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
471
472 len = mifare_sendcmd_short(pcs, pcs == NULL ? false:true, 0x50, 0x00, receivedAnswer, receivedAnswerPar, NULL);
473 if (len != 0) {
474 if (MF_DBGLEVEL >= MF_DBG_ERROR)
475 Dbprintf("halt error. response len: %x", len);
476 return 1;
477 }
478
479 return 0;
480 }
481
482 int mifare_ultra_halt()
483 {
484 uint16_t len;
485 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
486 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
487
488 len = mifare_sendcmd_short(NULL, true, 0x50, 0x00, receivedAnswer, receivedAnswerPar, NULL);
489 if (len != 0) {
490 if (MF_DBGLEVEL >= MF_DBG_ERROR)
491 Dbprintf("halt error. response len: %x", len);
492 return 1;
493 }
494 return 0;
495 }
496
497
498 // Mifare Memory Structure: up to 32 Sectors with 4 blocks each (1k and 2k cards),
499 // plus evtl. 8 sectors with 16 blocks each (4k cards)
500 uint8_t NumBlocksPerSector(uint8_t sectorNo)
501 {
502 if (sectorNo < 32)
503 return 4;
504 else
505 return 16;
506 }
507
508 uint8_t FirstBlockOfSector(uint8_t sectorNo)
509 {
510 if (sectorNo < 32)
511 return sectorNo * 4;
512 else
513 return 32*4 + (sectorNo - 32) * 16;
514
515 }
516
517
518 // work with emulator memory
519 void emlSetMem(uint8_t *data, int blockNum, int blocksCount) {
520 uint8_t* emCARD = BigBuf_get_EM_addr();
521 memcpy(emCARD + blockNum * 16, data, blocksCount * 16);
522 }
523
524 void emlGetMem(uint8_t *data, int blockNum, int blocksCount) {
525 uint8_t* emCARD = BigBuf_get_EM_addr();
526 memcpy(data, emCARD + blockNum * 16, blocksCount * 16);
527 }
528
529 void emlGetMemBt(uint8_t *data, int bytePtr, int byteCount) {
530 uint8_t* emCARD = BigBuf_get_EM_addr();
531 memcpy(data, emCARD + bytePtr, byteCount);
532 }
533
534 int emlCheckValBl(int blockNum) {
535 uint8_t* emCARD = BigBuf_get_EM_addr();
536 uint8_t* data = emCARD + blockNum * 16;
537
538 if ((data[0] != (data[4] ^ 0xff)) || (data[0] != data[8]) ||
539 (data[1] != (data[5] ^ 0xff)) || (data[1] != data[9]) ||
540 (data[2] != (data[6] ^ 0xff)) || (data[2] != data[10]) ||
541 (data[3] != (data[7] ^ 0xff)) || (data[3] != data[11]) ||
542 (data[12] != (data[13] ^ 0xff)) || (data[12] != data[14]) ||
543 (data[12] != (data[15] ^ 0xff))
544 )
545 return 1;
546 return 0;
547 }
548
549 int emlGetValBl(uint32_t *blReg, uint8_t *blBlock, int blockNum) {
550 uint8_t* emCARD = BigBuf_get_EM_addr();
551 uint8_t* data = emCARD + blockNum * 16;
552
553 if (emlCheckValBl(blockNum)) {
554 return 1;
555 }
556
557 memcpy(blReg, data, 4);
558 *blBlock = data[12];
559 return 0;
560 }
561
562 int emlSetValBl(uint32_t blReg, uint8_t blBlock, int blockNum) {
563 uint8_t* emCARD = BigBuf_get_EM_addr();
564 uint8_t* data = emCARD + blockNum * 16;
565
566 memcpy(data + 0, &blReg, 4);
567 memcpy(data + 8, &blReg, 4);
568 blReg = blReg ^ 0xffffffff;
569 memcpy(data + 4, &blReg, 4);
570
571 data[12] = blBlock;
572 data[13] = blBlock ^ 0xff;
573 data[14] = blBlock;
574 data[15] = blBlock ^ 0xff;
575
576 return 0;
577 }
578
579 uint64_t emlGetKey(int sectorNum, int keyType) {
580 uint8_t key[6];
581 uint8_t* emCARD = BigBuf_get_EM_addr();
582
583 memcpy(key, emCARD + 16 * (FirstBlockOfSector(sectorNum) + NumBlocksPerSector(sectorNum) - 1) + keyType * 10, 6);
584 return bytes_to_num(key, 6);
585 }
586
587 void emlClearMem(void) {
588 int b;
589
590 const uint8_t trailer[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x80, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
591 const uint8_t uid[] = {0xe6, 0x84, 0x87, 0xf3, 0x16, 0x88, 0x04, 0x00, 0x46, 0x8e, 0x45, 0x55, 0x4d, 0x70, 0x41, 0x04};
592 uint8_t* emCARD = BigBuf_get_EM_addr();
593
594 memset(emCARD, 0, CARD_MEMORY_SIZE);
595
596 // fill sectors trailer data
597 for(b = 3; b < 256; b<127?(b+=4):(b+=16)) {
598 emlSetMem((uint8_t *)trailer, b , 1);
599 }
600
601 // uid
602 emlSetMem((uint8_t *)uid, 0, 1);
603 return;
604 }
605
606
607 // Mifare desfire commands
608 int mifare_sendcmd_special(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t* data, uint8_t* answer, uint8_t *answer_parity, uint32_t *timing)
609 {
610 uint8_t dcmd[5] = {0x00};
611 dcmd[0] = cmd;
612 memcpy(dcmd+1,data,2);
613 AppendCrc14443a(dcmd, 3);
614
615 ReaderTransmit(dcmd, sizeof(dcmd), NULL);
616 int len = ReaderReceive(answer, answer_parity);
617 if(!len) {
618 if (MF_DBGLEVEL >= MF_DBG_ERROR)
619 Dbprintf("Authentication failed. Card timeout.");
620 return 1;
621 }
622 return len;
623 }
624
625 int mifare_sendcmd_special2(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t* data, uint8_t* answer,uint8_t *answer_parity, uint32_t *timing)
626 {
627 uint8_t dcmd[20] = {0x00};
628 dcmd[0] = cmd;
629 memcpy(dcmd+1,data,17);
630 AppendCrc14443a(dcmd, 18);
631
632 ReaderTransmit(dcmd, sizeof(dcmd), NULL);
633 int len = ReaderReceive(answer, answer_parity);
634 if(!len){
635 if (MF_DBGLEVEL >= MF_DBG_ERROR)
636 Dbprintf("Authentication failed. Card timeout.");
637 return 1;
638 }
639 return len;
640 }
641
642 int mifare_desfire_des_auth1(uint32_t uid, uint8_t *blockData){
643
644 int len;
645 // load key, keynumber
646 uint8_t data[2]={0x0a, 0x00};
647 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
648 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
649
650 len = mifare_sendcmd_special(NULL, 1, 0x02, data, receivedAnswer,receivedAnswerPar,NULL);
651 if (len == 1) {
652 if (MF_DBGLEVEL >= MF_DBG_ERROR)
653 Dbprintf("Cmd Error: %02x", receivedAnswer[0]);
654 return 1;
655 }
656
657 if (len == 12) {
658 if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {
659 Dbprintf("Auth1 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
660 receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],
661 receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],
662 receivedAnswer[10],receivedAnswer[11]);
663 }
664 memcpy(blockData, receivedAnswer, 12);
665 return 0;
666 }
667 return 1;
668 }
669
670 int mifare_desfire_des_auth2(uint32_t uid, uint8_t *key, uint8_t *blockData){
671
672 int len;
673 uint8_t data[17] = {0x00};
674 data[0] = 0xAF;
675 memcpy(data+1,key,16);
676
677 uint8_t receivedAnswer[MAX_MIFARE_FRAME_SIZE];
678 uint8_t receivedAnswerPar[MAX_MIFARE_PARITY_SIZE];
679
680 len = mifare_sendcmd_special2(NULL, 1, 0x03, data, receivedAnswer, receivedAnswerPar ,NULL);
681
682 if ((receivedAnswer[0] == 0x03) && (receivedAnswer[1] == 0xae)) {
683 if (MF_DBGLEVEL >= MF_DBG_ERROR)
684 Dbprintf("Auth Error: %02x %02x", receivedAnswer[0], receivedAnswer[1]);
685 return 1;
686 }
687
688 if (len == 12){
689 if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {
690 Dbprintf("Auth2 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
691 receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],
692 receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],
693 receivedAnswer[10],receivedAnswer[11]);
694 }
695 memcpy(blockData, receivedAnswer, 12);
696 return 0;
697 }
698 return 1;
699 }
Impressum, Datenschutz