proxmark3/armsrc/hfsnoop.c

215 lines
6.9 KiB
C
Raw Normal View History

//-----------------------------------------------------------------------------
2022-01-06 09:19:46 +08:00
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
//
2022-01-06 09:19:46 +08:00
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// See LICENSE.txt for the text of the license.
//-----------------------------------------------------------------------------
// Routines to get sample data from FPGA.
//-----------------------------------------------------------------------------
2019-10-27 00:56:36 +08:00
#include "hfsnoop.h"
#include "proxmark3_arm.h"
#include "BigBuf.h"
#include "fpgaloader.h"
#include "ticks.h"
#include "dbprint.h"
#include "util.h"
#include "fpga.h"
#include "appmain.h"
#include "cmd.h"
static void RAMFUNC optimizedSniff(uint16_t *dest, uint16_t dsize) {
while (dsize > 0) {
2019-03-10 07:00:59 +08:00
if (AT91C_BASE_SSC->SSC_SR & AT91C_SSC_RXRDY) {
2019-03-10 03:34:41 +08:00
*dest = (uint16_t)(AT91C_BASE_SSC->SSC_RHR);
dest++;
dsize -= sizeof(dsize);
2019-03-10 03:34:41 +08:00
}
}
}
static void RAMFUNC skipSniff(uint8_t *dest, uint16_t dsize, uint8_t skipMode, uint8_t skipRatio) {
uint32_t accum = (skipMode == HF_SNOOP_SKIP_MIN) ? 0xffffffff : 0;
uint8_t ratioindx = 0;
while (dsize > 0) {
if (AT91C_BASE_SSC->SSC_SR & AT91C_SSC_RXRDY) {
volatile uint16_t val = (uint16_t)(AT91C_BASE_SSC->SSC_RHR);
switch (skipMode) {
case HF_SNOOP_SKIP_MAX:
if (accum < (val & 0xff))
accum = val & 0xff;
2022-07-10 05:47:40 +08:00
if (accum < (val >> 8))
accum = val >> 8;
2022-07-10 05:54:29 +08:00
break;
case HF_SNOOP_SKIP_MIN:
if (accum > (val & 0xff))
accum = val & 0xff;
2022-07-10 05:47:40 +08:00
if (accum > (val >> 8))
accum = val >> 8;
2022-07-10 05:54:29 +08:00
break;
case HF_SNOOP_SKIP_AVG:
2022-07-10 05:54:29 +08:00
accum += (val & 0xff) + (val & 0xff);
break;
2022-07-25 14:00:30 +08:00
default: { // HF_SNOOP_SKIP_DROP and the rest
if (ratioindx == 0)
accum = val & 0xff;
}
}
ratioindx++;
if (ratioindx >= skipRatio) {
2022-07-10 05:29:25 +08:00
if (skipMode == HF_SNOOP_SKIP_AVG && skipRatio > 0) {
accum = accum / (skipRatio * 2);
if (accum <= 0xff)
*dest = accum;
else
*dest = 0xff;
} else {
*dest = accum;
2022-07-10 05:29:25 +08:00
}
2022-07-10 05:54:29 +08:00
dest++;
dsize --;
2022-07-10 05:47:40 +08:00
accum = (skipMode == HF_SNOOP_SKIP_MIN) ? 0xffffffff : 0;
2022-07-10 05:54:29 +08:00
ratioindx = 0;
}
}
}
}
int HfSniff(uint32_t samplesToSkip, uint32_t triggersToSkip, uint16_t *len, uint8_t skipMode, uint8_t skipRatio) {
2019-03-10 07:00:59 +08:00
BigBuf_free();
2020-06-20 00:34:47 +08:00
BigBuf_Clear_ext(false);
Dbprintf("Skipping first %d sample pairs, Skipping %d triggers", samplesToSkip, triggersToSkip);
2019-03-10 03:34:41 +08:00
LED_D_ON();
2019-03-10 03:34:41 +08:00
FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
2019-03-10 03:34:41 +08:00
SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
2019-03-10 03:34:41 +08:00
// Set up the synchronous serial port
2020-07-06 21:16:00 +08:00
FpgaSetupSsc(FPGA_MAJOR_MODE_HF_SNIFF);
2019-03-10 03:34:41 +08:00
// Setting Frame Mode For better performance on high speed data transfer.
AT91C_BASE_SSC->SSC_RFMR = SSC_FRAME_MODE_BITS_IN_WORD(16);
2020-07-06 21:16:00 +08:00
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SNIFF);
SpinDelay(100);
*len = (BigBuf_max_traceLen() & 0xFFFE);
uint8_t *mem = BigBuf_malloc(*len);
2020-08-13 18:25:04 +08:00
uint32_t trigger_cnt = 0;
uint16_t r = 0, interval = 0;
2020-06-20 00:34:47 +08:00
bool pressed = false;
while (pressed == false) {
2019-03-10 03:34:41 +08:00
WDT_HIT();
// cancel w usb command.
if (interval == 2000) {
if (data_available())
break;
interval = 0;
} else {
interval++;
}
// check if trigger is reached
2019-03-10 03:34:41 +08:00
if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
r = (uint16_t)AT91C_BASE_SSC->SSC_RHR;
r = MAX(r & 0xFF, r >> 8);
2021-10-10 07:35:38 +08:00
// 180 (0xB4) arbitrary value to see if a strong RF field is near.
if (r > 180) {
2020-08-13 18:25:04 +08:00
if (++trigger_cnt > triggersToSkip) {
2019-03-10 07:00:59 +08:00
break;
}
2019-03-10 03:34:41 +08:00
}
}
pressed = BUTTON_PRESS();
2019-03-10 03:34:41 +08:00
}
if (pressed == false) {
// skip samples loop
while (samplesToSkip != 0) {
2019-03-10 03:34:41 +08:00
if (AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_RXRDY)) {
samplesToSkip--;
}
2019-03-10 03:34:41 +08:00
}
if (skipMode == 0)
optimizedSniff((uint16_t *)mem, *len);
else
skipSniff(mem, *len, skipMode, skipRatio);
2021-08-22 05:02:27 +08:00
if (g_dbglevel >= DBG_INFO) {
Dbprintf("Trigger kicked in (%d >= 180)", r);
Dbprintf("Collected %u samples", *len);
}
2019-03-10 03:34:41 +08:00
}
//Resetting Frame mode (First set in fpgaloader.c)
AT91C_BASE_SSC->SSC_RFMR = SSC_FRAME_MODE_BITS_IN_WORD(8) | AT91C_SSC_MSBF | SSC_FRAME_MODE_WORDS_PER_TRANSFER(0);
LED_D_OFF();
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
BigBuf_free();
return (pressed) ? PM3_EOPABORTED : PM3_SUCCESS;
}
void HfPlotDownload(void) {
2020-07-13 23:56:19 +08:00
tosend_t *ts = get_tosend();
uint8_t *this_buf = ts->buf;
2020-01-13 00:28:12 +08:00
FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
2020-07-07 19:18:53 +08:00
FpgaSetupSsc(FPGA_MAJOR_MODE_HF_GET_TRACE);
2020-01-13 00:28:12 +08:00
AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTDIS; // Disable DMA Transfer
AT91C_BASE_PDC_SSC->PDC_RPR = (uint32_t) this_buf; // start transfer to this memory address
AT91C_BASE_PDC_SSC->PDC_RCR = PM3_CMD_DATA_SIZE; // transfer this many samples
2020-07-13 23:56:19 +08:00
ts->buf[0] = (uint8_t)AT91C_BASE_SSC->SSC_RHR; // clear receive register
2020-01-13 00:28:12 +08:00
AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTEN; // Start DMA transfer
2020-01-13 00:28:12 +08:00
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_GET_TRACE); // let FPGA transfer its internal Block-RAM
2020-01-13 00:28:12 +08:00
LED_B_ON();
for (size_t i = 0; i < FPGA_TRACE_SIZE; i += PM3_CMD_DATA_SIZE) {
// prepare next DMA transfer:
2020-07-13 23:56:19 +08:00
uint8_t *next_buf = ts->buf + ((i + PM3_CMD_DATA_SIZE) % (2 * PM3_CMD_DATA_SIZE));
2020-01-13 00:28:12 +08:00
AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t)next_buf;
AT91C_BASE_PDC_SSC->PDC_RNCR = PM3_CMD_DATA_SIZE;
2020-01-13 00:28:12 +08:00
size_t len = MIN(FPGA_TRACE_SIZE - i, PM3_CMD_DATA_SIZE);
2020-01-13 00:28:12 +08:00
while (!(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_ENDRX))) {}; // wait for DMA transfer to complete
2020-01-13 00:28:12 +08:00
reply_old(CMD_FPGAMEM_DOWNLOADED, i, len, FPGA_TRACE_SIZE, this_buf, len);
this_buf = next_buf;
}
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
2020-01-13 00:28:12 +08:00
// Trigger a finish downloading signal with an ACK frame
2022-07-18 01:29:47 +08:00
reply_ng(CMD_FPGAMEM_DOWNLOAD, PM3_SUCCESS, NULL, 0);
2020-01-13 00:28:12 +08:00
LED_B_OFF();
}