]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhf14a.c
ADD: HF 14A READER is now able to see if a presented card responses to the chinese...
[proxmark3-svn] / client / cmdhf14a.c
1 //-----------------------------------------------------------------------------
2 // 2011, Merlok
3 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>, Hagen Fritsch
4 //
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
7 // the license.
8 //-----------------------------------------------------------------------------
9 // High frequency ISO14443A commands
10 //-----------------------------------------------------------------------------
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include "util.h"
17 #include "../common/iso14443crc.h"
18 #include "data.h"
19 #include "proxmark3.h"
20 #include "ui.h"
21 #include "cmdparser.h"
22 #include "cmdhf14a.h"
23 #include "../include/common.h"
24 #include "cmdmain.h"
25 #include "../include/mifare.h"
26
27 static int CmdHelp(const char *Cmd);
28 static void waitCmd(uint8_t iLen);
29
30 int CmdHF14AList(const char *Cmd)
31 {
32 bool ShowWaitCycles = false;
33 char param = param_getchar(Cmd, 0);
34
35 if (param == 'h' || (param != 0 && param != 'f')) {
36 PrintAndLog("List data in trace buffer.");
37 PrintAndLog("Usage: hf 14a list [f]");
38 PrintAndLog("f - show frame delay times as well");
39 PrintAndLog("sample: hf 14a list f");
40 return 0;
41 }
42
43 ShowWaitCycles = (param == 'f');
44
45 // for the time being. Need better Bigbuf handling.
46 #define TRACE_SIZE 3000
47
48 uint8_t trace[TRACE_SIZE];
49 GetFromBigBuf(trace, TRACE_SIZE, 0);
50 WaitForResponse(CMD_ACK,NULL);
51
52 PrintAndLog("Recorded Activity");
53 PrintAndLog("");
54 PrintAndLog("Start = Start of Start Bit, End = End of last modulation. Src = Source of Transfer");
55 PrintAndLog("All times are in carrier periods (1/13.56Mhz)");
56 PrintAndLog("");
57 PrintAndLog(" Start | End | Src | Data (! denotes parity error) | CRC ");
58 PrintAndLog("-----------|-----------|-----|-----------------------------------------------------------------------");
59
60 uint16_t tracepos = 0;
61 uint16_t duration;
62 uint16_t data_len;
63 uint16_t parity_len;
64 bool isResponse;
65 uint32_t timestamp;
66 uint32_t first_timestamp;
67 uint32_t EndOfTransmissionTimestamp;
68
69 for (;;) {
70
71 if(tracepos >= TRACE_SIZE) break;
72
73 timestamp = *((uint32_t *)(trace + tracepos));
74
75 // Break and stick with current result if buffer was not completely full
76 if (timestamp == 0x44444444) break;
77
78 if(tracepos == 0) {
79 first_timestamp = timestamp;
80 }
81
82 tracepos += 4;
83 duration = *((uint16_t *)(trace + tracepos));
84 tracepos += 2;
85 data_len = *((uint16_t *)(trace + tracepos));
86 tracepos += 2;
87
88 isResponse = false;
89 if (data_len & 0x8000) {
90 data_len &= 0x7fff;
91 isResponse = true;
92 }
93
94 parity_len = (data_len-1)/8 + 1;
95
96 if (tracepos + data_len + parity_len >= TRACE_SIZE) break;
97
98 uint8_t *frame = trace + tracepos;
99 tracepos += data_len;
100 uint8_t *parityBytes = trace + tracepos;
101 tracepos += parity_len;
102
103 char line[16][110];
104 for (int j = 0; j < data_len; j++) {
105 int oddparity = 0x01;
106 int k;
107
108 for (k=0;k<8;k++) {
109 oddparity ^= (((frame[j] & 0xFF) >> k) & 0x01);
110 }
111
112 uint8_t parityBits = parityBytes[j>>3];
113 if (isResponse && (oddparity != ((parityBits >> (7-(j&0x0007))) & 0x01))) {
114 sprintf(line[j/16]+((j%16)*4), "%02x! ", frame[j]);
115 } else {
116 sprintf(line[j/16]+((j%16)*4), "%02x ", frame[j]);
117 }
118 }
119
120 char crc[5] = {0x00};
121 if (data_len > 2) {
122 uint8_t b1, b2;
123 ComputeCrc14443(CRC_14443_A, frame, data_len-2, &b1, &b2);
124 if (b1 != frame[data_len-2] || b2 != frame[data_len-1]) {
125 sprintf(crc, (isResponse & (data_len < 6)) ? "" : "!crc");
126 }
127 }
128
129 EndOfTransmissionTimestamp = timestamp + duration;
130 int num_lines = (data_len - 1)/16 + 1;
131
132 for (int j = 0; j < num_lines; j++) {
133 if (j == 0) {
134 PrintAndLog(" %9d | %9d | %s | %-64s| %s",
135 (timestamp - first_timestamp),
136 (EndOfTransmissionTimestamp - first_timestamp),
137 (isResponse ? "Tag" : "Rdr"),
138 line[j],
139 (j == num_lines-1)?crc:""
140 );
141 } else {
142 PrintAndLog(" | | | %-64s| %s",
143 line[j],
144 (j == num_lines-1)?crc:"");
145 }
146 }
147
148 bool next_isResponse = *((uint16_t *)(trace + tracepos + 6)) & 0x8000;
149
150 if (ShowWaitCycles && !isResponse && next_isResponse) {
151 uint32_t next_timestamp = *((uint32_t *)(trace + tracepos));
152 if (next_timestamp != 0x44444444) {
153 PrintAndLog(" %9d | %9d | %s | fdt (Frame Delay Time): %d",
154 (EndOfTransmissionTimestamp - first_timestamp),
155 (next_timestamp - first_timestamp),
156 " ",
157 (next_timestamp - EndOfTransmissionTimestamp));
158 }
159 }
160 }
161 return 0;
162 }
163
164 void iso14a_set_timeout(uint32_t timeout) {
165 UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_SET_TIMEOUT, 0, timeout}};
166 SendCommand(&c);
167 }
168
169 int CmdHF14AReader(const char *Cmd)
170 {
171 UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT | ISO14A_NO_DISCONNECT, 0, 0}};
172 SendCommand(&c);
173
174 UsbCommand resp;
175 WaitForResponse(CMD_ACK,&resp);
176
177 iso14a_card_select_t card;
178 memcpy(&card, (iso14a_card_select_t *)resp.d.asBytes, sizeof(iso14a_card_select_t));
179
180 uint64_t select_status = resp.arg[0]; // 0: couldn't read, 1: OK, with ATS, 2: OK, no ATS
181
182 if(select_status == 0) {
183 PrintAndLog("iso14443a card select failed");
184 // disconnect
185 c.arg[0] = 0;
186 c.arg[1] = 0;
187 c.arg[2] = 0;
188 SendCommand(&c);
189 return 0;
190 }
191
192 PrintAndLog("ATQA : %02x %02x", card.atqa[1], card.atqa[0]);
193 PrintAndLog(" UID : %s", sprint_hex(card.uid, card.uidlen));
194 PrintAndLog(" SAK : %02x [%d]", card.sak, resp.arg[0]);
195
196 switch (card.sak) {
197 case 0x00: PrintAndLog("TYPE : NXP MIFARE Ultralight | Ultralight C"); break;
198 case 0x01: PrintAndLog("TYPE : NXP TNP3xxx Activision Game Appliance"); break;
199 case 0x04: PrintAndLog("TYPE : NXP MIFARE (various !DESFire !DESFire EV1)"); break;
200 case 0x08: PrintAndLog("TYPE : NXP MIFARE CLASSIC 1k | Plus 2k SL1"); break;
201 case 0x09: PrintAndLog("TYPE : NXP MIFARE Mini 0.3k"); break;
202 case 0x10: PrintAndLog("TYPE : NXP MIFARE Plus 2k SL2"); break;
203 case 0x11: PrintAndLog("TYPE : NXP MIFARE Plus 4k SL2"); break;
204 case 0x18: PrintAndLog("TYPE : NXP MIFARE Classic 4k | Plus 4k SL1"); break;
205 case 0x20: PrintAndLog("TYPE : NXP MIFARE DESFire 4k | DESFire EV1 2k/4k/8k | Plus 2k/4k SL3 | JCOP 31/41"); break;
206 case 0x24: PrintAndLog("TYPE : NXP MIFARE DESFire | DESFire EV1"); break;
207 case 0x28: PrintAndLog("TYPE : JCOP31 or JCOP41 v2.3.1"); break;
208 case 0x38: PrintAndLog("TYPE : Nokia 6212 or 6131 MIFARE CLASSIC 4K"); break;
209 case 0x88: PrintAndLog("TYPE : Infineon MIFARE CLASSIC 1K"); break;
210 case 0x98: PrintAndLog("TYPE : Gemplus MPCOS"); break;
211 default: ;
212 }
213
214
215 // try to request ATS even if tag claims not to support it
216 if (select_status == 2) {
217 uint8_t rats[] = { 0xE0, 0x80 }; // FSDI=8 (FSD=256), CID=0
218 c.arg[0] = ISO14A_RAW | ISO14A_APPEND_CRC | ISO14A_NO_DISCONNECT;
219 c.arg[1] = 2;
220 c.arg[2] = 0;
221 memcpy(c.d.asBytes, rats, 2);
222 SendCommand(&c);
223 WaitForResponse(CMD_ACK,&resp);
224
225 memcpy(&card.ats, resp.d.asBytes, resp.arg[0]);
226 card.ats_len = resp.arg[0]; // note: ats_len includes CRC Bytes
227 }
228
229 if(card.ats_len >= 3) { // a valid ATS consists of at least the length byte (TL) and 2 CRC bytes
230 bool ta1 = 0, tb1 = 0, tc1 = 0;
231 int pos;
232
233 if (select_status == 2) {
234 PrintAndLog("SAK incorrectly claims that card doesn't support RATS");
235 }
236 PrintAndLog(" ATS : %s", sprint_hex(card.ats, card.ats_len));
237 PrintAndLog(" - TL : length is %d bytes", card.ats[0]);
238 if (card.ats[0] != card.ats_len - 2) {
239 PrintAndLog("ATS may be corrupted. Length of ATS (%d bytes incl. 2 Bytes CRC) doesn't match TL", card.ats_len);
240 }
241
242 if (card.ats[0] > 1) { // there is a format byte (T0)
243 ta1 = (card.ats[1] & 0x10) == 0x10;
244 tb1 = (card.ats[1] & 0x20) == 0x20;
245 tc1 = (card.ats[1] & 0x40) == 0x40;
246 int16_t fsci = card.ats[1] & 0x0f;
247 PrintAndLog(" - T0 : TA1 is%s present, TB1 is%s present, "
248 "TC1 is%s present, FSCI is %d (FSC = %ld)",
249 (ta1 ? "" : " NOT"), (tb1 ? "" : " NOT"), (tc1 ? "" : " NOT"),
250 fsci,
251 fsci < 5 ? (fsci - 2) * 8 :
252 fsci < 8 ? (fsci - 3) * 32 :
253 fsci == 8 ? 256 :
254 -1
255 );
256 }
257 pos = 2;
258 if (ta1) {
259 char dr[16], ds[16];
260 dr[0] = ds[0] = '\0';
261 if (card.ats[pos] & 0x10) strcat(ds, "2, ");
262 if (card.ats[pos] & 0x20) strcat(ds, "4, ");
263 if (card.ats[pos] & 0x40) strcat(ds, "8, ");
264 if (card.ats[pos] & 0x01) strcat(dr, "2, ");
265 if (card.ats[pos] & 0x02) strcat(dr, "4, ");
266 if (card.ats[pos] & 0x04) strcat(dr, "8, ");
267 if (strlen(ds) != 0) ds[strlen(ds) - 2] = '\0';
268 if (strlen(dr) != 0) dr[strlen(dr) - 2] = '\0';
269 PrintAndLog(" - TA1 : different divisors are%s supported, "
270 "DR: [%s], DS: [%s]",
271 (card.ats[pos] & 0x80 ? " NOT" : ""), dr, ds);
272 pos++;
273 }
274 if (tb1) {
275 uint32_t sfgi = card.ats[pos] & 0x0F;
276 uint32_t fwi = card.ats[pos] >> 4;
277 PrintAndLog(" - TB1 : SFGI = %d (SFGT = %s%ld/fc), FWI = %d (FWT = %ld/fc)",
278 (sfgi),
279 sfgi ? "" : "(not needed) ",
280 sfgi ? (1 << 12) << sfgi : 0,
281 fwi,
282 (1 << 12) << fwi
283 );
284 pos++;
285 }
286 if (tc1) {
287 PrintAndLog(" - TC1 : NAD is%s supported, CID is%s supported",
288 (card.ats[pos] & 0x01) ? "" : " NOT",
289 (card.ats[pos] & 0x02) ? "" : " NOT");
290 pos++;
291 }
292 if (card.ats[0] > pos) {
293 char *tip = "";
294 if (card.ats[0] - pos >= 7) {
295 if (memcmp(card.ats + pos, "\xC1\x05\x2F\x2F\x01\xBC\xD6", 7) == 0) {
296 tip = "-> MIFARE Plus X 2K or 4K";
297 } else if (memcmp(card.ats + pos, "\xC1\x05\x2F\x2F\x00\x35\xC7", 7) == 0) {
298 tip = "-> MIFARE Plus S 2K or 4K";
299 }
300 }
301 PrintAndLog(" - HB : %s%s", sprint_hex(card.ats + pos, card.ats[0] - pos), tip);
302 if (card.ats[pos] == 0xC1) {
303 PrintAndLog(" c1 -> Mifare or (multiple) virtual cards of various type");
304 PrintAndLog(" %02x -> Length is %d bytes",
305 card.ats[pos + 1], card.ats[pos + 1]);
306 switch (card.ats[pos + 2] & 0xf0) {
307 case 0x10:
308 PrintAndLog(" 1x -> MIFARE DESFire");
309 break;
310 case 0x20:
311 PrintAndLog(" 2x -> MIFARE Plus");
312 break;
313 }
314 switch (card.ats[pos + 2] & 0x0f) {
315 case 0x00:
316 PrintAndLog(" x0 -> <1 kByte");
317 break;
318 case 0x01:
319 PrintAndLog(" x0 -> 1 kByte");
320 break;
321 case 0x02:
322 PrintAndLog(" x0 -> 2 kByte");
323 break;
324 case 0x03:
325 PrintAndLog(" x0 -> 4 kByte");
326 break;
327 case 0x04:
328 PrintAndLog(" x0 -> 8 kByte");
329 break;
330 }
331 switch (card.ats[pos + 3] & 0xf0) {
332 case 0x00:
333 PrintAndLog(" 0x -> Engineering sample");
334 break;
335 case 0x20:
336 PrintAndLog(" 2x -> Released");
337 break;
338 }
339 switch (card.ats[pos + 3] & 0x0f) {
340 case 0x00:
341 PrintAndLog(" x0 -> Generation 1");
342 break;
343 case 0x01:
344 PrintAndLog(" x1 -> Generation 2");
345 break;
346 case 0x02:
347 PrintAndLog(" x2 -> Generation 3");
348 break;
349 }
350 switch (card.ats[pos + 4] & 0x0f) {
351 case 0x00:
352 PrintAndLog(" x0 -> Only VCSL supported");
353 break;
354 case 0x01:
355 PrintAndLog(" x1 -> VCS, VCSL, and SVC supported");
356 break;
357 case 0x0E:
358 PrintAndLog(" xE -> no VCS command supported");
359 break;
360 }
361 }
362 }
363 } else {
364 PrintAndLog("proprietary non iso14443-4 card found, RATS not supported");
365 }
366
367
368 // try to see if card responses to "chinese magic backdoor" commands.
369 c.cmd = CMD_MIFARE_CIDENT;
370 c.arg[0] = 0;
371 c.arg[1] = 0;
372 c.arg[2] = 0;
373 SendCommand(&c);
374 WaitForResponse(CMD_ACK,&resp);
375 uint8_t isOK = resp.arg[0] & 0xff;
376 PrintAndLog(" Answers to chinese magic backdoor commands: %s", (isOK ? "YES" : "NO") );
377
378 // disconnect
379 c.arg[0] = 0;
380 c.arg[1] = 0;
381 c.arg[2] = 0;
382 SendCommand(&c);
383
384 return select_status;
385 }
386
387 // Collect ISO14443 Type A UIDs
388 int CmdHF14ACUIDs(const char *Cmd)
389 {
390 // requested number of UIDs
391 int n = atoi(Cmd);
392 // collect at least 1 (e.g. if no parameter was given)
393 n = n > 0 ? n : 1;
394
395 PrintAndLog("Collecting %d UIDs", n);
396 PrintAndLog("Start: %u", time(NULL));
397 // repeat n times
398 for (int i = 0; i < n; i++) {
399 // execute anticollision procedure
400 UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT, 0, 0}};
401 SendCommand(&c);
402
403 UsbCommand resp;
404 WaitForResponse(CMD_ACK,&resp);
405
406 iso14a_card_select_t *card = (iso14a_card_select_t *) resp.d.asBytes;
407
408 // check if command failed
409 if (resp.arg[0] == 0) {
410 PrintAndLog("Card select failed.");
411 } else {
412 char uid_string[20];
413 for (uint16_t i = 0; i < card->uidlen; i++) {
414 sprintf(&uid_string[2*i], "%02X", card->uid[i]);
415 }
416 PrintAndLog("%s", uid_string);
417 }
418 }
419 PrintAndLog("End: %u", time(NULL));
420
421 return 1;
422 }
423
424 // ## simulate iso14443a tag
425 // ## greg - added ability to specify tag UID
426 int CmdHF14ASim(const char *Cmd)
427 {
428 UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,{0,0,0}};
429
430 // Retrieve the tag type
431 uint8_t tagtype = param_get8ex(Cmd,0,0,10);
432
433 // When no argument was given, just print help message
434 if (tagtype == 0) {
435 PrintAndLog("");
436 PrintAndLog(" Emulating ISO/IEC 14443 type A tag with 4 or 7 byte UID");
437 PrintAndLog("");
438 PrintAndLog(" syntax: hf 14a sim <type> <uid>");
439 PrintAndLog(" types: 1 = MIFARE Classic");
440 PrintAndLog(" 2 = MIFARE Ultralight");
441 PrintAndLog(" 3 = MIFARE DESFIRE");
442 PrintAndLog(" 4 = ISO/IEC 14443-4");
443 PrintAndLog(" 5 = MIFARE TNP3XXX");
444 PrintAndLog("");
445 return 1;
446 }
447
448 // Store the tag type
449 c.arg[0] = tagtype;
450
451 // Retrieve the full 4 or 7 byte long uid
452 uint64_t long_uid = param_get64ex(Cmd,1,0,16);
453
454 // Are we handling the (optional) second part uid?
455 if (long_uid > 0xffffffff) {
456 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 7 byte UID (%014"llx")",long_uid);
457 // Store the second part
458 c.arg[2] = (long_uid & 0xffffffff);
459 long_uid >>= 32;
460 // Store the first part, ignore the first byte, it is replaced by cascade byte (0x88)
461 c.arg[1] = (long_uid & 0xffffff);
462 } else {
463 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 4 byte UID (%08x)",long_uid);
464 // Only store the first part
465 c.arg[1] = long_uid & 0xffffffff;
466 }
467 /*
468 // At lease save the mandatory first part of the UID
469 c.arg[0] = long_uid & 0xffffffff;
470
471 if (c.arg[1] == 0) {
472 PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
473 }
474
475 switch (c.arg[0]) {
476 case 1: {
477 PrintAndLog("Emulating ISO/IEC 14443-3 type A tag with 4 byte UID");
478 UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,param_get32ex(Cmd,0,0,10),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16)};
479 } break;
480 case 2: {
481 PrintAndLog("Emulating ISO/IEC 14443-4 type A tag with 7 byte UID");
482 } break;
483 default: {
484 PrintAndLog("Error: unkown tag type (%d)",c.arg[0]);
485 PrintAndLog("syntax: hf 14a sim <uid>",c.arg[0]);
486 PrintAndLog(" type1: 4 ",c.arg[0]);
487
488 return 1;
489 } break;
490 }
491 */
492 /*
493 unsigned int hi = 0, lo = 0;
494 int n = 0, i = 0;
495 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
496 hi= (hi << 4) | (lo >> 28);
497 lo= (lo << 4) | (n & 0xf);
498 }
499 */
500 // UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,param_get32ex(Cmd,0,0,10),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16)};
501 // PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
502 SendCommand(&c);
503 return 0;
504 }
505
506 int CmdHF14ASnoop(const char *Cmd) {
507 int param = 0;
508
509 if (param_getchar(Cmd, 0) == 'h') {
510 PrintAndLog("It get data from the field and saves it into command buffer.");
511 PrintAndLog("Buffer accessible from command hf 14a list.");
512 PrintAndLog("Usage: hf 14a snoop [c][r]");
513 PrintAndLog("c - triggered by first data from card");
514 PrintAndLog("r - triggered by first 7-bit request from reader (REQ,WUP,...)");
515 PrintAndLog("sample: hf 14a snoop c r");
516 return 0;
517 }
518
519 for (int i = 0; i < 2; i++) {
520 char ctmp = param_getchar(Cmd, i);
521 if (ctmp == 'c' || ctmp == 'C') param |= 0x01;
522 if (ctmp == 'r' || ctmp == 'R') param |= 0x02;
523 }
524
525 UsbCommand c = {CMD_SNOOP_ISO_14443a, {param, 0, 0}};
526 SendCommand(&c);
527 return 0;
528 }
529
530 int CmdHF14ACmdRaw(const char *cmd) {
531 UsbCommand c = {CMD_READER_ISO_14443a, {0, 0, 0}};
532 uint8_t reply=1;
533 uint8_t crc=0;
534 uint8_t power=0;
535 uint8_t active=0;
536 uint8_t active_select=0;
537 uint16_t numbits=0;
538 uint16_t timeout=0;
539 uint8_t bTimeout=0;
540 char buf[5]="";
541 int i=0;
542 uint8_t data[USB_CMD_DATA_SIZE];
543 unsigned int datalen=0, temp;
544
545 if (strlen(cmd)<2) {
546 PrintAndLog("Usage: hf 14a raw [-r] [-c] [-p] [-f] [-b] [-t] <number of bits> <0A 0B 0C ... hex>");
547 PrintAndLog(" -r do not read response");
548 PrintAndLog(" -c calculate and append CRC");
549 PrintAndLog(" -p leave the signal field ON after receive");
550 PrintAndLog(" -a active signal field ON without select");
551 PrintAndLog(" -s active signal field ON with select");
552 PrintAndLog(" -b number of bits to send. Useful for send partial byte");
553 PrintAndLog(" -t timeout");
554 return 0;
555 }
556
557 // strip
558 while (*cmd==' ' || *cmd=='\t') cmd++;
559
560 while (cmd[i]!='\0') {
561 if (cmd[i]==' ' || cmd[i]=='\t') { i++; continue; }
562 if (cmd[i]=='-') {
563 switch (cmd[i+1]) {
564 case 'r':
565 reply=0;
566 break;
567 case 'c':
568 crc=1;
569 break;
570 case 'p':
571 power=1;
572 break;
573 case 'a':
574 active=1;
575 break;
576 case 's':
577 active_select=1;
578 break;
579 case 'b':
580 sscanf(cmd+i+2,"%d",&temp);
581 numbits = temp & 0xFFFF;
582 i+=3;
583 while(cmd[i]!=' ' && cmd[i]!='\0') { i++; }
584 i-=2;
585 break;
586 case 't':
587 bTimeout=1;
588 sscanf(cmd+i+2,"%d",&temp);
589 timeout = temp & 0xFFFF;
590 i+=3;
591 while(cmd[i]!=' ' && cmd[i]!='\0') { i++; }
592 i+=2;
593 break;
594 default:
595 PrintAndLog("Invalid option");
596 return 0;
597 }
598 i+=2;
599 continue;
600 }
601 if ((cmd[i]>='0' && cmd[i]<='9') ||
602 (cmd[i]>='a' && cmd[i]<='f') ||
603 (cmd[i]>='A' && cmd[i]<='F') ) {
604 buf[strlen(buf)+1]=0;
605 buf[strlen(buf)]=cmd[i];
606 i++;
607
608 if (strlen(buf)>=2) {
609 sscanf(buf,"%x",&temp);
610 data[datalen]=(uint8_t)(temp & 0xff);
611 *buf=0;
612 if (++datalen>sizeof(data)){
613 if (crc)
614 PrintAndLog("Buffer is full, we can't add CRC to your data");
615 break;
616 }
617 }
618 continue;
619 }
620 PrintAndLog("Invalid char on input");
621 return 0;
622 }
623 if(crc && datalen>0 && datalen<sizeof(data)-2)
624 {
625 uint8_t first, second;
626 ComputeCrc14443(CRC_14443_A, data, datalen, &first, &second);
627 data[datalen++] = first;
628 data[datalen++] = second;
629 }
630
631 if(active || active_select)
632 {
633 c.arg[0] |= ISO14A_CONNECT;
634 if(active)
635 c.arg[0] |= ISO14A_NO_SELECT;
636 }
637 if(bTimeout){
638 #define MAX_TIMEOUT 624*105 // max timeout is 624 ms
639 c.arg[0] |= ISO14A_SET_TIMEOUT;
640 c.arg[2] = timeout * 105; // each bit is about 9.4 us
641 if(c.arg[2]>MAX_TIMEOUT) {
642 c.arg[2] = MAX_TIMEOUT;
643 PrintAndLog("Set timeout to 624 ms. The max we can wait for response");
644 }
645 }
646 if(power)
647 c.arg[0] |= ISO14A_NO_DISCONNECT;
648 if(datalen>0)
649 c.arg[0] |= ISO14A_RAW;
650
651 // Max buffer is USB_CMD_DATA_SIZE
652 c.arg[1] = (datalen & 0xFFFF) | (numbits << 16);
653 memcpy(c.d.asBytes,data,datalen);
654
655 SendCommand(&c);
656
657 if (reply) {
658 if(active_select)
659 waitCmd(1);
660 if(datalen>0)
661 waitCmd(0);
662 } // if reply
663 return 0;
664 }
665
666 static void waitCmd(uint8_t iSelect)
667 {
668 uint8_t *recv;
669 UsbCommand resp;
670 char *hexout;
671
672 if (WaitForResponseTimeout(CMD_ACK,&resp,10000)) {
673 recv = resp.d.asBytes;
674 uint8_t iLen = iSelect ? resp.arg[1] : resp.arg[0];
675 PrintAndLog("received %i octets",iLen);
676 if(!iLen)
677 return;
678 hexout = (char *)malloc(iLen * 3 + 1);
679 if (hexout != NULL) {
680 for (int i = 0; i < iLen; i++) { // data in hex
681 sprintf(&hexout[i * 3], "%02X ", recv[i]);
682 }
683 PrintAndLog("%s", hexout);
684 free(hexout);
685 } else {
686 PrintAndLog("malloc failed your client has low memory?");
687 }
688 } else {
689 PrintAndLog("timeout while waiting for reply.");
690 }
691 }
692
693 static command_t CommandTable[] =
694 {
695 {"help", CmdHelp, 1, "This help"},
696 {"list", CmdHF14AList, 0, "List ISO 14443a history"},
697 {"reader", CmdHF14AReader, 0, "Act like an ISO14443 Type A reader"},
698 {"cuids", CmdHF14ACUIDs, 0, "<n> Collect n>0 ISO14443 Type A UIDs in one go"},
699 {"sim", CmdHF14ASim, 0, "<UID> -- Fake ISO 14443a tag"},
700 {"snoop", CmdHF14ASnoop, 0, "Eavesdrop ISO 14443 Type A"},
701 {"raw", CmdHF14ACmdRaw, 0, "Send raw hex data to tag"},
702 {NULL, NULL, 0, NULL}
703 };
704
705 int CmdHF14A(const char *Cmd) {
706 // flush
707 WaitForResponseTimeout(CMD_ACK,NULL,100);
708
709 // parse
710 CmdsParse(CommandTable, Cmd);
711 return 0;
712 }
713
714 int CmdHelp(const char *Cmd)
715 {
716 CmdsHelp(CommandTable);
717 return 0;
718 }
Impressum, Datenschutz