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