2010-02-21 05:57:20 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Jonathan Westhues, Mar 2006
|
|
|
|
// Edits by Gerhard de Koning Gans, Sep 2007
|
2010-02-21 08:12:52 +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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Definitions for all the types of commands that may be sent over USB; our
|
|
|
|
// own protocol.
|
2010-02-21 05:57:20 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __USB_CMD_H
|
|
|
|
#define __USB_CMD_H
|
2017-01-21 18:26:37 +08:00
|
|
|
|
2019-04-24 05:36:36 +08:00
|
|
|
// Use it e.g. when using slow links such as BT
|
|
|
|
#define USART_SLOW_LINK
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
#ifdef _MSC_VER
|
2019-03-10 07:00:59 +08:00
|
|
|
typedef DWORD uint32_t;
|
|
|
|
typedef BYTE uint8_t;
|
|
|
|
#define PACKED
|
|
|
|
// stuff
|
2010-02-21 05:57:20 +08:00
|
|
|
#else
|
2019-03-10 07:00:59 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define PACKED __attribute__((packed))
|
2010-02-21 05:57:20 +08:00
|
|
|
#endif
|
|
|
|
|
2019-05-01 03:10:11 +08:00
|
|
|
#define PM3_CMD_DATA_SIZE 512
|
|
|
|
#define PM3_CMD_DATA_SIZE_MIX ( PM3_CMD_DATA_SIZE - 3 * sizeof(uint64_t) )
|
2012-12-05 07:39:18 +08:00
|
|
|
|
|
|
|
typedef struct {
|
2019-03-10 07:00:59 +08:00
|
|
|
uint64_t cmd;
|
|
|
|
uint64_t arg[3];
|
|
|
|
union {
|
2019-05-01 03:10:11 +08:00
|
|
|
uint8_t asBytes[PM3_CMD_DATA_SIZE];
|
|
|
|
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
2019-03-10 07:00:59 +08:00
|
|
|
} d;
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketCommandOLD;
|
2019-04-03 04:06:10 +08:00
|
|
|
|
2019-04-16 16:01:08 +08:00
|
|
|
typedef struct {
|
|
|
|
uint32_t magic;
|
2019-04-20 08:41:40 +08:00
|
|
|
uint16_t length : 15; // length of the variable part, 0 if none.
|
|
|
|
bool ng : 1;
|
2019-04-18 06:12:52 +08:00
|
|
|
uint16_t cmd;
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketCommandNGPreamble;
|
2019-04-16 16:01:08 +08:00
|
|
|
|
2019-04-19 03:49:32 +08:00
|
|
|
#define COMMANDNG_PREAMBLE_MAGIC 0x61334d50 // PM3a
|
|
|
|
#define COMMANDNG_POSTAMBLE_MAGIC 0x3361 // a3
|
2019-04-16 16:01:08 +08:00
|
|
|
|
|
|
|
typedef struct {
|
2019-04-17 02:06:32 +08:00
|
|
|
uint16_t crc;
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketCommandNGPostamble;
|
2019-04-16 16:01:08 +08:00
|
|
|
|
2019-04-18 06:12:52 +08:00
|
|
|
// For internal usage
|
2019-04-18 03:30:01 +08:00
|
|
|
typedef struct {
|
2019-04-18 06:12:52 +08:00
|
|
|
uint16_t cmd;
|
|
|
|
uint16_t length;
|
|
|
|
uint32_t magic; // NG
|
|
|
|
uint16_t crc; // NG
|
|
|
|
uint64_t oldarg[3]; // OLD
|
|
|
|
union {
|
2019-05-01 03:10:11 +08:00
|
|
|
uint8_t asBytes[PM3_CMD_DATA_SIZE];
|
|
|
|
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
2019-04-18 06:12:52 +08:00
|
|
|
} data;
|
|
|
|
bool ng; // does it store NG data or OLD data?
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketCommandNG;
|
2019-04-17 05:15:23 +08:00
|
|
|
|
2019-04-18 06:12:52 +08:00
|
|
|
// For reception and CRC check
|
|
|
|
typedef struct {
|
2019-04-18 18:43:35 +08:00
|
|
|
PacketCommandNGPreamble pre;
|
2019-05-01 03:10:11 +08:00
|
|
|
uint8_t data[PM3_CMD_DATA_SIZE];
|
2019-04-18 18:43:35 +08:00
|
|
|
PacketCommandNGPostamble foopost; // Probably not at that offset!
|
|
|
|
} PACKED PacketCommandNGRaw;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint64_t cmd;
|
|
|
|
uint64_t arg[3];
|
|
|
|
union {
|
2019-05-01 03:10:11 +08:00
|
|
|
uint8_t asBytes[PM3_CMD_DATA_SIZE];
|
|
|
|
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
2019-04-18 18:43:35 +08:00
|
|
|
} d;
|
|
|
|
} PACKED PacketResponseOLD;
|
2019-04-18 06:12:52 +08:00
|
|
|
|
2019-04-17 05:15:23 +08:00
|
|
|
typedef struct {
|
|
|
|
uint32_t magic;
|
2019-04-20 09:17:19 +08:00
|
|
|
uint16_t length : 15; // length of the variable part, 0 if none.
|
|
|
|
bool ng : 1;
|
2019-04-17 05:15:23 +08:00
|
|
|
int16_t status;
|
2019-04-18 05:44:48 +08:00
|
|
|
uint16_t cmd;
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketResponseNGPreamble;
|
2019-04-17 05:15:23 +08:00
|
|
|
|
2019-04-19 03:49:32 +08:00
|
|
|
#define RESPONSENG_PREAMBLE_MAGIC 0x62334d50 // PM3b
|
|
|
|
#define RESPONSENG_POSTAMBLE_MAGIC 0x3362 // b3
|
2019-04-17 05:15:23 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16_t crc;
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketResponseNGPostamble;
|
2019-04-17 05:15:23 +08:00
|
|
|
|
2019-04-18 05:44:48 +08:00
|
|
|
// For internal usage
|
2019-04-18 03:30:01 +08:00
|
|
|
typedef struct {
|
2019-04-18 05:44:48 +08:00
|
|
|
uint16_t cmd;
|
|
|
|
uint16_t length;
|
|
|
|
uint32_t magic; // NG
|
|
|
|
int16_t status; // NG
|
|
|
|
uint16_t crc; // NG
|
|
|
|
uint64_t oldarg[3]; // OLD
|
|
|
|
union {
|
2019-05-01 03:10:11 +08:00
|
|
|
uint8_t asBytes[PM3_CMD_DATA_SIZE];
|
|
|
|
uint32_t asDwords[PM3_CMD_DATA_SIZE / 4];
|
2019-04-18 05:44:48 +08:00
|
|
|
} data;
|
|
|
|
bool ng; // does it store NG data or OLD data?
|
2019-04-18 18:43:35 +08:00
|
|
|
} PACKED PacketResponseNG;
|
2019-04-16 16:01:08 +08:00
|
|
|
|
2019-04-18 05:44:48 +08:00
|
|
|
// For reception and CRC check
|
|
|
|
typedef struct {
|
2019-04-18 18:43:35 +08:00
|
|
|
PacketResponseNGPreamble pre;
|
2019-05-01 03:10:11 +08:00
|
|
|
uint8_t data[PM3_CMD_DATA_SIZE];
|
2019-04-18 18:43:35 +08:00
|
|
|
PacketResponseNGPostamble foopost; // Probably not at that offset!
|
|
|
|
} PACKED PacketResponseNGRaw;
|
2019-04-18 05:44:48 +08:00
|
|
|
|
2015-01-31 06:03:44 +08:00
|
|
|
// A struct used to send sample-configs over USB
|
2019-03-10 07:00:59 +08:00
|
|
|
typedef struct {
|
2019-03-10 01:41:30 +08:00
|
|
|
uint8_t decimation;
|
|
|
|
uint8_t bits_per_sample;
|
|
|
|
bool averaging;
|
|
|
|
int divisor;
|
|
|
|
int trigger_threshold;
|
2015-01-31 06:03:44 +08:00
|
|
|
} sample_config;
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
typedef struct {
|
2019-03-10 01:41:30 +08:00
|
|
|
uint16_t start_gap;
|
|
|
|
uint16_t write_gap;
|
|
|
|
uint16_t write_0;
|
|
|
|
uint16_t write_1;
|
|
|
|
uint16_t read_gap;
|
2018-09-12 00:35:07 +08:00
|
|
|
} t55xx_config;
|
|
|
|
|
2019-04-27 08:46:20 +08:00
|
|
|
// TODO add more fields to report all hw & sw capabilities of pm3
|
|
|
|
typedef struct {
|
|
|
|
uint32_t baudrate;
|
|
|
|
bool via_fpc;
|
2019-05-01 23:19:37 +08:00
|
|
|
// rdv4
|
|
|
|
bool compiled_with_flash;
|
|
|
|
bool compiled_with_smartcard;
|
|
|
|
bool compiled_with_fpc;
|
|
|
|
bool compiled_with_fpc_host;
|
|
|
|
// lf
|
|
|
|
bool compiled_with_lf;
|
|
|
|
bool compiled_with_hitag;
|
|
|
|
// hf
|
|
|
|
bool compiled_with_hfsniff;
|
|
|
|
bool compiled_with_iso14443a;
|
|
|
|
bool compiled_with_iso14443b;
|
|
|
|
bool compiled_with_iso15693;
|
|
|
|
bool compiled_with_felica;
|
|
|
|
bool compiled_with_legicrf;
|
|
|
|
bool compiled_with_iclass;
|
|
|
|
// misc
|
|
|
|
bool compiled_with_lcd;
|
|
|
|
|
|
|
|
// Following are not yet implemented:
|
|
|
|
// rdv4
|
|
|
|
bool hw_available_flash;
|
|
|
|
bool hw_available_smartcard;
|
|
|
|
// rdv4 bt addon
|
|
|
|
bool hw_available_fpc_host;
|
2019-04-27 08:46:20 +08:00
|
|
|
} PACKED capabilities_t;
|
|
|
|
|
|
|
|
extern capabilities_t pm3_capabilities;
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// For the bootloader
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_DEVICE_INFO 0x0000
|
|
|
|
#define CMD_SETUP_WRITE 0x0001
|
|
|
|
#define CMD_FINISH_WRITE 0x0003
|
|
|
|
#define CMD_HARDWARE_RESET 0x0004
|
|
|
|
#define CMD_START_FLASH 0x0005
|
|
|
|
#define CMD_NACK 0x00fe
|
|
|
|
#define CMD_ACK 0x00ff
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
// For general mucking around
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_DEBUG_PRINT_STRING 0x0100
|
|
|
|
#define CMD_DEBUG_PRINT_INTEGERS 0x0101
|
|
|
|
#define CMD_DEBUG_PRINT_BYTES 0x0102
|
|
|
|
#define CMD_LCD_RESET 0x0103
|
|
|
|
#define CMD_LCD 0x0104
|
|
|
|
#define CMD_BUFF_CLEAR 0x0105
|
|
|
|
#define CMD_READ_MEM 0x0106
|
|
|
|
#define CMD_VERSION 0x0107
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_STATUS 0x0108
|
|
|
|
#define CMD_PING 0x0109
|
|
|
|
#define CMD_DOWNLOAD_EML_BIGBUF 0x0110
|
|
|
|
#define CMD_DOWNLOADED_EML_BIGBUF 0x0111
|
2019-04-27 08:46:20 +08:00
|
|
|
#define CMD_CAPABILITIES 0x0112
|
2018-09-06 11:24:50 +08:00
|
|
|
|
2018-05-06 15:26:06 +08:00
|
|
|
// RDV40, Flash memory operations
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_FLASHMEM_READ 0x0120
|
|
|
|
#define CMD_FLASHMEM_WRITE 0x0121
|
|
|
|
#define CMD_FLASHMEM_WIPE 0x0122
|
|
|
|
#define CMD_FLASHMEM_DOWNLOAD 0x0123
|
|
|
|
#define CMD_FLASHMEM_DOWNLOADED 0x0124
|
|
|
|
#define CMD_FLASHMEM_INFO 0x0125
|
2018-09-06 11:24:50 +08:00
|
|
|
#define CMD_FLASHMEM_SET_SPIBAUDRATE 0x0126
|
2018-02-13 22:36:20 +08:00
|
|
|
|
2018-06-23 12:39:23 +08:00
|
|
|
// RDV40, Smart card operations
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_SMART_RAW 0x0140
|
|
|
|
#define CMD_SMART_UPGRADE 0x0141
|
|
|
|
#define CMD_SMART_UPLOAD 0x0142
|
|
|
|
#define CMD_SMART_ATR 0x0143
|
|
|
|
#define CMD_SMART_SETBAUD 0x0144
|
|
|
|
#define CMD_SMART_SETCLOCK 0x0145
|
2018-06-23 12:39:23 +08:00
|
|
|
|
2018-07-30 15:54:44 +08:00
|
|
|
// RDV40, FPC serial
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_FPC_SEND 0x0160
|
|
|
|
#define CMD_FPC_READ 0x0161
|
2018-07-30 15:54:44 +08:00
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// For low-frequency tags
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READ_TI_TYPE 0x0202
|
|
|
|
#define CMD_WRITE_TI_TYPE 0x0203
|
|
|
|
#define CMD_DOWNLOADED_RAW_BITS_TI_TYPE 0x0204
|
|
|
|
#define CMD_ACQUIRE_RAW_ADC_SAMPLES_125K 0x0205
|
|
|
|
#define CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K 0x0206
|
|
|
|
#define CMD_DOWNLOAD_RAW_ADC_SAMPLES_125K 0x0207
|
|
|
|
#define CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K 0x0208
|
2017-09-14 17:13:10 +08:00
|
|
|
#define CMD_UPLOAD_SIM_SAMPLES_125K 0x0209
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_TAG_125K 0x020A
|
|
|
|
#define CMD_HID_DEMOD_FSK 0x020B
|
|
|
|
#define CMD_HID_SIM_TAG 0x020C
|
|
|
|
#define CMD_SET_LF_DIVISOR 0x020D
|
|
|
|
#define CMD_LF_SIMULATE_BIDIR 0x020E
|
|
|
|
#define CMD_SET_ADC_MUX 0x020F
|
|
|
|
#define CMD_HID_CLONE_TAG 0x0210
|
|
|
|
#define CMD_EM410X_WRITE_TAG 0x0211
|
|
|
|
#define CMD_INDALA_CLONE_TAG 0x0212
|
|
|
|
// for 224 bits UID
|
|
|
|
#define CMD_INDALA_CLONE_TAG_L 0x0213
|
2013-03-01 01:04:23 +08:00
|
|
|
#define CMD_T55XX_READ_BLOCK 0x0214
|
|
|
|
#define CMD_T55XX_WRITE_BLOCK 0x0215
|
2015-11-03 03:46:17 +08:00
|
|
|
#define CMD_T55XX_RESET_READ 0x0216
|
2013-03-01 01:04:23 +08:00
|
|
|
#define CMD_PCF7931_READ 0x0217
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_PCF7931_WRITE 0x0223
|
2013-03-01 01:04:23 +08:00
|
|
|
#define CMD_EM4X_READ_WORD 0x0218
|
|
|
|
#define CMD_EM4X_WRITE_WORD 0x0219
|
2014-03-19 04:52:48 +08:00
|
|
|
#define CMD_IO_DEMOD_FSK 0x021A
|
|
|
|
#define CMD_IO_CLONE_TAG 0x021B
|
2015-02-20 10:35:34 +08:00
|
|
|
#define CMD_EM410X_DEMOD 0x021c
|
2019-03-12 20:15:39 +08:00
|
|
|
// Sampling configuration for LF reader/sniffer
|
2015-01-31 06:03:44 +08:00
|
|
|
#define CMD_SET_LF_SAMPLING_CONFIG 0x021d
|
2015-02-20 10:35:34 +08:00
|
|
|
#define CMD_FSK_SIM_TAG 0x021E
|
|
|
|
#define CMD_ASK_SIM_TAG 0x021F
|
2015-02-22 10:36:02 +08:00
|
|
|
#define CMD_PSK_SIM_TAG 0x0220
|
2015-07-19 02:43:14 +08:00
|
|
|
#define CMD_AWID_DEMOD_FSK 0x0221
|
2015-10-05 00:01:33 +08:00
|
|
|
#define CMD_VIKING_CLONE_TAG 0x0222
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_T55XX_WAKEUP 0x0224
|
|
|
|
#define CMD_COTAG 0x0225
|
|
|
|
#define CMD_SET_LF_T55XX_CONFIG 0x0226
|
2014-12-31 18:35:43 +08:00
|
|
|
|
2019-01-11 21:46:27 +08:00
|
|
|
#define CMD_T55XX_CHKPWDS 0x0230
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
/* CMD_SET_ADC_MUX: ext1 is 0 for lopkd, 1 for loraw, 2 for hipkd, 3 for hiraw */
|
|
|
|
|
|
|
|
// For the 13.56 MHz tags
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 0x0300
|
2016-03-21 02:33:07 +08:00
|
|
|
#define CMD_READ_SRI_TAG 0x0303
|
2013-09-02 02:41:05 +08:00
|
|
|
#define CMD_ISO_14443B_COMMAND 0x0305
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READER_ISO_15693 0x0310
|
|
|
|
#define CMD_SIMTAG_ISO_15693 0x0311
|
|
|
|
#define CMD_RECORD_RAW_ADC_SAMPLES_ISO_15693 0x0312
|
|
|
|
#define CMD_ISO_15693_COMMAND 0x0313
|
|
|
|
#define CMD_ISO_15693_COMMAND_DONE 0x0314
|
|
|
|
#define CMD_ISO_15693_FIND_AFI 0x0315
|
2019-03-12 20:15:39 +08:00
|
|
|
#define CMD_LF_SNIFF_RAW_ADC_SAMPLES 0x0317
|
2012-09-18 21:53:17 +08:00
|
|
|
|
|
|
|
// For Hitag2 transponders
|
2019-03-12 20:15:39 +08:00
|
|
|
#define CMD_SNIFF_HITAG 0x0370
|
2012-09-18 21:53:17 +08:00
|
|
|
#define CMD_SIMULATE_HITAG 0x0371
|
|
|
|
#define CMD_READER_HITAG 0x0372
|
|
|
|
|
2019-03-09 15:59:13 +08:00
|
|
|
// For HitagS
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_TEST_HITAGS_TRACES 0x0367
|
|
|
|
#define CMD_SIMULATE_HITAG_S 0x0368
|
|
|
|
#define CMD_READ_HITAG_S 0x0373
|
|
|
|
#define CMD_WR_HITAG_S 0x0375
|
|
|
|
#define CMD_EMU_HITAG_S 0x0376
|
2016-03-05 02:06:47 +08:00
|
|
|
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_ANTIFUZZ_ISO_14443a 0x0380
|
2015-06-21 17:07:05 +08:00
|
|
|
#define CMD_SIMULATE_TAG_ISO_14443B 0x0381
|
2019-03-12 20:15:39 +08:00
|
|
|
#define CMD_SNIFF_ISO_14443B 0x0382
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2019-03-12 20:15:39 +08:00
|
|
|
#define CMD_SNIFF_ISO_14443a 0x0383
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_TAG_ISO_14443a 0x0384
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READER_ISO_14443a 0x0385
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2016-07-29 03:16:02 +08:00
|
|
|
#define CMD_RAW_WRITER_LEGIC_RF 0x0386
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_TAG_LEGIC_RF 0x0387
|
|
|
|
#define CMD_READER_LEGIC_RF 0x0388
|
|
|
|
#define CMD_WRITER_LEGIC_RF 0x0389
|
2016-09-27 02:01:23 +08:00
|
|
|
|
2012-08-29 05:39:50 +08:00
|
|
|
#define CMD_EPA_PACE_COLLECT_NONCE 0x038A
|
2015-06-24 04:30:18 +08:00
|
|
|
#define CMD_EPA_PACE_REPLAY 0x038B
|
2012-08-24 07:32:18 +08:00
|
|
|
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_LEGIC_INFO 0x03BC
|
|
|
|
#define CMD_LEGIC_ESET 0x03BD
|
|
|
|
#define CMD_LEGIC_EGET 0x03BE
|
2016-09-27 02:01:23 +08:00
|
|
|
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_ICLASS_READCHECK 0x038F
|
|
|
|
#define CMD_ICLASS_CLONE 0x0390
|
|
|
|
#define CMD_ICLASS_DUMP 0x0391
|
2019-03-12 20:15:39 +08:00
|
|
|
#define CMD_SNIFF_ICLASS 0x0392
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_TAG_ICLASS 0x0393
|
|
|
|
#define CMD_READER_ICLASS 0x0394
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_READER_ICLASS_REPLAY 0x0395
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_ICLASS_READBLOCK 0x0396
|
|
|
|
#define CMD_ICLASS_WRITEBLOCK 0x0397
|
2015-02-15 04:15:53 +08:00
|
|
|
#define CMD_ICLASS_EML_MEMSET 0x0398
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_ICLASS_AUTHENTICATION 0x0399
|
2017-12-21 17:13:40 +08:00
|
|
|
#define CMD_ICLASS_CHECK_KEYS 0x039A
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2019-03-09 15:59:13 +08:00
|
|
|
// For ISO1092 / FeliCa
|
2017-10-10 20:33:27 +08:00
|
|
|
#define CMD_FELICA_SIMULATE_TAG 0x03A0
|
2019-03-12 20:15:39 +08:00
|
|
|
#define CMD_FELICA_SNIFF 0x03A1
|
2017-10-10 20:33:27 +08:00
|
|
|
#define CMD_FELICA_COMMAND 0x03A2
|
2017-10-21 02:27:44 +08:00
|
|
|
//temp
|
|
|
|
#define CMD_FELICA_LITE_DUMP 0x03AA
|
|
|
|
#define CMD_FELICA_LITE_SIM 0x03AB
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// For measurements of the antenna tuning
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MEASURE_ANTENNA_TUNING 0x0400
|
|
|
|
#define CMD_MEASURE_ANTENNA_TUNING_HF 0x0401
|
|
|
|
#define CMD_MEASURED_ANTENNA_TUNING 0x0410
|
|
|
|
#define CMD_LISTEN_READER_FIELD 0x0420
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
// For direct FPGA control
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_FPGA_MAJOR_MODE_OFF 0x0500
|
2011-06-10 21:35:10 +08:00
|
|
|
|
|
|
|
// For mifare commands
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_SET_DBGMODE 0x0600
|
|
|
|
#define CMD_MIFARE_EML_MEMCLR 0x0601
|
|
|
|
#define CMD_MIFARE_EML_MEMSET 0x0602
|
|
|
|
#define CMD_MIFARE_EML_MEMGET 0x0603
|
|
|
|
#define CMD_MIFARE_EML_CARDLOAD 0x0604
|
2014-12-27 04:32:58 +08:00
|
|
|
|
|
|
|
// magic chinese card commands
|
|
|
|
#define CMD_MIFARE_CSETBLOCK 0x0605
|
|
|
|
#define CMD_MIFARE_CGETBLOCK 0x0606
|
|
|
|
#define CMD_MIFARE_CIDENT 0x0607
|
2011-06-10 21:35:10 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_MIFARE_CARD 0x0610
|
2011-06-10 21:35:10 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READER_MIFARE 0x0611
|
|
|
|
#define CMD_MIFARE_NESTED 0x0612
|
2015-11-27 23:24:00 +08:00
|
|
|
#define CMD_MIFARE_ACQUIRE_ENCRYPTED_NONCES 0x0613
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_MIFARE_ACQUIRE_NONCES 0x0614
|
2011-06-10 21:35:10 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_READBL 0x0620
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_MIFAREU_READBL 0x0720
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_READSC 0x0621
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_MIFAREU_READCARD 0x0721
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_WRITEBL 0x0622
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_MIFAREU_WRITEBL 0x0722
|
|
|
|
#define CMD_MIFAREU_WRITEBL_COMPAT 0x0723
|
2014-09-18 18:38:31 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_CHKKEYS 0x0623
|
2017-03-09 21:36:19 +08:00
|
|
|
#define CMD_MIFARE_SETMOD 0x0624
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_MIFARE_CHKKEYS_FAST 0x0625
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_SNIFFER 0x0630
|
2014-09-12 05:23:46 +08:00
|
|
|
//ultralightC
|
2015-05-19 01:11:00 +08:00
|
|
|
#define CMD_MIFAREUC_AUTH 0x0724
|
2019-03-09 15:59:13 +08:00
|
|
|
//0x0725 and 0x0726 no longer used
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_MIFAREUC_SETPWD 0x0727
|
2015-05-19 02:58:33 +08:00
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
// mifare desfire
|
|
|
|
#define CMD_MIFARE_DESFIRE_READBL 0x0728
|
|
|
|
#define CMD_MIFARE_DESFIRE_WRITEBL 0x0729
|
|
|
|
#define CMD_MIFARE_DESFIRE_AUTH1 0x072a
|
|
|
|
#define CMD_MIFARE_DESFIRE_AUTH2 0x072b
|
|
|
|
#define CMD_MIFARE_DES_READER 0x072c
|
|
|
|
#define CMD_MIFARE_DESFIRE_INFO 0x072d
|
2014-09-18 18:38:31 +08:00
|
|
|
#define CMD_MIFARE_DESFIRE 0x072e
|
2012-07-07 00:19:05 +08:00
|
|
|
|
2019-03-10 01:41:30 +08:00
|
|
|
#define CMD_MIFARE_COLLECT_NONCES 0x072f
|
|
|
|
#define CMD_MIFARE_NACK_DETECT 0x0730
|
2015-04-25 00:41:49 +08:00
|
|
|
|
2015-10-28 04:47:21 +08:00
|
|
|
#define CMD_HF_SNIFFER 0x0800
|
|
|
|
|
2016-07-29 03:16:02 +08:00
|
|
|
// For EMV Commands
|
|
|
|
#define CMD_EMV_READ_RECORD 0x0700
|
|
|
|
#define CMD_EMV_TRANSACTION 0x0701
|
|
|
|
#define CMD_EMV_CLONE 0x0702
|
|
|
|
#define CMD_EMV_SIM 0x0703
|
|
|
|
#define CMD_EMV_TEST 0x0704
|
|
|
|
#define CMD_EMV_FUZZ_RATS 0x0705
|
|
|
|
#define CMD_EMV_GET_RANDOM_NUM 0x0706
|
|
|
|
#define CMD_EMV_LOAD_VALUE 0x0707
|
|
|
|
#define CMD_EMV_DUMP_CARD 0x0708
|
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_UNKNOWN 0xFFFF
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2014-02-01 05:17:34 +08:00
|
|
|
//Mifare simulation flags
|
2019-03-10 01:41:30 +08:00
|
|
|
#define FLAG_INTERACTIVE 0x01
|
|
|
|
#define FLAG_4B_UID_IN_DATA 0x02
|
|
|
|
#define FLAG_7B_UID_IN_DATA 0x04
|
|
|
|
#define FLAG_10B_UID_IN_DATA 0x08
|
|
|
|
#define FLAG_UID_IN_EMUL 0x10
|
|
|
|
#define FLAG_NR_AR_ATTACK 0x20
|
2019-03-16 04:04:25 +08:00
|
|
|
#define FLAG_MF_MINI 0x80
|
|
|
|
#define FLAG_MF_1K 0x100
|
|
|
|
#define FLAG_MF_2K 0x200
|
|
|
|
#define FLAG_MF_4K 0x400
|
2014-02-01 05:17:34 +08:00
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
//Iclass reader flags
|
2019-03-10 01:41:30 +08:00
|
|
|
#define FLAG_ICLASS_READER_ONLY_ONCE 0x01
|
|
|
|
#define FLAG_ICLASS_READER_CC 0x02
|
|
|
|
#define FLAG_ICLASS_READER_CSN 0x04
|
|
|
|
#define FLAG_ICLASS_READER_CONF 0x08
|
|
|
|
#define FLAG_ICLASS_READER_AIA 0x10
|
|
|
|
#define FLAG_ICLASS_READER_ONE_TRY 0x20
|
|
|
|
#define FLAG_ICLASS_READER_CEDITKEY 0x40
|
2015-03-30 03:49:58 +08:00
|
|
|
|
2018-03-10 20:13:21 +08:00
|
|
|
// Dbprintf flags
|
2019-04-26 16:36:06 +08:00
|
|
|
#define FLAG_RAWPRINT 0x00
|
|
|
|
#define FLAG_LOG 0x01
|
|
|
|
#define FLAG_NEWLINE 0x02
|
|
|
|
#define FLAG_INPLACE 0x04
|
|
|
|
#define FLAG_ANSI 0x08
|
2019-01-07 03:28:23 +08:00
|
|
|
|
2019-04-20 16:34:54 +08:00
|
|
|
// Error codes Usages:
|
2019-04-17 05:15:23 +08:00
|
|
|
|
|
|
|
// Success (no error)
|
|
|
|
#define PM3_SUCCESS 0
|
2019-04-20 16:34:54 +08:00
|
|
|
|
2019-04-17 05:15:23 +08:00
|
|
|
// Undefined error
|
|
|
|
#define PM3_EUNDEF -1
|
2019-04-20 16:34:54 +08:00
|
|
|
// Invalid argument(s) client: user input parsing
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_EINVARG -2
|
2019-04-20 16:34:54 +08:00
|
|
|
// Operation not supported by device client/pm3: probably only on pm3 once client becomes universal
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_EDEVNOTSUPP -3
|
2019-04-20 16:34:54 +08:00
|
|
|
// Operation timed out client: no response in time from pm3
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_ETIMEOUT -4
|
2019-04-20 16:34:54 +08:00
|
|
|
// Operation aborted (by user) client/pm3: kbd/button pressed
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_EOPABORTED -5
|
2019-04-20 16:34:54 +08:00
|
|
|
// Not (yet) implemented client/pm3: TBD placeholder
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_ENOTIMPL -6
|
2019-04-20 16:34:54 +08:00
|
|
|
// Error while RF transmission client/pm3: fail between pm3 & card
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_ERFTRANS -7
|
2019-04-20 16:34:54 +08:00
|
|
|
// Input / output error pm3: error in client frame reception
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_EIO -8
|
2019-04-20 16:34:54 +08:00
|
|
|
// Buffer overflow client/pm3: specified buffer too large for the operation
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_EOVFLOW -9
|
2019-04-20 16:34:54 +08:00
|
|
|
// Software error client/pm3: e.g. error in parsing some data
|
2019-04-17 05:15:23 +08:00
|
|
|
#define PM3_ESOFT -10
|
2019-04-20 16:34:54 +08:00
|
|
|
// Flash error client/pm3: error in RDV4 Flash operation
|
2019-04-19 05:26:12 +08:00
|
|
|
#define PM3_EFLASH -11
|
2019-04-20 16:34:54 +08:00
|
|
|
// Memory allocation error client: error in memory allocation (maybe also for pm3 BigBuff?)
|
2019-04-19 05:26:12 +08:00
|
|
|
#define PM3_EMALLOC -12
|
2019-04-20 16:34:54 +08:00
|
|
|
// File error client: error related to file access on host
|
2019-04-19 05:26:12 +08:00
|
|
|
#define PM3_EFILE -13
|
2019-04-20 16:34:54 +08:00
|
|
|
|
|
|
|
// No data pm3: reserved, no host frame available (not really an error)
|
|
|
|
#define PM3_ENODATA -98
|
|
|
|
// Quit program client: reserved, order to quit the program
|
2019-04-19 06:42:25 +08:00
|
|
|
#define PM3_EFATAL -99
|
2019-04-17 05:15:23 +08:00
|
|
|
|
2018-03-10 20:13:21 +08:00
|
|
|
|
2019-04-30 18:57:44 +08:00
|
|
|
// Receiving from USART need more than 30ms as we used on USB
|
|
|
|
// else we get errors about partial packet reception
|
|
|
|
// FTDI 9600 hw status -> we need 20ms
|
|
|
|
// FTDI 115200 hw status -> we need 50ms
|
|
|
|
// FTDI 460800 hw status -> we need 30ms
|
|
|
|
// BT 115200 hf mf fchk 1 dic -> we need 140ms
|
|
|
|
// all zero's configure: no timeout for read/write used.
|
|
|
|
// took settings from libnfc/buses/uart.c
|
|
|
|
|
|
|
|
// uart_windows.c
|
|
|
|
# define UART_FPC_CLIENT_RX_TIMEOUT_MS 170
|
|
|
|
# define UART_USB_CLIENT_RX_TIMEOUT_MS 20
|
|
|
|
# define UART_TCP_CLIENT_RX_TIMEOUT_MS 300
|
|
|
|
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// CMD_DEVICE_INFO response packet has flags in arg[0], flag definitions:
|
|
|
|
/* Whether a bootloader that understands the common_area is present */
|
2019-03-10 01:41:30 +08:00
|
|
|
#define DEVICE_INFO_FLAG_BOOTROM_PRESENT (1<<0)
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
/* Whether a osimage that understands the common_area is present */
|
2019-03-10 01:41:30 +08:00
|
|
|
#define DEVICE_INFO_FLAG_OSIMAGE_PRESENT (1<<1)
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
/* Set if the bootloader is currently executing */
|
2019-03-10 01:41:30 +08:00
|
|
|
#define DEVICE_INFO_FLAG_CURRENT_MODE_BOOTROM (1<<2)
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
/* Set if the OS is currently executing */
|
2019-03-10 01:41:30 +08:00
|
|
|
#define DEVICE_INFO_FLAG_CURRENT_MODE_OS (1<<3)
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
/* Set if this device understands the extend start flash command */
|
2019-03-10 01:41:30 +08:00
|
|
|
#define DEVICE_INFO_FLAG_UNDERSTANDS_START_FLASH (1<<4)
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
/* CMD_START_FLASH may have three arguments: start of area to flash,
|
|
|
|
end of area to flash, optional magic.
|
|
|
|
The bootrom will not allow to overwrite itself unless this magic
|
|
|
|
is given as third parameter */
|
|
|
|
|
|
|
|
#define START_FLASH_MAGIC 0x54494f44 // 'DOIT'
|
|
|
|
|
|
|
|
#endif
|