]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfem4x.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Low frequency EM4x commands
9 //-----------------------------------------------------------------------------
14 #include "proxmark3.h"
18 #include "cmdparser.h"
21 #include "cmdlfem4x.h"
23 static int CmdHelp(const char *Cmd
);
25 int CmdEMdemodASK(const char *Cmd
)
27 char cmdp
= param_getchar(Cmd
, 0);
28 int findone
= (cmdp
== '1') ? 1 : 0;
29 UsbCommand c
={CMD_EM410X_DEMOD
};
35 /* Read the ID of an EM410x tag.
37 * 1111 1111 1 <-- standard non-repeatable header
38 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
40 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
41 * 0 <-- stop bit, end of tag
43 int CmdEM410xRead(const char *Cmd
)
45 int i
, j
, clock
, header
, rows
, bit
, hithigh
, hitlow
, first
, bit2idx
, high
, low
;
48 char id2
[11] = {0x00};
50 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
53 /* Detect high and lows and clock */
54 for (i
= 0; i
< GraphTraceLen
; i
++)
56 if (GraphBuffer
[i
] > high
)
57 high
= GraphBuffer
[i
];
58 else if (GraphBuffer
[i
] < low
)
63 clock
= GetClock(Cmd
, high
, 0);
65 /* parity for our 4 columns */
66 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
69 /* manchester demodulate */
71 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
77 /* Find out if we hit both high and low peaks */
78 for (j
= 0; j
< clock
; j
++)
80 if (GraphBuffer
[(i
* clock
) + j
] == high
)
82 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
85 /* it doesn't count if it's the first part of our read
86 because it's really just trailing from the last sequence */
87 if (first
&& (hithigh
|| hitlow
))
92 if (hithigh
&& hitlow
)
96 /* If we didn't hit both high and low peaks, we had a bit transition */
97 if (!hithigh
|| !hitlow
)
100 BitStream
[bit2idx
++] = bit
;
104 /* We go till 5 before the graph ends because we'll get that far below */
105 for (i
= 1; i
< bit2idx
- 5; i
++)
107 /* Step 2: We have our header but need our tag ID */
108 if (header
== 9 && rows
< 10)
110 /* Confirm parity is correct */
111 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
113 /* Read another byte! */
114 sprintf(id
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
115 sprintf(id2
+rows
, "%x", (8 * BitStream
[i
+3]) + (4 * BitStream
[i
+2]) + (2 * BitStream
[i
+1]) + (1 * BitStream
[i
]));
118 /* Keep parity info */
119 parity
[0] ^= BitStream
[i
];
120 parity
[1] ^= BitStream
[i
+1];
121 parity
[2] ^= BitStream
[i
+2];
122 parity
[3] ^= BitStream
[i
+3];
124 /* Move 4 bits ahead */
128 /* Damn, something wrong! reset */
131 PrintAndLog("Thought we had a valid tag but failed at word %d (i=%d)", rows
+ 1, i
);
133 /* Start back rows * 5 + 9 header bits, -1 to not start at same place */
134 i
-= 9 + (5 * rows
) - 5;
140 /* Step 3: Got our 40 bits! confirm column parity */
143 /* We need to make sure our 4 bits of parity are correct and we have a stop bit */
144 if (BitStream
[i
] == parity
[0] && BitStream
[i
+1] == parity
[1] &&
145 BitStream
[i
+2] == parity
[2] && BitStream
[i
+3] == parity
[3] &&
149 PrintAndLog("EM410x Tag ID: %s", id
);
150 PrintAndLog("Unique Tag ID: %s", id2
);
156 /* Crap! Incorrect parity or no stop bit, start all over */
161 /* Go back 59 bits (9 header bits + 10 rows at 4+1 parity) */
166 /* Step 1: get our header */
169 /* Need 9 consecutive 1's */
170 if (BitStream
[i
] == 1)
173 /* We don't have a header, not enough consecutive 1 bits */
179 /* if we've already retested after flipping bits, return */
183 /* if this didn't work, try flipping bits */
184 for (i
= 0; i
< bit2idx
; i
++)
190 /* emulate an EM410X tag
192 * 1111 1111 1 <-- standard non-repeatable header
193 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
195 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
196 * 0 <-- stop bit, end of tag
198 int CmdEM410xSim(const char *Cmd
)
200 int i
, n
, j
, binary
[4], parity
[4];
202 char cmdp
= param_getchar(Cmd
, 0);
203 uint8_t uid
[5] = {0x00};
205 if (cmdp
== 'h' || cmdp
== 'H') {
206 PrintAndLog("Usage: lf em4x 410xsim <UID>");
208 PrintAndLog(" sample: lf em4x 410xsim 0F0368568B");
212 if (param_gethex(Cmd
, 0, uid
, 10)) {
213 PrintAndLog("UID must include 10 HEX symbols");
217 PrintAndLog("Starting simulating UID %02X%02X%02X%02X%02X", uid
[0],uid
[1],uid
[2],uid
[3],uid
[4]);
218 PrintAndLog("Press pm3-button to about simulation");
220 /* clock is 64 in EM410x tags */
223 /* clear our graph */
226 /* write 9 start bits */
227 for (i
= 0; i
< 9; i
++)
228 AppendGraph(0, clock
, 1);
230 /* for each hex char */
231 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
232 for (i
= 0; i
< 10; i
++)
234 /* read each hex char */
235 sscanf(&Cmd
[i
], "%1x", &n
);
236 for (j
= 3; j
>= 0; j
--, n
/= 2)
239 /* append each bit */
240 AppendGraph(0, clock
, binary
[0]);
241 AppendGraph(0, clock
, binary
[1]);
242 AppendGraph(0, clock
, binary
[2]);
243 AppendGraph(0, clock
, binary
[3]);
245 /* append parity bit */
246 AppendGraph(0, clock
, binary
[0] ^ binary
[1] ^ binary
[2] ^ binary
[3]);
248 /* keep track of column parity */
249 parity
[0] ^= binary
[0];
250 parity
[1] ^= binary
[1];
251 parity
[2] ^= binary
[2];
252 parity
[3] ^= binary
[3];
256 AppendGraph(0, clock
, parity
[0]);
257 AppendGraph(0, clock
, parity
[1]);
258 AppendGraph(0, clock
, parity
[2]);
259 AppendGraph(0, clock
, parity
[3]);
262 AppendGraph(1, clock
, 0);
264 CmdLFSim("240"); //240 start_gap.
268 /* Function is equivalent of lf read + data samples + em410xread
269 * looped until an EM410x tag is detected
271 * Why is CmdSamples("16000")?
272 * TBD: Auto-grow sample size based on detected sample rate. IE: If the
273 * rate gets lower, then grow the number of samples
274 * Changed by martin, 4000 x 4 = 16000,
275 * see http://www.proxmark.org/forum/viewtopic.php?pid=7235#p7235
278 int CmdEM410xWatch(const char *Cmd
)
280 char cmdp
= param_getchar(Cmd
, 0);
281 int read_h
= (cmdp
== 'h');
284 printf("\naborted via keyboard!\n");
288 CmdLFRead(read_h
? "h" : "");
296 /* Read the transmitted data of an EM4x50 tag
299 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
300 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
301 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
302 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
303 * CCCCCCCC <- column parity bits
305 * LW <- Listen Window
307 * This pattern repeats for every block of data being transmitted.
308 * Transmission starts with two Listen Windows (LW - a modulated
309 * pattern of 320 cycles each (32/32/128/64/64)).
311 * Note that this data may or may not be the UID. It is whatever data
312 * is stored in the blocks defined in the control word First and Last
313 * Word Read values. UID is stored in block 32.
315 int CmdEM4x50Read(const char *Cmd
)
317 int i
, j
, startblock
, skip
, block
, start
, end
, low
, high
;
318 bool complete
= false;
319 int tmpbuff
[MAX_GRAPH_TRACE_LEN
/ 64];
323 memset(tmpbuff
, 0, MAX_GRAPH_TRACE_LEN
/ 64);
325 /* first get high and low values */
326 for (i
= 0; i
< GraphTraceLen
; i
++)
328 if (GraphBuffer
[i
] > high
)
329 high
= GraphBuffer
[i
];
330 else if (GraphBuffer
[i
] < low
)
331 low
= GraphBuffer
[i
];
334 /* populate a buffer with pulse lengths */
337 while (i
< GraphTraceLen
)
339 // measure from low to low
340 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
343 while ((GraphBuffer
[i
] < high
) && (i
<GraphTraceLen
))
345 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
347 if (j
>=(MAX_GRAPH_TRACE_LEN
/64)) {
350 tmpbuff
[j
++]= i
- start
;
353 /* look for data start - should be 2 pairs of LW (pulses of 192,128) */
356 for (i
= 0; i
< j
- 4 ; ++i
)
359 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
360 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
361 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
362 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
370 /* skip over the remainder of the LW */
371 skip
+= tmpbuff
[i
+1]+tmpbuff
[i
+2];
372 while (skip
< MAX_GRAPH_TRACE_LEN
&& GraphBuffer
[skip
] > low
)
376 /* now do it again to find the end */
378 for (i
+= 3; i
< j
- 4 ; ++i
)
381 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
382 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
383 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
384 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
392 PrintAndLog("Found data at sample: %i",skip
);
395 PrintAndLog("No data found!");
396 PrintAndLog("Try again with more samples.");
402 PrintAndLog("*** Warning!");
403 PrintAndLog("Partial data - no end found!");
404 PrintAndLog("Try again with more samples.");
407 /* get rid of leading crap */
408 sprintf(tmp
,"%i",skip
);
411 /* now work through remaining buffer printing out data blocks */
416 PrintAndLog("Block %i:", block
);
417 // mandemod routine needs to be split so we can call it for data
418 // just print for now for debugging
419 CmdManchesterDemod("i 64");
421 /* look for LW before start of next block */
422 for ( ; i
< j
- 4 ; ++i
)
425 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
426 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
429 while (GraphBuffer
[skip
] > low
)
432 sprintf(tmp
,"%i",skip
);
440 int CmdEM410xWrite(const char *Cmd
)
442 uint64_t id
= 0xFFFFFFFFFFFFFFFF; // invalid id value
443 int card
= 0xFF; // invalid card value
444 unsigned int clock
= 0; // invalid clock value
446 sscanf(Cmd
, "%" PRIx64
" %d %d", &id
, &card
, &clock
);
449 if (id
== 0xFFFFFFFFFFFFFFFF) {
450 PrintAndLog("Error! ID is required.\n");
453 if (id
>= 0x10000000000) {
454 PrintAndLog("Error! Given EM410x ID is longer than 40 bits.\n");
460 PrintAndLog("Error! Card type required.\n");
464 PrintAndLog("Error! Bad card type selected.\n");
475 // Allowed clock rates: 16, 32 and 64
476 if ((clock
!= 16) && (clock
!= 32) && (clock
!= 64)) {
477 PrintAndLog("Error! Clock rate %d not valid. Supported clock rates are 16, 32 and 64.\n", clock
);
483 PrintAndLog("Error! Clock rate is only supported on T55x7 tags.\n");
488 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
" (clock rate: %d)", "T55x7", id
, clock
);
489 // NOTE: We really should pass the clock in as a separate argument, but to
490 // provide for backwards-compatibility for older firmware, and to avoid
491 // having to add another argument to CMD_EM410X_WRITE_TAG, we just store
492 // the clock rate in bits 8-15 of the card value
493 card
= (card
& 0xFF) | (((uint64_t)clock
<< 8) & 0xFF00);
496 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
, "T5555", id
, clock
);
498 PrintAndLog("Error! Bad card type selected.\n");
502 UsbCommand c
= {CMD_EM410X_WRITE_TAG
, {card
, (uint32_t)(id
>> 32), (uint32_t)id
}};
508 int CmdReadWord(const char *Cmd
)
510 int Word
= 16; //default to invalid word
513 sscanf(Cmd
, "%d", &Word
);
516 PrintAndLog("Word must be between 0 and 15");
520 PrintAndLog("Reading word %d", Word
);
522 c
.cmd
= CMD_EM4X_READ_WORD
;
523 c
.d
.asBytes
[0] = 0x0; //Normal mode
531 int CmdReadWordPWD(const char *Cmd
)
533 int Word
= 16; //default to invalid word
534 int Password
= 0xFFFFFFFF; //default to blank password
537 sscanf(Cmd
, "%d %x", &Word
, &Password
);
540 PrintAndLog("Word must be between 0 and 15");
544 PrintAndLog("Reading word %d with password %08X", Word
, Password
);
546 c
.cmd
= CMD_EM4X_READ_WORD
;
547 c
.d
.asBytes
[0] = 0x1; //Password mode
555 int CmdWriteWord(const char *Cmd
)
557 int Word
= 16; //default to invalid block
558 int Data
= 0xFFFFFFFF; //default to blank data
561 sscanf(Cmd
, "%x %d", &Data
, &Word
);
564 PrintAndLog("Word must be between 0 and 15");
568 PrintAndLog("Writting word %d with data %08X", Word
, Data
);
570 c
.cmd
= CMD_EM4X_WRITE_WORD
;
571 c
.d
.asBytes
[0] = 0x0; //Normal mode
579 int CmdWriteWordPWD(const char *Cmd
)
581 int Word
= 8; //default to invalid word
582 int Data
= 0xFFFFFFFF; //default to blank data
583 int Password
= 0xFFFFFFFF; //default to blank password
586 sscanf(Cmd
, "%x %d %x", &Data
, &Word
, &Password
);
589 PrintAndLog("Word must be between 0 and 15");
593 PrintAndLog("Writting word %d with data %08X and password %08X", Word
, Data
, Password
);
595 c
.cmd
= CMD_EM4X_WRITE_WORD
;
596 c
.d
.asBytes
[0] = 0x1; //Password mode
606 static command_t CommandTable
[] =
608 {"help", CmdHelp
, 1, "This help"},
609 {"em410xdemod", CmdEMdemodASK
, 0, "[clock rate] -- Extract ID from EM410x tag"},
610 {"em410xread", CmdEM410xRead
, 1, "[clock rate] -- Extract ID from EM410x tag"},
611 {"em410xsim", CmdEM410xSim
, 0, "<UID> -- Simulate EM410x tag"},
612 {"em410xwatch", CmdEM410xWatch
, 0, "['h'] -- Watches for EM410x 125/134 kHz tags (option 'h' for 134)"},
613 {"em410xwrite", CmdEM410xWrite
, 1, "<UID> <'0' T5555> <'1' T55x7> [clock rate] -- Write EM410x UID to T5555(Q5) or T55x7 tag, optionally setting clock rate"},
614 {"em4x50read", CmdEM4x50Read
, 1, "Extract data from EM4x50 tag"},
615 {"readword", CmdReadWord
, 1, "<Word> -- Read EM4xxx word data"},
616 {"readwordPWD", CmdReadWordPWD
, 1, "<Word> <Password> -- Read EM4xxx word data in password mode"},
617 {"writeword", CmdWriteWord
, 1, "<Data> <Word> -- Write EM4xxx word data"},
618 {"writewordPWD", CmdWriteWordPWD
, 1, "<Data> <Word> <Password> -- Write EM4xxx word data in password mode"},
619 {NULL
, NULL
, 0, NULL
}
622 int CmdLFEM4X(const char *Cmd
)
624 CmdsParse(CommandTable
, Cmd
);
628 int CmdHelp(const char *Cmd
)
630 CmdsHelp(CommandTable
);