1 //-----------------------------------------------------------------------------
2 // Routines to support ISO 14443 type A.
4 // Gerhard de Koning Gans - May 2008
5 //-----------------------------------------------------------------------------
8 #include "iso14443crc.h"
10 static BYTE
*trace
= (BYTE
*) BigBuf
;
11 static int traceLen
= 0;
12 static int rsamples
= 0;
13 static BOOL tracing
= TRUE
;
24 static const BYTE OddByteParity
[256] = {
25 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
26 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
27 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
28 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
29 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
30 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
31 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
32 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
33 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
34 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
35 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
36 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
37 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
38 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
39 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
40 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1
43 // BIG CHANGE - UNDERSTAND THIS BEFORE WE COMMIT
44 #define RECV_CMD_OFFSET 3032
45 #define RECV_RES_OFFSET 3096
46 #define DMA_BUFFER_OFFSET 3160
47 #define DMA_BUFFER_SIZE 4096
48 #define TRACE_LENGTH 3000
50 //-----------------------------------------------------------------------------
51 // Generate the parity value for a byte sequence
53 //-----------------------------------------------------------------------------
54 DWORD
GetParity(const BYTE
* pbtCmd
, int iLen
)
59 // Generate the encrypted data
60 for (i
= 0; i
< iLen
; i
++) {
61 // Save the encrypted parity bit
62 dwPar
|= ((OddByteParity
[pbtCmd
[i
]]) << i
);
67 static void AppendCrc14443a(BYTE
* data
, int len
)
69 ComputeCrc14443(CRC_14443_A
,data
,len
,data
+len
,data
+len
+1);
72 BOOL
LogTrace(const BYTE
* btBytes
, int iLen
, int iSamples
, DWORD dwParity
, BOOL bReader
)
74 // Return when trace is full
75 if (traceLen
>= TRACE_LENGTH
) return FALSE
;
77 // Trace the random, i'm curious
79 trace
[traceLen
++] = ((rsamples
>> 0) & 0xff);
80 trace
[traceLen
++] = ((rsamples
>> 8) & 0xff);
81 trace
[traceLen
++] = ((rsamples
>> 16) & 0xff);
82 trace
[traceLen
++] = ((rsamples
>> 24) & 0xff);
84 trace
[traceLen
- 1] |= 0x80;
86 trace
[traceLen
++] = ((dwParity
>> 0) & 0xff);
87 trace
[traceLen
++] = ((dwParity
>> 8) & 0xff);
88 trace
[traceLen
++] = ((dwParity
>> 16) & 0xff);
89 trace
[traceLen
++] = ((dwParity
>> 24) & 0xff);
90 trace
[traceLen
++] = iLen
;
91 memcpy(trace
+ traceLen
, btBytes
, iLen
);
96 BOOL
LogTraceInfo(byte_t
* data
, size_t len
)
98 return LogTrace(data
,len
,0,GetParity(data
,len
),TRUE
);
101 //-----------------------------------------------------------------------------
102 // The software UART that receives commands from the reader, and its state
104 //-----------------------------------------------------------------------------
108 STATE_START_OF_COMMUNICATION
,
132 static BOOL
MillerDecoding(int bit
)
137 if(!Uart
.bitBuffer
) {
138 Uart
.bitBuffer
= bit
^ 0xFF0;
142 Uart
.bitBuffer
<<= 4;
143 Uart
.bitBuffer
^= bit
;
148 if(Uart
.state
!= STATE_UNSYNCD
) {
151 if((Uart
.bitBuffer
& Uart
.syncBit
) ^ Uart
.syncBit
) {
157 if(((Uart
.bitBuffer
<< 1) & Uart
.syncBit
) ^ Uart
.syncBit
) {
163 if(bit
!= bitright
) { bit
= bitright
; }
165 if(Uart
.posCnt
== 1) {
166 // measurement first half bitperiod
168 Uart
.drop
= DROP_FIRST_HALF
;
172 // measurement second half bitperiod
173 if(!bit
& (Uart
.drop
== DROP_NONE
)) {
174 Uart
.drop
= DROP_SECOND_HALF
;
177 // measured a drop in first and second half
178 // which should not be possible
179 Uart
.state
= STATE_ERROR_WAIT
;
186 case STATE_START_OF_COMMUNICATION
:
188 if(Uart
.drop
== DROP_SECOND_HALF
) {
189 // error, should not happen in SOC
190 Uart
.state
= STATE_ERROR_WAIT
;
195 Uart
.state
= STATE_MILLER_Z
;
202 if(Uart
.drop
== DROP_NONE
) {
203 // logic '0' followed by sequence Y
204 // end of communication
205 Uart
.state
= STATE_UNSYNCD
;
208 // if(Uart.drop == DROP_FIRST_HALF) {
209 // Uart.state = STATE_MILLER_Z; stay the same
210 // we see a logic '0' }
211 if(Uart
.drop
== DROP_SECOND_HALF
) {
212 // we see a logic '1'
213 Uart
.shiftReg
|= 0x100;
214 Uart
.state
= STATE_MILLER_X
;
220 if(Uart
.drop
== DROP_NONE
) {
221 // sequence Y, we see a '0'
222 Uart
.state
= STATE_MILLER_Y
;
225 if(Uart
.drop
== DROP_FIRST_HALF
) {
226 // Would be STATE_MILLER_Z
227 // but Z does not follow X, so error
228 Uart
.state
= STATE_ERROR_WAIT
;
231 if(Uart
.drop
== DROP_SECOND_HALF
) {
232 // We see a '1' and stay in state X
233 Uart
.shiftReg
|= 0x100;
241 if(Uart
.drop
== DROP_NONE
) {
242 // logic '0' followed by sequence Y
243 // end of communication
244 Uart
.state
= STATE_UNSYNCD
;
247 if(Uart
.drop
== DROP_FIRST_HALF
) {
249 Uart
.state
= STATE_MILLER_Z
;
251 if(Uart
.drop
== DROP_SECOND_HALF
) {
252 // We see a '1' and go to state X
253 Uart
.shiftReg
|= 0x100;
254 Uart
.state
= STATE_MILLER_X
;
258 case STATE_ERROR_WAIT
:
259 // That went wrong. Now wait for at least two bit periods
260 // and try to sync again
261 if(Uart
.drop
== DROP_NONE
) {
263 Uart
.state
= STATE_UNSYNCD
;
268 Uart
.state
= STATE_UNSYNCD
;
273 Uart
.drop
= DROP_NONE
;
275 // should have received at least one whole byte...
276 if((Uart
.bitCnt
== 2) && EOC
&& (Uart
.byteCnt
> 0)) {
280 if(Uart
.bitCnt
== 9) {
281 Uart
.output
[Uart
.byteCnt
] = (Uart
.shiftReg
& 0xff);
284 Uart
.parityBits
<<= 1;
285 Uart
.parityBits
^= ((Uart
.shiftReg
>> 8) & 0x01);
288 // when End of Communication received and
289 // all data bits processed..
296 Uart.output[Uart.byteCnt] = 0xAA;
298 Uart.output[Uart.byteCnt] = error & 0xFF;
300 Uart.output[Uart.byteCnt] = 0xAA;
302 Uart.output[Uart.byteCnt] = (Uart.bitBuffer >> 8) & 0xFF;
304 Uart.output[Uart.byteCnt] = Uart.bitBuffer & 0xFF;
306 Uart.output[Uart.byteCnt] = (Uart.syncBit >> 3) & 0xFF;
308 Uart.output[Uart.byteCnt] = 0xAA;
316 bit
= Uart
.bitBuffer
& 0xf0;
320 // should have been high or at least (4 * 128) / fc
321 // according to ISO this should be at least (9 * 128 + 20) / fc
322 if(Uart
.highCnt
== 8) {
323 // we went low, so this could be start of communication
324 // it turns out to be safer to choose a less significant
325 // syncbit... so we check whether the neighbour also represents the drop
326 Uart
.posCnt
= 1; // apparently we are busy with our first half bit period
327 Uart
.syncBit
= bit
& 8;
329 if(!Uart
.syncBit
) { Uart
.syncBit
= bit
& 4; Uart
.samples
= 2; }
330 else if(bit
& 4) { Uart
.syncBit
= bit
& 4; Uart
.samples
= 2; bit
<<= 2; }
331 if(!Uart
.syncBit
) { Uart
.syncBit
= bit
& 2; Uart
.samples
= 1; }
332 else if(bit
& 2) { Uart
.syncBit
= bit
& 2; Uart
.samples
= 1; bit
<<= 1; }
333 if(!Uart
.syncBit
) { Uart
.syncBit
= bit
& 1; Uart
.samples
= 0;
334 if(Uart
.syncBit
& (Uart
.bitBuffer
& 8)) {
337 // the first half bit period is expected in next sample
342 else if(bit
& 1) { Uart
.syncBit
= bit
& 1; Uart
.samples
= 0; }
345 Uart
.state
= STATE_START_OF_COMMUNICATION
;
346 Uart
.drop
= DROP_FIRST_HALF
;
357 if(Uart
.highCnt
< 8) {
366 //=============================================================================
367 // ISO 14443 Type A - Manchester
368 //=============================================================================
373 DEMOD_START_OF_COMMUNICATION
,
396 static BOOL
ManchesterDecoding(int v
)
412 if(Demod
.state
==DEMOD_UNSYNCD
) {
413 Demod
.output
[Demod
.len
] = 0xfa;
416 Demod
.posCount
= 1; // This is the first half bit period, so after syncing handle the second part
417 if(bit
& 0x08) { Demod
.syncBit
= 0x08; }
419 if(bit
& 0x04) { Demod
.syncBit
= 0x04; }
421 else if(bit
& 0x04) { Demod
.syncBit
= 0x04; bit
<<= 4; }
423 if(bit
& 0x02) { Demod
.syncBit
= 0x02; }
425 else if(bit
& 0x02) { Demod
.syncBit
= 0x02; bit
<<= 4; }
427 if(bit
& 0x01) { Demod
.syncBit
= 0x01; }
429 if(Demod
.syncBit
& (Demod
.buffer
& 0x08)) {
430 Demod
.syncBit
= 0x08;
432 // The first half bitperiod is expected in next sample
434 Demod
.output
[Demod
.len
] = 0xfb;
437 else if(bit
& 0x01) { Demod
.syncBit
= 0x01; }
441 Demod
.state
= DEMOD_START_OF_COMMUNICATION
;
442 Demod
.sub
= SUB_FIRST_HALF
;
445 Demod
.parityBits
= 0;
448 switch(Demod
.syncBit
) {
449 case 0x08: Demod
.samples
= 3; break;
450 case 0x04: Demod
.samples
= 2; break;
451 case 0x02: Demod
.samples
= 1; break;
452 case 0x01: Demod
.samples
= 0; break;
459 //modulation = bit & Demod.syncBit;
460 modulation
= ((bit
<< 1) ^ ((Demod
.buffer
& 0x08) >> 3)) & Demod
.syncBit
;
464 if(Demod
.posCount
==0) {
467 Demod
.sub
= SUB_FIRST_HALF
;
470 Demod
.sub
= SUB_NONE
;
475 if(modulation
&& (Demod
.sub
== SUB_FIRST_HALF
)) {
476 if(Demod
.state
!=DEMOD_ERROR_WAIT
) {
477 Demod
.state
= DEMOD_ERROR_WAIT
;
478 Demod
.output
[Demod
.len
] = 0xaa;
482 else if(modulation
) {
483 Demod
.sub
= SUB_SECOND_HALF
;
486 switch(Demod
.state
) {
487 case DEMOD_START_OF_COMMUNICATION
:
488 if(Demod
.sub
== SUB_FIRST_HALF
) {
489 Demod
.state
= DEMOD_MANCHESTER_D
;
492 Demod
.output
[Demod
.len
] = 0xab;
493 Demod
.state
= DEMOD_ERROR_WAIT
;
498 case DEMOD_MANCHESTER_D
:
499 case DEMOD_MANCHESTER_E
:
500 if(Demod
.sub
== SUB_FIRST_HALF
) {
502 Demod
.shiftReg
= (Demod
.shiftReg
>> 1) ^ 0x100;
503 Demod
.state
= DEMOD_MANCHESTER_D
;
505 else if(Demod
.sub
== SUB_SECOND_HALF
) {
507 Demod
.shiftReg
>>= 1;
508 Demod
.state
= DEMOD_MANCHESTER_E
;
511 Demod
.state
= DEMOD_MANCHESTER_F
;
515 case DEMOD_MANCHESTER_F
:
516 // Tag response does not need to be a complete byte!
517 if(Demod
.len
> 0 || Demod
.bitCount
> 0) {
518 if(Demod
.bitCount
> 0) {
519 Demod
.shiftReg
>>= (9 - Demod
.bitCount
);
520 Demod
.output
[Demod
.len
] = Demod
.shiftReg
& 0xff;
522 // No parity bit, so just shift a 0
523 Demod
.parityBits
<<= 1;
526 Demod
.state
= DEMOD_UNSYNCD
;
530 Demod
.output
[Demod
.len
] = 0xad;
531 Demod
.state
= DEMOD_ERROR_WAIT
;
536 case DEMOD_ERROR_WAIT
:
537 Demod
.state
= DEMOD_UNSYNCD
;
541 Demod
.output
[Demod
.len
] = 0xdd;
542 Demod
.state
= DEMOD_UNSYNCD
;
546 if(Demod
.bitCount
>=9) {
547 Demod
.output
[Demod
.len
] = Demod
.shiftReg
& 0xff;
550 Demod
.parityBits
<<= 1;
551 Demod
.parityBits
^= ((Demod
.shiftReg
>> 8) & 0x01);
558 Demod.output[Demod.len] = 0xBB;
560 Demod.output[Demod.len] = error & 0xFF;
562 Demod.output[Demod.len] = 0xBB;
564 Demod.output[Demod.len] = bit & 0xFF;
566 Demod.output[Demod.len] = Demod.buffer & 0xFF;
568 Demod.output[Demod.len] = Demod.syncBit & 0xFF;
570 Demod.output[Demod.len] = 0xBB;
577 } // end (state != UNSYNCED)
582 //=============================================================================
583 // Finally, a `sniffer' for ISO 14443 Type A
584 // Both sides of communication!
585 //=============================================================================
587 //-----------------------------------------------------------------------------
588 // Record the sequence of commands sent by the reader to the tag, with
589 // triggering so that we start recording at the point that the tag is moved
591 //-----------------------------------------------------------------------------
592 void SnoopIso14443a(void)
594 // #define RECV_CMD_OFFSET 2032 // original (working as of 21/2/09) values
595 // #define RECV_RES_OFFSET 2096 // original (working as of 21/2/09) values
596 // #define DMA_BUFFER_OFFSET 2160 // original (working as of 21/2/09) values
597 // #define DMA_BUFFER_SIZE 4096 // original (working as of 21/2/09) values
598 // #define TRACE_LENGTH 2000 // original (working as of 21/2/09) values
600 // We won't start recording the frames that we acquire until we trigger;
601 // a good trigger condition to get started is probably when we see a
602 // response from the tag.
603 BOOL triggered
= TRUE
; // FALSE to wait first for card
605 // The command (reader -> tag) that we're receiving.
606 // The length of a received command will in most cases be no more than 18 bytes.
607 // So 32 should be enough!
608 BYTE
*receivedCmd
= (((BYTE
*)BigBuf
) + RECV_CMD_OFFSET
);
609 // The response (tag -> reader) that we're receiving.
610 BYTE
*receivedResponse
= (((BYTE
*)BigBuf
) + RECV_RES_OFFSET
);
612 // As we receive stuff, we copy it from receivedCmd or receivedResponse
613 // into trace, along with its length and other annotations.
614 //BYTE *trace = (BYTE *)BigBuf;
617 // The DMA buffer, used to stream samples from the FPGA
618 SBYTE
*dmaBuf
= ((SBYTE
*)BigBuf
) + DMA_BUFFER_OFFSET
;
624 // Count of samples received so far, so that we can include timing
625 // information in the trace buffer.
629 memset(trace
, 0x44, RECV_CMD_OFFSET
);
631 // Set up the demodulator for tag -> reader responses.
632 Demod
.output
= receivedResponse
;
634 Demod
.state
= DEMOD_UNSYNCD
;
636 // And the reader -> tag commands
637 memset(&Uart
, 0, sizeof(Uart
));
638 Uart
.output
= receivedCmd
;
639 Uart
.byteCntMax
= 32; // was 100 (greg)////////////////////////////////////////////////////////////////////////
640 Uart
.state
= STATE_UNSYNCD
;
642 // And put the FPGA in the appropriate mode
643 // Signal field is off with the appropriate LED
645 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_SNIFFER
);
646 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
648 // Setup for the DMA.
651 lastRxCounter
= DMA_BUFFER_SIZE
;
652 FpgaSetupSscDma((BYTE
*)dmaBuf
, DMA_BUFFER_SIZE
);
656 // And now we loop, receiving samples.
659 int behindBy
= (lastRxCounter
- AT91C_BASE_PDC_SSC
->PDC_RCR
) &
661 if(behindBy
> maxBehindBy
) {
662 maxBehindBy
= behindBy
;
664 DbpString("blew circular buffer!");
668 if(behindBy
< 1) continue;
673 if(upTo
- dmaBuf
> DMA_BUFFER_SIZE
) {
674 upTo
-= DMA_BUFFER_SIZE
;
675 lastRxCounter
+= DMA_BUFFER_SIZE
;
676 AT91C_BASE_PDC_SSC
->PDC_RNPR
= (DWORD
)upTo
;
677 AT91C_BASE_PDC_SSC
->PDC_RNCR
= DMA_BUFFER_SIZE
;
681 #define HANDLE_BIT_IF_BODY \
684 trace[traceLen++] = ((rsamples >> 0) & 0xff); \
685 trace[traceLen++] = ((rsamples >> 8) & 0xff); \
686 trace[traceLen++] = ((rsamples >> 16) & 0xff); \
687 trace[traceLen++] = ((rsamples >> 24) & 0xff); \
688 trace[traceLen++] = ((Uart.parityBits >> 0) & 0xff); \
689 trace[traceLen++] = ((Uart.parityBits >> 8) & 0xff); \
690 trace[traceLen++] = ((Uart.parityBits >> 16) & 0xff); \
691 trace[traceLen++] = ((Uart.parityBits >> 24) & 0xff); \
692 trace[traceLen++] = Uart.byteCnt; \
693 memcpy(trace+traceLen, receivedCmd, Uart.byteCnt); \
694 traceLen += Uart.byteCnt; \
695 if(traceLen > TRACE_LENGTH) break; \
697 /* And ready to receive another command. */ \
698 Uart.state = STATE_UNSYNCD; \
699 /* And also reset the demod code, which might have been */ \
700 /* false-triggered by the commands from the reader. */ \
701 Demod.state = DEMOD_UNSYNCD; \
704 if(MillerDecoding((smpl & 0xF0) >> 4)) {
705 rsamples
= samples
- Uart
.samples
;
708 if(ManchesterDecoding(smpl
& 0x0F)) {
709 rsamples
= samples
- Demod
.samples
;
712 // timestamp, as a count of samples
713 trace
[traceLen
++] = ((rsamples
>> 0) & 0xff);
714 trace
[traceLen
++] = ((rsamples
>> 8) & 0xff);
715 trace
[traceLen
++] = ((rsamples
>> 16) & 0xff);
716 trace
[traceLen
++] = 0x80 | ((rsamples
>> 24) & 0xff);
717 trace
[traceLen
++] = ((Demod
.parityBits
>> 0) & 0xff);
718 trace
[traceLen
++] = ((Demod
.parityBits
>> 8) & 0xff);
719 trace
[traceLen
++] = ((Demod
.parityBits
>> 16) & 0xff);
720 trace
[traceLen
++] = ((Demod
.parityBits
>> 24) & 0xff);
722 trace
[traceLen
++] = Demod
.len
;
723 memcpy(trace
+traceLen
, receivedResponse
, Demod
.len
);
724 traceLen
+= Demod
.len
;
725 if(traceLen
> TRACE_LENGTH
) break;
729 // And ready to receive another response.
730 memset(&Demod
, 0, sizeof(Demod
));
731 Demod
.output
= receivedResponse
;
732 Demod
.state
= DEMOD_UNSYNCD
;
737 DbpString("cancelled_a");
742 DbpString("COMMAND FINISHED");
744 Dbprintf("%x %x %x", maxBehindBy
, Uart
.state
, Uart
.byteCnt
);
745 Dbprintf("%x %x %x", Uart
.byteCntMax
, traceLen
, (int)Uart
.output
[0]);
748 AT91C_BASE_PDC_SSC
->PDC_PTCR
= AT91C_PDC_RXTDIS
;
749 Dbprintf("%x %x %x", maxBehindBy
, Uart
.state
, Uart
.byteCnt
);
750 Dbprintf("%x %x %x", Uart
.byteCntMax
, traceLen
, (int)Uart
.output
[0]);
757 // Prepare communication bits to send to FPGA
758 void Sequence(SecType seq
)
764 // Sequence D: 11110000
765 // modulation with subcarrier during first half
766 ToSend
[ToSendMax
] = 0xf0;
769 // Sequence E: 00001111
770 // modulation with subcarrier during second half
771 ToSend
[ToSendMax
] = 0x0f;
774 // Sequence F: 00000000
775 // no modulation with subcarrier
776 ToSend
[ToSendMax
] = 0x00;
780 // Sequence X: 00001100
781 // drop after half a period
782 ToSend
[ToSendMax
] = 0x0c;
786 // Sequence Y: 00000000
788 ToSend
[ToSendMax
] = 0x00;
791 // Sequence Z: 11000000
793 ToSend
[ToSendMax
] = 0xc0;
798 //-----------------------------------------------------------------------------
799 // Prepare tag messages
800 //-----------------------------------------------------------------------------
801 static void CodeIso14443aAsTag(const BYTE
*cmd
, int len
)
808 // Correction bit, might be removed when not needed
813 ToSendStuffBit(1); // 1
821 for(i
= 0; i
< len
; i
++) {
827 for(j
= 0; j
< 8; j
++) {
828 oddparity
^= (b
& 1);
848 // Flush the buffer in FPGA!!
849 for(i
= 0; i
< 5; i
++) {
853 // Convert from last byte pos to length
856 // Add a few more for slop
857 ToSend
[ToSendMax
++] = 0x00;
858 ToSend
[ToSendMax
++] = 0x00;
862 //-----------------------------------------------------------------------------
863 // This is to send a NACK kind of answer, its only 3 bits, I know it should be 4
864 //-----------------------------------------------------------------------------
865 static void CodeStrangeAnswer()
871 // Correction bit, might be removed when not needed
876 ToSendStuffBit(1); // 1
896 // Flush the buffer in FPGA!!
897 for(i
= 0; i
< 5; i
++) {
901 // Convert from last byte pos to length
904 // Add a few more for slop
905 ToSend
[ToSendMax
++] = 0x00;
906 ToSend
[ToSendMax
++] = 0x00;
910 //-----------------------------------------------------------------------------
911 // Wait for commands from reader
912 // Stop when button is pressed
913 // Or return TRUE when command is captured
914 //-----------------------------------------------------------------------------
915 static BOOL
GetIso14443aCommandFromReader(BYTE
*received
, int *len
, int maxLen
)
917 // Set FPGA mode to "simulated ISO 14443 tag", no modulation (listen
918 // only, since we are receiving, not transmitting).
919 // Signal field is off with the appropriate LED
921 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_TAGSIM_LISTEN
);
923 // Now run a `software UART' on the stream of incoming samples.
924 Uart
.output
= received
;
925 Uart
.byteCntMax
= maxLen
;
926 Uart
.state
= STATE_UNSYNCD
;
931 if(BUTTON_PRESS()) return FALSE
;
933 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
934 AT91C_BASE_SSC
->SSC_THR
= 0x00;
936 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
937 BYTE b
= (BYTE
)AT91C_BASE_SSC
->SSC_RHR
;
938 if(MillerDecoding((b
& 0xf0) >> 4)) {
942 if(MillerDecoding(b
& 0x0f)) {
950 //-----------------------------------------------------------------------------
951 // Main loop of simulated tag: receive commands from reader, decide what
952 // response to send, and send it.
953 //-----------------------------------------------------------------------------
954 void SimulateIso14443aTag(int tagType
, int TagUid
)
956 // This function contains the tag emulation
958 // Prepare protocol messages
959 // static const BYTE cmd1[] = { 0x26 };
960 // static const BYTE response1[] = { 0x02, 0x00 }; // Says: I am Mifare 4k - original line - greg
962 static const BYTE response1
[] = { 0x44, 0x03 }; // Says: I am a DESFire Tag, ph33r me
963 // static const BYTE response1[] = { 0x44, 0x00 }; // Says: I am a ULTRALITE Tag, 0wn me
966 // static const BYTE cmd2[] = { 0x93, 0x20 };
967 //static const BYTE response2[] = { 0x9a, 0xe5, 0xe4, 0x43, 0xd8 }; // original value - greg
972 static const BYTE response2
[] = { 0x88, 0x04, 0x21, 0x3f, 0x4d }; // known uid - note cascade (0x88), 2nd byte (0x04) = NXP/Phillips
975 // When reader selects us during cascade1 it will send cmd3
976 //BYTE response3[] = { 0x04, 0x00, 0x00 }; // SAK Select (cascade1) successful response (ULTRALITE)
977 BYTE response3
[] = { 0x24, 0x00, 0x00 }; // SAK Select (cascade1) successful response (DESFire)
978 ComputeCrc14443(CRC_14443_A
, response3
, 1, &response3
[1], &response3
[2]);
980 // send cascade2 2nd half of UID
981 static const BYTE response2a
[] = { 0x51, 0x48, 0x1d, 0x80, 0x84 }; // uid - cascade2 - 2nd half (4 bytes) of UID+ BCCheck
982 // NOTE : THE CRC on the above may be wrong as I have obfuscated the actual UID
985 // When reader selects us during cascade2 it will send cmd3a
986 //BYTE response3a[] = { 0x00, 0x00, 0x00 }; // SAK Select (cascade2) successful response (ULTRALITE)
987 BYTE response3a
[] = { 0x20, 0x00, 0x00 }; // SAK Select (cascade2) successful response (DESFire)
988 ComputeCrc14443(CRC_14443_A
, response3a
, 1, &response3a
[1], &response3a
[2]);
990 static const BYTE response5
[] = { 0x00, 0x00, 0x00, 0x00 }; // Very random tag nonce
995 // Longest possible response will be 16 bytes + 2 CRC = 18 bytes
997 // 144 data bits (18 * 8)
1000 // 1 Correction bit (Answer in 1172 or 1236 periods, see FPGA)
1001 // 1 just for the case
1005 // 166 bytes, since every bit that needs to be send costs us a byte
1009 // Respond with card type
1010 BYTE
*resp1
= (((BYTE
*)BigBuf
) + 800);
1013 // Anticollision cascade1 - respond with uid
1014 BYTE
*resp2
= (((BYTE
*)BigBuf
) + 970);
1017 // Anticollision cascade2 - respond with 2nd half of uid if asked
1018 // we're only going to be asked if we set the 1st byte of the UID (during cascade1) to 0x88
1019 BYTE
*resp2a
= (((BYTE
*)BigBuf
) + 1140);
1022 // Acknowledge select - cascade 1
1023 BYTE
*resp3
= (((BYTE
*)BigBuf
) + 1310);
1026 // Acknowledge select - cascade 2
1027 BYTE
*resp3a
= (((BYTE
*)BigBuf
) + 1480);
1030 // Response to a read request - not implemented atm
1031 BYTE
*resp4
= (((BYTE
*)BigBuf
) + 1550);
1034 // Authenticate response - nonce
1035 BYTE
*resp5
= (((BYTE
*)BigBuf
) + 1720);
1038 BYTE
*receivedCmd
= (BYTE
*)BigBuf
;
1045 // To control where we are in the protocol
1049 // Just to allow some checks
1057 memset(receivedCmd
, 0x44, 400);
1059 // Prepare the responses of the anticollision phase
1060 // there will be not enough time to do this at the moment the reader sends it REQA
1062 // Answer to request
1063 CodeIso14443aAsTag(response1
, sizeof(response1
));
1064 memcpy(resp1
, ToSend
, ToSendMax
); resp1Len
= ToSendMax
;
1066 // Send our UID (cascade 1)
1067 CodeIso14443aAsTag(response2
, sizeof(response2
));
1068 memcpy(resp2
, ToSend
, ToSendMax
); resp2Len
= ToSendMax
;
1070 // Answer to select (cascade1)
1071 CodeIso14443aAsTag(response3
, sizeof(response3
));
1072 memcpy(resp3
, ToSend
, ToSendMax
); resp3Len
= ToSendMax
;
1074 // Send the cascade 2 2nd part of the uid
1075 CodeIso14443aAsTag(response2a
, sizeof(response2a
));
1076 memcpy(resp2a
, ToSend
, ToSendMax
); resp2aLen
= ToSendMax
;
1078 // Answer to select (cascade 2)
1079 CodeIso14443aAsTag(response3a
, sizeof(response3a
));
1080 memcpy(resp3a
, ToSend
, ToSendMax
); resp3aLen
= ToSendMax
;
1082 // Strange answer is an example of rare message size (3 bits)
1083 CodeStrangeAnswer();
1084 memcpy(resp4
, ToSend
, ToSendMax
); resp4Len
= ToSendMax
;
1086 // Authentication answer (random nonce)
1087 CodeIso14443aAsTag(response5
, sizeof(response5
));
1088 memcpy(resp5
, ToSend
, ToSendMax
); resp5Len
= ToSendMax
;
1090 // We need to listen to the high-frequency, peak-detected path.
1091 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
1099 if(!GetIso14443aCommandFromReader(receivedCmd
, &len
, 100)) {
1100 DbpString("button press");
1103 // doob - added loads of debug strings so we can see what the reader is saying to us during the sim as hi14alist is not populated
1104 // Okay, look at the command now.
1106 i
= 1; // first byte transmitted
1107 if(receivedCmd
[0] == 0x26) {
1108 // Received a REQUEST
1109 resp
= resp1
; respLen
= resp1Len
; order
= 1;
1110 //DbpString("Hello request from reader:");
1111 } else if(receivedCmd
[0] == 0x52) {
1112 // Received a WAKEUP
1113 resp
= resp1
; respLen
= resp1Len
; order
= 6;
1114 // //DbpString("Wakeup request from reader:");
1116 } else if(receivedCmd
[1] == 0x20 && receivedCmd
[0] == 0x93) { // greg - cascade 1 anti-collision
1117 // Received request for UID (cascade 1)
1118 resp
= resp2
; respLen
= resp2Len
; order
= 2;
1119 // DbpString("UID (cascade 1) request from reader:");
1120 // DbpIntegers(receivedCmd[0], receivedCmd[1], receivedCmd[2]);
1123 } else if(receivedCmd
[1] == 0x20 && receivedCmd
[0] ==0x95) { // greg - cascade 2 anti-collision
1124 // Received request for UID (cascade 2)
1125 resp
= resp2a
; respLen
= resp2aLen
; order
= 20;
1126 // DbpString("UID (cascade 2) request from reader:");
1127 // DbpIntegers(receivedCmd[0], receivedCmd[1], receivedCmd[2]);
1130 } else if(receivedCmd
[1] == 0x70 && receivedCmd
[0] ==0x93) { // greg - cascade 1 select
1131 // Received a SELECT
1132 resp
= resp3
; respLen
= resp3Len
; order
= 3;
1133 // DbpString("Select (cascade 1) request from reader:");
1134 // DbpIntegers(receivedCmd[0], receivedCmd[1], receivedCmd[2]);
1137 } else if(receivedCmd
[1] == 0x70 && receivedCmd
[0] ==0x95) { // greg - cascade 2 select
1138 // Received a SELECT
1139 resp
= resp3a
; respLen
= resp3aLen
; order
= 30;
1140 // DbpString("Select (cascade 2) request from reader:");
1141 // DbpIntegers(receivedCmd[0], receivedCmd[1], receivedCmd[2]);
1144 } else if(receivedCmd
[0] == 0x30) {
1146 resp
= resp4
; respLen
= resp4Len
; order
= 4; // Do nothing
1147 Dbprintf("Read request from reader: %x %x %x",
1148 receivedCmd
[0], receivedCmd
[1], receivedCmd
[2]);
1151 } else if(receivedCmd
[0] == 0x50) {
1153 resp
= resp1
; respLen
= 0; order
= 5; // Do nothing
1154 DbpString("Reader requested we HALT!:");
1156 } else if(receivedCmd
[0] == 0x60) {
1157 // Received an authentication request
1158 resp
= resp5
; respLen
= resp5Len
; order
= 7;
1159 Dbprintf("Authenticate request from reader: %x %x %x",
1160 receivedCmd
[0], receivedCmd
[1], receivedCmd
[2]);
1162 } else if(receivedCmd
[0] == 0xE0) {
1163 // Received a RATS request
1164 resp
= resp1
; respLen
= 0;order
= 70;
1165 Dbprintf("RATS request from reader: %x %x %x",
1166 receivedCmd
[0], receivedCmd
[1], receivedCmd
[2]);
1168 // Never seen this command before
1169 Dbprintf("Unknown command received from reader: %x %x %x %x %x %x %x %x %x",
1170 receivedCmd
[0], receivedCmd
[1], receivedCmd
[2],
1171 receivedCmd
[3], receivedCmd
[3], receivedCmd
[4],
1172 receivedCmd
[5], receivedCmd
[6], receivedCmd
[7]);
1174 resp
= resp1
; respLen
= 0; order
= 0;
1177 // Count number of wakeups received after a halt
1178 if(order
== 6 && lastorder
== 5) { happened
++; }
1180 // Count number of other messages after a halt
1181 if(order
!= 6 && lastorder
== 5) { happened2
++; }
1183 // Look at last parity bit to determine timing of answer
1184 if((Uart
.parityBits
& 0x01) || receivedCmd
[0] == 0x52) {
1185 // 1236, so correction bit needed
1189 memset(receivedCmd
, 0x44, 32);
1191 if(cmdsRecvd
> 999) {
1192 DbpString("1000 commands later...");
1199 if(respLen
<= 0) continue;
1201 // Modulate Manchester
1202 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_TAGSIM_MOD
);
1203 AT91C_BASE_SSC
->SSC_THR
= 0x00;
1206 // ### Transmit the response ###
1209 fdt_indicator
= FALSE
;
1211 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
1212 volatile BYTE b
= (BYTE
)AT91C_BASE_SSC
->SSC_RHR
;
1215 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
1223 AT91C_BASE_SSC
->SSC_THR
= b
;
1229 if(BUTTON_PRESS()) {
1236 Dbprintf("%x %x %x", happened
, happened2
, cmdsRecvd
);
1240 //-----------------------------------------------------------------------------
1241 // Transmit the command (to the tag) that was placed in ToSend[].
1242 //-----------------------------------------------------------------------------
1243 static void TransmitFor14443a(const BYTE
*cmd
, int len
, int *samples
, int *wait
)
1247 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_READER_MOD
);
1253 for(c
= 0; c
< *wait
;) {
1254 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
1255 AT91C_BASE_SSC
->SSC_THR
= 0x00; // For exact timing!
1258 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
1259 volatile DWORD r
= AT91C_BASE_SSC
->SSC_RHR
;
1267 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
1268 AT91C_BASE_SSC
->SSC_THR
= cmd
[c
];
1274 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
1275 volatile DWORD r
= AT91C_BASE_SSC
->SSC_RHR
;
1280 if (samples
) *samples
= (c
+ *wait
) << 3;
1283 //-----------------------------------------------------------------------------
1284 // To generate an arbitrary stream from reader
1286 //-----------------------------------------------------------------------------
1287 void ArbitraryFromReader(const BYTE
*cmd
, int parity
, int len
)
1296 // Start of Communication (Seq. Z)
1300 for(i
= 0; i
< len
; i
++) {
1303 for(j
= 0; j
< 8; j
++) {
1323 // Predefined parity bit, the flipper flips when needed, because of flips in byte sent
1324 if(((parity
>> (len
- i
- 1)) & 1)) {
1341 // End of Communication
1359 // Convert from last character reference to length
1363 //-----------------------------------------------------------------------------
1364 // Code a 7-bit command without parity bit
1365 // This is especially for 0x26 and 0x52 (REQA and WUPA)
1366 //-----------------------------------------------------------------------------
1367 void ShortFrameFromReader(const BYTE bt
)
1375 // Start of Communication (Seq. Z)
1380 for(j
= 0; j
< 7; j
++) {
1399 // End of Communication
1417 // Convert from last character reference to length
1421 //-----------------------------------------------------------------------------
1422 // Prepare reader command to send to FPGA
1424 //-----------------------------------------------------------------------------
1425 void CodeIso14443aAsReaderPar(const BYTE
* cmd
, int len
, DWORD dwParity
)
1433 // Start of Communication (Seq. Z)
1437 // Generate send structure for the data bits
1438 for (i
= 0; i
< len
; i
++) {
1439 // Get the current byte to send
1442 for (j
= 0; j
< 8; j
++) {
1460 // Get the parity bit
1461 if ((dwParity
>> i
) & 0x01) {
1477 // End of Communication
1494 // Convert from last character reference to length
1498 //-----------------------------------------------------------------------------
1499 // Wait a certain time for tag response
1500 // If a response is captured return TRUE
1501 // If it takes to long return FALSE
1502 //-----------------------------------------------------------------------------
1503 static BOOL
GetIso14443aAnswerFromTag(BYTE
*receivedResponse
, int maxLen
, int *samples
, int *elapsed
) //BYTE *buffer
1505 // buffer needs to be 512 bytes
1508 // Set FPGA mode to "reader listen mode", no modulation (listen
1509 // only, since we are receiving, not transmitting).
1510 // Signal field is on with the appropriate LED
1512 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_READER_LISTEN
);
1514 // Now get the answer from the card
1515 Demod
.output
= receivedResponse
;
1517 Demod
.state
= DEMOD_UNSYNCD
;
1520 if (elapsed
) *elapsed
= 0;
1526 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
1527 AT91C_BASE_SSC
->SSC_THR
= 0x00; // To make use of exact timing of next command from reader!!
1528 if (elapsed
) (*elapsed
)++;
1530 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
1531 if(c
< 512) { c
++; } else { return FALSE
; }
1532 b
= (BYTE
)AT91C_BASE_SSC
->SSC_RHR
;
1533 if(ManchesterDecoding((b
& 0xf0) >> 4)) {
1534 *samples
= ((c
- 1) << 3) + 4;
1537 if(ManchesterDecoding(b
& 0x0f)) {
1545 void ReaderTransmitShort(const BYTE
* bt
)
1550 ShortFrameFromReader(*bt
);
1553 TransmitFor14443a(ToSend
, ToSendMax
, &samples
, &wait
);
1555 // Store reader command in buffer
1556 if (tracing
) LogTrace(bt
,1,0,GetParity(bt
,1),TRUE
);
1559 void ReaderTransmitPar(BYTE
* frame
, int len
, DWORD par
)
1564 // This is tied to other size changes
1565 // BYTE* frame_addr = ((BYTE*)BigBuf) + 2024;
1566 CodeIso14443aAsReaderPar(frame
,len
,par
);
1569 TransmitFor14443a(ToSend
, ToSendMax
, &samples
, &wait
);
1571 // Store reader command in buffer
1572 if (tracing
) LogTrace(frame
,len
,0,par
,TRUE
);
1576 void ReaderTransmit(BYTE
* frame
, int len
)
1578 // Generate parity and redirect
1579 ReaderTransmitPar(frame
,len
,GetParity(frame
,len
));
1582 BOOL
ReaderReceive(BYTE
* receivedAnswer
)
1585 if (!GetIso14443aAnswerFromTag(receivedAnswer
,100,&samples
,0)) return FALSE
;
1586 if (tracing
) LogTrace(receivedAnswer
,Demod
.len
,samples
,Demod
.parityBits
,FALSE
);
1590 //-----------------------------------------------------------------------------
1591 // Read an ISO 14443a tag. Send out commands and store answers.
1593 //-----------------------------------------------------------------------------
1594 void ReaderIso14443a(DWORD parameter
)
1597 BYTE wupa
[] = { 0x52 };
1598 BYTE sel_all
[] = { 0x93,0x20 };
1599 BYTE sel_uid
[] = { 0x93,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
1600 BYTE sel_all_c2
[] = { 0x95,0x20 };
1601 BYTE sel_uid_c2
[] = { 0x95,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
1604 BYTE mf_auth
[] = { 0x60,0x00,0xf5,0x7b };
1605 // BYTE mf_nr_ar[] = { 0x00,0x00,0x00,0x00 };
1607 BYTE
* receivedAnswer
= (((BYTE
*)BigBuf
) + 3560); // was 3560 - tied to other size changes
1613 // Start from off (no field generated)
1614 // Signal field is off with the appropriate LED
1616 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1619 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
1622 // Now give it time to spin up.
1623 // Signal field is on with the appropriate LED
1625 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_READER_MOD
);
1632 while(traceLen
< TRACE_LENGTH
)
1634 // Broadcast for a card, WUPA (0x52) will force response from all cards in the field
1635 ReaderTransmitShort(wupa
);
1637 // Test if the action was cancelled
1638 if(BUTTON_PRESS()) {
1643 if (!ReaderReceive(receivedAnswer
)) continue;
1645 // Transmit SELECT_ALL
1646 ReaderTransmit(sel_all
,sizeof(sel_all
));
1649 if (!ReaderReceive(receivedAnswer
)) continue;
1651 // Construct SELECT UID command
1652 // First copy the 5 bytes (Mifare Classic) after the 93 70
1653 memcpy(sel_uid
+2,receivedAnswer
,5);
1654 // Secondly compute the two CRC bytes at the end
1655 AppendCrc14443a(sel_uid
,7);
1657 // Transmit SELECT_UID
1658 ReaderTransmit(sel_uid
,sizeof(sel_uid
));
1661 if (!ReaderReceive(receivedAnswer
)) continue;
1663 // OK we have selected at least at cascade 1, lets see if first byte of UID was 0x88 in
1664 // which case we need to make a cascade 2 request and select - this is a long UID
1665 // When the UID is not complete, the 3nd bit (from the right) is set in the SAK.
1666 if (receivedAnswer
[0] &= 0x04)
1668 // Transmit SELECT_ALL
1669 ReaderTransmit(sel_all_c2
,sizeof(sel_all_c2
));
1672 if (!ReaderReceive(receivedAnswer
)) continue;
1674 // Construct SELECT UID command
1675 memcpy(sel_uid_c2
+2,receivedAnswer
,5);
1676 // Secondly compute the two CRC bytes at the end
1677 AppendCrc14443a(sel_uid_c2
,7);
1679 // Transmit SELECT_UID
1680 ReaderTransmit(sel_uid_c2
,sizeof(sel_uid_c2
));
1683 if (!ReaderReceive(receivedAnswer
)) continue;
1686 // Transmit MIFARE_CLASSIC_AUTH
1687 ReaderTransmit(mf_auth
,sizeof(mf_auth
));
1689 // Receive the (16 bit) "random" nonce
1690 if (!ReaderReceive(receivedAnswer
)) continue;
1694 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1696 Dbprintf("%x %x %x", rsamples
, 0xCC, 0xCC);
1697 DbpString("ready..");
1700 //-----------------------------------------------------------------------------
1701 // Read an ISO 14443a tag. Send out commands and store answers.
1703 //-----------------------------------------------------------------------------
1704 void ReaderMifare(DWORD parameter
)
1708 BYTE wupa
[] = { 0x52 };
1709 BYTE sel_all
[] = { 0x93,0x20 };
1710 BYTE sel_uid
[] = { 0x93,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
1713 BYTE mf_auth
[] = { 0x60,0x00,0xf5,0x7b };
1714 BYTE mf_nr_ar
[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };
1716 BYTE
* receivedAnswer
= (((BYTE
*)BigBuf
) + 3560); // was 3560 - tied to other size changes
1723 // Start from off (no field generated)
1724 // Signal field is off with the appropriate LED
1726 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1729 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
1732 // Now give it time to spin up.
1733 // Signal field is on with the appropriate LED
1735 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_READER_MOD
);
1742 // Broadcast for a card, WUPA (0x52) will force response from all cards in the field
1743 ReaderTransmitShort(wupa
);
1745 ReaderReceive(receivedAnswer
);
1746 // Transmit SELECT_ALL
1747 ReaderTransmit(sel_all
,sizeof(sel_all
));
1749 ReaderReceive(receivedAnswer
);
1750 // Construct SELECT UID command
1751 // First copy the 5 bytes (Mifare Classic) after the 93 70
1752 memcpy(sel_uid
+2,receivedAnswer
,5);
1753 // Secondly compute the two CRC bytes at the end
1754 AppendCrc14443a(sel_uid
,7);
1759 byte_t par_mask
= 0xff;
1765 byte_t nt_attacked
[4];
1768 num_to_bytes(parameter
,4,nt_attacked
);
1772 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1774 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A
| FPGA_HF_ISO14443A_READER_MOD
);
1776 // Broadcast for a card, WUPA (0x52) will force response from all cards in the field
1777 ReaderTransmitShort(wupa
);
1779 // Test if the action was cancelled
1780 if(BUTTON_PRESS()) {
1785 if (!ReaderReceive(receivedAnswer
)) continue;
1787 // Transmit SELECT_ALL
1788 ReaderTransmit(sel_all
,sizeof(sel_all
));
1791 if (!ReaderReceive(receivedAnswer
)) continue;
1793 // Transmit SELECT_UID
1794 ReaderTransmit(sel_uid
,sizeof(sel_uid
));
1797 if (!ReaderReceive(receivedAnswer
)) continue;
1799 // Transmit MIFARE_CLASSIC_AUTH
1800 ReaderTransmit(mf_auth
,sizeof(mf_auth
));
1802 // Receive the (16 bit) "random" nonce
1803 if (!ReaderReceive(receivedAnswer
)) continue;
1804 memcpy(nt
,receivedAnswer
,4);
1806 // Transmit reader nonce and reader answer
1807 ReaderTransmitPar(mf_nr_ar
,sizeof(mf_nr_ar
),par
);
1809 // Receive 4 bit answer
1810 if (ReaderReceive(receivedAnswer
))
1815 memcpy(nt_attacked
,nt
,4);
1817 par_low
= par
& 0x07;
1820 if (memcmp(nt
,nt_attacked
,4) != 0) continue;
1823 if(led_on
) LED_B_ON(); else LED_B_OFF();
1824 par_list
[nt_diff
] = par
;
1825 ks_list
[nt_diff
] = receivedAnswer
[0]^0x05;
1827 // Test if the information is complete
1828 if (nt_diff
== 0x07) break;
1830 nt_diff
= (nt_diff
+1) & 0x07;
1831 mf_nr_ar
[3] = nt_diff
<< 5;
1838 par
= (((par
>>3)+1) << 3) | par_low
;
1843 LogTraceInfo(sel_uid
+2,4);
1845 LogTraceInfo(par_list
,8);
1846 LogTraceInfo(ks_list
,8);
1849 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);