]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfem4x.c
d371bf279067bc3fe2cd829d60860588de60ee3a
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"
24 #define LF_TRACE_BUFF_SIZE 12000
25 #define LF_BITSSTREAM_LEN 1000
27 char *global_em410xId
;
29 static int CmdHelp(const char *Cmd
);
31 /* Read the ID of an EM410x tag.
33 * 1111 1111 1 <-- standard non-repeatable header
34 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
36 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
37 * 0 <-- stop bit, end of tag
39 int CmdEM410xRead(const char *Cmd
)
41 int i
, j
, clock
, header
, rows
, bit
, hithigh
, hitlow
, first
, bit2idx
, high
, low
;
46 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
49 /* Detect high and lows and clock */
50 for (i
= 0; i
< GraphTraceLen
; i
++)
52 if (GraphBuffer
[i
] > high
)
53 high
= GraphBuffer
[i
];
54 else if (GraphBuffer
[i
] < low
)
59 clock
= GetClock(Cmd
, high
, 0);
62 /* parity for our 4 columns */
63 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
66 /* manchester demodulate */
68 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
74 /* Find out if we hit both high and low peaks */
75 for (j
= 0; j
< clock
; j
++)
77 if (GraphBuffer
[(i
* clock
) + j
] == high
)
79 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
82 /* it doesn't count if it's the first part of our read
83 because it's really just trailing from the last sequence */
84 if (first
&& (hithigh
|| hitlow
))
89 if (hithigh
&& hitlow
)
93 /* If we didn't hit both high and low peaks, we had a bit transition */
94 if (!hithigh
|| !hitlow
)
97 BitStream
[bit2idx
++] = bit
;
101 /* We go till 5 before the graph ends because we'll get that far below */
102 for (i
= 1; i
< bit2idx
- 5; i
++)
104 /* Step 2: We have our header but need our tag ID */
105 if (header
== 9 && rows
< 10)
107 /* Confirm parity is correct */
108 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
110 /* Read another byte! */
111 sprintf(id
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
112 sprintf(id2
+rows
, "%x", (8 * BitStream
[i
+3]) + (4 * BitStream
[i
+2]) + (2 * BitStream
[i
+1]) + (1 * BitStream
[i
]));
115 /* Keep parity info */
116 parity
[0] ^= BitStream
[i
];
117 parity
[1] ^= BitStream
[i
+1];
118 parity
[2] ^= BitStream
[i
+2];
119 parity
[3] ^= BitStream
[i
+3];
121 /* Move 4 bits ahead */
125 /* Damn, something wrong! reset */
128 PrintAndLog("Thought we had a valid tag but failed at word %d (i=%d)", rows
+ 1, i
);
130 /* Start back rows * 5 + 9 header bits, -1 to not start at same place */
131 i
-= 9 + (5 * rows
) - 5;
137 /* Step 3: Got our 40 bits! confirm column parity */
140 /* We need to make sure our 4 bits of parity are correct and we have a stop bit */
141 if (BitStream
[i
] == parity
[0] && BitStream
[i
+1] == parity
[1] &&
142 BitStream
[i
+2] == parity
[2] && BitStream
[i
+3] == parity
[3] &&
146 PrintAndLog("EM410x Tag ID: %s", id
);
147 PrintAndLog("Unique Tag ID: %s", id2
);
149 global_em410xId
= id
;
155 /* Crap! Incorrect parity or no stop bit, start all over */
160 /* Go back 59 bits (9 header bits + 10 rows at 4+1 parity) */
165 /* Step 1: get our header */
168 /* Need 9 consecutive 1's */
169 if (BitStream
[i
] == 1)
172 /* We don't have a header, not enough consecutive 1 bits */
178 /* 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
, h
, 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 sim <UID>");
208 PrintAndLog(" sample: lf em4x sim 0F0368568B");
212 if (param_gethex(Cmd
, 0, uid
, 10)) {
213 PrintAndLog("UID must include 10 HEX symbols");
217 PrintAndLog("Starting simulating with UID %02X %02X %02X %02X %02X", uid
[0],uid
[1],uid
[2],uid
[3],uid
[4]);
220 /* clock is 64 in EM410x tags */
223 /* clear our graph */
226 /* write it out a few times */
227 for (h
= 0; h
< 4; h
++)
229 /* write 9 start bits */
230 for (i
= 0; i
< 9; i
++)
231 AppendGraph(0, clock
, 1);
233 /* for each hex char */
234 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
235 for (i
= 0; i
< 10; i
++)
237 /* read each hex char */
238 sscanf(&Cmd
[i
], "%1x", &n
);
239 for (j
= 3; j
>= 0; j
--, n
/= 2)
242 /* append each bit */
243 AppendGraph(0, clock
, binary
[0]);
244 AppendGraph(0, clock
, binary
[1]);
245 AppendGraph(0, clock
, binary
[2]);
246 AppendGraph(0, clock
, binary
[3]);
248 /* append parity bit */
249 AppendGraph(0, clock
, binary
[0] ^ binary
[1] ^ binary
[2] ^ binary
[3]);
251 /* keep track of column parity */
252 parity
[0] ^= binary
[0];
253 parity
[1] ^= binary
[1];
254 parity
[2] ^= binary
[2];
255 parity
[3] ^= binary
[3];
259 AppendGraph(0, clock
, parity
[0]);
260 AppendGraph(0, clock
, parity
[1]);
261 AppendGraph(0, clock
, parity
[2]);
262 AppendGraph(0, clock
, parity
[3]);
265 AppendGraph(0, clock
, 0);
268 /* modulate that biatch */
269 CmdManchesterMod("64");
272 RepaintGraphWindow();
278 /* Function is equivalent of lf read + data samples + em410xread
279 * looped until an EM410x tag is detected
281 * Why is CmdSamples("16000")?
282 * TBD: Auto-grow sample size based on detected sample rate. IE: If the
283 * rate gets lower, then grow the number of samples
284 * Changed by martin, 4000 x 4 = 16000,
285 * see http://www.proxmark.org/forum/viewtopic.php?pid=7235#p7235
288 int CmdEM410xWatch(const char *Cmd
)
290 int read_h
= (*Cmd
== 'h');
294 printf("\naborted via keyboard!\n");
298 CmdLFRead(read_h
? "h" : "");
307 int CmdEM410xWatchnSpoof(const char *Cmd
)
310 PrintAndLog("# Replaying : %s",global_em410xId
);
311 CmdEM410xSim(global_em410xId
);
315 /* Read the transmitted data of an EM4x50 tag
318 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
319 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
320 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
321 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
322 * CCCCCCCC <- column parity bits
324 * LW <- Listen Window
326 * This pattern repeats for every block of data being transmitted.
327 * Transmission starts with two Listen Windows (LW - a modulated
328 * pattern of 320 cycles each (32/32/128/64/64)).
330 * Note that this data may or may not be the UID. It is whatever data
331 * is stored in the blocks defined in the control word First and Last
332 * Word Read values. UID is stored in block 32.
334 int CmdEM4x50Read(const char *Cmd
)
336 int i
, j
, startblock
, skip
, block
, start
, end
, low
, high
;
337 bool complete
= false;
338 int tmpbuff
[MAX_GRAPH_TRACE_LEN
/ 64];
342 memset(tmpbuff
, 0, MAX_GRAPH_TRACE_LEN
/ 64);
344 /* first get high and low values */
345 for (i
= 0; i
< GraphTraceLen
; i
++)
347 if (GraphBuffer
[i
] > high
)
348 high
= GraphBuffer
[i
];
349 else if (GraphBuffer
[i
] < low
)
350 low
= GraphBuffer
[i
];
353 /* populate a buffer with pulse lengths */
356 while (i
< GraphTraceLen
)
358 // measure from low to low
359 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
362 while ((GraphBuffer
[i
] < high
) && (i
<GraphTraceLen
))
364 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
366 if (j
>=(MAX_GRAPH_TRACE_LEN
/64)) {
369 tmpbuff
[j
++]= i
- start
;
372 /* look for data start - should be 2 pairs of LW (pulses of 192,128) */
375 for (i
= 0; i
< j
- 4 ; ++i
)
378 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
379 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
380 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
381 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
389 /* skip over the remainder of the LW */
390 skip
+= tmpbuff
[i
+1]+tmpbuff
[i
+2];
391 while (skip
< MAX_GRAPH_TRACE_LEN
&& GraphBuffer
[skip
] > low
)
395 /* now do it again to find the end */
397 for (i
+= 3; i
< j
- 4 ; ++i
)
400 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
401 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
402 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
403 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
411 PrintAndLog("Found data at sample: %i",skip
);
414 PrintAndLog("No data found!");
415 PrintAndLog("Try again with more samples.");
421 PrintAndLog("*** Warning!");
422 PrintAndLog("Partial data - no end found!");
423 PrintAndLog("Try again with more samples.");
426 /* get rid of leading crap */
427 sprintf(tmp
,"%i",skip
);
430 /* now work through remaining buffer printing out data blocks */
435 PrintAndLog("Block %i:", block
);
436 // mandemod routine needs to be split so we can call it for data
437 // just print for now for debugging
438 CmdManchesterDemod("i 64");
440 /* look for LW before start of next block */
441 for ( ; i
< j
- 4 ; ++i
)
444 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
445 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
448 while (GraphBuffer
[skip
] > low
)
451 sprintf(tmp
,"%i",skip
);
459 int CmdEM410xWrite(const char *Cmd
)
461 uint64_t id
= 0xFFFFFFFFFFFFFFFF; // invalid id value
462 int card
= 0xFF; // invalid card value
463 unsigned int clock
= 0; // invalid clock value
465 sscanf(Cmd
, "%" PRIx64
" %d %d", &id
, &card
, &clock
);
468 if (id
== 0xFFFFFFFFFFFFFFFF) {
469 PrintAndLog("Error! ID is required.\n");
472 if (id
>= 0x10000000000) {
473 PrintAndLog("Error! Given EM410x ID is longer than 40 bits.\n");
479 PrintAndLog("Error! Card type required.\n");
483 PrintAndLog("Error! Bad card type selected.\n");
494 // Allowed clock rates: 16, 32 and 64
495 if ((clock
!= 16) && (clock
!= 32) && (clock
!= 64)) {
496 PrintAndLog("Error! Clock rate %d not valid. Supported clock rates are 16, 32 and 64.\n", clock
);
502 PrintAndLog("Error! Clock rate is only supported on T55x7 tags.\n");
507 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
" (clock rate: %d)", "T55x7", id
, clock
);
508 // NOTE: We really should pass the clock in as a separate argument, but to
509 // provide for backwards-compatibility for older firmware, and to avoid
510 // having to add another argument to CMD_EM410X_WRITE_TAG, we just store
511 // the clock rate in bits 8-15 of the card value
512 card
= (card
& 0xFF) | (((uint64_t)clock
<< 8) & 0xFF00);
515 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
, "T5555", id
, clock
);
517 PrintAndLog("Error! Bad card type selected.\n");
521 UsbCommand c
= {CMD_EM410X_WRITE_TAG
, {card
, (uint32_t)(id
>> 32), (uint32_t)id
}};
527 int CmdReadWord(const char *Cmd
)
529 int Word
= -1; //default to invalid word
532 sscanf(Cmd
, "%d", &Word
);
534 if ( (Word
> 15) | (Word
< 0) ) {
535 PrintAndLog("Word must be between 0 and 15");
539 PrintAndLog("Reading word %d", Word
);
541 c
.cmd
= CMD_EM4X_READ_WORD
;
542 c
.d
.asBytes
[0] = 0x0; //Normal mode
547 WaitForResponse(CMD_ACK
, NULL
);
549 uint8_t data
[LF_TRACE_BUFF_SIZE
] = {0x00};
551 GetFromBigBuf(data
,LF_TRACE_BUFF_SIZE
,3560); //3560 -- should be offset..
552 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
554 for (int j
= 0; j
< LF_TRACE_BUFF_SIZE
; j
++) {
555 GraphBuffer
[j
] = ((int)data
[j
]);
557 GraphTraceLen
= LF_TRACE_BUFF_SIZE
;
559 uint8_t bits
[LF_BITSSTREAM_LEN
] = {0x00};
560 uint8_t * bitstream
= bits
;
561 manchester_decode(GraphBuffer
, LF_TRACE_BUFF_SIZE
, bitstream
,LF_BITSSTREAM_LEN
);
562 RepaintGraphWindow();
566 int CmdReadWordPWD(const char *Cmd
)
568 int Word
= -1; //default to invalid word
569 int Password
= 0xFFFFFFFF; //default to blank password
572 sscanf(Cmd
, "%d %x", &Word
, &Password
);
574 if ( (Word
> 15) | (Word
< 0) ) {
575 PrintAndLog("Word must be between 0 and 15");
579 PrintAndLog("Reading word %d with password %08X", Word
, Password
);
581 c
.cmd
= CMD_EM4X_READ_WORD
;
582 c
.d
.asBytes
[0] = 0x1; //Password mode
587 WaitForResponse(CMD_ACK
, NULL
);
589 uint8_t data
[LF_TRACE_BUFF_SIZE
] = {0x00};
591 GetFromBigBuf(data
,LF_TRACE_BUFF_SIZE
,3560); //3560 -- should be offset..
592 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
594 for (int j
= 0; j
< LF_TRACE_BUFF_SIZE
; j
++) {
595 GraphBuffer
[j
] = ((int)data
[j
]);
597 GraphTraceLen
= LF_TRACE_BUFF_SIZE
;
599 uint8_t bits
[LF_BITSSTREAM_LEN
] = {0x00};
600 uint8_t * bitstream
= bits
;
601 manchester_decode(GraphBuffer
, LF_TRACE_BUFF_SIZE
, bitstream
, LF_BITSSTREAM_LEN
);
602 RepaintGraphWindow();
606 int CmdWriteWord(const char *Cmd
)
608 int Word
= 16; //default to invalid block
609 int Data
= 0xFFFFFFFF; //default to blank data
612 sscanf(Cmd
, "%x %d", &Data
, &Word
);
615 PrintAndLog("Word must be between 0 and 15");
619 PrintAndLog("Writing word %d with data %08X", Word
, Data
);
621 c
.cmd
= CMD_EM4X_WRITE_WORD
;
622 c
.d
.asBytes
[0] = 0x0; //Normal mode
630 int CmdWriteWordPWD(const char *Cmd
)
632 int Word
= 16; //default to invalid word
633 int Data
= 0xFFFFFFFF; //default to blank data
634 int Password
= 0xFFFFFFFF; //default to blank password
637 sscanf(Cmd
, "%x %d %x", &Data
, &Word
, &Password
);
640 PrintAndLog("Word must be between 0 and 15");
644 PrintAndLog("Writing word %d with data %08X and password %08X", Word
, Data
, Password
);
646 c
.cmd
= CMD_EM4X_WRITE_WORD
;
647 c
.d
.asBytes
[0] = 0x1; //Password mode
655 static command_t CommandTable
[] =
657 {"help", CmdHelp
, 1, "This help"},
658 {"410xread", CmdEM410xRead
, 1, "[clock rate] -- Extract ID from EM410x tag"},
659 {"410xsim", CmdEM410xSim
, 0, "<UID> -- Simulate EM410x tag"},
660 {"410xwatch", CmdEM410xWatch
, 0, "['h'] -- Watches for EM410x 125/134 kHz tags (option 'h' for 134)"},
661 {"410xspoof", CmdEM410xWatchnSpoof
, 0, "['h'] --- Watches for EM410x 125/134 kHz tags, and replays them. (option 'h' for 134)" },
662 {"410xwrite", CmdEM410xWrite
, 1, "<UID> <'0' T5555> <'1' T55x7> [clock rate] -- Write EM410x UID to T5555(Q5) or T55x7 tag, optionally setting clock rate"},
663 {"4x50read", CmdEM4x50Read
, 1, "Extract data from EM4x50 tag"},
664 {"rd", CmdReadWord
, 1, "<Word 1-15> -- Read EM4xxx word data"},
665 {"rdpwd", CmdReadWordPWD
, 1, "<Word 1-15> <Password> -- Read EM4xxx word data in password mode "},
666 {"wr", CmdWriteWord
, 1, "<Data> <Word 1-15> -- Write EM4xxx word data"},
667 {"wrpwd", CmdWriteWordPWD
, 1, "<Data> <Word 1-15> <Password> -- Write EM4xxx word data in password mode"},
668 {NULL
, NULL
, 0, NULL
}
671 int CmdLFEM4X(const char *Cmd
)
673 CmdsParse(CommandTable
, Cmd
);
677 int CmdHelp(const char *Cmd
)
679 CmdsHelp(CommandTable
);