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