1 //-----------------------------------------------------------------------------
2 // Jonathan Westhues, split Nov 2006
3 // Modified by Greg Jones, Jan 2009
4 // Modified by Adrian Dabrowski "atrox", Mar-Sept 2010,Oct 2011
6 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
7 // at your option, any later version. See the LICENSE.txt file for the text of
9 //-----------------------------------------------------------------------------
10 // Routines to support ISO 15693. This includes both the reader software and
11 // the `fake tag' modes, but at the moment I've implemented only the reader
12 // stuff, and that barely.
13 // Modified to perform modulation onboard in arm rather than on PC
14 // Also added additional reader commands (SELECT, READ etc.)
15 //-----------------------------------------------------------------------------
16 // The ISO 15693 describes two transmission modes from reader to tag, and 4
17 // transmission modes from tag to reader. As of Mar 2010 this code only
18 // supports one of each: "1of4" mode from reader to tag, and the highspeed
19 // variant with one subcarrier from card to reader.
20 // As long, as the card fully support ISO 15693 this is no problem, since the
21 // reader chooses both data rates, but some non-standard tags do not. Further for
22 // the simulation to work, we will need to support all data rates.
24 // VCD (reader) -> VICC (tag)
26 // data rate: 1,66 kbit/s (fc/8192)
27 // used for long range
29 // data rate: 26,48 kbit/s (fc/512)
30 // used for short range, high speed
32 // VICC (tag) -> VCD (reader)
34 // ASK / one subcarrier (423,75 khz)
35 // FSK / two subcarriers (423,75 khz && 484,28 khz)
36 // Data Rates / Modes:
37 // low ASK: 6,62 kbit/s
38 // low FSK: 6.67 kbit/s
39 // high ASK: 26,48 kbit/s
40 // high FSK: 26,69 kbit/s
41 //-----------------------------------------------------------------------------
42 // added "1 out of 256" mode (for VCD->PICC) - atrox 20100911
46 // *) UID is always used "transmission order" (LSB), which is reverse to display order
48 // TODO / BUGS / ISSUES:
49 // *) writing to tags takes longer: we miss the answer from the tag in most cases
50 // -> tweak the read-timeout times
51 // *) signal decoding from the card is still a bit shaky.
52 // *) signal decoding is unable to detect collissions.
53 // *) add anti-collission support for inventory-commands
54 // *) read security status of a block
55 // *) sniffing and simulation do only support one transmission mode. need to support
56 // all 8 transmission combinations
57 // *) remove or refactor code under "depricated"
58 // *) document all the functions
61 #include "proxmark3.h"
65 #include "iso15693tools.h"
68 #define arraylen(x) (sizeof(x)/sizeof((x)[0]))
70 ///////////////////////////////////////////////////////////////////////
71 // ISO 15693 Part 2 - Air Interface
72 // This section basicly contains transmission and receiving of bits
73 ///////////////////////////////////////////////////////////////////////
75 #define FrameSOF Iso15693FrameSOF
76 #define Logic0 Iso15693Logic0
77 #define Logic1 Iso15693Logic1
78 #define FrameEOF Iso15693FrameEOF
80 #define Crc(data,datalen) Iso15693Crc(data,datalen)
81 #define AddCrc(data,datalen) Iso15693AddCrc(data,datalen)
82 #define sprintUID(target,uid) Iso15693sprintUID(target,uid)
87 // ---------------------------
89 // ---------------------------
91 // prepare data using "1 out of 4" code for later transmission
92 // resulting data rate is 26,48 kbit/s (fc/512)
94 // n ... length of data
95 static void CodeIso15693AsReader(uint8_t *cmd
, int n
)
101 // Give it a bit of slack at the beginning
102 for(i
= 0; i
< 24; i
++) {
115 for(i
= 0; i
< n
; i
++) {
116 for(j
= 0; j
< 8; j
+= 2) {
117 int these
= (cmd
[i
] >> j
) & 3;
168 // And slack at the end, too.
169 for(i
= 0; i
< 24; i
++) {
174 // encode data using "1 out of 256" sheme
175 // data rate is 1,66 kbit/s (fc/8192)
176 // is designed for more robust communication over longer distances
177 static void CodeIso15693AsReader256(uint8_t *cmd
, int n
)
183 // Give it a bit of slack at the beginning
184 for(i
= 0; i
< 24; i
++) {
198 for(i
= 0; i
< n
; i
++) {
199 for (j
= 0; j
<=255; j
++) {
215 // And slack at the end, too.
216 for(i
= 0; i
< 24; i
++) {
222 // Transmit the command (to the tag) that was placed in ToSend[].
223 static void TransmitTo15693Tag(const uint8_t *cmd
, int len
, int *samples
, int *wait
)
227 // FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_READER_MOD);
228 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_TX
);
229 if(*wait
< 10) { *wait
= 10; }
231 // for(c = 0; c < *wait;) {
232 // if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
233 // AT91C_BASE_SSC->SSC_THR = 0x00; // For exact timing!
236 // if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
237 // volatile uint32_t r = AT91C_BASE_SSC->SSC_RHR;
245 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
246 AT91C_BASE_SSC
->SSC_THR
= cmd
[c
];
252 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
253 volatile uint32_t r
= AT91C_BASE_SSC
->SSC_RHR
;
258 *samples
= (c
+ *wait
) << 3;
261 //-----------------------------------------------------------------------------
262 // Transmit the command (to the reader) that was placed in ToSend[].
263 //-----------------------------------------------------------------------------
264 static void TransmitTo15693Reader(const uint8_t *cmd
, int len
, int *samples
, int *wait
)
267 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR
|FPGA_HF_SIMULATOR_MODULATE_424K
);
268 if(*wait
< 10) { *wait
= 10; }
271 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
272 AT91C_BASE_SSC
->SSC_THR
= cmd
[c
];
278 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
279 volatile uint32_t r
= AT91C_BASE_SSC
->SSC_RHR
;
284 *samples
= (c
+ *wait
) << 3;
295 // number of decoded bytes
296 static int GetIso15693AnswerFromTag(uint8_t *receivedResponse
, int maxLen
, int *samples
, int *elapsed
)
298 uint8_t *dest
= BigBuf_get_addr();
304 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
305 SpinDelay(100); // greg - experiment to get rid of some of the 0 byte/failed reads
308 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
))
309 AT91C_BASE_SSC
->SSC_THR
= 0x43;
311 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
313 b
= (int8_t)AT91C_BASE_SSC
->SSC_RHR
;
315 // The samples are correlations against I and Q versions of the
316 // tone that the tag AM-modulates, so every other sample is I,
317 // every other is Q. We just want power, so abs(I) + abs(Q) is
318 // close to what we want.
320 int8_t r
= ABS(b
) + ABS(prev
);
322 dest
[c
++] = (uint8_t)r
;
335 //////////////////////////////////////////
336 /////////// DEMODULATE ///////////////////
337 //////////////////////////////////////////
340 int max
= 0, maxPos
=0;
344 // if(GraphTraceLen < 1000) return; // THIS CHECKS FOR A BUFFER TO SMALL
346 // First, correlate for SOF
347 for(i
= 0; i
< 100; i
++) {
349 for(j
= 0; j
< arraylen(FrameSOF
); j
+= skip
) {
350 corr
+= FrameSOF
[j
]*dest
[i
+(j
/skip
)];
357 // DbpString("SOF at %d, correlation %d", maxPos,max/(arraylen(FrameSOF)/skip));
359 int k
= 0; // this will be our return value
361 // greg - If correlation is less than 1 then there's little point in continuing
362 if ((max
/(arraylen(FrameSOF
)/skip
)) >= 1)
365 i
= maxPos
+ arraylen(FrameSOF
)/skip
;
368 memset(outBuf
, 0, sizeof(outBuf
));
371 int corr0
= 0, corr1
= 0, corrEOF
= 0;
372 for(j
= 0; j
< arraylen(Logic0
); j
+= skip
) {
373 corr0
+= Logic0
[j
]*dest
[i
+(j
/skip
)];
375 for(j
= 0; j
< arraylen(Logic1
); j
+= skip
) {
376 corr1
+= Logic1
[j
]*dest
[i
+(j
/skip
)];
378 for(j
= 0; j
< arraylen(FrameEOF
); j
+= skip
) {
379 corrEOF
+= FrameEOF
[j
]*dest
[i
+(j
/skip
)];
381 // Even things out by the length of the target waveform.
385 if(corrEOF
> corr1
&& corrEOF
> corr0
) {
386 // DbpString("EOF at %d", i);
388 } else if(corr1
> corr0
) {
389 i
+= arraylen(Logic1
)/skip
;
392 i
+= arraylen(Logic0
)/skip
;
399 if((i
+(int)arraylen(FrameEOF
)) >= 2000) {
400 DbpString("ran off end!");
404 if(mask
!= 0x01) { // this happens, when we miss the EOF
405 // TODO: for some reason this happens quite often
406 if (DEBUG
) Dbprintf("error, uneven octet! (extra bits!) mask=%02x", mask
);
407 if (mask
<0x08) k
--; // discard the last uneven octet;
408 // 0x08 is an assumption - but works quite often
412 // strncat(str1," octets read",8);
414 // DbpString( str1); // DbpString("%d octets", k);
416 // for(i = 0; i < k; i+=3) {
417 // //DbpString("# %2d: %02x ", i, outBuf[i]);
418 // DbpIntegers(outBuf[i],outBuf[i+1],outBuf[i+2]);
421 for(i
= 0; i
< k
; i
++) {
422 receivedResponse
[i
] = outBuf
[i
];
424 } // "end if correlation > 0" (max/(arraylen(FrameSOF)/skip))
425 return k
; // return the number of bytes demodulated
427 // DbpString("CRC=%04x", Iso15693Crc(outBuf, k-2));
431 // Now the GetISO15693 message from sniffing command
432 static int GetIso15693AnswerFromSniff(uint8_t *receivedResponse
, int maxLen
, int *samples
, int *elapsed
)
434 uint8_t *dest
= BigBuf_get_addr();
440 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
441 SpinDelay(100); // greg - experiment to get rid of some of the 0 byte/failed reads
444 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
))
445 AT91C_BASE_SSC
->SSC_THR
= 0x43;
447 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
448 int8_t b
= (int8_t)AT91C_BASE_SSC
->SSC_RHR
;
450 // The samples are correlations against I and Q versions of the
451 // tone that the tag AM-modulates, so every other sample is I,
452 // every other is Q. We just want power, so abs(I) + abs(Q) is
453 // close to what we want.
455 int8_t r
= ABS(b
) + ABS(prev
);
457 dest
[c
++] = (uint8_t)r
;
470 //////////////////////////////////////////
471 /////////// DEMODULATE ///////////////////
472 //////////////////////////////////////////
475 int max
= 0, maxPos
=0;
479 // if(GraphTraceLen < 1000) return; // THIS CHECKS FOR A BUFFER TO SMALL
481 // First, correlate for SOF
482 for(i
= 0; i
< 19000; i
++) {
484 for(j
= 0; j
< arraylen(FrameSOF
); j
+= skip
) {
485 corr
+= FrameSOF
[j
]*dest
[i
+(j
/skip
)];
492 // DbpString("SOF at %d, correlation %d", maxPos,max/(arraylen(FrameSOF)/skip));
494 int k
= 0; // this will be our return value
496 // greg - If correlation is less than 1 then there's little point in continuing
497 if ((max
/(arraylen(FrameSOF
)/skip
)) >= 1) // THIS SHOULD BE 1
500 i
= maxPos
+ arraylen(FrameSOF
)/skip
;
503 memset(outBuf
, 0, sizeof(outBuf
));
506 int corr0
= 0, corr1
= 0, corrEOF
= 0;
507 for(j
= 0; j
< arraylen(Logic0
); j
+= skip
) {
508 corr0
+= Logic0
[j
]*dest
[i
+(j
/skip
)];
510 for(j
= 0; j
< arraylen(Logic1
); j
+= skip
) {
511 corr1
+= Logic1
[j
]*dest
[i
+(j
/skip
)];
513 for(j
= 0; j
< arraylen(FrameEOF
); j
+= skip
) {
514 corrEOF
+= FrameEOF
[j
]*dest
[i
+(j
/skip
)];
516 // Even things out by the length of the target waveform.
520 if(corrEOF
> corr1
&& corrEOF
> corr0
) {
521 // DbpString("EOF at %d", i);
523 } else if(corr1
> corr0
) {
524 i
+= arraylen(Logic1
)/skip
;
527 i
+= arraylen(Logic0
)/skip
;
534 if((i
+(int)arraylen(FrameEOF
)) >= 2000) {
535 DbpString("ran off end!");
540 DbpString("sniff: error, uneven octet! (discard extra bits!)");
541 /// DbpString(" mask=%02x", mask);
545 // strncat(str1," octets read",8);
547 // DbpString( str1); // DbpString("%d octets", k);
549 // for(i = 0; i < k; i+=3) {
550 // //DbpString("# %2d: %02x ", i, outBuf[i]);
551 // DbpIntegers(outBuf[i],outBuf[i+1],outBuf[i+2]);
554 for(i
= 0; i
< k
; i
++) {
555 receivedResponse
[i
] = outBuf
[i
];
557 } // "end if correlation > 0" (max/(arraylen(FrameSOF)/skip))
558 return k
; // return the number of bytes demodulated
560 /// DbpString("CRC=%04x", Iso15693Crc(outBuf, k-2));
564 static void BuildIdentifyRequest(void);
565 //-----------------------------------------------------------------------------
566 // Start to read an ISO 15693 tag. We send an identify request, then wait
567 // for the response. The response is not demodulated, just left in the buffer
568 // so that it can be downloaded to a PC and processed there.
569 //-----------------------------------------------------------------------------
570 void AcquireRawAdcSamplesIso15693(void)
572 uint8_t *dest
= BigBuf_get_addr();
578 FpgaDownloadAndGo(FPGA_BITSTREAM_HF
);
579 BuildIdentifyRequest();
581 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
583 // Give the tags time to energize
584 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
587 // Now send the command
589 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_TX
);
593 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
594 AT91C_BASE_SSC
->SSC_THR
= ToSend
[c
];
596 if(c
== ToSendMax
+3) {
600 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
601 volatile uint32_t r
= AT91C_BASE_SSC
->SSC_RHR
;
607 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
612 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
613 AT91C_BASE_SSC
->SSC_THR
= 0x43;
615 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
617 b
= (int8_t)AT91C_BASE_SSC
->SSC_RHR
;
619 // The samples are correlations against I and Q versions of the
620 // tone that the tag AM-modulates, so every other sample is I,
621 // every other is Q. We just want power, so abs(I) + abs(Q) is
622 // close to what we want.
624 int8_t r
= ABS(b
) + ABS(prev
);
626 dest
[c
++] = (uint8_t)r
;
641 void RecordRawAdcSamplesIso15693(void)
643 uint8_t *dest
= BigBuf_get_addr();
649 FpgaDownloadAndGo(FPGA_BITSTREAM_HF
);
653 // Start from off (no field generated)
654 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
657 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
661 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
666 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_TXRDY
)) {
667 AT91C_BASE_SSC
->SSC_THR
= 0x43;
669 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
671 b
= (int8_t)AT91C_BASE_SSC
->SSC_RHR
;
673 // The samples are correlations against I and Q versions of the
674 // tone that the tag AM-modulates, so every other sample is I,
675 // every other is Q. We just want power, so abs(I) + abs(Q) is
676 // close to what we want.
678 int8_t r
= ABS(b
) + ABS(prev
);
680 dest
[c
++] = (uint8_t)r
;
693 Dbprintf("fin record");
697 // Initialize the proxmark as iso15k reader
698 // (this might produces glitches that confuse some tags
699 void Iso15693InitReader() {
705 FpgaDownloadAndGo(FPGA_BITSTREAM_HF
);
709 // Start from off (no field generated)
710 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
713 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
716 // Give the tags time to energize
717 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
726 ///////////////////////////////////////////////////////////////////////
727 // ISO 15693 Part 3 - Air Interface
728 // This section basicly contains transmission and receiving of bits
729 ///////////////////////////////////////////////////////////////////////
731 // Encode (into the ToSend buffers) an identify request, which is the first
732 // thing that you must send to a tag to get a response.
733 static void BuildIdentifyRequest(void)
738 // one sub-carrier, inventory, 1 slot, fast rate
739 // AFI is at bit 5 (1<<4) when doing an INVENTORY
740 cmd
[0] = (1 << 2) | (1 << 5) | (1 << 1);
741 // inventory command code
750 CodeIso15693AsReader(cmd
, sizeof(cmd
));
753 // uid is in transmission order (which is reverse of display order)
754 static void BuildReadBlockRequest(uint8_t *uid
, uint8_t blockNumber
)
759 // If we set the Option_Flag in this request, the VICC will respond with the secuirty status of the block
760 // followed by teh block data
761 // one sub-carrier, inventory, 1 slot, fast rate
762 cmd
[0] = (1 << 6)| (1 << 5) | (1 << 1); // no SELECT bit, ADDR bit, OPTION bit
763 // READ BLOCK command code
765 // UID may be optionally specified here
774 cmd
[9] = uid
[7]; // 0xe0; // always e0 (not exactly unique)
775 // Block number to read
776 cmd
[10] = blockNumber
;//0x00;
778 crc
= Crc(cmd
, 11); // the crc needs to be calculated over 12 bytes
779 cmd
[11] = crc
& 0xff;
782 CodeIso15693AsReader(cmd
, sizeof(cmd
));
785 // Now the VICC>VCD responses when we are simulating a tag
786 static void BuildInventoryResponse( uint8_t *uid
)
791 // one sub-carrier, inventory, 1 slot, fast rate
792 // AFI is at bit 5 (1<<4) when doing an INVENTORY
793 //(1 << 2) | (1 << 5) | (1 << 1);
795 cmd
[1] = 0; // DSFID (data storage format identifier). 0x00 = not supported
797 cmd
[2] = uid
[7]; //0x32;
798 cmd
[3] = uid
[6]; //0x4b;
799 cmd
[4] = uid
[5]; //0x03;
800 cmd
[5] = uid
[4]; //0x01;
801 cmd
[6] = uid
[3]; //0x00;
802 cmd
[7] = uid
[2]; //0x10;
803 cmd
[8] = uid
[1]; //0x05;
804 cmd
[9] = uid
[0]; //0xe0;
807 cmd
[10] = crc
& 0xff;
810 CodeIso15693AsReader(cmd
, sizeof(cmd
));
813 // Universal Method for sending to and recv bytes from a tag
814 // init ... should we initialize the reader?
815 // speed ... 0 low speed, 1 hi speed
816 // **recv will return you a pointer to the received data
817 // If you do not need the answer use NULL for *recv[]
818 // return: lenght of received data
819 int SendDataTag(uint8_t *send
, int sendlen
, int init
, int speed
, uint8_t **recv
) {
831 if (init
) Iso15693InitReader();
834 uint8_t *answer
= BigBuf_get_addr() + 3660;
835 if (recv
!= NULL
) memset(answer
, 0, 100);
838 // low speed (1 out of 256)
839 CodeIso15693AsReader256(send
, sendlen
);
841 // high speed (1 out of 4)
842 CodeIso15693AsReader(send
, sendlen
);
848 TransmitTo15693Tag(ToSend
,ToSendMax
,&tsamples
, &wait
);
849 // Now wait for a response
853 answerLen
= GetIso15693AnswerFromTag(answer
, 100, &samples
, &elapsed
) ;
863 // --------------------------------------------------------------------
865 // --------------------------------------------------------------------
867 // Decodes a message from a tag and displays its metadata and content
868 #define DBD15STATLEN 48
869 void DbdecodeIso15693Answer(int len
, uint8_t *d
) {
870 char status
[DBD15STATLEN
+1]={0};
875 strncat(status
,"ProtExt ",DBD15STATLEN
);
878 strncat(status
,"Error ",DBD15STATLEN
);
881 strncat(status
,"01:notSupp",DBD15STATLEN
);
884 strncat(status
,"02:notRecog",DBD15STATLEN
);
887 strncat(status
,"03:optNotSupp",DBD15STATLEN
);
890 strncat(status
,"0f:noInfo",DBD15STATLEN
);
893 strncat(status
,"10:dontExist",DBD15STATLEN
);
896 strncat(status
,"11:lockAgain",DBD15STATLEN
);
899 strncat(status
,"12:locked",DBD15STATLEN
);
902 strncat(status
,"13:progErr",DBD15STATLEN
);
905 strncat(status
,"14:lockErr",DBD15STATLEN
);
908 strncat(status
,"unknownErr",DBD15STATLEN
);
910 strncat(status
," ",DBD15STATLEN
);
912 strncat(status
,"NoErr ",DBD15STATLEN
);
916 if ( (( crc
& 0xff ) == d
[len
-2]) && (( crc
>> 8 ) == d
[len
-1]) )
917 strncat(status
,"CrcOK",DBD15STATLEN
);
919 strncat(status
,"CrcFail!",DBD15STATLEN
);
921 Dbprintf("%s",status
);
927 ///////////////////////////////////////////////////////////////////////
928 // Functions called via USB/Client
929 ///////////////////////////////////////////////////////////////////////
931 void SetDebugIso15693(uint32_t debug
) {
933 Dbprintf("Iso15693 Debug is now %s",DEBUG
?"on":"off");
939 //-----------------------------------------------------------------------------
940 // Simulate an ISO15693 reader, perform anti-collision and then attempt to read a sector
941 // all demodulation performed in arm rather than host. - greg
942 //-----------------------------------------------------------------------------
943 void ReaderIso15693(uint32_t parameter
)
958 uint8_t TagUID
[8] = {0x00};
960 FpgaDownloadAndGo(FPGA_BITSTREAM_HF
);
962 uint8_t *answer1
= BigBuf_get_addr() + 3660;
963 uint8_t *answer2
= BigBuf_get_addr() + 3760;
964 uint8_t *answer3
= BigBuf_get_addr() + 3860;
966 memset(answer1
, 0x00, 300);
968 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
972 // Start from off (no field generated)
973 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
976 // Give the tags time to energize
977 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_RX_XCORR
);
985 // FIRST WE RUN AN INVENTORY TO GET THE TAG UID
986 // THIS MEANS WE CAN PRE-BUILD REQUESTS TO SAVE CPU TIME
988 // Now send the IDENTIFY command
989 BuildIdentifyRequest();
991 TransmitTo15693Tag(ToSend
,ToSendMax
,&tsamples
, &wait
);
993 // Now wait for a response
994 answerLen1
= GetIso15693AnswerFromTag(answer1
, 100, &samples
, &elapsed
) ;
996 if (answerLen1
>=12) // we should do a better check than this
998 TagUID
[0] = answer1
[2];
999 TagUID
[1] = answer1
[3];
1000 TagUID
[2] = answer1
[4];
1001 TagUID
[3] = answer1
[5];
1002 TagUID
[4] = answer1
[6];
1003 TagUID
[5] = answer1
[7];
1004 TagUID
[6] = answer1
[8]; // IC Manufacturer code
1005 TagUID
[7] = answer1
[9]; // always E0
1009 Dbprintf("%d octets read from IDENTIFY request:", answerLen1
);
1010 DbdecodeIso15693Answer(answerLen1
,answer1
);
1011 Dbhexdump(answerLen1
,answer1
,true);
1015 Dbprintf("UID = %02hX%02hX%02hX%02hX%02hX%02hX%02hX%02hX",
1016 TagUID
[7],TagUID
[6],TagUID
[5],TagUID
[4],
1017 TagUID
[3],TagUID
[2],TagUID
[1],TagUID
[0]);
1020 Dbprintf("%d octets read from SELECT request:", answerLen2
);
1021 DbdecodeIso15693Answer(answerLen2
,answer2
);
1022 Dbhexdump(answerLen2
,answer2
,true);
1024 Dbprintf("%d octets read from XXX request:", answerLen3
);
1025 DbdecodeIso15693Answer(answerLen3
,answer3
);
1026 Dbhexdump(answerLen3
,answer3
,true);
1029 if (answerLen1
>=12 && DEBUG
) {
1031 while (i
<32) { // sanity check, assume max 32 pages
1032 BuildReadBlockRequest(TagUID
,i
);
1033 TransmitTo15693Tag(ToSend
,ToSendMax
,&tsamples
, &wait
);
1034 answerLen2
= GetIso15693AnswerFromTag(answer2
, 100, &samples
, &elapsed
);
1036 Dbprintf("READ SINGLE BLOCK %d returned %d octets:",i
,answerLen2
);
1037 DbdecodeIso15693Answer(answerLen2
,answer2
);
1038 Dbhexdump(answerLen2
,answer2
,true);
1039 if ( *((uint32_t*) answer2
) == 0x07160101 ) break; // exit on NoPageErr
1051 // Simulate an ISO15693 TAG, perform anti-collision and then print any reader commands
1052 // all demodulation performed in arm rather than host. - greg
1053 void SimTagIso15693(uint32_t parameter
, uint8_t *uid
)
1066 FpgaDownloadAndGo(FPGA_BITSTREAM_HF
);
1068 uint8_t *buf
= BigBuf_get_addr() + 3660;
1069 memset(buf
, 0x00, 100);
1071 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
1074 // Start from off (no field generated)
1075 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
1084 answerLen1
= GetIso15693AnswerFromSniff(buf
, 100, &samples
, &elapsed
) ;
1086 if (answerLen1
>=1) // we should do a better check than this
1088 // Build a suitable reponse to the reader INVENTORY cocmmand
1089 // not so obsvious, but in the call to BuildInventoryResponse, the command is copied to the global ToSend buffer used below.
1091 BuildInventoryResponse(uid
);
1093 TransmitTo15693Reader(ToSend
,ToSendMax
, &tsamples
, &wait
);
1096 Dbprintf("%d octets read from reader command: %x %x %x %x %x %x %x %x %x", answerLen1
,
1097 buf
[0], buf
[1], buf
[2], buf
[3],
1098 buf
[4], buf
[5], buf
[6], buf
[7], buf
[8]);
1100 Dbprintf("Simulationg uid: %x %x %x %x %x %x %x %x",
1101 uid
[0], uid
[1], uid
[2], uid
[3],
1102 uid
[4], uid
[5], uid
[6], uid
[7]);
1111 // Since there is no standardized way of reading the AFI out of a tag, we will brute force it
1112 // (some manufactures offer a way to read the AFI, though)
1113 void BruteforceIso15693Afi(uint32_t speed
)
1117 int datalen
=0, recvlen
=0;
1119 Iso15693InitReader();
1121 // first without AFI
1122 // Tags should respond wihtout AFI and with AFI=0 even when AFI is active
1124 data
[0]=ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
1125 ISO15_REQ_INVENTORY
| ISO15_REQINV_SLOT1
;
1126 data
[1]=ISO15_CMD_INVENTORY
;
1127 data
[2]=0; // mask length
1128 datalen
=AddCrc(data
,3);
1129 recvlen
=SendDataTag(data
,datalen
,0,speed
,&recv
);
1132 Dbprintf("NoAFI UID=%s",sprintUID(NULL
,&recv
[2]));
1137 data
[0]=ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
1138 ISO15_REQ_INVENTORY
| ISO15_REQINV_AFI
| ISO15_REQINV_SLOT1
;
1139 data
[1]=ISO15_CMD_INVENTORY
;
1141 data
[3]=0; // mask length
1143 for (int i
=0;i
<256;i
++) {
1145 datalen
=AddCrc(data
,4);
1146 recvlen
=SendDataTag(data
,datalen
,0,speed
,&recv
);
1149 Dbprintf("AFI=%i UID=%s",i
,sprintUID(NULL
,&recv
[2]));
1152 Dbprintf("AFI Bruteforcing done.");
1156 // Allows to directly send commands to the tag via the client
1157 void DirectTag15693Command(uint32_t datalen
,uint32_t speed
, uint32_t recv
, uint8_t data
[]) {
1160 uint8_t *recvbuf
= BigBuf_get_addr();
1165 Dbhexdump(datalen
,data
,true);
1168 recvlen
=SendDataTag(data
,datalen
,1,speed
,(recv
?&recvbuf
:NULL
));
1172 cmd_send(CMD_ACK
,recvlen
>48?48:recvlen
,0,0,recvbuf
,48);
1177 DbdecodeIso15693Answer(recvlen
,recvbuf
);
1178 Dbhexdump(recvlen
,recvbuf
,true);
1187 // --------------------------------------------------------------------
1188 // -- Misc & deprecated functions
1189 // --------------------------------------------------------------------
1193 // do not use; has a fix UID
1194 static void __attribute__((unused)) BuildSysInfoRequest(uint8_t *uid)
1199 // If we set the Option_Flag in this request, the VICC will respond with the secuirty status of the block
1200 // followed by teh block data
1201 // one sub-carrier, inventory, 1 slot, fast rate
1202 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1203 // System Information command code
1205 // UID may be optionally specified here
1214 cmd[9]= 0xe0; // always e0 (not exactly unique)
1216 crc = Crc(cmd, 10); // the crc needs to be calculated over 2 bytes
1217 cmd[10] = crc & 0xff;
1220 CodeIso15693AsReader(cmd, sizeof(cmd));
1224 // do not use; has a fix UID
1225 static void __attribute__((unused)) BuildReadMultiBlockRequest(uint8_t *uid)
1230 // If we set the Option_Flag in this request, the VICC will respond with the secuirty status of the block
1231 // followed by teh block data
1232 // one sub-carrier, inventory, 1 slot, fast rate
1233 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1234 // READ Multi BLOCK command code
1236 // UID may be optionally specified here
1245 cmd[9]= 0xe0; // always e0 (not exactly unique)
1246 // First Block number to read
1248 // Number of Blocks to read
1249 cmd[11] = 0x2f; // read quite a few
1251 crc = Crc(cmd, 12); // the crc needs to be calculated over 2 bytes
1252 cmd[12] = crc & 0xff;
1255 CodeIso15693AsReader(cmd, sizeof(cmd));
1258 // do not use; has a fix UID
1259 static void __attribute__((unused)) BuildArbitraryRequest(uint8_t *uid,uint8_t CmdCode)
1264 // If we set the Option_Flag in this request, the VICC will respond with the secuirty status of the block
1265 // followed by teh block data
1266 // one sub-carrier, inventory, 1 slot, fast rate
1267 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1268 // READ BLOCK command code
1270 // UID may be optionally specified here
1279 cmd[9]= 0xe0; // always e0 (not exactly unique)
1285 // cmd[13] = 0x00; //Now the CRC
1286 crc = Crc(cmd, 12); // the crc needs to be calculated over 2 bytes
1287 cmd[12] = crc & 0xff;
1290 CodeIso15693AsReader(cmd, sizeof(cmd));
1293 // do not use; has a fix UID
1294 static void __attribute__((unused)) BuildArbitraryCustomRequest(uint8_t uid[], uint8_t CmdCode)
1299 // If we set the Option_Flag in this request, the VICC will respond with the secuirty status of the block
1300 // followed by teh block data
1301 // one sub-carrier, inventory, 1 slot, fast rate
1302 cmd[0] = (1 << 5) | (1 << 1); // no SELECT bit
1303 // READ BLOCK command code
1305 // UID may be optionally specified here
1314 cmd[9]= 0xe0; // always e0 (not exactly unique)
1316 cmd[10] = 0x05; // for custom codes this must be manufcturer code
1320 // cmd[13] = 0x00; //Now the CRC
1321 crc = Crc(cmd, 12); // the crc needs to be calculated over 2 bytes
1322 cmd[12] = crc & 0xff;
1325 CodeIso15693AsReader(cmd, sizeof(cmd));