2011-06-07 20:35:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Merlok - June 2011
|
|
|
|
// Gerhard de Koning Gans - May 2008
|
|
|
|
// Hagen Fritsch - June 2010
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Routines to support ISO 14443 type A.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2010-07-13 21:39:30 +08:00
|
|
|
#ifndef __ISO14443A_H
|
|
|
|
#define __ISO14443A_H
|
2017-01-25 07:33:03 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2017-12-05 02:36:26 +08:00
|
|
|
#include "usb_cmd.h"
|
2017-01-25 07:33:03 +08:00
|
|
|
#include "cmd.h"
|
2016-08-05 03:37:43 +08:00
|
|
|
#include "apps.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "string.h"
|
2018-02-01 22:19:47 +08:00
|
|
|
#include "crc16.h"
|
2012-07-11 23:52:33 +08:00
|
|
|
#include "mifaresniff.h"
|
2017-07-30 16:01:30 +08:00
|
|
|
#include "crapto1/crapto1.h"
|
2016-08-05 03:37:43 +08:00
|
|
|
#include "mifareutil.h"
|
|
|
|
#include "parity.h"
|
2017-01-26 21:21:51 +08:00
|
|
|
#include "random.h"
|
2017-12-05 02:36:26 +08:00
|
|
|
#include "mifare.h" // structs
|
2010-07-13 21:39:30 +08:00
|
|
|
|
2012-07-07 00:19:05 +08:00
|
|
|
typedef struct {
|
2019-03-10 03:34:41 +08:00
|
|
|
enum {
|
|
|
|
DEMOD_UNSYNCD,
|
|
|
|
// DEMOD_HALF_SYNCD,
|
|
|
|
// DEMOD_MOD_FIRST_HALF,
|
|
|
|
// DEMOD_NOMOD_FIRST_HALF,
|
|
|
|
DEMOD_MANCHESTER_DATA
|
|
|
|
} state;
|
|
|
|
uint16_t twoBits;
|
|
|
|
uint16_t highCnt;
|
|
|
|
uint16_t bitCount;
|
|
|
|
uint16_t collisionPos;
|
|
|
|
uint16_t syncBit;
|
|
|
|
uint8_t parityBits;
|
|
|
|
uint8_t parityLen;
|
|
|
|
uint16_t shiftReg;
|
|
|
|
uint16_t samples;
|
|
|
|
uint16_t len;
|
|
|
|
uint32_t startTime, endTime;
|
|
|
|
uint8_t *output;
|
|
|
|
uint8_t *parity;
|
2012-07-07 00:19:05 +08:00
|
|
|
} tDemod;
|
2018-01-29 20:42:02 +08:00
|
|
|
/*
|
2014-02-20 04:35:04 +08:00
|
|
|
typedef enum {
|
2019-03-10 03:34:41 +08:00
|
|
|
MOD_NOMOD = 0,
|
|
|
|
MOD_SECOND_HALF,
|
|
|
|
MOD_FIRST_HALF,
|
|
|
|
MOD_BOTH_HALVES
|
|
|
|
} Modulation_t;
|
2018-01-29 20:42:02 +08:00
|
|
|
*/
|
2014-02-20 04:35:04 +08:00
|
|
|
|
2012-07-07 00:19:05 +08:00
|
|
|
typedef struct {
|
2019-03-10 03:34:41 +08:00
|
|
|
enum {
|
|
|
|
STATE_UNSYNCD,
|
|
|
|
STATE_START_OF_COMMUNICATION,
|
|
|
|
STATE_MILLER_X,
|
|
|
|
STATE_MILLER_Y,
|
|
|
|
STATE_MILLER_Z,
|
|
|
|
// DROP_NONE,
|
|
|
|
// DROP_FIRST_HALF,
|
2019-03-10 07:00:59 +08:00
|
|
|
} state;
|
2019-03-10 03:34:41 +08:00
|
|
|
uint16_t shiftReg;
|
|
|
|
int16_t bitCount;
|
|
|
|
uint16_t len;
|
|
|
|
//uint16_t byteCntMax;
|
|
|
|
uint16_t posCnt;
|
|
|
|
uint16_t syncBit;
|
|
|
|
uint8_t parityBits;
|
|
|
|
uint8_t parityLen;
|
|
|
|
uint32_t fourBits;
|
|
|
|
uint32_t startTime, endTime;
|
2014-02-20 04:35:04 +08:00
|
|
|
uint8_t *output;
|
2019-03-10 03:34:41 +08:00
|
|
|
uint8_t *parity;
|
2012-07-07 00:19:05 +08:00
|
|
|
} tUart;
|
|
|
|
|
2018-02-01 22:19:47 +08:00
|
|
|
#ifndef AddCrc14A
|
2019-03-10 03:34:41 +08:00
|
|
|
# define AddCrc14A(data, len) compute_crc(CRC_14443_A, (data), (len), (data)+(len), (data)+(len)+1)
|
2018-02-01 22:19:47 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AddCrc14B
|
2019-03-10 03:34:41 +08:00
|
|
|
# define AddCrc14B(data, len) compute_crc(CRC_14443_B, (data), (len), (data)+(len), (data)+(len)+1)
|
2018-02-01 22:19:47 +08:00
|
|
|
#endif
|
|
|
|
|
2014-12-18 03:33:21 +08:00
|
|
|
extern void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *par);
|
2011-05-26 20:55:15 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
extern tDemod *GetDemod(void);
|
2018-01-18 21:11:22 +08:00
|
|
|
extern void DemodReset(void);
|
|
|
|
extern void DemodInit(uint8_t *data, uint8_t *parity);
|
2019-03-10 07:00:59 +08:00
|
|
|
extern tUart *GetUart(void);
|
2018-01-18 21:11:22 +08:00
|
|
|
extern void UartReset(void);
|
|
|
|
extern void UartInit(uint8_t *data, uint8_t *parity);
|
|
|
|
extern RAMFUNC bool MillerDecoding(uint8_t bit, uint32_t non_real_time);
|
|
|
|
extern RAMFUNC int ManchesterDecoding(uint8_t bit, uint16_t offset, uint32_t non_real_time);
|
|
|
|
|
2017-12-05 02:36:26 +08:00
|
|
|
extern void RAMFUNC SniffIso14443a(uint8_t param);
|
|
|
|
extern void SimulateIso14443aTag(int tagType, int flags, uint8_t *data);
|
2018-02-28 20:21:47 +08:00
|
|
|
extern void iso14443a_antifuzz(uint32_t flags);
|
2017-12-05 02:36:26 +08:00
|
|
|
extern void ReaderIso14443a(UsbCommand *c);
|
2014-12-18 03:33:21 +08:00
|
|
|
extern void ReaderTransmit(uint8_t *frame, uint16_t len, uint32_t *timing);
|
|
|
|
extern void ReaderTransmitBitsPar(uint8_t *frame, uint16_t bits, uint8_t *par, uint32_t *timing);
|
|
|
|
extern void ReaderTransmitPar(uint8_t *frame, uint16_t len, uint8_t *par, uint32_t *timing);
|
|
|
|
extern int ReaderReceive(uint8_t *receivedAnswer, uint8_t *par);
|
2011-05-26 20:55:15 +08:00
|
|
|
|
2014-02-20 04:35:04 +08:00
|
|
|
extern void iso14443a_setup(uint8_t fpga_minor_mode);
|
2019-01-31 00:15:47 +08:00
|
|
|
extern int iso14_apdu(uint8_t *cmd, uint16_t cmd_len, bool send_chaining, void *data, uint8_t *res);
|
2017-10-02 04:06:06 +08:00
|
|
|
extern int iso14443a_select_card(uint8_t *uid_ptr, iso14a_card_select_t *resp_data, uint32_t *cuid_ptr, bool anticollision, uint8_t num_cascades, bool no_rats);
|
2017-10-05 22:00:56 +08:00
|
|
|
extern int iso14443a_fast_select_card(uint8_t *uid_ptr, uint8_t num_cascades);
|
2012-12-05 07:39:18 +08:00
|
|
|
extern void iso14a_set_trigger(bool enable);
|
2010-07-13 21:39:30 +08:00
|
|
|
|
2017-12-05 02:36:26 +08:00
|
|
|
extern int EmSendCmd14443aRaw(uint8_t *resp, uint16_t respLen);
|
|
|
|
extern int EmSend4bit(uint8_t resp);
|
2016-08-05 03:37:43 +08:00
|
|
|
extern int EmSendCmd(uint8_t *resp, uint16_t respLen);
|
2019-01-07 16:32:16 +08:00
|
|
|
extern int EmSendCmdEx(uint8_t *resp, uint16_t respLen, bool collision);
|
2017-03-02 04:51:23 +08:00
|
|
|
extern int EmGetCmd(uint8_t *received, uint16_t *len, uint8_t *parity);
|
2017-12-05 02:36:26 +08:00
|
|
|
extern int EmSendCmdPar(uint8_t *resp, uint16_t respLen, uint8_t *par);
|
2019-01-07 16:32:16 +08:00
|
|
|
extern int EmSendCmdParEx(uint8_t *resp, uint16_t respLen, uint8_t *par, bool collision);
|
2017-12-05 02:36:26 +08:00
|
|
|
extern int EmSendPrecompiledCmd(tag_response_info_t *response_info);
|
|
|
|
|
2016-04-14 17:09:17 +08:00
|
|
|
bool EmLogTrace(uint8_t *reader_data, uint16_t reader_len, uint32_t reader_StartTime, uint32_t reader_EndTime, uint8_t *reader_Parity,
|
2019-03-10 03:34:41 +08:00
|
|
|
uint8_t *tag_data, uint16_t tag_len, uint32_t tag_StartTime, uint32_t tag_EndTime, uint8_t *tag_Parity);
|
2017-01-21 18:33:14 +08:00
|
|
|
|
2017-12-05 02:36:26 +08:00
|
|
|
//extern bool prepare_allocated_tag_modulation(tag_response_info_t *response_info, uint8_t **buffer, size_t *buffer_size);
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
void ReaderMifare(bool first_try, uint8_t block, uint8_t keytype);
|
2017-12-05 02:36:26 +08:00
|
|
|
void DetectNACKbug();
|
2017-01-21 18:33:14 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2019-03-09 15:59:13 +08:00
|
|
|
#endif
|
2017-01-21 18:33:14 +08:00
|
|
|
|
2010-07-13 21:39:30 +08:00
|
|
|
#endif /* __ISO14443A_H */
|