]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/iclass.c
fix 'hf iclass reader'
[proxmark3-svn] / armsrc / iclass.c
CommitLineData
cee5a30d 1//-----------------------------------------------------------------------------
2// Gerhard de Koning Gans - May 2008
3// Hagen Fritsch - June 2010
4// Gerhard de Koning Gans - May 2011
1e262141 5// Gerhard de Koning Gans - June 2012 - Added iClass card and reader emulation
cee5a30d 6//
7// This code is licensed to you under the terms of the GNU GPL, version 2 or,
8// at your option, any later version. See the LICENSE.txt file for the text of
9// the license.
10//-----------------------------------------------------------------------------
11// Routines to support iClass.
12//-----------------------------------------------------------------------------
13// Based on ISO14443a implementation. Still in experimental phase.
14// Contribution made during a security research at Radboud University Nijmegen
17505ce2 15//
cee5a30d 16// Please feel free to contribute and extend iClass support!!
17//-----------------------------------------------------------------------------
18//
cee5a30d 19// FIX:
20// ====
21// We still have sometimes a demodulation error when snooping iClass communication.
22// The resulting trace of a read-block-03 command may look something like this:
23//
17505ce2 24// + 22279: : 0c 03 e8 01
cee5a30d 25//
26// ...with an incorrect answer...
27//
28// + 85: 0: TAG ff! ff! ff! ff! ff! ff! ff! ff! bb 33 bb 00 01! 0e! 04! bb !crc
29//
30// We still left the error signalling bytes in the traces like 0xbb
31//
32// A correct trace should look like this:
33//
17505ce2 34// + 21112: : 0c 03 e8 01
35// + 85: 0: TAG ff ff ff ff ff ff ff ff ea f5
cee5a30d 36//
37//-----------------------------------------------------------------------------
38
17505ce2 39#include "iclass.h"
40
cee5a30d 41#include "proxmark3.h"
42#include "apps.h"
43#include "util.h"
44#include "string.h"
3d2c9c9b 45#include "printf.h"
7e67e42f 46#include "common.h"
fecd8202 47#include "cmd.h"
6e49717b 48#include "iso14443a.h"
3d2c9c9b 49#include "iso15693.h"
1e262141 50// Needed for CRC in emulation mode;
51// same construction as in ISO 14443;
52// different initial value (CRC_ICLASS)
53#include "iso14443crc.h"
c3963755 54#include "iso15693tools.h"
b67f7ec3 55#include "protocols.h"
10a8875c 56#include "optimized_cipher.h"
979c7655 57#include "usb_cdc.h" // for usb_poll_validate_length
fc52fbd4 58#include "fpgaloader.h"
10a8875c 59
8efd0b80 60// iCLASS has a slightly different timing compared to ISO15693. According to the picopass data sheet the tag response is expected 330us after
61// the reader command. This is measured from end of reader EOF to first modulation of the tag's SOF which starts with a 56,64us unmodulated period.
62// 330us = 140 ssp_clk cycles @ 423,75kHz when simulating.
63// 56,64us = 24 ssp_clk_cycles
c41dd5f9 64#define DELAY_ICLASS_VCD_TO_VICC_SIM (140 - 24)
65// times in ssp_clk_cycles @ 3,3625MHz when acting as reader
66#define DELAY_ICLASS_VICC_TO_VCD_READER DELAY_ISO15693_VICC_TO_VCD_READER
67// times in samples @ 212kHz when acting as reader
68#define ICLASS_READER_TIMEOUT_ACTALL 330 // 1558us, nominal 330us + 7slots*160us = 1450us
69#define ICLASS_READER_TIMEOUT_OTHERS 80 // 380us, nominal 330us
70
8efd0b80 71
cee5a30d 72//-----------------------------------------------------------------------------
73// The software UART that receives commands from the reader, and its state
74// variables.
75//-----------------------------------------------------------------------------
76static struct {
17505ce2 77 enum {
78 STATE_UNSYNCD,
79 STATE_START_OF_COMMUNICATION,
80 STATE_RECEIVING
81 } state;
82 uint16_t shiftReg;
83 int bitCnt;
84 int byteCnt;
85 int byteCntMax;
86 int posCnt;
87 int nOutOfCnt;
88 int OutOfCnt;
89 int syncBit;
90 int samples;
91 int highCnt;
92 int swapper;
93 int counter;
94 int bitBuffer;
95 int dropPosition;
96 uint8_t *output;
cee5a30d 97} Uart;
98
17505ce2 99static RAMFUNC int OutOfNDecoding(int bit) {
9f693930 100 //int error = 0;
cee5a30d 101 int bitright;
102
17505ce2 103 if (!Uart.bitBuffer) {
cee5a30d 104 Uart.bitBuffer = bit ^ 0xFF0;
44964fd1 105 return false;
17505ce2 106 } else {
cee5a30d 107 Uart.bitBuffer <<= 4;
108 Uart.bitBuffer ^= bit;
109 }
17505ce2 110
111 /*if (Uart.swapper) {
cee5a30d 112 Uart.output[Uart.byteCnt] = Uart.bitBuffer & 0xFF;
113 Uart.byteCnt++;
114 Uart.swapper = 0;
17505ce2 115 if (Uart.byteCnt > 15) { return true; }
cee5a30d 116 }
117 else {
118 Uart.swapper = 1;
119 }*/
120
17505ce2 121 if (Uart.state != STATE_UNSYNCD) {
cee5a30d 122 Uart.posCnt++;
123
17505ce2 124 if ((Uart.bitBuffer & Uart.syncBit) ^ Uart.syncBit) {
cee5a30d 125 bit = 0x00;
17505ce2 126 } else {
cee5a30d 127 bit = 0x01;
128 }
17505ce2 129 if (((Uart.bitBuffer << 1) & Uart.syncBit) ^ Uart.syncBit) {
cee5a30d 130 bitright = 0x00;
17505ce2 131 } else {
cee5a30d 132 bitright = 0x01;
133 }
17505ce2 134 if (bit != bitright) {
135 bit = bitright;
136 }
137
cee5a30d 138
cee5a30d 139 // So, now we only have to deal with *bit*, lets see...
17505ce2 140 if (Uart.posCnt == 1) {
cee5a30d 141 // measurement first half bitperiod
17505ce2 142 if (!bit) {
cee5a30d 143 // Drop in first half means that we are either seeing
144 // an SOF or an EOF.
145
17505ce2 146 if (Uart.nOutOfCnt == 1) {
cee5a30d 147 // End of Communication
148 Uart.state = STATE_UNSYNCD;
149 Uart.highCnt = 0;
17505ce2 150 if (Uart.byteCnt == 0) {
cee5a30d 151 // Its not straightforward to show single EOFs
44964fd1 152 // So just leave it and do not return true
6a1f2d82 153 Uart.output[0] = 0xf0;
cee5a30d 154 Uart.byteCnt++;
17505ce2 155 } else {
44964fd1 156 return true;
cee5a30d 157 }
17505ce2 158 } else if (Uart.state != STATE_START_OF_COMMUNICATION) {
cee5a30d 159 // When not part of SOF or EOF, it is an error
160 Uart.state = STATE_UNSYNCD;
161 Uart.highCnt = 0;
9f693930 162 //error = 4;
cee5a30d 163 }
164 }
17505ce2 165 } else {
cee5a30d 166 // measurement second half bitperiod
167 // Count the bitslot we are in... (ISO 15693)
168 Uart.nOutOfCnt++;
17505ce2 169
170 if (!bit) {
171 if (Uart.dropPosition) {
172 if (Uart.state == STATE_START_OF_COMMUNICATION) {
9f693930 173 //error = 1;
17505ce2 174 } else {
9f693930 175 //error = 7;
cee5a30d 176 }
177 // It is an error if we already have seen a drop in current frame
178 Uart.state = STATE_UNSYNCD;
179 Uart.highCnt = 0;
17505ce2 180 } else {
cee5a30d 181 Uart.dropPosition = Uart.nOutOfCnt;
182 }
183 }
184
185 Uart.posCnt = 0;
186
17505ce2 187
188 if (Uart.nOutOfCnt == Uart.OutOfCnt && Uart.OutOfCnt == 4) {
cee5a30d 189 Uart.nOutOfCnt = 0;
17505ce2 190
191 if (Uart.state == STATE_START_OF_COMMUNICATION) {
192 if (Uart.dropPosition == 4) {
cee5a30d 193 Uart.state = STATE_RECEIVING;
194 Uart.OutOfCnt = 256;
17505ce2 195 } else if (Uart.dropPosition == 3) {
cee5a30d 196 Uart.state = STATE_RECEIVING;
197 Uart.OutOfCnt = 4;
198 //Uart.output[Uart.byteCnt] = 0xdd;
199 //Uart.byteCnt++;
17505ce2 200 } else {
cee5a30d 201 Uart.state = STATE_UNSYNCD;
202 Uart.highCnt = 0;
203 }
204 Uart.dropPosition = 0;
17505ce2 205 } else {
cee5a30d 206 // RECEIVING DATA
207 // 1 out of 4
17505ce2 208 if (!Uart.dropPosition) {
cee5a30d 209 Uart.state = STATE_UNSYNCD;
210 Uart.highCnt = 0;
9f693930 211 //error = 9;
17505ce2 212 } else {
cee5a30d 213 Uart.shiftReg >>= 2;
17505ce2 214
cee5a30d 215 // Swap bit order
216 Uart.dropPosition--;
17505ce2 217 //if (Uart.dropPosition == 1) { Uart.dropPosition = 2; }
218 //else if (Uart.dropPosition == 2) { Uart.dropPosition = 1; }
219
cee5a30d 220 Uart.shiftReg ^= ((Uart.dropPosition & 0x03) << 6);
221 Uart.bitCnt += 2;
222 Uart.dropPosition = 0;
223
17505ce2 224 if (Uart.bitCnt == 8) {
cee5a30d 225 Uart.output[Uart.byteCnt] = (Uart.shiftReg & 0xff);
226 Uart.byteCnt++;
cee5a30d 227 Uart.bitCnt = 0;
228 Uart.shiftReg = 0;
229 }
230 }
231 }
17505ce2 232 } else if (Uart.nOutOfCnt == Uart.OutOfCnt) {
cee5a30d 233 // RECEIVING DATA
234 // 1 out of 256
17505ce2 235 if (!Uart.dropPosition) {
cee5a30d 236 Uart.state = STATE_UNSYNCD;
237 Uart.highCnt = 0;
9f693930 238 //error = 3;
17505ce2 239 } else {
cee5a30d 240 Uart.dropPosition--;
241 Uart.output[Uart.byteCnt] = (Uart.dropPosition & 0xff);
242 Uart.byteCnt++;
cee5a30d 243 Uart.bitCnt = 0;
244 Uart.shiftReg = 0;
245 Uart.nOutOfCnt = 0;
246 Uart.dropPosition = 0;
247 }
248 }
249
17505ce2 250 /*if (error) {
cee5a30d 251 Uart.output[Uart.byteCnt] = 0xAA;
252 Uart.byteCnt++;
253 Uart.output[Uart.byteCnt] = error & 0xFF;
254 Uart.byteCnt++;
255 Uart.output[Uart.byteCnt] = 0xAA;
256 Uart.byteCnt++;
257 Uart.output[Uart.byteCnt] = (Uart.bitBuffer >> 8) & 0xFF;
258 Uart.byteCnt++;
259 Uart.output[Uart.byteCnt] = Uart.bitBuffer & 0xFF;
260 Uart.byteCnt++;
261 Uart.output[Uart.byteCnt] = (Uart.syncBit >> 3) & 0xFF;
262 Uart.byteCnt++;
263 Uart.output[Uart.byteCnt] = 0xAA;
264 Uart.byteCnt++;
44964fd1 265 return true;
cee5a30d 266 }*/
267 }
268
17505ce2 269 } else {
cee5a30d 270 bit = Uart.bitBuffer & 0xf0;
271 bit >>= 4;
272 bit ^= 0x0F; // drops become 1s ;-)
17505ce2 273 if (bit) {
cee5a30d 274 // should have been high or at least (4 * 128) / fc
275 // according to ISO this should be at least (9 * 128 + 20) / fc
17505ce2 276 if (Uart.highCnt == 8) {
cee5a30d 277 // we went low, so this could be start of communication
278 // it turns out to be safer to choose a less significant
279 // syncbit... so we check whether the neighbour also represents the drop
280 Uart.posCnt = 1; // apparently we are busy with our first half bit period
281 Uart.syncBit = bit & 8;
282 Uart.samples = 3;
17505ce2 283 if (!Uart.syncBit) { Uart.syncBit = bit & 4; Uart.samples = 2; }
284 else if (bit & 4) { Uart.syncBit = bit & 4; Uart.samples = 2; bit <<= 2; }
285 if (!Uart.syncBit) { Uart.syncBit = bit & 2; Uart.samples = 1; }
286 else if (bit & 2) { Uart.syncBit = bit & 2; Uart.samples = 1; bit <<= 1; }
287 if (!Uart.syncBit) { Uart.syncBit = bit & 1; Uart.samples = 0;
288 if (Uart.syncBit && (Uart.bitBuffer & 8)) {
cee5a30d 289 Uart.syncBit = 8;
290
291 // the first half bit period is expected in next sample
292 Uart.posCnt = 0;
293 Uart.samples = 3;
294 }
17505ce2 295 } else if (bit & 1) { Uart.syncBit = bit & 1; Uart.samples = 0; }
cee5a30d 296
297 Uart.syncBit <<= 4;
298 Uart.state = STATE_START_OF_COMMUNICATION;
299 Uart.bitCnt = 0;
300 Uart.byteCnt = 0;
cee5a30d 301 Uart.nOutOfCnt = 0;
302 Uart.OutOfCnt = 4; // Start at 1/4, could switch to 1/256
303 Uart.dropPosition = 0;
304 Uart.shiftReg = 0;
9f693930 305 //error = 0;
17505ce2 306 } else {
cee5a30d 307 Uart.highCnt = 0;
308 }
17505ce2 309 } else if (Uart.highCnt < 8) {
310 Uart.highCnt++;
cee5a30d 311 }
312 }
313
17505ce2 314 return false;
cee5a30d 315}
316
17505ce2 317
cee5a30d 318//=============================================================================
1e262141 319// Manchester
cee5a30d 320//=============================================================================
321
322static struct {
17505ce2 323 enum {
324 DEMOD_UNSYNCD,
cee5a30d 325 DEMOD_START_OF_COMMUNICATION,
326 DEMOD_START_OF_COMMUNICATION2,
327 DEMOD_START_OF_COMMUNICATION3,
328 DEMOD_SOF_COMPLETE,
329 DEMOD_MANCHESTER_D,
330 DEMOD_MANCHESTER_E,
331 DEMOD_END_OF_COMMUNICATION,
332 DEMOD_END_OF_COMMUNICATION2,
333 DEMOD_MANCHESTER_F,
17505ce2 334 DEMOD_ERROR_WAIT
335 } state;
336 int bitCount;
337 int posCount;
338 int syncBit;
339 uint16_t shiftReg;
340 int buffer;
341 int buffer2;
342 int buffer3;
343 int buff;
344 int samples;
345 int len;
cee5a30d 346 enum {
347 SUB_NONE,
348 SUB_FIRST_HALF,
349 SUB_SECOND_HALF,
350 SUB_BOTH
17505ce2 351 } sub;
352 uint8_t *output;
cee5a30d 353} Demod;
354
17505ce2 355static RAMFUNC int ManchesterDecoding(int v) {
cee5a30d 356 int bit;
357 int modulation;
358 int error = 0;
359
360 bit = Demod.buffer;
361 Demod.buffer = Demod.buffer2;
362 Demod.buffer2 = Demod.buffer3;
363 Demod.buffer3 = v;
364
17505ce2 365 if (Demod.buff < 3) {
cee5a30d 366 Demod.buff++;
44964fd1 367 return false;
cee5a30d 368 }
369
17505ce2 370 if (Demod.state==DEMOD_UNSYNCD) {
cee5a30d 371 Demod.output[Demod.len] = 0xfa;
372 Demod.syncBit = 0;
373 //Demod.samples = 0;
17505ce2 374 Demod.posCount = 1; // This is the first half bit period, so after syncing handle the second part
cee5a30d 375
17505ce2 376 if (bit & 0x08) {
cee5a30d 377 Demod.syncBit = 0x08;
378 }
379
17505ce2 380 if (bit & 0x04) {
381 if (Demod.syncBit) {
cee5a30d 382 bit <<= 4;
383 }
384 Demod.syncBit = 0x04;
385 }
386
17505ce2 387 if (bit & 0x02) {
388 if (Demod.syncBit) {
cee5a30d 389 bit <<= 2;
390 }
391 Demod.syncBit = 0x02;
392 }
393
17505ce2 394 if (bit & 0x01 && Demod.syncBit) {
cee5a30d 395 Demod.syncBit = 0x01;
396 }
17505ce2 397
398 if (Demod.syncBit) {
cee5a30d 399 Demod.len = 0;
400 Demod.state = DEMOD_START_OF_COMMUNICATION;
401 Demod.sub = SUB_FIRST_HALF;
402 Demod.bitCount = 0;
403 Demod.shiftReg = 0;
cee5a30d 404 Demod.samples = 0;
17505ce2 405 if (Demod.posCount) {
0ab9002f 406 switch (Demod.syncBit) {
cee5a30d 407 case 0x08: Demod.samples = 3; break;
408 case 0x04: Demod.samples = 2; break;
409 case 0x02: Demod.samples = 1; break;
410 case 0x01: Demod.samples = 0; break;
411 }
412 // SOF must be long burst... otherwise stay unsynced!!!
17505ce2 413 if (!(Demod.buffer & Demod.syncBit) || !(Demod.buffer2 & Demod.syncBit)) {
cee5a30d 414 Demod.state = DEMOD_UNSYNCD;
415 }
17505ce2 416 } else {
cee5a30d 417 // SOF must be long burst... otherwise stay unsynced!!!
17505ce2 418 if (!(Demod.buffer2 & Demod.syncBit) || !(Demod.buffer3 & Demod.syncBit)) {
cee5a30d 419 Demod.state = DEMOD_UNSYNCD;
420 error = 0x88;
421 }
422
423 }
424 error = 0;
425
426 }
17505ce2 427 } else {
0ab9002f 428 // state is DEMOD is in SYNC from here on.
cee5a30d 429 modulation = bit & Demod.syncBit;
430 modulation |= ((bit << 1) ^ ((Demod.buffer & 0x08) >> 3)) & Demod.syncBit;
cee5a30d 431
432 Demod.samples += 4;
433
0ab9002f 434 if (Demod.posCount == 0) {
cee5a30d 435 Demod.posCount = 1;
17505ce2 436 if (modulation) {
cee5a30d 437 Demod.sub = SUB_FIRST_HALF;
17505ce2 438 } else {
cee5a30d 439 Demod.sub = SUB_NONE;
440 }
17505ce2 441 } else {
cee5a30d 442 Demod.posCount = 0;
17505ce2 443 if (modulation) {
444 if (Demod.sub == SUB_FIRST_HALF) {
cee5a30d 445 Demod.sub = SUB_BOTH;
17505ce2 446 } else {
cee5a30d 447 Demod.sub = SUB_SECOND_HALF;
448 }
17505ce2 449 } else if (Demod.sub == SUB_NONE) {
450 if (Demod.state == DEMOD_SOF_COMPLETE) {
cee5a30d 451 Demod.output[Demod.len] = 0x0f;
452 Demod.len++;
cee5a30d 453 Demod.state = DEMOD_UNSYNCD;
44964fd1 454 return true;
17505ce2 455 } else {
cee5a30d 456 Demod.state = DEMOD_ERROR_WAIT;
457 error = 0x33;
458 }
cee5a30d 459 }
460
461 switch(Demod.state) {
462 case DEMOD_START_OF_COMMUNICATION:
17505ce2 463 if (Demod.sub == SUB_BOTH) {
cee5a30d 464 Demod.state = DEMOD_START_OF_COMMUNICATION2;
465 Demod.posCount = 1;
466 Demod.sub = SUB_NONE;
17505ce2 467 } else {
cee5a30d 468 Demod.output[Demod.len] = 0xab;
469 Demod.state = DEMOD_ERROR_WAIT;
470 error = 0xd2;
471 }
472 break;
473 case DEMOD_START_OF_COMMUNICATION2:
17505ce2 474 if (Demod.sub == SUB_SECOND_HALF) {
cee5a30d 475 Demod.state = DEMOD_START_OF_COMMUNICATION3;
17505ce2 476 } else {
cee5a30d 477 Demod.output[Demod.len] = 0xab;
478 Demod.state = DEMOD_ERROR_WAIT;
479 error = 0xd3;
480 }
481 break;
482 case DEMOD_START_OF_COMMUNICATION3:
17505ce2 483 if (Demod.sub == SUB_SECOND_HALF) {
cee5a30d 484 Demod.state = DEMOD_SOF_COMPLETE;
17505ce2 485 } else {
cee5a30d 486 Demod.output[Demod.len] = 0xab;
487 Demod.state = DEMOD_ERROR_WAIT;
488 error = 0xd4;
489 }
490 break;
491 case DEMOD_SOF_COMPLETE:
492 case DEMOD_MANCHESTER_D:
493 case DEMOD_MANCHESTER_E:
494 // OPPOSITE FROM ISO14443 - 11110000 = 0 (1 in 14443)
495 // 00001111 = 1 (0 in 14443)
17505ce2 496 if (Demod.sub == SUB_SECOND_HALF) { // SUB_FIRST_HALF
cee5a30d 497 Demod.bitCount++;
498 Demod.shiftReg = (Demod.shiftReg >> 1) ^ 0x100;
499 Demod.state = DEMOD_MANCHESTER_D;
17505ce2 500 } else if (Demod.sub == SUB_FIRST_HALF) { // SUB_SECOND_HALF
cee5a30d 501 Demod.bitCount++;
502 Demod.shiftReg >>= 1;
503 Demod.state = DEMOD_MANCHESTER_E;
17505ce2 504 } else if (Demod.sub == SUB_BOTH) {
cee5a30d 505 Demod.state = DEMOD_MANCHESTER_F;
17505ce2 506 } else {
cee5a30d 507 Demod.state = DEMOD_ERROR_WAIT;
508 error = 0x55;
509 }
510 break;
511
512 case DEMOD_MANCHESTER_F:
513 // Tag response does not need to be a complete byte!
17505ce2 514 if (Demod.len > 0 || Demod.bitCount > 0) {
515 if (Demod.bitCount > 1) { // was > 0, do not interpret last closing bit, is part of EOF
516 Demod.shiftReg >>= (9 - Demod.bitCount); // right align data
cee5a30d 517 Demod.output[Demod.len] = Demod.shiftReg & 0xff;
518 Demod.len++;
cee5a30d 519 }
520
521 Demod.state = DEMOD_UNSYNCD;
44964fd1 522 return true;
17505ce2 523 } else {
cee5a30d 524 Demod.output[Demod.len] = 0xad;
525 Demod.state = DEMOD_ERROR_WAIT;
526 error = 0x03;
527 }
528 break;
529
530 case DEMOD_ERROR_WAIT:
531 Demod.state = DEMOD_UNSYNCD;
532 break;
533
534 default:
535 Demod.output[Demod.len] = 0xdd;
536 Demod.state = DEMOD_UNSYNCD;
537 break;
538 }
539
17505ce2 540 if (Demod.bitCount >= 8) {
cee5a30d 541 Demod.shiftReg >>= 1;
542 Demod.output[Demod.len] = (Demod.shiftReg & 0xff);
543 Demod.len++;
cee5a30d 544 Demod.bitCount = 0;
545 Demod.shiftReg = 0;
546 }
547
17505ce2 548 if (error) {
cee5a30d 549 Demod.output[Demod.len] = 0xBB;
550 Demod.len++;
551 Demod.output[Demod.len] = error & 0xFF;
552 Demod.len++;
553 Demod.output[Demod.len] = 0xBB;
554 Demod.len++;
555 Demod.output[Demod.len] = bit & 0xFF;
556 Demod.len++;
557 Demod.output[Demod.len] = Demod.buffer & 0xFF;
558 Demod.len++;
559 // Look harder ;-)
560 Demod.output[Demod.len] = Demod.buffer2 & 0xFF;
561 Demod.len++;
562 Demod.output[Demod.len] = Demod.syncBit & 0xFF;
563 Demod.len++;
564 Demod.output[Demod.len] = 0xBB;
565 Demod.len++;
44964fd1 566 return true;
cee5a30d 567 }
568
569 }
570
571 } // end (state != UNSYNCED)
572
17505ce2 573 return false;
cee5a30d 574}
575
576//=============================================================================
1e262141 577// Finally, a `sniffer' for iClass communication
cee5a30d 578// Both sides of communication!
579//=============================================================================
580
581//-----------------------------------------------------------------------------
582// Record the sequence of commands sent by the reader to the tag, with
583// triggering so that we start recording at the point that the tag is moved
584// near the reader.
585//-----------------------------------------------------------------------------
17505ce2 586void RAMFUNC SnoopIClass(void) {
cee5a30d 587
17505ce2 588 // We won't start recording the frames that we acquire until we trigger;
589 // a good trigger condition to get started is probably when we see a
590 // response from the tag.
591 //int triggered = false; // false to wait first for card
cee5a30d 592
17505ce2 593 // The command (reader -> tag) that we're receiving.
cee5a30d 594 // The length of a received command will in most cases be no more than 18 bytes.
595 // So 32 should be enough!
f71f4deb 596 #define ICLASS_BUFFER_SIZE 32
597 uint8_t readerToTagCmd[ICLASS_BUFFER_SIZE];
17505ce2 598 // The response (tag -> reader) that we're receiving.
f71f4deb 599 uint8_t tagToReaderResponse[ICLASS_BUFFER_SIZE];
17505ce2 600
601 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
602
603 // free all BigBuf memory
f71f4deb 604 BigBuf_free();
17505ce2 605 // The DMA buffer, used to stream samples from the FPGA
606 uint8_t *dmaBuf = BigBuf_malloc(DMA_BUFFER_SIZE);
607
44964fd1 608 set_tracing(true);
3000dc4e 609 clear_trace();
17505ce2 610 iso14a_set_trigger(false);
cee5a30d 611
f71f4deb 612 int lastRxCounter;
17505ce2 613 uint8_t *upTo;
614 int smpl;
615 int maxBehindBy = 0;
cee5a30d 616
17505ce2 617 // Count of samples received so far, so that we can include timing
618 // information in the trace buffer.
619 int samples = 0;
620 rsamples = 0;
cee5a30d 621
17505ce2 622 // Set up the demodulator for tag -> reader responses.
17cba269 623 Demod.output = tagToReaderResponse;
17505ce2 624 Demod.len = 0;
625 Demod.state = DEMOD_UNSYNCD;
cee5a30d 626
17505ce2 627 // Setup for the DMA.
628 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_ISO14443A);
629 upTo = dmaBuf;
630 lastRxCounter = DMA_BUFFER_SIZE;
631 FpgaSetupSscDma((uint8_t *)dmaBuf, DMA_BUFFER_SIZE);
cee5a30d 632
17505ce2 633 // And the reader -> tag commands
634 memset(&Uart, 0, sizeof(Uart));
17cba269 635 Uart.output = readerToTagCmd;
17505ce2 636 Uart.byteCntMax = 32; // was 100 (greg)////////////////////////////////////////////////////////////////////////
637 Uart.state = STATE_UNSYNCD;
cee5a30d 638
17505ce2 639 // And put the FPGA in the appropriate mode
640 // Signal field is off with the appropriate LED
641 LED_D_OFF();
642 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_SNIFFER);
643 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
cee5a30d 644
81012e67 645 uint32_t time_0 = GetCountSspClk();
55eaed8f
MHS
646 uint32_t time_start = 0;
647 uint32_t time_stop = 0;
81012e67 648
17505ce2 649 int div = 0;
650 //int div2 = 0;
651 int decbyte = 0;
652 int decbyter = 0;
cee5a30d 653
17505ce2 654 // And now we loop, receiving samples.
655 for (;;) {
656 LED_A_ON();
657 WDT_HIT();
658 int behindBy = (lastRxCounter - AT91C_BASE_PDC_SSC->PDC_RCR) & (DMA_BUFFER_SIZE-1);
659 if (behindBy > maxBehindBy) {
660 maxBehindBy = behindBy;
661 if (behindBy > (9 * DMA_BUFFER_SIZE / 10)) {
662 Dbprintf("blew circular buffer! behindBy=0x%x", behindBy);
663 goto done;
664 }
cee5a30d 665 }
17505ce2 666 if (behindBy < 1) continue;
cee5a30d 667
17505ce2 668 LED_A_OFF();
669 smpl = upTo[0];
670 upTo++;
671 lastRxCounter -= 1;
672 if (upTo - dmaBuf > DMA_BUFFER_SIZE) {
673 upTo -= DMA_BUFFER_SIZE;
674 lastRxCounter += DMA_BUFFER_SIZE;
675 AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t) upTo;
676 AT91C_BASE_PDC_SSC->PDC_RNCR = DMA_BUFFER_SIZE;
677 }
678
679 //samples += 4;
680 samples += 1;
681
682 if (smpl & 0xF) {
683 decbyte ^= (1 << (3 - div));
684 }
685
686 // FOR READER SIDE COMMUMICATION...
687
688 decbyter <<= 2;
689 decbyter ^= (smpl & 0x30);
690
691 div++;
692
693 if ((div + 1) % 2 == 0) {
694 smpl = decbyter;
695 if (OutOfNDecoding((smpl & 0xF0) >> 4)) {
696 rsamples = samples - Uart.samples;
697 time_stop = (GetCountSspClk()-time_0) << 4;
698 LED_C_ON();
699
700 //if (!LogTrace(Uart.output, Uart.byteCnt, rsamples, Uart.parityBits,true)) break;
701 //if (!LogTrace(NULL, 0, Uart.endTime*16 - DELAY_READER_AIR2ARM_AS_SNIFFER, 0, true)) break;
702 uint8_t parity[MAX_PARITY_SIZE];
703 GetParity(Uart.output, Uart.byteCnt, parity);
c41dd5f9 704 LogTrace_ISO15693(Uart.output, Uart.byteCnt, time_start*32, time_stop*32, parity, true);
17505ce2 705
706 /* And ready to receive another command. */
707 Uart.state = STATE_UNSYNCD;
708 /* And also reset the demod code, which might have been */
709 /* false-triggered by the commands from the reader. */
710 Demod.state = DEMOD_UNSYNCD;
711 LED_B_OFF();
712 Uart.byteCnt = 0;
713 } else {
714 time_start = (GetCountSspClk()-time_0) << 4;
715 }
716 decbyter = 0;
717 }
718
719 if (div > 3) {
720 smpl = decbyte;
721 if (ManchesterDecoding(smpl & 0x0F)) {
722 time_stop = (GetCountSspClk()-time_0) << 4;
723
724 rsamples = samples - Demod.samples;
725 LED_B_ON();
726
727 uint8_t parity[MAX_PARITY_SIZE];
728 GetParity(Demod.output, Demod.len, parity);
c41dd5f9 729 LogTrace_ISO15693(Demod.output, Demod.len, time_start*32, time_stop*32, parity, false);
17505ce2 730
731 // And ready to receive another response.
732 memset(&Demod, 0, sizeof(Demod));
733 Demod.output = tagToReaderResponse;
734 Demod.state = DEMOD_UNSYNCD;
735 LED_C_OFF();
736 } else {
737 time_start = (GetCountSspClk()-time_0) << 4;
738 }
739
740 div = 0;
741 decbyte = 0x00;
cee5a30d 742 }
cee5a30d 743
17505ce2 744 if (BUTTON_PRESS()) {
745 DbpString("cancelled_a");
746 goto done;
747 }
748 }
cee5a30d 749
17505ce2 750 DbpString("COMMAND FINISHED");
cee5a30d 751
17505ce2 752 Dbprintf("%x %x %x", maxBehindBy, Uart.state, Uart.byteCnt);
3000dc4e 753 Dbprintf("%x %x %x", Uart.byteCntMax, BigBuf_get_traceLen(), (int)Uart.output[0]);
cee5a30d 754
755done:
17505ce2 756 AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTDIS;
757 Dbprintf("%x %x %x", maxBehindBy, Uart.state, Uart.byteCnt);
3000dc4e 758 Dbprintf("%x %x %x", Uart.byteCntMax, BigBuf_get_traceLen(), (int)Uart.output[0]);
17505ce2 759 LEDsoff();
1e262141 760}
761
912a3e94 762void rotateCSN(uint8_t* originalCSN, uint8_t* rotatedCSN) {
17505ce2 763 int i;
764 for (i = 0; i < 8; i++) {
912a3e94 765 rotatedCSN[i] = (originalCSN[i] >> 3) | (originalCSN[(i+1)%8] << 5);
1e262141 766 }
767}
768
3d2c9c9b 769// Encode SOF only
17505ce2 770static void CodeIClassTagSOF() {
81012e67 771 ToSendReset();
645c960f 772 ToSend[++ToSendMax] = 0x1D;
1e262141 773 ToSendMax++;
774}
1e262141 775
17505ce2 776static void AppendCrc(uint8_t *data, int len) {
777 ComputeCrc14443(CRC_ICLASS, data, len, data+len, data+len+1);
778}
81cd0474 779
b67f7ec3 780
ff7bb4ef
MHS
781/**
782 * @brief Does the actual simulation
ff7bb4ef 783 */
17505ce2 784int doIClassSimulation(int simulationMode, uint8_t *reader_mac_buf) {
0ab9002f 785
b67f7ec3
MHS
786 // free eventually allocated BigBuf memory
787 BigBuf_free_keep_EM();
55eaed8f 788
ae60ceca 789 uint16_t page_size = 32 * 8;
790 uint8_t current_page = 0;
0ab9002f 791
ae60ceca 792 // maintain cipher states for both credit and debit key for each page
793 State cipher_state_KC[8];
794 State cipher_state_KD[8];
795 State *cipher_state = &cipher_state_KD[0];
8efd0b80 796
0ab9002f 797 uint8_t *emulator = BigBuf_get_EM_addr();
798 uint8_t *csn = emulator;
0ab9002f 799
1e262141 800 // CSN followed by two CRC bytes
ae60ceca 801 uint8_t anticoll_data[10];
802 uint8_t csn_data[10];
17505ce2 803 memcpy(csn_data, csn, sizeof(csn_data));
804 Dbprintf("Simulating CSN %02x%02x%02x%02x%02x%02x%02x%02x", csn[0], csn[1], csn[2], csn[3], csn[4], csn[5], csn[6], csn[7]);
1e262141 805
1e262141 806 // Construct anticollision-CSN
17505ce2 807 rotateCSN(csn_data, anticoll_data);
1e262141 808
809 // Compute CRC on both CSNs
0ab9002f 810 AppendCrc(anticoll_data, 8);
811 AppendCrc(csn_data, 8);
b67f7ec3 812
8efd0b80 813 uint8_t diversified_key_d[8] = { 0x00 };
814 uint8_t diversified_key_c[8] = { 0x00 };
ae60ceca 815 uint8_t *diversified_key = diversified_key_d;
8efd0b80 816
ae60ceca 817 // configuration block
818 uint8_t conf_block[10] = {0x12, 0xFF, 0xFF, 0xFF, 0x7F, 0x1F, 0xFF, 0x3C, 0x00, 0x00};
ae60ceca 819
b67f7ec3 820 // e-Purse
0ab9002f 821 uint8_t card_challenge_data[8] = { 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
ae60ceca 822
0ab9002f 823 if (simulationMode == ICLASS_SIM_MODE_FULL) {
ae60ceca 824 // initialize from page 0
825 memcpy(conf_block, emulator + 8 * 1, 8);
826 memcpy(card_challenge_data, emulator + 8 * 2, 8); // e-purse
827 memcpy(diversified_key_d, emulator + 8 * 3, 8); // Kd
828 memcpy(diversified_key_c, emulator + 8 * 4, 8); // Kc
b67f7ec3 829 }
ae60ceca 830
8efd0b80 831 AppendCrc(conf_block, 8);
832
0ab9002f 833 // save card challenge for sim2,4 attack
834 if (reader_mac_buf != NULL) {
835 memcpy(reader_mac_buf, card_challenge_data, 8);
836 }
1e262141 837
ae60ceca 838 if (conf_block[5] & 0x80) {
839 page_size = 256 * 8;
840 }
841
842 // From PicoPass DS:
843 // When the page is in personalization mode this bit is equal to 1.
844 // Once the application issuer has personalized and coded its dedicated areas, this bit must be set to 0:
845 // the page is then "in application mode".
846 bool personalization_mode = conf_block[7] & 0x80;
847
848 // chip memory may be divided in 8 pages
849 uint8_t max_page = conf_block[4] & 0x10 ? 0 : 7;
8efd0b80 850
ae60ceca 851 // Precalculate the cipher states, feeding it the CC
852 cipher_state_KD[0] = opt_doTagMAC_1(card_challenge_data, diversified_key_d);
853 cipher_state_KC[0] = opt_doTagMAC_1(card_challenge_data, diversified_key_c);
854 if (simulationMode == ICLASS_SIM_MODE_FULL) {
855 for (int i = 1; i < max_page; i++) {
856 uint8_t *epurse = emulator + i*page_size + 8*2;
857 uint8_t *Kd = emulator + i*page_size + 8*3;
858 uint8_t *Kc = emulator + i*page_size + 8*4;
859 cipher_state_KD[i] = opt_doTagMAC_1(epurse, Kd);
860 cipher_state_KC[i] = opt_doTagMAC_1(epurse, Kc);
861 }
862 }
8efd0b80 863
ff7bb4ef 864 int exitLoop = 0;
1e262141 865 // Reader 0a
866 // Tag 0f
867 // Reader 0c
868 // Tag anticoll. CSN
869 // Reader 81 anticoll. CSN
870 // Tag CSN
871
55eaed8f 872 uint8_t *modulated_response;
b19caaef 873 int modulated_response_size = 0;
17505ce2 874 uint8_t *trace_data = NULL;
55eaed8f 875 int trace_data_size = 0;
1e262141 876
645c960f 877 // Respond SOF -- takes 1 bytes
ae60ceca 878 uint8_t *resp_sof = BigBuf_malloc(1);
b67f7ec3 879 int resp_sof_Len;
1e262141 880
881 // Anticollision CSN (rotated CSN)
645c960f 882 // 22: Takes 2 bytes for SOF/EOF and 10 * 2 = 20 bytes (2 bytes/byte)
0ab9002f 883 uint8_t *resp_anticoll = BigBuf_malloc(22);
b67f7ec3 884 int resp_anticoll_len;
1e262141 885
0ab9002f 886 // CSN (block 0)
645c960f 887 // 22: Takes 2 bytes for SOF/EOF and 10 * 2 = 20 bytes (2 bytes/byte)
0ab9002f 888 uint8_t *resp_csn = BigBuf_malloc(22);
b67f7ec3 889 int resp_csn_len;
1e262141 890
0ab9002f 891 // configuration (block 1) picopass 2ks
892 uint8_t *resp_conf = BigBuf_malloc(22);
893 int resp_conf_len;
0ab9002f 894
895 // e-Purse (block 2)
b3cc5f29 896 // 18: Takes 2 bytes for SOF/EOF and 8 * 2 = 16 bytes (2 bytes/bit)
0ab9002f 897 uint8_t *resp_cc = BigBuf_malloc(18);
b67f7ec3 898 int resp_cc_len;
1e262141 899
a66f26da 900 // Kd, Kc (blocks 3 and 4). Cannot be read. Always respond with 0xff bytes only
901 uint8_t *resp_ff = BigBuf_malloc(22);
902 int resp_ff_len;
903 uint8_t ff_data[10] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00};
904 AppendCrc(ff_data, 8);
905
0ab9002f 906 // Application Issuer Area (block 5)
907 uint8_t *resp_aia = BigBuf_malloc(22);
908 int resp_aia_len;
909 uint8_t aia_data[10] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00};
910 AppendCrc(aia_data, 8);
911
f71f4deb 912 uint8_t *receivedCmd = BigBuf_malloc(MAX_FRAME_SIZE);
1e262141 913 int len;
914
1e262141 915 // Prepare card messages
1e262141 916
3d2c9c9b 917 // First card answer: SOF only
1e262141 918 CodeIClassTagSOF();
17505ce2 919 memcpy(resp_sof, ToSend, ToSendMax);
920 resp_sof_Len = ToSendMax;
1e262141 921
922 // Anticollision CSN
3d2c9c9b 923 CodeIso15693AsTag(anticoll_data, sizeof(anticoll_data));
17505ce2 924 memcpy(resp_anticoll, ToSend, ToSendMax);
925 resp_anticoll_len = ToSendMax;
1e262141 926
0ab9002f 927 // CSN (block 0)
3d2c9c9b 928 CodeIso15693AsTag(csn_data, sizeof(csn_data));
17505ce2 929 memcpy(resp_csn, ToSend, ToSendMax);
930 resp_csn_len = ToSendMax;
1e262141 931
0ab9002f 932 // Configuration (block 1)
ae60ceca 933 CodeIso15693AsTag(conf_block, sizeof(conf_block));
0ab9002f 934 memcpy(resp_conf, ToSend, ToSendMax);
935 resp_conf_len = ToSendMax;
936
937 // e-Purse (block 2)
3d2c9c9b 938 CodeIso15693AsTag(card_challenge_data, sizeof(card_challenge_data));
0ab9002f 939 memcpy(resp_cc, ToSend, ToSendMax);
940 resp_cc_len = ToSendMax;
941
a66f26da 942 // Kd, Kc (blocks 3 and 4)
943 CodeIso15693AsTag(ff_data, sizeof(ff_data));
944 memcpy(resp_ff, ToSend, ToSendMax);
945 resp_ff_len = ToSendMax;
946
0ab9002f 947 // Application Issuer Area (block 5)
3d2c9c9b 948 CodeIso15693AsTag(aia_data, sizeof(aia_data));
0ab9002f 949 memcpy(resp_aia, ToSend, ToSendMax);
950 resp_aia_len = ToSendMax;
1e262141 951
b19caaef 952 //This is used for responding to READ-block commands or other data which is dynamically generated
a66f26da 953 uint8_t *data_generic_trace = BigBuf_malloc(32 + 2); // 32 bytes data + 2byte CRC is max tag answer
954 uint8_t *data_response = BigBuf_malloc( (32 + 2) * 2 + 2);
e3dc1e4c 955
f83cc126 956 bool buttonPressed = false;
5b12974a 957 enum { IDLE, ACTIVATED, SELECTED, HALTED } chip_state = IDLE;
958
17505ce2 959 while (!exitLoop) {
0ab9002f 960 WDT_HIT();
3fe4ff4f 961
3d2c9c9b 962 uint32_t reader_eof_time = 0;
963 len = GetIso15693CommandFromReader(receivedCmd, MAX_FRAME_SIZE, &reader_eof_time);
964 if (len < 0) {
f83cc126 965 buttonPressed = true;
1e262141 966 break;
81cd0474 967 }
a66f26da 968
0ab9002f 969 // Now look at the reader command and provide appropriate responses
970 // default is no response:
971 modulated_response = NULL;
972 modulated_response_size = 0;
973 trace_data = NULL;
974 trace_data_size = 0;
a66f26da 975
5b12974a 976 if (receivedCmd[0] == ICLASS_CMD_ACTALL && len == 1) {
977 // Reader in anticollision phase
978 if (chip_state != HALTED) {
979 modulated_response = resp_sof;
980 modulated_response_size = resp_sof_Len;
5b12974a 981 chip_state = ACTIVATED;
982 }
0ab9002f 983
984 } else if (receivedCmd[0] == ICLASS_CMD_READ_OR_IDENTIFY && len == 1) { // identify
5b12974a 985 // Reader asks for anticollision CSN
986 if (chip_state == SELECTED || chip_state == ACTIVATED) {
987 modulated_response = resp_anticoll;
988 modulated_response_size = resp_anticoll_len;
989 trace_data = anticoll_data;
990 trace_data_size = sizeof(anticoll_data);
991 }
992
993 } else if (receivedCmd[0] == ICLASS_CMD_SELECT && len == 9) {
994 // Reader selects anticollision CSN.
995 // Tag sends the corresponding real CSN
996 if (chip_state == ACTIVATED || chip_state == SELECTED) {
997 if (!memcmp(receivedCmd+1, anticoll_data, 8)) {
998 modulated_response = resp_csn;
999 modulated_response_size = resp_csn_len;
1000 trace_data = csn_data;
1001 trace_data_size = sizeof(csn_data);
1002 chip_state = SELECTED;
1003 } else {
1004 chip_state = IDLE;
1005 }
1006 } else if (chip_state == HALTED) {
1007 // RESELECT with CSN
1008 if (!memcmp(receivedCmd+1, csn_data, 8)) {
1009 modulated_response = resp_csn;
1010 modulated_response_size = resp_csn_len;
1011 trace_data = csn_data;
1012 trace_data_size = sizeof(csn_data);
1013 chip_state = SELECTED;
1014 }
1015 }
a66f26da 1016
0ab9002f 1017 } else if (receivedCmd[0] == ICLASS_CMD_READ_OR_IDENTIFY && len == 4) { // read block
1018 uint16_t blockNo = receivedCmd[1];
5b12974a 1019 if (chip_state == SELECTED) {
1020 if (simulationMode == ICLASS_SIM_MODE_EXIT_AFTER_MAC) {
1021 // provide defaults for blocks 0 ... 5
1022 switch (blockNo) {
1023 case 0: // csn (block 00)
1024 modulated_response = resp_csn;
1025 modulated_response_size = resp_csn_len;
1026 trace_data = csn_data;
1027 trace_data_size = sizeof(csn_data);
1028 break;
1029 case 1: // configuration (block 01)
1030 modulated_response = resp_conf;
1031 modulated_response_size = resp_conf_len;
ae60ceca 1032 trace_data = conf_block;
1033 trace_data_size = sizeof(conf_block);
5b12974a 1034 break;
1035 case 2: // e-purse (block 02)
1036 modulated_response = resp_cc;
1037 modulated_response_size = resp_cc_len;
1038 trace_data = card_challenge_data;
1039 trace_data_size = sizeof(card_challenge_data);
1040 // set epurse of sim2,4 attack
1041 if (reader_mac_buf != NULL) {
1042 memcpy(reader_mac_buf, card_challenge_data, 8);
1043 }
1044 break;
1045 case 3:
1046 case 4: // Kd, Kc, always respond with 0xff bytes
1047 modulated_response = resp_ff;
1048 modulated_response_size = resp_ff_len;
1049 trace_data = ff_data;
1050 trace_data_size = sizeof(ff_data);
1051 break;
1052 case 5: // Application Issuer Area (block 05)
1053 modulated_response = resp_aia;
1054 modulated_response_size = resp_aia_len;
1055 trace_data = aia_data;
1056 trace_data_size = sizeof(aia_data);
1057 break;
1058 // default: don't respond
1059 }
1060 } else if (simulationMode == ICLASS_SIM_MODE_FULL) {
1061 if (blockNo == 3 || blockNo == 4) { // Kd, Kc, always respond with 0xff bytes
a66f26da 1062 modulated_response = resp_ff;
1063 modulated_response_size = resp_ff_len;
1064 trace_data = ff_data;
1065 trace_data_size = sizeof(ff_data);
5b12974a 1066 } else { // use data from emulator memory
ae60ceca 1067 memcpy(data_generic_trace, emulator + current_page*page_size + 8*blockNo, 8);
5b12974a 1068 AppendCrc(data_generic_trace, 8);
1069 trace_data = data_generic_trace;
1070 trace_data_size = 10;
1071 CodeIso15693AsTag(trace_data, trace_data_size);
1072 memcpy(data_response, ToSend, ToSendMax);
1073 modulated_response = data_response;
1074 modulated_response_size = ToSendMax;
1075 }
0ab9002f 1076 }
5b12974a 1077 }
1078
1079 } else if ((receivedCmd[0] == ICLASS_CMD_READCHECK_KD
8ddb81a2 1080 || receivedCmd[0] == ICLASS_CMD_READCHECK_KC) && receivedCmd[1] == 0x02 && len == 2) {
5b12974a 1081 // Read e-purse (88 02 || 18 02)
1082 if (chip_state == SELECTED) {
ae60ceca 1083 if(receivedCmd[0] == ICLASS_CMD_READCHECK_KD){
1084 cipher_state = &cipher_state_KD[current_page];
1085 diversified_key = diversified_key_d;
1086 } else {
8efd0b80 1087 cipher_state = &cipher_state_KC[current_page];
ae60ceca 1088 diversified_key = diversified_key_c;
1089 }
5b12974a 1090 modulated_response = resp_cc;
1091 modulated_response_size = resp_cc_len;
1092 trace_data = card_challenge_data;
1093 trace_data_size = sizeof(card_challenge_data);
5b12974a 1094 }
1095
8efd0b80 1096 } else if ((receivedCmd[0] == ICLASS_CMD_CHECK_KC
8ddb81a2 1097 || receivedCmd[0] == ICLASS_CMD_CHECK_KD) && len == 9) {
5b12974a 1098 // Reader random and reader MAC!!!
1099 if (chip_state == SELECTED) {
1100 if (simulationMode == ICLASS_SIM_MODE_FULL) {
1101 //NR, from reader, is in receivedCmd+1
ae60ceca 1102 opt_doTagMAC_2(*cipher_state, receivedCmd+1, data_generic_trace, diversified_key);
a66f26da 1103 trace_data = data_generic_trace;
5b12974a 1104 trace_data_size = 4;
a66f26da 1105 CodeIso15693AsTag(trace_data, trace_data_size);
1106 memcpy(data_response, ToSend, ToSendMax);
1107 modulated_response = data_response;
1108 modulated_response_size = ToSendMax;
5b12974a 1109 //exitLoop = true;
1110 } else { // Not fullsim, we don't respond
1111 // We do not know what to answer, so lets keep quiet
1112 if (simulationMode == ICLASS_SIM_MODE_EXIT_AFTER_MAC) {
1113 if (reader_mac_buf != NULL) {
1114 // save NR and MAC for sim 2,4
1115 memcpy(reader_mac_buf + 8, receivedCmd + 1, 8);
1116 }
1117 exitLoop = true;
1118 }
a66f26da 1119 }
0ab9002f 1120 }
1121
5b12974a 1122 } else if (receivedCmd[0] == ICLASS_CMD_HALT && len == 1) {
1123 if (chip_state == SELECTED) {
1124 // Reader ends the session
ae60ceca 1125 modulated_response = resp_sof;
1126 modulated_response_size = resp_sof_Len;
5b12974a 1127 chip_state = HALTED;
1128 }
0ab9002f 1129
5b12974a 1130 } else if (simulationMode == ICLASS_SIM_MODE_FULL && receivedCmd[0] == ICLASS_CMD_READ4 && len == 4) { // 0x06
1131 //Read 4 blocks
1132 if (chip_state == SELECTED) {
ae60ceca 1133 uint8_t blockNo = receivedCmd[1];
1134 memcpy(data_generic_trace, emulator + current_page*page_size + blockNo*8, 8 * 4);
5b12974a 1135 AppendCrc(data_generic_trace, 8 * 4);
b19caaef 1136 trace_data = data_generic_trace;
5b12974a 1137 trace_data_size = 8 * 4 + 2;
3d2c9c9b 1138 CodeIso15693AsTag(trace_data, trace_data_size);
b67f7ec3
MHS
1139 memcpy(data_response, ToSend, ToSendMax);
1140 modulated_response = data_response;
1141 modulated_response_size = ToSendMax;
ff7bb4ef 1142 }
b67f7ec3 1143
5b12974a 1144 } else if (receivedCmd[0] == ICLASS_CMD_UPDATE && (len == 12 || len == 14)) {
0ab9002f 1145 // We're expected to respond with the data+crc, exactly what's already in the receivedCmd
1146 // receivedCmd is now UPDATE 1b | ADDRESS 1b | DATA 8b | Signature 4b or CRC 2b
5b12974a 1147 if (chip_state == SELECTED) {
8ddb81a2 1148 uint8_t blockNo = receivedCmd[1];
1149 if (blockNo == 2) { // update e-purse
1150 memcpy(card_challenge_data, receivedCmd+2, 8);
1151 CodeIso15693AsTag(card_challenge_data, sizeof(card_challenge_data));
1152 memcpy(resp_cc, ToSend, ToSendMax);
1153 resp_cc_len = ToSendMax;
ae60ceca 1154 cipher_state_KD[current_page] = opt_doTagMAC_1(card_challenge_data, diversified_key_d);
1155 cipher_state_KC[current_page] = opt_doTagMAC_1(card_challenge_data, diversified_key_c);
8ddb81a2 1156 if (simulationMode == ICLASS_SIM_MODE_FULL) {
ae60ceca 1157 memcpy(emulator + current_page*page_size + 8*2, card_challenge_data, 8);
8ddb81a2 1158 }
1159 } else if (blockNo == 3) { // update Kd
ae60ceca 1160 for (int i = 0; i < 8; i++) {
1161 if (personalization_mode) {
8efd0b80 1162 diversified_key_d[i] = receivedCmd[2 + i];
ae60ceca 1163 } else {
1164 diversified_key_d[i] ^= receivedCmd[2 + i];
8efd0b80 1165 }
8ddb81a2 1166 }
8efd0b80 1167 cipher_state_KD[current_page] = opt_doTagMAC_1(card_challenge_data, diversified_key_d);
8ddb81a2 1168 if (simulationMode == ICLASS_SIM_MODE_FULL) {
ae60ceca 1169 memcpy(emulator + current_page*page_size + 8*3, diversified_key_d, 8);
8ddb81a2 1170 }
8efd0b80 1171 } else if (blockNo == 4) { // update Kc
ae60ceca 1172 for (int i = 0; i < 8; i++) {
1173 if (personalization_mode) {
8efd0b80 1174 diversified_key_c[i] = receivedCmd[2 + i];
ae60ceca 1175 } else {
1176 diversified_key_c[i] ^= receivedCmd[2 + i];
8efd0b80 1177 }
8ddb81a2 1178 }
ae60ceca 1179 cipher_state_KC[current_page] = opt_doTagMAC_1(card_challenge_data, diversified_key_c);
8ddb81a2 1180 if (simulationMode == ICLASS_SIM_MODE_FULL) {
ae60ceca 1181 memcpy(emulator + current_page*page_size + 8*4, diversified_key_c, 8);
8ddb81a2 1182 }
1183 } else if (simulationMode == ICLASS_SIM_MODE_FULL) { // update any other data block
ae60ceca 1184 memcpy(emulator + current_page*page_size + 8*blockNo, receivedCmd+2, 8);
8efd0b80 1185 }
5b12974a 1186 memcpy(data_generic_trace, receivedCmd + 2, 8);
1187 AppendCrc(data_generic_trace, 8);
1188 trace_data = data_generic_trace;
1189 trace_data_size = 10;
1190 CodeIso15693AsTag(trace_data, trace_data_size);
1191 memcpy(data_response, ToSend, ToSendMax);
1192 modulated_response = data_response;
1193 modulated_response_size = ToSendMax;
1194 }
1195
1196 } else if (receivedCmd[0] == ICLASS_CMD_PAGESEL && len == 4) {
0ab9002f 1197 // Pagesel
ae60ceca 1198 // Chips with a single page will not answer to this command
8efd0b80 1199 // Otherwise, we should answer 8bytes (conf block 1) + 2bytes CRC
5b12974a 1200 if (chip_state == SELECTED) {
ae60ceca 1201 if (simulationMode == ICLASS_SIM_MODE_FULL && max_page > 0) {
1202 current_page = receivedCmd[1];
1203 memcpy(data_generic_trace, emulator + current_page*page_size + 8*1, 8);
1204 memcpy(diversified_key_d, emulator + current_page*page_size + 8*3, 8);
8efd0b80 1205 memcpy(diversified_key_c, emulator + current_page*page_size + 8*4, 8);
ae60ceca 1206 cipher_state = &cipher_state_KD[current_page];
1207 personalization_mode = data_generic_trace[7] & 0x80;
1208 AppendCrc(data_generic_trace, 8);
1209 trace_data = data_generic_trace;
1210 trace_data_size = 10;
1211 CodeIso15693AsTag(trace_data, trace_data_size);
8efd0b80 1212 memcpy(data_response, ToSend, ToSendMax);
ae60ceca 1213 modulated_response = data_response;
1214 modulated_response_size = ToSendMax;
1215 }
5b12974a 1216 }
0ab9002f 1217
e49d31c0 1218 } else if (receivedCmd[0] == 0x26 && len == 5) {
1219 // standard ISO15693 INVENTORY command. Ignore.
1220
17505ce2 1221 } else {
5b12974a 1222 // don't know how to handle this command
3d2c9c9b 1223 char debug_message[250]; // should be enough
1224 sprintf(debug_message, "Unhandled command (len = %d) received from reader:", len);
1225 for (int i = 0; i < len && strlen(debug_message) < sizeof(debug_message) - 3 - 1; i++) {
1226 sprintf(debug_message + strlen(debug_message), " %02x", receivedCmd[i]);
1227 }
1228 Dbprintf("%s", debug_message);
1e262141 1229 // Do not respond
1e262141 1230 }
1231
55eaed8f 1232 /**
8efd0b80 1233 A legit tag has about 273,4us delay between reader EOT and tag SOF.
55eaed8f 1234 **/
17505ce2 1235 if (modulated_response_size > 0) {
c41dd5f9 1236 uint32_t response_time = reader_eof_time + DELAY_ICLASS_VCD_TO_VICC_SIM;
8efd0b80 1237 TransmitTo15693Reader(modulated_response, modulated_response_size, &response_time, 0, false);
c41dd5f9 1238 LogTrace_ISO15693(trace_data, trace_data_size, response_time*32, response_time*32 + modulated_response_size/2, NULL, false);
81cd0474 1239 }
f83cc126 1240
81cd0474 1241 }
1e262141 1242
17505ce2 1243 if (buttonPressed)
f83cc126
MHS
1244 {
1245 DbpString("Button pressed");
1246 }
f83cc126 1247 return buttonPressed;
1e262141 1248}
1249
17505ce2 1250/**
1251 * @brief SimulateIClass simulates an iClass card.
1252 * @param arg0 type of simulation
1253 * - 0 uses the first 8 bytes in usb data as CSN
1254 * - 2 "dismantling iclass"-attack. This mode iterates through all CSN's specified
1255 * in the usb data. This mode collects MAC from the reader, in order to do an offline
1256 * attack on the keys. For more info, see "dismantling iclass" and proxclone.com.
1257 * - Other : Uses the default CSN (031fec8af7ff12e0)
1258 * @param arg1 - number of CSN's contained in datain (applicable for mode 2 only)
1259 * @param arg2
1260 * @param datain
1261 */
1262void SimulateIClass(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *datain) {
8efd0b80 1263
ae60ceca 1264 LED_A_ON();
8efd0b80 1265
17505ce2 1266 uint32_t simType = arg0;
1267 uint32_t numberOfCSNS = arg1;
0ab9002f 1268
3d2c9c9b 1269 // setup hardware for simulation:
17505ce2 1270 FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
3d2c9c9b 1271 SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
a66f26da 1272 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_SIMULATOR | FPGA_HF_SIMULATOR_NO_MODULATION);
ae60ceca 1273 LED_D_OFF();
3d2c9c9b 1274 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_SIMULATOR);
1275 StartCountSspClk();
e3dc1e4c 1276
17505ce2 1277 // Enable and clear the trace
1278 set_tracing(true);
1279 clear_trace();
1280 //Use the emulator memory for SIM
1281 uint8_t *emulator = BigBuf_get_EM_addr();
e3dc1e4c 1282
0ab9002f 1283 if (simType == ICLASS_SIM_MODE_CSN) {
17505ce2 1284 // Use the CSN from commandline
1285 memcpy(emulator, datain, 8);
0ab9002f 1286 doIClassSimulation(ICLASS_SIM_MODE_CSN, NULL);
1287 } else if (simType == ICLASS_SIM_MODE_CSN_DEFAULT) {
17505ce2 1288 //Default CSN
1289 uint8_t csn_crc[] = { 0x03, 0x1f, 0xec, 0x8a, 0xf7, 0xff, 0x12, 0xe0, 0x00, 0x00 };
1290 // Use the CSN from commandline
1291 memcpy(emulator, csn_crc, 8);
0ab9002f 1292 doIClassSimulation(ICLASS_SIM_MODE_CSN, NULL);
1293 } else if (simType == ICLASS_SIM_MODE_READER_ATTACK) {
17505ce2 1294 uint8_t mac_responses[USB_CMD_DATA_SIZE] = { 0 };
1295 Dbprintf("Going into attack mode, %d CSNS sent", numberOfCSNS);
1296 // In this mode, a number of csns are within datain. We'll simulate each one, one at a time
0ab9002f 1297 // in order to collect MAC's from the reader. This can later be used in an offline-attack
17505ce2 1298 // in order to obtain the keys, as in the "dismantling iclass"-paper.
0ab9002f 1299 int i;
1300 for (i = 0; i < numberOfCSNS && i*16+16 <= USB_CMD_DATA_SIZE; i++) {
1301 // The usb data is 512 bytes, fitting 32 responses (8 byte CC + 4 Byte NR + 4 Byte MAC = 16 Byte response).
17505ce2 1302 memcpy(emulator, datain+(i*8), 8);
0ab9002f 1303 if (doIClassSimulation(ICLASS_SIM_MODE_EXIT_AFTER_MAC, mac_responses+i*16)) {
1304 // Button pressed
1305 break;
1e262141 1306 }
3d2c9c9b 1307 Dbprintf("CSN: %02x %02x %02x %02x %02x %02x %02x %02x",
1308 datain[i*8+0], datain[i*8+1], datain[i*8+2], datain[i*8+3],
1309 datain[i*8+4], datain[i*8+5], datain[i*8+6], datain[i*8+7]);
1310 Dbprintf("NR,MAC: %02x %02x %02x %02x %02x %02x %02x %02x",
5b12974a 1311 mac_responses[i*16+ 8], mac_responses[i*16+ 9], mac_responses[i*16+10], mac_responses[i*16+11],
1312 mac_responses[i*16+12], mac_responses[i*16+13], mac_responses[i*16+14], mac_responses[i*16+15]);
1313 SpinDelay(100); // give the reader some time to prepare for next CSN
1e262141 1314 }
0ab9002f 1315 cmd_send(CMD_ACK, CMD_SIMULATE_TAG_ICLASS, i, 0, mac_responses, i*16);
1316 } else if (simType == ICLASS_SIM_MODE_FULL) {
17505ce2 1317 //This is 'full sim' mode, where we use the emulator storage for data.
0ab9002f 1318 doIClassSimulation(ICLASS_SIM_MODE_FULL, NULL);
17505ce2 1319 } else {
1320 // We may want a mode here where we hardcode the csns to use (from proxclone).
1321 // That will speed things up a little, but not required just yet.
1322 Dbprintf("The mode is not implemented, reserved for future use");
1e262141 1323 }
ae60ceca 1324
17505ce2 1325 Dbprintf("Done...");
1e262141 1326
ae60ceca 1327 LED_A_OFF();
1e262141 1328}
1329
17505ce2 1330
1e262141 1331/// THE READER CODE
1332
c41dd5f9 1333static void ReaderTransmitIClass(uint8_t *frame, int len, uint32_t *start_time) {
17505ce2 1334
c41dd5f9 1335 CodeIso15693AsReader(frame, len);
17505ce2 1336
c41dd5f9 1337 TransmitTo15693Tag(ToSend, ToSendMax, start_time);
17505ce2 1338
c41dd5f9 1339 uint32_t end_time = *start_time + 32*(8*ToSendMax-4); // substract the 4 padding bits after EOF
1340 LogTrace_ISO15693(frame, len, *start_time*4, end_time*4, NULL, true);
1e262141 1341}
1342
1343
c41dd5f9 1344static bool sendCmdGetResponseWithRetries(uint8_t* command, size_t cmdsize, uint8_t* resp, size_t max_resp_size,
1345 uint8_t expected_size, uint8_t retries, uint32_t start_time, uint32_t *eof_time) {
17505ce2 1346 while (retries-- > 0) {
c41dd5f9 1347 ReaderTransmitIClass(command, cmdsize, &start_time);
1348 if (expected_size == GetIso15693AnswerFromTag(resp, max_resp_size, ICLASS_READER_TIMEOUT_OTHERS, eof_time)) {
aa53efc3 1349 return true;
c8dd9b09
MHS
1350 }
1351 }
aa53efc3 1352 return false;//Error
c8dd9b09
MHS
1353}
1354
1355/**
1356 * @brief Talks to an iclass tag, sends the commands to get CSN and CC.
1357 * @param card_data where the CSN and CC are stored for return
1358 * @return 0 = fail
1359 * 1 = Got CSN
1360 * 2 = Got CSN and CC
1361 */
c41dd5f9 1362static uint8_t handshakeIclassTag_ext(uint8_t *card_data, bool use_credit_key, uint32_t *eof_time) {
1363 uint8_t act_all[] = { 0x0a };
1364 uint8_t identify[] = { 0x0c };
1365 uint8_t select[] = { 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1366 uint8_t readcheck_cc[] = { 0x88, 0x02 };
aa53efc3 1367 if (use_credit_key)
1368 readcheck_cc[0] = 0x18;
1369 else
1370 readcheck_cc[0] = 0x88;
caaf9618 1371
f71f4deb 1372 uint8_t resp[ICLASS_BUFFER_SIZE];
c8dd9b09
MHS
1373
1374 uint8_t read_status = 0;
c41dd5f9 1375 uint32_t start_time = GetCountSspClk();
c8dd9b09
MHS
1376
1377 // Send act_all
c41dd5f9 1378 ReaderTransmitIClass(act_all, 1, &start_time);
c8dd9b09 1379 // Card present?
c41dd5f9 1380 if (GetIso15693AnswerFromTag(resp, sizeof(resp), ICLASS_READER_TIMEOUT_ACTALL, eof_time) < 0) return read_status;//Fail
1381
c8dd9b09 1382 //Send Identify
c41dd5f9 1383 start_time = *eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
1384 ReaderTransmitIClass(identify, 1, &start_time);
1385 // FpgaDisableTracing(); // DEBUGGING
c8dd9b09 1386 //We expect a 10-byte response here, 8 byte anticollision-CSN and 2 byte CRC
c41dd5f9 1387 uint8_t len = GetIso15693AnswerFromTag(resp, sizeof(resp), ICLASS_READER_TIMEOUT_OTHERS, eof_time);
17505ce2 1388 if (len != 10) return read_status;//Fail
c8dd9b09
MHS
1389
1390 //Copy the Anti-collision CSN to our select-packet
17505ce2 1391 memcpy(&select[1], resp, 8);
c8dd9b09 1392 //Select the card
c41dd5f9 1393 start_time = *eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
1394 ReaderTransmitIClass(select, sizeof(select), &start_time);
c8dd9b09 1395 //We expect a 10-byte response here, 8 byte CSN and 2 byte CRC
c41dd5f9 1396 len = GetIso15693AnswerFromTag(resp, sizeof(resp), ICLASS_READER_TIMEOUT_OTHERS, eof_time);
17505ce2 1397 if (len != 10) return read_status;//Fail
c8dd9b09
MHS
1398
1399 //Success - level 1, we got CSN
1400 //Save CSN in response data
17505ce2 1401 memcpy(card_data, resp, 8);
c8dd9b09
MHS
1402
1403 //Flag that we got to at least stage 1, read CSN
1404 read_status = 1;
1405
34e2af02 1406 // Card selected, now read e-purse (cc) (only 8 bytes no CRC)
c41dd5f9 1407 start_time = *eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
1408 ReaderTransmitIClass(readcheck_cc, sizeof(readcheck_cc), &start_time);
1409 if (GetIso15693AnswerFromTag(resp, sizeof(resp), ICLASS_READER_TIMEOUT_OTHERS, eof_time) == 8) {
c8dd9b09 1410 //Save CC (e-purse) in response data
17505ce2 1411 memcpy(card_data+8, resp, 8);
caaf9618 1412 read_status++;
c8dd9b09
MHS
1413 }
1414
1415 return read_status;
1416}
17505ce2 1417
c41dd5f9 1418static uint8_t handshakeIclassTag(uint8_t *card_data, uint32_t *eof_time) {
1419 return handshakeIclassTag_ext(card_data, false, eof_time);
aa53efc3 1420}
c8dd9b09 1421
caaf9618 1422
1e262141 1423// Reader iClass Anticollission
1424void ReaderIClass(uint8_t arg0) {
1e262141 1425
17505ce2 1426 uint8_t card_data[6 * 8] = {0};
83602aff 1427 memset(card_data, 0xFF, sizeof(card_data));
17505ce2 1428 uint8_t last_csn[8] = {0,0,0,0,0,0,0,0};
34e2af02 1429 uint8_t resp[ICLASS_BUFFER_SIZE];
1430 memset(resp, 0xFF, sizeof(resp));
caaf9618 1431 //Read conf block CRC(0x01) => 0xfa 0x22
17505ce2 1432 uint8_t readConf[] = { ICLASS_CMD_READ_OR_IDENTIFY, 0x01, 0xfa, 0x22};
34e2af02 1433 //Read App Issuer Area block CRC(0x05) => 0xde 0x64
17505ce2 1434 uint8_t readAA[] = { ICLASS_CMD_READ_OR_IDENTIFY, 0x05, 0xde, 0x64};
caaf9618 1435
6ce0e538 1436 int read_status= 0;
caaf9618 1437 uint8_t result_status = 0;
34e2af02 1438 // flag to read until one tag is found successfully
6ce0e538 1439 bool abort_after_read = arg0 & FLAG_ICLASS_READER_ONLY_ONCE;
34e2af02 1440 // flag to only try 5 times to find one tag then return
6ce0e538 1441 bool try_once = arg0 & FLAG_ICLASS_READER_ONE_TRY;
34e2af02 1442 // if neither abort_after_read nor try_once then continue reading until button pressed.
1443
1444 bool use_credit_key = arg0 & FLAG_ICLASS_READER_CEDITKEY;
1445 // test flags for what blocks to be sure to read
1446 uint8_t flagReadConfig = arg0 & FLAG_ICLASS_READER_CONF;
1447 uint8_t flagReadCC = arg0 & FLAG_ICLASS_READER_CC;
1448 uint8_t flagReadAA = arg0 & FLAG_ICLASS_READER_AA;
1449
1450 set_tracing(true);
c41dd5f9 1451 clear_trace();
1452 Iso15693InitReader();
1e262141 1453
c41dd5f9 1454 StartCountSspClk();
1455 uint32_t start_time = 0;
1456 uint32_t eof_time = 0;
1457
17505ce2 1458 uint16_t tryCnt = 0;
979c7655 1459 bool userCancelled = BUTTON_PRESS() || usb_poll_validate_length();
17505ce2 1460 while (!userCancelled) {
979c7655 1461 // if only looking for one card try 2 times if we missed it the first time
17505ce2 1462 if (try_once && tryCnt > 2) {
1463 break;
1464 }
6ce0e538 1465 tryCnt++;
17505ce2 1466 if (!get_tracing()) {
c8dd9b09
MHS
1467 DbpString("Trace full");
1468 break;
1469 }
1470 WDT_HIT();
4ab4336a 1471
c41dd5f9 1472 read_status = handshakeIclassTag_ext(card_data, use_credit_key, &eof_time);
2e9d4b3f 1473
17505ce2 1474 if (read_status == 0) continue;
1475 if (read_status == 1) result_status = FLAG_ICLASS_READER_CSN;
1476 if (read_status == 2) result_status = FLAG_ICLASS_READER_CSN | FLAG_ICLASS_READER_CC;
caaf9618 1477
c41dd5f9 1478 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
caaf9618
MHS
1479 // handshakeIclass returns CSN|CC, but the actual block
1480 // layout is CSN|CONFIG|CC, so here we reorder the data,
1481 // moving CC forward 8 bytes
17505ce2 1482 memcpy(card_data+16, card_data+8, 8);
caaf9618 1483 //Read block 1, config
17505ce2 1484 if (flagReadConfig) {
c41dd5f9 1485 if (sendCmdGetResponseWithRetries(readConf, sizeof(readConf), resp, sizeof(resp), 10, 10, start_time, &eof_time)) {
caaf9618 1486 result_status |= FLAG_ICLASS_READER_CONF;
34e2af02 1487 memcpy(card_data+8, resp, 8);
aa53efc3 1488 } else {
1489 Dbprintf("Failed to dump config block");
caaf9618 1490 }
c41dd5f9 1491 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
caaf9618 1492 }
c8dd9b09 1493
caaf9618 1494 //Read block 5, AA
17505ce2 1495 if (flagReadAA) {
c41dd5f9 1496 if (sendCmdGetResponseWithRetries(readAA, sizeof(readAA), resp, sizeof(resp), 10, 10, start_time, &eof_time)) {
caaf9618 1497 result_status |= FLAG_ICLASS_READER_AA;
17505ce2 1498 memcpy(card_data + (8*5), resp, 8);
aa53efc3 1499 } else {
1500 //Dbprintf("Failed to dump AA block");
caaf9618
MHS
1501 }
1502 }
1503
1504 // 0 : CSN
b67f7ec3 1505 // 1 : Configuration
caaf9618 1506 // 2 : e-purse
0ab9002f 1507 // 3 : kd / debit / aa2 (write-only)
1508 // 4 : kc / credit / aa1 (write-only)
1509 // 5 : AIA, Application issuer area
1510 //Then we can 'ship' back the 6 * 8 bytes of data,
b67f7ec3
MHS
1511 // with 0xFF:s in block 3 and 4.
1512
c8dd9b09 1513 LED_B_ON();
17505ce2 1514 //Send back to client, but don't bother if we already sent this -
979c7655 1515 // only useful if looping in arm (not try_once && not abort_after_read)
17505ce2 1516 if (memcmp(last_csn, card_data, 8) != 0) {
34e2af02 1517 // If caller requires that we get Conf, CC, AA, continue until we got it
17505ce2 1518 if ( (result_status ^ FLAG_ICLASS_READER_CSN ^ flagReadConfig ^ flagReadCC ^ flagReadAA) == 0) {
1519 cmd_send(CMD_ACK, result_status, 0, 0, card_data, sizeof(card_data));
1520 if (abort_after_read) {
f784539d 1521 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
c8dd9b09 1522 LED_A_OFF();
979c7655 1523 LED_B_OFF();
c8dd9b09
MHS
1524 return;
1525 }
1526 //Save that we already sent this....
1527 memcpy(last_csn, card_data, 8);
1528 }
caaf9618 1529
c8dd9b09
MHS
1530 }
1531 LED_B_OFF();
979c7655 1532 userCancelled = BUTTON_PRESS() || usb_poll_validate_length();
1533 }
1534 if (userCancelled) {
17505ce2 1535 cmd_send(CMD_ACK, 0xFF, 0, 0, card_data, 0);
979c7655 1536 } else {
17505ce2 1537 cmd_send(CMD_ACK, 0, 0, 0, card_data, 0);
6ce0e538 1538 }
3ac22ee1 1539 LED_A_OFF();
cee5a30d 1540}
1541
c3963755 1542void ReaderIClass_Replay(uint8_t arg0, uint8_t *MAC) {
c8dd9b09 1543
cb29e00a 1544 uint8_t card_data[USB_CMD_DATA_SIZE]={0};
39d3ce5d
MHS
1545 uint16_t block_crc_LUT[255] = {0};
1546
17505ce2 1547 //Generate a lookup table for block crc
1548 for (int block = 0; block < 255; block++){
1549 char bl = block;
1550 block_crc_LUT[block] = iclass_crc16(&bl ,1);
39d3ce5d
MHS
1551 }
1552 //Dbprintf("Lookup table: %02x %02x %02x" ,block_crc_LUT[0],block_crc_LUT[1],block_crc_LUT[2]);
c8dd9b09 1553
c3963755 1554 uint8_t check[] = { 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1555 uint8_t read[] = { 0x0c, 0x00, 0x00, 0x00 };
17505ce2 1556
1557 uint16_t crc = 0;
1558 uint8_t cardsize = 0;
1559 uint8_t mem = 0;
1560
1561 static struct memory_t {
1562 int k16;
1563 int book;
1564 int k2;
1565 int lockauth;
1566 int keyaccess;
c3963755 1567 } memory;
17505ce2 1568
f71f4deb 1569 uint8_t resp[ICLASS_BUFFER_SIZE];
17505ce2 1570
44964fd1 1571 set_tracing(true);
c41dd5f9 1572 clear_trace();
1573 Iso15693InitReader();
c3963755 1574
c41dd5f9 1575 StartCountSspClk();
1576 uint32_t start_time = 0;
1577 uint32_t eof_time = 0;
1578
17505ce2 1579 while (!BUTTON_PRESS()) {
1580
39d3ce5d
MHS
1581 WDT_HIT();
1582
17505ce2 1583 if (!get_tracing()) {
c3963755 1584 DbpString("Trace full");
1585 break;
1586 }
17505ce2 1587
c41dd5f9 1588 uint8_t read_status = handshakeIclassTag(card_data, &eof_time);
1589 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
1590
17505ce2 1591 if (read_status < 2) continue;
c8dd9b09
MHS
1592
1593 //for now replay captured auth (as cc not updated)
17505ce2 1594 memcpy(check+5, MAC, 4);
c8dd9b09 1595
c41dd5f9 1596 if (!sendCmdGetResponseWithRetries(check, sizeof(check), resp, sizeof(resp), 4, 5, start_time, &eof_time)) {
1597 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
c8dd9b09
MHS
1598 Dbprintf("Error: Authentication Fail!");
1599 continue;
1600 }
1601
c41dd5f9 1602 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
39d3ce5d
MHS
1603 //first get configuration block (block 1)
1604 crc = block_crc_LUT[1];
17505ce2 1605 read[1] = 1;
c8dd9b09
MHS
1606 read[2] = crc >> 8;
1607 read[3] = crc & 0xff;
1608
c41dd5f9 1609 if (!sendCmdGetResponseWithRetries(read, sizeof(read), resp, sizeof(resp), 10, 10, start_time, &eof_time)) {
1610 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
39d3ce5d 1611 Dbprintf("Dump config (block 1) failed");
c8dd9b09
MHS
1612 continue;
1613 }
1614
c41dd5f9 1615 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
17505ce2 1616 mem = resp[5];
1617 memory.k16 = (mem & 0x80);
1618 memory.book = (mem & 0x20);
1619 memory.k2 = (mem & 0x8);
1620 memory.lockauth = (mem & 0x2);
1621 memory.keyaccess = (mem & 0x1);
c8dd9b09
MHS
1622
1623 cardsize = memory.k16 ? 255 : 32;
1624 WDT_HIT();
cb29e00a 1625 //Set card_data to all zeroes, we'll fill it with data
17505ce2 1626 memset(card_data, 0x0, USB_CMD_DATA_SIZE);
1627 uint8_t failedRead = 0;
1628 uint32_t stored_data_length = 0;
c8dd9b09 1629 //then loop around remaining blocks
17505ce2 1630 for (int block = 0; block < cardsize; block++) {
1631 read[1] = block;
39d3ce5d 1632 crc = block_crc_LUT[block];
c8dd9b09
MHS
1633 read[2] = crc >> 8;
1634 read[3] = crc & 0xff;
1635
c41dd5f9 1636 if (sendCmdGetResponseWithRetries(read, sizeof(read), resp, sizeof(resp), 10, 10, start_time, &eof_time)) {
1637 start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
c8dd9b09 1638 Dbprintf(" %02x: %02x %02x %02x %02x %02x %02x %02x %02x",
17505ce2 1639 block, resp[0], resp[1], resp[2],
c8dd9b09
MHS
1640 resp[3], resp[4], resp[5],
1641 resp[6], resp[7]);
1642
cb29e00a 1643 //Fill up the buffer
17505ce2 1644 memcpy(card_data+stored_data_length, resp, 8);
cb29e00a 1645 stored_data_length += 8;
17505ce2 1646 if (stored_data_length +8 > USB_CMD_DATA_SIZE) {
1647 //Time to send this off and start afresh
cb29e00a
MHS
1648 cmd_send(CMD_ACK,
1649 stored_data_length,//data length
1650 failedRead,//Failed blocks?
1651 0,//Not used ATM
1652 card_data, stored_data_length);
1653 //reset
1654 stored_data_length = 0;
1655 failedRead = 0;
1656 }
1657
17505ce2 1658 } else {
cb29e00a 1659 failedRead = 1;
17505ce2 1660 stored_data_length += 8;//Otherwise, data becomes misaligned
c8dd9b09 1661 Dbprintf("Failed to dump block %d", block);
c3963755 1662 }
1663 }
428d6221 1664
cb29e00a 1665 //Send off any remaining data
17505ce2 1666 if (stored_data_length > 0) {
cb29e00a
MHS
1667 cmd_send(CMD_ACK,
1668 stored_data_length,//data length
1669 failedRead,//Failed blocks?
1670 0,//Not used ATM
17505ce2 1671 card_data,
1672 stored_data_length);
cb29e00a 1673 }
c8dd9b09
MHS
1674 //If we got here, let's break
1675 break;
c3963755 1676 }
cb29e00a
MHS
1677 //Signal end of transmission
1678 cmd_send(CMD_ACK,
1679 0,//data length
1680 0,//Failed blocks?
1681 0,//Not used ATM
17505ce2 1682 card_data,
1683 0);
cb29e00a 1684
f784539d 1685 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
c3963755 1686 LED_A_OFF();
1687}
1688
aa53efc3 1689void iClass_Authentication(uint8_t *MAC) {
8ddb81a2 1690 uint8_t check[] = { ICLASS_CMD_CHECK_KD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
aa53efc3 1691 uint8_t resp[ICLASS_BUFFER_SIZE];
17505ce2 1692 memcpy(check+5, MAC, 4);
aa53efc3 1693 bool isOK;
c41dd5f9 1694 uint32_t eof_time;
1695 isOK = sendCmdGetResponseWithRetries(check, sizeof(check), resp, sizeof(resp), 4, 6, 0, &eof_time);
17505ce2 1696 cmd_send(CMD_ACK,isOK, 0, 0, 0, 0);
aa53efc3 1697}
17505ce2 1698
f784539d 1699static bool iClass_ReadBlock(uint8_t blockNo, uint8_t *readdata) {
3ac22ee1 1700 uint8_t readcmd[] = {ICLASS_CMD_READ_OR_IDENTIFY, blockNo, 0x00, 0x00}; //0x88, 0x00 // can i use 0C?
1701 char bl = blockNo;
1702 uint16_t rdCrc = iclass_crc16(&bl, 1);
1703 readcmd[2] = rdCrc >> 8;
1704 readcmd[3] = rdCrc & 0xff;
c41dd5f9 1705 uint8_t resp[10];
3ac22ee1 1706 bool isOK = false;
c41dd5f9 1707 uint32_t eof_time;
1708
3ac22ee1 1709 //readcmd[1] = blockNo;
c41dd5f9 1710 isOK = sendCmdGetResponseWithRetries(readcmd, sizeof(readcmd), resp, sizeof(resp), 10, 10, 0, &eof_time);
3ac22ee1 1711 memcpy(readdata, resp, sizeof(resp));
fecd8202 1712
aa53efc3 1713 return isOK;
1714}
fecd8202 1715
3ac22ee1 1716void iClass_ReadBlk(uint8_t blockno) {
1717 uint8_t readblockdata[] = {0,0,0,0,0,0,0,0,0,0};
aa53efc3 1718 bool isOK = false;
3ac22ee1 1719 isOK = iClass_ReadBlock(blockno, readblockdata);
1720 cmd_send(CMD_ACK, isOK, 0, 0, readblockdata, 8);
f784539d 1721 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
aa53efc3 1722}
fecd8202 1723
3ac22ee1 1724void iClass_Dump(uint8_t blockno, uint8_t numblks) {
1725 uint8_t readblockdata[] = {0,0,0,0,0,0,0,0,0,0};
aa53efc3 1726 bool isOK = false;
1727 uint8_t blkCnt = 0;
fecd8202 1728
aa53efc3 1729 BigBuf_free();
1730 uint8_t *dataout = BigBuf_malloc(255*8);
17505ce2 1731 if (dataout == NULL) {
aa53efc3 1732 Dbprintf("out of memory");
b8dd1ef6 1733 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1734 LED_D_OFF();
17505ce2 1735 cmd_send(CMD_ACK, 0, 1, 0, 0, 0);
b8dd1ef6 1736 LED_A_OFF();
aa53efc3 1737 return;
1738 }
17505ce2 1739 memset(dataout, 0xFF, 255*8);
fecd8202 1740
17505ce2 1741 for ( ; blkCnt < numblks; blkCnt++) {
3ac22ee1 1742 isOK = iClass_ReadBlock(blockno+blkCnt, readblockdata);
1743 if (!isOK || (readblockdata[0] == 0xBB || readblockdata[7] == 0xBB || readblockdata[2] == 0xBB)) { //try again
1744 isOK = iClass_ReadBlock(blockno+blkCnt, readblockdata);
aa53efc3 1745 if (!isOK) {
1746 Dbprintf("Block %02X failed to read", blkCnt+blockno);
1747 break;
1748 }
fecd8202 1749 }
17505ce2 1750 memcpy(dataout + (blkCnt*8), readblockdata, 8);
aa53efc3 1751 }
1752 //return pointer to dump memory in arg3
17505ce2 1753 cmd_send(CMD_ACK, isOK, blkCnt, BigBuf_max_traceLen(), 0, 0);
aa53efc3 1754 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1755 LEDsoff();
1756 BigBuf_free();
1757}
1758
17505ce2 1759static bool iClass_WriteBlock_ext(uint8_t blockNo, uint8_t *data) {
671ff89f 1760 uint8_t write[] = { ICLASS_CMD_UPDATE, blockNo, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3ac22ee1 1761 //uint8_t readblockdata[10];
1762 //write[1] = blockNo;
aa53efc3 1763 memcpy(write+2, data, 12); // data + mac
17505ce2 1764 char *wrCmd = (char *)(write+1);
671ff89f 1765 uint16_t wrCrc = iclass_crc16(wrCmd, 13);
1766 write[14] = wrCrc >> 8;
1767 write[15] = wrCrc & 0xff;
c41dd5f9 1768 uint8_t resp[10];
671ff89f 1769 bool isOK = false;
c41dd5f9 1770 uint32_t eof_time = 0;
1771
1772 isOK = sendCmdGetResponseWithRetries(write, sizeof(write), resp, sizeof(resp), 10, 10, 0, &eof_time);
1773 uint32_t start_time = eof_time + DELAY_ICLASS_VICC_TO_VCD_READER;
671ff89f 1774 if (isOK) { //if reader responded correctly
3ac22ee1 1775 //Dbprintf("WriteResp: %02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",resp[0],resp[1],resp[2],resp[3],resp[4],resp[5],resp[6],resp[7],resp[8],resp[9]);
17505ce2 1776 if (memcmp(write+2, resp, 8)) { //if response is not equal to write values
671ff89f 1777 if (blockNo != 3 && blockNo != 4) { //if not programming key areas (note key blocks don't get programmed with actual key data it is xor data)
1778 //error try again
c41dd5f9 1779 isOK = sendCmdGetResponseWithRetries(write, sizeof(write), resp, sizeof(resp), 10, 10, start_time, &eof_time);
17505ce2 1780 }
fecd8202 1781 }
fecd8202 1782 }
aa53efc3 1783 return isOK;
1784}
1785
3ac22ee1 1786void iClass_WriteBlock(uint8_t blockNo, uint8_t *data) {
1787 bool isOK = iClass_WriteBlock_ext(blockNo, data);
aa53efc3 1788 if (isOK){
17505ce2 1789 Dbprintf("Write block [%02x] successful", blockNo);
aa53efc3 1790 } else {
17505ce2 1791 Dbprintf("Write block [%02x] failed", blockNo);
aa53efc3 1792 }
17505ce2 1793 cmd_send(CMD_ACK, isOK, 0, 0, 0, 0);
f784539d 1794 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
aa53efc3 1795}
1796
3ac22ee1 1797void iClass_Clone(uint8_t startblock, uint8_t endblock, uint8_t *data) {
aa53efc3 1798 int i;
1799 int written = 0;
1800 int total_block = (endblock - startblock) + 1;
17505ce2 1801 for (i = 0; i < total_block; i++) {
aa53efc3 1802 // block number
17505ce2 1803 if (iClass_WriteBlock_ext(i+startblock, data + (i*12))){
1804 Dbprintf("Write block [%02x] successful", i + startblock);
aa53efc3 1805 written++;
1806 } else {
17505ce2 1807 if (iClass_WriteBlock_ext(i+startblock, data + (i*12))){
1808 Dbprintf("Write block [%02x] successful", i + startblock);
aa53efc3 1809 written++;
1810 } else {
17505ce2 1811 Dbprintf("Write block [%02x] failed", i + startblock);
aa53efc3 1812 }
1813 }
1814 }
1815 if (written == total_block)
1816 Dbprintf("Clone complete");
1817 else
17505ce2 1818 Dbprintf("Clone incomplete");
aa53efc3 1819
17505ce2 1820 cmd_send(CMD_ACK, 1, 0, 0, 0, 0);
aa53efc3 1821 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
1822 LEDsoff();
1823}
Impressum, Datenschutz