]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfem4x.c
862f20bdcac74bc45251dab3ebb368f448912f7e
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 "proxusb.h"
15 #include "proxmark3.h"
18 #include "cmdparser.h"
21 #include "cmdlfem4x.h"
23 static int CmdHelp(const char *Cmd
);
25 /* Read the ID of an EM410x tag.
27 * 1111 1111 1 <-- standard non-repeatable header
28 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
30 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
31 * 0 <-- stop bit, end of tag
33 int CmdEM410xRead(const char *Cmd
)
35 int i
, j
, clock
, header
, rows
, bit
, hithigh
, hitlow
, first
, bit2idx
, high
, low
;
39 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
42 /* Detect high and lows and clock */
43 for (i
= 0; i
< GraphTraceLen
; i
++)
45 if (GraphBuffer
[i
] > high
)
46 high
= GraphBuffer
[i
];
47 else if (GraphBuffer
[i
] < low
)
52 clock
= GetClock(Cmd
, high
, 0);
54 /* parity for our 4 columns */
55 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
58 /* manchester demodulate */
60 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
66 /* Find out if we hit both high and low peaks */
67 for (j
= 0; j
< clock
; j
++)
69 if (GraphBuffer
[(i
* clock
) + j
] == high
)
71 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
74 /* it doesn't count if it's the first part of our read
75 because it's really just trailing from the last sequence */
76 if (first
&& (hithigh
|| hitlow
))
81 if (hithigh
&& hitlow
)
85 /* If we didn't hit both high and low peaks, we had a bit transition */
86 if (!hithigh
|| !hitlow
)
89 BitStream
[bit2idx
++] = bit
;
93 /* We go till 5 before the graph ends because we'll get that far below */
94 for (i
= 1; i
< bit2idx
- 5; i
++)
96 /* Step 2: We have our header but need our tag ID */
97 if (header
== 9 && rows
< 10)
99 /* Confirm parity is correct */
100 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
102 /* Read another byte! */
103 sprintf(id
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
106 /* Keep parity info */
107 parity
[0] ^= BitStream
[i
];
108 parity
[1] ^= BitStream
[i
+1];
109 parity
[2] ^= BitStream
[i
+2];
110 parity
[3] ^= BitStream
[i
+3];
112 /* Move 4 bits ahead */
116 /* Damn, something wrong! reset */
119 PrintAndLog("Thought we had a valid tag but failed at word %d (i=%d)", rows
+ 1, i
);
121 /* Start back rows * 5 + 9 header bits, -1 to not start at same place */
122 i
-= 9 + (5 * rows
) - 5;
128 /* Step 3: Got our 40 bits! confirm column parity */
131 /* We need to make sure our 4 bits of parity are correct and we have a stop bit */
132 if (BitStream
[i
] == parity
[0] && BitStream
[i
+1] == parity
[1] &&
133 BitStream
[i
+2] == parity
[2] && BitStream
[i
+3] == parity
[3] &&
137 PrintAndLog("EM410x Tag ID: %s", id
);
143 /* Crap! Incorrect parity or no stop bit, start all over */
148 /* Go back 59 bits (9 header bits + 10 rows at 4+1 parity) */
153 /* Step 1: get our header */
156 /* Need 9 consecutive 1's */
157 if (BitStream
[i
] == 1)
160 /* We don't have a header, not enough consecutive 1 bits */
166 /* if we've already retested after flipping bits, return */
170 /* if this didn't work, try flipping bits */
171 for (i
= 0; i
< bit2idx
; i
++)
177 /* emulate an EM410X tag
179 * 1111 1111 1 <-- standard non-repeatable header
180 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
182 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
183 * 0 <-- stop bit, end of tag
185 int CmdEM410xSim(const char *Cmd
)
187 int i
, n
, j
, h
, binary
[4], parity
[4];
189 /* clock is 64 in EM410x tags */
192 /* clear our graph */
195 /* write it out a few times */
196 for (h
= 0; h
< 4; h
++)
198 /* write 9 start bits */
199 for (i
= 0; i
< 9; i
++)
200 AppendGraph(0, clock
, 1);
202 /* for each hex char */
203 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
204 for (i
= 0; i
< 10; i
++)
206 /* read each hex char */
207 sscanf(&Cmd
[i
], "%1x", &n
);
208 for (j
= 3; j
>= 0; j
--, n
/= 2)
211 /* append each bit */
212 AppendGraph(0, clock
, binary
[0]);
213 AppendGraph(0, clock
, binary
[1]);
214 AppendGraph(0, clock
, binary
[2]);
215 AppendGraph(0, clock
, binary
[3]);
217 /* append parity bit */
218 AppendGraph(0, clock
, binary
[0] ^ binary
[1] ^ binary
[2] ^ binary
[3]);
220 /* keep track of column parity */
221 parity
[0] ^= binary
[0];
222 parity
[1] ^= binary
[1];
223 parity
[2] ^= binary
[2];
224 parity
[3] ^= binary
[3];
228 AppendGraph(0, clock
, parity
[0]);
229 AppendGraph(0, clock
, parity
[1]);
230 AppendGraph(0, clock
, parity
[2]);
231 AppendGraph(0, clock
, parity
[3]);
234 AppendGraph(0, clock
, 0);
237 /* modulate that biatch */
238 CmdManchesterMod("");
241 RepaintGraphWindow();
247 /* Function is equivalent of loread + losamples + em410xread
248 * looped until an EM410x tag is detected */
249 int CmdEM410xWatch(const char *Cmd
)
251 int read_h
= (*Cmd
== 'h');
254 CmdLFRead(read_h
? "h" : "");
255 // 2000 samples is OK for clock=64, but not clock=32. Probably want
256 // 8000 for clock=16. Don't want to go too high since old HID driver
258 // TBD: Auto-grow sample size based on detected sample rate. IE: If the
259 // rate gets lower, then grow the number of samples
261 } while ( ! CmdEM410xRead(""));
265 /* Read the transmitted data of an EM4x50 tag
268 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
269 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
270 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
271 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
272 * CCCCCCCC <- column parity bits
274 * LW <- Listen Window
276 * This pattern repeats for every block of data being transmitted.
277 * Transmission starts with two Listen Windows (LW - a modulated
278 * pattern of 320 cycles each (32/32/128/64/64)).
280 * Note that this data may or may not be the UID. It is whatever data
281 * is stored in the blocks defined in the control word First and Last
282 * Word Read values. UID is stored in block 32.
284 int CmdEM4x50Read(const char *Cmd
)
286 int i
, j
, startblock
, skip
, block
, start
, end
, low
, high
;
287 bool complete
= false;
288 int tmpbuff
[MAX_GRAPH_TRACE_LEN
/ 64];
292 memset(tmpbuff
, 0, MAX_GRAPH_TRACE_LEN
/ 64);
294 /* first get high and low values */
295 for (i
= 0; i
< GraphTraceLen
; i
++)
297 if (GraphBuffer
[i
] > high
)
298 high
= GraphBuffer
[i
];
299 else if (GraphBuffer
[i
] < low
)
300 low
= GraphBuffer
[i
];
303 /* populate a buffer with pulse lengths */
306 while (i
< GraphTraceLen
)
308 // measure from low to low
309 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
312 while ((GraphBuffer
[i
] < high
) && (i
<GraphTraceLen
))
314 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
316 if (j
>(MAX_GRAPH_TRACE_LEN
/64)) {
319 tmpbuff
[j
++]= i
- start
;
322 /* look for data start - should be 2 pairs of LW (pulses of 192,128) */
325 for (i
= 0; i
< j
- 4 ; ++i
)
328 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
329 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
330 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
331 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
339 /* skip over the remainder of the LW */
340 skip
+= tmpbuff
[i
+1]+tmpbuff
[i
+2];
341 while (skip
< MAX_GRAPH_TRACE_LEN
&& GraphBuffer
[skip
] > low
)
345 /* now do it again to find the end */
347 for (i
+= 3; i
< j
- 4 ; ++i
)
350 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
351 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
352 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
353 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
361 PrintAndLog("Found data at sample: %i",skip
);
364 PrintAndLog("No data found!");
365 PrintAndLog("Try again with more samples.");
371 PrintAndLog("*** Warning!");
372 PrintAndLog("Partial data - no end found!");
373 PrintAndLog("Try again with more samples.");
376 /* get rid of leading crap */
377 sprintf(tmp
,"%i",skip
);
380 /* now work through remaining buffer printing out data blocks */
385 PrintAndLog("Block %i:", block
);
386 // mandemod routine needs to be split so we can call it for data
387 // just print for now for debugging
388 CmdManchesterDemod("i 64");
390 /* look for LW before start of next block */
391 for ( ; i
< j
- 4 ; ++i
)
394 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
395 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
398 while (GraphBuffer
[skip
] > low
)
401 sprintf(tmp
,"%i",skip
);
409 int CmdEM410xWrite(const char *Cmd
)
411 uint64_t id
= 0xFFFFFFFFFFFFFFFF; // invalid id value
412 unsigned int card
= 0xFF; // invalid card value
413 unsigned int clock
= 0; // invalid clock value
415 sscanf(Cmd
, "%" PRIx64
" %d %d", &id
, &card
, &clock
);
418 if (id
== 0xFFFFFFFFFFFFFFFF) {
419 PrintAndLog("Error! ID is required.\n");
422 if (id
>= 0x10000000000) {
423 PrintAndLog("Error! Given EM410x ID is longer than 40 bits.\n");
429 PrintAndLog("Error! Card type required.\n");
433 PrintAndLog("Error! Bad card type selected.\n");
444 // Allowed clock rates: 16, 32 and 64
445 if ((clock
!= 16) && (clock
!= 32) && (clock
!= 64)) {
446 PrintAndLog("Error! Clock rate %d not valid. Supported clock rates are 16, 32 and 64.\n", clock
);
452 PrintAndLog("Error! Clock rate is only supported on T55x7 tags.\n");
457 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
" (clock rate: %d)", "T55x7", id
, clock
);
458 // NOTE: We really should pass the clock in as a separate argument, but to
459 // provide for backwards-compatibility for older firmware, and to avoid
460 // having to add another argument to CMD_EM410X_WRITE_TAG, we just store
461 // the clock rate in bits 8-15 of the card value
462 card
= (card
& 0xFF) | (((uint64_t)clock
<< 8) & 0xFF00);
465 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
, "T5555", id
, clock
);
467 PrintAndLog("Error! Bad card type selected.\n");
471 UsbCommand c
= {CMD_EM410X_WRITE_TAG
, {card
, (uint32_t)(id
>> 32), (uint32_t)id
}};
477 int CmdReadWord(const char *Cmd
)
479 int Word
= 16; //default to invalid word
482 sscanf(Cmd
, "%d", &Word
);
485 PrintAndLog("Word must be between 0 and 15");
489 PrintAndLog("Reading word %d", Word
);
491 c
.cmd
= CMD_EM4X_READ_WORD
;
492 c
.d
.asBytes
[0] = 0x0; //Normal mode
500 int CmdReadWordPWD(const char *Cmd
)
502 int Word
= 16; //default to invalid word
503 int Password
= 0xFFFFFFFF; //default to blank password
506 sscanf(Cmd
, "%d %x", &Word
, &Password
);
509 PrintAndLog("Word must be between 0 and 15");
513 PrintAndLog("Reading word %d with password %08X", Word
, Password
);
515 c
.cmd
= CMD_EM4X_READ_WORD
;
516 c
.d
.asBytes
[0] = 0x1; //Password mode
524 int CmdWriteWord(const char *Cmd
)
526 int Word
= 16; //default to invalid block
527 int Data
= 0xFFFFFFFF; //default to blank data
530 sscanf(Cmd
, "%x %d", &Data
, &Word
);
533 PrintAndLog("Word must be between 0 and 15");
537 PrintAndLog("Writting word %d with data %08X", Word
, Data
);
539 c
.cmd
= CMD_EM4X_WRITE_WORD
;
540 c
.d
.asBytes
[0] = 0x0; //Normal mode
548 int CmdWriteWordPWD(const char *Cmd
)
550 int Word
= 8; //default to invalid word
551 int Data
= 0xFFFFFFFF; //default to blank data
552 int Password
= 0xFFFFFFFF; //default to blank password
555 sscanf(Cmd
, "%x %d %x", &Data
, &Word
, &Password
);
558 PrintAndLog("Word must be between 0 and 15");
562 PrintAndLog("Writting word %d with data %08X and password %08X", Word
, Data
, Password
);
564 c
.cmd
= CMD_EM4X_WRITE_WORD
;
565 c
.d
.asBytes
[0] = 0x1; //Password mode
575 static command_t CommandTable
[] =
577 {"help", CmdHelp
, 1, "This help"},
578 {"em410xread", CmdEM410xRead
, 1, "[clock rate] -- Extract ID from EM410x tag"},
579 {"em410xsim", CmdEM410xSim
, 0, "<UID> -- Simulate EM410x tag"},
580 {"em410xwatch", CmdEM410xWatch
, 0, "['h'] -- Watches for EM410x 125/134 kHz tags (option 'h' for 134)"},
581 {"em410xwrite", CmdEM410xWrite
, 1, "<UID> <'0' T5555> <'1' T55x7> [clock rate] -- Write EM410x UID to T5555(Q5) or T55x7 tag, optionally setting clock rate"},
582 {"em4x50read", CmdEM4x50Read
, 1, "Extract data from EM4x50 tag"},
583 {"readword", CmdReadWord
, 1, "<Word> -- Read EM4xxx word data"},
584 {"readwordPWD", CmdReadWordPWD
, 1, "<Word> <Password> -- Read EM4xxx word data in password mode"},
585 {"writeword", CmdWriteWord
, 1, "<Data> <Word> -- Write EM4xxx word data"},
586 {"writewordPWD", CmdWriteWordPWD
, 1, "<Data> <Word> <Password> -- Write EM4xxx word data in password mode"},
587 {NULL
, NULL
, 0, NULL
}
590 int CmdLFEM4X(const char *Cmd
)
592 CmdsParse(CommandTable
, Cmd
);
596 int CmdHelp(const char *Cmd
)
598 CmdsHelp(CommandTable
);