]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlf.c
Revert "lf sim fixes/creations"
[proxmark3-svn] / client / cmdlf.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 //
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
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Low frequency commands
9 //-----------------------------------------------------------------------------
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <limits.h>
15 #include "proxmark3.h"
16 #include "data.h"
17 #include "graph.h"
18 #include "ui.h"
19 #include "cmdparser.h"
20 #include "cmdmain.h"
21 #include "cmddata.h"
22 #include "util.h"
23 #include "cmdlf.h"
24 #include "cmdlfhid.h"
25 #include "cmdlfti.h"
26 #include "cmdlfem4x.h"
27 #include "cmdlfhitag.h"
28 #include "cmdlft55xx.h"
29 #include "cmdlfpcf7931.h"
30 #include "cmdlfio.h"
31 #include "lfdemod.h"
32
33 static int CmdHelp(const char *Cmd);
34
35 /* send a command before reading */
36 int CmdLFCommandRead(const char *Cmd)
37 {
38 static char dummy[3];
39
40 dummy[0]= ' ';
41
42 UsbCommand c = {CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K};
43 sscanf(Cmd, "%"lli" %"lli" %"lli" %s %s", &c.arg[0], &c.arg[1], &c.arg[2],(char*)(&c.d.asBytes),(char*)(&dummy+1));
44 // in case they specified 'h'
45 strcpy((char *)&c.d.asBytes + strlen((char *)c.d.asBytes), dummy);
46 SendCommand(&c);
47 return 0;
48 }
49
50 int CmdFlexdemod(const char *Cmd)
51 {
52 int i;
53 for (i = 0; i < GraphTraceLen; ++i) {
54 if (GraphBuffer[i] < 0) {
55 GraphBuffer[i] = -1;
56 } else {
57 GraphBuffer[i] = 1;
58 }
59 }
60
61 #define LONG_WAIT 100
62 int start;
63 for (start = 0; start < GraphTraceLen - LONG_WAIT; start++) {
64 int first = GraphBuffer[start];
65 for (i = start; i < start + LONG_WAIT; i++) {
66 if (GraphBuffer[i] != first) {
67 break;
68 }
69 }
70 if (i == (start + LONG_WAIT)) {
71 break;
72 }
73 }
74 if (start == GraphTraceLen - LONG_WAIT) {
75 PrintAndLog("nothing to wait for");
76 return 0;
77 }
78
79 GraphBuffer[start] = 2;
80 GraphBuffer[start+1] = -2;
81 uint8_t bits[64] = {0x00};
82
83 int bit, sum;
84 i = start;
85 for (bit = 0; bit < 64; bit++) {
86 sum = 0;
87 for (int j = 0; j < 16; j++) {
88 sum += GraphBuffer[i++];
89 }
90
91 bits[bit] = (sum > 0) ? 1 : 0;
92
93 PrintAndLog("bit %d sum %d", bit, sum);
94 }
95
96 for (bit = 0; bit < 64; bit++) {
97 int j;
98 int sum = 0;
99 for (j = 0; j < 16; j++) {
100 sum += GraphBuffer[i++];
101 }
102 if (sum > 0 && bits[bit] != 1) {
103 PrintAndLog("oops1 at %d", bit);
104 }
105 if (sum < 0 && bits[bit] != 0) {
106 PrintAndLog("oops2 at %d", bit);
107 }
108 }
109
110 // HACK writing back to graphbuffer.
111 GraphTraceLen = 32*64;
112 i = 0;
113 int phase = 0;
114 for (bit = 0; bit < 64; bit++) {
115
116 phase = (bits[bit] == 0) ? 0 : 1;
117
118 int j;
119 for (j = 0; j < 32; j++) {
120 GraphBuffer[i++] = phase;
121 phase = !phase;
122 }
123 }
124
125 RepaintGraphWindow();
126 return 0;
127 }
128
129 int CmdIndalaDemod(const char *Cmd)
130 {
131 // Usage: recover 64bit UID by default, specify "224" as arg to recover a 224bit UID
132
133 int state = -1;
134 int count = 0;
135 int i, j;
136
137 // worst case with GraphTraceLen=64000 is < 4096
138 // under normal conditions it's < 2048
139
140 uint8_t rawbits[4096];
141 int rawbit = 0;
142 int worst = 0, worstPos = 0;
143 // PrintAndLog("Expecting a bit less than %d raw bits", GraphTraceLen / 32);
144 for (i = 0; i < GraphTraceLen-1; i += 2) {
145 count += 1;
146 if ((GraphBuffer[i] > GraphBuffer[i + 1]) && (state != 1)) {
147 if (state == 0) {
148 for (j = 0; j < count - 8; j += 16) {
149 rawbits[rawbit++] = 0;
150 }
151 if ((abs(count - j)) > worst) {
152 worst = abs(count - j);
153 worstPos = i;
154 }
155 }
156 state = 1;
157 count = 0;
158 } else if ((GraphBuffer[i] < GraphBuffer[i + 1]) && (state != 0)) {
159 if (state == 1) {
160 for (j = 0; j < count - 8; j += 16) {
161 rawbits[rawbit++] = 1;
162 }
163 if ((abs(count - j)) > worst) {
164 worst = abs(count - j);
165 worstPos = i;
166 }
167 }
168 state = 0;
169 count = 0;
170 }
171 }
172
173 if (rawbit>0){
174 PrintAndLog("Recovered %d raw bits, expected: %d", rawbit, GraphTraceLen/32);
175 PrintAndLog("worst metric (0=best..7=worst): %d at pos %d", worst, worstPos);
176 } else {
177 return 0;
178 }
179
180 // Finding the start of a UID
181 int uidlen, long_wait;
182 if (strcmp(Cmd, "224") == 0) {
183 uidlen = 224;
184 long_wait = 30;
185 } else {
186 uidlen = 64;
187 long_wait = 29;
188 }
189
190 int start;
191 int first = 0;
192 for (start = 0; start <= rawbit - uidlen; start++) {
193 first = rawbits[start];
194 for (i = start; i < start + long_wait; i++) {
195 if (rawbits[i] != first) {
196 break;
197 }
198 }
199 if (i == (start + long_wait)) {
200 break;
201 }
202 }
203
204 if (start == rawbit - uidlen + 1) {
205 PrintAndLog("nothing to wait for");
206 return 0;
207 }
208
209 // Inverting signal if needed
210 if (first == 1) {
211 for (i = start; i < rawbit; i++) {
212 rawbits[i] = !rawbits[i];
213 }
214 }
215
216 // Dumping UID
217 uint8_t bits[224] = {0x00};
218 char showbits[225] = {0x00};
219 int bit;
220 i = start;
221 int times = 0;
222
223 if (uidlen > rawbit) {
224 PrintAndLog("Warning: not enough raw bits to get a full UID");
225 for (bit = 0; bit < rawbit; bit++) {
226 bits[bit] = rawbits[i++];
227 // As we cannot know the parity, let's use "." and "/"
228 showbits[bit] = '.' + bits[bit];
229 }
230 showbits[bit+1]='\0';
231 PrintAndLog("Partial UID=%s", showbits);
232 return 0;
233 } else {
234 for (bit = 0; bit < uidlen; bit++) {
235 bits[bit] = rawbits[i++];
236 showbits[bit] = '0' + bits[bit];
237 }
238 times = 1;
239 }
240
241 //convert UID to HEX
242 uint32_t uid1, uid2, uid3, uid4, uid5, uid6, uid7;
243 int idx;
244 uid1 = uid2 = 0;
245
246 if (uidlen==64){
247 for( idx=0; idx<64; idx++) {
248 if (showbits[idx] == '0') {
249 uid1=(uid1<<1)|(uid2>>31);
250 uid2=(uid2<<1)|0;
251 } else {
252 uid1=(uid1<<1)|(uid2>>31);
253 uid2=(uid2<<1)|1;
254 }
255 }
256 PrintAndLog("UID=%s (%x%08x)", showbits, uid1, uid2);
257 }
258 else {
259 uid3 = uid4 = uid5 = uid6 = uid7 = 0;
260
261 for( idx=0; idx<224; idx++) {
262 uid1=(uid1<<1)|(uid2>>31);
263 uid2=(uid2<<1)|(uid3>>31);
264 uid3=(uid3<<1)|(uid4>>31);
265 uid4=(uid4<<1)|(uid5>>31);
266 uid5=(uid5<<1)|(uid6>>31);
267 uid6=(uid6<<1)|(uid7>>31);
268
269 if (showbits[idx] == '0')
270 uid7 = (uid7<<1) | 0;
271 else
272 uid7 = (uid7<<1) | 1;
273 }
274 PrintAndLog("UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits, uid1, uid2, uid3, uid4, uid5, uid6, uid7);
275 }
276
277 // Checking UID against next occurrences
278 int failed = 0;
279 for (; i + uidlen <= rawbit;) {
280 failed = 0;
281 for (bit = 0; bit < uidlen; bit++) {
282 if (bits[bit] != rawbits[i++]) {
283 failed = 1;
284 break;
285 }
286 }
287 if (failed == 1) {
288 break;
289 }
290 times += 1;
291 }
292
293 PrintAndLog("Occurrences: %d (expected %d)", times, (rawbit - start) / uidlen);
294
295 // Remodulating for tag cloning
296 // HACK: 2015-01-04 this will have an impact on our new way of seening lf commands (demod)
297 // since this changes graphbuffer data.
298 GraphTraceLen = 32*uidlen;
299 i = 0;
300 int phase = 0;
301 for (bit = 0; bit < uidlen; bit++) {
302 if (bits[bit] == 0) {
303 phase = 0;
304 } else {
305 phase = 1;
306 }
307 int j;
308 for (j = 0; j < 32; j++) {
309 GraphBuffer[i++] = phase;
310 phase = !phase;
311 }
312 }
313
314 RepaintGraphWindow();
315 return 1;
316 }
317
318 int CmdIndalaClone(const char *Cmd)
319 {
320 UsbCommand c;
321 unsigned int uid1, uid2, uid3, uid4, uid5, uid6, uid7;
322
323 uid1 = uid2 = uid3 = uid4 = uid5 = uid6 = uid7 = 0;
324 int n = 0, i = 0;
325
326 if (strchr(Cmd,'l') != 0) {
327 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
328 uid1 = (uid1 << 4) | (uid2 >> 28);
329 uid2 = (uid2 << 4) | (uid3 >> 28);
330 uid3 = (uid3 << 4) | (uid4 >> 28);
331 uid4 = (uid4 << 4) | (uid5 >> 28);
332 uid5 = (uid5 << 4) | (uid6 >> 28);
333 uid6 = (uid6 << 4) | (uid7 >> 28);
334 uid7 = (uid7 << 4) | (n & 0xf);
335 }
336 PrintAndLog("Cloning 224bit tag with UID %x%08x%08x%08x%08x%08x%08x", uid1, uid2, uid3, uid4, uid5, uid6, uid7);
337 c.cmd = CMD_INDALA_CLONE_TAG_L;
338 c.d.asDwords[0] = uid1;
339 c.d.asDwords[1] = uid2;
340 c.d.asDwords[2] = uid3;
341 c.d.asDwords[3] = uid4;
342 c.d.asDwords[4] = uid5;
343 c.d.asDwords[5] = uid6;
344 c.d.asDwords[6] = uid7;
345 } else {
346 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
347 uid1 = (uid1 << 4) | (uid2 >> 28);
348 uid2 = (uid2 << 4) | (n & 0xf);
349 }
350 PrintAndLog("Cloning 64bit tag with UID %x%08x", uid1, uid2);
351 c.cmd = CMD_INDALA_CLONE_TAG;
352 c.arg[0] = uid1;
353 c.arg[1] = uid2;
354 }
355
356 SendCommand(&c);
357 return 0;
358 }
359
360 int usage_lf_read()
361 {
362 PrintAndLog("Usage: lf read");
363 PrintAndLog("Options: ");
364 PrintAndLog(" h This help");
365 PrintAndLog("This function takes no arguments. ");
366 PrintAndLog("Use 'lf config' to set parameters.");
367 return 0;
368 }
369 int usage_lf_snoop()
370 {
371 PrintAndLog("Usage: lf snoop");
372 PrintAndLog("Options: ");
373 PrintAndLog(" h This help");
374 PrintAndLog("This function takes no arguments. ");
375 PrintAndLog("Use 'lf config' to set parameters.");
376 return 0;
377 }
378
379 int usage_lf_config()
380 {
381 PrintAndLog("Usage: lf config [H|<divisor>] [b <bps>] [d <decim>] [a 0|1]");
382 PrintAndLog("Options: ");
383 PrintAndLog(" h This help");
384 PrintAndLog(" L Low frequency (125 KHz)");
385 PrintAndLog(" H High frequency (134 KHz)");
386 PrintAndLog(" q <divisor> Manually set divisor. 88-> 134KHz, 95-> 125 Hz");
387 PrintAndLog(" b <bps> Sets resolution of bits per sample. Default (max): 8");
388 PrintAndLog(" d <decim> Sets decimation. A value of N saves only 1 in N samples. Default: 1");
389 PrintAndLog(" a [0|1] Averaging - if set, will average the stored sample value when decimating. Default: 1");
390 PrintAndLog(" t <threshold> Sets trigger threshold. 0 means no threshold");
391 PrintAndLog("Examples:");
392 PrintAndLog(" lf config b 8 L");
393 PrintAndLog(" Samples at 125KHz, 8bps.");
394 PrintAndLog(" lf config H b 4 d 3");
395 PrintAndLog(" Samples at 134KHz, averages three samples into one, stored with ");
396 PrintAndLog(" a resolution of 4 bits per sample.");
397 PrintAndLog(" lf read");
398 PrintAndLog(" Performs a read (active field)");
399 PrintAndLog(" lf snoop");
400 PrintAndLog(" Performs a snoop (no active field)");
401 return 0;
402 }
403
404 int CmdLFSetConfig(const char *Cmd)
405 {
406
407 uint8_t divisor = 0;//Frequency divisor
408 uint8_t bps = 0; // Bits per sample
409 uint8_t decimation = 0; //How many to keep
410 bool averaging = 1; // Defaults to true
411 bool errors = FALSE;
412 int trigger_threshold =-1;//Means no change
413 uint8_t unsigned_trigg = 0;
414
415 uint8_t cmdp =0;
416 while(param_getchar(Cmd, cmdp) != 0x00)
417 {
418 switch(param_getchar(Cmd, cmdp))
419 {
420 case 'h':
421 return usage_lf_config();
422 case 'H':
423 divisor = 88;
424 cmdp++;
425 break;
426 case 'L':
427 divisor = 95;
428 cmdp++;
429 break;
430 case 'q':
431 errors |= param_getdec(Cmd,cmdp+1,&divisor);
432 cmdp+=2;
433 break;
434 case 't':
435 errors |= param_getdec(Cmd,cmdp+1,&unsigned_trigg);
436 cmdp+=2;
437 if(!errors) trigger_threshold = unsigned_trigg;
438 break;
439 case 'b':
440 errors |= param_getdec(Cmd,cmdp+1,&bps);
441 cmdp+=2;
442 break;
443 case 'd':
444 errors |= param_getdec(Cmd,cmdp+1,&decimation);
445 cmdp+=2;
446 break;
447 case 'a':
448 averaging = param_getchar(Cmd,cmdp+1) == '1';
449 cmdp+=2;
450 break;
451 default:
452 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
453 errors = 1;
454 break;
455 }
456 if(errors) break;
457 }
458 if(cmdp == 0)
459 {
460 errors = 1;// No args
461 }
462
463 //Validations
464 if(errors)
465 {
466 return usage_lf_config();
467 }
468 //Bps is limited to 8, so fits in lower half of arg1
469 if(bps >> 8) bps = 8;
470
471 sample_config config = {
472 decimation,bps,averaging,divisor,trigger_threshold
473 };
474 //Averaging is a flag on high-bit of arg[1]
475 UsbCommand c = {CMD_SET_LF_SAMPLING_CONFIG};
476 memcpy(c.d.asBytes,&config,sizeof(sample_config));
477 SendCommand(&c);
478 return 0;
479 }
480
481 int CmdLFRead(const char *Cmd)
482 {
483
484 uint8_t cmdp =0;
485 if(param_getchar(Cmd, cmdp) == 'h')
486 {
487 return usage_lf_read();
488 }
489 //And ship it to device
490 UsbCommand c = {CMD_ACQUIRE_RAW_ADC_SAMPLES_125K};
491 SendCommand(&c);
492 WaitForResponse(CMD_ACK,NULL);
493 return 0;
494 }
495
496 int CmdLFSnoop(const char *Cmd)
497 {
498 uint8_t cmdp =0;
499 if(param_getchar(Cmd, cmdp) == 'h')
500 {
501 return usage_lf_snoop();
502 }
503
504 UsbCommand c = {CMD_LF_SNOOP_RAW_ADC_SAMPLES};
505 SendCommand(&c);
506 WaitForResponse(CMD_ACK,NULL);
507 return 0;
508 }
509
510 static void ChkBitstream(const char *str)
511 {
512 int i;
513
514 /* convert to bitstream if necessary */
515 for (i = 0; i < (int)(GraphTraceLen / 2); i++){
516 if (GraphBuffer[i] > 1 || GraphBuffer[i] < 0) {
517 CmdBitstream(str);
518 break;
519 }
520 }
521 }
522 //appears to attempt to simulate manchester
523 int CmdLFSim(const char *Cmd)
524 {
525 int i,j;
526 static int gap;
527
528 sscanf(Cmd, "%i", &gap);
529
530 /* convert to bitstream if necessary */
531 ChkBitstream(Cmd);
532
533 //can send 512 bits at a time (1 byte sent per bit...)
534 printf("Sending [%d bytes]", GraphTraceLen);
535 for (i = 0; i < GraphTraceLen; i += USB_CMD_DATA_SIZE) {
536 UsbCommand c={CMD_DOWNLOADED_SIM_SAMPLES_125K, {i, 0, 0}};
537
538 for (j = 0; j < USB_CMD_DATA_SIZE; j++) {
539 c.d.asBytes[j] = GraphBuffer[i+j];
540 }
541 SendCommand(&c);
542 WaitForResponse(CMD_ACK,NULL);
543 printf(".");
544 }
545
546 printf("\n");
547 PrintAndLog("Starting to simulate");
548 UsbCommand c = {CMD_SIMULATE_TAG_125K, {GraphTraceLen, gap, 0}};
549 SendCommand(&c);
550 return 0;
551 }
552
553 int usage_lf_simfsk(void)
554 {
555 //print help
556 PrintAndLog("Usage: lf simfsk [c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>]");
557 PrintAndLog("Options: ");
558 PrintAndLog(" h This help");
559 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
560 PrintAndLog(" i invert data");
561 PrintAndLog(" H <fcHigh> Manually set the larger Field Clock");
562 PrintAndLog(" L <fcLow> Manually set the smaller Field Clock");
563 //PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap");
564 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
565 PrintAndLog("\n NOTE: if you set one clock manually set them all manually");
566 return 0;
567 }
568
569 int usage_lf_simask(void)
570 {
571 //print help
572 PrintAndLog("Usage: lf simask [c <clock>] [i] [m|r] [s] [d <raw hex to sim>]");
573 PrintAndLog("Options: ");
574 PrintAndLog(" h This help");
575 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
576 PrintAndLog(" i invert data");
577 PrintAndLog(" m sim ask/manchester");
578 PrintAndLog(" r sim ask/raw");
579 PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap");
580 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
581 return 0;
582 }
583
584 int usage_lf_simpsk(void)
585 {
586 //print help
587 PrintAndLog("Usage: lf simpsk [1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>]");
588 PrintAndLog("Options: ");
589 PrintAndLog(" h This help");
590 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
591 PrintAndLog(" i invert data");
592 PrintAndLog(" 1 set PSK1 (default)");
593 PrintAndLog(" 2 set PSK2");
594 PrintAndLog(" 3 set PSK3");
595 PrintAndLog(" r <carrier> 2|4|8 are valid carriers: default = 2");
596 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
597 return 0;
598 }
599 // by marshmellow - sim ask data given clock, fcHigh, fcLow, invert
600 // - allow pull data from DemodBuffer
601 int CmdLFfskSim(const char *Cmd)
602 {
603 //might be able to autodetect FC and clock from Graphbuffer if using demod buffer
604 //will need FChigh, FClow, Clock, and bitstream
605 uint8_t fcHigh=0, fcLow=0, clk=0;
606 uint8_t invert=0;
607 bool errors = FALSE;
608 char hexData[32] = {0x00}; // store entered hex data
609 uint8_t data[255] = {0x00};
610 int dataLen = 0;
611 uint8_t cmdp = 0;
612 while(param_getchar(Cmd, cmdp) != 0x00)
613 {
614 switch(param_getchar(Cmd, cmdp))
615 {
616 case 'h':
617 return usage_lf_simfsk();
618 case 'i':
619 invert = 1;
620 cmdp++;
621 break;
622 case 'c':
623 errors |= param_getdec(Cmd,cmdp+1,&clk);
624 cmdp+=2;
625 break;
626 case 'H':
627 errors |= param_getdec(Cmd,cmdp+1,&fcHigh);
628 cmdp+=2;
629 break;
630 case 'L':
631 errors |= param_getdec(Cmd,cmdp+1,&fcLow);
632 cmdp+=2;
633 break;
634 //case 's':
635 // separator=1;
636 // cmdp++;
637 // break;
638 case 'd':
639 dataLen = param_getstr(Cmd, cmdp+1, hexData);
640 if (dataLen==0) {
641 errors=TRUE;
642 } else {
643 dataLen = hextobinarray((char *)data, hexData);
644 }
645 if (dataLen==0) errors=TRUE;
646 if (errors) PrintAndLog ("Error getting hex data");
647 cmdp+=2;
648 break;
649 default:
650 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
651 errors = TRUE;
652 break;
653 }
654 if(errors) break;
655 }
656 if(cmdp == 0 && DemodBufferLen == 0)
657 {
658 errors = TRUE;// No args
659 }
660
661 //Validations
662 if(errors)
663 {
664 return usage_lf_simfsk();
665 }
666
667 if (dataLen == 0){ //using DemodBuffer
668 if (clk==0 || fcHigh==0 || fcLow==0){ //manual settings must set them all
669 uint8_t ans = fskClocks(&fcHigh, &fcLow, &clk, 0);
670 if (ans==0){
671 if (!fcHigh) fcHigh=10;
672 if (!fcLow) fcLow=8;
673 if (!clk) clk=50;
674 }
675 }
676 } else {
677 setDemodBuf(data, dataLen, 0);
678 }
679 if (clk == 0) clk = 50;
680 if (fcHigh == 0) fcHigh = 10;
681 if (fcLow == 0) fcLow = 8;
682
683 uint16_t arg1, arg2;
684 arg1 = fcHigh << 8 | fcLow;
685 arg2 = invert << 8 | clk;
686 UsbCommand c = {CMD_FSK_SIM_TAG, {arg1, arg2, DemodBufferLen}};
687 if (DemodBufferLen > USB_CMD_DATA_SIZE) {
688 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", DemodBufferLen, USB_CMD_DATA_SIZE);
689 }
690 memcpy(c.d.asBytes, DemodBuffer, DemodBufferLen);
691 SendCommand(&c);
692 return 0;
693 }
694
695 // by marshmellow - sim ask data given clock, invert, manchester or raw, separator
696 // - allow pull data from DemodBuffer
697 int CmdLFaskSim(const char *Cmd)
698 {
699 //autodetect clock from Graphbuffer if using demod buffer
700 //will need clock, invert, manchester/raw as m or r, separator as s, and bitstream
701 uint8_t manchester = 1, separator = 0;
702 //char cmdp = Cmd[0], par3='m', par4=0;
703 uint8_t clk=0, invert=0;
704 bool errors = FALSE;
705 char hexData[32] = {0x00};
706 uint8_t data[255]= {0x00}; // store entered hex data
707 int dataLen = 0;
708 uint8_t cmdp = 0;
709 while(param_getchar(Cmd, cmdp) != 0x00)
710 {
711 switch(param_getchar(Cmd, cmdp))
712 {
713 case 'h':
714 return usage_lf_simask();
715 case 'i':
716 invert = 1;
717 cmdp++;
718 break;
719 case 'c':
720 errors |= param_getdec(Cmd,cmdp+1,&clk);
721 cmdp+=2;
722 break;
723 case 'm':
724 manchester=1;
725 cmdp++;
726 break;
727 case 'r':
728 manchester=0;
729 cmdp++;
730 break;
731 case 's':
732 separator=1;
733 cmdp++;
734 break;
735 case 'd':
736 dataLen = param_getstr(Cmd, cmdp+1, hexData);
737 if (dataLen==0) {
738 errors=TRUE;
739 } else {
740 dataLen = hextobinarray((char *)data, hexData);
741 }
742 if (dataLen==0) errors=TRUE;
743 if (errors) PrintAndLog ("Error getting hex data, datalen: %d",dataLen);
744 cmdp+=2;
745 break;
746 default:
747 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
748 errors = TRUE;
749 break;
750 }
751 if(errors) break;
752 }
753 if(cmdp == 0 && DemodBufferLen == 0)
754 {
755 errors = TRUE;// No args
756 }
757
758 //Validations
759 if(errors)
760 {
761 return usage_lf_simask();
762 }
763 if (dataLen == 0){ //using DemodBuffer
764 if (clk == 0) clk = GetAskClock("0", false, false);
765 } else {
766 setDemodBuf(data, dataLen, 0);
767 }
768 if (clk == 0) clk = 64;
769 if (manchester == 0) clk = clk/2; //askraw needs to double the clock speed
770 uint16_t arg1, arg2;
771 size_t size=DemodBufferLen;
772 arg1 = clk << 8 | manchester;
773 arg2 = invert << 8 | separator;
774 if (size > USB_CMD_DATA_SIZE) {
775 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size, USB_CMD_DATA_SIZE);
776 size = USB_CMD_DATA_SIZE;
777 }
778 UsbCommand c = {CMD_ASK_SIM_TAG, {arg1, arg2, size}};
779
780 PrintAndLog("preparing to sim ask data: %d bits", size);
781 memcpy(c.d.asBytes, DemodBuffer, size);
782 SendCommand(&c);
783 return 0;
784 }
785
786 // by marshmellow - sim psk data given carrier, clock, invert
787 // - allow pull data from DemodBuffer or parameters
788 int CmdLFpskSim(const char *Cmd)
789 {
790 //might be able to autodetect FC and clock from Graphbuffer if using demod buffer
791 //will need carrier, Clock, and bitstream
792 uint8_t carrier=0, clk=0;
793 uint8_t invert=0;
794 bool errors = FALSE;
795 char hexData[32] = {0x00}; // store entered hex data
796 uint8_t data[255] = {0x00};
797 int dataLen = 0;
798 uint8_t cmdp = 0;
799 uint8_t pskType = 1;
800 while(param_getchar(Cmd, cmdp) != 0x00)
801 {
802 switch(param_getchar(Cmd, cmdp))
803 {
804 case 'h':
805 return usage_lf_simpsk();
806 case 'i':
807 invert = 1;
808 cmdp++;
809 break;
810 case 'c':
811 errors |= param_getdec(Cmd,cmdp+1,&clk);
812 cmdp+=2;
813 break;
814 case 'r':
815 errors |= param_getdec(Cmd,cmdp+1,&carrier);
816 cmdp+=2;
817 break;
818 case '1':
819 pskType=1;
820 cmdp++;
821 break;
822 case '2':
823 pskType=2;
824 cmdp++;
825 break;
826 case '3':
827 pskType=3;
828 cmdp++;
829 break;
830 case 'd':
831 dataLen = param_getstr(Cmd, cmdp+1, hexData);
832 if (dataLen==0) {
833 errors=TRUE;
834 } else {
835 dataLen = hextobinarray((char *)data, hexData);
836 }
837 if (dataLen==0) errors=TRUE;
838 if (errors) PrintAndLog ("Error getting hex data");
839 cmdp+=2;
840 break;
841 default:
842 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
843 errors = TRUE;
844 break;
845 }
846 if (errors) break;
847 }
848 if (cmdp == 0 && DemodBufferLen == 0)
849 {
850 errors = TRUE;// No args
851 }
852
853 //Validations
854 if (errors)
855 {
856 return usage_lf_simpsk();
857 }
858 if (dataLen == 0){ //using DemodBuffer
859 PrintAndLog("Getting Clocks");
860 if (clk==0) clk = GetPskClock("", FALSE, FALSE);
861 PrintAndLog("clk: %d",clk);
862 if (!carrier) carrier = GetPskCarrier("", FALSE, FALSE);
863 PrintAndLog("carrier: %d", carrier);
864 } else {
865 setDemodBuf(data, dataLen, 0);
866 }
867
868 if (clk <= 0) clk = 32;
869 if (carrier == 0) carrier = 2;
870 if (pskType != 1){
871 if (pskType == 2){
872 //need to convert psk2 to psk1 data before sim
873 psk2TOpsk1(DemodBuffer, DemodBufferLen);
874 } else {
875 PrintAndLog("Sorry, PSK3 not yet available");
876 }
877 }
878 uint16_t arg1, arg2;
879 arg1 = clk << 8 | carrier;
880 arg2 = invert;
881 UsbCommand c = {CMD_PSK_SIM_TAG, {arg1, arg2, DemodBufferLen}};
882 if (DemodBufferLen > USB_CMD_DATA_SIZE) {
883 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", DemodBufferLen, USB_CMD_DATA_SIZE);
884 }
885 PrintAndLog("DEBUG: Sending DemodBuffer Length: %d", DemodBufferLen);
886 memcpy(c.d.asBytes, DemodBuffer, DemodBufferLen);
887 SendCommand(&c);
888 return 0;
889 }
890
891 int CmdLFSimBidir(const char *Cmd)
892 {
893 // Set ADC to twice the carrier for a slight supersampling
894 // HACK: not implemented in ARMSRC.
895 PrintAndLog("Not implemented yet.");
896 UsbCommand c = {CMD_LF_SIMULATE_BIDIR, {47, 384, 0}};
897 SendCommand(&c);
898 return 0;
899 }
900
901 /* simulate an LF Manchester encoded tag with specified bitstream, clock rate and inter-id gap */
902 int CmdLFSimManchester(const char *Cmd)
903 {
904 static int clock, gap;
905 static char data[1024], gapstring[8];
906
907 sscanf(Cmd, "%i %s %i", &clock, &data[0], &gap);
908
909 ClearGraph(0);
910
911 for (int i = 0; i < strlen(data) ; ++i)
912 AppendGraph(0, clock, data[i]- '0');
913
914 CmdManchesterMod("");
915
916 RepaintGraphWindow();
917
918 sprintf(&gapstring[0], "%i", gap);
919 CmdLFSim(gapstring);
920 return 0;
921 }
922
923
924 int CmdVchDemod(const char *Cmd)
925 {
926 // Is this the entire sync pattern, or does this also include some
927 // data bits that happen to be the same everywhere? That would be
928 // lovely to know.
929 static const int SyncPattern[] = {
930 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
931 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
932 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
933 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
934 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
935 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
936 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
937 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
938 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
939 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
940 };
941
942 // So first, we correlate for the sync pattern, and mark that.
943 int bestCorrel = 0, bestPos = 0;
944 int i;
945 // It does us no good to find the sync pattern, with fewer than
946 // 2048 samples after it...
947 for (i = 0; i < (GraphTraceLen-2048); i++) {
948 int sum = 0;
949 int j;
950 for (j = 0; j < arraylen(SyncPattern); j++) {
951 sum += GraphBuffer[i+j]*SyncPattern[j];
952 }
953 if (sum > bestCorrel) {
954 bestCorrel = sum;
955 bestPos = i;
956 }
957 }
958 PrintAndLog("best sync at %d [metric %d]", bestPos, bestCorrel);
959
960 char bits[257];
961 bits[256] = '\0';
962
963 int worst = INT_MAX;
964 int worstPos = 0;
965
966 for (i = 0; i < 2048; i += 8) {
967 int sum = 0;
968 int j;
969 for (j = 0; j < 8; j++) {
970 sum += GraphBuffer[bestPos+i+j];
971 }
972 if (sum < 0) {
973 bits[i/8] = '.';
974 } else {
975 bits[i/8] = '1';
976 }
977 if(abs(sum) < worst) {
978 worst = abs(sum);
979 worstPos = i;
980 }
981 }
982 PrintAndLog("bits:");
983 PrintAndLog("%s", bits);
984 PrintAndLog("worst metric: %d at pos %d", worst, worstPos);
985
986 if (strcmp(Cmd, "clone")==0) {
987 GraphTraceLen = 0;
988 char *s;
989 for(s = bits; *s; s++) {
990 int j;
991 for(j = 0; j < 16; j++) {
992 GraphBuffer[GraphTraceLen++] = (*s == '1') ? 1 : 0;
993 }
994 }
995 RepaintGraphWindow();
996 }
997 return 0;
998 }
999
1000 //by marshmellow
1001 int CmdLFfind(const char *Cmd)
1002 {
1003 int ans=0;
1004 char cmdp = param_getchar(Cmd, 0);
1005 char testRaw = param_getchar(Cmd, 1);
1006 if (strlen(Cmd) > 2 || cmdp == 'h' || cmdp == 'H') {
1007 PrintAndLog("Usage: lf search <0|1> [u]");
1008 PrintAndLog(" <use data from Graphbuffer> , if not set, try reading data from tag.");
1009 PrintAndLog(" [Search for Unknown tags] , if not set, reads only known tags.");
1010 PrintAndLog("");
1011 PrintAndLog(" sample: lf search = try reading data from tag & search for known tags");
1012 PrintAndLog(" : lf search 1 = use data from GraphBuffer & search for known tags");
1013 PrintAndLog(" : lf search u = try reading data from tag & search for known and unknown tags");
1014 PrintAndLog(" : lf search 1 u = use data from GraphBuffer & search for known and unknown tags");
1015
1016 return 0;
1017 }
1018
1019 if (!offline && (cmdp != '1')){
1020 ans=CmdLFRead("");
1021 ans=CmdSamples("20000");
1022 } else if (GraphTraceLen < 1000) {
1023 PrintAndLog("Data in Graphbuffer was too small.");
1024 return 0;
1025 }
1026 if (cmdp == 'u' || cmdp == 'U') testRaw = 'u';
1027 PrintAndLog("NOTE: some demods output possible binary\n if it finds something that looks like a tag");
1028 PrintAndLog("False Positives ARE possible\n");
1029 PrintAndLog("\nChecking for known tags:\n");
1030 ans=CmdFSKdemodIO("");
1031 if (ans>0) {
1032 PrintAndLog("\nValid IO Prox ID Found!");
1033 return 1;
1034 }
1035 ans=CmdFSKdemodPyramid("");
1036 if (ans>0) {
1037 PrintAndLog("\nValid Pyramid ID Found!");
1038 return 1;
1039 }
1040 ans=CmdFSKdemodParadox("");
1041 if (ans>0) {
1042 PrintAndLog("\nValid Paradox ID Found!");
1043 return 1;
1044 }
1045 ans=CmdFSKdemodAWID("");
1046 if (ans>0) {
1047 PrintAndLog("\nValid AWID ID Found!");
1048 return 1;
1049 }
1050 ans=CmdFSKdemodHID("");
1051 if (ans>0) {
1052 PrintAndLog("\nValid HID Prox ID Found!");
1053 return 1;
1054 }
1055 //add psk and indala
1056 ans=CmdIndalaDecode("");
1057 if (ans>0) {
1058 PrintAndLog("\nValid Indala ID Found!");
1059 return 1;
1060 }
1061 ans=CmdAskEM410xDemod("");
1062 if (ans>0) {
1063 PrintAndLog("\nValid EM410x ID Found!");
1064 return 1;
1065 }
1066 ans=CmdG_Prox_II_Demod("");
1067 if (ans>0) {
1068 PrintAndLog("\nValid G Prox II ID Found!");
1069 return 1;
1070 }
1071 PrintAndLog("\nNo Known Tags Found!\n");
1072 if (testRaw=='u' || testRaw=='U'){
1073 //test unknown tag formats (raw mode)
1074 PrintAndLog("\nChecking for Unknown tags:\n");
1075 ans=CmdDetectClockRate("f");
1076 if (ans != 0){ //fsk
1077 ans=CmdFSKrawdemod("");
1078 if (ans>0) {
1079 PrintAndLog("\nUnknown FSK Modulated Tag Found!");
1080 return 1;
1081 }
1082 }
1083 ans=Cmdaskmandemod("");
1084 if (ans>0) {
1085 PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!");
1086 return 1;
1087 }
1088 ans=CmdPSK1rawDemod("");
1089 if (ans>0) {
1090 PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data psk2rawdemod'");
1091 PrintAndLog("\nCould also be PSK3 - [currently not supported]");
1092 PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod");
1093 return 1;
1094 }
1095 PrintAndLog("\nNo Data Found!\n");
1096 }
1097 return 0;
1098 }
1099
1100 static command_t CommandTable[] =
1101 {
1102 {"help", CmdHelp, 1, "This help"},
1103 {"cmdread", CmdLFCommandRead, 0, "<off period> <'0' period> <'1' period> <command> ['h'] -- Modulate LF reader field to send command before read (all periods in microseconds) (option 'h' for 134)"},
1104 {"em4x", CmdLFEM4X, 1, "{ EM4X RFIDs... }"},
1105 {"config", CmdLFSetConfig, 0, "Set config for LF sampling, bit/sample, decimation, frequency"},
1106 {"flexdemod", CmdFlexdemod, 1, "Demodulate samples for FlexPass"},
1107 {"hid", CmdLFHID, 1, "{ HID RFIDs... }"},
1108 {"io", CmdLFIO, 1, "{ ioProx tags... }"},
1109 {"indalademod", CmdIndalaDemod, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
1110 {"indalaclone", CmdIndalaClone, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
1111 {"read", CmdLFRead, 0, "Read 125/134 kHz LF ID-only tag. Do 'lf read h' for help"},
1112 {"search", CmdLFfind, 1, "[offline] ['u'] Read and Search for valid known tag (in offline mode it you can load first then search) - 'u' to search for unknown tags"},
1113 {"sim", CmdLFSim, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
1114 {"simask", CmdLFaskSim, 0, "[clock] [invert <1|0>] [manchester/raw <'m'|'r'>] [trs separator 's'] [d <hexdata>] -- Simulate LF ASK tag from demodbuffer or input"},
1115 {"simfsk", CmdLFfskSim, 0, "[c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>] -- Simulate LF FSK tag from demodbuffer or input"},
1116 {"simpsk", CmdLFpskSim, 0, "[1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>] -- Simulate LF PSK tag from demodbuffer or input"},
1117 {"simbidir", CmdLFSimBidir, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
1118 {"simman", CmdLFSimManchester, 0, "<Clock> <Bitstream> [GAP] Simulate arbitrary Manchester LF tag"},
1119 {"snoop", CmdLFSnoop, 0, "['l'|'h'|<divisor>] [trigger threshold]-- Snoop LF (l:125khz, h:134khz)"},
1120 {"ti", CmdLFTI, 1, "{ TI RFIDs... }"},
1121 {"hitag", CmdLFHitag, 1, "{ Hitag tags and transponders... }"},
1122 {"vchdemod", CmdVchDemod, 1, "['clone'] -- Demodulate samples for VeriChip"},
1123 {"t55xx", CmdLFT55XX, 1, "{ T55xx RFIDs... }"},
1124 {"pcf7931", CmdLFPCF7931, 1, "{PCF7931 RFIDs...}"},
1125 {NULL, NULL, 0, NULL}
1126 };
1127
1128 int CmdLF(const char *Cmd)
1129 {
1130 CmdsParse(CommandTable, Cmd);
1131 return 0;
1132 }
1133
1134 int CmdHelp(const char *Cmd)
1135 {
1136 CmdsHelp(CommandTable);
1137 return 0;
1138 }
Impressum, Datenschutz