]>
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"
25 char *global_em410xId
;
27 static int CmdHelp(const char *Cmd
);
29 /* Read the ID of an EM410x tag.
31 * 1111 1111 1 <-- standard non-repeatable header
32 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
34 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
35 * 0 <-- stop bit, end of tag
37 int CmdEM410xRead(const char *Cmd
)
39 int i
, j
, clock
, header
, rows
, bit
, hithigh
, hitlow
, first
, bit2idx
, high
, low
;
44 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
47 /* Detect high and lows and clock */
48 for (i
= 0; i
< GraphTraceLen
; i
++)
50 if (GraphBuffer
[i
] > high
)
51 high
= GraphBuffer
[i
];
52 else if (GraphBuffer
[i
] < low
)
57 clock
= GetClock(Cmd
, high
, 0);
59 /* parity for our 4 columns */
60 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
63 /* manchester demodulate */
65 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
71 /* Find out if we hit both high and low peaks */
72 for (j
= 0; j
< clock
; j
++)
74 if (GraphBuffer
[(i
* clock
) + j
] == high
)
76 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
79 /* it doesn't count if it's the first part of our read
80 because it's really just trailing from the last sequence */
81 if (first
&& (hithigh
|| hitlow
))
86 if (hithigh
&& hitlow
)
90 /* If we didn't hit both high and low peaks, we had a bit transition */
91 if (!hithigh
|| !hitlow
)
94 BitStream
[bit2idx
++] = bit
;
98 /* We go till 5 before the graph ends because we'll get that far below */
99 for (i
= 1; i
< bit2idx
- 5; i
++)
101 /* Step 2: We have our header but need our tag ID */
102 if (header
== 9 && rows
< 10)
104 /* Confirm parity is correct */
105 if ((BitStream
[i
] ^ BitStream
[i
+1] ^ BitStream
[i
+2] ^ BitStream
[i
+3]) == BitStream
[i
+4])
107 /* Read another byte! */
108 sprintf(id
+rows
, "%x", (8 * BitStream
[i
]) + (4 * BitStream
[i
+1]) + (2 * BitStream
[i
+2]) + (1 * BitStream
[i
+3]));
109 sprintf(id2
+rows
, "%x", (8 * BitStream
[i
+3]) + (4 * BitStream
[i
+2]) + (2 * BitStream
[i
+1]) + (1 * BitStream
[i
]));
112 /* Keep parity info */
113 parity
[0] ^= BitStream
[i
];
114 parity
[1] ^= BitStream
[i
+1];
115 parity
[2] ^= BitStream
[i
+2];
116 parity
[3] ^= BitStream
[i
+3];
118 /* Move 4 bits ahead */
122 /* Damn, something wrong! reset */
125 PrintAndLog("Thought we had a valid tag but failed at word %d (i=%d)", rows
+ 1, i
);
127 /* Start back rows * 5 + 9 header bits, -1 to not start at same place */
128 i
-= 9 + (5 * rows
) - 5;
134 /* Step 3: Got our 40 bits! confirm column parity */
137 /* We need to make sure our 4 bits of parity are correct and we have a stop bit */
138 if (BitStream
[i
] == parity
[0] && BitStream
[i
+1] == parity
[1] &&
139 BitStream
[i
+2] == parity
[2] && BitStream
[i
+3] == parity
[3] &&
143 PrintAndLog("EM410x Tag ID: %s", id
);
144 PrintAndLog("Unique Tag ID: %s", id2
);
146 global_em410xId
= id
;
152 /* Crap! Incorrect parity or no stop bit, start all over */
157 /* Go back 59 bits (9 header bits + 10 rows at 4+1 parity) */
162 /* Step 1: get our header */
165 /* Need 9 consecutive 1's */
166 if (BitStream
[i
] == 1)
169 /* We don't have a header, not enough consecutive 1 bits */
175 /* if we've already retested after flipping bits, return */
180 /* if this didn't work, try flipping bits */
181 for (i
= 0; i
< bit2idx
; i
++)
187 /* emulate an EM410X tag
189 * 1111 1111 1 <-- standard non-repeatable header
190 * XXXX [row parity bit] <-- 10 rows of 5 bits for our 40 bit tag ID
192 * CCCC <-- each bit here is parity for the 10 bits above in corresponding column
193 * 0 <-- stop bit, end of tag
195 int CmdEM410xSim(const char *Cmd
)
197 int i
, n
, j
, h
, binary
[4], parity
[4];
199 /* clock is 64 in EM410x tags */
202 /* clear our graph */
205 /* write it out a few times */
206 for (h
= 0; h
< 4; h
++)
208 /* write 9 start bits */
209 for (i
= 0; i
< 9; i
++)
210 AppendGraph(0, clock
, 1);
212 /* for each hex char */
213 parity
[0] = parity
[1] = parity
[2] = parity
[3] = 0;
214 for (i
= 0; i
< 10; i
++)
216 /* read each hex char */
217 sscanf(&Cmd
[i
], "%1x", &n
);
218 for (j
= 3; j
>= 0; j
--, n
/= 2)
221 /* append each bit */
222 AppendGraph(0, clock
, binary
[0]);
223 AppendGraph(0, clock
, binary
[1]);
224 AppendGraph(0, clock
, binary
[2]);
225 AppendGraph(0, clock
, binary
[3]);
227 /* append parity bit */
228 AppendGraph(0, clock
, binary
[0] ^ binary
[1] ^ binary
[2] ^ binary
[3]);
230 /* keep track of column parity */
231 parity
[0] ^= binary
[0];
232 parity
[1] ^= binary
[1];
233 parity
[2] ^= binary
[2];
234 parity
[3] ^= binary
[3];
238 AppendGraph(0, clock
, parity
[0]);
239 AppendGraph(0, clock
, parity
[1]);
240 AppendGraph(0, clock
, parity
[2]);
241 AppendGraph(0, clock
, parity
[3]);
244 AppendGraph(0, clock
, 0);
247 /* modulate that biatch */
248 CmdManchesterMod("");
251 RepaintGraphWindow();
257 /* Function is equivalent of loread + losamples + em410xread
258 * looped until an EM410x tag is detected */
259 int CmdEM410xWatch(const char *Cmd
)
261 int read_h
= (*Cmd
== 'h');
265 CmdLFRead(read_h
? "h" : "");
266 // 2000 samples is OK for clock=64, but not clock=32. Probably want
267 // 8000 for clock=16. Don't want to go too high since old HID driver
269 // TBD: Auto-grow sample size based on detected sample rate. IE: If the
270 // rate gets lower, then grow the number of samples
272 // Changed by martin, 4000 x 4 = 16000,
273 // see http://www.proxmark.org/forum/viewtopic.php?pid=7235#p7235
281 int CmdEM410xWatchnSpoof(const char *Cmd
)
283 int read_h
= (*Cmd
== 'h');
286 CmdLFRead(read_h
? "h" : "");
288 } while ( ! CmdEM410xRead(""));
289 PrintAndLog("# Replaying : %s",global_em410xId
);
290 CmdEM410xSim(global_em410xId
);
294 /* Read the transmitted data of an EM4x50 tag
297 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
298 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
299 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
300 * XXXXXXXX [row parity bit (even)] <- 8 bits plus parity
301 * CCCCCCCC <- column parity bits
303 * LW <- Listen Window
305 * This pattern repeats for every block of data being transmitted.
306 * Transmission starts with two Listen Windows (LW - a modulated
307 * pattern of 320 cycles each (32/32/128/64/64)).
309 * Note that this data may or may not be the UID. It is whatever data
310 * is stored in the blocks defined in the control word First and Last
311 * Word Read values. UID is stored in block 32.
313 int CmdEM4x50Read(const char *Cmd
)
315 int i
, j
, startblock
, skip
, block
, start
, end
, low
, high
;
316 bool complete
= false;
317 int tmpbuff
[MAX_GRAPH_TRACE_LEN
/ 64];
321 memset(tmpbuff
, 0, MAX_GRAPH_TRACE_LEN
/ 64);
323 /* first get high and low values */
324 for (i
= 0; i
< GraphTraceLen
; i
++)
326 if (GraphBuffer
[i
] > high
)
327 high
= GraphBuffer
[i
];
328 else if (GraphBuffer
[i
] < low
)
329 low
= GraphBuffer
[i
];
332 /* populate a buffer with pulse lengths */
335 while (i
< GraphTraceLen
)
337 // measure from low to low
338 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
341 while ((GraphBuffer
[i
] < high
) && (i
<GraphTraceLen
))
343 while ((GraphBuffer
[i
] > low
) && (i
<GraphTraceLen
))
345 if (j
>(MAX_GRAPH_TRACE_LEN
/64)) {
348 tmpbuff
[j
++]= i
- start
;
351 /* look for data start - should be 2 pairs of LW (pulses of 192,128) */
354 for (i
= 0; i
< j
- 4 ; ++i
)
357 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
358 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
359 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
360 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
368 /* skip over the remainder of the LW */
369 skip
+= tmpbuff
[i
+1]+tmpbuff
[i
+2];
370 while (skip
< MAX_GRAPH_TRACE_LEN
&& GraphBuffer
[skip
] > low
)
374 /* now do it again to find the end */
376 for (i
+= 3; i
< j
- 4 ; ++i
)
379 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
380 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
381 if (tmpbuff
[i
+2] >= 190 && tmpbuff
[i
+2] <= 194)
382 if (tmpbuff
[i
+3] >= 126 && tmpbuff
[i
+3] <= 130)
390 PrintAndLog("Found data at sample: %i",skip
);
393 PrintAndLog("No data found!");
394 PrintAndLog("Try again with more samples.");
400 PrintAndLog("*** Warning!");
401 PrintAndLog("Partial data - no end found!");
402 PrintAndLog("Try again with more samples.");
405 /* get rid of leading crap */
406 sprintf(tmp
,"%i",skip
);
409 /* now work through remaining buffer printing out data blocks */
414 PrintAndLog("Block %i:", block
);
415 // mandemod routine needs to be split so we can call it for data
416 // just print for now for debugging
417 CmdManchesterDemod("i 64");
419 /* look for LW before start of next block */
420 for ( ; i
< j
- 4 ; ++i
)
423 if (tmpbuff
[i
] >= 190 && tmpbuff
[i
] <= 194)
424 if (tmpbuff
[i
+1] >= 126 && tmpbuff
[i
+1] <= 130)
427 while (GraphBuffer
[skip
] > low
)
430 sprintf(tmp
,"%i",skip
);
438 int CmdEM410xWrite(const char *Cmd
)
440 uint64_t id
= 0xFFFFFFFFFFFFFFFF; // invalid id value
441 int card
= 0xFF; // invalid card value
442 unsigned int clock
= 0; // invalid clock value
444 sscanf(Cmd
, "%" PRIx64
" %d %d", &id
, &card
, &clock
);
447 if (id
== 0xFFFFFFFFFFFFFFFF) {
448 PrintAndLog("Error! ID is required.\n");
451 if (id
>= 0x10000000000) {
452 PrintAndLog("Error! Given EM410x ID is longer than 40 bits.\n");
458 PrintAndLog("Error! Card type required.\n");
462 PrintAndLog("Error! Bad card type selected.\n");
473 // Allowed clock rates: 16, 32 and 64
474 if ((clock
!= 16) && (clock
!= 32) && (clock
!= 64)) {
475 PrintAndLog("Error! Clock rate %d not valid. Supported clock rates are 16, 32 and 64.\n", clock
);
481 PrintAndLog("Error! Clock rate is only supported on T55x7 tags.\n");
486 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
" (clock rate: %d)", "T55x7", id
, clock
);
487 // NOTE: We really should pass the clock in as a separate argument, but to
488 // provide for backwards-compatibility for older firmware, and to avoid
489 // having to add another argument to CMD_EM410X_WRITE_TAG, we just store
490 // the clock rate in bits 8-15 of the card value
491 card
= (card
& 0xFF) | (((uint64_t)clock
<< 8) & 0xFF00);
494 PrintAndLog("Writing %s tag with UID 0x%010" PRIx64
, "T5555", id
, clock
);
496 PrintAndLog("Error! Bad card type selected.\n");
500 UsbCommand c
= {CMD_EM410X_WRITE_TAG
, {card
, (uint32_t)(id
>> 32), (uint32_t)id
}};
506 int CmdReadWord(const char *Cmd
)
508 int Word
= -1; //default to invalid word
511 sscanf(Cmd
, "%d", &Word
);
513 if ( (Word
> 15) | (Word
< 0) ) {
514 PrintAndLog("Word must be between 0 and 15");
518 PrintAndLog("Reading word %d", Word
);
520 c
.cmd
= CMD_EM4X_READ_WORD
;
521 c
.d
.asBytes
[0] = 0x0; //Normal mode
526 WaitForResponse(CMD_ACK
, NULL
);
528 size_t bytelength
= 4096;
529 uint8_t data
[bytelength
];
530 memset(data
, 0x00, bytelength
);
532 GetFromBigBuf(data
,bytelength
,3560); //3560 -- should be offset..
533 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
535 for (int j
= 0; j
< bytelength
; j
++) {
536 GraphBuffer
[j
] = ((int)data
[j
]) - 128;
538 GraphTraceLen
= bytelength
;
539 RepaintGraphWindow();
541 manchester_decode(data
, bytelength
);
548 int CmdReadWordPWD(const char *Cmd
)
550 int Word
= -1; //default to invalid word
551 int Password
= 0xFFFFFFFF; //default to blank password
554 sscanf(Cmd
, "%d %x", &Word
, &Password
);
556 if ( (Word
> 15) | (Word
< 0) ) {
557 PrintAndLog("Word must be between 0 and 15");
561 PrintAndLog("Reading word %d with password %08X", Word
, Password
);
563 c
.cmd
= CMD_EM4X_READ_WORD
;
564 c
.d
.asBytes
[0] = 0x1; //Password mode
569 WaitForResponse(CMD_ACK
, NULL
);
571 size_t bytelength
= 4096;
572 uint8_t data
[bytelength
];
573 memset(data
, 0x00, bytelength
);
575 GetFromBigBuf(data
,bytelength
,3560); //3560 -- should be offset..
576 WaitForResponseTimeout(CMD_ACK
,NULL
, 1500);
578 for (int j
= 0; j
< bytelength
; j
++) {
579 GraphBuffer
[j
] = ((int)data
[j
]) - 128;
581 GraphTraceLen
= bytelength
;
582 RepaintGraphWindow();
584 manchester_decode(data
, bytelength
);
590 int CmdWriteWord(const char *Cmd
)
592 int Word
= 16; //default to invalid block
593 int Data
= 0xFFFFFFFF; //default to blank data
596 sscanf(Cmd
, "%x %d", &Data
, &Word
);
599 PrintAndLog("Word must be between 0 and 15");
603 PrintAndLog("Writting word %d with data %08X", Word
, Data
);
605 c
.cmd
= CMD_EM4X_WRITE_WORD
;
606 c
.d
.asBytes
[0] = 0x0; //Normal mode
614 int CmdWriteWordPWD(const char *Cmd
)
616 int Word
= 8; //default to invalid word
617 int Data
= 0xFFFFFFFF; //default to blank data
618 int Password
= 0xFFFFFFFF; //default to blank password
621 sscanf(Cmd
, "%x %d %x", &Data
, &Word
, &Password
);
624 PrintAndLog("Word must be between 0 and 15");
628 PrintAndLog("Writting word %d with data %08X and password %08X", Word
, Data
, Password
);
630 c
.cmd
= CMD_EM4X_WRITE_WORD
;
631 c
.d
.asBytes
[0] = 0x1; //Password mode
641 static command_t CommandTable
[] =
643 {"help", CmdHelp
, 1, "This help"},
644 {"410read", CmdEM410xRead
, 1, "[clock rate] -- Extract ID from EM410x tag"},
645 {"410sim", CmdEM410xSim
, 0, "<UID> -- Simulate EM410x tag"},
646 {"410watch", CmdEM410xWatch
, 0, "['h'] -- Watches for EM410x 125/134 kHz tags (option 'h' for 134)"},
647 {"410spoof", CmdEM410xWatchnSpoof
, 0, "['h'] --- Watches for EM410x 125/134 kHz tags, and replays them. (option 'h' for 134)" },
648 {"410write", CmdEM410xWrite
, 1, "<UID> <'0' T5555> <'1' T55x7> [clock rate] -- Write EM410x UID to T5555(Q5) or T55x7 tag, optionally setting clock rate"},
649 {"4xread", CmdEM4x50Read
, 1, "Extract data from EM4x50 tag"},
650 {"rd", CmdReadWord
, 1, "<Word 1-15> -- Read EM4xxx word data"},
651 {"rdpwd", CmdReadWordPWD
, 1, "<Word 1-15> <Password> -- Read EM4xxx word data in password mode "},
652 {"wr", CmdWriteWord
, 1, "<Data> <Word 1-15> -- Write EM4xxx word data"},
653 {"wrpwd", CmdWriteWordPWD
, 1, "<Data> <Word 1-15> <Password> -- Write EM4xxx word data in password mode"},
654 {NULL
, NULL
, 0, NULL
}
657 int CmdLFEM4X(const char *Cmd
)
659 CmdsParse(CommandTable
, Cmd
);
663 int CmdHelp(const char *Cmd
)
665 CmdsHelp(CommandTable
);