1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Data and Graph commands
9 //-----------------------------------------------------------------------------
15 #include "proxmark3.h"
19 #include "cmdparser.h"
26 uint8_t DemodBuffer
[MAX_DEMOD_BUF_LEN
];
29 static int CmdHelp(const char *Cmd
);
31 //set the demod buffer with given array of binary (one bit per byte)
33 void setDemodBuf(uint8_t *buff
, size_t size
, size_t startIdx
)
36 for (; i
< size
; i
++){
37 DemodBuffer
[i
]=buff
[startIdx
++];
43 int CmdSetDebugMode(const char *Cmd
)
46 sscanf(Cmd
, "%i", &demod
);
47 g_debugMode
=(uint8_t)demod
;
55 int bitLen
= DemodBufferLen
;
57 PrintAndLog("no bits found in demod buffer");
60 if (bitLen
>512) bitLen
=512; //max output to 512 bits if we have more - should be plenty
62 // ensure equally divided by 16
65 for (i
= 0; i
<= (bitLen
-16); i
+=16) {
66 PrintAndLog("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i",
88 int CmdAmp(const char *Cmd
)
90 int i
, rising
, falling
;
91 int max
= INT_MIN
, min
= INT_MAX
;
93 for (i
= 10; i
< GraphTraceLen
; ++i
) {
94 if (GraphBuffer
[i
] > max
)
96 if (GraphBuffer
[i
] < min
)
102 for (i
= 0; i
< GraphTraceLen
; ++i
) {
103 if (GraphBuffer
[i
+ 1] < GraphBuffer
[i
]) {
105 GraphBuffer
[i
] = max
;
110 if (GraphBuffer
[i
+ 1] > GraphBuffer
[i
]) {
112 GraphBuffer
[i
] = min
;
119 RepaintGraphWindow();
124 * Generic command to demodulate ASK.
126 * Argument is convention: positive or negative (High mod means zero
127 * or high mod means one)
129 * Updates the Graph trace with 0/1 values
134 //this method is dependant on all highs and lows to be the same(or clipped) this creates issues[marshmellow] it also ignores the clock
135 int Cmdaskdemod(const char *Cmd
)
138 int c
, high
= 0, low
= 0;
140 // TODO: complain if we do not give 2 arguments here !
141 // (AL - this doesn't make sense! we're only using one argument!!!)
142 sscanf(Cmd
, "%i", &c
);
144 /* Detect high and lows and clock */
146 for (i
= 0; i
< GraphTraceLen
; ++i
)
148 if (GraphBuffer
[i
] > high
)
149 high
= GraphBuffer
[i
];
150 else if (GraphBuffer
[i
] < low
)
151 low
= GraphBuffer
[i
];
155 if (c
!= 0 && c
!= 1) {
156 PrintAndLog("Invalid argument: %s", Cmd
);
160 if (GraphBuffer
[0] > 0) {
161 GraphBuffer
[0] = 1-c
;
165 for (i
= 1; i
< GraphTraceLen
; ++i
) {
166 /* Transitions are detected at each peak
167 * Transitions are either:
168 * - we're low: transition if we hit a high
169 * - we're high: transition if we hit a low
170 * (we need to do it this way because some tags keep high or
171 * low for long periods, others just reach the peak and go
174 //[marhsmellow] change == to >= for high and <= for low for fuzz
175 if ((GraphBuffer
[i
] == high
) && (GraphBuffer
[i
- 1] == c
)) {
176 GraphBuffer
[i
] = 1 - c
;
177 } else if ((GraphBuffer
[i
] == low
) && (GraphBuffer
[i
- 1] == (1 - c
))){
181 GraphBuffer
[i
] = GraphBuffer
[i
- 1];
184 RepaintGraphWindow();
189 void printBitStream(uint8_t BitStream
[], uint32_t bitLen
)
193 PrintAndLog("Too few bits found: %d",bitLen
);
196 if (bitLen
>512) bitLen
=512;
198 // ensure equally divided by 16
202 for (i
= 0; i
<= (bitLen
-16); i
+=16) {
203 PrintAndLog("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i",
224 //print EM410x ID in multiple formats
225 void printEM410x(uint64_t id
)
232 for (ii
=5; ii
>0;ii
--){
234 id2lo
=(id2lo
<<1LL) | ((id
& (iii
<< (i
+((ii
-1)*8)))) >> (i
+((ii
-1)*8)));
238 PrintAndLog("EM TAG ID : %010llx", id
);
239 PrintAndLog("Unique TAG ID: %010llx", id2lo
);
240 PrintAndLog("DEZ 8 : %08lld",id
& 0xFFFFFF);
241 PrintAndLog("DEZ 10 : %010lld",id
& 0xFFFFFF);
242 PrintAndLog("DEZ 5.5 : %05lld.%05lld",(id
>>16LL) & 0xFFFF,(id
& 0xFFFF));
243 PrintAndLog("DEZ 3.5A : %03lld.%05lld",(id
>>32ll),(id
& 0xFFFF));
244 PrintAndLog("DEZ 14/IK2 : %014lld",id
);
245 PrintAndLog("DEZ 15/IK3 : %015lld",id2lo
);
246 PrintAndLog("Other : %05lld_%03lld_%08lld",(id
&0xFFFF),((id
>>16LL) & 0xFF),(id
& 0xFFFFFF));
252 //take binary from demod buffer and see if we can find an EM410x ID
253 int CmdEm410xDecode(const char *Cmd
)
256 size_t size
= DemodBufferLen
, idx
=0;
257 id
= Em410xDecode(DemodBuffer
, &size
, &idx
);
259 setDemodBuf(DemodBuffer
, size
, idx
);
261 PrintAndLog("DEBUG: Printing demod buffer:");
272 //takes 2 arguments - clock and invert both as integers
273 //attempts to demodulate ask while decoding manchester
274 //prints binary found and saves in graphbuffer for further commands
275 int Cmdaskmandemod(const char *Cmd
)
279 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
280 sscanf(Cmd
, "%i %i", &clk
, &invert
);
281 if (invert
!= 0 && invert
!= 1) {
282 PrintAndLog("Invalid argument: %s", Cmd
);
286 size_t BitLen
= getFromGraphBuf(BitStream
);
287 if (g_debugMode
==1) PrintAndLog("DEBUG: Bitlen from grphbuff: %d",BitLen
);
289 errCnt
= askmandemod(BitStream
, &BitLen
,&clk
,&invert
);
290 if (errCnt
<0||BitLen
<16){ //if fatal error (or -1)
291 if (g_debugMode
==1) PrintAndLog("no data found %d, errors:%d, bitlen:%d, clock:%d",errCnt
,invert
,BitLen
,clk
);
294 PrintAndLog("\nUsing Clock: %d - Invert: %d - Bits Found: %d",clk
,invert
,BitLen
);
298 PrintAndLog("# Errors during Demoding (shown as 77 in bit stream): %d",errCnt
);
300 PrintAndLog("ASK/Manchester decoded bitstream:");
301 // Now output the bitstream to the scrollback by line of 16 bits
302 setDemodBuf(BitStream
,BitLen
,0);
306 lo
= Em410xDecode(BitStream
, &BitLen
, &idx
);
308 //set GraphBuffer for clone or sim command
309 setDemodBuf(BitStream
, BitLen
, idx
);
311 PrintAndLog("DEBUG: idx: %d, Len: %d, Printing Demod Buffer:", idx
, BitLen
);
314 PrintAndLog("EM410x pattern found: ");
323 //stricktly take 10 and 01 and convert to 0 and 1
324 int Cmdmandecoderaw(const char *Cmd
)
329 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
331 for (;i
<DemodBufferLen
;++i
){
332 if (DemodBuffer
[i
]>high
) high
=DemodBuffer
[i
];
333 else if(DemodBuffer
[i
]<low
) low
=DemodBuffer
[i
];
334 BitStream
[i
]=DemodBuffer
[i
];
336 if (high
>1 || low
<0 ){
337 PrintAndLog("Error: please raw demod the wave first then mancheseter raw decode");
341 errCnt
=manrawdecode(BitStream
, &size
);
343 PrintAndLog("Too many errors: %d",errCnt
);
346 PrintAndLog("Manchester Decoded - # errors:%d - data:",errCnt
);
347 printBitStream(BitStream
, size
);
351 id
= Em410xDecode(BitStream
, &size
, &idx
);
353 //need to adjust to set bitstream back to manchester encoded data
354 //setDemodBuf(BitStream, size, idx);
364 //take 01 or 10 = 0 and 11 or 00 = 1
365 //takes 2 arguments "offset" default = 0 if 1 it will shift the decode by one bit
366 // and "invert" default = 0 if 1 it will invert output
367 // since it is not like manchester and doesn't have an incorrect bit pattern we
368 // cannot determine if our decode is correct or if it should be shifted by one bit
369 // the argument offset allows us to manually shift if the output is incorrect
370 // (better would be to demod and decode at the same time so we can distinguish large
371 // width waves vs small width waves to help the decode positioning) or askbiphdemod
372 int CmdBiphaseDecodeRaw(const char *Cmd
)
380 sscanf(Cmd
, "%i %i", &offset
, &invert
);
381 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
382 //get graphbuffer & high and low
383 for (;i
<DemodBufferLen
;++i
){
384 if(DemodBuffer
[i
]>high
)high
=DemodBuffer
[i
];
385 else if(DemodBuffer
[i
]<low
)low
=DemodBuffer
[i
];
386 BitStream
[i
]=DemodBuffer
[i
];
388 if (high
>1 || low
<0){
389 PrintAndLog("Error: please raw demod the wave first then decode");
393 errCnt
=BiphaseRawDecode(BitStream
, &size
, offset
, invert
);
395 PrintAndLog("Too many errors attempting to decode: %d",errCnt
);
398 PrintAndLog("Biphase Decoded using offset: %d - # errors:%d - data:",offset
,errCnt
);
399 printBitStream(BitStream
, size
);
400 PrintAndLog("\nif bitstream does not look right try offset=1");
405 //takes 2 arguments - clock and invert both as integers
406 //attempts to demodulate ask only
407 //prints binary found and saves in graphbuffer for further commands
408 int Cmdaskrawdemod(const char *Cmd
)
412 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
413 sscanf(Cmd
, "%i %i", &clk
, &invert
);
414 if (invert
!= 0 && invert
!= 1) {
415 PrintAndLog("Invalid argument: %s", Cmd
);
418 size_t BitLen
= getFromGraphBuf(BitStream
);
420 errCnt
= askrawdemod(BitStream
, &BitLen
,&clk
,&invert
);
421 if (errCnt
==-1||BitLen
<16){ //throw away static - allow 1 and -1 (in case of threshold command first)
422 PrintAndLog("no data found");
423 if (g_debugMode
==1) PrintAndLog("errCnt: %d, BitLen: %d, clk: %d, invert: %d", errCnt
, BitLen
, clk
, invert
);
426 PrintAndLog("Using Clock: %d - invert: %d - Bits Found: %d",clk
,invert
,BitLen
);
428 //move BitStream back to DemodBuffer
429 setDemodBuf(BitStream
,BitLen
,0);
433 PrintAndLog("# Errors during Demoding (shown as 77 in bit stream): %d",errCnt
);
435 PrintAndLog("ASK demoded bitstream:");
436 // Now output the bitstream to the scrollback by line of 16 bits
437 printBitStream(BitStream
,BitLen
);
442 int CmdAutoCorr(const char *Cmd
)
444 static int CorrelBuffer
[MAX_GRAPH_TRACE_LEN
];
446 int window
= atoi(Cmd
);
449 PrintAndLog("needs a window");
452 if (window
>= GraphTraceLen
) {
453 PrintAndLog("window must be smaller than trace (%d samples)",
458 PrintAndLog("performing %d correlations", GraphTraceLen
- window
);
460 for (int i
= 0; i
< GraphTraceLen
- window
; ++i
) {
462 for (int j
= 0; j
< window
; ++j
) {
463 sum
+= (GraphBuffer
[j
]*GraphBuffer
[i
+ j
]) / 256;
465 CorrelBuffer
[i
] = sum
;
467 GraphTraceLen
= GraphTraceLen
- window
;
468 memcpy(GraphBuffer
, CorrelBuffer
, GraphTraceLen
* sizeof (int));
470 RepaintGraphWindow();
474 int CmdBitsamples(const char *Cmd
)
479 GetFromBigBuf(got
,sizeof(got
),0);
480 WaitForResponse(CMD_ACK
,NULL
);
482 for (int j
= 0; j
< sizeof(got
); j
++) {
483 for (int k
= 0; k
< 8; k
++) {
484 if(got
[j
] & (1 << (7 - k
))) {
485 GraphBuffer
[cnt
++] = 1;
487 GraphBuffer
[cnt
++] = 0;
492 RepaintGraphWindow();
497 * Convert to a bitstream
499 int CmdBitstream(const char *Cmd
)
507 int hithigh
, hitlow
, first
;
509 /* Detect high and lows and clock */
510 for (i
= 0; i
< GraphTraceLen
; ++i
)
512 if (GraphBuffer
[i
] > high
)
513 high
= GraphBuffer
[i
];
514 else if (GraphBuffer
[i
] < low
)
515 low
= GraphBuffer
[i
];
519 clock
= GetClock(Cmd
, high
, 1);
523 for (i
= 0; i
< (int)(gtl
/ clock
); ++i
)
528 /* Find out if we hit both high and low peaks */
529 for (j
= 0; j
< clock
; ++j
)
531 if (GraphBuffer
[(i
* clock
) + j
] == high
)
533 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
535 /* it doesn't count if it's the first part of our read
536 because it's really just trailing from the last sequence */
537 if (first
&& (hithigh
|| hitlow
))
538 hithigh
= hitlow
= 0;
542 if (hithigh
&& hitlow
)
546 /* If we didn't hit both high and low peaks, we had a bit transition */
547 if (!hithigh
|| !hitlow
)
550 AppendGraph(0, clock
, bit
);
553 RepaintGraphWindow();
557 int CmdBuffClear(const char *Cmd
)
559 UsbCommand c
= {CMD_BUFF_CLEAR
};
565 int CmdDec(const char *Cmd
)
567 for (int i
= 0; i
< (GraphTraceLen
/ 2); ++i
)
568 GraphBuffer
[i
] = GraphBuffer
[i
* 2];
570 PrintAndLog("decimated by 2");
571 RepaintGraphWindow();
575 * Undecimate - I'd call it 'interpolate', but we'll save that
576 * name until someone does an actual interpolation command, not just
577 * blindly repeating samples
581 int CmdUndec(const char *Cmd
)
583 if(param_getchar(Cmd
, 0) == 'h')
585 PrintAndLog("Usage: data undec [factor]");
586 PrintAndLog("This function performs un-decimation, by repeating each sample N times");
587 PrintAndLog("Options: ");
588 PrintAndLog(" h This help");
589 PrintAndLog(" factor The number of times to repeat each sample.[default:2]");
590 PrintAndLog("Example: 'data undec 3'");
594 uint8_t factor
= param_get8ex(Cmd
, 0,2, 10);
595 //We have memory, don't we?
596 int swap
[MAX_GRAPH_TRACE_LEN
] = { 0 };
597 uint32_t g_index
= 0 ,s_index
= 0;
598 while(g_index
< GraphTraceLen
&& s_index
< MAX_GRAPH_TRACE_LEN
)
601 for(count
= 0; count
< factor
&& s_index
+count
< MAX_GRAPH_TRACE_LEN
; count
++)
602 swap
[s_index
+count
] = GraphBuffer
[g_index
];
606 memcpy(GraphBuffer
,swap
, s_index
* sizeof(int));
607 GraphTraceLen
= s_index
;
608 RepaintGraphWindow();
613 //shift graph zero up or down based on input + or -
614 int CmdGraphShiftZero(const char *Cmd
)
618 //set options from parameters entered with the command
619 sscanf(Cmd
, "%i", &shift
);
621 for(int i
= 0; i
<GraphTraceLen
; i
++){
622 shiftedVal
=GraphBuffer
[i
]+shift
;
625 else if (shiftedVal
<-127)
627 GraphBuffer
[i
]= shiftedVal
;
633 /* Print our clock rate */
634 // uses data from graphbuffer
635 int CmdDetectClockRate(const char *Cmd
)
638 //int clock = DetectASKClock(0);
639 //PrintAndLog("Auto-detected clock rate: %d", clock);
644 //fsk raw demod and print binary
645 //takes 4 arguments - Clock, invert, rchigh, rclow
646 //defaults: clock = 50, invert=0, rchigh=10, rclow=8 (RF/10 RF/8 (fsk2a))
647 int CmdFSKrawdemod(const char *Cmd
)
649 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
655 //set options from parameters entered with the command
656 sscanf(Cmd
, "%i %i %i %i", &rfLen
, &invert
, &fchigh
, &fclow
);
658 if (strlen(Cmd
)>0 && strlen(Cmd
)<=2) {
660 invert
=1; //if invert option only is used
665 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
666 size_t BitLen
= getFromGraphBuf(BitStream
);
667 //get field clock lengths
669 if (fchigh
==0 || fclow
== 0){
670 fcs
=countFC(BitStream
, BitLen
);
675 fchigh
= (fcs
>> 8) & 0xFF;
679 //get bit clock length
681 rfLen
= detectFSKClk(BitStream
, BitLen
, fchigh
, fclow
);
682 if (rfLen
== 0) rfLen
= 50;
684 PrintAndLog("Args invert: %d - Clock:%d - fchigh:%d - fclow: %d",invert
,rfLen
,fchigh
, fclow
);
685 int size
= fskdemod(BitStream
,BitLen
,(uint8_t)rfLen
,(uint8_t)invert
,(uint8_t)fchigh
,(uint8_t)fclow
);
687 PrintAndLog("FSK decoded bitstream:");
688 setDemodBuf(BitStream
,size
,0);
690 // Now output the bitstream to the scrollback by line of 16 bits
691 if(size
> (8*32)+2) size
= (8*32)+2; //only output a max of 8 blocks of 32 bits most tags will have full bit stream inside that sample size
692 printBitStream(BitStream
,size
);
694 PrintAndLog("no FSK data found");
699 //by marshmellow (based on existing demod + holiman's refactor)
700 //HID Prox demod - FSK RF/50 with preamble of 00011101 (then manchester encoded)
701 //print full HID Prox ID and some bit format details if found
702 int CmdFSKdemodHID(const char *Cmd
)
704 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
705 uint32_t hi2
=0, hi
=0, lo
=0;
707 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
708 size_t BitLen
= getFromGraphBuf(BitStream
);
709 //get binary from fsk wave
710 int idx
= HIDdemodFSK(BitStream
,&BitLen
,&hi2
,&hi
,&lo
);
714 PrintAndLog("DEBUG: Just Noise Detected");
715 } else if (idx
== -2) {
716 PrintAndLog("DEBUG: Error demoding fsk");
717 } else if (idx
== -3) {
718 PrintAndLog("DEBUG: Preamble not found");
719 } else if (idx
== -4) {
720 PrintAndLog("DEBUG: Error in Manchester data, SIZE: %d", BitLen
);
722 PrintAndLog("DEBUG: Error demoding fsk %d", idx
);
727 if (hi2
==0 && hi
==0 && lo
==0) {
728 if (g_debugMode
) PrintAndLog("DEBUG: Error - no values found");
731 if (hi2
!= 0){ //extra large HID tags
732 PrintAndLog("HID Prox TAG ID: %x%08x%08x (%d)",
733 (unsigned int) hi2
, (unsigned int) hi
, (unsigned int) lo
, (unsigned int) (lo
>>1) & 0xFFFF);
735 else { //standard HID tags <38 bits
738 uint32_t cardnum
= 0;
739 if (((hi
>>5)&1)==1){//if bit 38 is set then < 37 bit format is used
741 lo2
=(((hi
& 31) << 12) | (lo
>>20)); //get bits 21-37 to check for format len bit
743 while(lo2
>1){ //find last bit set to 1 (format len bit)
751 cardnum
= (lo
>>1)&0xFFFF;
755 cardnum
= (lo
>>1)&0xFFFF;
756 fc
= ((hi
&1)<<15)|(lo
>>17);
759 cardnum
= (lo
>>1)&0xFFFFF;
760 fc
= ((hi
&1)<<11)|(lo
>>21);
763 else { //if bit 38 is not set then 37 bit format is used
768 cardnum
= (lo
>>1)&0x7FFFF;
769 fc
= ((hi
&0xF)<<12)|(lo
>>20);
772 PrintAndLog("HID Prox TAG ID: %x%08x (%d) - Format Len: %dbit - FC: %d - Card: %d",
773 (unsigned int) hi
, (unsigned int) lo
, (unsigned int) (lo
>>1) & 0xFFFF,
774 (unsigned int) fmtLen
, (unsigned int) fc
, (unsigned int) cardnum
);
776 setDemodBuf(BitStream
,BitLen
,idx
);
778 PrintAndLog("DEBUG: idx: %d, Len: %d, Printing Demod Buffer:", idx
, BitLen
);
785 //Paradox Prox demod - FSK RF/50 with preamble of 00001111 (then manchester encoded)
786 //print full Paradox Prox ID and some bit format details if found
787 int CmdFSKdemodParadox(const char *Cmd
)
789 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
790 uint32_t hi2
=0, hi
=0, lo
=0;
792 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
793 size_t BitLen
= getFromGraphBuf(BitStream
);
794 //get binary from fsk wave
795 int idx
= ParadoxdemodFSK(BitStream
,&BitLen
,&hi2
,&hi
,&lo
);
799 PrintAndLog("DEBUG: Just Noise Detected");
800 } else if (idx
== -2) {
801 PrintAndLog("DEBUG: Error demoding fsk");
802 } else if (idx
== -3) {
803 PrintAndLog("DEBUG: Preamble not found");
804 } else if (idx
== -4) {
805 PrintAndLog("DEBUG: Error in Manchester data");
807 PrintAndLog("DEBUG: Error demoding fsk %d", idx
);
812 if (hi2
==0 && hi
==0 && lo
==0){
813 if (g_debugMode
) PrintAndLog("DEBUG: Error - no value found");
816 uint32_t fc
= ((hi
& 0x3)<<6) | (lo
>>26);
817 uint32_t cardnum
= (lo
>>10)&0xFFFF;
819 PrintAndLog("Paradox TAG ID: %x%08x - FC: %d - Card: %d - Checksum: %02x",
820 hi
>>10, (hi
& 0x3)<<26 | (lo
>>10), fc
, cardnum
, (lo
>>2) & 0xFF );
821 setDemodBuf(BitStream
,BitLen
,idx
);
823 PrintAndLog("DEBUG: idx: %d, len: %d, Printing Demod Buffer:", idx
, BitLen
);
831 //IO-Prox demod - FSK RF/64 with preamble of 000000001
832 //print ioprox ID and some format details
833 int CmdFSKdemodIO(const char *Cmd
)
835 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
838 //something in graphbuffer?
839 if (GraphTraceLen
< 65) {
840 if (g_debugMode
)PrintAndLog("DEBUG: not enough samples in GraphBuffer");
843 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
844 size_t BitLen
= getFromGraphBuf(BitStream
);
846 //get binary from fsk wave
847 idx
= IOdemodFSK(BitStream
,BitLen
);
851 PrintAndLog("DEBUG: Just Noise Detected");
852 } else if (idx
== -2) {
853 PrintAndLog("DEBUG: not enough samples");
854 } else if (idx
== -3) {
855 PrintAndLog("DEBUG: error during fskdemod");
856 } else if (idx
== -4) {
857 PrintAndLog("DEBUG: Preamble not found");
858 } else if (idx
== -5) {
859 PrintAndLog("DEBUG: Separator bits not found");
861 PrintAndLog("DEBUG: Error demoding fsk %d", idx
);
868 PrintAndLog("DEBUG: IO Prox Data not found - FSK Bits: %d",BitLen
);
869 if (BitLen
> 92) printBitStream(BitStream
,92);
874 //0 10 20 30 40 50 60
876 //01234567 8 90123456 7 89012345 6 78901234 5 67890123 4 56789012 3 45678901 23
877 //-----------------------------------------------------------------------------
878 //00000000 0 11110000 1 facility 1 version* 1 code*one 1 code*two 1 ???????? 11
880 //XSF(version)facility:codeone+codetwo (raw)
883 if (g_debugMode
==1) PrintAndLog("not enough bits found - bitlen: %d",BitLen
);
886 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream
[idx
], BitStream
[idx
+1], BitStream
[idx
+2], BitStream
[idx
+3], BitStream
[idx
+4], BitStream
[idx
+5], BitStream
[idx
+6], BitStream
[idx
+7], BitStream
[idx
+8]);
887 PrintAndLog("%d%d%d%d%d%d%d%d %d",BitStream
[idx
+9], BitStream
[idx
+10], BitStream
[idx
+11],BitStream
[idx
+12],BitStream
[idx
+13],BitStream
[idx
+14],BitStream
[idx
+15],BitStream
[idx
+16],BitStream
[idx
+17]);
888 PrintAndLog("%d%d%d%d%d%d%d%d %d facility",BitStream
[idx
+18], BitStream
[idx
+19], BitStream
[idx
+20],BitStream
[idx
+21],BitStream
[idx
+22],BitStream
[idx
+23],BitStream
[idx
+24],BitStream
[idx
+25],BitStream
[idx
+26]);
889 PrintAndLog("%d%d%d%d%d%d%d%d %d version",BitStream
[idx
+27], BitStream
[idx
+28], BitStream
[idx
+29],BitStream
[idx
+30],BitStream
[idx
+31],BitStream
[idx
+32],BitStream
[idx
+33],BitStream
[idx
+34],BitStream
[idx
+35]);
890 PrintAndLog("%d%d%d%d%d%d%d%d %d code1",BitStream
[idx
+36], BitStream
[idx
+37], BitStream
[idx
+38],BitStream
[idx
+39],BitStream
[idx
+40],BitStream
[idx
+41],BitStream
[idx
+42],BitStream
[idx
+43],BitStream
[idx
+44]);
891 PrintAndLog("%d%d%d%d%d%d%d%d %d code2",BitStream
[idx
+45], BitStream
[idx
+46], BitStream
[idx
+47],BitStream
[idx
+48],BitStream
[idx
+49],BitStream
[idx
+50],BitStream
[idx
+51],BitStream
[idx
+52],BitStream
[idx
+53]);
892 PrintAndLog("%d%d%d%d%d%d%d%d %d%d checksum",BitStream
[idx
+54],BitStream
[idx
+55],BitStream
[idx
+56],BitStream
[idx
+57],BitStream
[idx
+58],BitStream
[idx
+59],BitStream
[idx
+60],BitStream
[idx
+61],BitStream
[idx
+62],BitStream
[idx
+63]);
894 uint32_t code
= bytebits_to_byte(BitStream
+idx
,32);
895 uint32_t code2
= bytebits_to_byte(BitStream
+idx
+32,32);
896 uint8_t version
= bytebits_to_byte(BitStream
+idx
+27,8); //14,4
897 uint8_t facilitycode
= bytebits_to_byte(BitStream
+idx
+18,8) ;
898 uint16_t number
= (bytebits_to_byte(BitStream
+idx
+36,8)<<8)|(bytebits_to_byte(BitStream
+idx
+45,8)); //36,9
899 PrintAndLog("IO Prox XSF(%02d)%02x:%05d (%08x%08x)",version
,facilitycode
,number
,code
,code2
);
900 setDemodBuf(BitStream
,64,idx
);
902 PrintAndLog("DEBUG: idx: %d, Len: %d, Printing demod buffer:",idx
,64);
910 //AWID Prox demod - FSK RF/50 with preamble of 00000001 (always a 96 bit data stream)
911 //print full AWID Prox ID and some bit format details if found
912 int CmdFSKdemodAWID(const char *Cmd
)
916 //sscanf(Cmd, "%i", &verbose);
918 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
919 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
920 size_t size
= getFromGraphBuf(BitStream
);
922 //get binary from fsk wave
923 int idx
= AWIDdemodFSK(BitStream
, &size
);
927 PrintAndLog("DEBUG: Error - not enough samples");
929 PrintAndLog("DEBUG: Error - only noise found");
931 PrintAndLog("DEBUG: Error - problem during FSK demod");
932 // else if (idx == -3)
933 // PrintAndLog("Error: thought we had a tag but the parity failed");
935 PrintAndLog("DEBUG: Error - AWID preamble not found");
937 PrintAndLog("DEBUG: Error - Size not correct: %d", size
);
939 PrintAndLog("DEBUG: Error %d",idx
);
945 // 0 10 20 30 40 50 60
947 // 01234567 890 1 234 5 678 9 012 3 456 7 890 1 234 5 678 9 012 3 456 7 890 1 234 5 678 9 012 3 - to 96
948 // -----------------------------------------------------------------------------
949 // 00000001 000 1 110 1 101 1 011 1 101 1 010 0 000 1 000 1 010 0 001 0 110 1 100 0 000 1 000 1
950 // premable bbb o bbb o bbw o fff o fff o ffc o ccc o ccc o ccc o ccc o ccc o wxx o xxx o xxx o - to 96
951 // |---26 bit---| |-----117----||-------------142-------------|
952 // b = format bit len, o = odd parity of last 3 bits
953 // f = facility code, c = card number
954 // w = wiegand parity
955 // (26 bit format shown)
957 //get raw ID before removing parities
958 uint32_t rawLo
= bytebits_to_byte(BitStream
+idx
+64,32);
959 uint32_t rawHi
= bytebits_to_byte(BitStream
+idx
+32,32);
960 uint32_t rawHi2
= bytebits_to_byte(BitStream
+idx
,32);
961 setDemodBuf(BitStream
,96,idx
);
963 size
= removeParity(BitStream
, idx
+8, 4, 1, 88);
965 if (g_debugMode
==1) PrintAndLog("DEBUG: Error - at parity check-tag size does not match AWID format");
968 // ok valid card found!
971 // 0 10 20 30 40 50 60
973 // 01234567 8 90123456 7890123456789012 3 456789012345678901234567890123456
974 // -----------------------------------------------------------------------------
975 // 00011010 1 01110101 0000000010001110 1 000000000000000000000000000000000
976 // bbbbbbbb w ffffffff cccccccccccccccc w xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
977 // |26 bit| |-117--| |-----142------|
978 // b = format bit len, o = odd parity of last 3 bits
979 // f = facility code, c = card number
980 // w = wiegand parity
981 // (26 bit format shown)
984 uint32_t cardnum
= 0;
987 uint8_t fmtLen
= bytebits_to_byte(BitStream
,8);
989 fc
= bytebits_to_byte(BitStream
+9, 8);
990 cardnum
= bytebits_to_byte(BitStream
+17, 16);
991 code1
= bytebits_to_byte(BitStream
+8,fmtLen
);
992 PrintAndLog("AWID Found - BitLength: %d, FC: %d, Card: %d - Wiegand: %x, Raw: %x%08x%08x", fmtLen
, fc
, cardnum
, code1
, rawHi2
, rawHi
, rawLo
);
994 cardnum
= bytebits_to_byte(BitStream
+8+(fmtLen
-17), 16);
996 code1
= bytebits_to_byte(BitStream
+8,fmtLen
-32);
997 code2
= bytebits_to_byte(BitStream
+8+(fmtLen
-32),32);
998 PrintAndLog("AWID Found - BitLength: %d -unknown BitLength- (%d) - Wiegand: %x%08x, Raw: %x%08x%08x", fmtLen
, cardnum
, code1
, code2
, rawHi2
, rawHi
, rawLo
);
1000 code1
= bytebits_to_byte(BitStream
+8,fmtLen
);
1001 PrintAndLog("AWID Found - BitLength: %d -unknown BitLength- (%d) - Wiegand: %x, Raw: %x%08x%08x", fmtLen
, cardnum
, code1
, rawHi2
, rawHi
, rawLo
);
1005 PrintAndLog("DEBUG: idx: %d, Len: %d Printing Demod Buffer:", idx
, 96);
1008 //todo - convert hi2, hi, lo to demodbuffer for future sim/clone commands
1013 //Pyramid Prox demod - FSK RF/50 with preamble of 0000000000000001 (always a 128 bit data stream)
1014 //print full Farpointe Data/Pyramid Prox ID and some bit format details if found
1015 int CmdFSKdemodPyramid(const char *Cmd
)
1017 //raw fsk demod no manchester decoding no start bit finding just get binary from wave
1018 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
1019 size_t size
= getFromGraphBuf(BitStream
);
1021 //get binary from fsk wave
1022 int idx
= PyramiddemodFSK(BitStream
, &size
);
1024 if (g_debugMode
==1){
1026 PrintAndLog("DEBUG: Error - not enough samples");
1028 PrintAndLog("DEBUG: Error - only noise found");
1030 PrintAndLog("DEBUG: Error - problem during FSK demod");
1032 PrintAndLog("DEBUG: Error - Size not correct: %d", size
);
1034 PrintAndLog("DEBUG: Error - Pyramid preamble not found");
1036 PrintAndLog("DEBUG: Error - idx: %d",idx
);
1041 // 0 10 20 30 40 50 60
1043 // 0123456 7 8901234 5 6789012 3 4567890 1 2345678 9 0123456 7 8901234 5 6789012 3
1044 // -----------------------------------------------------------------------------
1045 // 0000000 0 0000000 1 0000000 1 0000000 1 0000000 1 0000000 1 0000000 1 0000000 1
1046 // premable xxxxxxx o xxxxxxx o xxxxxxx o xxxxxxx o xxxxxxx o xxxxxxx o xxxxxxx o
1048 // 64 70 80 90 100 110 120
1050 // 4567890 1 2345678 9 0123456 7 8901234 5 6789012 3 4567890 1 2345678 9 0123456 7
1051 // -----------------------------------------------------------------------------
1052 // 0000000 1 0000000 1 0000000 1 0110111 0 0011000 1 0000001 0 0001100 1 1001010 0
1053 // xxxxxxx o xxxxxxx o xxxxxxx o xswffff o ffffccc o ccccccc o ccccccw o ppppppp o
1054 // |---115---||---------71---------|
1055 // s = format start bit, o = odd parity of last 7 bits
1056 // f = facility code, c = card number
1057 // w = wiegand parity, x = extra space for other formats
1058 // p = unknown checksum
1059 // (26 bit format shown)
1061 //get raw ID before removing parities
1062 uint32_t rawLo
= bytebits_to_byte(BitStream
+idx
+96,32);
1063 uint32_t rawHi
= bytebits_to_byte(BitStream
+idx
+64,32);
1064 uint32_t rawHi2
= bytebits_to_byte(BitStream
+idx
+32,32);
1065 uint32_t rawHi3
= bytebits_to_byte(BitStream
+idx
,32);
1066 setDemodBuf(BitStream
,128,idx
);
1068 size
= removeParity(BitStream
, idx
+8, 8, 1, 120);
1070 if (g_debugMode
==1) PrintAndLog("DEBUG: Error at parity check-tag size does not match Pyramid format, SIZE: %d, IDX: %d, hi3: %x",size
, idx
, rawHi3
);
1074 // ok valid card found!
1077 // 0 10 20 30 40 50 60 70
1079 // 01234567890123456789012345678901234567890123456789012345678901234567890
1080 // -----------------------------------------------------------------------
1081 // 00000000000000000000000000000000000000000000000000000000000000000000000
1082 // xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1086 // 1 2 34567890 1234567890123456 7 8901234
1087 // ---------------------------------------
1088 // 1 1 01110011 0000000001000110 0 1001010
1089 // s w ffffffff cccccccccccccccc w ppppppp
1090 // |--115-| |------71------|
1091 // s = format start bit, o = odd parity of last 7 bits
1092 // f = facility code, c = card number
1093 // w = wiegand parity, x = extra space for other formats
1094 // p = unknown checksum
1095 // (26 bit format shown)
1097 //find start bit to get fmtLen
1099 for (j
=0; j
<size
; j
++){
1100 if(BitStream
[j
]) break;
1102 uint8_t fmtLen
= size
-j
-8;
1104 uint32_t cardnum
= 0;
1106 //uint32_t code2 = 0;
1108 fc
= bytebits_to_byte(BitStream
+73, 8);
1109 cardnum
= bytebits_to_byte(BitStream
+81, 16);
1110 code1
= bytebits_to_byte(BitStream
+72,fmtLen
);
1111 PrintAndLog("Pyramid ID Found - BitLength: %d, FC: %d, Card: %d - Wiegand: %x, Raw: %x%08x%08x%08x", fmtLen
, fc
, cardnum
, code1
, rawHi3
, rawHi2
, rawHi
, rawLo
);
1112 } else if (fmtLen
==45){
1113 fmtLen
=42; //end = 10 bits not 7 like 26 bit fmt
1114 fc
= bytebits_to_byte(BitStream
+53, 10);
1115 cardnum
= bytebits_to_byte(BitStream
+63, 32);
1116 PrintAndLog("Pyramid ID Found - BitLength: %d, FC: %d, Card: %d - Raw: %x%08x%08x%08x", fmtLen
, fc
, cardnum
, rawHi3
, rawHi2
, rawHi
, rawLo
);
1118 cardnum
= bytebits_to_byte(BitStream
+81, 16);
1120 //code1 = bytebits_to_byte(BitStream+(size-fmtLen),fmtLen-32);
1121 //code2 = bytebits_to_byte(BitStream+(size-32),32);
1122 PrintAndLog("Pyramid ID Found - BitLength: %d -unknown BitLength- (%d), Raw: %x%08x%08x%08x", fmtLen
, cardnum
, rawHi3
, rawHi2
, rawHi
, rawLo
);
1124 //code1 = bytebits_to_byte(BitStream+(size-fmtLen),fmtLen);
1125 PrintAndLog("Pyramid ID Found - BitLength: %d -unknown BitLength- (%d), Raw: %x%08x%08x%08x", fmtLen
, cardnum
, rawHi3
, rawHi2
, rawHi
, rawLo
);
1129 PrintAndLog("DEBUG: idx: %d, Len: %d, Printing Demod Buffer:", idx
, 128);
1135 int CmdFSKdemod(const char *Cmd
) //old CmdFSKdemod needs updating
1137 static const int LowTone
[] = {
1138 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
1139 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
1140 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
1141 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
1142 1, 1, 1, 1, 1, -1, -1, -1, -1, -1
1144 static const int HighTone
[] = {
1145 1, 1, 1, 1, 1, -1, -1, -1, -1,
1146 1, 1, 1, 1, -1, -1, -1, -1,
1147 1, 1, 1, 1, -1, -1, -1, -1,
1148 1, 1, 1, 1, -1, -1, -1, -1,
1149 1, 1, 1, 1, -1, -1, -1, -1,
1150 1, 1, 1, 1, -1, -1, -1, -1, -1,
1153 int lowLen
= sizeof (LowTone
) / sizeof (int);
1154 int highLen
= sizeof (HighTone
) / sizeof (int);
1155 int convLen
= (highLen
> lowLen
) ? highLen
: lowLen
;
1156 uint32_t hi
= 0, lo
= 0;
1159 int minMark
= 0, maxMark
= 0;
1161 for (i
= 0; i
< GraphTraceLen
- convLen
; ++i
) {
1162 int lowSum
= 0, highSum
= 0;
1164 for (j
= 0; j
< lowLen
; ++j
) {
1165 lowSum
+= LowTone
[j
]*GraphBuffer
[i
+j
];
1167 for (j
= 0; j
< highLen
; ++j
) {
1168 highSum
+= HighTone
[j
] * GraphBuffer
[i
+ j
];
1170 lowSum
= abs(100 * lowSum
/ lowLen
);
1171 highSum
= abs(100 * highSum
/ highLen
);
1172 GraphBuffer
[i
] = (highSum
<< 16) | lowSum
;
1175 for(i
= 0; i
< GraphTraceLen
- convLen
- 16; ++i
) {
1176 int lowTot
= 0, highTot
= 0;
1177 // 10 and 8 are f_s divided by f_l and f_h, rounded
1178 for (j
= 0; j
< 10; ++j
) {
1179 lowTot
+= (GraphBuffer
[i
+j
] & 0xffff);
1181 for (j
= 0; j
< 8; j
++) {
1182 highTot
+= (GraphBuffer
[i
+ j
] >> 16);
1184 GraphBuffer
[i
] = lowTot
- highTot
;
1185 if (GraphBuffer
[i
] > maxMark
) maxMark
= GraphBuffer
[i
];
1186 if (GraphBuffer
[i
] < minMark
) minMark
= GraphBuffer
[i
];
1189 GraphTraceLen
-= (convLen
+ 16);
1190 RepaintGraphWindow();
1192 // Find bit-sync (3 lo followed by 3 high) (HID ONLY)
1193 int max
= 0, maxPos
= 0;
1194 for (i
= 0; i
< 6000; ++i
) {
1196 for (j
= 0; j
< 3 * lowLen
; ++j
) {
1197 dec
-= GraphBuffer
[i
+ j
];
1199 for (; j
< 3 * (lowLen
+ highLen
); ++j
) {
1200 dec
+= GraphBuffer
[i
+ j
];
1208 // place start of bit sync marker in graph
1209 GraphBuffer
[maxPos
] = maxMark
;
1210 GraphBuffer
[maxPos
+ 1] = minMark
;
1214 // place end of bit sync marker in graph
1215 GraphBuffer
[maxPos
] = maxMark
;
1216 GraphBuffer
[maxPos
+1] = minMark
;
1218 PrintAndLog("actual data bits start at sample %d", maxPos
);
1219 PrintAndLog("length %d/%d", highLen
, lowLen
);
1221 uint8_t bits
[46] = {0x00};
1223 // find bit pairs and manchester decode them
1224 for (i
= 0; i
< arraylen(bits
) - 1; ++i
) {
1226 for (j
= 0; j
< lowLen
; ++j
) {
1227 dec
-= GraphBuffer
[maxPos
+ j
];
1229 for (; j
< lowLen
+ highLen
; ++j
) {
1230 dec
+= GraphBuffer
[maxPos
+ j
];
1233 // place inter bit marker in graph
1234 GraphBuffer
[maxPos
] = maxMark
;
1235 GraphBuffer
[maxPos
+ 1] = minMark
;
1237 // hi and lo form a 64 bit pair
1238 hi
= (hi
<< 1) | (lo
>> 31);
1240 // store decoded bit as binary (in hi/lo) and text (in bits[])
1248 PrintAndLog("bits: '%s'", bits
);
1249 PrintAndLog("hex: %08x %08x", hi
, lo
);
1254 //attempt to detect the field clock and bit clock for FSK
1255 int CmdFSKfcDetect(const char *Cmd
)
1257 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
1258 size_t size
= getFromGraphBuf(BitStream
);
1260 uint16_t ans
= countFC(BitStream
, size
);
1262 if (g_debugMode
) PrintAndLog("DEBUG: No data found");
1266 fc1
= (ans
>> 8) & 0xFF;
1269 uint8_t rf1
= detectFSKClk(BitStream
, size
, fc1
, fc2
);
1271 if (g_debugMode
) PrintAndLog("DEBUG: Clock detect error");
1274 PrintAndLog("Detected Field Clocks: FC/%d, FC/%d - Bit Clock: RF/%d", fc1
, fc2
, rf1
);
1279 //attempt to detect the bit clock for PSK or NRZ modulations
1280 int CmdDetectNRZpskClockRate(const char *Cmd
)
1282 GetNRZpskClock("",0,0);
1287 //attempt to psk1 or nrz demod graph buffer
1288 //NOTE CURRENTLY RELIES ON PEAKS :(
1289 int PSKnrzDemod(const char *Cmd
, uint8_t verbose
)
1293 sscanf(Cmd
, "%i %i", &clk
, &invert
);
1294 if (invert
!= 0 && invert
!= 1) {
1295 PrintAndLog("Invalid argument: %s", Cmd
);
1298 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
1299 size_t BitLen
= getFromGraphBuf(BitStream
);
1301 errCnt
= pskNRZrawDemod(BitStream
, &BitLen
,&clk
,&invert
);
1302 if (errCnt
<0|| BitLen
<16){ //throw away static - allow 1 and -1 (in case of threshold command first)
1303 if (g_debugMode
==1) PrintAndLog("no data found, clk: %d, invert: %d, numbits: %d, errCnt: %d",clk
,invert
,BitLen
,errCnt
);
1306 if (verbose
) PrintAndLog("Tried PSK/NRZ Demod using Clock: %d - invert: %d - Bits Found: %d",clk
,invert
,BitLen
);
1308 //prime demod buffer for output
1309 setDemodBuf(BitStream
,BitLen
,0);
1312 // Indala 26 bit decode
1314 // optional arguments - same as CmdpskNRZrawDemod (clock & invert)
1315 int CmdIndalaDecode(const char *Cmd
)
1319 ans
= PSKnrzDemod(Cmd
, 0);
1320 } else{ //default to RF/32
1321 ans
= PSKnrzDemod("32", 0);
1326 PrintAndLog("Error1: %d",ans
);
1330 ans
= indala26decode(DemodBuffer
,(size_t *) &DemodBufferLen
, &invert
);
1333 PrintAndLog("Error2: %d",ans
);
1336 char showbits
[251]={0x00};
1339 PrintAndLog("Had to invert bits");
1341 //convert UID to HEX
1342 uint32_t uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
1346 PrintAndLog("BitLen: %d",DemodBufferLen
);
1347 if (DemodBufferLen
==64){
1348 for( idx
=0; idx
<64; idx
++) {
1349 uid1
=(uid1
<<1)|(uid2
>>31);
1350 if (DemodBuffer
[idx
] == 0) {
1359 PrintAndLog("Indala UID=%s (%x%08x)", showbits
, uid1
, uid2
);
1367 for( idx
=0; idx
<DemodBufferLen
; idx
++) {
1368 uid1
=(uid1
<<1)|(uid2
>>31);
1369 uid2
=(uid2
<<1)|(uid3
>>31);
1370 uid3
=(uid3
<<1)|(uid4
>>31);
1371 uid4
=(uid4
<<1)|(uid5
>>31);
1372 uid5
=(uid5
<<1)|(uid6
>>31);
1373 uid6
=(uid6
<<1)|(uid7
>>31);
1374 if (DemodBuffer
[idx
] == 0) {
1384 PrintAndLog("Indala UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits
, uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
1387 PrintAndLog("DEBUG: printing demodbuffer:");
1394 //attempt to clean psk wave noise after a peak
1395 //NOTE RELIES ON PEAKS :(
1396 int CmdPskClean(const char *Cmd
)
1398 uint8_t bitStream
[MAX_GRAPH_TRACE_LEN
]={0};
1399 size_t bitLen
= getFromGraphBuf(bitStream
);
1400 pskCleanWave(bitStream
, bitLen
);
1401 setGraphBuf(bitStream
, bitLen
);
1406 // takes 2 arguments - clock and invert both as integers
1407 // attempts to demodulate psk only
1408 // prints binary found and saves in demodbuffer for further commands
1409 int CmdpskNRZrawDemod(const char *Cmd
)
1413 errCnt
= PSKnrzDemod(Cmd
, 1);
1416 if (g_debugMode
) PrintAndLog("Error demoding: %d",errCnt
);
1421 PrintAndLog("# Errors during Demoding (shown as 77 in bit stream): %d",errCnt
);
1422 PrintAndLog("PSK or NRZ demoded bitstream:");
1423 // Now output the bitstream to the scrollback by line of 16 bits
1427 PrintAndLog("PSK or NRZ demoded bitstream:");
1428 // Now output the bitstream to the scrollback by line of 16 bits
1436 // takes same args as cmdpsknrzrawdemod
1437 int CmdPSK2rawDemod(const char *Cmd
)
1440 errCnt
=PSKnrzDemod(Cmd
, 1);
1442 if (g_debugMode
) PrintAndLog("Error demoding: %d",errCnt
);
1445 psk1TOpsk2(DemodBuffer
, DemodBufferLen
);
1448 PrintAndLog("# Errors during Demoding (shown as 77 in bit stream): %d",errCnt
);
1449 PrintAndLog("PSK2 demoded bitstream:");
1450 // Now output the bitstream to the scrollback by line of 16 bits
1454 PrintAndLog("PSK2 demoded bitstream:");
1455 // Now output the bitstream to the scrollback by line of 16 bits
1461 int CmdGrid(const char *Cmd
)
1463 sscanf(Cmd
, "%i %i", &PlotGridX
, &PlotGridY
);
1464 PlotGridXdefault
= PlotGridX
;
1465 PlotGridYdefault
= PlotGridY
;
1466 RepaintGraphWindow();
1470 int CmdHexsamples(const char *Cmd
)
1475 char string_buf
[25];
1476 char* string_ptr
= string_buf
;
1477 uint8_t got
[BIGBUF_SIZE
];
1479 sscanf(Cmd
, "%i %i", &requested
, &offset
);
1481 /* if no args send something */
1482 if (requested
== 0) {
1485 if (offset
+ requested
> sizeof(got
)) {
1486 PrintAndLog("Tried to read past end of buffer, <bytes> + <offset> > %d", BIGBUF_SIZE
);
1490 GetFromBigBuf(got
,requested
,offset
);
1491 WaitForResponse(CMD_ACK
,NULL
);
1494 for (j
= 0; j
< requested
; j
++) {
1496 string_ptr
+= sprintf(string_ptr
, "%02x ", got
[j
]);
1498 *(string_ptr
- 1) = '\0'; // remove the trailing space
1499 PrintAndLog("%s", string_buf
);
1500 string_buf
[0] = '\0';
1501 string_ptr
= string_buf
;
1504 if (j
== requested
- 1 && string_buf
[0] != '\0') { // print any remaining bytes
1505 *(string_ptr
- 1) = '\0';
1506 PrintAndLog("%s", string_buf
);
1507 string_buf
[0] = '\0';
1513 int CmdHide(const char *Cmd
)
1519 int CmdHpf(const char *Cmd
)
1524 for (i
= 10; i
< GraphTraceLen
; ++i
)
1525 accum
+= GraphBuffer
[i
];
1526 accum
/= (GraphTraceLen
- 10);
1527 for (i
= 0; i
< GraphTraceLen
; ++i
)
1528 GraphBuffer
[i
] -= accum
;
1530 RepaintGraphWindow();
1539 bool _headBit( BitstreamOut
*stream
)
1541 int bytepos
= stream
->position
>> 3; // divide by 8
1542 int bitpos
= (stream
->position
++) & 7; // mask out 00000111
1543 return (*(stream
->buffer
+ bytepos
) >> (7-bitpos
)) & 1;
1546 uint8_t getByte(uint8_t bits_per_sample
, BitstreamOut
* b
)
1550 for(i
=0 ; i
< bits_per_sample
; i
++)
1552 val
|= (_headBit(b
) << (7-i
));
1557 int CmdSamples(const char *Cmd
)
1559 //If we get all but the last byte in bigbuf,
1560 // we don't have to worry about remaining trash
1561 // in the last byte in case the bits-per-sample
1562 // does not line up on byte boundaries
1563 uint8_t got
[BIGBUF_SIZE
-1] = { 0 };
1565 int n
= strtol(Cmd
, NULL
, 0);
1569 if (n
> sizeof(got
))
1572 PrintAndLog("Reading %d bytes from device memory\n", n
);
1573 GetFromBigBuf(got
,n
,0);
1574 PrintAndLog("Data fetched");
1575 UsbCommand response
;
1576 WaitForResponse(CMD_ACK
, &response
);
1577 uint8_t bits_per_sample
= 8;
1579 //Old devices without this feature would send 0 at arg[0]
1580 if(response
.arg
[0] > 0)
1582 sample_config
*sc
= (sample_config
*) response
.d
.asBytes
;
1583 PrintAndLog("Samples @ %d bits/smpl, decimation 1:%d ", sc
->bits_per_sample
1585 bits_per_sample
= sc
->bits_per_sample
;
1587 if(bits_per_sample
< 8)
1589 PrintAndLog("Unpacking...");
1590 BitstreamOut bout
= { got
, bits_per_sample
* n
, 0};
1592 for (j
= 0; j
* bits_per_sample
< n
* 8 && j
< sizeof(GraphBuffer
); j
++) {
1593 uint8_t sample
= getByte(bits_per_sample
, &bout
);
1594 GraphBuffer
[j
] = ((int) sample
)- 128;
1597 PrintAndLog("Unpacked %d samples" , j
);
1600 for (int j
= 0; j
< n
; j
++) {
1601 GraphBuffer
[j
] = ((int)got
[j
]) - 128;
1606 RepaintGraphWindow();
1610 int CmdTuneSamples(const char *Cmd
)
1613 printf("\nMeasuring antenna characteristics, please wait...");
1615 UsbCommand c
= {CMD_MEASURE_ANTENNA_TUNING
};
1619 while(!WaitForResponseTimeout(CMD_MEASURED_ANTENNA_TUNING
,&resp
,1000)) {
1623 PrintAndLog("\nNo response from Proxmark. Aborting...");
1629 int vLf125
, vLf134
, vHf
;
1630 vLf125
= resp
.arg
[0] & 0xffff;
1631 vLf134
= resp
.arg
[0] >> 16;
1632 vHf
= resp
.arg
[1] & 0xffff;;
1633 peakf
= resp
.arg
[2] & 0xffff;
1634 peakv
= resp
.arg
[2] >> 16;
1636 PrintAndLog("# LF antenna: %5.2f V @ 125.00 kHz", vLf125
/1000.0);
1637 PrintAndLog("# LF antenna: %5.2f V @ 134.00 kHz", vLf134
/1000.0);
1638 PrintAndLog("# LF optimal: %5.2f V @%9.2f kHz", peakv
/1000.0, 12000.0/(peakf
+1));
1639 PrintAndLog("# HF antenna: %5.2f V @ 13.56 MHz", vHf
/1000.0);
1641 PrintAndLog("# Your LF antenna is unusable.");
1642 else if (peakv
<10000)
1643 PrintAndLog("# Your LF antenna is marginal.");
1645 PrintAndLog("# Your HF antenna is unusable.");
1647 PrintAndLog("# Your HF antenna is marginal.");
1649 for (int i
= 0; i
< 256; i
++) {
1650 GraphBuffer
[i
] = resp
.d
.asBytes
[i
] - 128;
1653 PrintAndLog("Done! Divisor 89 is 134khz, 95 is 125khz.\n");
1655 GraphTraceLen
= 256;
1662 int CmdLoad(const char *Cmd
)
1664 char filename
[FILE_PATH_SIZE
] = {0x00};
1668 if (len
> FILE_PATH_SIZE
) len
= FILE_PATH_SIZE
;
1669 memcpy(filename
, Cmd
, len
);
1671 FILE *f
= fopen(filename
, "r");
1673 PrintAndLog("couldn't open '%s'", filename
);
1679 while (fgets(line
, sizeof (line
), f
)) {
1680 GraphBuffer
[GraphTraceLen
] = atoi(line
);
1684 PrintAndLog("loaded %d samples", GraphTraceLen
);
1685 RepaintGraphWindow();
1689 int CmdLtrim(const char *Cmd
)
1693 for (int i
= ds
; i
< GraphTraceLen
; ++i
)
1694 GraphBuffer
[i
-ds
] = GraphBuffer
[i
];
1695 GraphTraceLen
-= ds
;
1697 RepaintGraphWindow();
1701 // trim graph to input argument length
1702 int CmdRtrim(const char *Cmd
)
1708 RepaintGraphWindow();
1713 * Manchester demodulate a bitstream. The bitstream needs to be already in
1714 * the GraphBuffer as 0 and 1 values
1716 * Give the clock rate as argument in order to help the sync - the algorithm
1717 * resyncs at each pulse anyway.
1719 * Not optimized by any means, this is the 1st time I'm writing this type of
1720 * routine, feel free to improve...
1722 * 1st argument: clock rate (as number of samples per clock rate)
1723 * Typical values can be 64, 32, 128...
1725 int CmdManchesterDemod(const char *Cmd
)
1727 int i
, j
, invert
= 0;
1733 int hithigh
, hitlow
, first
;
1739 /* check if we're inverting output */
1742 PrintAndLog("Inverting output");
1747 while(*Cmd
== ' '); // in case a 2nd argument was given
1750 /* Holds the decoded bitstream: each clock period contains 2 bits */
1751 /* later simplified to 1 bit after manchester decoding. */
1752 /* Add 10 bits to allow for noisy / uncertain traces without aborting */
1753 /* int BitStream[GraphTraceLen*2/clock+10]; */
1755 /* But it does not work if compiling on WIndows: therefore we just allocate a */
1757 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
] = {0};
1759 /* Detect high and lows */
1760 for (i
= 0; i
< GraphTraceLen
; i
++)
1762 if (GraphBuffer
[i
] > high
)
1763 high
= GraphBuffer
[i
];
1764 else if (GraphBuffer
[i
] < low
)
1765 low
= GraphBuffer
[i
];
1769 clock
= GetClock(Cmd
, high
, 1);
1771 int tolerance
= clock
/4;
1773 /* Detect first transition */
1774 /* Lo-Hi (arbitrary) */
1775 /* skip to the first high */
1776 for (i
= 0; i
< GraphTraceLen
; i
++)
1777 if (GraphBuffer
[i
] == high
)
1779 /* now look for the first low */
1780 for (; i
< GraphTraceLen
; i
++)
1782 if (GraphBuffer
[i
] == low
)
1789 /* If we're not working with 1/0s, demod based off clock */
1792 bit
= 0; /* We assume the 1st bit is zero, it may not be
1793 * the case: this routine (I think) has an init problem.
1796 for (; i
< (int)(GraphTraceLen
/ clock
); i
++)
1802 /* Find out if we hit both high and low peaks */
1803 for (j
= 0; j
< clock
; j
++)
1805 if (GraphBuffer
[(i
* clock
) + j
] == high
)
1807 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
1810 /* it doesn't count if it's the first part of our read
1811 because it's really just trailing from the last sequence */
1812 if (first
&& (hithigh
|| hitlow
))
1813 hithigh
= hitlow
= 0;
1817 if (hithigh
&& hitlow
)
1821 /* If we didn't hit both high and low peaks, we had a bit transition */
1822 if (!hithigh
|| !hitlow
)
1825 BitStream
[bit2idx
++] = bit
^ invert
;
1829 /* standard 1/0 bitstream */
1833 /* Then detect duration between 2 successive transitions */
1834 for (bitidx
= 1; i
< GraphTraceLen
; i
++)
1836 if (GraphBuffer
[i
-1] != GraphBuffer
[i
])
1841 // Error check: if bitidx becomes too large, we do not
1842 // have a Manchester encoded bitstream or the clock is really
1844 if (bitidx
> (GraphTraceLen
*2/clock
+8) ) {
1845 PrintAndLog("Error: the clock you gave is probably wrong, aborting.");
1848 // Then switch depending on lc length:
1849 // Tolerance is 1/4 of clock rate (arbitrary)
1850 if (abs(lc
-clock
/2) < tolerance
) {
1851 // Short pulse : either "1" or "0"
1852 BitStream
[bitidx
++]=GraphBuffer
[i
-1];
1853 } else if (abs(lc
-clock
) < tolerance
) {
1854 // Long pulse: either "11" or "00"
1855 BitStream
[bitidx
++]=GraphBuffer
[i
-1];
1856 BitStream
[bitidx
++]=GraphBuffer
[i
-1];
1860 PrintAndLog("Warning: Manchester decode error for pulse width detection.");
1861 PrintAndLog("(too many of those messages mean either the stream is not Manchester encoded, or clock is wrong)");
1865 PrintAndLog("Error: too many detection errors, aborting.");
1872 // At this stage, we now have a bitstream of "01" ("1") or "10" ("0"), parse it into final decoded bitstream
1873 // Actually, we overwrite BitStream with the new decoded bitstream, we just need to be careful
1874 // to stop output at the final bitidx2 value, not bitidx
1875 for (i
= 0; i
< bitidx
; i
+= 2) {
1876 if ((BitStream
[i
] == 0) && (BitStream
[i
+1] == 1)) {
1877 BitStream
[bit2idx
++] = 1 ^ invert
;
1878 } else if ((BitStream
[i
] == 1) && (BitStream
[i
+1] == 0)) {
1879 BitStream
[bit2idx
++] = 0 ^ invert
;
1881 // We cannot end up in this state, this means we are unsynchronized,
1885 PrintAndLog("Unsynchronized, resync...");
1886 PrintAndLog("(too many of those messages mean the stream is not Manchester encoded)");
1890 PrintAndLog("Error: too many decode errors, aborting.");
1897 PrintAndLog("Manchester decoded bitstream");
1898 // Now output the bitstream to the scrollback by line of 16 bits
1899 for (i
= 0; i
< (bit2idx
-16); i
+=16) {
1900 PrintAndLog("%i %i %i %i %i %i %i %i %i %i %i %i %i %i %i %i",
1921 /* Modulate our data into manchester */
1922 int CmdManchesterMod(const char *Cmd
)
1926 int bit
, lastbit
, wave
;
1929 clock
= GetClock(Cmd
, 0, 1);
1933 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
1935 bit
= GraphBuffer
[i
* clock
] ^ 1;
1937 for (j
= 0; j
< (int)(clock
/2); j
++)
1938 GraphBuffer
[(i
* clock
) + j
] = bit
^ lastbit
^ wave
;
1939 for (j
= (int)(clock
/2); j
< clock
; j
++)
1940 GraphBuffer
[(i
* clock
) + j
] = bit
^ lastbit
^ wave
^ 1;
1942 /* Keep track of how we start our wave and if we changed or not this time */
1943 wave
^= bit
^ lastbit
;
1947 RepaintGraphWindow();
1951 int CmdNorm(const char *Cmd
)
1954 int max
= INT_MIN
, min
= INT_MAX
;
1956 for (i
= 10; i
< GraphTraceLen
; ++i
) {
1957 if (GraphBuffer
[i
] > max
)
1958 max
= GraphBuffer
[i
];
1959 if (GraphBuffer
[i
] < min
)
1960 min
= GraphBuffer
[i
];
1964 for (i
= 0; i
< GraphTraceLen
; ++i
) {
1965 GraphBuffer
[i
] = (GraphBuffer
[i
] - ((max
+ min
) / 2)) * 256 /
1967 //marshmelow: adjusted *1000 to *256 to make +/- 128 so demod commands still work
1970 RepaintGraphWindow();
1974 int CmdPlot(const char *Cmd
)
1980 int CmdSave(const char *Cmd
)
1982 char filename
[FILE_PATH_SIZE
] = {0x00};
1986 if (len
> FILE_PATH_SIZE
) len
= FILE_PATH_SIZE
;
1987 memcpy(filename
, Cmd
, len
);
1990 FILE *f
= fopen(filename
, "w");
1992 PrintAndLog("couldn't open '%s'", filename
);
1996 for (i
= 0; i
< GraphTraceLen
; i
++) {
1997 fprintf(f
, "%d\n", GraphBuffer
[i
]);
2000 PrintAndLog("saved to '%s'", Cmd
);
2004 int CmdScale(const char *Cmd
)
2006 CursorScaleFactor
= atoi(Cmd
);
2007 if (CursorScaleFactor
== 0) {
2008 PrintAndLog("bad, can't have zero scale");
2009 CursorScaleFactor
= 1;
2011 RepaintGraphWindow();
2015 int CmdThreshold(const char *Cmd
)
2017 int threshold
= atoi(Cmd
);
2019 for (int i
= 0; i
< GraphTraceLen
; ++i
) {
2020 if (GraphBuffer
[i
] >= threshold
)
2023 GraphBuffer
[i
] = -1;
2025 RepaintGraphWindow();
2029 int CmdDirectionalThreshold(const char *Cmd
)
2031 int8_t upThres
= param_get8(Cmd
, 0);
2032 int8_t downThres
= param_get8(Cmd
, 1);
2034 printf("Applying Up Threshold: %d, Down Threshold: %d\n", upThres
, downThres
);
2036 int lastValue
= GraphBuffer
[0];
2037 GraphBuffer
[0] = 0; // Will be changed at the end, but init 0 as we adjust to last samples value if no threshold kicks in.
2039 for (int i
= 1; i
< GraphTraceLen
; ++i
) {
2040 // Apply first threshold to samples heading up
2041 if (GraphBuffer
[i
] >= upThres
&& GraphBuffer
[i
] > lastValue
)
2043 lastValue
= GraphBuffer
[i
]; // Buffer last value as we overwrite it.
2046 // Apply second threshold to samples heading down
2047 else if (GraphBuffer
[i
] <= downThres
&& GraphBuffer
[i
] < lastValue
)
2049 lastValue
= GraphBuffer
[i
]; // Buffer last value as we overwrite it.
2050 GraphBuffer
[i
] = -1;
2054 lastValue
= GraphBuffer
[i
]; // Buffer last value as we overwrite it.
2055 GraphBuffer
[i
] = GraphBuffer
[i
-1];
2059 GraphBuffer
[0] = GraphBuffer
[1]; // Aline with first edited sample.
2060 RepaintGraphWindow();
2064 int CmdZerocrossings(const char *Cmd
)
2066 // Zero-crossings aren't meaningful unless the signal is zero-mean.
2073 for (int i
= 0; i
< GraphTraceLen
; ++i
) {
2074 if (GraphBuffer
[i
] * sign
>= 0) {
2075 // No change in sign, reproduce the previous sample count.
2077 GraphBuffer
[i
] = lastZc
;
2079 // Change in sign, reset the sample count.
2081 GraphBuffer
[i
] = lastZc
;
2089 RepaintGraphWindow();
2093 static command_t CommandTable
[] =
2095 {"help", CmdHelp
, 1, "This help"},
2096 {"amp", CmdAmp
, 1, "Amplify peaks"},
2097 {"askdemod", Cmdaskdemod
, 1, "<0 or 1> -- Attempt to demodulate simple ASK tags"},
2098 {"askmandemod", Cmdaskmandemod
, 1, "[clock] [invert<0|1>] -- Attempt to demodulate ASK/Manchester tags and output binary (args optional)"},
2099 {"askrawdemod", Cmdaskrawdemod
, 1, "[clock] [invert<0|1>] -- Attempt to demodulate ASK tags and output bin (args optional)"},
2100 {"autocorr", CmdAutoCorr
, 1, "<window length> -- Autocorrelation over window"},
2101 {"biphaserawdecode",CmdBiphaseDecodeRaw
,1,"[offset] [invert<0|1>] Biphase decode bin stream in demod buffer (offset = 0|1 bits to shift the decode start)"},
2102 {"bitsamples", CmdBitsamples
, 0, "Get raw samples as bitstring"},
2103 {"bitstream", CmdBitstream
, 1, "[clock rate] -- Convert waveform into a bitstream"},
2104 {"buffclear", CmdBuffClear
, 1, "Clear sample buffer and graph window"},
2105 {"dec", CmdDec
, 1, "Decimate samples"},
2106 {"detectclock", CmdDetectClockRate
, 1, "Detect ASK clock rate"},
2107 {"fskdemod", CmdFSKdemod
, 1, "Demodulate graph window as a HID FSK"},
2108 {"fskawiddemod", CmdFSKdemodAWID
, 1, "Demodulate graph window as an AWID FSK tag using raw"},
2109 {"fskfcdetect", CmdFSKfcDetect
, 1, "Try to detect the Field Clock of an FSK wave"},
2110 {"fskhiddemod", CmdFSKdemodHID
, 1, "Demodulate graph window as a HID FSK tag using raw"},
2111 {"fskiodemod", CmdFSKdemodIO
, 1, "Demodulate graph window as an IO Prox tag FSK using raw"},
2112 {"fskpyramiddemod",CmdFSKdemodPyramid
,1, "Demodulate graph window as a Pyramid FSK tag using raw"},
2113 {"fskparadoxdemod",CmdFSKdemodParadox
,1, "Demodulate graph window as a Paradox FSK tag using raw"},
2114 {"fskrawdemod", CmdFSKrawdemod
, 1, "[clock rate] [invert] [rchigh] [rclow] Demodulate graph window from FSK to bin (clock = 50)(invert = 1|0)(rchigh = 10)(rclow=8)"},
2115 {"grid", CmdGrid
, 1, "<x> <y> -- overlay grid on graph window, use zero value to turn off either"},
2116 {"hexsamples", CmdHexsamples
, 0, "<bytes> [<offset>] -- Dump big buffer as hex bytes"},
2117 {"hide", CmdHide
, 1, "Hide graph window"},
2118 {"hpf", CmdHpf
, 1, "Remove DC offset from trace"},
2119 {"load", CmdLoad
, 1, "<filename> -- Load trace (to graph window"},
2120 {"ltrim", CmdLtrim
, 1, "<samples> -- Trim samples from left of trace"},
2121 {"rtrim", CmdRtrim
, 1, "<location to end trace> -- Trim samples from right of trace"},
2122 {"mandemod", CmdManchesterDemod
, 1, "[i] [clock rate] -- Manchester demodulate binary stream (option 'i' to invert output)"},
2123 {"manrawdecode", Cmdmandecoderaw
, 1, "Manchester decode binary stream already in graph buffer"},
2124 {"manmod", CmdManchesterMod
, 1, "[clock rate] -- Manchester modulate a binary stream"},
2125 {"norm", CmdNorm
, 1, "Normalize max/min to +/-128"},
2126 {"plot", CmdPlot
, 1, "Show graph window (hit 'h' in window for keystroke help)"},
2127 {"pskclean", CmdPskClean
, 1, "Attempt to clean psk wave"},
2128 {"pskdetectclock",CmdDetectNRZpskClockRate
, 1, "Detect ASK, PSK, or NRZ clock rate"},
2129 {"pskindalademod",CmdIndalaDecode
, 1, "[clock] [invert<0|1>] -- Attempt to demodulate psk1 indala tags and output ID binary & hex (args optional)"},
2130 {"psk1nrzrawdemod",CmdpskNRZrawDemod
, 1, "[clock] [invert<0|1>] -- Attempt to demodulate psk1 or nrz tags and output binary (args optional)"},
2131 {"psk2rawdemod", CmdPSK2rawDemod
, 1, "[clock] [invert<0|1>] -- Attempt to demodulate psk2 tags and output binary (args optional)"},
2132 {"samples", CmdSamples
, 0, "[512 - 40000] -- Get raw samples for graph window"},
2133 {"save", CmdSave
, 1, "<filename> -- Save trace (from graph window)"},
2134 {"scale", CmdScale
, 1, "<int> -- Set cursor display scale"},
2135 {"setdebugmode", CmdSetDebugMode
, 1, "<0|1> -- Turn on or off Debugging Mode for demods"},
2136 {"shiftgraphzero",CmdGraphShiftZero
, 1, "<shift> -- Shift 0 for Graphed wave + or - shift value"},
2137 {"threshold", CmdThreshold
, 1, "<threshold> -- Maximize/minimize every value in the graph window depending on threshold"},
2138 {"dirthreshold", CmdDirectionalThreshold
, 1, "<thres up> <thres down> -- Max rising higher up-thres/ Min falling lower down-thres, keep rest as prev."},
2139 {"tune", CmdTuneSamples
, 0, "Get hw tune samples for graph window"},
2140 {"undec", CmdUndec
, 1, "Un-decimate samples by 2"},
2141 {"zerocrossings", CmdZerocrossings
, 1, "Count time between zero-crossings"},
2142 {NULL
, NULL
, 0, NULL
}
2145 int CmdData(const char *Cmd
)
2147 CmdsParse(CommandTable
, Cmd
);
2151 int CmdHelp(const char *Cmd
)
2153 CmdsHelp(CommandTable
);