2019-10-12 05:13:58 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Iceman, 2019
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Low frequency Motorola tag commands
|
|
|
|
// PSK1, RF/32, 64 bits long, at 74 kHz
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "cmdlfmotorola.h"
|
2020-11-28 02:13:48 +08:00
|
|
|
#include <ctype.h> // tolower
|
|
|
|
#include "commonutil.h" // ARRAYLEN
|
2019-10-12 05:13:58 +08:00
|
|
|
#include "common.h"
|
|
|
|
#include "cmdparser.h" // command_t
|
|
|
|
#include "comms.h"
|
|
|
|
#include "ui.h"
|
|
|
|
#include "cmddata.h"
|
|
|
|
#include "cmdlf.h"
|
2020-11-28 02:13:48 +08:00
|
|
|
#include "lfdemod.h" // preamble test
|
|
|
|
#include "protocols.h" // t55xx defines
|
|
|
|
#include "cmdlft55xx.h" // clone..
|
|
|
|
#include "cmdlf.h" // cmdlfconfig
|
|
|
|
#include "cliparser.h" // cli parse input
|
|
|
|
#include "cmdlfem4x05.h" // EM defines
|
2019-10-12 05:13:58 +08:00
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
2020-09-28 17:50:20 +08:00
|
|
|
int demodMotorola(bool verbose) {
|
|
|
|
(void) verbose; // unused so far
|
2019-10-12 05:13:58 +08:00
|
|
|
//PSK1
|
2020-09-28 17:50:20 +08:00
|
|
|
if (PSKDemod(32, 1, 100, true) != PM3_SUCCESS) {
|
2019-10-12 05:13:58 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Motorola: PSK Demod failed");
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2020-12-01 23:41:48 +08:00
|
|
|
|
2021-08-21 22:26:06 +08:00
|
|
|
size_t size = g_DemodBufferLen;
|
|
|
|
int ans = detectMotorola(g_DemodBuffer, &size);
|
2019-10-12 05:13:58 +08:00
|
|
|
if (ans < 0) {
|
|
|
|
if (ans == -1)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Motorola: too few bits found");
|
|
|
|
else if (ans == -2)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Motorola: preamble not found");
|
|
|
|
else if (ans == -3)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Motorola: Size not correct: %zu", size);
|
|
|
|
else
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Motorola: ans: %d", ans);
|
|
|
|
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2021-08-21 22:26:06 +08:00
|
|
|
setDemodBuff(g_DemodBuffer, 64, ans);
|
2019-10-12 05:13:58 +08:00
|
|
|
setClockGrid(g_DemodClock, g_DemodStartIdx + (ans * g_DemodClock));
|
|
|
|
|
|
|
|
//got a good demod
|
2021-08-21 22:26:06 +08:00
|
|
|
uint32_t raw1 = bytebits_to_byte(g_DemodBuffer, 32);
|
|
|
|
uint32_t raw2 = bytebits_to_byte(g_DemodBuffer + 32, 32);
|
2019-10-13 06:48:26 +08:00
|
|
|
|
2019-10-12 18:36:09 +08:00
|
|
|
// A0000000E308C0C1
|
|
|
|
// 10100000000000000000000000000000 1110 0011 0000 1000 1100 0000 1100 0001
|
|
|
|
|
|
|
|
|
|
|
|
// 1 1 2 2 2 3 3 4 4 4 5 5 6
|
|
|
|
// 0 4 8 2 6 0 4 8 2 6 0 4 8 2 6 0
|
|
|
|
// 1010 0000 0000 0000 0000 0000 0000 0000 1110 0011 0000 1000 1100 0000 0101 0010
|
|
|
|
// 9 .0 5 4 26 3 . 71
|
|
|
|
// . .0 5 4 26 3 . 71
|
|
|
|
// 6 9 A5 C0FD E7 18 B 4 3 2
|
|
|
|
|
|
|
|
// hex(234) 0xEA bin(234) 1110 1010
|
|
|
|
// hex(437) 0x1B5 bin(437) 1 1011 0101
|
|
|
|
// hex(229) 0xE5 bin(229) 1110 0101
|
|
|
|
|
|
|
|
uint16_t fc = 0;
|
|
|
|
|
2019-10-13 06:48:26 +08:00
|
|
|
// FC seems to be guess work. Need more samples
|
2019-10-12 18:36:09 +08:00
|
|
|
// guessing printed FC is 4 digits. 1024? 10bit?
|
2021-08-21 22:26:06 +08:00
|
|
|
// fc |= g_DemodBuffer[38] << 9; // b10
|
|
|
|
fc |= g_DemodBuffer[34] << 8; // b9
|
2019-10-12 18:36:09 +08:00
|
|
|
|
2021-08-21 22:26:06 +08:00
|
|
|
fc |= g_DemodBuffer[44] << 7; // b8
|
|
|
|
fc |= g_DemodBuffer[47] << 6; // b7
|
|
|
|
fc |= g_DemodBuffer[57] << 5; // b6
|
|
|
|
fc |= g_DemodBuffer[49] << 4; // b5
|
2019-10-12 18:36:09 +08:00
|
|
|
|
|
|
|
// seems to match
|
2021-08-21 22:26:06 +08:00
|
|
|
fc |= g_DemodBuffer[53] << 3; // b4
|
|
|
|
fc |= g_DemodBuffer[48] << 2; // b3
|
|
|
|
fc |= g_DemodBuffer[58] << 1; // b2
|
|
|
|
fc |= g_DemodBuffer[39] << 0; // b1
|
2019-10-13 06:48:26 +08:00
|
|
|
|
2019-10-12 18:36:09 +08:00
|
|
|
// CSN was same as Indala CSN descramble.
|
|
|
|
uint16_t csn = 0;
|
2021-08-21 22:26:06 +08:00
|
|
|
csn |= g_DemodBuffer[42] << 15; // b16
|
|
|
|
csn |= g_DemodBuffer[45] << 14; // b15
|
|
|
|
csn |= g_DemodBuffer[43] << 13; // b14
|
|
|
|
csn |= g_DemodBuffer[40] << 12; // b13
|
|
|
|
csn |= g_DemodBuffer[52] << 11; // b12
|
|
|
|
csn |= g_DemodBuffer[36] << 10; // b11
|
|
|
|
csn |= g_DemodBuffer[35] << 9; // b10
|
|
|
|
csn |= g_DemodBuffer[51] << 8; // b9
|
|
|
|
csn |= g_DemodBuffer[46] << 7; // b8
|
|
|
|
csn |= g_DemodBuffer[33] << 6; // b7
|
|
|
|
csn |= g_DemodBuffer[37] << 5; // b6
|
|
|
|
csn |= g_DemodBuffer[54] << 4; // b5
|
|
|
|
csn |= g_DemodBuffer[56] << 3; // b4
|
|
|
|
csn |= g_DemodBuffer[59] << 2; // b3
|
|
|
|
csn |= g_DemodBuffer[50] << 1; // b2
|
|
|
|
csn |= g_DemodBuffer[41] << 0; // b1
|
2019-10-12 18:36:09 +08:00
|
|
|
|
2019-10-13 06:48:26 +08:00
|
|
|
uint8_t checksum = 0;
|
2021-08-21 22:26:06 +08:00
|
|
|
checksum |= g_DemodBuffer[62] << 1; // b2
|
|
|
|
checksum |= g_DemodBuffer[63] << 0; // b1
|
2019-10-12 05:13:58 +08:00
|
|
|
|
2020-08-13 18:25:04 +08:00
|
|
|
|
2020-06-29 17:58:24 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Motorola - fmt: " _GREEN_("26") " FC: " _GREEN_("%u") " Card: " _GREEN_("%u") ", Raw: %08X%08X", fc, csn, raw1, raw2);
|
|
|
|
PrintAndLogEx(DEBUG, "checksum: " _GREEN_("%1d%1d"), checksum >> 1 & 0x01, checksum & 0x01);
|
2019-10-12 05:13:58 +08:00
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2020-09-28 17:50:20 +08:00
|
|
|
static int CmdMotorolaDemod(const char *Cmd) {
|
2020-11-29 19:06:45 +08:00
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf motorola demod",
|
|
|
|
"Try to find Motorola preamble, if found decode / descramble data",
|
|
|
|
"lf motorola demod"
|
|
|
|
);
|
|
|
|
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
CLIParserFree(ctx);
|
2020-09-28 17:50:20 +08:00
|
|
|
return demodMotorola(true);
|
|
|
|
}
|
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
static int CmdMotorolaReader(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf motorola reader",
|
|
|
|
"read a Motorola tag",
|
|
|
|
"lf motorola reader -@ -> continuous reader mode"
|
|
|
|
);
|
|
|
|
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
|
|
|
arg_lit0("@", NULL, "optional - continuous reader mode"),
|
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
bool cm = arg_get_lit(ctx, 1);
|
|
|
|
CLIParserFree(ctx);
|
|
|
|
|
2020-12-01 18:26:54 +08:00
|
|
|
if (cm) {
|
|
|
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
|
|
|
}
|
|
|
|
|
2021-10-10 07:35:38 +08:00
|
|
|
// Motorola Flexpass seems to work at 74 kHz
|
|
|
|
// and take about 4400 samples too before modulating
|
2019-10-12 05:13:58 +08:00
|
|
|
sample_config sc = {
|
2020-01-10 03:02:01 +08:00
|
|
|
.decimation = -1,
|
|
|
|
.bits_per_sample = -1,
|
2019-10-13 06:48:26 +08:00
|
|
|
.averaging = false,
|
2019-10-25 06:42:47 +08:00
|
|
|
.divisor = LF_FREQ2DIV(74),
|
2019-10-13 06:48:26 +08:00
|
|
|
.trigger_threshold = -1,
|
|
|
|
.samples_to_skip = 4500,
|
|
|
|
.verbose = false
|
2019-10-12 05:13:58 +08:00
|
|
|
};
|
|
|
|
lf_config(&sc);
|
|
|
|
|
2020-12-01 23:41:48 +08:00
|
|
|
int res;
|
2020-11-28 02:13:48 +08:00
|
|
|
do {
|
|
|
|
// 64 * 32 * 2 * n-ish
|
|
|
|
lf_read(false, 5000);
|
2020-12-01 23:41:48 +08:00
|
|
|
res = demodMotorola(!cm);
|
2020-11-28 02:13:48 +08:00
|
|
|
} while (cm && !kbd_enter_pressed());
|
2019-10-12 05:13:58 +08:00
|
|
|
|
|
|
|
// reset back to 125 kHz
|
|
|
|
sc.divisor = LF_DIVISOR_125;
|
|
|
|
sc.samples_to_skip = 0;
|
|
|
|
lf_config(&sc);
|
2020-11-28 02:13:48 +08:00
|
|
|
|
2020-12-01 23:41:48 +08:00
|
|
|
return res;
|
2019-10-12 05:13:58 +08:00
|
|
|
}
|
|
|
|
|
2019-10-12 18:36:09 +08:00
|
|
|
static int CmdMotorolaClone(const char *Cmd) {
|
2020-06-01 23:30:33 +08:00
|
|
|
CLIParserContext *ctx;
|
2020-09-30 17:38:40 +08:00
|
|
|
CLIParserInit(&ctx, "lf motorola clone",
|
2020-11-28 02:13:48 +08:00
|
|
|
"clone Motorola UID to a T55x7, Q5/T5555 or EM4305/4469 tag.\n"
|
2020-10-17 22:33:00 +08:00
|
|
|
"defaults to 64 bit format",
|
2020-11-28 02:13:48 +08:00
|
|
|
"lf motorola clone --raw a0000000a0002021\n"
|
|
|
|
"lf motorola clone --q5 --raw a0000000a0002021 -> encode for Q5/T5555 tag\n"
|
|
|
|
"lf motorola clone --em --raw a0000000a0002021 -> encode for EM4305/4469"
|
2019-10-13 06:48:26 +08:00
|
|
|
);
|
2019-10-12 18:36:09 +08:00
|
|
|
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
2020-11-28 02:13:48 +08:00
|
|
|
arg_strx1("r", "raw", "<hex>", "raw hex bytes. 8 bytes"),
|
|
|
|
arg_lit0(NULL, "q5", "optional - specify writing to Q5/T5555 tag"),
|
|
|
|
arg_lit0(NULL, "em", "optional - specify writing to EM4305/4469 tag"),
|
2019-10-12 18:36:09 +08:00
|
|
|
arg_param_end
|
|
|
|
};
|
2020-06-01 23:30:33 +08:00
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
2019-10-12 18:36:09 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
int raw_len = 0;
|
|
|
|
uint8_t raw[8];
|
|
|
|
CLIGetHexWithReturn(ctx, 1, raw, &raw_len);
|
|
|
|
bool q5 = arg_get_lit(ctx, 2);
|
|
|
|
bool em = arg_get_lit(ctx, 3);
|
|
|
|
CLIParserFree(ctx);
|
2020-10-20 07:00:23 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
if (q5 && em) {
|
|
|
|
PrintAndLogEx(FAILED, "Can't specify both Q5 and EM4305 at the same time");
|
|
|
|
return PM3_EINVARG;
|
|
|
|
}
|
2019-10-12 18:36:09 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
//TODO add selection of chip for Q5 or T55x7
|
|
|
|
uint32_t blocks[3] = {0};
|
2020-10-17 22:33:00 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
blocks[0] = T55x7_BITRATE_RF_32 | T55x7_MODULATION_PSK1 | (2 << T55x7_MAXBLOCK_SHIFT);
|
|
|
|
char cardtype[16] = {"T55x7"};
|
|
|
|
// Q5
|
|
|
|
if (q5) {
|
2020-10-17 22:33:00 +08:00
|
|
|
blocks[0] = T5555_FIXED | T5555_SET_BITRATE(32) | T5555_MODULATION_PSK1 | 2 << T5555_MAXBLOCK_SHIFT;
|
2020-11-28 02:13:48 +08:00
|
|
|
snprintf(cardtype, sizeof(cardtype), "Q5/T5555");
|
|
|
|
}
|
2020-10-20 07:00:23 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
// EM4305
|
|
|
|
if (em) {
|
|
|
|
blocks[0] = EM4305_MOTOROLA_CONFIG_BLOCK;
|
|
|
|
snprintf(cardtype, sizeof(cardtype), "EM4305/4469");
|
|
|
|
}
|
2020-10-17 22:33:00 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
blocks[1] = bytes_to_num(raw, 4);
|
|
|
|
blocks[2] = bytes_to_num(raw + 4, 4);
|
2019-10-13 06:48:26 +08:00
|
|
|
|
2020-11-28 02:13:48 +08:00
|
|
|
// config for Motorola 64 format (RF/32;PSK1 with RF/2; Maxblock=2)
|
|
|
|
PrintAndLogEx(INFO, "Preparing to clone Motorola 64bit to " _YELLOW_("%s") " with raw " _GREEN_("%s")
|
2020-11-29 07:28:56 +08:00
|
|
|
, cardtype
|
|
|
|
, sprint_hex_inrow(raw, sizeof(raw))
|
|
|
|
);
|
2019-10-12 18:36:09 +08:00
|
|
|
print_blocks(blocks, ARRAYLEN(blocks));
|
2020-11-28 02:13:48 +08:00
|
|
|
|
|
|
|
int res;
|
|
|
|
if (em) {
|
|
|
|
res = em4x05_clone_tag(blocks, ARRAYLEN(blocks), 0, false);
|
|
|
|
} else {
|
|
|
|
res = clone_t55xx_tag(blocks, ARRAYLEN(blocks));
|
|
|
|
}
|
2020-03-02 20:59:41 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Done");
|
2020-11-28 02:13:48 +08:00
|
|
|
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf motorola reader`") " to verify");
|
2020-03-02 20:59:41 +08:00
|
|
|
return res;
|
2019-10-12 18:36:09 +08:00
|
|
|
}
|
|
|
|
|
2019-10-12 05:13:58 +08:00
|
|
|
static int CmdMotorolaSim(const char *Cmd) {
|
2020-11-29 19:06:45 +08:00
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf motorola sim",
|
|
|
|
"Enables simulation of Motorola card with specified card number.\n"
|
|
|
|
"Simulation runs until the button is pressed or another USB command is issued.",
|
|
|
|
"lf motorola sim"
|
|
|
|
);
|
2019-10-12 05:13:58 +08:00
|
|
|
|
2020-11-29 19:06:45 +08:00
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
CLIParserFree(ctx);
|
2020-12-12 21:46:40 +08:00
|
|
|
|
2019-10-12 05:13:58 +08:00
|
|
|
// PSK sim.
|
|
|
|
PrintAndLogEx(INFO, " PSK1 at 66 kHz... Interesting.");
|
|
|
|
PrintAndLogEx(INFO, " To be implemented, feel free to contribute!");
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static command_t CommandTable[] = {
|
2020-11-28 02:13:48 +08:00
|
|
|
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
2021-04-24 20:39:27 +08:00
|
|
|
{"demod", CmdMotorolaDemod, AlwaysAvailable, "demodulate an MOTOROLA tag from the GraphBuffer"},
|
|
|
|
{"reader", CmdMotorolaReader, IfPm3Lf, "attempt to read and extract tag data"},
|
2020-11-28 02:13:48 +08:00
|
|
|
{"clone", CmdMotorolaClone, IfPm3Lf, "clone MOTOROLA tag to T55x7"},
|
|
|
|
{"sim", CmdMotorolaSim, IfPm3Lf, "simulate MOTOROLA tag"},
|
2019-10-12 05:13:58 +08:00
|
|
|
{NULL, NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd) {
|
|
|
|
(void)Cmd; // Cmd is not used so far
|
|
|
|
CmdsHelp(CommandTable);
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CmdLFMotorola(const char *Cmd) {
|
|
|
|
clearCommandBuffer();
|
|
|
|
return CmdsParse(CommandTable, Cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// find MOTOROLA preamble in already demoded data
|
|
|
|
int detectMotorola(uint8_t *dest, size_t *size) {
|
2019-10-12 18:36:09 +08:00
|
|
|
|
|
|
|
//make sure buffer has data
|
|
|
|
if (*size < 64)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
bool inverted = false;
|
|
|
|
size_t found_size = *size;
|
|
|
|
size_t start_idx = 0;
|
|
|
|
|
|
|
|
// Seems Motorola is based on the following indala format.
|
|
|
|
// standard 64 bit Motorola formats including 26 bit 40134 format
|
|
|
|
uint8_t preamble[] = {1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1};
|
|
|
|
uint8_t preamble_i[] = {0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0};
|
|
|
|
|
|
|
|
// preamble not found
|
|
|
|
if (!preambleSearch(dest, preamble, sizeof(preamble), &found_size, &start_idx)) {
|
|
|
|
found_size = *size;
|
|
|
|
if (!preambleSearch(dest, preamble_i, sizeof(preamble_i), &found_size, &start_idx)) {
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: detectMotorola PSK1 found inverted preamble");
|
|
|
|
inverted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
*size = found_size;
|
|
|
|
|
|
|
|
// wrong demoded size
|
|
|
|
if (*size != 64)
|
|
|
|
return -3;
|
|
|
|
|
|
|
|
if (inverted && start_idx > 0) {
|
2019-10-13 06:48:26 +08:00
|
|
|
for (size_t i = start_idx - 1 ; i < *size + start_idx + 2; i++) {
|
2019-10-12 18:36:09 +08:00
|
|
|
dest[i] ^= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int)start_idx;
|
2019-10-12 05:13:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int readMotorolaUid(void) {
|
2020-11-28 02:13:48 +08:00
|
|
|
return (CmdMotorolaReader("") == PM3_SUCCESS);
|
2019-10-12 05:13:58 +08:00
|
|
|
}
|