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 "../common/iso14443crc.h"
17 #include "proxmark3.h"
21 #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
)
147 uint8_t got
[TRACE_BUFFER_SIZE
];
148 GetFromBigBuf(got
,sizeof(got
),0);
149 WaitForResponse(CMD_ACK
,NULL
);
151 PrintAndLog("recorded activity:");
152 PrintAndLog(" time :rssi: who bytes");
153 PrintAndLog("---------+----+----+-----------");
160 if(i
>= TRACE_BUFFER_SIZE
) { break; }
163 int timestamp
= *((uint32_t *)(got
+i
));
164 if(timestamp
& 0x80000000) {
165 timestamp
&= 0x7fffffff;
170 int metric
= *((uint32_t *)(got
+i
+4));
177 if(i
+ len
>= TRACE_BUFFER_SIZE
) {
181 uint8_t *frame
= (got
+i
+9);
183 // Break and stick with current result if buffer was not completely full
184 if (frame
[0] == 0x44 && frame
[1] == 0x44 && frame
[2] == 0x44 && frame
[3] == 0x44) break;
186 char line
[1000] = "";
188 for(j
= 0; j
< len
; j
++) {
189 sprintf(line
+(j
*3), "%02x ", frame
[j
]);
195 ComputeCrc14443(CRC_14443_B
, frame
, len
-2, &b1
, &b2
);
196 if(b1
!= frame
[len
-2] || b2
!= frame
[len
-1]) {
197 crc
= "**FAIL CRC**";
205 char metricString
[100];
207 sprintf(metricString
, "%3d", metric
);
209 strcpy(metricString
, " ");
212 PrintAndLog(" +%7d: %s: %s %s %s",
213 (prev
< 0 ? 0 : timestamp
- prev
),
215 (isResponse
? "TAG" : " "), line
, crc
);
223 int CmdHF14BRead(const char *Cmd
)
225 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443
, {strtol(Cmd
, NULL
, 0), 0, 0}};
230 int CmdHF14Sim(const char *Cmd
)
232 UsbCommand c
={CMD_SIMULATE_TAG_ISO_14443
};
237 int CmdHFSimlisten(const char *Cmd
)
239 UsbCommand c
= {CMD_SIMULATE_TAG_HF_LISTEN
};
244 int CmdHF14BSnoop(const char *Cmd
)
246 UsbCommand c
= {CMD_SNOOP_ISO_14443
};
251 /* New command to read the contents of a SRI512 tag
252 * SRI512 tags are ISO14443-B modulated memory tags,
253 * this command just dumps the contents of the memory
255 int CmdSri512Read(const char *Cmd
)
257 UsbCommand c
= {CMD_READ_SRI512_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
262 /* New command to read the contents of a SRIX4K tag
263 * SRIX4K tags are ISO14443-B modulated memory tags,
264 * this command just dumps the contents of the memory/
266 int CmdSrix4kRead(const char *Cmd
)
268 UsbCommand c
= {CMD_READ_SRIX4K_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
273 int CmdHF14BCmdRaw (const char *cmd
) {
276 UsbCommand c
= {CMD_ISO_14443B_COMMAND
, {0, 0, 0}}; // len,recv?
283 unsigned int datalen
=0, temp
;
287 PrintAndLog("Usage: hf 14b raw [-r] [-c] [-p] <0A 0B 0C ... hex>");
288 PrintAndLog(" -r do not read response");
289 PrintAndLog(" -c calculate and append CRC");
290 PrintAndLog(" -p leave the field on after receive");
295 while (*cmd
==' ' || *cmd
=='\t') cmd
++;
297 while (cmd
[i
]!='\0') {
298 if (cmd
[i
]==' ' || cmd
[i
]=='\t') { i
++; continue; }
314 PrintAndLog("Invalid option");
320 if ((cmd
[i
]>='0' && cmd
[i
]<='9') ||
321 (cmd
[i
]>='a' && cmd
[i
]<='f') ||
322 (cmd
[i
]>='A' && cmd
[i
]<='F') ) {
323 buf
[strlen(buf
)+1]=0;
324 buf
[strlen(buf
)]=cmd
[i
];
327 if (strlen(buf
)>=2) {
328 sscanf(buf
,"%x",&temp
);
329 data
[datalen
]=(uint8_t)(temp
& 0xff);
335 PrintAndLog("Invalid char on input");
340 PrintAndLog("Missing data input");
345 uint8_t first
, second
;
346 ComputeCrc14443(CRC_14443_B
, data
, datalen
, &first
, &second
);
347 data
[datalen
++] = first
;
348 data
[datalen
++] = second
;
354 memcpy(c
.d
.asBytes
,data
,datalen
);
359 if (WaitForResponseTimeout(CMD_ACK
,&resp
,10000)) {
360 recv
= resp
.d
.asBytes
;
361 PrintAndLog("received %i octets",resp
.arg
[0]);
364 hexout
= (char *)malloc(resp
.arg
[0] * 3 + 1);
365 if (hexout
!= NULL
) {
366 uint8_t first
, second
;
367 for (int i
= 0; i
< resp
.arg
[0]; i
++) { // data in hex
368 sprintf(&hexout
[i
* 3], "%02X ", recv
[i
]);
370 PrintAndLog("%s", hexout
);
372 ComputeCrc14443(CRC_14443_B
, recv
, resp
.arg
[0]-2, &first
, &second
);
373 if(recv
[resp
.arg
[0]-2]==first
&& recv
[resp
.arg
[0]-1]==second
) {
374 PrintAndLog("CRC OK");
376 PrintAndLog("CRC failed");
379 PrintAndLog("malloc failed your client has low memory?");
382 PrintAndLog("timeout while waiting for reply.");
388 int CmdHF14BWrite( const char *Cmd
){
391 * For SRIX4K blocks 00 - 7F
392 * hf 14b raw -c -p 09 $srix4kwblock $srix4kwdata
394 * For SR512 blocks 00 - 0F
395 * hf 14b raw -c -p 09 $sr512wblock $sr512wdata
397 * Special block FF = otp_lock_reg block.
400 char cmdp
= param_getchar(Cmd
, 0);
401 uint8_t blockno
= -1;
402 uint8_t data
[4] = {0x00};
403 bool isSrix4k
= true;
406 if (cmdp
== 'h' || cmdp
== 'H') {
407 PrintAndLog("Usage: hf 14b write <1|2> <BLOCK> <DATA>");
409 PrintAndLog(" sample: hf 14b write 1 127 11223344");
410 PrintAndLog(" sample: hf 14b write 1 255 11223344");
411 PrintAndLog(" sample: hf 14b write 2 15 11223344");
412 PrintAndLog(" sample: hf 14b write 2 255 11223344");
416 if ( param_getchar(Cmd
, 0) == '2' )
419 blockno
= param_get8(Cmd
, 1);
422 if ( blockno
> 0x7f && blockno
!= 0xff ){
423 PrintAndLog("Block number out of range");
427 if ( blockno
> 0x0f && blockno
!= 0xff ){
428 PrintAndLog("Block number out of range");
433 if (param_gethex(Cmd
, 2, data
, 8)) {
434 PrintAndLog("Data must include 8 HEX symbols");
438 if ( blockno
== 0xff)
439 PrintAndLog("Writing to special block %02X [ %s]", blockno
, sprint_hex(data
,4) );
441 PrintAndLog("Writing to block %02X [ %s]", blockno
, sprint_hex(data
,4) );
443 sprintf(str
, "-c -p 09 %02x %02x%02x%02x%02x", blockno
, data
[0], data
[1], data
[2], data
[3]);
448 static command_t CommandTable
[] =
450 {"help", CmdHelp
, 1, "This help"},
451 {"demod", CmdHF14BDemod
, 1, "Demodulate ISO14443 Type B from tag"},
452 {"list", CmdHF14BList
, 0, "List ISO 14443 history"},
453 {"read", CmdHF14BRead
, 0, "Read HF tag (ISO 14443)"},
454 {"sim", CmdHF14Sim
, 0, "Fake ISO 14443 tag"},
455 {"simlisten", CmdHFSimlisten
, 0, "Get HF samples as fake tag"},
456 {"snoop", CmdHF14BSnoop
, 0, "Eavesdrop ISO 14443"},
457 {"sri512read", CmdSri512Read
, 0, "Read contents of a SRI512 tag"},
458 {"srix4kread", CmdSrix4kRead
, 0, "Read contents of a SRIX4K tag"},
459 {"raw", CmdHF14BCmdRaw
, 0, "Send raw hex data to tag"},
460 {"write", CmdHF14BWrite
, 0, "Write data to a SRI512 | SRIX4K tag"},
461 {NULL
, NULL
, 0, NULL
}
464 int CmdHF14B(const char *Cmd
)
466 CmdsParse(CommandTable
, Cmd
);
470 int CmdHelp(const char *Cmd
)
472 CmdsHelp(CommandTable
);