]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/mifaredesfire.c
Create session key
[proxmark3-svn] / armsrc / mifaredesfire.c
1 #include "mifaredesfire.h"
2 #include "des.h"
3
4 #define MAX_APPLICATION_COUNT 28
5 #define MAX_FILE_COUNT 16
6 #define MAX_FRAME_SIZE 60
7 #define NOT_YET_AUTHENTICATED 255
8 #define FRAME_PAYLOAD_SIZE (MAX_FRAME_SIZE - 5)
9
10 // the block number for the ISO14443-4 PCB
11 uint8_t pcb_blocknum = 0;
12 // Deselect card by sending a s-block. the crc is precalced for speed
13 static uint8_t deselect_cmd[] = {0xc2,0xe0,0xb4};
14
15 //static uint8_t __msg[MAX_FRAME_SIZE] = { 0x0A, 0x00, 0x00, /* ..., */ 0x00 };
16 /* PCB CID CMD PAYLOAD */
17 //static uint8_t __res[MAX_FRAME_SIZE];
18
19 bool InitDesfireCard(){
20
21 // Make sure it is off.
22 // FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
23 // SpinDelay(300);
24
25 byte_t cardbuf[USB_CMD_DATA_SIZE];
26 memset(cardbuf,0,sizeof(cardbuf));
27
28 iso14a_set_tracing(TRUE);
29 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN);
30
31 iso14a_card_select_t *card = (iso14a_card_select_t*)cardbuf;
32 int len = iso14443a_select_card(NULL,card,NULL);
33
34 if (!len) {
35 if (MF_DBGLEVEL >= 1) {
36 Dbprintf("Can't select card");
37 }
38 OnError();
39 return false;
40 }
41 return true;
42 }
43
44 // ARG0 flag enums
45 enum {
46 NONE = 0x00,
47 INIT = 0x01,
48 DISCONNECT = 0x02,
49 CLEARTRACE = 0x04,
50 BAR = 0x08,
51 } CmdOptions ;
52
53 void MifareSendCommand(uint8_t arg0, uint8_t arg1, uint8_t *datain){
54
55 /* ARG0 contains flags.
56 0x01 = init card.
57 0x02 = Disconnect
58 0x03
59 */
60 uint8_t flags = arg0;
61 size_t datalen = arg1;
62 uint8_t resp[RECV_RES_SIZE];
63 memset(resp,0,sizeof(resp));
64
65 if (MF_DBGLEVEL >= 4) {
66 Dbprintf(" flags : %02X", flags);
67 Dbprintf(" len : %02X", datalen);
68 print_result(" RX : ", datain, datalen);
69 }
70
71 if ( flags & CLEARTRACE ){
72 iso14a_clear_trace();
73 }
74
75 if ( flags & INIT ){
76 if ( !InitDesfireCard() )
77 return;
78 }
79
80 int len = DesfireAPDU(datain, datalen, resp);
81 if (MF_DBGLEVEL >= 4) {
82 print_result("ERR <--: ", resp, len);
83 }
84
85 if ( !len ) {
86 OnError();
87 return;
88 }
89
90 // reset the pcb_blocknum,
91 pcb_blocknum = 0;
92
93 if ( flags & DISCONNECT ){
94 OnSuccess();
95 }
96
97 cmd_send(CMD_ACK,1,len,0,resp,len);
98 }
99
100 void MifareDesfireGetInformation(){
101
102 int len = 0;
103 uint8_t resp[USB_CMD_DATA_SIZE];
104 uint8_t dataout[USB_CMD_DATA_SIZE];
105 byte_t cardbuf[USB_CMD_DATA_SIZE];
106
107 memset(resp,0,sizeof(resp));
108 memset(dataout,0, sizeof(dataout));
109 memset(cardbuf,0,sizeof(cardbuf));
110
111 /*
112 1 = PCB 1
113 2 = cid 2
114 3 = desfire command 3
115 4-5 = crc 4 key
116 5-6 crc
117 PCB == 0x0A because sending CID byte.
118 CID == 0x00 first card?
119 */
120 iso14a_clear_trace();
121 iso14a_set_tracing(TRUE);
122 iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN);
123
124 // card select - information
125 iso14a_card_select_t *card = (iso14a_card_select_t*)cardbuf;
126 byte_t isOK = iso14443a_select_card(NULL, card, NULL);
127 if (isOK != 1) {
128 if (MF_DBGLEVEL >= 1) {
129 Dbprintf("Can't select card");
130 }
131 OnError();
132 return;
133 }
134
135 memcpy(dataout,card->uid,7);
136
137 LED_A_ON();
138 LED_B_OFF();
139 LED_C_OFF();
140
141 uint8_t cmd[] = {GET_VERSION};
142 size_t cmd_len = sizeof(cmd);
143
144 len = DesfireAPDU(cmd, cmd_len, resp);
145 if ( !len ) {
146 print_result("ERROR <--: ", resp, len);
147 OnError();
148 return;
149 }
150
151 LED_A_OFF();
152 LED_B_ON();
153 memcpy(dataout+7,resp+3,7);
154
155 // ADDITION_FRAME 1
156 cmd[0] = ADDITIONAL_FRAME;
157 len = DesfireAPDU(cmd, cmd_len, resp);
158 if ( !len ) {
159 print_result("ERROR <--: ", resp, len);
160 OnError();
161 return;
162 }
163
164 LED_B_OFF();
165 LED_C_ON();
166 memcpy(dataout+7+7,resp+3,7);
167
168 // ADDITION_FRAME 2
169 len = DesfireAPDU(cmd, cmd_len, resp);
170 if ( !len ) {
171 print_result("ERROR <--: ", resp, len);
172 OnError();
173 return;
174 }
175
176 memcpy(dataout+7+7+7,resp+3,14);
177
178 cmd_send(CMD_ACK,1,0,0,dataout,sizeof(dataout));
179
180 // reset the pcb_blocknum,
181 pcb_blocknum = 0;
182 OnSuccess();
183 }
184
185 void MifareDES_Auth1(uint8_t mode, uint8_t algo, uint8_t keyno, uint8_t *datain){
186
187 int len = 0;
188 //uint8_t PICC_MASTER_KEY8[8] = { 0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47};
189 uint8_t PICC_MASTER_KEY16[16] = { 0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f };
190 uint8_t null_key_data8[8] = {0x00};
191 //uint8_t null_key_data16[16] = {0x00};
192 //uint8_t new_key_data8[8] = { 0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77};
193 //uint8_t new_key_data16[16] = { 0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF};
194
195 //uint8_t* bigbuffer = mifare_get_bigbufptr();
196 uint8_t resp[256] = {0x00};
197 uint8_t IV[16] = {0x00};
198
199 size_t datalen = datain[0];
200
201 uint8_t cmd[40] = {0x00};
202 uint8_t encRndB[16] = {0x00};
203 uint8_t decRndB[16] = {0x00};
204 uint8_t nonce[16] = {0x00};
205 uint8_t both[32] = {0x00};
206 uint8_t encBoth[32] = {0x00};
207
208 InitDesfireCard();
209
210 LED_A_ON();
211 LED_B_OFF();
212 LED_C_OFF();
213
214 // 3 olika sätt att authenticera. AUTH (CRC16) , AUTH_ISO (CRC32) , AUTH_AES (CRC32)
215 // 4 olika crypto algo DES, 3DES, 3K3DES, AES
216 // 3 olika kommunikations sätt, PLAIN,MAC,CRYPTO
217
218 // des, nyckel 0,
219 switch (mode){
220 case 1:{
221 uint8_t keybytes[8];
222 uint8_t RndA[8] = {0x00};
223 uint8_t RndB[8] = {0x00};
224
225 if (datain[1] == 0xff){
226 memcpy(keybytes,null_key_data8,8);
227 } else{
228 memcpy(keybytes, datain+1, datalen);
229 }
230
231 struct desfire_key defaultkey = {0};
232 desfirekey_t key = &defaultkey;
233 Desfire_des_key_new(keybytes, key);
234
235 cmd[0] = AUTHENTICATE;
236 cmd[1] = keyno; //keynumber
237 len = DesfireAPDU(cmd, 2, resp);
238 if ( !len ) {
239 if (MF_DBGLEVEL >= 1) {
240 DbpString("Authentication failed. Card timeout.");
241 }
242 OnError();
243 return;
244 }
245
246 if ( resp[2] == 0xaf ){
247 } else {
248 DbpString("Authetication failed. Invalid key number.");
249 OnError();
250 return;
251 }
252
253 memcpy( encRndB, resp+3, 8);
254
255 des_dec(&decRndB, &encRndB, key->data);
256 memcpy(RndB, decRndB, 8);
257 rol(decRndB,8);
258
259 uint8_t decRndA[8] = {0x00};
260 memcpy(RndA, decRndA, 8);
261 uint8_t encRndA[8] = {0x00};
262
263 des_dec(&encRndA, &decRndA, key->data);
264
265 memcpy(both, encRndA, 8);
266
267 for (int x = 0; x < 8; x++) {
268 decRndB[x] = decRndB[x] ^ encRndA[x];
269
270 }
271
272 des_dec(&encRndB, &decRndB, key->data);
273
274 memcpy(both + 8, encRndB, 8);
275
276 cmd[0] = ADDITIONAL_FRAME;
277 memcpy(cmd+1, both, 16 );
278
279 len = DesfireAPDU(cmd, 17, resp);
280 if ( !len ) {
281 if (MF_DBGLEVEL >= 1) {
282 DbpString("Authentication failed. Card timeout.");
283 }
284 OnError();
285 return;
286 }
287
288 if ( resp[2] == 0x00 ){
289
290 struct desfire_key sessionKey = {0};
291 desfirekey_t skey = &sessionKey;
292 Desfire_session_key_new( RndA, RndB , key, skey );
293 print_result("SESSION : ", skey->data, 8);
294
295 } else {
296 DbpString("Authetication failed.");
297 OnError();
298 return;
299 }
300
301 memcpy(encRndA, resp+3, 8);
302 des_dec(&encRndA, &encRndA, key->data);
303 rol(decRndA,8);
304 for (int x = 0; x < 8; x++) {
305 if (decRndA[x] != encRndA[x]) {
306 DbpString("Authetication failed. Cannot varify PICC.");
307 OnError();
308 return;
309 }
310 }
311
312
313 }
314 break;
315 case 2:
316 //SendDesfireCommand(AUTHENTICATE_ISO, &keyno, resp);
317 break;
318 case 3:{
319
320 //defaultkey
321 uint8_t keybytes[16];
322 if (datain[1] == 0xff){
323 memcpy(keybytes,PICC_MASTER_KEY16,16);
324 } else{
325 memcpy(keybytes, datain+1, datalen);
326 }
327
328 struct desfire_key defaultkey = {0};
329 desfirekey_t key = &defaultkey;
330 Desfire_aes_key_new( keybytes, key);
331
332 AesCtx ctx;
333 if ( AesCtxIni(&ctx, IV, key->data, KEY128, CBC) < 0 ){
334 if( MF_DBGLEVEL >= 4) {
335 Dbprintf("AES context failed to init");
336 }
337 OnError();
338 return;
339 }
340
341 cmd[0] = AUTHENTICATE_AES;
342 cmd[1] = 0x00; //keynumber
343 len = DesfireAPDU(cmd, 2, resp);
344 if ( !len ) {
345 if (MF_DBGLEVEL >= 1) {
346 DbpString("Authentication failed. Card timeout.");
347 }
348 OnError();
349 return;
350 }
351
352 memcpy( encRndB, resp+3, 16);
353
354 // dekryptera tagnonce.
355 AesDecrypt(&ctx, encRndB, decRndB, 16);
356 rol(decRndB,16);
357 memcpy(both, nonce,16);
358 memcpy(both+16, decRndB ,16 );
359 AesEncrypt(&ctx, both, encBoth, 32 );
360
361 cmd[0] = ADDITIONAL_FRAME;
362 memcpy(cmd+1, encBoth, 32 );
363
364 len = DesfireAPDU(cmd, 33, resp); // 1 + 32 == 33
365 if ( !len ) {
366 if (MF_DBGLEVEL >= 1) {
367 DbpString("Authentication failed. Card timeout.");
368 }
369 OnError();
370 return;
371 }
372
373 if ( resp[2] == 0x00 ){
374 // Create AES Session key
375 struct desfire_key sessionKey = {0};
376 desfirekey_t skey = &sessionKey;
377 Desfire_session_key_new( nonce, decRndB , key, skey );
378 print_result("SESSION : ", skey->data, 16);
379 } else {
380 DbpString("Authetication failed.");
381 OnError();
382 return;
383 }
384
385 break;
386 }
387 }
388
389 OnSuccess();
390 cmd_send(CMD_ACK,1,len,0,resp,len);
391 }
392
393 // 3 olika ISO sätt att skicka data till DESFIRE (direkt, inkapslat, inkapslat ISO)
394 // cmd = cmd bytes to send
395 // cmd_len = length of cmd
396 // dataout = pointer to response data array
397 int DesfireAPDU(uint8_t *cmd, size_t cmd_len, uint8_t *dataout){
398
399 uint32_t status = 0;
400 size_t wrappedLen = 0;
401 uint8_t wCmd[USB_CMD_DATA_SIZE] = {0};
402
403 wrappedLen = CreateAPDU( cmd, cmd_len, wCmd);
404
405 if (MF_DBGLEVEL >= 4) {
406 print_result("WCMD <--: ", wCmd, wrappedLen);
407 }
408 ReaderTransmit( wCmd, wrappedLen, NULL);
409
410 status = ReaderReceive(dataout);
411
412 if( status == 0x00){
413 if (MF_DBGLEVEL >= 4) {
414 Dbprintf("fukked");
415 }
416 return FALSE; //DATA LINK ERROR
417 }
418 // if we received an I- or R(ACK)-Block with a block number equal to the
419 // current block number, toggle the current block number
420 else if (status >= 4 // PCB+CID+CRC = 4 bytes
421 && ((dataout[0] & 0xC0) == 0 // I-Block
422 || (dataout[0] & 0xD0) == 0x80) // R-Block with ACK bit set to 0
423 && (dataout[0] & 0x01) == pcb_blocknum) // equal block numbers
424 {
425 pcb_blocknum ^= 1; //toggle next block
426 }
427 return status;
428 }
429
430 // CreateAPDU
431 size_t CreateAPDU( uint8_t *datain, size_t len, uint8_t *dataout){
432
433 size_t cmdlen = MIN(len+4, USB_CMD_DATA_SIZE-1);
434
435 uint8_t cmd[cmdlen];
436 memset(cmd, 0, cmdlen);
437
438 cmd[0] = 0x0A; // 0x0A = skicka cid, 0x02 = ingen cid. Särskilda bitar //
439 cmd[0] |= pcb_blocknum; // OR the block number into the PCB
440 cmd[1] = 0x00; // CID: 0x00 //FIXME: allow multiple selected cards
441
442 memcpy(cmd+2, datain, len);
443 AppendCrc14443a(cmd, len+2);
444
445 memcpy(dataout, cmd, cmdlen);
446
447 return cmdlen;
448 }
449
450 // crc_update(&desfire_crc32, 0, 1); /* CMD_WRITE */
451 // crc_update(&desfire_crc32, addr, addr_sz);
452 // crc_update(&desfire_crc32, byte, 8);
453 // uint32_t crc = crc_finish(&desfire_crc32);
454
455 void OnSuccess(){
456 pcb_blocknum = 0;
457 ReaderTransmit(deselect_cmd, 3 , NULL);
458 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
459 LEDsoff();
460 }
461
462 void OnError(){
463 pcb_blocknum = 0;
464 ReaderTransmit(deselect_cmd, 3 , NULL);
465 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
466 cmd_send(CMD_ACK,0,0,0,0,0);
467 LEDsoff();
468 }
Impressum, Datenschutz