]>
Commit | Line | Data |
---|---|---|
1 | //-----------------------------------------------------------------------------\r | |
2 | // Merlok, May 2011, 2012\r | |
3 | // Many authors, whom made it possible\r | |
4 | //\r | |
5 | // This code is licensed to you under the terms of the GNU GPL, version 2 or,\r | |
6 | // at your option, any later version. See the LICENSE.txt file for the text of\r | |
7 | // the license.\r | |
8 | //-----------------------------------------------------------------------------\r | |
9 | // Work with mifare cards.\r | |
10 | //-----------------------------------------------------------------------------\r | |
11 | \r | |
12 | #include "proxmark3.h"\r | |
13 | #include "apps.h"\r | |
14 | #include "util.h"\r | |
15 | #include "string.h"\r | |
16 | \r | |
17 | #include "iso14443crc.h"\r | |
18 | #include "iso14443a.h"\r | |
19 | #include "crapto1.h"\r | |
20 | #include "mifareutil.h"\r | |
21 | \r | |
22 | int MF_DBGLEVEL = MF_DBG_ALL;\r | |
23 | \r | |
24 | // memory management\r | |
25 | uint8_t* get_bigbufptr_recvrespbuf(void) {\r | |
26 | return (((uint8_t *)BigBuf) + RECV_RESP_OFFSET); \r | |
27 | }\r | |
28 | uint8_t* get_bigbufptr_recvcmdbuf(void) {\r | |
29 | return (((uint8_t *)BigBuf) + RECV_CMD_OFFSET); \r | |
30 | }\r | |
31 | uint8_t* get_bigbufptr_emlcardmem(void) {\r | |
32 | return (((uint8_t *)BigBuf) + CARD_MEMORY_OFFSET);\r | |
33 | }\r | |
34 | \r | |
35 | // crypto1 helpers\r | |
36 | void mf_crypto1_decrypt(struct Crypto1State *pcs, uint8_t *data, int len){\r | |
37 | uint8_t bt = 0;\r | |
38 | int i;\r | |
39 | \r | |
40 | if (len != 1) {\r | |
41 | for (i = 0; i < len; i++)\r | |
42 | data[i] = crypto1_byte(pcs, 0x00, 0) ^ data[i];\r | |
43 | } else {\r | |
44 | bt = 0;\r | |
45 | for (i = 0; i < 4; i++)\r | |
46 | bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data[0], i)) << i;\r | |
47 | \r | |
48 | data[0] = bt;\r | |
49 | }\r | |
50 | return;\r | |
51 | }\r | |
52 | \r | |
53 | void mf_crypto1_encrypt(struct Crypto1State *pcs, uint8_t *data, uint16_t len, uint8_t *par) {\r | |
54 | uint8_t bt = 0;\r | |
55 | int i;\r | |
56 | par[0] = 0;\r | |
57 | \r | |
58 | for (i = 0; i < len; i++) {\r | |
59 | bt = data[i];\r | |
60 | data[i] = crypto1_byte(pcs, 0x00, 0) ^ data[i];\r | |
61 | if((i&0x0007) == 0) \r | |
62 | par[i>>3] = 0;\r | |
63 | par[i>>3] |= (((filter(pcs->odd) ^ oddparity(bt)) & 0x01)<<(7-(i&0x0007)));\r | |
64 | } \r | |
65 | return;\r | |
66 | }\r | |
67 | \r | |
68 | uint8_t mf_crypto1_encrypt4bit(struct Crypto1State *pcs, uint8_t data) {\r | |
69 | uint8_t bt = 0;\r | |
70 | int i;\r | |
71 | \r | |
72 | for (i = 0; i < 4; i++)\r | |
73 | bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data, i)) << i;\r | |
74 | \r | |
75 | return bt;\r | |
76 | }\r | |
77 | \r | |
78 | // send commands\r | |
79 | int mifare_sendcmd_short(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t data, uint8_t* answer, uint8_t *answer_parity, uint32_t *timing)\r | |
80 | {\r | |
81 | return mifare_sendcmd_shortex(pcs, crypted, cmd, data, answer, answer_parity, timing); | |
82 | } | |
83 | ||
84 | int mifare_sendcmd_short_special(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t* data, uint8_t* answer, uint8_t *answer_parity, uint32_t *timing) | |
85 | { | |
86 | uint8_t dcmd[8]; | |
87 | dcmd[0] = cmd; | |
88 | dcmd[1] = data[0]; | |
89 | dcmd[2] = data[1]; | |
90 | dcmd[3] = data[2]; | |
91 | dcmd[4] = data[3]; | |
92 | dcmd[5] = data[4]; | |
93 | AppendCrc14443a(dcmd, 6); | |
94 | ReaderTransmit(dcmd, sizeof(dcmd), NULL); | |
95 | int len = ReaderReceive(answer, answer_parity); | |
96 | if(!len) { | |
97 | if (MF_DBGLEVEL >= 1) Dbprintf("Authentication failed. Card timeout."); | |
98 | return 2; | |
99 | }\r | |
100 | return len;\r | |
101 | }\r | |
102 | \r | |
103 | int mifare_sendcmd_short_mfucauth(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t *data, uint8_t *answer, uint8_t *answer_parity, uint32_t *timing)\r | |
104 | {\r | |
105 | uint8_t dcmd[19];\r | |
106 | int len; \r | |
107 | dcmd[0] = cmd;\r | |
108 | memcpy(dcmd+1,data,16);\r | |
109 | AppendCrc14443a(dcmd, 17);\r | |
110 | \r | |
111 | ReaderTransmit(dcmd, sizeof(dcmd), timing);\r | |
112 | len = ReaderReceive(answer, answer_parity);\r | |
113 | if(!len) {\r | |
114 | if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("Authentication failed. Card timeout.");\r | |
115 | len = ReaderReceive(answer,answer_parity);\r | |
116 | }\r | |
117 | if(len==1) {\r | |
118 | if (MF_DBGLEVEL >= MF_DBG_ERROR) Dbprintf("NAK - Authentication failed.");\r | |
119 | return 1;\r | |
120 | } | |
121 | return len; | |
122 | } | |
123 | ||
124 | int mifare_sendcmd_shortex(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t data, uint8_t *answer, uint8_t *answer_parity, uint32_t *timing) | |
125 | { | |
126 | uint8_t dcmd[4], ecmd[4]; | |
127 | uint16_t pos, res;\r | |
128 | uint8_t par[1]; // 1 Byte parity is enough here\r | |
129 | dcmd[0] = cmd;\r | |
130 | dcmd[1] = data;\r | |
131 | AppendCrc14443a(dcmd, 2);\r | |
132 | \r | |
133 | memcpy(ecmd, dcmd, sizeof(dcmd));\r | |
134 | \r | |
135 | if (crypted) {\r | |
136 | par[0] = 0;\r | |
137 | for (pos = 0; pos < 4; pos++)\r | |
138 | {\r | |
139 | ecmd[pos] = crypto1_byte(pcs, 0x00, 0) ^ dcmd[pos];\r | |
140 | par[0] |= (((filter(pcs->odd) ^ oddparity(dcmd[pos])) & 0x01) << (7-pos));\r | |
141 | } \r | |
142 | \r | |
143 | ReaderTransmitPar(ecmd, sizeof(ecmd), par, timing);\r | |
144 | \r | |
145 | } else {\r | |
146 | ReaderTransmit(dcmd, sizeof(dcmd), timing);\r | |
147 | }\r | |
148 | \r | |
149 | int len = ReaderReceive(answer, par);\r | |
150 | \r | |
151 | if (answer_parity) *answer_parity = par[0];\r | |
152 | \r | |
153 | if (crypted == CRYPT_ALL) {\r | |
154 | if (len == 1) {\r | |
155 | res = 0;\r | |
156 | for (pos = 0; pos < 4; pos++)\r | |
157 | res |= (crypto1_bit(pcs, 0, 0) ^ BIT(answer[0], pos)) << pos;\r | |
158 | \r | |
159 | answer[0] = res;\r | |
160 | \r | |
161 | } else {\r | |
162 | for (pos = 0; pos < len; pos++)\r | |
163 | {\r | |
164 | answer[pos] = crypto1_byte(pcs, 0x00, 0) ^ answer[pos];\r | |
165 | }\r | |
166 | }\r | |
167 | }\r | |
168 | \r | |
169 | return len;\r | |
170 | }\r | |
171 | \r | |
172 | // mifare classic commands\r | |
173 | int mifare_classic_auth(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t keyType, uint64_t ui64Key, uint8_t isNested) \r | |
174 | {\r | |
175 | return mifare_classic_authex(pcs, uid, blockNo, keyType, ui64Key, isNested, NULL, NULL);\r | |
176 | }\r | |
177 | \r | |
178 | int mifare_classic_authex(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t keyType, uint64_t ui64Key, uint8_t isNested, uint32_t *ntptr, uint32_t *timing) \r | |
179 | {\r | |
180 | // variables\r | |
181 | int len; \r | |
182 | uint32_t pos;\r | |
183 | uint8_t tmp4[4];\r | |
184 | uint8_t par[1] = {0x00};\r | |
185 | byte_t nr[4];\r | |
186 | uint32_t nt, ntpp; // Supplied tag nonce\r | |
187 | \r | |
188 | uint8_t mf_nr_ar[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 };\r | |
189 | uint8_t *receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
190 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
191 | \r | |
192 | // Transmit MIFARE_CLASSIC_AUTH\r | |
193 | len = mifare_sendcmd_short(pcs, isNested, 0x60 + (keyType & 0x01), blockNo, receivedAnswer, receivedAnswerPar, timing);\r | |
194 | if (MF_DBGLEVEL >= 4) Dbprintf("rand tag nonce len: %x", len); \r | |
195 | if (len != 4) return 1;\r | |
196 | \r | |
197 | // "random" reader nonce:\r | |
198 | nr[0] = 0x55;\r | |
199 | nr[1] = 0x41;\r | |
200 | nr[2] = 0x49;\r | |
201 | nr[3] = 0x92; \r | |
202 | \r | |
203 | // Save the tag nonce (nt)\r | |
204 | nt = bytes_to_num(receivedAnswer, 4);\r | |
205 | \r | |
206 | // ----------------------------- crypto1 create\r | |
207 | if (isNested)\r | |
208 | crypto1_destroy(pcs);\r | |
209 | \r | |
210 | // Init cipher with key\r | |
211 | crypto1_create(pcs, ui64Key);\r | |
212 | \r | |
213 | if (isNested == AUTH_NESTED) {\r | |
214 | // decrypt nt with help of new key \r | |
215 | nt = crypto1_word(pcs, nt ^ uid, 1) ^ nt;\r | |
216 | } else {\r | |
217 | // Load (plain) uid^nt into the cipher\r | |
218 | crypto1_word(pcs, nt ^ uid, 0);\r | |
219 | }\r | |
220 | \r | |
221 | // some statistic\r | |
222 | if (!ntptr && (MF_DBGLEVEL >= 3))\r | |
223 | Dbprintf("auth uid: %08x nt: %08x", uid, nt); \r | |
224 | \r | |
225 | // save Nt\r | |
226 | if (ntptr)\r | |
227 | *ntptr = nt;\r | |
228 | \r | |
229 | // Generate (encrypted) nr+parity by loading it into the cipher (Nr)\r | |
230 | par[0] = 0;\r | |
231 | for (pos = 0; pos < 4; pos++)\r | |
232 | {\r | |
233 | mf_nr_ar[pos] = crypto1_byte(pcs, nr[pos], 0) ^ nr[pos];\r | |
234 | par[0] |= (((filter(pcs->odd) ^ oddparity(nr[pos])) & 0x01) << (7-pos));\r | |
235 | } \r | |
236 | \r | |
237 | // Skip 32 bits in pseudo random generator\r | |
238 | nt = prng_successor(nt,32);\r | |
239 | \r | |
240 | // ar+parity\r | |
241 | for (pos = 4; pos < 8; pos++)\r | |
242 | {\r | |
243 | nt = prng_successor(nt,8);\r | |
244 | mf_nr_ar[pos] = crypto1_byte(pcs,0x00,0) ^ (nt & 0xff);\r | |
245 | par[0] |= (((filter(pcs->odd) ^ oddparity(nt & 0xff)) & 0x01) << (7-pos));\r | |
246 | } \r | |
247 | \r | |
248 | // Transmit reader nonce and reader answer\r | |
249 | ReaderTransmitPar(mf_nr_ar, sizeof(mf_nr_ar), par, NULL);\r | |
250 | \r | |
251 | // Receive 4 byte tag answer\r | |
252 | len = ReaderReceive(receivedAnswer, receivedAnswerPar);\r | |
253 | if (!len)\r | |
254 | {\r | |
255 | if (MF_DBGLEVEL >= 1) Dbprintf("Authentication failed. Card timeout.");\r | |
256 | return 2;\r | |
257 | }\r | |
258 | \r | |
259 | memcpy(tmp4, receivedAnswer, 4);\r | |
260 | ntpp = prng_successor(nt, 32) ^ crypto1_word(pcs, 0,0);\r | |
261 | \r | |
262 | if (ntpp != bytes_to_num(tmp4, 4)) {\r | |
263 | if (MF_DBGLEVEL >= 1) Dbprintf("Authentication failed. Error card response.");\r | |
264 | return 3;\r | |
265 | }\r | |
266 | \r | |
267 | return 0;\r | |
268 | }\r | |
269 | \r | |
270 | int mifare_classic_readblock(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t *blockData) \r | |
271 | {\r | |
272 | // variables\r | |
273 | int len; \r | |
274 | uint8_t bt[2];\r | |
275 | \r | |
276 | uint8_t* receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
277 | uint8_t* receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
278 | \r | |
279 | // command MIFARE_CLASSIC_READBLOCK\r | |
280 | len = mifare_sendcmd_short(pcs, 1, 0x30, blockNo, receivedAnswer, receivedAnswerPar, NULL);\r | |
281 | if (len == 1) {\r | |
282 | if (MF_DBGLEVEL >= 1) Dbprintf("Cmd Error: %02x", receivedAnswer[0]); \r | |
283 | return 1;\r | |
284 | }\r | |
285 | if (len != 18) {\r | |
286 | if (MF_DBGLEVEL >= 1) Dbprintf("Cmd Error: card timeout. len: %x", len); \r | |
287 | return 2;\r | |
288 | }\r | |
289 | \r | |
290 | memcpy(bt, receivedAnswer + 16, 2);\r | |
291 | AppendCrc14443a(receivedAnswer, 16);\r | |
292 | if (bt[0] != receivedAnswer[16] || bt[1] != receivedAnswer[17]) {\r | |
293 | if (MF_DBGLEVEL >= 1) Dbprintf("Cmd CRC response error."); \r | |
294 | return 3;\r | |
295 | }\r | |
296 | \r | |
297 | memcpy(blockData, receivedAnswer, 16);\r | |
298 | return 0; | |
299 | } | |
300 | ||
301 | // mifare ultralight commands\r | |
302 | int mifare_ultra_auth1(uint32_t uid, uint8_t *blockData){\r | |
303 | \r | |
304 | uint16_t len;\r | |
305 | uint8_t *receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
306 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
307 | \r | |
308 | len = mifare_sendcmd_short(NULL, 1, 0x1A, 0x00, receivedAnswer,receivedAnswerPar ,NULL);\r | |
309 | if (len == 1) {\r | |
310 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
311 | Dbprintf("Cmd Error: %02x", receivedAnswer[0]);\r | |
312 | return 1;\r | |
313 | }\r | |
314 | if (len != 11)\r | |
315 | return 1;\r | |
316 | \r | |
317 | if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {\r | |
318 | Dbprintf("Auth1 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",\r | |
319 | receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],\r | |
320 | receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],\r | |
321 | receivedAnswer[10]);\r | |
322 | }\r | |
323 | memcpy(blockData, receivedAnswer, 11);\r | |
324 | return 0;\r | |
325 | }\r | |
326 | \r | |
327 | int mifare_ultra_auth2(uint32_t uid, uint8_t *key, uint8_t *blockData){\r | |
328 | \r | |
329 | uint16_t len;\r | |
330 | uint8_t *receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
331 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
332 | \r | |
333 | len = mifare_sendcmd_short_mfucauth(NULL, 1, 0xAF, key, receivedAnswer, receivedAnswerPar, NULL);\r | |
334 | if (len == 1) {\r | |
335 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
336 | Dbprintf("Cmd Error: %02x", receivedAnswer[0]);\r | |
337 | return 1;\r | |
338 | }\r | |
339 | if (len != 11)\r | |
340 | return 1; \r | |
341 | \r | |
342 | if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {\r | |
343 | Dbprintf("Auth2 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",\r | |
344 | receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],\r | |
345 | receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],\r | |
346 | receivedAnswer[10]);\r | |
347 | }\r | |
348 | memcpy(blockData, receivedAnswer, 11);\r | |
349 | return 0;\r | |
350 | }\r | |
351 | \r | |
352 | int mifare_ultra_readblock(uint32_t uid, uint8_t blockNo, uint8_t *blockData) | |
353 | { | |
354 | uint16_t len; | |
355 | uint8_t bt[2]; | |
356 | uint8_t* receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
357 | uint8_t* receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE; | |
358 | ||
359 | \r | |
360 | // command MIFARE_CLASSIC_READBLOCK | |
361 | len = mifare_sendcmd_short(NULL, 1, 0x30, blockNo, receivedAnswer, receivedAnswerPar, NULL); | |
362 | if (len == 1) { | |
363 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
364 | Dbprintf("Cmd Error: %02x", receivedAnswer[0]); | |
365 | return 1; | |
366 | } | |
367 | if (len != 18) { | |
368 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
369 | Dbprintf("Cmd Error: card timeout. len: %x", len); | |
370 | return 2; | |
371 | } | |
372 | ||
373 | memcpy(bt, receivedAnswer + 16, 2); | |
374 | AppendCrc14443a(receivedAnswer, 16); | |
375 | if (bt[0] != receivedAnswer[16] || bt[1] != receivedAnswer[17]) { | |
376 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
377 | Dbprintf("Cmd CRC response error."); | |
378 | return 3; | |
379 | } | |
380 | ||
381 | memcpy(blockData, receivedAnswer, 14); | |
382 | return 0; | |
383 | } | |
384 | ||
385 | ||
386 | int mifare_classic_writeblock(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t *blockData) | |
387 | { | |
388 | // variables | |
389 | uint16_t len, i; \r | |
390 | uint32_t pos;\r | |
391 | uint8_t par[3] = {0}; // enough for 18 Bytes to send\r | |
392 | byte_t res;\r | |
393 | \r | |
394 | uint8_t d_block[18], d_block_enc[18];\r | |
395 | uint8_t* receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
396 | uint8_t* receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
397 | \r | |
398 | // command MIFARE_CLASSIC_WRITEBLOCK\r | |
399 | len = mifare_sendcmd_short(pcs, 1, 0xA0, blockNo, receivedAnswer, receivedAnswerPar, NULL);\r | |
400 | \r | |
401 | if ((len != 1) || (receivedAnswer[0] != 0x0A)) { // 0x0a - ACK\r | |
402 | if (MF_DBGLEVEL >= 1) Dbprintf("Cmd Error: %02x", receivedAnswer[0]); \r | |
403 | return 1;\r | |
404 | }\r | |
405 | \r | |
406 | memcpy(d_block, blockData, 16);\r | |
407 | AppendCrc14443a(d_block, 16);\r | |
408 | \r | |
409 | // crypto\r | |
410 | for (pos = 0; pos < 18; pos++)\r | |
411 | {\r | |
412 | d_block_enc[pos] = crypto1_byte(pcs, 0x00, 0) ^ d_block[pos];\r | |
413 | par[pos>>3] |= (((filter(pcs->odd) ^ oddparity(d_block[pos])) & 0x01) << (7 - (pos&0x0007)));\r | |
414 | } \r | |
415 | \r | |
416 | ReaderTransmitPar(d_block_enc, sizeof(d_block_enc), par, NULL);\r | |
417 | \r | |
418 | // Receive the response\r | |
419 | len = ReaderReceive(receivedAnswer, receivedAnswerPar); \r | |
420 | \r | |
421 | res = 0;\r | |
422 | for (i = 0; i < 4; i++)\r | |
423 | res |= (crypto1_bit(pcs, 0, 0) ^ BIT(receivedAnswer[0], i)) << i;\r | |
424 | \r | |
425 | if ((len != 1) || (res != 0x0A)) {\r | |
426 | if (MF_DBGLEVEL >= 1) Dbprintf("Cmd send data2 Error: %02x", res); \r | |
427 | return 2;\r | |
428 | }\r | |
429 | \r | |
430 | return 0; | |
431 | } | |
432 | ||
433 | int mifare_ultra_writeblock(uint32_t uid, uint8_t blockNo, uint8_t *blockData) | |
434 | { | |
435 | uint16_t len; | |
436 | uint8_t par[3] = {0}; // enough for 18 parity bits | |
437 | uint8_t d_block[18] = {0x00}; | |
438 | uint8_t* receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
439 | uint8_t* receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE; | |
440 | ||
441 | // command MIFARE_CLASSIC_WRITEBLOCK | |
442 | len = mifare_sendcmd_short(NULL, true, 0xA0, blockNo, receivedAnswer, receivedAnswerPar, NULL); | |
443 | ||
444 | if ((len != 1) || (receivedAnswer[0] != 0x0A)) { // 0x0a - ACK | |
445 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
446 | Dbprintf("Cmd Addr Error: %02x", receivedAnswer[0]); | |
447 | return 1; | |
448 | } | |
449 | ||
450 | memcpy(d_block, blockData, 16); | |
451 | AppendCrc14443a(d_block, 16); | |
452 | ||
453 | ReaderTransmitPar(d_block, sizeof(d_block), par, NULL); | |
454 | ||
455 | len = ReaderReceive(receivedAnswer, receivedAnswerPar); | |
456 | ||
457 | if ((len != 1) || (receivedAnswer[0] != 0x0A)) { // 0x0a - ACK | |
458 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
459 | Dbprintf("Cmd Data Error: %02x %d", receivedAnswer[0],len); | |
460 | return 2; | |
461 | } | |
462 | return 0; | |
463 | } | |
464 | ||
465 | int mifare_ultra_special_writeblock(uint32_t uid, uint8_t blockNo, uint8_t *blockData) | |
466 | { | |
467 | uint16_t len; | |
468 | uint8_t d_block[8] = {0x00}; | |
469 | uint8_t *receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
470 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE; | |
471 | ||
472 | // command MIFARE_CLASSIC_WRITEBLOCK | |
473 | d_block[0]= blockNo; | |
474 | memcpy(d_block+1,blockData,4); | |
475 | AppendCrc14443a(d_block, 6); | |
476 | ||
477 | len = mifare_sendcmd_short_special(NULL, 1, 0xA2, d_block, receivedAnswer, receivedAnswerPar, NULL); | |
478 | ||
479 | if (receivedAnswer[0] != 0x0A) { // 0x0a - ACK | |
480 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
481 | Dbprintf("Cmd Send Error: %02x %d", receivedAnswer[0],len); | |
482 | return 1; | |
483 | } | |
484 | \r return 0; | |
485 | } | |
486 | ||
487 | int mifare_classic_halt(struct Crypto1State *pcs, uint32_t uid) | |
488 | { | |
489 | uint16_t len; \r | |
490 | uint8_t *receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
491 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
492 | \r | |
493 | len = mifare_sendcmd_short(pcs, pcs == NULL ? false:true, 0x50, 0x00, receivedAnswer, receivedAnswerPar, NULL);\r | |
494 | if (len != 0) {\r | |
495 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
496 | Dbprintf("halt error. response len: %x", len); \r | |
497 | return 1;\r | |
498 | }\r | |
499 | \r | |
500 | return 0; | |
501 | } | |
502 | ||
503 | int mifare_ultra_halt(uint32_t uid) | |
504 | { | |
505 | uint16_t len; | |
506 | uint8_t *receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
507 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE; | |
508 | ||
509 | len = mifare_sendcmd_short(NULL, true, 0x50, 0x00, receivedAnswer, receivedAnswerPar, NULL); | |
510 | if (len != 0) { | |
511 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
512 | Dbprintf("halt error. response len: %x", len); | |
513 | return 1; | |
514 | } | |
515 | return 0; | |
516 | } | |
517 | ||
518 | \r | |
519 | // Mifare Memory Structure: up to 32 Sectors with 4 blocks each (1k and 2k cards),\r | |
520 | // plus evtl. 8 sectors with 16 blocks each (4k cards)\r | |
521 | uint8_t NumBlocksPerSector(uint8_t sectorNo) \r | |
522 | {\r | |
523 | if (sectorNo < 32) \r | |
524 | return 4;\r | |
525 | else\r | |
526 | return 16;\r | |
527 | }\r | |
528 | \r | |
529 | uint8_t FirstBlockOfSector(uint8_t sectorNo) \r | |
530 | {\r | |
531 | if (sectorNo < 32)\r | |
532 | return sectorNo * 4;\r | |
533 | else\r | |
534 | return 32*4 + (sectorNo - 32) * 16;\r | |
535 | \r | |
536 | }\r | |
537 | \r | |
538 | \r | |
539 | // work with emulator memory | |
540 | void emlSetMem(uint8_t *data, int blockNum, int blocksCount) { | |
541 | uint8_t* emCARD = get_bigbufptr_emlcardmem(); | |
542 | memcpy(emCARD + blockNum * 16, data, blocksCount * 16);\r | |
543 | }\r | |
544 | \r | |
545 | void emlGetMem(uint8_t *data, int blockNum, int blocksCount) {\r | |
546 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
547 | memcpy(data, emCARD + blockNum * 16, blocksCount * 16);\r | |
548 | }\r | |
549 | \r | |
550 | void emlGetMemBt(uint8_t *data, int bytePtr, int byteCount) {\r | |
551 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
552 | memcpy(data, emCARD + bytePtr, byteCount);\r | |
553 | }\r | |
554 | \r | |
555 | int emlCheckValBl(int blockNum) {\r | |
556 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
557 | uint8_t* data = emCARD + blockNum * 16;\r | |
558 | \r | |
559 | if ((data[0] != (data[4] ^ 0xff)) || (data[0] != data[8]) ||\r | |
560 | (data[1] != (data[5] ^ 0xff)) || (data[1] != data[9]) ||\r | |
561 | (data[2] != (data[6] ^ 0xff)) || (data[2] != data[10]) ||\r | |
562 | (data[3] != (data[7] ^ 0xff)) || (data[3] != data[11]) ||\r | |
563 | (data[12] != (data[13] ^ 0xff)) || (data[12] != data[14]) ||\r | |
564 | (data[12] != (data[15] ^ 0xff))\r | |
565 | ) \r | |
566 | return 1;\r | |
567 | return 0;\r | |
568 | }\r | |
569 | \r | |
570 | int emlGetValBl(uint32_t *blReg, uint8_t *blBlock, int blockNum) {\r | |
571 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
572 | uint8_t* data = emCARD + blockNum * 16;\r | |
573 | \r | |
574 | if (emlCheckValBl(blockNum)) {\r | |
575 | return 1;\r | |
576 | }\r | |
577 | \r | |
578 | memcpy(blReg, data, 4);\r | |
579 | *blBlock = data[12];\r | |
580 | return 0;\r | |
581 | }\r | |
582 | \r | |
583 | int emlSetValBl(uint32_t blReg, uint8_t blBlock, int blockNum) {\r | |
584 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
585 | uint8_t* data = emCARD + blockNum * 16;\r | |
586 | \r | |
587 | memcpy(data + 0, &blReg, 4);\r | |
588 | memcpy(data + 8, &blReg, 4);\r | |
589 | blReg = blReg ^ 0xffffffff;\r | |
590 | memcpy(data + 4, &blReg, 4);\r | |
591 | \r | |
592 | data[12] = blBlock;\r | |
593 | data[13] = blBlock ^ 0xff;\r | |
594 | data[14] = blBlock;\r | |
595 | data[15] = blBlock ^ 0xff;\r | |
596 | \r | |
597 | return 0;\r | |
598 | }\r | |
599 | \r | |
600 | uint64_t emlGetKey(int sectorNum, int keyType) {\r | |
601 | uint8_t key[6];\r | |
602 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
603 | \r | |
604 | memcpy(key, emCARD + 16 * (FirstBlockOfSector(sectorNum) + NumBlocksPerSector(sectorNum) - 1) + keyType * 10, 6);\r | |
605 | return bytes_to_num(key, 6);\r | |
606 | }\r | |
607 | \r | |
608 | void emlClearMem(void) {\r | |
609 | int b;\r | |
610 | \r | |
611 | const uint8_t trailer[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x80, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};\r | |
612 | const uint8_t uid[] = {0xe6, 0x84, 0x87, 0xf3, 0x16, 0x88, 0x04, 0x00, 0x46, 0x8e, 0x45, 0x55, 0x4d, 0x70, 0x41, 0x04};\r | |
613 | uint8_t* emCARD = get_bigbufptr_emlcardmem();\r | |
614 | \r | |
615 | memset(emCARD, 0, CARD_MEMORY_SIZE);\r | |
616 | \r | |
617 | // fill sectors trailer data\r | |
618 | for(b = 3; b < 256; b<127?(b+=4):(b+=16)) {\r | |
619 | emlSetMem((uint8_t *)trailer, b , 1);\r | |
620 | } \r | |
621 | \r | |
622 | // uid\r | |
623 | emlSetMem((uint8_t *)uid, 0, 1);\r | |
624 | return;\r | |
625 | }\r | |
626 | \r | |
627 | \r | |
628 | // Mifare desfire commands\r | |
629 | int mifare_sendcmd_special(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t* data, uint8_t* answer, uint8_t *answer_parity, uint32_t *timing)\r | |
630 | {\r | |
631 | uint8_t dcmd[5] = {0x00};\r | |
632 | dcmd[0] = cmd;\r | |
633 | memcpy(dcmd+1,data,2);\r | |
634 | AppendCrc14443a(dcmd, 3);\r | |
635 | \r | |
636 | ReaderTransmit(dcmd, sizeof(dcmd), NULL);\r | |
637 | int len = ReaderReceive(answer, answer_parity);\r | |
638 | if(!len) {\r | |
639 | if (MF_DBGLEVEL >= MF_DBG_ERROR) \r | |
640 | Dbprintf("Authentication failed. Card timeout.");\r | |
641 | return 1;\r | |
642 | }\r | |
643 | return len;\r | |
644 | }\r | |
645 | \r | |
646 | int mifare_sendcmd_special2(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t* data, uint8_t* answer,uint8_t *answer_parity, uint32_t *timing)\r | |
647 | {\r | |
648 | uint8_t dcmd[20] = {0x00};\r | |
649 | dcmd[0] = cmd;\r | |
650 | memcpy(dcmd+1,data,17);\r | |
651 | AppendCrc14443a(dcmd, 18);\r | |
652 | \r | |
653 | ReaderTransmit(dcmd, sizeof(dcmd), NULL);\r | |
654 | int len = ReaderReceive(answer, answer_parity);\r | |
655 | if(!len){\r | |
656 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
657 | Dbprintf("Authentication failed. Card timeout.");\r | |
658 | return 1;\r | |
659 | }\r | |
660 | return len;\r | |
661 | }\r | |
662 | \r | |
663 | int mifare_desfire_des_auth1(uint32_t uid, uint8_t *blockData){\r | |
664 | \r | |
665 | int len;\r | |
666 | // load key, keynumber\r | |
667 | uint8_t data[2]={0x0a, 0x00};\r | |
668 | uint8_t* receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
669 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
670 | \r | |
671 | len = mifare_sendcmd_special(NULL, 1, 0x02, data, receivedAnswer,receivedAnswerPar,NULL);\r | |
672 | if (len == 1) {\r | |
673 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
674 | Dbprintf("Cmd Error: %02x", receivedAnswer[0]);\r | |
675 | return 1;\r | |
676 | }\r | |
677 | \r | |
678 | if (len == 12) {\r | |
679 | if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {\r | |
680 | Dbprintf("Auth1 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",\r | |
681 | receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],\r | |
682 | receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],\r | |
683 | receivedAnswer[10],receivedAnswer[11]);\r | |
684 | }\r | |
685 | memcpy(blockData, receivedAnswer, 12);\r | |
686 | return 0;\r | |
687 | }\r | |
688 | return 1;\r | |
689 | }\r | |
690 | \r | |
691 | int mifare_desfire_des_auth2(uint32_t uid, uint8_t *key, uint8_t *blockData){\r | |
692 | \r | |
693 | int len;\r | |
694 | uint8_t data[17] = {0x00};\r | |
695 | data[0] = 0xAF;\r | |
696 | memcpy(data+1,key,16);\r | |
697 | \r | |
698 | uint8_t* receivedAnswer = get_bigbufptr_recvrespbuf();\r | |
699 | uint8_t *receivedAnswerPar = receivedAnswer + MAX_FRAME_SIZE;\r | |
700 | \r | |
701 | len = mifare_sendcmd_special2(NULL, 1, 0x03, data, receivedAnswer, receivedAnswerPar ,NULL);\r | |
702 | \r | |
703 | if ((receivedAnswer[0] == 0x03) && (receivedAnswer[1] == 0xae)) {\r | |
704 | if (MF_DBGLEVEL >= MF_DBG_ERROR)\r | |
705 | Dbprintf("Auth Error: %02x %02x", receivedAnswer[0], receivedAnswer[1]);\r | |
706 | return 1;\r | |
707 | }\r | |
708 | \r | |
709 | if (len == 12){\r | |
710 | if (MF_DBGLEVEL >= MF_DBG_EXTENDED) {\r | |
711 | Dbprintf("Auth2 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",\r | |
712 | receivedAnswer[0],receivedAnswer[1],receivedAnswer[2],receivedAnswer[3],receivedAnswer[4],\r | |
713 | receivedAnswer[5],receivedAnswer[6],receivedAnswer[7],receivedAnswer[8],receivedAnswer[9],\r | |
714 | receivedAnswer[10],receivedAnswer[11]);\r | |
715 | }\r | |
716 | memcpy(blockData, receivedAnswer, 12);\r | |
717 | return 0;\r | |
718 | }\r | |
719 | return 1;\r | |
720 | } |