2017-07-14 21:51:12 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// 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 Honeywell NexWatch tag commands
|
|
|
|
// PSK1 RF/16, RF/2, 128 bits long (known)
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2017-07-14 21:51:12 +08:00
|
|
|
#include "cmdlfnexwatch.h"
|
2019-09-27 03:15:38 +08:00
|
|
|
#include <ctype.h> // tolower
|
2017-07-14 21:51:12 +08:00
|
|
|
|
2019-09-27 03:15:38 +08:00
|
|
|
#include "commonutil.h" // ARRAYLEN
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "cmdparser.h" // command_t
|
|
|
|
#include "comms.h"
|
|
|
|
#include "ui.h"
|
|
|
|
#include "cmddata.h" // preamblesearch
|
|
|
|
#include "cmdlf.h"
|
|
|
|
#include "lfdemod.h"
|
2019-09-27 03:15:38 +08:00
|
|
|
#include "protocols.h" // t55xx defines
|
|
|
|
#include "cmdlft55xx.h" // clone..
|
2019-08-08 22:57:33 +08:00
|
|
|
|
2017-07-14 21:51:12 +08:00
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
2019-09-27 03:15:38 +08:00
|
|
|
static int usage_lf_nexwatch_clone(void) {
|
|
|
|
PrintAndLogEx(NORMAL, "clone a Nexwatch tag to a T55x7 tag.");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf nexwatch clone [h] [b <raw hex>]");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h : this help");
|
|
|
|
PrintAndLogEx(NORMAL, " b <raw hex> : raw hex data. 12 bytes max");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf nexwatch clone b 5600000000213C9F8F150C0000000000");
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-04-12 08:07:11 +08:00
|
|
|
static int CmdNexWatchDemod(const char *Cmd) {
|
2019-04-10 18:23:40 +08:00
|
|
|
(void)Cmd; // Cmd is not used so far
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2019-05-22 20:32:30 +08:00
|
|
|
if (PSKDemod("", false) != PM3_SUCCESS) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch can't demod signal");
|
2019-05-22 20:32:30 +08:00
|
|
|
return PM3_ESOFT;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
bool invert = false;
|
|
|
|
size_t size = DemodBufferLen;
|
|
|
|
int idx = detectNexWatch(DemodBuffer, &size, &invert);
|
|
|
|
if (idx <= 0) {
|
2019-03-10 07:00:59 +08:00
|
|
|
if (idx == -1)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch not enough samples");
|
|
|
|
// else if (idx == -2)
|
|
|
|
// PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch only noise found");
|
|
|
|
// else if (idx == -3)
|
|
|
|
// PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch problem during PSK demod");
|
|
|
|
else if (idx == -4)
|
2019-10-13 06:48:26 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch preamble not found");
|
2019-03-10 07:00:59 +08:00
|
|
|
// else if (idx == -5)
|
|
|
|
// PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch size not correct: %d", size);
|
|
|
|
else
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch error %d", idx);
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-05-22 20:32:30 +08:00
|
|
|
return PM3_ESOFT;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
|
2019-04-07 03:46:00 +08:00
|
|
|
setDemodBuff(DemodBuffer, size, idx + 4);
|
2019-09-27 03:15:38 +08:00
|
|
|
setClockGrid(g_DemodClock, g_DemodStartIdx + ((idx + 4) * g_DemodClock));
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-04-10 14:52:45 +08:00
|
|
|
// idx = 8 + 32; // 8 = preamble, 32 = reserved bits (always 0)
|
2019-03-10 06:35:06 +08:00
|
|
|
|
|
|
|
//get ID
|
|
|
|
uint32_t ID = 0;
|
2019-03-10 07:00:59 +08:00
|
|
|
for (uint8_t k = 0; k < 4; k++) {
|
|
|
|
for (uint8_t m = 0; m < 8; m++) {
|
|
|
|
ID = (ID << 1) | DemodBuffer[m + k + (m * 4)];
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//parity check (TBD)
|
|
|
|
|
|
|
|
//checksum check (TBD)
|
|
|
|
|
|
|
|
//output
|
|
|
|
PrintAndLogEx(NORMAL, "NexWatch ID: %d", ID);
|
2019-03-10 07:00:59 +08:00
|
|
|
if (invert) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Had to Invert - probably NexKey");
|
|
|
|
for (size_t i = 0; i < size; i++)
|
|
|
|
DemodBuffer[i] ^= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdPrintDemodBuff("x");
|
2019-05-22 20:32:30 +08:00
|
|
|
return PM3_SUCCESS;
|
2017-07-14 21:51:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//by marshmellow
|
|
|
|
//see ASKDemod for what args are accepted
|
2019-04-12 08:07:11 +08:00
|
|
|
static int CmdNexWatchRead(const char *Cmd) {
|
2019-03-10 06:35:06 +08:00
|
|
|
lf_read(true, 10000);
|
|
|
|
return CmdNexWatchDemod(Cmd);
|
2017-07-14 21:51:12 +08:00
|
|
|
}
|
|
|
|
|
2019-09-16 03:00:38 +08:00
|
|
|
static int CmdNexWatchClone(const char *Cmd) {
|
2019-10-13 06:48:26 +08:00
|
|
|
|
2019-09-27 03:15:38 +08:00
|
|
|
// 56000000 00213C9F 8F150C00 00000000
|
|
|
|
uint32_t blocks[5];
|
|
|
|
bool errors = false;
|
|
|
|
uint8_t cmdp = 0;
|
|
|
|
int datalen = 0;
|
|
|
|
|
|
|
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
|
|
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
|
|
|
case 'h':
|
|
|
|
return usage_lf_nexwatch_clone();
|
|
|
|
case 'b': {
|
|
|
|
// skip first block, 4*4 = 16 bytes left
|
2019-10-13 06:48:26 +08:00
|
|
|
uint8_t rawhex[16] = {0};
|
2019-09-27 03:15:38 +08:00
|
|
|
int res = param_gethex_to_eol(Cmd, cmdp + 1, rawhex, sizeof(rawhex), &datalen);
|
2019-10-13 06:48:26 +08:00
|
|
|
if (res != 0)
|
2019-09-27 03:15:38 +08:00
|
|
|
errors = true;
|
2019-10-13 06:48:26 +08:00
|
|
|
|
|
|
|
for (uint8_t i = 1; i < ARRAYLEN(blocks); i++) {
|
|
|
|
blocks[i] = bytes_to_num(rawhex + ((i - 1) * 4), sizeof(uint32_t));
|
2019-09-27 03:15:38 +08:00
|
|
|
}
|
|
|
|
cmdp += 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
PrintAndLogEx(WARNING, "Unknown parameter '%c'", param_getchar(Cmd, cmdp));
|
|
|
|
errors = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errors || cmdp == 0) return usage_lf_nexwatch_clone();
|
|
|
|
|
|
|
|
//Nexwatch - compat mode, PSK, data rate 40, 3 data blocks
|
|
|
|
blocks[0] = T55x7_MODULATION_PSK1 | T55x7_BITRATE_RF_32 | 4 << T55x7_MAXBLOCK_SHIFT;
|
|
|
|
|
|
|
|
PrintAndLogEx(INFO, "Preparing to clone NexWatch to T55x7 with raw hex");
|
|
|
|
print_blocks(blocks, ARRAYLEN(blocks));
|
|
|
|
|
|
|
|
return clone_t55xx_tag(blocks, ARRAYLEN(blocks));
|
2019-09-16 03:00:38 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CmdNexWatchSim(const char *Cmd) {
|
|
|
|
PrintAndLogEx(INFO, " To be implemented, feel free to contribute!");
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-14 21:51:12 +08:00
|
|
|
static command_t CommandTable[] = {
|
2019-09-16 03:00:38 +08:00
|
|
|
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
|
|
|
{"demod", CmdNexWatchDemod, AlwaysAvailable, "Demodulate a NexWatch tag (nexkey, quadrakey) from the GraphBuffer"},
|
|
|
|
{"read", CmdNexWatchRead, IfPm3Lf, "Attempt to Read and Extract tag data from the antenna"},
|
|
|
|
{"clone", CmdNexWatchClone, IfPm3Lf, "clone NexWatch tag"},
|
|
|
|
{"sim", CmdNexWatchSim, IfPm3Lf, "simulate NexWatch tag"},
|
2019-05-02 02:48:15 +08:00
|
|
|
{NULL, NULL, NULL, NULL}
|
2017-07-14 21:51:12 +08:00
|
|
|
};
|
|
|
|
|
2019-04-12 08:07:11 +08:00
|
|
|
static int CmdHelp(const char *Cmd) {
|
|
|
|
(void)Cmd; // Cmd is not used so far
|
|
|
|
CmdsHelp(CommandTable);
|
2019-05-22 20:32:30 +08:00
|
|
|
return PM3_SUCCESS;
|
2017-07-14 21:51:12 +08:00
|
|
|
}
|
|
|
|
|
2019-04-12 08:07:11 +08:00
|
|
|
int CmdLFNEXWATCH(const char *Cmd) {
|
|
|
|
clearCommandBuffer();
|
2019-04-19 06:47:51 +08:00
|
|
|
return CmdsParse(CommandTable, Cmd);
|
2017-07-14 21:51:12 +08:00
|
|
|
}
|
2019-04-12 06:38:54 +08:00
|
|
|
|
|
|
|
int detectNexWatch(uint8_t *dest, size_t *size, bool *invert) {
|
|
|
|
|
|
|
|
uint8_t preamble[28] = {0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
|
|
|
// sanity check.
|
|
|
|
if (*size < sizeof(preamble) + 100) return -1;
|
|
|
|
|
|
|
|
size_t startIdx = 0;
|
|
|
|
|
|
|
|
if (!preambleSearch(DemodBuffer, preamble, sizeof(preamble), size, &startIdx)) {
|
|
|
|
// if didn't find preamble try again inverting
|
2019-06-12 21:41:23 +08:00
|
|
|
uint8_t preamble_i[28] = {1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
|
2019-04-12 06:38:54 +08:00
|
|
|
if (!preambleSearch(DemodBuffer, preamble_i, sizeof(preamble_i), size, &startIdx)) return -4;
|
|
|
|
*invert ^= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// size tests?
|
|
|
|
return (int) startIdx;
|
|
|
|
}
|
|
|
|
|
|
|
|
int demodNexWatch(void) {
|
|
|
|
return CmdNexWatchDemod("");
|
|
|
|
}
|
|
|
|
|