mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-10 02:04:39 +08:00
323f70ff7a
Example: [usb] pm3 --> trace load -f traces/lf_HitagS256_dump.trace [+] loaded 287 bytes from binary file traces/lf_HitagS256_dump.trace [+] Recorded Activity (TraceLen = 287 bytes) [?] try `trace list -1 -t ...` to view trace. Remember the `-1` param [usb] pm3 --> trace list -1 -t hitags -c [+] Recorded activity (trace len = 287 bytes) [=] start = start of start frame end = end of frame. src = source of transfer [=] Hitag1 / Hitag2 / HitagS - Timings in ETU (8us) Start | End | Src | Data (! denotes parity error) ------------+------------+-----+----------------------------------------- 0 | 0 | Rdr |18(5) 117 | 117 | Tag |0f(4) 2c ab cc b3 cf 32 bf [2f] 0 | 0 | Rdr |00(5) 21 a5 b4 73 [8c] 117 | 117 | Tag |0f(4) c9 00 00 aa [75] 0 | 0 | Rdr |0c(4) 00 [ab] 117 | 117 | Tag |0f(4) 21 a5 b4 73 [53] 0 | 0 | Rdr |0c(4) 01 [b6] 117 | 117 | Tag |0f(4) c9 00 00 aa [75] 0 | 0 | Rdr |0c(4) 02 [91] 117 | 117 | Tag |0f(4) 48 54 4f 4e [2c] 0 | 0 | Rdr |0c(4) 03 [8c] 117 | 117 | Tag |0f(4) 4d 49 4b 52 [1e] 0 | 0 | Rdr |0c(4) 04 [df] 117 | 117 | Tag |0f(4) 00 00 00 00 [a6] 0 | 0 | Rdr |0c(4) 05 [c2] 117 | 117 | Tag |0f(4) 00 00 00 00 [a6] 0 | 0 | Rdr |0c(4) 06 [e5] 117 | 117 | Tag |0f(4) 00 00 00 00 [a6] 0 | 0 | Rdr |0c(4) 07 [f8] 117 | 117 | Tag |0f(4) 57 5f 4f 4b [88] 0 | 0 | Rdr |0c(4) 08 [43]
75 lines
2.6 KiB
C
75 lines
2.6 KiB
C
//-----------------------------------------------------------------------------
|
|
// Jonathan Westhues, Aug 2005
|
|
// Gerhard de Koning Gans, April 2008, May 2011
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
// BigBuf and functions to allocate/free parts of it.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __BIGBUF_H
|
|
#define __BIGBUF_H
|
|
|
|
#include "common.h"
|
|
|
|
#define MAX_FRAME_SIZE 256 // maximum allowed ISO14443 frame
|
|
#define MAX_PARITY_SIZE ((MAX_FRAME_SIZE + 7) / 8)
|
|
#define MAX_MIFARE_FRAME_SIZE 18 // biggest Mifare frame is answer to a read (one block = 16 Bytes) + 2 Bytes CRC
|
|
#define MAX_MIFARE_PARITY_SIZE 3 // need 18 parity bits for the 18 Byte above. 3 Bytes are enough to store these
|
|
#define CARD_MEMORY_SIZE 4096
|
|
#define DMA_BUFFER_SIZE 512
|
|
|
|
// 8 data bits and 1 parity bit per payload byte, 1 correction bit, 1 SOC bit, 2 EOC bits
|
|
#define TOSEND_BUFFER_SIZE (9 * MAX_FRAME_SIZE + 1 + 1 + 2)
|
|
|
|
uint8_t *BigBuf_get_addr(void);
|
|
uint32_t BigBuf_get_size(void);
|
|
uint8_t *BigBuf_get_EM_addr(void);
|
|
uint16_t BigBuf_max_traceLen(void);
|
|
void BigBuf_initialize(void);
|
|
void BigBuf_Clear(void);
|
|
void BigBuf_Clear_ext(bool verbose);
|
|
void BigBuf_Clear_keep_EM(void);
|
|
void BigBuf_Clear_EM(void);
|
|
uint8_t *BigBuf_malloc(uint16_t);
|
|
uint8_t *BigBuf_calloc(uint16_t);
|
|
void BigBuf_free(void);
|
|
void BigBuf_free_keep_EM(void);
|
|
void BigBuf_print_status(void);
|
|
uint32_t BigBuf_get_traceLen(void);
|
|
void clear_trace(void);
|
|
void set_tracing(bool enable);
|
|
void set_tracelen(uint32_t value);
|
|
bool get_tracing(void);
|
|
|
|
bool RAMFUNC LogTrace(const uint8_t *btBytes, uint16_t iLen, uint32_t timestamp_start, uint32_t timestamp_end, uint8_t *parity, bool readerToTag);
|
|
bool RAMFUNC LogTraceBits(const uint8_t *btBytes, uint16_t bitLen, uint32_t timestamp_start, uint32_t timestamp_end, bool readerToTag);
|
|
bool LogTrace_ISO15693(const uint8_t *bytes, uint16_t len, uint32_t ts_start, uint32_t ts_end, uint8_t *parity, bool reader2tag);
|
|
|
|
uint8_t emlSet(uint8_t *data, uint32_t offset, uint32_t length);
|
|
|
|
typedef struct {
|
|
int max;
|
|
int bit;
|
|
uint8_t *buf;
|
|
} tosend_t;
|
|
|
|
tosend_t *get_tosend(void);
|
|
void tosend_reset(void);
|
|
void tosend_stuffbit(int b);
|
|
|
|
typedef struct {
|
|
uint16_t size;
|
|
uint8_t *buf;
|
|
} dmabuf8_t;
|
|
|
|
typedef struct {
|
|
uint16_t size;
|
|
uint16_t *buf;
|
|
} dmabuf16_t;
|
|
|
|
dmabuf8_t *get_dma8(void);
|
|
dmabuf16_t *get_dma16(void);
|
|
#endif /* __BIGBUF_H */
|