]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/iclass.c
Emv scan via contact interface (#789)
[proxmark3-svn] / armsrc / iclass.c
CommitLineData
cee5a30d 1//-----------------------------------------------------------------------------
2// Gerhard de Koning Gans - May 2008
3// Hagen Fritsch - June 2010
4// Gerhard de Koning Gans - May 2011
1e262141 5// Gerhard de Koning Gans - June 2012 - Added iClass card and reader emulation
cee5a30d 6//
7// This code is licensed to you under the terms of the GNU GPL, version 2 or,
8// at your option, any later version. See the LICENSE.txt file for the text of
9// the license.
10//-----------------------------------------------------------------------------
11// Routines to support iClass.
12//-----------------------------------------------------------------------------
13// Based on ISO14443a implementation. Still in experimental phase.
14// Contribution made during a security research at Radboud University Nijmegen
15//
16// Please feel free to contribute and extend iClass support!!
17//-----------------------------------------------------------------------------
18//
cee5a30d 19// FIX:
20// ====
21// We still have sometimes a demodulation error when snooping iClass communication.
22// The resulting trace of a read-block-03 command may look something like this:
23//
24// + 22279: : 0c 03 e8 01
25//
26// ...with an incorrect answer...
27//
28// + 85: 0: TAG ff! ff! ff! ff! ff! ff! ff! ff! bb 33 bb 00 01! 0e! 04! bb !crc
29//
30// We still left the error signalling bytes in the traces like 0xbb
31//
32// A correct trace should look like this:
33//
34// + 21112: : 0c 03 e8 01
35// + 85: 0: TAG ff ff ff ff ff ff ff ff ea f5
36//
37//-----------------------------------------------------------------------------
38
39#include "proxmark3.h"
40#include "apps.h"
41#include "util.h"
42#include "string.h"
7e67e42f 43#include "common.h"
fecd8202 44#include "cmd.h"
6e49717b 45#include "iso14443a.h"
1e262141 46// Needed for CRC in emulation mode;
47// same construction as in ISO 14443;
48// different initial value (CRC_ICLASS)
49#include "iso14443crc.h"
c3963755 50#include "iso15693tools.h"
b67f7ec3 51#include "protocols.h"
10a8875c 52#include "optimized_cipher.h"
979c7655 53#include "usb_cdc.h" // for usb_poll_validate_length
fc52fbd4 54#include "fpgaloader.h"
10a8875c 55
1e262141 56static int timeout = 4096;
cee5a30d 57
cee5a30d 58
1e262141 59static int SendIClassAnswer(uint8_t *resp, int respLen, int delay);
cee5a30d 60
61//-----------------------------------------------------------------------------
62// The software UART that receives commands from the reader, and its state
63// variables.
64//-----------------------------------------------------------------------------
65static struct {
66 enum {
67 STATE_UNSYNCD,
68 STATE_START_OF_COMMUNICATION,
69 STATE_RECEIVING
70 } state;
71 uint16_t shiftReg;
72 int bitCnt;
73 int byteCnt;
74 int byteCntMax;
75 int posCnt;
76 int nOutOfCnt;
77 int OutOfCnt;
78 int syncBit;
1e262141 79 int samples;
cee5a30d 80 int highCnt;
81 int swapper;
82 int counter;
83 int bitBuffer;
84 int dropPosition;
6a1f2d82 85 uint8_t *output;
cee5a30d 86} Uart;
87
1e262141 88static RAMFUNC int OutOfNDecoding(int bit)
cee5a30d 89{
9f693930 90 //int error = 0;
cee5a30d 91 int bitright;
92
93 if(!Uart.bitBuffer) {
94 Uart.bitBuffer = bit ^ 0xFF0;
44964fd1 95 return false;
cee5a30d 96 }
97 else {
98 Uart.bitBuffer <<= 4;
99 Uart.bitBuffer ^= bit;
100 }
101
102 /*if(Uart.swapper) {
103 Uart.output[Uart.byteCnt] = Uart.bitBuffer & 0xFF;
104 Uart.byteCnt++;
105 Uart.swapper = 0;
44964fd1 106 if(Uart.byteCnt > 15) { return true; }
cee5a30d 107 }
108 else {
109 Uart.swapper = 1;
110 }*/
111
112 if(Uart.state != STATE_UNSYNCD) {
113 Uart.posCnt++;
114
115 if((Uart.bitBuffer & Uart.syncBit) ^ Uart.syncBit) {
116 bit = 0x00;
117 }
118 else {
119 bit = 0x01;
120 }
121 if(((Uart.bitBuffer << 1) & Uart.syncBit) ^ Uart.syncBit) {
122 bitright = 0x00;
123 }
124 else {
125 bitright = 0x01;
126 }
127 if(bit != bitright) { bit = bitright; }
128
129
130 // So, now we only have to deal with *bit*, lets see...
131 if(Uart.posCnt == 1) {
132 // measurement first half bitperiod
133 if(!bit) {
134 // Drop in first half means that we are either seeing
135 // an SOF or an EOF.
136
137 if(Uart.nOutOfCnt == 1) {
138 // End of Communication
139 Uart.state = STATE_UNSYNCD;
140 Uart.highCnt = 0;
141 if(Uart.byteCnt == 0) {
142 // Its not straightforward to show single EOFs
44964fd1 143 // So just leave it and do not return true
6a1f2d82 144 Uart.output[0] = 0xf0;
cee5a30d 145 Uart.byteCnt++;
cee5a30d 146 }
147 else {
44964fd1 148 return true;
cee5a30d 149 }
150 }
151 else if(Uart.state != STATE_START_OF_COMMUNICATION) {
152 // When not part of SOF or EOF, it is an error
153 Uart.state = STATE_UNSYNCD;
154 Uart.highCnt = 0;
9f693930 155 //error = 4;
cee5a30d 156 }
157 }
158 }
159 else {
160 // measurement second half bitperiod
161 // Count the bitslot we are in... (ISO 15693)
162 Uart.nOutOfCnt++;
163
164 if(!bit) {
165 if(Uart.dropPosition) {
166 if(Uart.state == STATE_START_OF_COMMUNICATION) {
9f693930 167 //error = 1;
cee5a30d 168 }
169 else {
9f693930 170 //error = 7;
cee5a30d 171 }
172 // It is an error if we already have seen a drop in current frame
173 Uart.state = STATE_UNSYNCD;
174 Uart.highCnt = 0;
175 }
176 else {
177 Uart.dropPosition = Uart.nOutOfCnt;
178 }
179 }
180
181 Uart.posCnt = 0;
182
183
184 if(Uart.nOutOfCnt == Uart.OutOfCnt && Uart.OutOfCnt == 4) {
185 Uart.nOutOfCnt = 0;
186
187 if(Uart.state == STATE_START_OF_COMMUNICATION) {
188 if(Uart.dropPosition == 4) {
189 Uart.state = STATE_RECEIVING;
190 Uart.OutOfCnt = 256;
191 }
192 else if(Uart.dropPosition == 3) {
193 Uart.state = STATE_RECEIVING;
194 Uart.OutOfCnt = 4;
195 //Uart.output[Uart.byteCnt] = 0xdd;
196 //Uart.byteCnt++;
197 }
198 else {
199 Uart.state = STATE_UNSYNCD;
200 Uart.highCnt = 0;
201 }
202 Uart.dropPosition = 0;
203 }
204 else {
205 // RECEIVING DATA
206 // 1 out of 4
207 if(!Uart.dropPosition) {
208 Uart.state = STATE_UNSYNCD;
209 Uart.highCnt = 0;
9f693930 210 //error = 9;
cee5a30d 211 }
212 else {
213 Uart.shiftReg >>= 2;
214
215 // Swap bit order
216 Uart.dropPosition--;
217 //if(Uart.dropPosition == 1) { Uart.dropPosition = 2; }
218 //else if(Uart.dropPosition == 2) { Uart.dropPosition = 1; }
219
220 Uart.shiftReg ^= ((Uart.dropPosition & 0x03) << 6);
221 Uart.bitCnt += 2;
222 Uart.dropPosition = 0;
223
224 if(Uart.bitCnt == 8) {
225 Uart.output[Uart.byteCnt] = (Uart.shiftReg & 0xff);
226 Uart.byteCnt++;
cee5a30d 227 Uart.bitCnt = 0;
228 Uart.shiftReg = 0;
229 }
230 }
231 }
232 }
233 else if(Uart.nOutOfCnt == Uart.OutOfCnt) {
234 // RECEIVING DATA
235 // 1 out of 256
236 if(!Uart.dropPosition) {
237 Uart.state = STATE_UNSYNCD;
238 Uart.highCnt = 0;
9f693930 239 //error = 3;
cee5a30d 240 }
241 else {
242 Uart.dropPosition--;
243 Uart.output[Uart.byteCnt] = (Uart.dropPosition & 0xff);
244 Uart.byteCnt++;
cee5a30d 245 Uart.bitCnt = 0;
246 Uart.shiftReg = 0;
247 Uart.nOutOfCnt = 0;
248 Uart.dropPosition = 0;
249 }
250 }
251
252 /*if(error) {
253 Uart.output[Uart.byteCnt] = 0xAA;
254 Uart.byteCnt++;
255 Uart.output[Uart.byteCnt] = error & 0xFF;
256 Uart.byteCnt++;
257 Uart.output[Uart.byteCnt] = 0xAA;
258 Uart.byteCnt++;
259 Uart.output[Uart.byteCnt] = (Uart.bitBuffer >> 8) & 0xFF;
260 Uart.byteCnt++;
261 Uart.output[Uart.byteCnt] = Uart.bitBuffer & 0xFF;
262 Uart.byteCnt++;
263 Uart.output[Uart.byteCnt] = (Uart.syncBit >> 3) & 0xFF;
264 Uart.byteCnt++;
265 Uart.output[Uart.byteCnt] = 0xAA;
266 Uart.byteCnt++;
44964fd1 267 return true;
cee5a30d 268 }*/
269 }
270
271 }
272 else {
273 bit = Uart.bitBuffer & 0xf0;
274 bit >>= 4;
275 bit ^= 0x0F; // drops become 1s ;-)
276 if(bit) {
277 // should have been high or at least (4 * 128) / fc
278 // according to ISO this should be at least (9 * 128 + 20) / fc
279 if(Uart.highCnt == 8) {
280 // we went low, so this could be start of communication
281 // it turns out to be safer to choose a less significant
282 // syncbit... so we check whether the neighbour also represents the drop
283 Uart.posCnt = 1; // apparently we are busy with our first half bit period
284 Uart.syncBit = bit & 8;
285 Uart.samples = 3;
286 if(!Uart.syncBit) { Uart.syncBit = bit & 4; Uart.samples = 2; }
287 else if(bit & 4) { Uart.syncBit = bit & 4; Uart.samples = 2; bit <<= 2; }
288 if(!Uart.syncBit) { Uart.syncBit = bit & 2; Uart.samples = 1; }
289 else if(bit & 2) { Uart.syncBit = bit & 2; Uart.samples = 1; bit <<= 1; }
290 if(!Uart.syncBit) { Uart.syncBit = bit & 1; Uart.samples = 0;
291 if(Uart.syncBit && (Uart.bitBuffer & 8)) {
292 Uart.syncBit = 8;
293
294 // the first half bit period is expected in next sample
295 Uart.posCnt = 0;
296 Uart.samples = 3;
297 }
298 }
299 else if(bit & 1) { Uart.syncBit = bit & 1; Uart.samples = 0; }
300
301 Uart.syncBit <<= 4;
302 Uart.state = STATE_START_OF_COMMUNICATION;
303 Uart.bitCnt = 0;
304 Uart.byteCnt = 0;
cee5a30d 305 Uart.nOutOfCnt = 0;
306 Uart.OutOfCnt = 4; // Start at 1/4, could switch to 1/256
307 Uart.dropPosition = 0;
308 Uart.shiftReg = 0;
9f693930 309 //error = 0;
cee5a30d 310 }
311 else {
312 Uart.highCnt = 0;
313 }
314 }
315 else {
316 if(Uart.highCnt < 8) {
317 Uart.highCnt++;
318 }
319 }
320 }
321
44964fd1 322 return false;
cee5a30d 323}
324
325//=============================================================================
1e262141 326// Manchester
cee5a30d 327//=============================================================================
328
329static struct {
330 enum {
331 DEMOD_UNSYNCD,
332 DEMOD_START_OF_COMMUNICATION,
333 DEMOD_START_OF_COMMUNICATION2,
334 DEMOD_START_OF_COMMUNICATION3,
335 DEMOD_SOF_COMPLETE,
336 DEMOD_MANCHESTER_D,
337 DEMOD_MANCHESTER_E,
338 DEMOD_END_OF_COMMUNICATION,
339 DEMOD_END_OF_COMMUNICATION2,
340 DEMOD_MANCHESTER_F,
341 DEMOD_ERROR_WAIT
342 } state;
343 int bitCount;
344 int posCount;
345 int syncBit;
cee5a30d 346 uint16_t shiftReg;
347 int buffer;
348 int buffer2;
349 int buffer3;
350 int buff;
351 int samples;
352 int len;
353 enum {
354 SUB_NONE,
355 SUB_FIRST_HALF,
356 SUB_SECOND_HALF,
357 SUB_BOTH
358 } sub;
6a1f2d82 359 uint8_t *output;
cee5a30d 360} Demod;
361
362static RAMFUNC int ManchesterDecoding(int v)
363{
364 int bit;
365 int modulation;
366 int error = 0;
367
368 bit = Demod.buffer;
369 Demod.buffer = Demod.buffer2;
370 Demod.buffer2 = Demod.buffer3;
371 Demod.buffer3 = v;
372
373 if(Demod.buff < 3) {
374 Demod.buff++;
44964fd1 375 return false;
cee5a30d 376 }
377
378 if(Demod.state==DEMOD_UNSYNCD) {
379 Demod.output[Demod.len] = 0xfa;
380 Demod.syncBit = 0;
381 //Demod.samples = 0;
382 Demod.posCount = 1; // This is the first half bit period, so after syncing handle the second part
cee5a30d 383
384 if(bit & 0x08) {
385 Demod.syncBit = 0x08;
386 }
387
388 if(bit & 0x04) {
389 if(Demod.syncBit) {
390 bit <<= 4;
391 }
392 Demod.syncBit = 0x04;
393 }
394
395 if(bit & 0x02) {
396 if(Demod.syncBit) {
397 bit <<= 2;
398 }
399 Demod.syncBit = 0x02;
400 }
401
402 if(bit & 0x01 && Demod.syncBit) {
403 Demod.syncBit = 0x01;
404 }
405
406 if(Demod.syncBit) {
407 Demod.len = 0;
408 Demod.state = DEMOD_START_OF_COMMUNICATION;
409 Demod.sub = SUB_FIRST_HALF;
410 Demod.bitCount = 0;
411 Demod.shiftReg = 0;
cee5a30d 412 Demod.samples = 0;
413 if(Demod.posCount) {
414 //if(trigger) LED_A_OFF(); // Not useful in this case...
415 switch(Demod.syncBit) {
416 case 0x08: Demod.samples = 3; break;
417 case 0x04: Demod.samples = 2; break;
418 case 0x02: Demod.samples = 1; break;
419 case 0x01: Demod.samples = 0; break;
420 }
421 // SOF must be long burst... otherwise stay unsynced!!!
422 if(!(Demod.buffer & Demod.syncBit) || !(Demod.buffer2 & Demod.syncBit)) {
423 Demod.state = DEMOD_UNSYNCD;
424 }
425 }
426 else {
427 // SOF must be long burst... otherwise stay unsynced!!!
428 if(!(Demod.buffer2 & Demod.syncBit) || !(Demod.buffer3 & Demod.syncBit)) {
429 Demod.state = DEMOD_UNSYNCD;
430 error = 0x88;
431 }
432
433 }
434 error = 0;
435
436 }
437 }
438 else {
439 modulation = bit & Demod.syncBit;
440 modulation |= ((bit << 1) ^ ((Demod.buffer & 0x08) >> 3)) & Demod.syncBit;
cee5a30d 441
442 Demod.samples += 4;
443
444 if(Demod.posCount==0) {
445 Demod.posCount = 1;
446 if(modulation) {
447 Demod.sub = SUB_FIRST_HALF;
448 }
449 else {
450 Demod.sub = SUB_NONE;
451 }
452 }
453 else {
454 Demod.posCount = 0;
455 /*(modulation && (Demod.sub == SUB_FIRST_HALF)) {
456 if(Demod.state!=DEMOD_ERROR_WAIT) {
457 Demod.state = DEMOD_ERROR_WAIT;
458 Demod.output[Demod.len] = 0xaa;
459 error = 0x01;
460 }
461 }*/
462 //else if(modulation) {
463 if(modulation) {
464 if(Demod.sub == SUB_FIRST_HALF) {
465 Demod.sub = SUB_BOTH;
466 }
467 else {
468 Demod.sub = SUB_SECOND_HALF;
469 }
470 }
471 else if(Demod.sub == SUB_NONE) {
472 if(Demod.state == DEMOD_SOF_COMPLETE) {
473 Demod.output[Demod.len] = 0x0f;
474 Demod.len++;
cee5a30d 475 Demod.state = DEMOD_UNSYNCD;
476// error = 0x0f;
44964fd1 477 return true;
cee5a30d 478 }
479 else {
480 Demod.state = DEMOD_ERROR_WAIT;
481 error = 0x33;
482 }
483 /*if(Demod.state!=DEMOD_ERROR_WAIT) {
484 Demod.state = DEMOD_ERROR_WAIT;
485 Demod.output[Demod.len] = 0xaa;
486 error = 0x01;
487 }*/
488 }
489
490 switch(Demod.state) {
491 case DEMOD_START_OF_COMMUNICATION:
492 if(Demod.sub == SUB_BOTH) {
493 //Demod.state = DEMOD_MANCHESTER_D;
494 Demod.state = DEMOD_START_OF_COMMUNICATION2;
495 Demod.posCount = 1;
496 Demod.sub = SUB_NONE;
497 }
498 else {
499 Demod.output[Demod.len] = 0xab;
500 Demod.state = DEMOD_ERROR_WAIT;
501 error = 0xd2;
502 }
503 break;
504 case DEMOD_START_OF_COMMUNICATION2:
505 if(Demod.sub == SUB_SECOND_HALF) {
506 Demod.state = DEMOD_START_OF_COMMUNICATION3;
507 }
508 else {
509 Demod.output[Demod.len] = 0xab;
510 Demod.state = DEMOD_ERROR_WAIT;
511 error = 0xd3;
512 }
513 break;
514 case DEMOD_START_OF_COMMUNICATION3:
515 if(Demod.sub == SUB_SECOND_HALF) {
516// Demod.state = DEMOD_MANCHESTER_D;
517 Demod.state = DEMOD_SOF_COMPLETE;
518 //Demod.output[Demod.len] = Demod.syncBit & 0xFF;
519 //Demod.len++;
520 }
521 else {
522 Demod.output[Demod.len] = 0xab;
523 Demod.state = DEMOD_ERROR_WAIT;
524 error = 0xd4;
525 }
526 break;
527 case DEMOD_SOF_COMPLETE:
528 case DEMOD_MANCHESTER_D:
529 case DEMOD_MANCHESTER_E:
530 // OPPOSITE FROM ISO14443 - 11110000 = 0 (1 in 14443)
531 // 00001111 = 1 (0 in 14443)
532 if(Demod.sub == SUB_SECOND_HALF) { // SUB_FIRST_HALF
533 Demod.bitCount++;
534 Demod.shiftReg = (Demod.shiftReg >> 1) ^ 0x100;
535 Demod.state = DEMOD_MANCHESTER_D;
536 }
537 else if(Demod.sub == SUB_FIRST_HALF) { // SUB_SECOND_HALF
538 Demod.bitCount++;
539 Demod.shiftReg >>= 1;
540 Demod.state = DEMOD_MANCHESTER_E;
541 }
542 else if(Demod.sub == SUB_BOTH) {
543 Demod.state = DEMOD_MANCHESTER_F;
544 }
545 else {
546 Demod.state = DEMOD_ERROR_WAIT;
547 error = 0x55;
548 }
549 break;
550
551 case DEMOD_MANCHESTER_F:
552 // Tag response does not need to be a complete byte!
553 if(Demod.len > 0 || Demod.bitCount > 0) {
554 if(Demod.bitCount > 1) { // was > 0, do not interpret last closing bit, is part of EOF
6a1f2d82 555 Demod.shiftReg >>= (9 - Demod.bitCount); // right align data
cee5a30d 556 Demod.output[Demod.len] = Demod.shiftReg & 0xff;
557 Demod.len++;
cee5a30d 558 }
559
560 Demod.state = DEMOD_UNSYNCD;
44964fd1 561 return true;
cee5a30d 562 }
563 else {
564 Demod.output[Demod.len] = 0xad;
565 Demod.state = DEMOD_ERROR_WAIT;
566 error = 0x03;
567 }
568 break;
569
570 case DEMOD_ERROR_WAIT:
571 Demod.state = DEMOD_UNSYNCD;
572 break;
573
574 default:
575 Demod.output[Demod.len] = 0xdd;
576 Demod.state = DEMOD_UNSYNCD;
577 break;
578 }
579
580 /*if(Demod.bitCount>=9) {
581 Demod.output[Demod.len] = Demod.shiftReg & 0xff;
582 Demod.len++;
583
584 Demod.parityBits <<= 1;
585 Demod.parityBits ^= ((Demod.shiftReg >> 8) & 0x01);
586
587 Demod.bitCount = 0;
588 Demod.shiftReg = 0;
589 }*/
590 if(Demod.bitCount>=8) {
591 Demod.shiftReg >>= 1;
592 Demod.output[Demod.len] = (Demod.shiftReg & 0xff);
593 Demod.len++;
cee5a30d 594 Demod.bitCount = 0;
595 Demod.shiftReg = 0;
596 }
597
598 if(error) {
599 Demod.output[Demod.len] = 0xBB;
600 Demod.len++;
601 Demod.output[Demod.len] = error & 0xFF;
602 Demod.len++;
603 Demod.output[Demod.len] = 0xBB;
604 Demod.len++;
605 Demod.output[Demod.len] = bit & 0xFF;
606 Demod.len++;
607 Demod.output[Demod.len] = Demod.buffer & 0xFF;
608 Demod.len++;
609 // Look harder ;-)
610 Demod.output[Demod.len] = Demod.buffer2 & 0xFF;
611 Demod.len++;
612 Demod.output[Demod.len] = Demod.syncBit & 0xFF;
613 Demod.len++;
614 Demod.output[Demod.len] = 0xBB;
615 Demod.len++;
44964fd1 616 return true;
cee5a30d 617 }
618
619 }
620
621 } // end (state != UNSYNCED)
622
44964fd1 623 return false;
cee5a30d 624}
625
626//=============================================================================
1e262141 627// Finally, a `sniffer' for iClass communication
cee5a30d 628// Both sides of communication!
629//=============================================================================
630
631//-----------------------------------------------------------------------------
632// Record the sequence of commands sent by the reader to the tag, with
633// triggering so that we start recording at the point that the tag is moved
634// near the reader.
635//-----------------------------------------------------------------------------
636void RAMFUNC SnoopIClass(void)
637{
17cba269 638
cee5a30d 639
640 // We won't start recording the frames that we acquire until we trigger;
641 // a good trigger condition to get started is probably when we see a
642 // response from the tag.
44964fd1 643 //int triggered = false; // false to wait first for card
cee5a30d 644
645 // The command (reader -> tag) that we're receiving.
646 // The length of a received command will in most cases be no more than 18 bytes.
647 // So 32 should be enough!
f71f4deb 648 #define ICLASS_BUFFER_SIZE 32
649 uint8_t readerToTagCmd[ICLASS_BUFFER_SIZE];
cee5a30d 650 // The response (tag -> reader) that we're receiving.
f71f4deb 651 uint8_t tagToReaderResponse[ICLASS_BUFFER_SIZE];
6a1f2d82 652
7cc204bf 653 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
654
f71f4deb 655 // free all BigBuf memory
656 BigBuf_free();
657 // The DMA buffer, used to stream samples from the FPGA
658 uint8_t *dmaBuf = BigBuf_malloc(DMA_BUFFER_SIZE);
659
44964fd1 660 set_tracing(true);
3000dc4e 661 clear_trace();
44964fd1 662 iso14a_set_trigger(false);
cee5a30d 663
f71f4deb 664 int lastRxCounter;
117d9ec2 665 uint8_t *upTo;
cee5a30d 666 int smpl;
667 int maxBehindBy = 0;
668
669 // Count of samples received so far, so that we can include timing
670 // information in the trace buffer.
671 int samples = 0;
672 rsamples = 0;
673
cee5a30d 674 // Set up the demodulator for tag -> reader responses.
17cba269 675 Demod.output = tagToReaderResponse;
cee5a30d 676 Demod.len = 0;
677 Demod.state = DEMOD_UNSYNCD;
678
679 // Setup for the DMA.
6a5d4e17 680 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_ISO14443A);
cee5a30d 681 upTo = dmaBuf;
682 lastRxCounter = DMA_BUFFER_SIZE;
683 FpgaSetupSscDma((uint8_t *)dmaBuf, DMA_BUFFER_SIZE);
684
685 // And the reader -> tag commands
686 memset(&Uart, 0, sizeof(Uart));
17cba269 687 Uart.output = readerToTagCmd;
cee5a30d 688 Uart.byteCntMax = 32; // was 100 (greg)////////////////////////////////////////////////////////////////////////
689 Uart.state = STATE_UNSYNCD;
690
691 // And put the FPGA in the appropriate mode
692 // Signal field is off with the appropriate LED
693 LED_D_OFF();
694 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_SNIFFER);
695 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
696
81012e67 697 uint32_t time_0 = GetCountSspClk();
55eaed8f
MHS
698 uint32_t time_start = 0;
699 uint32_t time_stop = 0;
81012e67 700
cee5a30d 701 int div = 0;
702 //int div2 = 0;
703 int decbyte = 0;
704 int decbyter = 0;
705
706 // And now we loop, receiving samples.
707 for(;;) {
708 LED_A_ON();
709 WDT_HIT();
710 int behindBy = (lastRxCounter - AT91C_BASE_PDC_SSC->PDC_RCR) &
711 (DMA_BUFFER_SIZE-1);
712 if(behindBy > maxBehindBy) {
713 maxBehindBy = behindBy;
f71f4deb 714 if(behindBy > (9 * DMA_BUFFER_SIZE / 10)) {
cee5a30d 715 Dbprintf("blew circular buffer! behindBy=0x%x", behindBy);
716 goto done;
717 }
718 }
719 if(behindBy < 1) continue;
720
721 LED_A_OFF();
722 smpl = upTo[0];
723 upTo++;
724 lastRxCounter -= 1;
725 if(upTo - dmaBuf > DMA_BUFFER_SIZE) {
726 upTo -= DMA_BUFFER_SIZE;
727 lastRxCounter += DMA_BUFFER_SIZE;
728 AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t) upTo;
729 AT91C_BASE_PDC_SSC->PDC_RNCR = DMA_BUFFER_SIZE;
730 }
731
732 //samples += 4;
733 samples += 1;
cee5a30d 734
cee5a30d 735 if(smpl & 0xF) {
736 decbyte ^= (1 << (3 - div));
737 }
cee5a30d 738
739 // FOR READER SIDE COMMUMICATION...
17cba269 740
cee5a30d 741 decbyter <<= 2;
742 decbyter ^= (smpl & 0x30);
743
744 div++;
745
746 if((div + 1) % 2 == 0) {
747 smpl = decbyter;
1e262141 748 if(OutOfNDecoding((smpl & 0xF0) >> 4)) {
cee5a30d 749 rsamples = samples - Uart.samples;
55eaed8f 750 time_stop = (GetCountSspClk()-time_0) << 4;
cee5a30d 751 LED_C_ON();
17cba269 752
44964fd1 753 //if(!LogTrace(Uart.output,Uart.byteCnt, rsamples, Uart.parityBits,true)) break;
754 //if(!LogTrace(NULL, 0, Uart.endTime*16 - DELAY_READER_AIR2ARM_AS_SNIFFER, 0, true)) break;
d9de20fa 755 uint8_t parity[MAX_PARITY_SIZE];
756 GetParity(Uart.output, Uart.byteCnt, parity);
757 LogTrace(Uart.output,Uart.byteCnt, time_start, time_stop, parity, true);
17cba269
MHS
758
759 /* And ready to receive another command. */
cee5a30d 760 Uart.state = STATE_UNSYNCD;
761 /* And also reset the demod code, which might have been */
762 /* false-triggered by the commands from the reader. */
763 Demod.state = DEMOD_UNSYNCD;
764 LED_B_OFF();
765 Uart.byteCnt = 0;
55eaed8f
MHS
766 }else{
767 time_start = (GetCountSspClk()-time_0) << 4;
cee5a30d 768 }
769 decbyter = 0;
770 }
771
772 if(div > 3) {
773 smpl = decbyte;
774 if(ManchesterDecoding(smpl & 0x0F)) {
55eaed8f
MHS
775 time_stop = (GetCountSspClk()-time_0) << 4;
776
777 rsamples = samples - Demod.samples;
cee5a30d 778 LED_B_ON();
779
d9de20fa 780 uint8_t parity[MAX_PARITY_SIZE];
781 GetParity(Demod.output, Demod.len, parity);
782 LogTrace(Demod.output, Demod.len, time_start, time_stop, parity, false);
17cba269 783
cee5a30d 784 // And ready to receive another response.
785 memset(&Demod, 0, sizeof(Demod));
17cba269 786 Demod.output = tagToReaderResponse;
cee5a30d 787 Demod.state = DEMOD_UNSYNCD;
788 LED_C_OFF();
55eaed8f
MHS
789 }else{
790 time_start = (GetCountSspClk()-time_0) << 4;
cee5a30d 791 }
792
793 div = 0;
794 decbyte = 0x00;
795 }
796 //}
797
798 if(BUTTON_PRESS()) {
799 DbpString("cancelled_a");
800 goto done;
801 }
802 }
803
804 DbpString("COMMAND FINISHED");
805
806 Dbprintf("%x %x %x", maxBehindBy, Uart.state, Uart.byteCnt);
3000dc4e 807 Dbprintf("%x %x %x", Uart.byteCntMax, BigBuf_get_traceLen(), (int)Uart.output[0]);
cee5a30d 808
809done:
810 AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTDIS;
811 Dbprintf("%x %x %x", maxBehindBy, Uart.state, Uart.byteCnt);
3000dc4e 812 Dbprintf("%x %x %x", Uart.byteCntMax, BigBuf_get_traceLen(), (int)Uart.output[0]);
cee5a30d 813 LED_A_OFF();
814 LED_B_OFF();
1e262141 815 LED_C_OFF();
816 LED_D_OFF();
817}
818
912a3e94 819void rotateCSN(uint8_t* originalCSN, uint8_t* rotatedCSN) {
820 int i;
821 for(i = 0; i < 8; i++) {
822 rotatedCSN[i] = (originalCSN[i] >> 3) | (originalCSN[(i+1)%8] << 5);
1e262141 823 }
824}
825
826//-----------------------------------------------------------------------------
827// Wait for commands from reader
828// Stop when button is pressed
44964fd1 829// Or return true when command is captured
1e262141 830//-----------------------------------------------------------------------------
831static int GetIClassCommandFromReader(uint8_t *received, int *len, int maxLen)
832{
912a3e94 833 // Set FPGA mode to "simulated ISO 14443 tag", no modulation (listen
1e262141 834 // only, since we are receiving, not transmitting).
835 // Signal field is off with the appropriate LED
836 LED_D_OFF();
837 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_TAGSIM_LISTEN);
838
839 // Now run a `software UART' on the stream of incoming samples.
840 Uart.output = received;
841 Uart.byteCntMax = maxLen;
842 Uart.state = STATE_UNSYNCD;
843
844 for(;;) {
845 WDT_HIT();
846
44964fd1 847 if(BUTTON_PRESS()) return false;
1e262141 848
849 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
850 AT91C_BASE_SSC->SSC_THR = 0x00;
851 }
852 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
853 uint8_t b = (uint8_t)AT91C_BASE_SSC->SSC_RHR;
3fe4ff4f 854
1e262141 855 if(OutOfNDecoding(b & 0x0f)) {
856 *len = Uart.byteCnt;
44964fd1 857 return true;
1e262141 858 }
859 }
860 }
861}
862
645c960f
MHS
863static uint8_t encode4Bits(const uint8_t b)
864{
865 uint8_t c = b & 0xF;
866 // OTA, the least significant bits first
867 // The columns are
868 // 1 - Bit value to send
869 // 2 - Reversed (big-endian)
870 // 3 - Encoded
871 // 4 - Hex values
872
873 switch(c){
874 // 1 2 3 4
875 case 15: return 0x55; // 1111 -> 1111 -> 01010101 -> 0x55
876 case 14: return 0x95; // 1110 -> 0111 -> 10010101 -> 0x95
877 case 13: return 0x65; // 1101 -> 1011 -> 01100101 -> 0x65
878 case 12: return 0xa5; // 1100 -> 0011 -> 10100101 -> 0xa5
879 case 11: return 0x59; // 1011 -> 1101 -> 01011001 -> 0x59
880 case 10: return 0x99; // 1010 -> 0101 -> 10011001 -> 0x99
881 case 9: return 0x69; // 1001 -> 1001 -> 01101001 -> 0x69
882 case 8: return 0xa9; // 1000 -> 0001 -> 10101001 -> 0xa9
883 case 7: return 0x56; // 0111 -> 1110 -> 01010110 -> 0x56
884 case 6: return 0x96; // 0110 -> 0110 -> 10010110 -> 0x96
885 case 5: return 0x66; // 0101 -> 1010 -> 01100110 -> 0x66
886 case 4: return 0xa6; // 0100 -> 0010 -> 10100110 -> 0xa6
887 case 3: return 0x5a; // 0011 -> 1100 -> 01011010 -> 0x5a
888 case 2: return 0x9a; // 0010 -> 0100 -> 10011010 -> 0x9a
889 case 1: return 0x6a; // 0001 -> 1000 -> 01101010 -> 0x6a
890 default: return 0xaa; // 0000 -> 0000 -> 10101010 -> 0xaa
891
892 }
893}
1e262141 894
895//-----------------------------------------------------------------------------
896// Prepare tag messages
897//-----------------------------------------------------------------------------
898static void CodeIClassTagAnswer(const uint8_t *cmd, int len)
899{
645c960f
MHS
900
901 /*
902 * SOF comprises 3 parts;
903 * * An unmodulated time of 56.64 us
904 * * 24 pulses of 423.75 KHz (fc/32)
905 * * A logic 1, which starts with an unmodulated time of 18.88us
906 * followed by 8 pulses of 423.75kHz (fc/32)
907 *
908 *
909 * EOF comprises 3 parts:
910 * - A logic 0 (which starts with 8 pulses of fc/32 followed by an unmodulated
911 * time of 18.88us.
912 * - 24 pulses of fc/32
913 * - An unmodulated time of 56.64 us
914 *
915 *
916 * A logic 0 starts with 8 pulses of fc/32
917 * followed by an unmodulated time of 256/fc (~18,88us).
918 *
919 * A logic 0 starts with unmodulated time of 256/fc (~18,88us) followed by
920 * 8 pulses of fc/32 (also 18.88us)
921 *
922 * The mode FPGA_HF_SIMULATOR_MODULATE_424K_8BIT which we use to simulate tag,
923 * works like this.
924 * - A 1-bit input to the FPGA becomes 8 pulses on 423.5kHz (fc/32) (18.88us).
925 * - A 0-bit inptu to the FPGA becomes an unmodulated time of 18.88us
926 *
6b038d19 927 * In this mode the SOF can be written as 00011101 = 0x1D
645c960f
MHS
928 * The EOF can be written as 10111000 = 0xb8
929 * A logic 1 is 01
930 * A logic 0 is 10
931 *
932 * */
933
1e262141 934 int i;
935
936 ToSendReset();
937
938 // Send SOF
645c960f 939 ToSend[++ToSendMax] = 0x1D;
1e262141 940
941 for(i = 0; i < len; i++) {
1e262141 942 uint8_t b = cmd[i];
645c960f
MHS
943 ToSend[++ToSendMax] = encode4Bits(b & 0xF); //Least significant half
944 ToSend[++ToSendMax] = encode4Bits((b >>4) & 0xF);//Most significant half
1e262141 945 }
946
947 // Send EOF
645c960f 948 ToSend[++ToSendMax] = 0xB8;
81012e67 949 //lastProxToAirDuration = 8*ToSendMax - 3*8 - 3*8;//Not counting zeroes in the beginning or end
1e262141 950 // Convert from last byte pos to length
951 ToSendMax++;
952}
953
954// Only SOF
955static void CodeIClassTagSOF()
956{
81012e67
MHS
957 //So far a dummy implementation, not used
958 //int lastProxToAirDuration =0;
1e262141 959
81012e67 960 ToSendReset();
1e262141 961 // Send SOF
645c960f 962 ToSend[++ToSendMax] = 0x1D;
81012e67
MHS
963// lastProxToAirDuration = 8*ToSendMax - 3*8;//Not counting zeroes in the beginning
964
1e262141 965 // Convert from last byte pos to length
966 ToSendMax++;
967}
b67f7ec3
MHS
968#define MODE_SIM_CSN 0
969#define MODE_EXIT_AFTER_MAC 1
970#define MODE_FULLSIM 2
55eaed8f 971
b67f7ec3 972int doIClassSimulation(int simulationMode, uint8_t *reader_mac_buf);
ff7bb4ef
MHS
973/**
974 * @brief SimulateIClass simulates an iClass card.
975 * @param arg0 type of simulation
976 * - 0 uses the first 8 bytes in usb data as CSN
977 * - 2 "dismantling iclass"-attack. This mode iterates through all CSN's specified
978 * in the usb data. This mode collects MAC from the reader, in order to do an offline
979 * attack on the keys. For more info, see "dismantling iclass" and proxclone.com.
980 * - Other : Uses the default CSN (031fec8af7ff12e0)
981 * @param arg1 - number of CSN's contained in datain (applicable for mode 2 only)
982 * @param arg2
983 * @param datain
984 */
985void SimulateIClass(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain)
1e262141 986{
ff7bb4ef
MHS
987 uint32_t simType = arg0;
988 uint32_t numberOfCSNS = arg1;
7cc204bf 989 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
1e262141 990
ff7bb4ef 991 // Enable and clear the trace
44964fd1 992 set_tracing(true);
3000dc4e 993 clear_trace();
b67f7ec3
MHS
994 //Use the emulator memory for SIM
995 uint8_t *emulator = BigBuf_get_EM_addr();
81cd0474 996
ff7bb4ef
MHS
997 if(simType == 0) {
998 // Use the CSN from commandline
b67f7ec3
MHS
999 memcpy(emulator, datain, 8);
1000 doIClassSimulation(MODE_SIM_CSN,NULL);
ff7bb4ef
MHS
1001 }else if(simType == 1)
1002 {
b67f7ec3
MHS
1003 //Default CSN
1004 uint8_t csn_crc[] = { 0x03, 0x1f, 0xec, 0x8a, 0xf7, 0xff, 0x12, 0xe0, 0x00, 0x00 };
1005 // Use the CSN from commandline
1006 memcpy(emulator, csn_crc, 8);
1007 doIClassSimulation(MODE_SIM_CSN,NULL);
ff7bb4ef
MHS
1008 }
1009 else if(simType == 2)
1010 {
9f6e9d15 1011
7b941c8d 1012 uint8_t mac_responses[USB_CMD_DATA_SIZE] = { 0 };
eabba3df 1013 Dbprintf("Going into attack mode, %d CSNS sent", numberOfCSNS);
ff7bb4ef
MHS
1014 // In this mode, a number of csns are within datain. We'll simulate each one, one at a time
1015 // in order to collect MAC's from the reader. This can later be used in an offlne-attack
1016 // in order to obtain the keys, as in the "dismantling iclass"-paper.
9f6e9d15
MHS
1017 int i = 0;
1018 for( ; i < numberOfCSNS && i*8+8 < USB_CMD_DATA_SIZE; i++)
ff7bb4ef
MHS
1019 {
1020 // The usb data is 512 bytes, fitting 65 8-byte CSNs in there.
1021
b67f7ec3
MHS
1022 memcpy(emulator, datain+(i*8), 8);
1023 if(doIClassSimulation(MODE_EXIT_AFTER_MAC,mac_responses+i*8))
f83cc126 1024 {
645c960f 1025 cmd_send(CMD_ACK,CMD_SIMULATE_TAG_ICLASS,i,0,mac_responses,i*8);
f83cc126
MHS
1026 return; // Button pressed
1027 }
ff7bb4ef 1028 }
9f6e9d15
MHS
1029 cmd_send(CMD_ACK,CMD_SIMULATE_TAG_ICLASS,i,0,mac_responses,i*8);
1030
b67f7ec3
MHS
1031 }else if(simType == 3){
1032 //This is 'full sim' mode, where we use the emulator storage for data.
1033 doIClassSimulation(MODE_FULLSIM, NULL);
81012e67
MHS
1034 }
1035 else{
ff7bb4ef
MHS
1036 // We may want a mode here where we hardcode the csns to use (from proxclone).
1037 // That will speed things up a little, but not required just yet.
1038 Dbprintf("The mode is not implemented, reserved for future use");
1039 }
9f6e9d15 1040 Dbprintf("Done...");
ff7bb4ef
MHS
1041
1042}
c8387e85
MHS
1043void AppendCrc(uint8_t* data, int len)
1044{
1045 ComputeCrc14443(CRC_ICLASS,data,len,data+len,data+len+1);
1046}
b67f7ec3 1047
ff7bb4ef
MHS
1048/**
1049 * @brief Does the actual simulation
1050 * @param csn - csn to use
1051 * @param breakAfterMacReceived if true, returns after reader MAC has been received.
1052 */
b67f7ec3 1053int doIClassSimulation( int simulationMode, uint8_t *reader_mac_buf)
ff7bb4ef 1054{
b67f7ec3
MHS
1055 // free eventually allocated BigBuf memory
1056 BigBuf_free_keep_EM();
55eaed8f 1057
61fe9073
MHS
1058 State cipher_state;
1059// State cipher_state_reserve;
b67f7ec3
MHS
1060 uint8_t *csn = BigBuf_get_EM_addr();
1061 uint8_t *emulator = csn;
1062 uint8_t sof_data[] = { 0x0F} ;
1e262141 1063 // CSN followed by two CRC bytes
b67f7ec3
MHS
1064 uint8_t anticoll_data[10] = { 0 };
1065 uint8_t csn_data[10] = { 0 };
1066 memcpy(csn_data,csn,sizeof(csn_data));
f83cc126 1067 Dbprintf("Simulating CSN %02x%02x%02x%02x%02x%02x%02x%02x",csn[0],csn[1],csn[2],csn[3],csn[4],csn[5],csn[6],csn[7]);
1e262141 1068
1e262141 1069 // Construct anticollision-CSN
b67f7ec3 1070 rotateCSN(csn_data,anticoll_data);
1e262141 1071
1072 // Compute CRC on both CSNs
b67f7ec3
MHS
1073 ComputeCrc14443(CRC_ICLASS, anticoll_data, 8, &anticoll_data[8], &anticoll_data[9]);
1074 ComputeCrc14443(CRC_ICLASS, csn_data, 8, &csn_data[8], &csn_data[9]);
1075
61fe9073 1076 uint8_t diversified_key[8] = { 0 };
b67f7ec3
MHS
1077 // e-Purse
1078 uint8_t card_challenge_data[8] = { 0x00 };
1079 if(simulationMode == MODE_FULLSIM)
1080 {
e5cd4ee4
MHS
1081 //The diversified key should be stored on block 3
1082 //Get the diversified key from emulator memory
1083 memcpy(diversified_key, emulator+(8*3),8);
1084
b67f7ec3
MHS
1085 //Card challenge, a.k.a e-purse is on block 2
1086 memcpy(card_challenge_data,emulator + (8 * 2) , 8);
61fe9073 1087 //Precalculate the cipher state, feeding it the CC
e5cd4ee4
MHS
1088 cipher_state = opt_doTagMAC_1(card_challenge_data,diversified_key);
1089
b67f7ec3 1090 }
1e262141 1091
ff7bb4ef 1092 int exitLoop = 0;
1e262141 1093 // Reader 0a
1094 // Tag 0f
1095 // Reader 0c
1096 // Tag anticoll. CSN
1097 // Reader 81 anticoll. CSN
1098 // Tag CSN
1099
55eaed8f 1100 uint8_t *modulated_response;
b19caaef 1101 int modulated_response_size = 0;
55eaed8f
MHS
1102 uint8_t* trace_data = NULL;
1103 int trace_data_size = 0;
1e262141 1104
b67f7ec3 1105
645c960f 1106 // Respond SOF -- takes 1 bytes
b67f7ec3
MHS
1107 uint8_t *resp_sof = BigBuf_malloc(2);
1108 int resp_sof_Len;
1e262141 1109
1110 // Anticollision CSN (rotated CSN)
645c960f 1111 // 22: Takes 2 bytes for SOF/EOF and 10 * 2 = 20 bytes (2 bytes/byte)
b67f7ec3
MHS
1112 uint8_t *resp_anticoll = BigBuf_malloc(28);
1113 int resp_anticoll_len;
1e262141 1114
1115 // CSN
645c960f 1116 // 22: Takes 2 bytes for SOF/EOF and 10 * 2 = 20 bytes (2 bytes/byte)
b67f7ec3
MHS
1117 uint8_t *resp_csn = BigBuf_malloc(30);
1118 int resp_csn_len;
1e262141 1119
1120 // e-Purse
b3cc5f29 1121 // 18: Takes 2 bytes for SOF/EOF and 8 * 2 = 16 bytes (2 bytes/bit)
b67f7ec3
MHS
1122 uint8_t *resp_cc = BigBuf_malloc(20);
1123 int resp_cc_len;
1e262141 1124
f71f4deb 1125 uint8_t *receivedCmd = BigBuf_malloc(MAX_FRAME_SIZE);
1e262141 1126 int len;
1127
1e262141 1128 // Prepare card messages
1129 ToSendMax = 0;
1130
1131 // First card answer: SOF
1132 CodeIClassTagSOF();
b67f7ec3 1133 memcpy(resp_sof, ToSend, ToSendMax); resp_sof_Len = ToSendMax;
1e262141 1134
1135 // Anticollision CSN
b67f7ec3
MHS
1136 CodeIClassTagAnswer(anticoll_data, sizeof(anticoll_data));
1137 memcpy(resp_anticoll, ToSend, ToSendMax); resp_anticoll_len = ToSendMax;
1e262141 1138
1139 // CSN
b67f7ec3
MHS
1140 CodeIClassTagAnswer(csn_data, sizeof(csn_data));
1141 memcpy(resp_csn, ToSend, ToSendMax); resp_csn_len = ToSendMax;
1e262141 1142
1143 // e-Purse
b67f7ec3
MHS
1144 CodeIClassTagAnswer(card_challenge_data, sizeof(card_challenge_data));
1145 memcpy(resp_cc, ToSend, ToSendMax); resp_cc_len = ToSendMax;
1e262141 1146
b19caaef 1147 //This is used for responding to READ-block commands or other data which is dynamically generated
c8387e85
MHS
1148 //First the 'trace'-data, not encoded for FPGA
1149 uint8_t *data_generic_trace = BigBuf_malloc(8 + 2);//8 bytes data + 2byte CRC is max tag answer
1150 //Then storage for the modulated data
1151 //Each bit is doubled when modulated for FPGA, and we also have SOF and EOF (2 bytes)
1152 uint8_t *data_response = BigBuf_malloc( (8+2) * 2 + 2);
e3dc1e4c
MHS
1153
1154 // Start from off (no field generated)
fa541aca
MHS
1155 //FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1156 //SpinDelay(200);
1157 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_TAGSIM_LISTEN);
1158 SpinDelay(100);
1159 StartCountSspClk();
1e262141 1160 // We need to listen to the high-frequency, peak-detected path.
1161 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
6a5d4e17 1162 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_ISO14443A);
1e262141 1163
1164 // To control where we are in the protocol
1e262141 1165 int cmdsRecvd = 0;
81012e67
MHS
1166 uint32_t time_0 = GetCountSspClk();
1167 uint32_t t2r_time =0;
1168 uint32_t r2t_time =0;
912a3e94 1169
1e262141 1170 LED_A_ON();
f83cc126 1171 bool buttonPressed = false;
e5cd4ee4 1172 uint8_t response_delay = 1;
ff7bb4ef 1173 while(!exitLoop) {
e5cd4ee4 1174 response_delay = 1;
1e262141 1175 LED_B_OFF();
e3dc1e4c
MHS
1176 //Signal tracer
1177 // Can be used to get a trigger for an oscilloscope..
1178 LED_C_OFF();
3fe4ff4f 1179
1e262141 1180 if(!GetIClassCommandFromReader(receivedCmd, &len, 100)) {
f83cc126 1181 buttonPressed = true;
1e262141 1182 break;
81cd0474 1183 }
81012e67 1184 r2t_time = GetCountSspClk();
e3dc1e4c
MHS
1185 //Signal tracer
1186 LED_C_ON();
1e262141 1187
81cd0474 1188 // Okay, look at the command now.
b67f7ec3 1189 if(receivedCmd[0] == ICLASS_CMD_ACTALL ) {
1e262141 1190 // Reader in anticollission phase
b67f7ec3
MHS
1191 modulated_response = resp_sof; modulated_response_size = resp_sof_Len; //order = 1;
1192 trace_data = sof_data;
1193 trace_data_size = sizeof(sof_data);
1194 } else if(receivedCmd[0] == ICLASS_CMD_READ_OR_IDENTIFY && len == 1) {
1e262141 1195 // Reader asks for anticollission CSN
b67f7ec3
MHS
1196 modulated_response = resp_anticoll; modulated_response_size = resp_anticoll_len; //order = 2;
1197 trace_data = anticoll_data;
1198 trace_data_size = sizeof(anticoll_data);
1e262141 1199 //DbpString("Reader requests anticollission CSN:");
b67f7ec3 1200 } else if(receivedCmd[0] == ICLASS_CMD_SELECT) {
1e262141 1201 // Reader selects anticollission CSN.
1202 // Tag sends the corresponding real CSN
b67f7ec3
MHS
1203 modulated_response = resp_csn; modulated_response_size = resp_csn_len; //order = 3;
1204 trace_data = csn_data;
1205 trace_data_size = sizeof(csn_data);
1e262141 1206 //DbpString("Reader selects anticollission CSN:");
b67f7ec3 1207 } else if(receivedCmd[0] == ICLASS_CMD_READCHECK_KD) {
1e262141 1208 // Read e-purse (88 02)
b67f7ec3
MHS
1209 modulated_response = resp_cc; modulated_response_size = resp_cc_len; //order = 4;
1210 trace_data = card_challenge_data;
1211 trace_data_size = sizeof(card_challenge_data);
1e262141 1212 LED_B_ON();
b67f7ec3 1213 } else if(receivedCmd[0] == ICLASS_CMD_CHECK) {
1e262141 1214 // Reader random and reader MAC!!!
b67f7ec3 1215 if(simulationMode == MODE_FULLSIM)
61fe9073
MHS
1216 {
1217 //NR, from reader, is in receivedCmd +1
1218 opt_doTagMAC_2(cipher_state,receivedCmd+1,data_generic_trace,diversified_key);
1219
b19caaef 1220 trace_data = data_generic_trace;
b67f7ec3
MHS
1221 trace_data_size = 4;
1222 CodeIClassTagAnswer(trace_data , trace_data_size);
1223 memcpy(data_response, ToSend, ToSendMax);
1224 modulated_response = data_response;
1225 modulated_response_size = ToSendMax;
e5cd4ee4 1226 response_delay = 0;//We need to hurry here...
10a8875c 1227 //exitLoop = true;
b67f7ec3
MHS
1228 }else
1229 { //Not fullsim, we don't respond
1230 // We do not know what to answer, so lets keep quiet
1231 modulated_response = resp_sof; modulated_response_size = 0;
1232 trace_data = NULL;
1233 trace_data_size = 0;
1234 if (simulationMode == MODE_EXIT_AFTER_MAC){
1235 // dbprintf:ing ...
1236 Dbprintf("CSN: %02x %02x %02x %02x %02x %02x %02x %02x"
1237 ,csn[0],csn[1],csn[2],csn[3],csn[4],csn[5],csn[6],csn[7]);
1238 Dbprintf("RDR: (len=%02d): %02x %02x %02x %02x %02x %02x %02x %02x %02x",len,
1239 receivedCmd[0], receivedCmd[1], receivedCmd[2],
1240 receivedCmd[3], receivedCmd[4], receivedCmd[5],
1241 receivedCmd[6], receivedCmd[7], receivedCmd[8]);
1242 if (reader_mac_buf != NULL)
1243 {
1244 memcpy(reader_mac_buf,receivedCmd+1,8);
1245 }
1246 exitLoop = true;
9f6e9d15 1247 }
ff7bb4ef 1248 }
b67f7ec3
MHS
1249
1250 } else if(receivedCmd[0] == ICLASS_CMD_HALT && len == 1) {
1e262141 1251 // Reader ends the session
b67f7ec3 1252 modulated_response = resp_sof; modulated_response_size = 0; //order = 0;
55eaed8f
MHS
1253 trace_data = NULL;
1254 trace_data_size = 0;
b67f7ec3
MHS
1255 } else if(simulationMode == MODE_FULLSIM && receivedCmd[0] == ICLASS_CMD_READ_OR_IDENTIFY && len == 4){
1256 //Read block
1257 uint16_t blk = receivedCmd[1];
c8387e85
MHS
1258 //Take the data...
1259 memcpy(data_generic_trace, emulator+(blk << 3),8);
1260 //Add crc
1261 AppendCrc(data_generic_trace, 8);
1262 trace_data = data_generic_trace;
1263 trace_data_size = 10;
1264 CodeIClassTagAnswer(trace_data , trace_data_size);
1265 memcpy(data_response, ToSend, ToSendMax);
1266 modulated_response = data_response;
1267 modulated_response_size = ToSendMax;
1268 }else if(receivedCmd[0] == ICLASS_CMD_UPDATE && simulationMode == MODE_FULLSIM)
1269 {//Probably the reader wants to update the nonce. Let's just ignore that for now.
1270 // OBS! If this is implemented, don't forget to regenerate the cipher_state
1271 //We're expected to respond with the data+crc, exactly what's already in the receivedcmd
1272 //receivedcmd is now UPDATE 1b | ADDRESS 1b| DATA 8b| Signature 4b or CRC 2b|
1273
1274 //Take the data...
1275 memcpy(data_generic_trace, receivedCmd+2,8);
1276 //Add crc
1277 AppendCrc(data_generic_trace, 8);
1278 trace_data = data_generic_trace;
1279 trace_data_size = 10;
b67f7ec3
MHS
1280 CodeIClassTagAnswer(trace_data , trace_data_size);
1281 memcpy(data_response, ToSend, ToSendMax);
1282 modulated_response = data_response;
1283 modulated_response_size = ToSendMax;
1284 }
b19caaef
MHS
1285 else if(receivedCmd[0] == ICLASS_CMD_PAGESEL)
1286 {//Pagesel
1287 //Pagesel enables to select a page in the selected chip memory and return its configuration block
1288 //Chips with a single page will not answer to this command
1289 // It appears we're fine ignoring this.
1290 //Otherwise, we should answer 8bytes (block) + 2bytes CRC
1291 }
b67f7ec3 1292 else {
17cba269 1293 //#db# Unknown command received from reader (len=5): 26 1 0 f6 a 44 44 44 44
1e262141 1294 // Never seen this command before
1295 Dbprintf("Unknown command received from reader (len=%d): %x %x %x %x %x %x %x %x %x",
1296 len,
1297 receivedCmd[0], receivedCmd[1], receivedCmd[2],
1298 receivedCmd[3], receivedCmd[4], receivedCmd[5],
1299 receivedCmd[6], receivedCmd[7], receivedCmd[8]);
1300 // Do not respond
b67f7ec3 1301 modulated_response = resp_sof; modulated_response_size = 0; //order = 0;
55eaed8f
MHS
1302 trace_data = NULL;
1303 trace_data_size = 0;
1e262141 1304 }
1305
81012e67
MHS
1306 if(cmdsRecvd > 100) {
1307 //DbpString("100 commands later...");
9f6e9d15 1308 //break;
1e262141 1309 }
1310 else {
1311 cmdsRecvd++;
1312 }
55eaed8f 1313 /**
6b038d19 1314 A legit tag has about 380us delay between reader EOT and tag SOF.
55eaed8f
MHS
1315 **/
1316 if(modulated_response_size > 0) {
e5cd4ee4 1317 SendIClassAnswer(modulated_response, modulated_response_size, response_delay);
81012e67 1318 t2r_time = GetCountSspClk();
81cd0474 1319 }
f83cc126 1320
d9de20fa 1321 uint8_t parity[MAX_PARITY_SIZE];
1322 GetParity(receivedCmd, len, parity);
1323 LogTrace(receivedCmd,len, (r2t_time-time_0)<< 4, (r2t_time-time_0) << 4, parity, true);
81012e67 1324
d9de20fa 1325 if (trace_data != NULL) {
1326 GetParity(trace_data, trace_data_size, parity);
1327 LogTrace(trace_data, trace_data_size, (t2r_time-time_0) << 4, (t2r_time-time_0) << 4, parity, false);
1328 }
1329 if(!get_tracing()) {
1330 DbpString("Trace full");
1331 //break;
81cd0474 1332 }
81cd0474 1333 }
1e262141 1334
9f6e9d15 1335 //Dbprintf("%x", cmdsRecvd);
1e262141 1336 LED_A_OFF();
1337 LED_B_OFF();
7b941c8d
MHS
1338 LED_C_OFF();
1339
f83cc126
MHS
1340 if(buttonPressed)
1341 {
1342 DbpString("Button pressed");
1343 }
f83cc126 1344 return buttonPressed;
1e262141 1345}
1346
1347static int SendIClassAnswer(uint8_t *resp, int respLen, int delay)
1348{
e3dc1e4c 1349 int i = 0, d=0;//, u = 0, d = 0;
1e262141 1350 uint8_t b = 0;
e3dc1e4c 1351
645c960f
MHS
1352 //FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR|FPGA_HF_SIMULATOR_MODULATE_424K);
1353 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR|FPGA_HF_SIMULATOR_MODULATE_424K_8BIT);
e3dc1e4c 1354
1e262141 1355 AT91C_BASE_SSC->SSC_THR = 0x00;
6a5d4e17 1356 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_SIMULATOR);
e3dc1e4c
MHS
1357 while(!BUTTON_PRESS()) {
1358 if((AT91C_BASE_SSC->SSC_SR & AT91C_SSC_RXRDY)){
1359 b = AT91C_BASE_SSC->SSC_RHR; (void) b;
1e262141 1360 }
e3dc1e4c
MHS
1361 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)){
1362 b = 0x00;
1e262141 1363 if(d < delay) {
1e262141 1364 d++;
1365 }
e3dc1e4c
MHS
1366 else {
1367 if( i < respLen){
1368 b = resp[i];
1369 //Hack
1370 //b = 0xAC;
1371 }
1372 i++;
1e262141 1373 }
1374 AT91C_BASE_SSC->SSC_THR = b;
1e262141 1375 }
e3dc1e4c 1376
645c960f
MHS
1377// if (i > respLen +4) break;
1378 if (i > respLen +1) break;
1e262141 1379 }
1380
1381 return 0;
1382}
1383
1384/// THE READER CODE
1385
1386//-----------------------------------------------------------------------------
1387// Transmit the command (to the tag) that was placed in ToSend[].
1388//-----------------------------------------------------------------------------
1389static void TransmitIClassCommand(const uint8_t *cmd, int len, int *samples, int *wait)
1390{
1391 int c;
1e262141 1392 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_READER_MOD);
1393 AT91C_BASE_SSC->SSC_THR = 0x00;
6a5d4e17 1394 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_ISO14443A);
1e262141 1395
1396 if (wait)
2ed270a8
MHS
1397 {
1398 if(*wait < 10) *wait = 10;
1399
1400 for(c = 0; c < *wait;) {
1401 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
1402 AT91C_BASE_SSC->SSC_THR = 0x00; // For exact timing!
1403 c++;
1404 }
1405 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
1406 volatile uint32_t r = AT91C_BASE_SSC->SSC_RHR;
1407 (void)r;
1408 }
1409 WDT_HIT();
1410 }
1411
1412 }
1e262141 1413
1e262141 1414
1415 uint8_t sendbyte;
44964fd1 1416 bool firstpart = true;
1e262141 1417 c = 0;
1418 for(;;) {
1419 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
1420
1421 // DOUBLE THE SAMPLES!
1422 if(firstpart) {
1423 sendbyte = (cmd[c] & 0xf0) | (cmd[c] >> 4);
1424 }
1425 else {
1426 sendbyte = (cmd[c] & 0x0f) | (cmd[c] << 4);
1427 c++;
1428 }
1429 if(sendbyte == 0xff) {
1430 sendbyte = 0xfe;
1431 }
1432 AT91C_BASE_SSC->SSC_THR = sendbyte;
1433 firstpart = !firstpart;
1434
1435 if(c >= len) {
1436 break;
1437 }
1438 }
1439 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
1440 volatile uint32_t r = AT91C_BASE_SSC->SSC_RHR;
1441 (void)r;
1442 }
1443 WDT_HIT();
1444 }
e7707cdb 1445 if (samples && wait) *samples = (c + *wait) << 3;
1e262141 1446}
1447
1448
1449//-----------------------------------------------------------------------------
1450// Prepare iClass reader command to send to FPGA
1451//-----------------------------------------------------------------------------
1452void CodeIClassCommand(const uint8_t * cmd, int len)
1453{
1454 int i, j, k;
1455 uint8_t b;
1456
1457 ToSendReset();
1458
1459 // Start of Communication: 1 out of 4
1460 ToSend[++ToSendMax] = 0xf0;
1461 ToSend[++ToSendMax] = 0x00;
1462 ToSend[++ToSendMax] = 0x0f;
1463 ToSend[++ToSendMax] = 0x00;
1464
1465 // Modulate the bytes
1466 for (i = 0; i < len; i++) {
1467 b = cmd[i];
1468 for(j = 0; j < 4; j++) {
1469 for(k = 0; k < 4; k++) {
e3dc1e4c 1470 if(k == (b & 3)) {
671ff89f 1471 ToSend[++ToSendMax] = 0xf0;
e3dc1e4c
MHS
1472 }
1473 else {
1474 ToSend[++ToSendMax] = 0x00;
1475 }
1e262141 1476 }
1477 b >>= 2;
1478 }
1479 }
1480
1481 // End of Communication
1482 ToSend[++ToSendMax] = 0x00;
1483 ToSend[++ToSendMax] = 0x00;
1484 ToSend[++ToSendMax] = 0xf0;
1485 ToSend[++ToSendMax] = 0x00;
1486
1487 // Convert from last character reference to length
1488 ToSendMax++;
1489}
1490
1491void ReaderTransmitIClass(uint8_t* frame, int len)
1492{
6a1f2d82 1493 int wait = 0;
1494 int samples = 0;
1495
1496 // This is tied to other size changes
6a1f2d82 1497 CodeIClassCommand(frame,len);
1498
1499 // Select the card
1500 TransmitIClassCommand(ToSend, ToSendMax, &samples, &wait);
1501 if(trigger)
1502 LED_A_ON();
1503
1504 // Store reader command in buffer
d9de20fa 1505 uint8_t par[MAX_PARITY_SIZE];
1506 GetParity(frame, len, par);
1507 LogTrace(frame, len, rsamples, rsamples, par, true);
1e262141 1508}
1509
1510//-----------------------------------------------------------------------------
1511// Wait a certain time for tag response
44964fd1 1512// If a response is captured return true
1513// If it takes too long return false
1e262141 1514//-----------------------------------------------------------------------------
1515static int GetIClassAnswer(uint8_t *receivedResponse, int maxLen, int *samples, int *elapsed) //uint8_t *buffer
1516{
1517 // buffer needs to be 512 bytes
1518 int c;
1519
1520 // Set FPGA mode to "reader listen mode", no modulation (listen
1521 // only, since we are receiving, not transmitting).
1522 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_READER_LISTEN);
1523
1524 // Now get the answer from the card
1525 Demod.output = receivedResponse;
1526 Demod.len = 0;
1527 Demod.state = DEMOD_UNSYNCD;
1528
1529 uint8_t b;
1530 if (elapsed) *elapsed = 0;
1531
44964fd1 1532 bool skip = false;
1e262141 1533
1534 c = 0;
1535 for(;;) {
1536 WDT_HIT();
1537
44964fd1 1538 if(BUTTON_PRESS()) return false;
1e262141 1539
1540 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
1541 AT91C_BASE_SSC->SSC_THR = 0x00; // To make use of exact timing of next command from reader!!
1542 if (elapsed) (*elapsed)++;
1543 }
1544 if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
44964fd1 1545 if(c < timeout) { c++; } else { return false; }
1e262141 1546 b = (uint8_t)AT91C_BASE_SSC->SSC_RHR;
1547 skip = !skip;
1548 if(skip) continue;
3fe4ff4f 1549
1e262141 1550 if(ManchesterDecoding(b & 0x0f)) {
1551 *samples = c << 3;
44964fd1 1552 return true;
1e262141 1553 }
1554 }
1555 }
1556}
1557
1558int ReaderReceiveIClass(uint8_t* receivedAnswer)
1559{
1560 int samples = 0;
44964fd1 1561 if (!GetIClassAnswer(receivedAnswer,160,&samples,0)) return false;
7bc95e2e 1562 rsamples += samples;
d9de20fa 1563 uint8_t parity[MAX_PARITY_SIZE];
1564 GetParity(receivedAnswer, Demod.len, parity);
1565 LogTrace(receivedAnswer,Demod.len,rsamples,rsamples,parity,false);
44964fd1 1566 if(samples == 0) return false;
1e262141 1567 return Demod.len;
1568}
1569
aa41c605
MHS
1570void setupIclassReader()
1571{
1572 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
1573 // Reset trace buffer
44964fd1 1574 set_tracing(true);
671ff89f 1575 clear_trace();
aa41c605
MHS
1576
1577 // Setup SSC
6a5d4e17 1578 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_ISO14443A);
aa41c605
MHS
1579 // Start from off (no field generated)
1580 // Signal field is off with the appropriate LED
1581 LED_D_OFF();
1582 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1583 SpinDelay(200);
1584
1585 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
1586
1587 // Now give it time to spin up.
1588 // Signal field is on with the appropriate LED
1589 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_READER_MOD);
1590 SpinDelay(200);
1591 LED_A_ON();
1592
1593}
1594
aa53efc3 1595bool sendCmdGetResponseWithRetries(uint8_t* command, size_t cmdsize, uint8_t* resp, uint8_t expected_size, uint8_t retries)
c8dd9b09
MHS
1596{
1597 while(retries-- > 0)
1598 {
1599 ReaderTransmitIClass(command, cmdsize);
1600 if(expected_size == ReaderReceiveIClass(resp)){
aa53efc3 1601 return true;
c8dd9b09
MHS
1602 }
1603 }
aa53efc3 1604 return false;//Error
c8dd9b09
MHS
1605}
1606
1607/**
1608 * @brief Talks to an iclass tag, sends the commands to get CSN and CC.
1609 * @param card_data where the CSN and CC are stored for return
1610 * @return 0 = fail
1611 * 1 = Got CSN
1612 * 2 = Got CSN and CC
1613 */
aa53efc3 1614uint8_t handshakeIclassTag_ext(uint8_t *card_data, bool use_credit_key)
c8dd9b09
MHS
1615{
1616 static uint8_t act_all[] = { 0x0a };
aa53efc3 1617 //static uint8_t identify[] = { 0x0c };
1618 static uint8_t identify[] = { 0x0c, 0x00, 0x73, 0x33 };
c8dd9b09 1619 static uint8_t select[] = { 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
aa53efc3 1620 static uint8_t readcheck_cc[]= { 0x88, 0x02 };
1621 if (use_credit_key)
1622 readcheck_cc[0] = 0x18;
1623 else
1624 readcheck_cc[0] = 0x88;
caaf9618 1625
f71f4deb 1626 uint8_t resp[ICLASS_BUFFER_SIZE];
c8dd9b09
MHS
1627
1628 uint8_t read_status = 0;
1629
1630 // Send act_all
1631 ReaderTransmitIClass(act_all, 1);
1632 // Card present?
1633 if(!ReaderReceiveIClass(resp)) return read_status;//Fail
1634 //Send Identify
1635 ReaderTransmitIClass(identify, 1);
1636 //We expect a 10-byte response here, 8 byte anticollision-CSN and 2 byte CRC
1637 uint8_t len = ReaderReceiveIClass(resp);
1638 if(len != 10) return read_status;//Fail
1639
1640 //Copy the Anti-collision CSN to our select-packet
1641 memcpy(&select[1],resp,8);
1642 //Select the card
1643 ReaderTransmitIClass(select, sizeof(select));
1644 //We expect a 10-byte response here, 8 byte CSN and 2 byte CRC
1645 len = ReaderReceiveIClass(resp);
1646 if(len != 10) return read_status;//Fail
1647
1648 //Success - level 1, we got CSN
1649 //Save CSN in response data
1650 memcpy(card_data,resp,8);
1651
1652 //Flag that we got to at least stage 1, read CSN
1653 read_status = 1;
1654
34e2af02 1655 // Card selected, now read e-purse (cc) (only 8 bytes no CRC)
c8dd9b09
MHS
1656 ReaderTransmitIClass(readcheck_cc, sizeof(readcheck_cc));
1657 if(ReaderReceiveIClass(resp) == 8) {
1658 //Save CC (e-purse) in response data
1659 memcpy(card_data+8,resp,8);
caaf9618 1660 read_status++;
c8dd9b09
MHS
1661 }
1662
1663 return read_status;
1664}
671ff89f 1665uint8_t handshakeIclassTag(uint8_t *card_data) {
aa53efc3 1666 return handshakeIclassTag_ext(card_data, false);
1667}
c8dd9b09 1668
caaf9618 1669
1e262141 1670// Reader iClass Anticollission
1671void ReaderIClass(uint8_t arg0) {
1e262141 1672
83602aff
MHS
1673 uint8_t card_data[6 * 8]={0};
1674 memset(card_data, 0xFF, sizeof(card_data));
979c7655 1675 uint8_t last_csn[8]={0,0,0,0,0,0,0,0};
34e2af02 1676 uint8_t resp[ICLASS_BUFFER_SIZE];
1677 memset(resp, 0xFF, sizeof(resp));
caaf9618
MHS
1678 //Read conf block CRC(0x01) => 0xfa 0x22
1679 uint8_t readConf[] = { ICLASS_CMD_READ_OR_IDENTIFY,0x01, 0xfa, 0x22};
34e2af02 1680 //Read App Issuer Area block CRC(0x05) => 0xde 0x64
caaf9618
MHS
1681 uint8_t readAA[] = { ICLASS_CMD_READ_OR_IDENTIFY,0x05, 0xde, 0x64};
1682
6ce0e538 1683 int read_status= 0;
caaf9618 1684 uint8_t result_status = 0;
34e2af02 1685 // flag to read until one tag is found successfully
6ce0e538 1686 bool abort_after_read = arg0 & FLAG_ICLASS_READER_ONLY_ONCE;
34e2af02 1687 // flag to only try 5 times to find one tag then return
6ce0e538 1688 bool try_once = arg0 & FLAG_ICLASS_READER_ONE_TRY;
34e2af02 1689 // if neither abort_after_read nor try_once then continue reading until button pressed.
1690
1691 bool use_credit_key = arg0 & FLAG_ICLASS_READER_CEDITKEY;
1692 // test flags for what blocks to be sure to read
1693 uint8_t flagReadConfig = arg0 & FLAG_ICLASS_READER_CONF;
1694 uint8_t flagReadCC = arg0 & FLAG_ICLASS_READER_CC;
1695 uint8_t flagReadAA = arg0 & FLAG_ICLASS_READER_AA;
1696
1697 set_tracing(true);
6ce0e538 1698 setupIclassReader();
1e262141 1699
6ce0e538 1700 uint16_t tryCnt=0;
979c7655 1701 bool userCancelled = BUTTON_PRESS() || usb_poll_validate_length();
1702 while(!userCancelled)
6ce0e538 1703 {
979c7655 1704 // if only looking for one card try 2 times if we missed it the first time
1705 if (try_once && tryCnt > 2) break;
6ce0e538 1706 tryCnt++;
d9de20fa 1707 if(!get_tracing()) {
c8dd9b09
MHS
1708 DbpString("Trace full");
1709 break;
1710 }
1711 WDT_HIT();
4ab4336a 1712
aa53efc3 1713 read_status = handshakeIclassTag_ext(card_data, use_credit_key);
2e9d4b3f 1714
c8dd9b09 1715 if(read_status == 0) continue;
caaf9618
MHS
1716 if(read_status == 1) result_status = FLAG_ICLASS_READER_CSN;
1717 if(read_status == 2) result_status = FLAG_ICLASS_READER_CSN|FLAG_ICLASS_READER_CC;
1718
1719 // handshakeIclass returns CSN|CC, but the actual block
1720 // layout is CSN|CONFIG|CC, so here we reorder the data,
1721 // moving CC forward 8 bytes
1722 memcpy(card_data+16,card_data+8, 8);
1723 //Read block 1, config
34e2af02 1724 if(flagReadConfig) {
1725 if(sendCmdGetResponseWithRetries(readConf, sizeof(readConf), resp, 10, 10))
caaf9618
MHS
1726 {
1727 result_status |= FLAG_ICLASS_READER_CONF;
34e2af02 1728 memcpy(card_data+8, resp, 8);
aa53efc3 1729 } else {
1730 Dbprintf("Failed to dump config block");
caaf9618
MHS
1731 }
1732 }
c8dd9b09 1733
caaf9618 1734 //Read block 5, AA
34e2af02 1735 if(flagReadAA) {
1736 if(sendCmdGetResponseWithRetries(readAA, sizeof(readAA), resp, 10, 10))
caaf9618 1737 {
caaf9618 1738 result_status |= FLAG_ICLASS_READER_AA;
34e2af02 1739 memcpy(card_data+(8*5), resp, 8);
aa53efc3 1740 } else {
1741 //Dbprintf("Failed to dump AA block");
caaf9618
MHS
1742 }
1743 }
1744
1745 // 0 : CSN
b67f7ec3 1746 // 1 : Configuration
caaf9618
MHS
1747 // 2 : e-purse
1748 // (3,4 write-only, kc and kd)
b67f7ec3
MHS
1749 // 5 Application issuer area
1750 //
34e2af02 1751 //Then we can 'ship' back the 8 * 6 bytes of data,
b67f7ec3
MHS
1752 // with 0xFF:s in block 3 and 4.
1753
c8dd9b09 1754 LED_B_ON();
979c7655 1755 //Send back to client, but don't bother if we already sent this -
1756 // only useful if looping in arm (not try_once && not abort_after_read)
c8dd9b09
MHS
1757 if(memcmp(last_csn, card_data, 8) != 0)
1758 {
34e2af02 1759 // If caller requires that we get Conf, CC, AA, continue until we got it
1760 if( (result_status ^ FLAG_ICLASS_READER_CSN ^ flagReadConfig ^ flagReadCC ^ flagReadAA) == 0) {
caaf9618 1761 cmd_send(CMD_ACK,result_status,0,0,card_data,sizeof(card_data));
c8dd9b09
MHS
1762 if(abort_after_read) {
1763 LED_A_OFF();
979c7655 1764 LED_B_OFF();
c8dd9b09
MHS
1765 return;
1766 }
1767 //Save that we already sent this....
1768 memcpy(last_csn, card_data, 8);
1769 }
caaf9618 1770
c8dd9b09
MHS
1771 }
1772 LED_B_OFF();
979c7655 1773 userCancelled = BUTTON_PRESS() || usb_poll_validate_length();
1774 }
1775 if (userCancelled) {
1776 cmd_send(CMD_ACK,0xFF,0,0,card_data, 0);
1777 } else {
1778 cmd_send(CMD_ACK,0,0,0,card_data, 0);
6ce0e538 1779 }
3ac22ee1 1780 LED_A_OFF();
cee5a30d 1781}
1782
c3963755 1783void ReaderIClass_Replay(uint8_t arg0, uint8_t *MAC) {
c8dd9b09 1784
cb29e00a 1785 uint8_t card_data[USB_CMD_DATA_SIZE]={0};
39d3ce5d
MHS
1786 uint16_t block_crc_LUT[255] = {0};
1787
1788 {//Generate a lookup table for block crc
1789 for(int block = 0; block < 255; block++){
1790 char bl = block;
1791 block_crc_LUT[block] = iclass_crc16(&bl ,1);
1792 }
1793 }
1794 //Dbprintf("Lookup table: %02x %02x %02x" ,block_crc_LUT[0],block_crc_LUT[1],block_crc_LUT[2]);
c8dd9b09 1795
c3963755 1796 uint8_t check[] = { 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1797 uint8_t read[] = { 0x0c, 0x00, 0x00, 0x00 };
1798
fecd8202 1799 uint16_t crc = 0;
c3963755 1800 uint8_t cardsize=0;
c3963755 1801 uint8_t mem=0;
1802
1803 static struct memory_t{
1804 int k16;
1805 int book;
1806 int k2;
1807 int lockauth;
1808 int keyaccess;
1809 } memory;
1810
f71f4deb 1811 uint8_t resp[ICLASS_BUFFER_SIZE];
6a1f2d82 1812
9b82de75 1813 setupIclassReader();
44964fd1 1814 set_tracing(true);
c3963755 1815
c8dd9b09 1816 while(!BUTTON_PRESS()) {
c3963755 1817
39d3ce5d
MHS
1818 WDT_HIT();
1819
d9de20fa 1820 if(!get_tracing()) {
c3963755 1821 DbpString("Trace full");
1822 break;
1823 }
1824
c8dd9b09
MHS
1825 uint8_t read_status = handshakeIclassTag(card_data);
1826 if(read_status < 2) continue;
1827
1828 //for now replay captured auth (as cc not updated)
1829 memcpy(check+5,MAC,4);
1830
aa53efc3 1831 if(!sendCmdGetResponseWithRetries(check, sizeof(check),resp, 4, 5))
c8dd9b09
MHS
1832 {
1833 Dbprintf("Error: Authentication Fail!");
1834 continue;
1835 }
1836
39d3ce5d
MHS
1837 //first get configuration block (block 1)
1838 crc = block_crc_LUT[1];
c8dd9b09 1839 read[1]=1;
c8dd9b09
MHS
1840 read[2] = crc >> 8;
1841 read[3] = crc & 0xff;
1842
aa53efc3 1843 if(!sendCmdGetResponseWithRetries(read, sizeof(read),resp, 10, 10))
c8dd9b09 1844 {
39d3ce5d 1845 Dbprintf("Dump config (block 1) failed");
c8dd9b09
MHS
1846 continue;
1847 }
1848
1849 mem=resp[5];
1850 memory.k16= (mem & 0x80);
1851 memory.book= (mem & 0x20);
1852 memory.k2= (mem & 0x8);
1853 memory.lockauth= (mem & 0x2);
1854 memory.keyaccess= (mem & 0x1);
1855
1856 cardsize = memory.k16 ? 255 : 32;
1857 WDT_HIT();
cb29e00a
MHS
1858 //Set card_data to all zeroes, we'll fill it with data
1859 memset(card_data,0x0,USB_CMD_DATA_SIZE);
1860 uint8_t failedRead =0;
428d6221 1861 uint32_t stored_data_length =0;
c8dd9b09 1862 //then loop around remaining blocks
39d3ce5d 1863 for(int block=0; block < cardsize; block++){
c8dd9b09
MHS
1864
1865 read[1]= block;
39d3ce5d 1866 crc = block_crc_LUT[block];
c8dd9b09
MHS
1867 read[2] = crc >> 8;
1868 read[3] = crc & 0xff;
1869
aa53efc3 1870 if(sendCmdGetResponseWithRetries(read, sizeof(read), resp, 10, 10))
c8dd9b09
MHS
1871 {
1872 Dbprintf(" %02x: %02x %02x %02x %02x %02x %02x %02x %02x",
1873 block, resp[0], resp[1], resp[2],
1874 resp[3], resp[4], resp[5],
1875 resp[6], resp[7]);
1876
cb29e00a
MHS
1877 //Fill up the buffer
1878 memcpy(card_data+stored_data_length,resp,8);
1879 stored_data_length += 8;
cb29e00a
MHS
1880 if(stored_data_length +8 > USB_CMD_DATA_SIZE)
1881 {//Time to send this off and start afresh
1882 cmd_send(CMD_ACK,
1883 stored_data_length,//data length
1884 failedRead,//Failed blocks?
1885 0,//Not used ATM
1886 card_data, stored_data_length);
1887 //reset
1888 stored_data_length = 0;
1889 failedRead = 0;
1890 }
1891
c8dd9b09 1892 }else{
cb29e00a
MHS
1893 failedRead = 1;
1894 stored_data_length +=8;//Otherwise, data becomes misaligned
c8dd9b09 1895 Dbprintf("Failed to dump block %d", block);
c3963755 1896 }
1897 }
428d6221 1898
cb29e00a
MHS
1899 //Send off any remaining data
1900 if(stored_data_length > 0)
1901 {
1902 cmd_send(CMD_ACK,
1903 stored_data_length,//data length
1904 failedRead,//Failed blocks?
1905 0,//Not used ATM
1906 card_data, stored_data_length);
1907 }
c8dd9b09
MHS
1908 //If we got here, let's break
1909 break;
c3963755 1910 }
cb29e00a
MHS
1911 //Signal end of transmission
1912 cmd_send(CMD_ACK,
1913 0,//data length
1914 0,//Failed blocks?
1915 0,//Not used ATM
1916 card_data, 0);
1917
c3963755 1918 LED_A_OFF();
1919}
1920
3ac22ee1 1921void iClass_ReadCheck(uint8_t blockNo, uint8_t keyType) {
1922 uint8_t readcheck[] = { keyType, blockNo };
1923 uint8_t resp[] = {0,0,0,0,0,0,0,0};
1924 size_t isOK = 0;
1925 isOK = sendCmdGetResponseWithRetries(readcheck, sizeof(readcheck), resp, sizeof(resp), 6);
1926 cmd_send(CMD_ACK,isOK,0,0,0,0);
1927}
1928
aa53efc3 1929void iClass_Authentication(uint8_t *MAC) {
3ac22ee1 1930 uint8_t check[] = { ICLASS_CMD_CHECK, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
aa53efc3 1931 uint8_t resp[ICLASS_BUFFER_SIZE];
1932 memcpy(check+5,MAC,4);
1933 bool isOK;
3ac22ee1 1934 isOK = sendCmdGetResponseWithRetries(check, sizeof(check), resp, 4, 6);
aa53efc3 1935 cmd_send(CMD_ACK,isOK,0,0,0,0);
aa53efc3 1936}
3ac22ee1 1937bool iClass_ReadBlock(uint8_t blockNo, uint8_t *readdata) {
1938 uint8_t readcmd[] = {ICLASS_CMD_READ_OR_IDENTIFY, blockNo, 0x00, 0x00}; //0x88, 0x00 // can i use 0C?
1939 char bl = blockNo;
1940 uint16_t rdCrc = iclass_crc16(&bl, 1);
1941 readcmd[2] = rdCrc >> 8;
1942 readcmd[3] = rdCrc & 0xff;
1943 uint8_t resp[] = {0,0,0,0,0,0,0,0,0,0};
1944 bool isOK = false;
912a3e94 1945
3ac22ee1 1946 //readcmd[1] = blockNo;
1947 isOK = sendCmdGetResponseWithRetries(readcmd, sizeof(readcmd), resp, 10, 10);
1948 memcpy(readdata, resp, sizeof(resp));
fecd8202 1949
aa53efc3 1950 return isOK;
1951}
fecd8202 1952
3ac22ee1 1953void iClass_ReadBlk(uint8_t blockno) {
1954 uint8_t readblockdata[] = {0,0,0,0,0,0,0,0,0,0};
aa53efc3 1955 bool isOK = false;
3ac22ee1 1956 isOK = iClass_ReadBlock(blockno, readblockdata);
1957 cmd_send(CMD_ACK, isOK, 0, 0, readblockdata, 8);
aa53efc3 1958}
fecd8202 1959
3ac22ee1 1960void iClass_Dump(uint8_t blockno, uint8_t numblks) {
1961 uint8_t readblockdata[] = {0,0,0,0,0,0,0,0,0,0};
aa53efc3 1962 bool isOK = false;
1963 uint8_t blkCnt = 0;
fecd8202 1964
aa53efc3 1965 BigBuf_free();
1966 uint8_t *dataout = BigBuf_malloc(255*8);
aa53efc3 1967 if (dataout == NULL){
1968 Dbprintf("out of memory");
1969 OnError(1);
1970 return;
1971 }
3ac22ee1 1972 memset(dataout,0xFF,255*8);
fecd8202 1973
aa53efc3 1974 for (;blkCnt < numblks; blkCnt++) {
3ac22ee1 1975 isOK = iClass_ReadBlock(blockno+blkCnt, readblockdata);
1976 if (!isOK || (readblockdata[0] == 0xBB || readblockdata[7] == 0xBB || readblockdata[2] == 0xBB)) { //try again
1977 isOK = iClass_ReadBlock(blockno+blkCnt, readblockdata);
aa53efc3 1978 if (!isOK) {
1979 Dbprintf("Block %02X failed to read", blkCnt+blockno);
1980 break;
1981 }
fecd8202 1982 }
aa53efc3 1983 memcpy(dataout+(blkCnt*8),readblockdata,8);
aa53efc3 1984 }
1985 //return pointer to dump memory in arg3
1986 cmd_send(CMD_ACK,isOK,blkCnt,BigBuf_max_traceLen(),0,0);
1987 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1988 LEDsoff();
1989 BigBuf_free();
1990}
1991
3ac22ee1 1992bool iClass_WriteBlock_ext(uint8_t blockNo, uint8_t *data) {
671ff89f 1993 uint8_t write[] = { ICLASS_CMD_UPDATE, blockNo, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3ac22ee1 1994 //uint8_t readblockdata[10];
1995 //write[1] = blockNo;
aa53efc3 1996 memcpy(write+2, data, 12); // data + mac
671ff89f 1997 char *wrCmd = (char *)(write+1);
1998 uint16_t wrCrc = iclass_crc16(wrCmd, 13);
1999 write[14] = wrCrc >> 8;
2000 write[15] = wrCrc & 0xff;
3ac22ee1 2001 uint8_t resp[] = {0,0,0,0,0,0,0,0,0,0};
671ff89f 2002 bool isOK = false;
2003
3ac22ee1 2004 isOK = sendCmdGetResponseWithRetries(write,sizeof(write),resp,sizeof(resp),10);
671ff89f 2005 if (isOK) { //if reader responded correctly
3ac22ee1 2006 //Dbprintf("WriteResp: %02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",resp[0],resp[1],resp[2],resp[3],resp[4],resp[5],resp[6],resp[7],resp[8],resp[9]);
671ff89f 2007 if (memcmp(write+2,resp,8)) { //if response is not equal to write values
2008 if (blockNo != 3 && blockNo != 4) { //if not programming key areas (note key blocks don't get programmed with actual key data it is xor data)
2009 //error try again
2010 isOK = sendCmdGetResponseWithRetries(write,sizeof(write),resp,sizeof(resp),10);
2011 }
2012
fecd8202 2013 }
fecd8202 2014 }
aa53efc3 2015 return isOK;
2016}
2017
3ac22ee1 2018void iClass_WriteBlock(uint8_t blockNo, uint8_t *data) {
2019 bool isOK = iClass_WriteBlock_ext(blockNo, data);
aa53efc3 2020 if (isOK){
2021 Dbprintf("Write block [%02x] successful",blockNo);
2022 } else {
2023 Dbprintf("Write block [%02x] failed",blockNo);
2024 }
2025 cmd_send(CMD_ACK,isOK,0,0,0,0);
2026}
2027
3ac22ee1 2028void iClass_Clone(uint8_t startblock, uint8_t endblock, uint8_t *data) {
aa53efc3 2029 int i;
2030 int written = 0;
2031 int total_block = (endblock - startblock) + 1;
2032 for (i = 0; i < total_block;i++){
2033 // block number
3ac22ee1 2034 if (iClass_WriteBlock_ext(i+startblock, data+(i*12))){
aa53efc3 2035 Dbprintf("Write block [%02x] successful",i + startblock);
2036 written++;
2037 } else {
3ac22ee1 2038 if (iClass_WriteBlock_ext(i+startblock, data+(i*12))){
aa53efc3 2039 Dbprintf("Write block [%02x] successful",i + startblock);
2040 written++;
2041 } else {
2042 Dbprintf("Write block [%02x] failed",i + startblock);
2043 }
2044 }
2045 }
2046 if (written == total_block)
2047 Dbprintf("Clone complete");
2048 else
2049 Dbprintf("Clone incomplete");
2050
2051 cmd_send(CMD_ACK,1,0,0,0,0);
2052 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
2053 LEDsoff();
2054}
Impressum, Datenschutz