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