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