]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhflist.c
'hf 14b' formatting
[proxmark3-svn] / client / cmdhflist.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 // Copyright (C) Merlok - 2017
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 // Command: hf list. It shows data from arm buffer.
10 //-----------------------------------------------------------------------------
11
12 #include "cmdhflist.h"
13
14 #include <stdlib.h>
15 #include <stdio.h>
16 #include <string.h>
17 #include <stdint.h>
18 #include <stdbool.h>
19 #include "util.h"
20 #include "ui.h"
21 #include "comms.h"
22 #include "iso14443crc.h"
23 #include "iso15693tools.h"
24 #include "parity.h"
25 #include "protocols.h"
26 #include "crapto1/crapto1.h"
27 #include "mifare/mifarehost.h"
28 #include "mifare/mifaredefault.h"
29 #include "usb_cmd.h"
30 #include "pcsc.h"
31
32 typedef struct {
33 uint32_t uid; // UID
34 uint32_t nt; // tag challenge
35 uint32_t nt_enc; // encrypted tag challenge
36 uint8_t nt_enc_par; // encrypted tag challenge parity
37 uint32_t nr_enc; // encrypted reader challenge
38 uint32_t ar_enc; // encrypted reader response
39 uint8_t ar_enc_par; // encrypted reader response parity
40 uint32_t at_enc; // encrypted tag response
41 uint8_t at_enc_par; // encrypted tag response parity
42 bool first_auth; // is first authentication
43 uint32_t ks2; // ar ^ ar_enc
44 uint32_t ks3; // at ^ at_enc
45 } TAuthData;
46
47 enum MifareAuthSeq {
48 masNone,
49 masNt,
50 masNrAr,
51 masAt,
52 masAuthComplete,
53 masFirstData,
54 masData,
55 masError,
56 };
57
58 static enum MifareAuthSeq MifareAuthState;
59 static TAuthData AuthData;
60
61 static void ClearAuthData() {
62 AuthData.uid = 0;
63 AuthData.nt = 0;
64 AuthData.first_auth = true;
65 AuthData.ks2 = 0;
66 AuthData.ks3 = 0;
67 }
68
69 /**
70 * @brief iso14443A_CRC_check Checks CRC in command or response
71 * @param isResponse
72 * @param data
73 * @param len
74 * @return 0 : CRC-command, CRC not ok
75 * 1 : CRC-command, CRC ok
76 * 2 : Not crc-command
77 */
78 static uint8_t iso14443A_CRC_check(bool isResponse, uint8_t* data, uint8_t len)
79 {
80 uint8_t b1,b2;
81
82 if(len <= 2) return 2;
83
84 if(isResponse & (len < 6)) return 2;
85
86 ComputeCrc14443(CRC_14443_A, data, len-2, &b1, &b2);
87 if (b1 != data[len-2] || b2 != data[len-1]) {
88 return 0;
89 } else {
90 return 1;
91 }
92 }
93
94
95 static uint8_t iso14443_4_CRC_check(uint8_t* data, uint8_t len)
96 {
97 uint8_t b1,b2;
98
99 if(len <= 2) return 2;
100
101 ComputeCrc14443(CRC_14443_A, data, len-2, &b1, &b2);
102 if (b1 != data[len-2] || b2 != data[len-1]) {
103 return 0;
104 } else {
105 return 1;
106 }
107 }
108
109
110 static uint8_t mifare_CRC_check(bool isResponse, uint8_t* data, uint8_t len)
111 {
112 switch(MifareAuthState) {
113 case masNone:
114 case masError:
115 return iso14443A_CRC_check(isResponse, data, len);
116 default:
117 return 2;
118 }
119 }
120
121
122 /**
123 * @brief iso14443B_CRC_check Checks CRC in command or response
124 * @param isResponse
125 * @param data
126 * @param len
127 * @return 0 : CRC-command, CRC not ok
128 * 1 : CRC-command, CRC ok
129 * 2 : Not crc-command
130 */
131 static uint8_t iso14443B_CRC_check(bool isResponse, uint8_t* data, uint8_t len)
132 {
133 uint8_t b1,b2;
134
135 if(len <= 2) return 2;
136
137 ComputeCrc14443(CRC_14443_B, data, len-2, &b1, &b2);
138 if(b1 != data[len-2] || b2 != data[len-1]) {
139 return 0;
140 } else {
141 return 1;
142 }
143 }
144
145
146 static uint8_t iso15693_CRC_check(uint8_t* d, uint16_t n)
147 {
148 if (n <= 2) return 2;
149
150 return (Iso15693Crc(d, n) == ISO15693_CRC_CHECK ? 1 : 0);
151 }
152
153
154 /**
155 * @brief iclass_CRC_Ok Checks CRC in command or response
156 * @param isResponse
157 * @param data
158 * @param len
159 * @return 0 : CRC-command, CRC not ok
160 * 1 : CRC-command, CRC ok
161 * 2 : Not crc-command
162 */
163 uint8_t iclass_CRC_check(bool isResponse, uint8_t* data, uint8_t len)
164 {
165 if(len < 4) return 2;//CRC commands (and responses) are all at least 4 bytes
166
167 uint8_t b1, b2;
168
169 if(!isResponse)//Commands to tag
170 {
171 /**
172 These commands should have CRC. Total length leftmost
173 4 READ
174 4 READ4
175 12 UPDATE - unsecured, ends with CRC16
176 14 UPDATE - secured, ends with signature instead
177 4 PAGESEL
178 **/
179 if(len == 4 || len == 12)//Covers three of them
180 {
181 //Don't include the command byte
182 ComputeCrc14443(CRC_ICLASS, (data+1), len-3, &b1, &b2);
183 return b1 == data[len -2] && b2 == data[len-1];
184 }
185 return 2;
186 }else{
187 /**
188 These tag responses should have CRC. Total length leftmost
189
190 10 READ data[8] crc[2]
191 34 READ4 data[32]crc[2]
192 10 UPDATE data[8] crc[2]
193 10 SELECT csn[8] crc[2]
194 10 IDENTIFY asnb[8] crc[2]
195 10 PAGESEL block1[8] crc[2]
196 10 DETECT csn[8] crc[2]
197
198 These should not
199
200 4 CHECK chip_response[4]
201 8 READCHECK data[8]
202 1 ACTALL sof[1]
203 1 ACT sof[1]
204
205 In conclusion, without looking at the command; any response
206 of length 10 or 34 should have CRC
207 **/
208 if(len != 10 && len != 34) return true;
209
210 ComputeCrc14443(CRC_ICLASS, data, len-2, &b1, &b2);
211 return b1 == data[len -2] && b2 == data[len-1];
212 }
213 }
214
215
216 void annotateIclass(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize) {
217 switch(cmd[0])
218 {
219 case ICLASS_CMD_ACTALL: snprintf(exp, size, "ACTALL"); break;
220 case ICLASS_CMD_READ_OR_IDENTIFY: {
221 if (cmdsize > 1){
222 snprintf(exp,size,"READ(%d)",cmd[1]);
223 } else {
224 snprintf(exp,size,"IDENTIFY");
225 }
226 break;
227 }
228 case ICLASS_CMD_SELECT: snprintf(exp,size, "SELECT"); break;
229 case ICLASS_CMD_PAGESEL: snprintf(exp,size, "PAGESEL(%d)", cmd[1]); break;
230 case ICLASS_CMD_READCHECK_KC: snprintf(exp,size, "READCHECK[Kc](%d)", cmd[1]); break;
231 case ICLASS_CMD_READCHECK_KD: snprintf(exp,size, "READCHECK[Kd](%d)", cmd[1]); break;
232 case ICLASS_CMD_CHECK_KC:
233 case ICLASS_CMD_CHECK_KD: snprintf(exp,size, "CHECK"); break;
234 case ICLASS_CMD_DETECT: snprintf(exp,size, "DETECT"); break;
235 case ICLASS_CMD_HALT: snprintf(exp,size, "HALT"); break;
236 case ICLASS_CMD_UPDATE: snprintf(exp,size, "UPDATE(%d)",cmd[1]); break;
237 case ICLASS_CMD_ACT: snprintf(exp,size, "ACT"); break;
238 case ICLASS_CMD_READ4: snprintf(exp,size, "READ4(%d)",cmd[1]); break;
239 default: snprintf(exp,size, "?"); break;
240 }
241 return;
242 }
243
244
245 void annotateIso15693(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
246 {
247 switch(cmd[1]){
248 // Mandatory Commands, all Tags must support them:
249 case ISO15693_INVENTORY :snprintf(exp, size, "INVENTORY");return;
250 case ISO15693_STAYQUIET :snprintf(exp, size, "STAY_QUIET");return;
251 // Optional Commands, Tags may support them:
252 case ISO15693_READBLOCK :snprintf(exp, size, "READBLOCK");return;
253 case ISO15693_WRITEBLOCK :snprintf(exp, size, "WRITEBLOCK");return;
254 case ISO15693_LOCKBLOCK :snprintf(exp, size, "LOCKBLOCK");return;
255 case ISO15693_READ_MULTI_BLOCK :snprintf(exp, size, "READ_MULTI_BLOCK");return;
256 case ISO15693_SELECT :snprintf(exp, size, "SELECT");return;
257 case ISO15693_RESET_TO_READY :snprintf(exp, size, "RESET_TO_READY");return;
258 case ISO15693_WRITE_AFI :snprintf(exp, size, "WRITE_AFI");return;
259 case ISO15693_LOCK_AFI :snprintf(exp, size, "LOCK_AFI");return;
260 case ISO15693_WRITE_DSFID :snprintf(exp, size, "WRITE_DSFID");return;
261 case ISO15693_LOCK_DSFID :snprintf(exp, size, "LOCK_DSFID");return;
262 case ISO15693_GET_SYSTEM_INFO :snprintf(exp, size, "GET_SYSTEM_INFO");return;
263 case ISO15693_READ_MULTI_SECSTATUS :snprintf(exp, size, "READ_MULTI_SECSTATUS");return;
264 default: break;
265 }
266
267 if (cmd[1] > ISO15693_STAYQUIET && cmd[1] < ISO15693_READBLOCK) snprintf(exp, size, "Mandatory RFU");
268 else if (cmd[1] > ISO15693_READ_MULTI_SECSTATUS && cmd[1] <= 0x9F) snprintf(exp, size, "Optional RFU");
269 else if ( cmd[1] >= 0xA0 && cmd[1] <= 0xDF ) snprintf(exp, size, "Custom command");
270 else if ( cmd[1] >= 0xE0 && cmd[1] <= 0xFF ) snprintf(exp, size, "Proprietary command");
271 }
272
273
274 void annotateTopaz(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
275 {
276 switch(cmd[0]) {
277 case TOPAZ_REQA :snprintf(exp, size, "REQA");break;
278 case TOPAZ_WUPA :snprintf(exp, size, "WUPA");break;
279 case TOPAZ_RID :snprintf(exp, size, "RID");break;
280 case TOPAZ_RALL :snprintf(exp, size, "RALL");break;
281 case TOPAZ_READ :snprintf(exp, size, "READ");break;
282 case TOPAZ_WRITE_E :snprintf(exp, size, "WRITE-E");break;
283 case TOPAZ_WRITE_NE :snprintf(exp, size, "WRITE-NE");break;
284 case TOPAZ_RSEG :snprintf(exp, size, "RSEG");break;
285 case TOPAZ_READ8 :snprintf(exp, size, "READ8");break;
286 case TOPAZ_WRITE_E8 :snprintf(exp, size, "WRITE-E8");break;
287 case TOPAZ_WRITE_NE8 :snprintf(exp, size, "WRITE-NE8");break;
288 default: snprintf(exp,size,"?"); break;
289 }
290 }
291
292
293 void annotateIso7816(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
294 {
295 switch ( cmd[1] ){
296 case ISO7816_READ_BINARY :snprintf(exp, size, "READ BINARY");break;
297 case ISO7816_WRITE_BINARY :snprintf(exp, size, "WRITE BINARY");break;
298 case ISO7816_UPDATE_BINARY :snprintf(exp, size, "UPDATE BINARY");break;
299 case ISO7816_ERASE_BINARY :snprintf(exp, size, "ERASE BINARY");break;
300 case ISO7816_READ_RECORDS :snprintf(exp, size, "READ RECORD(S)");break;
301 case ISO7816_WRITE_RECORD :snprintf(exp, size, "WRITE RECORD");break;
302 case ISO7816_APPEND_RECORD :snprintf(exp, size, "APPEND RECORD");break;
303 case ISO7816_UPDATE_DATA :snprintf(exp, size, "UPDATE DATA");break;
304 case ISO7816_GET_DATA :snprintf(exp, size, "GET DATA");break;
305 case ISO7816_PUT_DATA :snprintf(exp, size, "PUT DATA");break;
306 case ISO7816_SELECT_FILE :snprintf(exp, size, "SELECT FILE");break;
307 case ISO7816_VERIFY :snprintf(exp, size, "VERIFY");break;
308 case ISO7816_INTERNAL_AUTHENTICATE :snprintf(exp, size, "INTERNAL AUTHENTICATE");break;
309 case ISO7816_EXTERNAL_AUTHENTICATE :snprintf(exp, size, "EXTERNAL AUTHENTICATE");break;
310 case ISO7816_GET_CHALLENGE :snprintf(exp, size, "GET CHALLENGE");break;
311 case ISO7816_MANAGE_CHANNEL :snprintf(exp, size, "MANAGE CHANNEL");break;
312 case ISO7816_GET_RESPONSE :snprintf(exp, size, "GET RESPONSE");break;
313 case ISO7816_ENVELOPE :snprintf(exp, size, "ENVELOPE");break;
314 case ISO7816_GET_PROCESSING_OPTIONS :snprintf(exp, size, "GET PROCESSING OPTIONS");break;
315 default :snprintf(exp,size,"?"); break;
316 }
317 }
318
319
320 void annotateIso14443_4(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize){
321 // S-block
322 if ((cmd[0] & 0xc3) == 0xc2) {
323 switch (cmd[0] & 0x30) {
324 case 0x00 : snprintf(exp, size, "S-block DESELECT"); break;
325 case 0x30 : snprintf(exp, size, "S-block WTX"); break;
326 default : snprintf(exp, size, "S-block (RFU)"); break;
327 }
328 }
329 // R-block (ack)
330 else if ((cmd[0] & 0xe0) == 0xa0) {
331 if ((cmd[0] & 0x10) == 0)
332 snprintf(exp, size, "R-block ACK");
333 else
334 snprintf(exp, size, "R-block NACK");
335 }
336 // I-block
337 else {
338 int pos = 1;
339 switch (cmd[0] & 0x0c) {
340 case 0x08: // CID following
341 case 0x04: // NAD following
342 pos = 2;
343 break;
344 case 0x0c: // CID and NAD following
345 pos = 3;
346 break;
347 default:
348 pos = 1; // no CID, no NAD
349 break;
350 }
351 annotateIso7816(exp, size, &cmd[pos], cmdsize-pos);
352 }
353 }
354
355
356 /**
357 06 00 = INITIATE
358 0E xx = SELECT ID (xx = Chip-ID)
359 0B = Get UID
360 08 yy = Read Block (yy = block number)
361 09 yy dd dd dd dd = Write Block (yy = block number; dd dd dd dd = data to be written)
362 0C = Reset to Inventory
363 0F = Completion
364 0A 11 22 33 44 55 66 = Authenticate (11 22 33 44 55 66 = data to authenticate)
365 **/
366
367 void annotateIso14443b(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
368 {
369 switch(cmd[0]){
370 case ISO14443B_REQB : snprintf(exp,size,"REQB");break;
371 case ISO14443B_ATTRIB : snprintf(exp,size,"ATTRIB");break;
372 case ISO14443B_HALT : snprintf(exp,size,"HALT");break;
373 case ISO14443B_INITIATE : snprintf(exp,size,"INITIATE");break;
374 case ISO14443B_SELECT : snprintf(exp,size,"SELECT(%d)",cmd[1]);break;
375 case ISO14443B_GET_UID : snprintf(exp,size,"GET UID");break;
376 case ISO14443B_READ_BLK : snprintf(exp,size,"READ_BLK(%d)", cmd[1]);break;
377 case ISO14443B_WRITE_BLK : snprintf(exp,size,"WRITE_BLK(%d)",cmd[1]);break;
378 case ISO14443B_RESET : snprintf(exp,size,"RESET");break;
379 case ISO14443B_COMPLETION : snprintf(exp,size,"COMPLETION");break;
380 case ISO14443B_AUTHENTICATE : snprintf(exp,size,"AUTHENTICATE");break;
381 default : snprintf(exp,size ,"?");break;
382 }
383
384 }
385
386 void annotateIso14443a(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize)
387 {
388 switch(cmd[0])
389 {
390 case ISO14443A_CMD_WUPA:
391 snprintf(exp,size,"WUPA");
392 break;
393 case ISO14443A_CMD_ANTICOLL_OR_SELECT:{
394 // 93 20 = Anticollision (usage: 9320 - answer: 4bytes UID+1byte UID-bytes-xor)
395 // 93 70 = Select (usage: 9370+5bytes 9320 answer - answer: 1byte SAK)
396 if(cmd[1] == 0x70)
397 {
398 snprintf(exp,size,"SELECT_UID"); break;
399 }else
400 {
401 snprintf(exp,size,"ANTICOLL"); break;
402 }
403 }
404 case ISO14443A_CMD_ANTICOLL_OR_SELECT_2:{
405 //95 20 = Anticollision of cascade level2
406 //95 70 = Select of cascade level2
407 if(cmd[2] == 0x70)
408 {
409 snprintf(exp,size,"SELECT_UID-2"); break;
410 }else
411 {
412 snprintf(exp,size,"ANTICOLL-2"); break;
413 }
414 }
415 case ISO14443A_CMD_REQA:
416 snprintf(exp,size,"REQA");
417 break;
418 case MIFARE_CMD_READBLOCK: snprintf(exp,size,"READBLOCK(%d)",cmd[1]); break;
419 case MIFARE_CMD_WRITEBLOCK: snprintf(exp,size,"WRITEBLOCK(%d)",cmd[1]); break;
420 case ISO14443A_CMD_HALT:
421 snprintf(exp,size,"HALT");
422 MifareAuthState = masNone;
423 break;
424 case ISO14443A_CMD_RATS: snprintf(exp,size,"RATS"); break;
425 case MIFARE_CMD_INC: snprintf(exp,size,"INC(%d)",cmd[1]); break;
426 case MIFARE_CMD_DEC: snprintf(exp,size,"DEC(%d)",cmd[1]); break;
427 case MIFARE_CMD_RESTORE: snprintf(exp,size,"RESTORE(%d)",cmd[1]); break;
428 case MIFARE_CMD_TRANSFER: snprintf(exp,size,"TRANSFER(%d)",cmd[1]); break;
429 case MIFARE_AUTH_KEYA:
430 if ( cmdsize > 3) {
431 snprintf(exp,size,"AUTH-A(%d)",cmd[1]);
432 MifareAuthState = masNt;
433 } else {
434 // case MIFARE_ULEV1_VERSION : both 0x60.
435 snprintf(exp,size,"EV1 VERSION");
436 }
437 break;
438 case MIFARE_AUTH_KEYB:
439 MifareAuthState = masNt;
440 snprintf(exp,size,"AUTH-B(%d)",cmd[1]);
441 break;
442 case MIFARE_MAGICWUPC1: snprintf(exp,size,"MAGIC WUPC1"); break;
443 case MIFARE_MAGICWUPC2: snprintf(exp,size,"MAGIC WUPC2"); break;
444 case MIFARE_MAGICWIPEC: snprintf(exp,size,"MAGIC WIPEC"); break;
445 case MIFARE_ULC_AUTH_1: snprintf(exp,size,"AUTH "); break;
446 case MIFARE_ULC_AUTH_2: snprintf(exp,size,"AUTH_ANSW"); break;
447 case MIFARE_ULEV1_AUTH:
448 if ( cmdsize == 7 )
449 snprintf(exp,size,"PWD-AUTH KEY: 0x%02x%02x%02x%02x", cmd[1], cmd[2], cmd[3], cmd[4] );
450 else
451 snprintf(exp,size,"PWD-AUTH");
452 break;
453 case MIFARE_ULEV1_FASTREAD:{
454 if ( cmdsize >=3 && cmd[2] <= 0xE6)
455 snprintf(exp,size,"READ RANGE (%d-%d)",cmd[1],cmd[2]);
456 else
457 snprintf(exp,size,"?");
458 break;
459 }
460 case MIFARE_ULC_WRITE:{
461 if ( cmd[1] < 0x21 )
462 snprintf(exp,size,"WRITEBLOCK(%d)",cmd[1]);
463 else
464 snprintf(exp,size,"?");
465 break;
466 }
467 case MIFARE_ULEV1_READ_CNT:{
468 if ( cmd[1] < 5 )
469 snprintf(exp,size,"READ CNT(%d)",cmd[1]);
470 else
471 snprintf(exp,size,"?");
472 break;
473 }
474 case MIFARE_ULEV1_INCR_CNT:{
475 if ( cmd[1] < 5 )
476 snprintf(exp,size,"INCR(%d)",cmd[1]);
477 else
478 snprintf(exp,size,"?");
479 break;
480 }
481 case MIFARE_ULEV1_READSIG: snprintf(exp,size,"READ_SIG"); break;
482 case MIFARE_ULEV1_CHECKTEAR: snprintf(exp,size,"CHK_TEARING(%d)",cmd[1]); break;
483 case MIFARE_ULEV1_VCSL: snprintf(exp,size,"VCSL"); break;
484 default: snprintf(exp,size,"?"); break;
485 }
486 return;
487 }
488
489 void annotateMifare(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize, uint8_t* parity, uint8_t paritysize, bool isResponse) {
490 if (!isResponse && cmdsize == 1) {
491 switch(cmd[0]) {
492 case ISO14443A_CMD_WUPA:
493 case ISO14443A_CMD_REQA:
494 MifareAuthState = masNone;
495 break;
496 default:
497 break;
498 }
499 }
500
501 // get UID
502 if (MifareAuthState == masNone) {
503 if (cmdsize == 9 && cmd[0] == ISO14443A_CMD_ANTICOLL_OR_SELECT && cmd[1] == 0x70) {
504 ClearAuthData();
505 AuthData.uid = bytes_to_num(&cmd[2], 4);
506 }
507 if (cmdsize == 9 && cmd[0] == ISO14443A_CMD_ANTICOLL_OR_SELECT_2 && cmd[1] == 0x70) {
508 ClearAuthData();
509 AuthData.uid = bytes_to_num(&cmd[2], 4);
510 }
511 }
512
513 switch(MifareAuthState) {
514 case masNt:
515 if (cmdsize == 4 && isResponse) {
516 snprintf(exp,size,"AUTH: nt %s", (AuthData.first_auth) ? "" : "(enc)");
517 MifareAuthState = masNrAr;
518 if (AuthData.first_auth) {
519 AuthData.nt = bytes_to_num(cmd, 4);
520 } else {
521 AuthData.nt_enc = bytes_to_num(cmd, 4);
522 AuthData.nt_enc_par = parity[0];
523 }
524 return;
525 } else {
526 MifareAuthState = masError;
527 }
528 break;
529 case masNrAr:
530 if (cmdsize == 8 && !isResponse) {
531 snprintf(exp,size,"AUTH: nr ar (enc)");
532 MifareAuthState = masAt;
533 AuthData.nr_enc = bytes_to_num(cmd, 4);
534 AuthData.ar_enc = bytes_to_num(&cmd[4], 4);
535 AuthData.ar_enc_par = parity[0] << 4;
536 return;
537 } else {
538 MifareAuthState = masError;
539 }
540 break;
541 case masAt:
542 if (cmdsize == 4 && isResponse) {
543 snprintf(exp,size,"AUTH: at (enc)");
544 MifareAuthState = masAuthComplete;
545 AuthData.at_enc = bytes_to_num(cmd, 4);
546 AuthData.at_enc_par = parity[0];
547 return;
548 } else {
549 MifareAuthState = masError;
550 }
551 break;
552 default:
553 break;
554 }
555
556 if (!isResponse && ((MifareAuthState == masNone) || (MifareAuthState == masError)))
557 annotateIso14443a(exp, size, cmd, cmdsize);
558
559 }
560
561
562 static uint64_t GetCrypto1ProbableKey(TAuthData *ad) {
563 struct Crypto1State *revstate = lfsr_recovery64(ad->ks2, ad->ks3);
564 lfsr_rollback_word(revstate, 0, 0);
565 lfsr_rollback_word(revstate, 0, 0);
566 lfsr_rollback_word(revstate, ad->nr_enc, 1);
567 lfsr_rollback_word(revstate, ad->uid ^ ad->nt, 0);
568
569 uint64_t lfsr = 0;
570 crypto1_get_lfsr(revstate, &lfsr);
571 crypto1_destroy(revstate);
572
573 return lfsr;
574 }
575
576
577 static bool NTParityChk(TAuthData *ad, uint32_t ntx) {
578 if (
579 (oddparity8(ntx >> 8 & 0xff) ^ (ntx & 0x01) ^ ((ad->nt_enc_par >> 5) & 0x01) ^ (ad->nt_enc & 0x01)) ||
580 (oddparity8(ntx >> 16 & 0xff) ^ (ntx >> 8 & 0x01) ^ ((ad->nt_enc_par >> 6) & 0x01) ^ (ad->nt_enc >> 8 & 0x01)) ||
581 (oddparity8(ntx >> 24 & 0xff) ^ (ntx >> 16 & 0x01) ^ ((ad->nt_enc_par >> 7) & 0x01) ^ (ad->nt_enc >> 16 & 0x01))
582 )
583 return false;
584
585 uint32_t ar = prng_successor(ntx, 64);
586 if (
587 (oddparity8(ar >> 8 & 0xff) ^ (ar & 0x01) ^ ((ad->ar_enc_par >> 5) & 0x01) ^ (ad->ar_enc & 0x01)) ||
588 (oddparity8(ar >> 16 & 0xff) ^ (ar >> 8 & 0x01) ^ ((ad->ar_enc_par >> 6) & 0x01) ^ (ad->ar_enc >> 8 & 0x01)) ||
589 (oddparity8(ar >> 24 & 0xff) ^ (ar >> 16 & 0x01) ^ ((ad->ar_enc_par >> 7) & 0x01) ^ (ad->ar_enc >> 16 & 0x01))
590 )
591 return false;
592
593 uint32_t at = prng_successor(ntx, 96);
594 if (
595 (oddparity8(ar & 0xff) ^ (at >> 24 & 0x01) ^ ((ad->ar_enc_par >> 4) & 0x01) ^ (ad->at_enc >> 24 & 0x01)) ||
596 (oddparity8(at >> 8 & 0xff) ^ (at & 0x01) ^ ((ad->at_enc_par >> 5) & 0x01) ^ (ad->at_enc & 0x01)) ||
597 (oddparity8(at >> 16 & 0xff) ^ (at >> 8 & 0x01) ^ ((ad->at_enc_par >> 6) & 0x01) ^ (ad->at_enc >> 8 & 0x01)) ||
598 (oddparity8(at >> 24 & 0xff) ^ (at >> 16 & 0x01) ^ ((ad->at_enc_par >> 7) & 0x01) ^ (ad->at_enc >> 16 & 0x01))
599 )
600 return false;
601
602 return true;
603 }
604
605
606 static bool CheckCrypto1Parity(uint8_t *cmd_enc, uint8_t cmdsize, uint8_t *cmd, uint8_t *parity_enc) {
607 for (int i = 0; i < cmdsize - 1; i++) {
608 if (oddparity8(cmd[i]) ^ (cmd[i + 1] & 0x01) ^ ((parity_enc[i / 8] >> (7 - i % 8)) & 0x01) ^ (cmd_enc[i + 1] & 0x01))
609 return false;
610 }
611
612 return true;
613 }
614
615
616 static bool NestedCheckKey(uint64_t key, TAuthData *ad, uint8_t *cmd, uint8_t cmdsize, uint8_t *parity) {
617 uint8_t buf[32] = {0};
618 struct Crypto1State *pcs;
619
620 AuthData.ks2 = 0;
621 AuthData.ks3 = 0;
622
623 pcs = crypto1_create(key);
624 uint32_t nt1 = crypto1_word(pcs, ad->nt_enc ^ ad->uid, 1) ^ ad->nt_enc;
625 uint32_t ar = prng_successor(nt1, 64);
626 uint32_t at = prng_successor(nt1, 96);
627
628 crypto1_word(pcs, ad->nr_enc, 1);
629 // uint32_t nr1 = crypto1_word(pcs, ad->nr_enc, 1) ^ ad->nr_enc; // if needs deciphered nr
630 uint32_t ar1 = crypto1_word(pcs, 0, 0) ^ ad->ar_enc;
631 uint32_t at1 = crypto1_word(pcs, 0, 0) ^ ad->at_enc;
632
633 if (!(ar == ar1 && at == at1 && NTParityChk(ad, nt1))) {
634 crypto1_destroy(pcs);
635 return false;
636 }
637
638 memcpy(buf, cmd, cmdsize);
639 mf_crypto1_decrypt(pcs, buf, cmdsize, 0);
640
641 crypto1_destroy(pcs);
642
643 if (!CheckCrypto1Parity(cmd, cmdsize, buf, parity))
644 return false;
645
646 if(!CheckCrc14443(CRC_14443_A, buf, cmdsize))
647 return false;
648
649 AuthData.nt = nt1;
650 AuthData.ks2 = AuthData.ar_enc ^ ar;
651 AuthData.ks3 = AuthData.at_enc ^ at;
652
653 return true;
654 }
655
656
657 static bool DecodeMifareData(uint8_t *cmd, uint8_t cmdsize, uint8_t *parity, bool isResponse, uint8_t *mfData, size_t *mfDataLen) {
658 static struct Crypto1State *traceCrypto1;
659 static uint64_t mfLastKey;
660
661 *mfDataLen = 0;
662
663 if (MifareAuthState == masAuthComplete) {
664 if (traceCrypto1) {
665 crypto1_destroy(traceCrypto1);
666 traceCrypto1 = NULL;
667 }
668
669 MifareAuthState = masFirstData;
670 return false;
671 }
672
673 if (cmdsize > 32)
674 return false;
675
676 if (MifareAuthState == masFirstData) {
677 if (AuthData.first_auth) {
678 AuthData.ks2 = AuthData.ar_enc ^ prng_successor(AuthData.nt, 64);
679 AuthData.ks3 = AuthData.at_enc ^ prng_successor(AuthData.nt, 96);
680
681 mfLastKey = GetCrypto1ProbableKey(&AuthData);
682 PrintAndLog(" | * | key | probable key:%012"PRIx64" Prng:%s ks2:%08x ks3:%08x | |",
683 mfLastKey,
684 validate_prng_nonce(AuthData.nt) ? "WEAK": "HARD",
685 AuthData.ks2,
686 AuthData.ks3);
687
688 AuthData.first_auth = false;
689
690 traceCrypto1 = lfsr_recovery64(AuthData.ks2, AuthData.ks3);
691 } else {
692 if (traceCrypto1) {
693 crypto1_destroy(traceCrypto1);
694 traceCrypto1 = NULL;
695 }
696
697 // check last used key
698 if (mfLastKey) {
699 if (NestedCheckKey(mfLastKey, &AuthData, cmd, cmdsize, parity)) {
700 PrintAndLog(" | * | key | last used key:%012"PRIx64" ks2:%08x ks3:%08x | |",
701 mfLastKey,
702 AuthData.ks2,
703 AuthData.ks3);
704
705 traceCrypto1 = lfsr_recovery64(AuthData.ks2, AuthData.ks3);
706 };
707 }
708
709 // check default keys
710 if (!traceCrypto1) {
711 for (int defaultKeyCounter = 0; defaultKeyCounter < MifareDefaultKeysSize; defaultKeyCounter++){
712 if (NestedCheckKey(MifareDefaultKeys[defaultKeyCounter], &AuthData, cmd, cmdsize, parity)) {
713 PrintAndLog(" | * | key | default key:%012"PRIx64" ks2:%08x ks3:%08x | |",
714 MifareDefaultKeys[defaultKeyCounter],
715 AuthData.ks2,
716 AuthData.ks3);
717
718 mfLastKey = MifareDefaultKeys[defaultKeyCounter];
719 traceCrypto1 = lfsr_recovery64(AuthData.ks2, AuthData.ks3);
720 break;
721 };
722 }
723 }
724
725 // nested
726 if (!traceCrypto1 && validate_prng_nonce(AuthData.nt)) {
727 uint32_t ntx = prng_successor(AuthData.nt, 90);
728 for (int i = 0; i < 16383; i++) {
729 ntx = prng_successor(ntx, 1);
730 if (NTParityChk(&AuthData, ntx)){
731
732 uint32_t ks2 = AuthData.ar_enc ^ prng_successor(ntx, 64);
733 uint32_t ks3 = AuthData.at_enc ^ prng_successor(ntx, 96);
734 struct Crypto1State *pcs = lfsr_recovery64(ks2, ks3);
735 memcpy(mfData, cmd, cmdsize);
736 mf_crypto1_decrypt(pcs, mfData, cmdsize, 0);
737
738 crypto1_destroy(pcs);
739 if (CheckCrypto1Parity(cmd, cmdsize, mfData, parity) && CheckCrc14443(CRC_14443_A, mfData, cmdsize)) {
740 AuthData.ks2 = ks2;
741 AuthData.ks3 = ks3;
742
743 AuthData.nt = ntx;
744 mfLastKey = GetCrypto1ProbableKey(&AuthData);
745 PrintAndLog(" | * | key | nested probable key:%012"PRIx64" ks2:%08x ks3:%08x | |",
746 mfLastKey,
747 AuthData.ks2,
748 AuthData.ks3);
749
750 traceCrypto1 = lfsr_recovery64(AuthData.ks2, AuthData.ks3);
751 break;
752 }
753 }
754 }
755 }
756
757 //hardnested
758 if (!traceCrypto1) {
759 printf("hardnested not implemented. uid:%x nt:%x ar_enc:%x at_enc:%x\n", AuthData.uid, AuthData.nt, AuthData.ar_enc, AuthData.at_enc);
760 MifareAuthState = masError;
761
762 /* TOO SLOW( needs to have more strong filter. with this filter - aprox 4 mln tests
763 uint32_t t = msclock();
764 uint32_t t1 = t;
765 int n = 0;
766 for (uint32_t i = 0; i < 0xFFFFFFFF; i++) {
767 if (NTParityChk(&AuthData, i)){
768
769 uint32_t ks2 = AuthData.ar_enc ^ prng_successor(i, 64);
770 uint32_t ks3 = AuthData.at_enc ^ prng_successor(i, 96);
771 struct Crypto1State *pcs = lfsr_recovery64(ks2, ks3);
772
773
774
775
776 n++;
777
778 if (!(n % 100000)) {
779 printf("delta=%d n=%d ks2=%x ks3=%x \n", msclock() - t1 , n, ks2, ks3);
780 t1 = msclock();
781 }
782
783 }
784 }
785 printf("delta=%d n=%d\n", msclock() - t, n);
786 */
787 }
788 }
789
790
791
792 MifareAuthState = masData;
793 }
794
795 if (MifareAuthState == masData && traceCrypto1) {
796 memcpy(mfData, cmd, cmdsize);
797 mf_crypto1_decrypt(traceCrypto1, mfData, cmdsize, 0);
798 *mfDataLen = cmdsize;
799 }
800
801 return *mfDataLen > 0;
802 }
803
804
805 bool is_last_record(uint16_t tracepos, uint8_t *trace, uint16_t traceLen)
806 {
807 return(tracepos + sizeof(uint32_t) + sizeof(uint16_t) + sizeof(uint16_t) >= traceLen);
808 }
809
810
811 bool next_record_is_response(uint16_t tracepos, uint8_t *trace)
812 {
813 uint16_t next_records_datalen = *((uint16_t *)(trace + tracepos + sizeof(uint32_t) + sizeof(uint16_t)));
814
815 return(next_records_datalen & 0x8000);
816 }
817
818
819 bool merge_topaz_reader_frames(uint32_t timestamp, uint32_t *duration, uint16_t *tracepos, uint16_t traceLen, uint8_t *trace, uint8_t *frame, uint8_t *topaz_reader_command, uint16_t *data_len)
820 {
821
822 #define MAX_TOPAZ_READER_CMD_LEN 16
823
824 uint32_t last_timestamp = timestamp + *duration;
825
826 if ((*data_len != 1) || (frame[0] == TOPAZ_WUPA) || (frame[0] == TOPAZ_REQA)) return false;
827
828 memcpy(topaz_reader_command, frame, *data_len);
829
830 while (!is_last_record(*tracepos, trace, traceLen) && !next_record_is_response(*tracepos, trace)) {
831 uint32_t next_timestamp = *((uint32_t *)(trace + *tracepos));
832 *tracepos += sizeof(uint32_t);
833 uint16_t next_duration = *((uint16_t *)(trace + *tracepos));
834 *tracepos += sizeof(uint16_t);
835 uint16_t next_data_len = *((uint16_t *)(trace + *tracepos)) & 0x7FFF;
836 *tracepos += sizeof(uint16_t);
837 uint8_t *next_frame = (trace + *tracepos);
838 *tracepos += next_data_len;
839 if ((next_data_len == 1) && (*data_len + next_data_len <= MAX_TOPAZ_READER_CMD_LEN)) {
840 memcpy(topaz_reader_command + *data_len, next_frame, next_data_len);
841 *data_len += next_data_len;
842 last_timestamp = next_timestamp + next_duration;
843 } else {
844 // rewind and exit
845 *tracepos = *tracepos - next_data_len - sizeof(uint16_t) - sizeof(uint16_t) - sizeof(uint32_t);
846 break;
847 }
848 uint16_t next_parity_len = (next_data_len-1)/8 + 1;
849 *tracepos += next_parity_len;
850 }
851
852 *duration = last_timestamp - timestamp;
853
854 return true;
855 }
856
857
858 uint16_t printTraceLine(uint16_t tracepos, uint16_t traceLen, uint8_t *trace, uint8_t protocol, bool showWaitCycles, bool markCRCBytes)
859 {
860 bool isResponse;
861 uint16_t data_len, parity_len;
862 uint32_t duration;
863 uint8_t topaz_reader_command[9];
864 uint32_t timestamp, first_timestamp, EndOfTransmissionTimestamp;
865 char explanation[30] = {0};
866 uint8_t mfData[32] = {0};
867 size_t mfDataLen = 0;
868
869 if (tracepos + sizeof(uint32_t) + sizeof(uint16_t) + sizeof(uint16_t) > traceLen) return traceLen;
870
871 first_timestamp = *((uint32_t *)(trace));
872 timestamp = *((uint32_t *)(trace + tracepos));
873
874 tracepos += 4;
875 duration = *((uint16_t *)(trace + tracepos));
876 tracepos += 2;
877 data_len = *((uint16_t *)(trace + tracepos));
878 tracepos += 2;
879
880 if (data_len & 0x8000) {
881 data_len &= 0x7fff;
882 isResponse = true;
883 } else {
884 isResponse = false;
885 }
886 parity_len = (data_len-1)/8 + 1;
887
888 if (tracepos + data_len + parity_len > traceLen) {
889 return traceLen;
890 }
891 uint8_t *frame = trace + tracepos;
892 tracepos += data_len;
893 uint8_t *parityBytes = trace + tracepos;
894 tracepos += parity_len;
895
896 if (protocol == TOPAZ && !isResponse) {
897 // topaz reader commands come in 1 or 9 separate frames with 7 or 8 Bits each.
898 // merge them:
899 if (merge_topaz_reader_frames(timestamp, &duration, &tracepos, traceLen, trace, frame, topaz_reader_command, &data_len)) {
900 frame = topaz_reader_command;
901 }
902 }
903
904 // adjust for different time scales
905 if (protocol == ICLASS || protocol == ISO_15693) {
906 duration *= 32;
907 }
908
909 //Check the CRC status
910 uint8_t crcStatus = 2;
911
912 if (data_len > 2) {
913 switch (protocol) {
914 case ICLASS:
915 crcStatus = iclass_CRC_check(isResponse, frame, data_len);
916 break;
917 case ISO_14443B:
918 case TOPAZ:
919 crcStatus = iso14443B_CRC_check(isResponse, frame, data_len);
920 break;
921 case PROTO_MIFARE:
922 crcStatus = mifare_CRC_check(isResponse, frame, data_len);
923 break;
924 case ISO_14443A:
925 crcStatus = iso14443A_CRC_check(isResponse, frame, data_len);
926 break;
927 case ISO_14443_4:
928 crcStatus = iso14443_4_CRC_check(frame, data_len);
929 break;
930 case ISO_15693:
931 crcStatus = iso15693_CRC_check(frame, data_len);
932 break;
933 default:
934 break;
935 }
936 }
937 //0 CRC-command, CRC not ok
938 //1 CRC-command, CRC ok
939 //2 Not crc-command
940
941 //--- Draw the data column
942 char line[16][110];
943
944 for (int j = 0; j < data_len && j/16 < 16; j++) {
945 uint8_t parityBits = parityBytes[j>>3];
946 if (protocol != ISO_14443B
947 && protocol != ISO_15693
948 && protocol != ICLASS
949 && protocol != ISO_7816_4
950 && (isResponse || protocol == ISO_14443A)
951 && (oddparity8(frame[j]) != ((parityBits >> (7-(j&0x0007))) & 0x01))) {
952 snprintf(line[j/16]+(( j % 16) * 4), 110, " %02x!", frame[j]);
953 } else {
954 snprintf(line[j/16]+(( j % 16) * 4), 110, " %02x ", frame[j]);
955 }
956 }
957
958 if (markCRCBytes) {
959 if (crcStatus == 0 || crcStatus == 1) { //CRC-command
960 char *pos1 = line[(data_len-2)/16]+(((data_len-2) % 16) * 4);
961 (*pos1) = '[';
962 char *pos2 = line[(data_len)/16]+(((data_len) % 16) * 4);
963 sprintf(pos2, "%c", ']');
964 }
965 }
966
967 // mark short bytes (less than 8 Bit + Parity)
968 if (protocol == ISO_14443A || protocol == PROTO_MIFARE) {
969 if (duration < 128 * (9 * data_len)) {
970 line[(data_len-1)/16][((data_len-1)%16) * 4 + 3] = '\'';
971 }
972 }
973
974 if (data_len == 0) {
975 if (protocol == ICLASS && duration == 2048) {
976 sprintf(line[0], " <SOF>");
977 } else {
978 sprintf(line[0], " <empty trace - possible error>");
979 }
980 }
981
982 //--- Draw the CRC column
983 char *crc = (crcStatus == 0 ? "!crc" : (crcStatus == 1 ? " ok " : " "));
984
985 EndOfTransmissionTimestamp = timestamp + duration;
986
987 if (protocol == PROTO_MIFARE)
988 annotateMifare(explanation, sizeof(explanation), frame, data_len, parityBytes, parity_len, isResponse);
989
990 if (!isResponse) {
991 switch(protocol) {
992 case ICLASS: annotateIclass(explanation,sizeof(explanation),frame,data_len); break;
993 case ISO_14443A: annotateIso14443a(explanation,sizeof(explanation),frame,data_len); break;
994 case ISO_14443B: annotateIso14443b(explanation,sizeof(explanation),frame,data_len); break;
995 case TOPAZ: annotateTopaz(explanation,sizeof(explanation),frame,data_len); break;
996 case ISO_15693: annotateIso15693(explanation,sizeof(explanation),frame,data_len); break;
997 case ISO_7816_4: annotateIso7816(explanation, sizeof(explanation), frame, data_len); break;
998 case ISO_14443_4: annotateIso14443_4(explanation, sizeof(explanation), frame, data_len); break;
999 default: break;
1000 }
1001 }
1002
1003 int num_lines = MIN((data_len - 1)/16 + 1, 16);
1004 for (int j = 0; j < num_lines ; j++) {
1005 if (j == 0) {
1006 PrintAndLog(" %10" PRIu32 " | %10" PRIu32 " | %s |%-64s | %s| %s",
1007 (timestamp - first_timestamp),
1008 (EndOfTransmissionTimestamp - first_timestamp),
1009 (isResponse ? "Tag" : "Rdr"),
1010 line[j],
1011 (j == num_lines-1) ? crc : " ",
1012 (j == num_lines-1) ? explanation : "");
1013 } else {
1014 PrintAndLog(" | | |%-64s | %s| %s",
1015 line[j],
1016 (j == num_lines-1) ? crc : " ",
1017 (j == num_lines-1) ? explanation : "");
1018 }
1019 }
1020
1021 if (DecodeMifareData(frame, data_len, parityBytes, isResponse, mfData, &mfDataLen)) {
1022 memset(explanation, 0x00, sizeof(explanation));
1023 if (!isResponse) {
1024 explanation[0] = '>';
1025 annotateIso14443a(&explanation[1], sizeof(explanation) - 1, mfData, mfDataLen);
1026 }
1027 uint8_t crcc = iso14443A_CRC_check(isResponse, mfData, mfDataLen);
1028 PrintAndLog(" | * | dec |%-64s | %-4s| %s",
1029 sprint_hex(mfData, mfDataLen),
1030 (crcc == 0 ? "!crc" : (crcc == 1 ? " ok " : " ")),
1031 (true) ? explanation : "");
1032 };
1033
1034 if (is_last_record(tracepos, trace, traceLen)) return traceLen;
1035
1036 if (showWaitCycles && !isResponse && next_record_is_response(tracepos, trace)) {
1037 uint32_t next_timestamp = *((uint32_t *)(trace + tracepos));
1038
1039 PrintAndLog(" %10d | %10d | %s | fdt (Frame Delay Time): %d",
1040 (EndOfTransmissionTimestamp - first_timestamp),
1041 (next_timestamp - first_timestamp),
1042 " ",
1043 (next_timestamp - EndOfTransmissionTimestamp));
1044 }
1045
1046 return tracepos;
1047 }
1048
1049
1050 int CmdHFList(const char *Cmd)
1051 {
1052 bool showWaitCycles = false;
1053 bool markCRCBytes = false;
1054 bool loadFromFile = false;
1055 bool PCSCtrace = false;
1056 bool saveToFile = false;
1057 char param1 = '\0';
1058 char param2 = '\0';
1059 char param3 = '\0';
1060 char param4 = '\0';
1061 char type[40] = {0};
1062 char filename[FILE_PATH_SIZE] = {0};
1063 uint8_t protocol = 0;
1064
1065 // parse command line
1066 int tlen = param_getstr(Cmd, 0, type, sizeof(type));
1067 if (param_getlength(Cmd, 1) == 1) {
1068 param1 = param_getchar(Cmd, 1);
1069 } else {
1070 param_getstr(Cmd, 1, filename, sizeof(filename));
1071 }
1072 if (param_getlength(Cmd, 2) == 1) {
1073 param2 = param_getchar(Cmd, 2);
1074 } else if (strlen(filename) == 0) {
1075 param_getstr(Cmd, 2, filename, sizeof(filename));
1076 }
1077 if (param_getlength(Cmd, 3) == 1) {
1078 param3 = param_getchar(Cmd, 3);
1079 } else if (strlen(filename) == 0) {
1080 param_getstr(Cmd, 3, filename, sizeof(filename));
1081 }
1082 if (param_getlength(Cmd, 4) == 1) {
1083 param4 = param_getchar(Cmd, 4);
1084 } else if (strlen(filename) == 0) {
1085 param_getstr(Cmd, 4, filename, sizeof(filename));
1086 }
1087
1088 // Validate params
1089 bool errors = false;
1090
1091 if(tlen == 0) {
1092 errors = true;
1093 }
1094
1095 if(param1 == 'h'
1096 || (param1 != 0 && param1 != 'f' && param1 != 'c' && param1 != 'l' && param1 != 'p')
1097 || (param2 != 0 && param2 != 'f' && param2 != 'c' && param2 != 'l' && param1 != 'p')
1098 || (param3 != 0 && param3 != 'f' && param3 != 'c' && param3 != 'l' && param1 != 'p')
1099 || (param4 != 0 && param4 != 'f' && param4 != 'c' && param4 != 'l' && param4 != 'p')) {
1100 errors = true;
1101 }
1102
1103 if(!errors) {
1104 if (strcmp(type, "iclass") == 0) protocol = ICLASS;
1105 else if(strcmp(type, "14a") == 0) protocol = ISO_14443A;
1106 else if(strcmp(type, "mf") == 0) protocol = PROTO_MIFARE;
1107 else if(strcmp(type, "14b") == 0) protocol = ISO_14443B;
1108 else if(strcmp(type, "topaz") == 0) protocol = TOPAZ;
1109 else if(strcmp(type, "7816") == 0) protocol = ISO_7816_4;
1110 else if(strcmp(type, "14-4") == 0) protocol = ISO_14443_4;
1111 else if(strcmp(type, "15") == 0) protocol = ISO_15693;
1112 else if(strcmp(type, "raw") == 0) protocol = -1;//No crc, no annotations
1113 else if (strcmp(type, "save") == 0) saveToFile = true;
1114 else errors = true;
1115 }
1116
1117 if (param1 == 'f' || param2 == 'f' || param3 == 'f' || param4 == 'f') {
1118 showWaitCycles = true;
1119 }
1120
1121 if (param1 == 'c' || param2 == 'c' || param3 == 'c' || param4 == 'c') {
1122 markCRCBytes = true;
1123 }
1124
1125 if (param1 == 'l' || param2 == 'l' || param3 == 'l' || param4 == 'l') {
1126 loadFromFile = true;
1127 }
1128
1129 if (param1 == 'p' || param2 == 'p' || param3 == 'p' || param4 == 'p') {
1130 PCSCtrace = true;
1131 }
1132
1133 if ((loadFromFile || saveToFile) && strlen(filename) == 0) {
1134 errors = true;
1135 }
1136
1137 if (loadFromFile && saveToFile) {
1138 errors = true;
1139 }
1140
1141 if (errors) {
1142 PrintAndLog("List or save protocol data.");
1143 PrintAndLog("Usage: hf list <protocol> [f] [c] [p] [l <filename>]");
1144 PrintAndLog(" hf list save <filename>");
1145 PrintAndLog(" f - show frame delay times as well");
1146 PrintAndLog(" c - mark CRC bytes");
1147 PrintAndLog(" p - use trace buffer from PCSC card reader instead of PM3");
1148 PrintAndLog(" l - load data from file instead of trace buffer");
1149 PrintAndLog(" save - save data to file");
1150 PrintAndLog("Supported <protocol> values:");
1151 PrintAndLog(" raw - just show raw data without annotations");
1152 PrintAndLog(" 14a - interpret data as iso14443a communications");
1153 PrintAndLog(" mf - interpret data as iso14443a communications and decrypt crypto1 stream");
1154 PrintAndLog(" 14b - interpret data as iso14443b communications");
1155 PrintAndLog(" 15 - interpret data as iso15693 communications");
1156 PrintAndLog(" iclass - interpret data as iclass communications");
1157 PrintAndLog(" topaz - interpret data as topaz communications");
1158 PrintAndLog(" 7816 - interpret data as 7816-4 APDU communications");
1159 PrintAndLog(" 14-4 - interpret data as ISO14443-4 communications");
1160 PrintAndLog("");
1161 PrintAndLog("example: hf list 14a f");
1162 PrintAndLog("example: hf list iclass");
1163 PrintAndLog("example: hf list save myCardTrace.trc");
1164 PrintAndLog("example: hf list 14a l myCardTrace.trc");
1165 return 0;
1166 }
1167
1168
1169 uint8_t *trace;
1170 uint32_t tracepos = 0;
1171 uint32_t traceLen = 0;
1172
1173 if (loadFromFile) {
1174 #define TRACE_CHUNK_SIZE (1<<16) // 64K to start with. Will be enough for BigBuf and some room for future extensions
1175 FILE *tracefile = NULL;
1176 size_t bytes_read;
1177 trace = malloc(TRACE_CHUNK_SIZE);
1178 if (trace == NULL) {
1179 PrintAndLog("Cannot allocate memory for trace");
1180 return 2;
1181 }
1182 if ((tracefile = fopen(filename,"rb")) == NULL) {
1183 PrintAndLog("Could not open file %s", filename);
1184 free(trace);
1185 return 0;
1186 }
1187 while (!feof(tracefile)) {
1188 bytes_read = fread(trace+traceLen, 1, TRACE_CHUNK_SIZE, tracefile);
1189 traceLen += bytes_read;
1190 if (!feof(tracefile)) {
1191 uint8_t *p = realloc(trace, traceLen + TRACE_CHUNK_SIZE);
1192 if (p == NULL) {
1193 PrintAndLog("Cannot allocate memory for trace");
1194 free(trace);
1195 fclose(tracefile);
1196 return 2;
1197 }
1198 trace = p;
1199 }
1200 }
1201 fclose(tracefile);
1202 } else if (PCSCtrace) {
1203 trace = pcsc_get_trace_addr();
1204 traceLen = pcsc_get_traceLen();
1205 } else {
1206 trace = malloc(USB_CMD_DATA_SIZE);
1207 // Query for the size of the trace
1208 UsbCommand response;
1209 GetFromBigBuf(trace, USB_CMD_DATA_SIZE, 0, &response, -1, false);
1210 traceLen = response.arg[2];
1211 if (traceLen > USB_CMD_DATA_SIZE) {
1212 uint8_t *p = realloc(trace, traceLen);
1213 if (p == NULL) {
1214 PrintAndLog("Cannot allocate memory for trace");
1215 free(trace);
1216 return 2;
1217 }
1218 trace = p;
1219 GetFromBigBuf(trace, traceLen, 0, NULL, -1, false);
1220 }
1221 }
1222
1223 if (saveToFile) {
1224 FILE *tracefile = NULL;
1225 if ((tracefile = fopen(filename,"wb")) == NULL) {
1226 PrintAndLog("Could not create file %s", filename);
1227 return 1;
1228 }
1229 fwrite(trace, 1, traceLen, tracefile);
1230 PrintAndLog("Recorded Activity (TraceLen = %d bytes) written to file %s", traceLen, filename);
1231 fclose(tracefile);
1232 } else {
1233 PrintAndLog("Recorded Activity (TraceLen = %d bytes)", traceLen);
1234 PrintAndLog("");
1235 PrintAndLog("Start = Start of Start Bit, End = End of last modulation. Src = Source of Transfer");
1236 PrintAndLog("iso14443a - All times are in carrier periods (1/13.56Mhz)");
1237 PrintAndLog("iClass - Timings are not as accurate");
1238 PrintAndLog("");
1239 PrintAndLog(" Start | End | Src | Data (! denotes parity error, ' denotes short bytes) | CRC | Annotation |");
1240 PrintAndLog("------------|------------|-----|-----------------------------------------------------------------|-----|--------------------|");
1241
1242 ClearAuthData();
1243 while(tracepos < traceLen)
1244 {
1245 tracepos = printTraceLine(tracepos, traceLen, trace, protocol, showWaitCycles, markCRCBytes);
1246 }
1247 }
1248
1249 free(trace);
1250 return 0;
1251 }
1252
Impressum, Datenschutz