]>
Commit | Line | Data |
---|---|---|
f397b5cc M |
1 | //----------------------------------------------------------------------------- |
2 | // Merlok - June 2011 | |
3 | // Gerhard de Koning Gans - May 2008 | |
4 | // Hagen Fritsch - June 2010 | |
5 | // | |
6 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
7 | // at your option, any later version. See the LICENSE.txt file for the text of | |
8 | // the license. | |
9 | //----------------------------------------------------------------------------- | |
10 | // Routines to support ISO 14443 type A. | |
11 | //----------------------------------------------------------------------------- | |
12 | ||
534983d7 | 13 | #ifndef __ISO14443A_H |
14 | #define __ISO14443A_H | |
7838f4be | 15 | #include "common.h" |
6b23be6b | 16 | #include "proxmark3.h" |
17 | #include "apps.h" | |
18 | #include "util.h" | |
19 | #include "string.h" | |
20 | #include "cmd.h" | |
21 | #include "iso14443crc.h" | |
39864b0b | 22 | #include "mifaresniff.h" |
6b23be6b | 23 | #include "iso14443b.h" |
24 | #include "crapto1.h" | |
25 | #include "mifareutil.h" | |
26 | #include "BigBuf.h" | |
27 | #include "parity.h" | |
534983d7 | 28 | |
0f7279b2 | 29 | #ifdef __cplusplus |
30 | extern "C" { | |
31 | #endif | |
32 | ||
33 | ||
b62a5a84 M |
34 | typedef struct { |
35 | enum { | |
36 | DEMOD_UNSYNCD, | |
7bc95e2e | 37 | // DEMOD_HALF_SYNCD, |
38 | // DEMOD_MOD_FIRST_HALF, | |
39 | // DEMOD_NOMOD_FIRST_HALF, | |
e691fc45 | 40 | DEMOD_MANCHESTER_DATA |
41 | } state; | |
7bc95e2e | 42 | uint16_t twoBits; |
43 | uint16_t highCnt; | |
e691fc45 | 44 | uint16_t bitCount; |
45 | uint16_t collisionPos; | |
46 | uint16_t syncBit; | |
6a1f2d82 | 47 | uint8_t parityBits; |
48 | uint8_t parityLen; | |
e691fc45 | 49 | uint16_t shiftReg; |
50 | uint16_t samples; | |
51 | uint16_t len; | |
7bc95e2e | 52 | uint32_t startTime, endTime; |
e691fc45 | 53 | uint8_t *output; |
a501c82b | 54 | uint8_t *parity; |
b62a5a84 M |
55 | } tDemod; |
56 | ||
7bc95e2e | 57 | typedef enum { |
58 | MOD_NOMOD = 0, | |
59 | MOD_SECOND_HALF, | |
60 | MOD_FIRST_HALF, | |
61 | MOD_BOTH_HALVES | |
62 | } Modulation_t; | |
63 | ||
b62a5a84 M |
64 | typedef struct { |
65 | enum { | |
66 | STATE_UNSYNCD, | |
67 | STATE_START_OF_COMMUNICATION, | |
68 | STATE_MILLER_X, | |
69 | STATE_MILLER_Y, | |
70 | STATE_MILLER_Z, | |
7bc95e2e | 71 | // DROP_NONE, |
72 | // DROP_FIRST_HALF, | |
73 | } state; | |
74 | uint16_t shiftReg; | |
0ec548dc | 75 | int16_t bitCount; |
7bc95e2e | 76 | uint16_t len; |
77 | uint16_t byteCntMax; | |
78 | uint16_t posCnt; | |
79 | uint16_t syncBit; | |
6a1f2d82 | 80 | uint8_t parityBits; |
81 | uint8_t parityLen; | |
0ec548dc | 82 | uint32_t fourBits; |
7bc95e2e | 83 | uint32_t startTime, endTime; |
84 | uint8_t *output; | |
a501c82b | 85 | uint8_t *parity; |
b62a5a84 M |
86 | } tUart; |
87 | ||
0194ce8f | 88 | typedef struct { |
89 | uint8_t* response; | |
90 | size_t response_n; | |
91 | uint8_t* modulation; | |
92 | size_t modulation_n; | |
93 | uint32_t ProxToAirDuration; | |
94 | } tag_response_info_t; | |
b62a5a84 | 95 | |
a501c82b | 96 | extern void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *par); |
e691fc45 | 97 | extern void AppendCrc14443a(uint8_t *data, int len); |
20f9a2a1 | 98 | |
a501c82b | 99 | extern void ReaderTransmit(uint8_t *frame, uint16_t len, uint32_t *timing); |
100 | extern void ReaderTransmitBitsPar(uint8_t *frame, uint16_t bits, uint8_t *par, uint32_t *timing); | |
101 | extern void ReaderTransmitPar(uint8_t *frame, uint16_t len, uint8_t *par, uint32_t *timing); | |
102 | extern int ReaderReceive(uint8_t *receivedAnswer, uint8_t *par); | |
20f9a2a1 | 103 | |
7bc95e2e | 104 | extern void iso14443a_setup(uint8_t fpga_minor_mode); |
a501c82b | 105 | extern int iso14_apdu(uint8_t *cmd, uint16_t cmd_len, void *data); |
c188b1b9 | 106 | 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); |
902cb3c0 | 107 | extern void iso14a_set_trigger(bool enable); |
534983d7 | 108 | |
0194ce8f | 109 | int EmSendCmd14443aRaw(uint8_t *resp, uint16_t respLen, bool correctionNeeded); |
110 | int EmSend4bitEx(uint8_t resp, bool correctionNeeded); | |
111 | int EmSend4bit(uint8_t resp); | |
112 | int EmSendCmdExPar(uint8_t *resp, uint16_t respLen, bool correctionNeeded, uint8_t *par); | |
113 | int EmSendCmdEx(uint8_t *resp, uint16_t respLen, bool correctionNeeded); | |
6b23be6b | 114 | extern int EmSendCmd(uint8_t *resp, uint16_t respLen); |
0194ce8f | 115 | int EmSendCmdPar(uint8_t *resp, uint16_t respLen, uint8_t *par); |
116 | bool EmLogTrace(uint8_t *reader_data, uint16_t reader_len, uint32_t reader_StartTime, uint32_t reader_EndTime, uint8_t *reader_Parity, | |
117 | uint8_t *tag_data, uint16_t tag_len, uint32_t tag_StartTime, uint32_t tag_EndTime, uint8_t *tag_Parity); | |
0f7279b2 | 118 | |
119 | ||
120 | #ifdef __cplusplus | |
121 | } | |
122 | #endif | |
123 | ||
534983d7 | 124 | #endif /* __ISO14443A_H */ |