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