]>
Commit | Line | Data |
---|---|---|
a553f267 | 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 | ||
7fe9b0b7 | 11 | #include <stdio.h> |
590f8ff9 | 12 | #include <stdlib.h> |
7fe9b0b7 | 13 | #include <string.h> |
393c3ef9 | 14 | #include <limits.h> |
902cb3c0 | 15 | #include "proxmark3.h" |
7fe9b0b7 | 16 | #include "data.h" |
17 | #include "graph.h" | |
18 | #include "ui.h" | |
19 | #include "cmdparser.h" | |
040a7baa | 20 | #include "cmdmain.h" |
7fe9b0b7 | 21 | #include "cmddata.h" |
31d1caa5 | 22 | #include "util.h" |
7fe9b0b7 | 23 | #include "cmdlf.h" |
24 | #include "cmdlfhid.h" | |
25 | #include "cmdlfti.h" | |
26 | #include "cmdlfem4x.h" | |
db09cb3a | 27 | #include "cmdlfhitag.h" |
54a942b0 | 28 | #include "cmdlft55xx.h" |
29 | #include "cmdlfpcf7931.h" | |
a1f3bb12 | 30 | #include "cmdlfio.h" |
3bc66a96 | 31 | #include "lfdemod.h" |
7fe9b0b7 | 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}; | |
1a07fd51 | 43 | sscanf(Cmd, "%"lli" %"lli" %"lli" %s %s", &c.arg[0], &c.arg[1], &c.arg[2],(char*)(&c.d.asBytes),(char*)(&dummy+1)); |
7fe9b0b7 | 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; | |
3fe4ff4f | 81 | uint8_t bits[64] = {0x00}; |
7fe9b0b7 | 82 | |
3fe4ff4f | 83 | int bit, sum; |
7fe9b0b7 | 84 | i = start; |
85 | for (bit = 0; bit < 64; bit++) { | |
3fe4ff4f | 86 | sum = 0; |
87 | for (int j = 0; j < 16; j++) { | |
7fe9b0b7 | 88 | sum += GraphBuffer[i++]; |
89 | } | |
3fe4ff4f | 90 | |
91 | bits[bit] = (sum > 0) ? 1 : 0; | |
92 | ||
7fe9b0b7 | 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 | ||
3fe4ff4f | 110 | // HACK writing back to graphbuffer. |
7fe9b0b7 | 111 | GraphTraceLen = 32*64; |
112 | i = 0; | |
113 | int phase = 0; | |
114 | for (bit = 0; bit < 64; bit++) { | |
3fe4ff4f | 115 | |
116 | phase = (bits[bit] == 0) ? 0 : 1; | |
117 | ||
7fe9b0b7 | 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 | } | |
a1f3bb12 | 128 | |
7fe9b0b7 | 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; | |
3fe4ff4f | 136 | |
7fe9b0b7 | 137 | // worst case with GraphTraceLen=64000 is < 4096 |
138 | // under normal conditions it's < 2048 | |
3fe4ff4f | 139 | |
7fe9b0b7 | 140 | uint8_t rawbits[4096]; |
141 | int rawbit = 0; | |
142 | int worst = 0, worstPos = 0; | |
d5a72d2f | 143 | // PrintAndLog("Expecting a bit less than %d raw bits", GraphTraceLen / 32); |
7fe9b0b7 | 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 | } | |
3fe4ff4f | 172 | |
d5a72d2f | 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); | |
3fe4ff4f | 176 | } else { |
177 | return 0; | |
178 | } | |
179 | ||
7fe9b0b7 | 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 | } | |
3fe4ff4f | 189 | |
7fe9b0b7 | 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 | } | |
3fe4ff4f | 203 | |
7fe9b0b7 | 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 | |
3fe4ff4f | 217 | uint8_t bits[224] = {0x00}; |
218 | char showbits[225] = {0x00}; | |
7fe9b0b7 | 219 | int bit; |
220 | i = start; | |
221 | int times = 0; | |
3fe4ff4f | 222 | |
7fe9b0b7 | 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 | } | |
2414f978 | 240 | |
241 | //convert UID to HEX | |
242 | uint32_t uid1, uid2, uid3, uid4, uid5, uid6, uid7; | |
243 | int idx; | |
3fe4ff4f | 244 | uid1 = uid2 = 0; |
245 | ||
2414f978 | 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 { | |
3fe4ff4f | 259 | uid3 = uid4 = uid5 = uid6 = uid7 = 0; |
260 | ||
2414f978 | 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); | |
3fe4ff4f | 268 | |
269 | if (showbits[idx] == '0') | |
270 | uid7 = (uid7<<1) | 0; | |
271 | else | |
272 | uid7 = (uid7<<1) | 1; | |
2414f978 | 273 | } |
274 | PrintAndLog("UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits, uid1, uid2, uid3, uid4, uid5, uid6, uid7); | |
275 | } | |
7fe9b0b7 | 276 | |
0ff9a939 | 277 | // Checking UID against next occurrences |
7fe9b0b7 | 278 | int failed = 0; |
3fe4ff4f | 279 | for (; i + uidlen <= rawbit;) { |
280 | failed = 0; | |
7fe9b0b7 | 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 | } | |
3fe4ff4f | 292 | |
0ff9a939 | 293 | PrintAndLog("Occurrences: %d (expected %d)", times, (rawbit - start) / uidlen); |
7fe9b0b7 | 294 | |
295 | // Remodulating for tag cloning | |
3fe4ff4f | 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. | |
7fe9b0b7 | 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(); | |
d5a72d2f | 315 | return 1; |
7fe9b0b7 | 316 | } |
317 | ||
2414f978 | 318 | int CmdIndalaClone(const char *Cmd) |
319 | { | |
2414f978 | 320 | UsbCommand c; |
3fe4ff4f | 321 | unsigned int uid1, uid2, uid3, uid4, uid5, uid6, uid7; |
322 | ||
323 | uid1 = uid2 = uid3 = uid4 = uid5 = uid6 = uid7 = 0; | |
2414f978 | 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; | |
3fe4ff4f | 345 | } else { |
2414f978 | 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 | ||
31abe49f | 360 | int usage_lf_read() |
f6d9fb17 | 361 | { |
31abe49f | 362 | PrintAndLog("Usage: lf read"); |
f6d9fb17 MHS |
363 | PrintAndLog("Options: "); |
364 | PrintAndLog(" h This help"); | |
31abe49f MHS |
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"); | |
f6d9fb17 | 391 | PrintAndLog("Examples:"); |
31abe49f | 392 | PrintAndLog(" lf config b 8 L"); |
f6d9fb17 | 393 | PrintAndLog(" Samples at 125KHz, 8bps."); |
31abe49f | 394 | PrintAndLog(" lf config H b 4 d 3"); |
f6d9fb17 MHS |
395 | PrintAndLog(" Samples at 134KHz, averages three samples into one, stored with "); |
396 | PrintAndLog(" a resolution of 4 bits per sample."); | |
31abe49f MHS |
397 | PrintAndLog(" lf read"); |
398 | PrintAndLog(" Performs a read (active field)"); | |
399 | PrintAndLog(" lf snoop"); | |
400 | PrintAndLog(" Performs a snoop (no active field)"); | |
f6d9fb17 MHS |
401 | return 0; |
402 | } | |
31abe49f MHS |
403 | |
404 | int CmdLFSetConfig(const char *Cmd) | |
7fe9b0b7 | 405 | { |
31abe49f MHS |
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 | |
f6d9fb17 | 411 | bool errors = FALSE; |
31abe49f MHS |
412 | int trigger_threshold =-1;//Means no change |
413 | uint8_t unsigned_trigg = 0; | |
f6d9fb17 MHS |
414 | |
415 | uint8_t cmdp =0; | |
31abe49f | 416 | while(param_getchar(Cmd, cmdp) != 0x00) |
f6d9fb17 | 417 | { |
31abe49f MHS |
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; | |
f6d9fb17 | 457 | } |
31abe49f | 458 | if(cmdp == 0) |
f6d9fb17 | 459 | { |
31abe49f | 460 | errors = 1;// No args |
f6d9fb17 | 461 | } |
31abe49f | 462 | |
f6d9fb17 MHS |
463 | //Validations |
464 | if(errors) | |
465 | { | |
31abe49f | 466 | return usage_lf_config(); |
f6d9fb17 | 467 | } |
f6d9fb17 | 468 | //Bps is limited to 8, so fits in lower half of arg1 |
31abe49f | 469 | if(bps >> 8) bps = 8; |
f6d9fb17 | 470 | |
31abe49f MHS |
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 | } | |
f6d9fb17 | 480 | |
7fe9b0b7 | 481 | int CmdLFRead(const char *Cmd) |
482 | { | |
31abe49f MHS |
483 | |
484 | uint8_t cmdp =0; | |
485 | if(param_getchar(Cmd, cmdp) == 'h') | |
486 | { | |
487 | return usage_lf_read(); | |
488 | } | |
f6d9fb17 | 489 | //And ship it to device |
f6d9fb17 | 490 | UsbCommand c = {CMD_ACQUIRE_RAW_ADC_SAMPLES_125K}; |
31abe49f MHS |
491 | SendCommand(&c); |
492 | WaitForResponse(CMD_ACK,NULL); | |
493 | return 0; | |
494 | } | |
f6d9fb17 | 495 | |
31abe49f MHS |
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}; | |
f6d9fb17 MHS |
505 | SendCommand(&c); |
506 | WaitForResponse(CMD_ACK,NULL); | |
507 | return 0; | |
7fe9b0b7 | 508 | } |
509 | ||
510 | static void ChkBitstream(const char *str) | |
511 | { | |
512 | int i; | |
78f5b1a7 | 513 | |
7fe9b0b7 | 514 | /* convert to bitstream if necessary */ |
b915fda3 | 515 | for (i = 0; i < (int)(GraphTraceLen / 2); i++){ |
516 | if (GraphBuffer[i] > 1 || GraphBuffer[i] < 0) { | |
78f5b1a7 | 517 | CmdGetBitStream(""); |
7fe9b0b7 | 518 | break; |
519 | } | |
520 | } | |
521 | } | |
1e090a61 | 522 | //appears to attempt to simulate manchester |
7fe9b0b7 | 523 | int CmdLFSim(const char *Cmd) |
524 | { | |
52ab55ab | 525 | int i,j; |
7fe9b0b7 | 526 | static int gap; |
527 | ||
528 | sscanf(Cmd, "%i", &gap); | |
529 | ||
530 | /* convert to bitstream if necessary */ | |
78f5b1a7 | 531 | |
7fe9b0b7 | 532 | ChkBitstream(Cmd); |
533 | ||
abd6112f | 534 | //can send 512 bits at a time (1 byte sent per bit...) |
52ab55ab | 535 | printf("Sending [%d bytes]", GraphTraceLen); |
536 | for (i = 0; i < GraphTraceLen; i += USB_CMD_DATA_SIZE) { | |
7fe9b0b7 | 537 | UsbCommand c={CMD_DOWNLOADED_SIM_SAMPLES_125K, {i, 0, 0}}; |
52ab55ab | 538 | |
539 | for (j = 0; j < USB_CMD_DATA_SIZE; j++) { | |
7fe9b0b7 | 540 | c.d.asBytes[j] = GraphBuffer[i+j]; |
541 | } | |
542 | SendCommand(&c); | |
902cb3c0 | 543 | WaitForResponse(CMD_ACK,NULL); |
52ab55ab | 544 | printf("."); |
7fe9b0b7 | 545 | } |
546 | ||
52ab55ab | 547 | printf("\n"); |
548 | PrintAndLog("Starting to simulate"); | |
7fe9b0b7 | 549 | UsbCommand c = {CMD_SIMULATE_TAG_125K, {GraphTraceLen, gap, 0}}; |
550 | SendCommand(&c); | |
551 | return 0; | |
552 | } | |
553 | ||
abd6112f | 554 | int usage_lf_simfsk(void) |
555 | { | |
556 | //print help | |
557 | PrintAndLog("Usage: lf simfsk [c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>]"); | |
558 | PrintAndLog("Options: "); | |
559 | PrintAndLog(" h This help"); | |
560 | PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer"); | |
561 | PrintAndLog(" i invert data"); | |
562 | PrintAndLog(" H <fcHigh> Manually set the larger Field Clock"); | |
563 | PrintAndLog(" L <fcLow> Manually set the smaller Field Clock"); | |
564 | //PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap"); | |
565 | PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer"); | |
872e3d4d | 566 | PrintAndLog("\n NOTE: if you set one clock manually set them all manually"); |
abd6112f | 567 | return 0; |
568 | } | |
569 | ||
570 | int usage_lf_simask(void) | |
571 | { | |
572 | //print help | |
573 | PrintAndLog("Usage: lf simask [c <clock>] [i] [m|r] [s] [d <raw hex to sim>]"); | |
574 | PrintAndLog("Options: "); | |
575 | PrintAndLog(" h This help"); | |
576 | PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer"); | |
577 | PrintAndLog(" i invert data"); | |
578 | PrintAndLog(" m sim ask/manchester"); | |
579 | PrintAndLog(" r sim ask/raw"); | |
580 | PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap"); | |
581 | PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer"); | |
582 | return 0; | |
583 | } | |
584 | ||
872e3d4d | 585 | int usage_lf_simpsk(void) |
586 | { | |
587 | //print help | |
588 | PrintAndLog("Usage: lf simpsk [1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>]"); | |
589 | PrintAndLog("Options: "); | |
590 | PrintAndLog(" h This help"); | |
591 | PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer"); | |
592 | PrintAndLog(" i invert data"); | |
593 | PrintAndLog(" 1 set PSK1 (default)"); | |
594 | PrintAndLog(" 2 set PSK2"); | |
595 | PrintAndLog(" 3 set PSK3"); | |
596 | PrintAndLog(" r <carrier> 2|4|8 are valid carriers: default = 2"); | |
597 | PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer"); | |
598 | return 0; | |
599 | } | |
abd6112f | 600 | // by marshmellow - sim ask data given clock, fcHigh, fcLow, invert |
601 | // - allow pull data from DemodBuffer | |
602 | int CmdLFfskSim(const char *Cmd) | |
603 | { | |
abd6112f | 604 | //might be able to autodetect FC and clock from Graphbuffer if using demod buffer |
605 | //will need FChigh, FClow, Clock, and bitstream | |
606 | uint8_t fcHigh=0, fcLow=0, clk=0; | |
607 | uint8_t invert=0; | |
608 | bool errors = FALSE; | |
609 | char hexData[32] = {0x00}; // store entered hex data | |
610 | uint8_t data[255] = {0x00}; | |
611 | int dataLen = 0; | |
612 | uint8_t cmdp = 0; | |
613 | while(param_getchar(Cmd, cmdp) != 0x00) | |
614 | { | |
615 | switch(param_getchar(Cmd, cmdp)) | |
616 | { | |
617 | case 'h': | |
618 | return usage_lf_simfsk(); | |
619 | case 'i': | |
620 | invert = 1; | |
621 | cmdp++; | |
622 | break; | |
623 | case 'c': | |
624 | errors |= param_getdec(Cmd,cmdp+1,&clk); | |
625 | cmdp+=2; | |
626 | break; | |
627 | case 'H': | |
628 | errors |= param_getdec(Cmd,cmdp+1,&fcHigh); | |
629 | cmdp+=2; | |
630 | break; | |
631 | case 'L': | |
632 | errors |= param_getdec(Cmd,cmdp+1,&fcLow); | |
633 | cmdp+=2; | |
634 | break; | |
635 | //case 's': | |
636 | // separator=1; | |
637 | // cmdp++; | |
638 | // break; | |
639 | case 'd': | |
640 | dataLen = param_getstr(Cmd, cmdp+1, hexData); | |
641 | if (dataLen==0) { | |
642 | errors=TRUE; | |
643 | } else { | |
644 | dataLen = hextobinarray((char *)data, hexData); | |
872e3d4d | 645 | } |
646 | if (dataLen==0) errors=TRUE; | |
abd6112f | 647 | if (errors) PrintAndLog ("Error getting hex data"); |
648 | cmdp+=2; | |
649 | break; | |
650 | default: | |
651 | PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp)); | |
652 | errors = TRUE; | |
653 | break; | |
654 | } | |
655 | if(errors) break; | |
656 | } | |
657 | if(cmdp == 0 && DemodBufferLen == 0) | |
658 | { | |
659 | errors = TRUE;// No args | |
660 | } | |
661 | ||
662 | //Validations | |
663 | if(errors) | |
664 | { | |
665 | return usage_lf_simfsk(); | |
666 | } | |
872e3d4d | 667 | |
668 | if (dataLen == 0){ //using DemodBuffer | |
669 | if (clk==0 || fcHigh==0 || fcLow==0){ //manual settings must set them all | |
abd6112f | 670 | uint8_t ans = fskClocks(&fcHigh, &fcLow, &clk, 0); |
671 | if (ans==0){ | |
872e3d4d | 672 | if (!fcHigh) fcHigh=10; |
673 | if (!fcLow) fcLow=8; | |
674 | if (!clk) clk=50; | |
abd6112f | 675 | } |
676 | } | |
677 | } else { | |
678 | setDemodBuf(data, dataLen, 0); | |
679 | } | |
680 | if (clk == 0) clk = 50; | |
681 | if (fcHigh == 0) fcHigh = 10; | |
682 | if (fcLow == 0) fcLow = 8; | |
683 | ||
684 | uint16_t arg1, arg2; | |
685 | arg1 = fcHigh << 8 | fcLow; | |
686 | arg2 = invert << 8 | clk; | |
687 | UsbCommand c = {CMD_FSK_SIM_TAG, {arg1, arg2, DemodBufferLen}}; | |
688 | if (DemodBufferLen > USB_CMD_DATA_SIZE) { | |
689 | PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", DemodBufferLen, USB_CMD_DATA_SIZE); | |
690 | } | |
691 | memcpy(c.d.asBytes, DemodBuffer, DemodBufferLen); | |
692 | SendCommand(&c); | |
693 | return 0; | |
694 | } | |
695 | ||
696 | // by marshmellow - sim ask data given clock, invert, manchester or raw, separator | |
697 | // - allow pull data from DemodBuffer | |
698 | int CmdLFaskSim(const char *Cmd) | |
699 | { | |
abd6112f | 700 | //autodetect clock from Graphbuffer if using demod buffer |
701 | //will need clock, invert, manchester/raw as m or r, separator as s, and bitstream | |
702 | uint8_t manchester = 1, separator = 0; | |
703 | //char cmdp = Cmd[0], par3='m', par4=0; | |
704 | uint8_t clk=0, invert=0; | |
705 | bool errors = FALSE; | |
706 | char hexData[32] = {0x00}; | |
707 | uint8_t data[255]= {0x00}; // store entered hex data | |
708 | int dataLen = 0; | |
709 | uint8_t cmdp = 0; | |
710 | while(param_getchar(Cmd, cmdp) != 0x00) | |
711 | { | |
712 | switch(param_getchar(Cmd, cmdp)) | |
713 | { | |
714 | case 'h': | |
715 | return usage_lf_simask(); | |
716 | case 'i': | |
717 | invert = 1; | |
718 | cmdp++; | |
719 | break; | |
720 | case 'c': | |
721 | errors |= param_getdec(Cmd,cmdp+1,&clk); | |
722 | cmdp+=2; | |
723 | break; | |
724 | case 'm': | |
725 | manchester=1; | |
726 | cmdp++; | |
727 | break; | |
728 | case 'r': | |
729 | manchester=0; | |
730 | cmdp++; | |
731 | break; | |
732 | case 's': | |
733 | separator=1; | |
734 | cmdp++; | |
735 | break; | |
736 | case 'd': | |
737 | dataLen = param_getstr(Cmd, cmdp+1, hexData); | |
738 | if (dataLen==0) { | |
739 | errors=TRUE; | |
740 | } else { | |
741 | dataLen = hextobinarray((char *)data, hexData); | |
742 | } | |
743 | if (dataLen==0) errors=TRUE; | |
744 | if (errors) PrintAndLog ("Error getting hex data, datalen: %d",dataLen); | |
745 | cmdp+=2; | |
746 | break; | |
747 | default: | |
748 | PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp)); | |
749 | errors = TRUE; | |
750 | break; | |
751 | } | |
752 | if(errors) break; | |
753 | } | |
754 | if(cmdp == 0 && DemodBufferLen == 0) | |
755 | { | |
756 | errors = TRUE;// No args | |
757 | } | |
758 | ||
759 | //Validations | |
760 | if(errors) | |
761 | { | |
762 | return usage_lf_simask(); | |
763 | } | |
764 | if (dataLen == 0){ //using DemodBuffer | |
765 | if (clk == 0) clk = GetAskClock("0", false, false); | |
766 | } else { | |
767 | setDemodBuf(data, dataLen, 0); | |
768 | } | |
769 | if (clk == 0) clk = 64; | |
8d960002 | 770 | if (manchester == 0) clk = clk/2; //askraw needs to double the clock speed |
abd6112f | 771 | uint16_t arg1, arg2; |
8d960002 | 772 | size_t size=DemodBufferLen; |
abd6112f | 773 | arg1 = clk << 8 | manchester; |
774 | arg2 = invert << 8 | separator; | |
8d960002 | 775 | if (size > USB_CMD_DATA_SIZE) { |
776 | PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size, USB_CMD_DATA_SIZE); | |
777 | size = USB_CMD_DATA_SIZE; | |
abd6112f | 778 | } |
8d960002 | 779 | UsbCommand c = {CMD_ASK_SIM_TAG, {arg1, arg2, size}}; |
780 | ||
781 | PrintAndLog("preparing to sim ask data: %d bits", size); | |
782 | memcpy(c.d.asBytes, DemodBuffer, size); | |
abd6112f | 783 | SendCommand(&c); |
784 | return 0; | |
785 | } | |
786 | ||
872e3d4d | 787 | // by marshmellow - sim psk data given carrier, clock, invert |
788 | // - allow pull data from DemodBuffer or parameters | |
789 | int CmdLFpskSim(const char *Cmd) | |
790 | { | |
791 | //might be able to autodetect FC and clock from Graphbuffer if using demod buffer | |
792 | //will need carrier, Clock, and bitstream | |
793 | uint8_t carrier=0, clk=0; | |
794 | uint8_t invert=0; | |
795 | bool errors = FALSE; | |
796 | char hexData[32] = {0x00}; // store entered hex data | |
797 | uint8_t data[255] = {0x00}; | |
798 | int dataLen = 0; | |
799 | uint8_t cmdp = 0; | |
800 | uint8_t pskType = 1; | |
801 | while(param_getchar(Cmd, cmdp) != 0x00) | |
802 | { | |
803 | switch(param_getchar(Cmd, cmdp)) | |
804 | { | |
805 | case 'h': | |
806 | return usage_lf_simpsk(); | |
807 | case 'i': | |
808 | invert = 1; | |
809 | cmdp++; | |
810 | break; | |
811 | case 'c': | |
812 | errors |= param_getdec(Cmd,cmdp+1,&clk); | |
813 | cmdp+=2; | |
814 | break; | |
815 | case 'r': | |
816 | errors |= param_getdec(Cmd,cmdp+1,&carrier); | |
817 | cmdp+=2; | |
818 | break; | |
819 | case '1': | |
820 | pskType=1; | |
821 | cmdp++; | |
822 | break; | |
823 | case '2': | |
824 | pskType=2; | |
825 | cmdp++; | |
826 | break; | |
827 | case '3': | |
828 | pskType=3; | |
829 | cmdp++; | |
830 | break; | |
831 | case 'd': | |
832 | dataLen = param_getstr(Cmd, cmdp+1, hexData); | |
833 | if (dataLen==0) { | |
834 | errors=TRUE; | |
835 | } else { | |
836 | dataLen = hextobinarray((char *)data, hexData); | |
837 | } | |
838 | if (dataLen==0) errors=TRUE; | |
839 | if (errors) PrintAndLog ("Error getting hex data"); | |
840 | cmdp+=2; | |
841 | break; | |
842 | default: | |
843 | PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp)); | |
844 | errors = TRUE; | |
845 | break; | |
846 | } | |
847 | if (errors) break; | |
848 | } | |
849 | if (cmdp == 0 && DemodBufferLen == 0) | |
850 | { | |
851 | errors = TRUE;// No args | |
852 | } | |
853 | ||
854 | //Validations | |
855 | if (errors) | |
856 | { | |
857 | return usage_lf_simpsk(); | |
858 | } | |
859 | if (dataLen == 0){ //using DemodBuffer | |
8d960002 | 860 | PrintAndLog("Getting Clocks"); |
861 | if (clk==0) clk = GetPskClock("", FALSE, FALSE); | |
862 | PrintAndLog("clk: %d",clk); | |
863 | if (!carrier) carrier = GetPskCarrier("", FALSE, FALSE); | |
864 | PrintAndLog("carrier: %d", carrier); | |
872e3d4d | 865 | } else { |
866 | setDemodBuf(data, dataLen, 0); | |
867 | } | |
8d960002 | 868 | |
872e3d4d | 869 | if (clk <= 0) clk = 32; |
870 | if (carrier == 0) carrier = 2; | |
3bc66a96 | 871 | if (pskType != 1){ |
872 | if (pskType == 2){ | |
873 | //need to convert psk2 to psk1 data before sim | |
874 | psk2TOpsk1(DemodBuffer, DemodBufferLen); | |
875 | } else { | |
876 | PrintAndLog("Sorry, PSK3 not yet available"); | |
877 | } | |
878 | } | |
872e3d4d | 879 | uint16_t arg1, arg2; |
880 | arg1 = clk << 8 | carrier; | |
881 | arg2 = invert; | |
78f5b1a7 | 882 | |
872e3d4d | 883 | UsbCommand c = {CMD_PSK_SIM_TAG, {arg1, arg2, DemodBufferLen}}; |
884 | if (DemodBufferLen > USB_CMD_DATA_SIZE) { | |
885 | PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", DemodBufferLen, USB_CMD_DATA_SIZE); | |
886 | } | |
8d960002 | 887 | PrintAndLog("DEBUG: Sending DemodBuffer Length: %d", DemodBufferLen); |
872e3d4d | 888 | memcpy(c.d.asBytes, DemodBuffer, DemodBufferLen); |
889 | SendCommand(&c); | |
78f5b1a7 | 890 | |
872e3d4d | 891 | return 0; |
892 | } | |
abd6112f | 893 | |
7fe9b0b7 | 894 | int CmdLFSimBidir(const char *Cmd) |
895 | { | |
3fe4ff4f | 896 | // Set ADC to twice the carrier for a slight supersampling |
897 | // HACK: not implemented in ARMSRC. | |
898 | PrintAndLog("Not implemented yet."); | |
7fe9b0b7 | 899 | UsbCommand c = {CMD_LF_SIMULATE_BIDIR, {47, 384, 0}}; |
900 | SendCommand(&c); | |
901 | return 0; | |
902 | } | |
903 | ||
904 | /* simulate an LF Manchester encoded tag with specified bitstream, clock rate and inter-id gap */ | |
78f5b1a7 | 905 | /* |
7fe9b0b7 | 906 | int CmdLFSimManchester(const char *Cmd) |
907 | { | |
908 | static int clock, gap; | |
909 | static char data[1024], gapstring[8]; | |
910 | ||
7fe9b0b7 | 911 | sscanf(Cmd, "%i %s %i", &clock, &data[0], &gap); |
912 | ||
7fe9b0b7 | 913 | ClearGraph(0); |
914 | ||
7fe9b0b7 | 915 | for (int i = 0; i < strlen(data) ; ++i) |
916 | AppendGraph(0, clock, data[i]- '0'); | |
917 | ||
7fe9b0b7 | 918 | CmdManchesterMod(""); |
919 | ||
7fe9b0b7 | 920 | RepaintGraphWindow(); |
921 | ||
7fe9b0b7 | 922 | sprintf(&gapstring[0], "%i", gap); |
923 | CmdLFSim(gapstring); | |
924 | return 0; | |
925 | } | |
78f5b1a7 | 926 | */ |
b014c96d | 927 | |
7fe9b0b7 | 928 | int CmdVchDemod(const char *Cmd) |
929 | { | |
930 | // Is this the entire sync pattern, or does this also include some | |
931 | // data bits that happen to be the same everywhere? That would be | |
932 | // lovely to know. | |
933 | static const int SyncPattern[] = { | |
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 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
941 | 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, | |
942 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | |
943 | 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, | |
944 | }; | |
945 | ||
946 | // So first, we correlate for the sync pattern, and mark that. | |
947 | int bestCorrel = 0, bestPos = 0; | |
948 | int i; | |
949 | // It does us no good to find the sync pattern, with fewer than | |
950 | // 2048 samples after it... | |
951 | for (i = 0; i < (GraphTraceLen-2048); i++) { | |
952 | int sum = 0; | |
953 | int j; | |
954 | for (j = 0; j < arraylen(SyncPattern); j++) { | |
955 | sum += GraphBuffer[i+j]*SyncPattern[j]; | |
956 | } | |
957 | if (sum > bestCorrel) { | |
958 | bestCorrel = sum; | |
959 | bestPos = i; | |
960 | } | |
961 | } | |
962 | PrintAndLog("best sync at %d [metric %d]", bestPos, bestCorrel); | |
963 | ||
964 | char bits[257]; | |
965 | bits[256] = '\0'; | |
966 | ||
967 | int worst = INT_MAX; | |
fddf220a | 968 | int worstPos = 0; |
7fe9b0b7 | 969 | |
970 | for (i = 0; i < 2048; i += 8) { | |
971 | int sum = 0; | |
972 | int j; | |
973 | for (j = 0; j < 8; j++) { | |
974 | sum += GraphBuffer[bestPos+i+j]; | |
975 | } | |
976 | if (sum < 0) { | |
977 | bits[i/8] = '.'; | |
978 | } else { | |
979 | bits[i/8] = '1'; | |
980 | } | |
981 | if(abs(sum) < worst) { | |
982 | worst = abs(sum); | |
983 | worstPos = i; | |
984 | } | |
985 | } | |
986 | PrintAndLog("bits:"); | |
987 | PrintAndLog("%s", bits); | |
988 | PrintAndLog("worst metric: %d at pos %d", worst, worstPos); | |
989 | ||
990 | if (strcmp(Cmd, "clone")==0) { | |
991 | GraphTraceLen = 0; | |
992 | char *s; | |
993 | for(s = bits; *s; s++) { | |
994 | int j; | |
995 | for(j = 0; j < 16; j++) { | |
996 | GraphBuffer[GraphTraceLen++] = (*s == '1') ? 1 : 0; | |
997 | } | |
998 | } | |
999 | RepaintGraphWindow(); | |
1000 | } | |
1001 | return 0; | |
1002 | } | |
1003 | ||
d5a72d2f | 1004 | //by marshmellow |
1005 | int CmdLFfind(const char *Cmd) | |
1006 | { | |
1007 | int ans=0; | |
b4fb11ba | 1008 | char cmdp = param_getchar(Cmd, 0); |
1009 | char testRaw = param_getchar(Cmd, 1); | |
1010 | if (strlen(Cmd) > 2 || cmdp == 'h' || cmdp == 'H') { | |
1011 | PrintAndLog("Usage: lf search <0|1> [u]"); | |
1012 | PrintAndLog(" <use data from Graphbuffer> , if not set, try reading data from tag."); | |
e770c648 | 1013 | PrintAndLog(" [Search for Unknown tags] , if not set, reads only known tags."); |
b4fb11ba | 1014 | PrintAndLog(""); |
1015 | PrintAndLog(" sample: lf search = try reading data from tag & search for known tags"); | |
1016 | PrintAndLog(" : lf search 1 = use data from GraphBuffer & search for known tags"); | |
e770c648 | 1017 | PrintAndLog(" : lf search u = try reading data from tag & search for known and unknown tags"); |
1018 | PrintAndLog(" : lf search 1 u = use data from GraphBuffer & search for known and unknown tags"); | |
1019 | ||
b4fb11ba | 1020 | return 0; |
1021 | } | |
b915fda3 | 1022 | |
b4fb11ba | 1023 | if (!offline && (cmdp != '1')){ |
d5a72d2f | 1024 | ans=CmdLFRead(""); |
84871873 | 1025 | ans=CmdSamples("20000"); |
b4fb11ba | 1026 | } else if (GraphTraceLen < 1000) { |
1027 | PrintAndLog("Data in Graphbuffer was too small."); | |
1028 | return 0; | |
d5a72d2f | 1029 | } |
e770c648 | 1030 | if (cmdp == 'u' || cmdp == 'U') testRaw = 'u'; |
84871873 | 1031 | PrintAndLog("NOTE: some demods output possible binary\n if it finds something that looks like a tag"); |
e770c648 | 1032 | PrintAndLog("False Positives ARE possible\n"); |
ec75f5c1 | 1033 | PrintAndLog("\nChecking for known tags:\n"); |
d5a72d2f | 1034 | ans=CmdFSKdemodIO(""); |
84871873 | 1035 | if (ans>0) { |
ec75f5c1 | 1036 | PrintAndLog("\nValid IO Prox ID Found!"); |
84871873 | 1037 | return 1; |
1038 | } | |
ec75f5c1 | 1039 | ans=CmdFSKdemodPyramid(""); |
1e090a61 | 1040 | if (ans>0) { |
ec75f5c1 | 1041 | PrintAndLog("\nValid Pyramid ID Found!"); |
1e090a61 | 1042 | return 1; |
1043 | } | |
ec75f5c1 | 1044 | ans=CmdFSKdemodParadox(""); |
1e090a61 | 1045 | if (ans>0) { |
ec75f5c1 | 1046 | PrintAndLog("\nValid Paradox ID Found!"); |
1047 | return 1; | |
1048 | } | |
1049 | ans=CmdFSKdemodAWID(""); | |
1050 | if (ans>0) { | |
1051 | PrintAndLog("\nValid AWID ID Found!"); | |
1e090a61 | 1052 | return 1; |
1053 | } | |
84871873 | 1054 | ans=CmdFSKdemodHID(""); |
1055 | if (ans>0) { | |
ec75f5c1 | 1056 | PrintAndLog("\nValid HID Prox ID Found!"); |
84871873 | 1057 | return 1; |
1058 | } | |
d5a72d2f | 1059 | //add psk and indala |
ec75f5c1 | 1060 | ans=CmdIndalaDecode(""); |
84871873 | 1061 | if (ans>0) { |
ec75f5c1 | 1062 | PrintAndLog("\nValid Indala ID Found!"); |
84871873 | 1063 | return 1; |
1064 | } | |
e770c648 | 1065 | ans=CmdAskEM410xDemod(""); |
84871873 | 1066 | if (ans>0) { |
ec75f5c1 | 1067 | PrintAndLog("\nValid EM410x ID Found!"); |
84871873 | 1068 | return 1; |
1069 | } | |
8d960002 | 1070 | ans=CmdG_Prox_II_Demod(""); |
1071 | if (ans>0) { | |
1072 | PrintAndLog("\nValid G Prox II ID Found!"); | |
1073 | return 1; | |
1074 | } | |
e770c648 | 1075 | PrintAndLog("\nNo Known Tags Found!\n"); |
1076 | if (testRaw=='u' || testRaw=='U'){ | |
1077 | //test unknown tag formats (raw mode) | |
1078 | PrintAndLog("\nChecking for Unknown tags:\n"); | |
f3bf15e4 | 1079 | ans=CmdDetectClockRate("f"); |
1080 | if (ans != 0){ //fsk | |
e770c648 | 1081 | ans=CmdFSKrawdemod(""); |
1082 | if (ans>0) { | |
1083 | PrintAndLog("\nUnknown FSK Modulated Tag Found!"); | |
1084 | return 1; | |
b4fb11ba | 1085 | } |
e770c648 | 1086 | } |
1087 | ans=Cmdaskmandemod(""); | |
1088 | if (ans>0) { | |
1089 | PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!"); | |
1090 | return 1; | |
b4fb11ba | 1091 | } |
e770c648 | 1092 | ans=CmdPSK1rawDemod(""); |
1093 | if (ans>0) { | |
1094 | PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data psk2rawdemod'"); | |
1095 | PrintAndLog("\nCould also be PSK3 - [currently not supported]"); | |
1096 | PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod"); | |
1097 | return 1; | |
b4fb11ba | 1098 | } |
e770c648 | 1099 | PrintAndLog("\nNo Data Found!\n"); |
1100 | } | |
d5a72d2f | 1101 | return 0; |
1102 | } | |
1103 | ||
7fe9b0b7 | 1104 | static command_t CommandTable[] = |
1105 | { | |
1106 | {"help", CmdHelp, 1, "This help"}, | |
1107 | {"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)"}, | |
37239a7c | 1108 | {"em4x", CmdLFEM4X, 1, "{ EM4X RFIDs... }"}, |
31abe49f | 1109 | {"config", CmdLFSetConfig, 0, "Set config for LF sampling, bit/sample, decimation, frequency"}, |
7fe9b0b7 | 1110 | {"flexdemod", CmdFlexdemod, 1, "Demodulate samples for FlexPass"}, |
37239a7c | 1111 | {"hid", CmdLFHID, 1, "{ HID RFIDs... }"}, |
083ca3de | 1112 | {"io", CmdLFIO, 1, "{ ioProx tags... }"}, |
7fe9b0b7 | 1113 | {"indalademod", CmdIndalaDemod, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"}, |
083ca3de | 1114 | {"indalaclone", CmdIndalaClone, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"}, |
31abe49f | 1115 | {"read", CmdLFRead, 0, "Read 125/134 kHz LF ID-only tag. Do 'lf read h' for help"}, |
b4fb11ba | 1116 | {"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"}, |
7fe9b0b7 | 1117 | {"sim", CmdLFSim, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"}, |
78f5b1a7 | 1118 | {"simask", CmdLFaskSim, 0, "[clock] [invert <1|0>] [manchester/raw <'m'|'r'>] [msg separator 's'] [d <hexdata>] -- Simulate LF ASK tag from demodbuffer or input"}, |
872e3d4d | 1119 | {"simfsk", CmdLFfskSim, 0, "[c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>] -- Simulate LF FSK tag from demodbuffer or input"}, |
1120 | {"simpsk", CmdLFpskSim, 0, "[1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>] -- Simulate LF PSK tag from demodbuffer or input"}, | |
7fe9b0b7 | 1121 | {"simbidir", CmdLFSimBidir, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"}, |
78f5b1a7 | 1122 | //{"simman", CmdLFSimManchester, 0, "<Clock> <Bitstream> [GAP] Simulate arbitrary Manchester LF tag"}, |
b014c96d | 1123 | {"snoop", CmdLFSnoop, 0, "['l'|'h'|<divisor>] [trigger threshold]-- Snoop LF (l:125khz, h:134khz)"}, |
37239a7c | 1124 | {"ti", CmdLFTI, 1, "{ TI RFIDs... }"}, |
db09cb3a | 1125 | {"hitag", CmdLFHitag, 1, "{ Hitag tags and transponders... }"}, |
7fe9b0b7 | 1126 | {"vchdemod", CmdVchDemod, 1, "['clone'] -- Demodulate samples for VeriChip"}, |
54a942b0 | 1127 | {"t55xx", CmdLFT55XX, 1, "{ T55xx RFIDs... }"}, |
1128 | {"pcf7931", CmdLFPCF7931, 1, "{PCF7931 RFIDs...}"}, | |
7fe9b0b7 | 1129 | {NULL, NULL, 0, NULL} |
1130 | }; | |
1131 | ||
1132 | int CmdLF(const char *Cmd) | |
1133 | { | |
1134 | CmdsParse(CommandTable, Cmd); | |
1135 | return 0; | |
1136 | } | |
1137 | ||
1138 | int CmdHelp(const char *Cmd) | |
1139 | { | |
1140 | CmdsHelp(CommandTable); | |
1141 | return 0; | |
1142 | } |