mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
d19754567d
* .h include only the strict minimum for their own parsing * this forces all files to include explicitment their needs and not count on far streched dependencies * this helps Makefile to rebuild only the minimum * according to this rule, most standalone .h are now gone * big app.h is gone * remove seldom __cplusplus, if c++ happens, everything will have to be done properly anyway * all unrequired include were removed * split common/ into common/ (client+arm) and common_arm/ (os+bootloader) * bring zlib to common/ * bring stuff not really/not yet used in common back to armsrc/ or client/ * bring liblua into client/ * bring uart into client/ * move some portions of code around (dbprint, protocols,...) * rename unused files into *_disabled.[ch] to make it explicit * rename soft Uarts between 14a, 14b and iclass, so a standalone could use several without clash * remove PrintAndLogDevice * move deprecated-hid-flasher from client to tools * Makefiles * treat deps in armsrc/ as in client/ * client: stop on warning (-Werror), same as for armsrc/ Tested on: * all standalone modes * Linux
124 lines
4 KiB
C
124 lines
4 KiB
C
//-----------------------------------------------------------------------------
|
|
//
|
|
// 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)
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "cmdlfnexwatch.h"
|
|
|
|
#include "cmdparser.h" // command_t
|
|
#include "comms.h"
|
|
#include "ui.h"
|
|
#include "cmddata.h" // preamblesearch
|
|
#include "cmdlf.h"
|
|
#include "lfdemod.h"
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
static int CmdNexWatchDemod(const char *Cmd) {
|
|
(void)Cmd; // Cmd is not used so far
|
|
|
|
if (PSKDemod("", false) != PM3_SUCCESS) {
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch can't demod signal");
|
|
return PM3_ESOFT;
|
|
}
|
|
bool invert = false;
|
|
size_t size = DemodBufferLen;
|
|
int idx = detectNexWatch(DemodBuffer, &size, &invert);
|
|
if (idx <= 0) {
|
|
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)
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch preamble not found");
|
|
// else if (idx == -5)
|
|
// PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch size not correct: %d", size);
|
|
else
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - NexWatch error %d", idx);
|
|
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
setDemodBuff(DemodBuffer, size, idx + 4);
|
|
setClockGrid(g_DemodClock, g_DemodStartIdx + ((idx + 4)*g_DemodClock));
|
|
|
|
// idx = 8 + 32; // 8 = preamble, 32 = reserved bits (always 0)
|
|
|
|
//get ID
|
|
uint32_t ID = 0;
|
|
for (uint8_t k = 0; k < 4; k++) {
|
|
for (uint8_t m = 0; m < 8; m++) {
|
|
ID = (ID << 1) | DemodBuffer[m + k + (m * 4)];
|
|
}
|
|
}
|
|
//parity check (TBD)
|
|
|
|
//checksum check (TBD)
|
|
|
|
//output
|
|
PrintAndLogEx(NORMAL, "NexWatch ID: %d", ID);
|
|
if (invert) {
|
|
PrintAndLogEx(NORMAL, "Had to Invert - probably NexKey");
|
|
for (size_t i = 0; i < size; i++)
|
|
DemodBuffer[i] ^= 1;
|
|
}
|
|
|
|
CmdPrintDemodBuff("x");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
//by marshmellow
|
|
//see ASKDemod for what args are accepted
|
|
static int CmdNexWatchRead(const char *Cmd) {
|
|
lf_read(true, 10000);
|
|
return CmdNexWatchDemod(Cmd);
|
|
}
|
|
|
|
static command_t CommandTable[] = {
|
|
{"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"},
|
|
{NULL, NULL, NULL, NULL}
|
|
};
|
|
|
|
static int CmdHelp(const char *Cmd) {
|
|
(void)Cmd; // Cmd is not used so far
|
|
CmdsHelp(CommandTable);
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
int CmdLFNEXWATCH(const char *Cmd) {
|
|
clearCommandBuffer();
|
|
return CmdsParse(CommandTable, Cmd);
|
|
}
|
|
|
|
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
|
|
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};
|
|
if (!preambleSearch(DemodBuffer, preamble_i, sizeof(preamble_i), size, &startIdx)) return -4;
|
|
*invert ^= 1;
|
|
}
|
|
|
|
// size tests?
|
|
return (int) startIdx;
|
|
}
|
|
|
|
int demodNexWatch(void) {
|
|
return CmdNexWatchDemod("");
|
|
}
|
|
|