]>
git.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"
24 #define LF_TRACE_BUFF_SIZE 12000
26 char *global_em410xId
;
28 static int CmdHelp(const char *Cmd
);
30 /* Read the ID of an EM410x tag.
32 * 1111 1111 1 <-- standard non-repeatable header
33 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
35 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
36 * 0 <-- stop bit, end of tag
38 int CmdEM410xRead(const char *Cmd
)
40 int i
, j
, clock
, header
, rows
, bit
, hithigh
, hitlow
, first
, bit2idx
, high
, low
;
45 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
48 /* Detect high and lows and clock */
49 for (i
= 0; i
< GraphTraceLen
; i
++)
51 if (GraphBuffer
[i
] > high
)
52 high
= GraphBuffer
[i
];
53 else if (GraphBuffer
[i
] < low
)
58 clock
= GetClock(Cmd
, high
, 0);
60 /* parity for our 4 columns */
61 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
64 /* manchester demodulate */
66 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
72 /* Find out if we hit both high and low peaks */
73 for (j
= 0; j
< clock
; j
++)
75 if (GraphBuffer
[(i
* clock
) + j
] == high
)
77 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
80 /* it doesn't count if it's the first part of our read
81 because it's really just trailing from the last sequence */
82 if (first
&& (hithigh
|| hitlow
))
87 if (hithigh
&& hitlow
)
91 /* If we didn't hit both high and low peaks, we had a bit transition */
92 if (!hithigh
|| !hitlow
)
95 BitStream
[bit2idx
++] = bit
;
99 /* We go till 5 before the graph ends because we'll get that far below */
100 for (i
= 1; i
< bit2idx
- 5; i
++)
102 /* Step 2: We have our header but need our tag ID */
103 if (header
== 9 && rows
< 10)
105 /* Confirm parity is correct */
106 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
108 /* Read another byte! */
109 sprintf(id
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
110 sprintf(id2
+rows
, "%x", (8 * BitStream
[i
+3]) + (4 * BitStream
[i
+2]) + (2 * BitStream
[i
+1]) + (1 * BitStream
[i
]));
113 /* Keep parity info */
114 parity
[0] ^= BitStream
[i
];
115 parity
[1] ^= BitStream
[i
+1];
116 parity
[2] ^= BitStream
[i
+2];
117 parity
[3] ^= BitStream
[i
+3];
119 /* Move 4 bits ahead */
123 /* Damn, something wrong! reset */
126 PrintAndLog("Thought we had a valid tag but failed at word %d (i=%d)", rows
+ 1, i
);
128 /* Start back rows * 5 + 9 header bits, -1 to not start at same place */
129 i
-= 9 + (5 * rows
) - 5;
135 /* Step 3: Got our 40 bits! confirm column parity */
138 /* We need to make sure our 4 bits of parity are correct and we have a stop bit */
139 if (BitStream
[i
] == parity
[0] && BitStream
[i
+1] == parity
[1] &&
140 BitStream
[i
+2] == parity
[2] && BitStream
[i
+3] == parity
[3] &&
144 PrintAndLog("EM410x Tag ID: %s", id
);
145 PrintAndLog("Unique Tag ID: %s", id2
);
147 global_em410xId
= id
;
153 /* Crap! Incorrect parity or no stop bit, start all over */
158 /* Go back 59 bits (9 header bits + 10 rows at 4+1 parity) */
163 /* Step 1: get our header */
166 /* Need 9 consecutive 1's */
167 if (BitStream
[i
] == 1)
170 /* We don't have a header, not enough consecutive 1 bits */
176 /* if we've already retested after flipping bits, return */
181 /* if this didn't work, try flipping bits */
182 for (i
= 0; i
< bit2idx
; i
++)
188 /* emulate an EM410X tag
190 * 1111 1111 1 <-- standard non-repeatable header
191 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
193 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
194 * 0 <-- stop bit, end of tag
196 int CmdEM410xSim(const char *Cmd
)
198 int i
, n
, j
, h
, binary
[4], parity
[4];
200 /* clock is 64 in EM410x tags */
203 /* clear our graph */
206 /* write it out a few times */
207 for (h
= 0; h
< 4; h
++)
209 /* write 9 start bits */
210 for (i
= 0; i
< 9; i
++)
211 AppendGraph(0, clock
, 1);
213 /* for each hex char */
214 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
215 for (i
= 0; i
< 10; i
++)
217 /* read each hex char */
218 sscanf(&Cmd
[i
], "%1x", &n
);
219 for (j
= 3; j
>= 0; j
--, n
/= 2)
222 /* append each bit */
223 AppendGraph(0, clock
, binary
[0]);
224 AppendGraph(0, clock
, binary
[1]);
225 AppendGraph(0, clock
, binary
[2]);
226 AppendGraph(0, clock
, binary
[3]);
228 /* append parity bit */
229 AppendGraph(0, clock
, binary
[0] ^ binary
[1] ^ binary
[2] ^ binary
[3]);
231 /* keep track of column parity */
232 parity
[0] ^= binary
[0];
233 parity
[1] ^= binary
[1];
234 parity
[2] ^= binary
[2];
235 parity
[3] ^= binary
[3];
239 AppendGraph(0, clock
, parity
[0]);
240 AppendGraph(0, clock
, parity
[1]);
241 AppendGraph(0, clock
, parity
[2]);
242 AppendGraph(0, clock
, parity
[3]);
245 AppendGraph(0, clock
, 0);
248 /* modulate that biatch */
249 CmdManchesterMod("");
252 RepaintGraphWindow();
258 /* Function is equivalent of lf read + data samples + em410xread
259 * looped until an EM410x tag is detected
261 * Why is CmdSamples("16000")?
262 * TBD: Auto-grow sample size based on detected sample rate. IE: If the
263 * rate gets lower, then grow the number of samples
264 * Changed by martin, 4000 x 4 = 16000,
265 * see http://www.proxmark.org/forum/viewtopic.php?pid=7235#p7235
268 int CmdEM410xWatch(const char *Cmd
)
270 int read_h
= (*Cmd
== 'h');
273 CmdLFRead(read_h
? "h" : "");
281 int CmdEM410xWatchnSpoof(const char *Cmd
)
284 PrintAndLog("# Replaying : %s",global_em410xId
);
285 CmdEM410xSim(global_em410xId
);
289 /* Read the transmitted data of an EM4x50 tag
292 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
293 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
294 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
295 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
296 * CCCCCCCC <- column parity bits
298 * LW <- Listen Window
300 * This pattern repeats for every block of data being transmitted.
301 * Transmission starts with two Listen Windows (LW - a modulated
302 * pattern of 320 cycles each (32/32/128/64/64)).
304 * Note that this data may or may not be the UID. It is whatever data
305 * is stored in the blocks defined in the control word First and Last
306 * Word Read values. UID is stored in block 32.
308 int CmdEM4x50Read(const char *Cmd
)
310 int i
, j
, startblock
, skip
, block
, start
, end
, low
, high
;
311 bool complete
= false;
312 int tmpbuff
[MAX_GRAPH_TRACE_LEN
/ 64];
316 memset(tmpbuff
, 0, MAX_GRAPH_TRACE_LEN
/ 64);
318 /* first get high and low values */
319 for (i
= 0; i
< GraphTraceLen
; i
++)
321 if (GraphBuffer
[i
] > high
)
322 high
= GraphBuffer
[i
];
323 else if (GraphBuffer
[i
] < low
)
324 low
= GraphBuffer
[i
];
327 /* populate a buffer with pulse lengths */
330 while (i
< GraphTraceLen
)
332 // measure from low to low
333 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
336 while ((GraphBuffer
[i
] < high
) && (i
<GraphTraceLen
))
338 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
340 if (j
>(MAX_GRAPH_TRACE_LEN
/64)) {
343 tmpbuff
[j
++]= i
- start
;
346 /* look for data start - should be 2 pairs of LW (pulses of 192,128) */
349 for (i
= 0; i
< j
- 4 ; ++i
)
352 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
353 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
354 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
355 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
363 /* skip over the remainder of the LW */
364 skip
+= tmpbuff
[i
+1]+tmpbuff
[i
+2];
365 while (skip
< MAX_GRAPH_TRACE_LEN
&& GraphBuffer
[skip
] > low
)
369 /* now do it again to find the end */
371 for (i
+= 3; i
< j
- 4 ; ++i
)
374 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
375 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
376 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
377 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
385 PrintAndLog("Found data at sample: %i",skip
);
388 PrintAndLog("No data found!");
389 PrintAndLog("Try again with more samples.");
395 PrintAndLog("*** Warning!");
396 PrintAndLog("Partial data - no end found!");
397 PrintAndLog("Try again with more samples.");
400 /* get rid of leading crap */
401 sprintf(tmp
,"%i",skip
);
404 /* now work through remaining buffer printing out data blocks */
409 PrintAndLog("Block %i:", block
);
410 // mandemod routine needs to be split so we can call it for data
411 // just print for now for debugging
412 CmdManchesterDemod("i 64");
414 /* look for LW before start of next block */
415 for ( ; i
< j
- 4 ; ++i
)
418 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
419 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
422 while (GraphBuffer
[skip
] > low
)
425 sprintf(tmp
,"%i",skip
);
433 int CmdEM410xWrite(const char *Cmd
)
435 uint64_t id
= 0xFFFFFFFFFFFFFFFF; // invalid id value
436 int card
= 0xFF; // invalid card value
437 unsigned int clock
= 0; // invalid clock value
439 sscanf(Cmd
, "%" PRIx64
" %d %d", &id
, &card
, &clock
);
442 if (id
== 0xFFFFFFFFFFFFFFFF) {
443 PrintAndLog("Error! ID is required.\n");
446 if (id
>= 0x10000000000) {
447 PrintAndLog("Error! Given EM410x ID is longer than 40 bits.\n");
453 PrintAndLog("Error! Card type required.\n");
457 PrintAndLog("Error! Bad card type selected.\n");
468 // Allowed clock rates: 16, 32 and 64
469 if ((clock
!= 16) && (clock
!= 32) && (clock
!= 64)) {
470 PrintAndLog("Error! Clock rate %d not valid. Supported clock rates are 16, 32 and 64.\n", clock
);
476 PrintAndLog("Error! Clock rate is only supported on T55x7 tags.\n");
481 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
" (clock rate: %d)", "T55x7", id
, clock
);
482 // NOTE: We really should pass the clock in as a separate argument, but to
483 // provide for backwards-compatibility for older firmware, and to avoid
484 // having to add another argument to CMD_EM410X_WRITE_TAG, we just store
485 // the clock rate in bits 8-15 of the card value
486 card
= (card
& 0xFF) | (((uint64_t)clock
<< 8) & 0xFF00);
489 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
, "T5555", id
, clock
);
491 PrintAndLog("Error! Bad card type selected.\n");
495 UsbCommand c
= {CMD_EM410X_WRITE_TAG
, {card
, (uint32_t)(id
>> 32), (uint32_t)id
}};
501 int CmdReadWord(const char *Cmd
)
503 int Word
= -1; //default to invalid word
506 sscanf(Cmd
, "%d", &Word
);
508 if ( (Word
> 15) | (Word
< 0) ) {
509 PrintAndLog("Word must be between 0 and 15");
513 PrintAndLog("Reading word %d", Word
);
515 c
.cmd
= CMD_EM4X_READ_WORD
;
516 c
.d
.asBytes
[0] = 0x0; //Normal mode
521 WaitForResponse(CMD_ACK
, NULL
);
523 uint8_t data
[LF_TRACE_BUFF_SIZE
] = {0x00};
525 GetFromBigBuf(data
,LF_TRACE_BUFF_SIZE
,3560); //3560 -- should be offset..
526 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
528 for (int j
= 0; j
< LF_TRACE_BUFF_SIZE
; j
++) {
529 GraphBuffer
[j
] = ((int)data
[j
]);
531 GraphTraceLen
= LF_TRACE_BUFF_SIZE
;
533 uint8_t bits
[1000] = {0x00};
534 uint8_t * bitstream
= bits
;
535 manchester_decode(GraphBuffer
, LF_TRACE_BUFF_SIZE
, bitstream
);
536 RepaintGraphWindow();
540 int CmdReadWordPWD(const char *Cmd
)
542 int Word
= -1; //default to invalid word
543 int Password
= 0xFFFFFFFF; //default to blank password
546 sscanf(Cmd
, "%d %x", &Word
, &Password
);
548 if ( (Word
> 15) | (Word
< 0) ) {
549 PrintAndLog("Word must be between 0 and 15");
553 PrintAndLog("Reading word %d with password %08X", Word
, Password
);
555 c
.cmd
= CMD_EM4X_READ_WORD
;
556 c
.d
.asBytes
[0] = 0x1; //Password mode
561 WaitForResponse(CMD_ACK
, NULL
);
563 uint8_t data
[LF_TRACE_BUFF_SIZE
] = {0x00};
565 GetFromBigBuf(data
,LF_TRACE_BUFF_SIZE
,3560); //3560 -- should be offset..
566 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
568 for (int j
= 0; j
< LF_TRACE_BUFF_SIZE
; j
++) {
569 GraphBuffer
[j
] = ((int)data
[j
]);
571 GraphTraceLen
= LF_TRACE_BUFF_SIZE
;
573 uint8_t bits
[1000] = {0x00};
574 uint8_t * bitstream
= bits
;
576 manchester_decode(GraphBuffer
, LF_TRACE_BUFF_SIZE
, bitstream
);
577 RepaintGraphWindow();
581 int CmdWriteWord(const char *Cmd
)
583 int Word
= 16; //default to invalid block
584 int Data
= 0xFFFFFFFF; //default to blank data
587 sscanf(Cmd
, "%x %d", &Data
, &Word
);
590 PrintAndLog("Word must be between 0 and 15");
594 PrintAndLog("Writting word %d with data %08X", Word
, Data
);
596 c
.cmd
= CMD_EM4X_WRITE_WORD
;
597 c
.d
.asBytes
[0] = 0x0; //Normal mode
605 int CmdWriteWordPWD(const char *Cmd
)
607 int Word
= 8; //default to invalid word
608 int Data
= 0xFFFFFFFF; //default to blank data
609 int Password
= 0xFFFFFFFF; //default to blank password
612 sscanf(Cmd
, "%x %d %x", &Data
, &Word
, &Password
);
615 PrintAndLog("Word must be between 0 and 15");
619 PrintAndLog("Writting word %d with data %08X and password %08X", Word
, Data
, Password
);
621 c
.cmd
= CMD_EM4X_WRITE_WORD
;
622 c
.d
.asBytes
[0] = 0x1; //Password mode
630 static command_t CommandTable
[] =
632 {"help", CmdHelp
, 1, "This help"},
633 {"410xread", CmdEM410xRead
, 1, "[clock rate] -- Extract ID from EM410x tag"},
634 {"410xsim", CmdEM410xSim
, 0, "<UID> -- Simulate EM410x tag"},
635 {"410xwatch", CmdEM410xWatch
, 0, "['h'] -- Watches for EM410x 125/134 kHz tags (option 'h' for 134)"},
636 {"410xspoof", CmdEM410xWatchnSpoof
, 0, "['h'] --- Watches for EM410x 125/134 kHz tags, and replays them. (option 'h' for 134)" },
637 {"410xwrite", CmdEM410xWrite
, 1, "<UID> <'0' T5555> <'1' T55x7> [clock rate] -- Write EM410x UID to T5555(Q5) or T55x7 tag, optionally setting clock rate"},
638 {"4x50read", CmdEM4x50Read
, 1, "Extract data from EM4x50 tag"},
639 {"rd", CmdReadWord
, 1, "<Word 1-15> -- Read EM4xxx word data"},
640 {"rdpwd", CmdReadWordPWD
, 1, "<Word 1-15> <Password> -- Read EM4xxx word data in password mode "},
641 {"wr", CmdWriteWord
, 1, "<Data> <Word 1-15> -- Write EM4xxx word data"},
642 {"wrpwd", CmdWriteWordPWD
, 1, "<Data> <Word 1-15> <Password> -- Write EM4xxx word data in password mode"},
643 {NULL
, NULL
, 0, NULL
}
646 int CmdLFEM4X(const char *Cmd
)
648 CmdsParse(CommandTable
, Cmd
);
652 int CmdHelp(const char *Cmd
)
654 CmdsHelp(CommandTable
);