1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // High frequency ISO14443B commands
9 //-----------------------------------------------------------------------------
16 #include "iso14443crc.h"
17 //#include "proxusb.h"
18 #include "proxmark3.h"
22 #include "cmdparser.h"
25 static int CmdHelp(const char *Cmd
);
27 int CmdHF14BDemod(const char *Cmd
)
32 bool negateI
, negateQ
;
37 // As received, the samples are pairs, correlations against I and Q
38 // square waves. So estimate angle of initial carrier (or just
39 // quadrant, actually), and then do the demod.
41 // First, estimate where the tag starts modulating.
42 for (i
= 0; i
< GraphTraceLen
; i
+= 2) {
43 if (abs(GraphBuffer
[i
]) + abs(GraphBuffer
[i
+ 1]) > 40) {
47 if (i
>= GraphTraceLen
) {
48 PrintAndLog("too weak to sync");
51 PrintAndLog("out of weak at %d", i
);
54 // Now, estimate the phase in the initial modulation of the tag
57 for (; i
< (outOfWeakAt
+ 16); i
+= 2) {
58 isum
+= GraphBuffer
[i
+ 0];
59 qsum
+= GraphBuffer
[i
+ 1];
64 // Turn the correlation pairs into soft decisions on the bit.
66 for (i
= 0; i
< GraphTraceLen
/ 2; i
++) {
67 int si
= GraphBuffer
[j
];
68 int sq
= GraphBuffer
[j
+ 1];
69 if (negateI
) si
= -si
;
70 if (negateQ
) sq
= -sq
;
71 GraphBuffer
[i
] = si
+ sq
;
77 while (GraphBuffer
[i
] > 0 && i
< GraphTraceLen
)
79 if (i
>= GraphTraceLen
) goto demodError
;
82 while (GraphBuffer
[i
] < 0 && i
< GraphTraceLen
)
84 if (i
>= GraphTraceLen
) goto demodError
;
85 if ((i
- iold
) > 23) goto demodError
;
87 PrintAndLog("make it to demod loop");
91 while (GraphBuffer
[i
] >= 0 && i
< GraphTraceLen
)
93 if (i
>= GraphTraceLen
) goto demodError
;
94 if ((i
- iold
) > 6) goto demodError
;
96 uint16_t shiftReg
= 0;
97 if (i
+ 20 >= GraphTraceLen
) goto demodError
;
99 for (j
= 0; j
< 10; j
++) {
100 int soft
= GraphBuffer
[i
] + GraphBuffer
[i
+ 1];
102 if (abs(soft
) < (abs(isum
) + abs(qsum
)) / 20) {
103 PrintAndLog("weak bit");
107 if(GraphBuffer
[i
] + GraphBuffer
[i
+1] >= 0) {
114 if ((shiftReg
& 0x200) && !(shiftReg
& 0x001))
116 // valid data byte, start and stop bits okay
117 PrintAndLog(" %02x", (shiftReg
>> 1) & 0xff);
118 data
[dataLen
++] = (shiftReg
>> 1) & 0xff;
119 if (dataLen
>= sizeof(data
)) {
122 } else if (shiftReg
== 0x000) {
130 uint8_t first
, second
;
131 ComputeCrc14443(CRC_14443_B
, data
, dataLen
-2, &first
, &second
);
132 PrintAndLog("CRC: %02x %02x (%s)\n", first
, second
,
133 (first
== data
[dataLen
-2] && second
== data
[dataLen
-1]) ?
134 "ok" : "****FAIL****");
136 RepaintGraphWindow();
140 PrintAndLog("demod error");
141 RepaintGraphWindow();
145 int CmdHF14BList(const char *Cmd
)
148 GetFromBigBuf(got
,sizeof(got
),0);
150 PrintAndLog("recorded activity:");
151 PrintAndLog(" time :rssi: who bytes");
152 PrintAndLog("---------+----+----+-----------");
163 int timestamp
= *((uint32_t *)(got
+i
));
164 if(timestamp
& 0x80000000) {
165 timestamp
&= 0x7fffffff;
170 int metric
= *((uint32_t *)(got
+i
+4));
181 uint8_t *frame
= (got
+i
+9);
183 char line
[1000] = "";
185 for(j
= 0; j
< len
; j
++) {
186 sprintf(line
+(j
*3), "%02x ", frame
[j
]);
192 ComputeCrc14443(CRC_14443_B
, frame
, len
-2, &b1
, &b2
);
193 if(b1
!= frame
[len
-2] || b2
!= frame
[len
-1]) {
194 crc
= "**FAIL CRC**";
202 char metricString
[100];
204 sprintf(metricString
, "%3d", metric
);
206 strcpy(metricString
, " ");
209 PrintAndLog(" +%7d: %s: %s %s %s",
210 (prev
< 0 ? 0 : timestamp
- prev
),
212 (isResponse
? "TAG" : " "), line
, crc
);
220 int CmdHF14BRead(const char *Cmd
)
222 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443
, {strtol(Cmd
, NULL
, 0), 0, 0}};
227 int CmdHF14Sim(const char *Cmd
)
229 UsbCommand c
={CMD_SIMULATE_TAG_ISO_14443
};
234 int CmdHFSimlisten(const char *Cmd
)
236 UsbCommand c
= {CMD_SIMULATE_TAG_HF_LISTEN
};
241 int CmdHF14BSnoop(const char *Cmd
)
243 UsbCommand c
= {CMD_SNOOP_ISO_14443
};
248 /* New command to read the contents of a SRI512 tag
249 * SRI512 tags are ISO14443-B modulated memory tags,
250 * this command just dumps the contents of the memory
252 int CmdSri512Read(const char *Cmd
)
254 UsbCommand c
= {CMD_READ_SRI512_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
259 /* New command to read the contents of a SRIX4K tag
260 * SRIX4K tags are ISO14443-B modulated memory tags,
261 * this command just dumps the contents of the memory/
263 int CmdSrix4kRead(const char *Cmd
)
265 UsbCommand c
= {CMD_READ_SRIX4K_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
270 static command_t CommandTable
[] =
272 {"help", CmdHelp
, 1, "This help"},
273 {"demod", CmdHF14BDemod
, 1, "Demodulate ISO14443 Type B from tag"},
274 {"list", CmdHF14BList
, 0, "List ISO 14443 history"},
275 {"read", CmdHF14BRead
, 0, "Read HF tag (ISO 14443)"},
276 {"sim", CmdHF14Sim
, 0, "Fake ISO 14443 tag"},
277 {"simlisten", CmdHFSimlisten
, 0, "Get HF samples as fake tag"},
278 {"snoop", CmdHF14BSnoop
, 0, "Eavesdrop ISO 14443"},
279 {"sri512read", CmdSri512Read
, 0, "<int> -- Read contents of a SRI512 tag"},
280 {"srix4kread", CmdSrix4kRead
, 0, "<int> -- Read contents of a SRIX4K tag"},
281 {NULL
, NULL
, 0, NULL
}
284 int CmdHF14B(const char *Cmd
)
286 CmdsParse(CommandTable
, Cmd
);
290 int CmdHelp(const char *Cmd
)
292 CmdsHelp(CommandTable
);