]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhflegic.c
FIX: the acknowledgement response in setup phase now deals with MIN22, MIN256, MIN10...
[proxmark3-svn] / client / cmdhflegic.c
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
2// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3//
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// High frequency Legic commands
9//-----------------------------------------------------------------------------
7fe9b0b7 10#include "cmdhflegic.h"
3e134b4c 11
7fe9b0b7 12static int CmdHelp(const char *Cmd);
13
ffa306de 14#define SESSION_IV 0x55
15#define MAX_LENGTH 1024
16
3b920280 17int usage_legic_calccrc8(void){
3e134b4c 18 PrintAndLog("Calculates the legic crc8/crc16 on the input hexbytes.");
3b920280 19 PrintAndLog("There must be an even number of hexsymbols as input.");
514ddaa2 20 PrintAndLog("Usage: hf legic crc8 [h] b <hexbytes> u <uidcrc> c <crc type>");
21 PrintAndLog("Options:");
ffa306de 22 PrintAndLog(" h : this help");
3e134b4c 23 PrintAndLog(" b <hexbytes> : hex bytes");
24 PrintAndLog(" u <uidcrc> : MCC hexbyte");
514ddaa2 25 PrintAndLog(" c <crc type> : 8|16 bit crc size");
3b920280 26 PrintAndLog("");
514ddaa2 27 PrintAndLog("Samples:");
3e134b4c 28 PrintAndLog(" hf legic crc8 b deadbeef1122");
514ddaa2 29 PrintAndLog(" hf legic crc8 b deadbeef1122 u 9A c 16");
3b920280 30 return 0;
31}
e579e768 32int usage_legic_load(void){
33 PrintAndLog("It loads datasamples from the file `filename` to device memory");
ffa306de 34 PrintAndLog("Usage: hf legic load [h] <file name>");
35 PrintAndLog("Options:");
36 PrintAndLog(" h : this help");
37 PrintAndLog(" <filename> : Name of file to load");
514ddaa2 38 PrintAndLog("");
39 PrintAndLog("Samples:");
40 PrintAndLog(" hf legic load filename");
e579e768 41 return 0;
42}
cbdcc89a 43int usage_legic_read(void){
44 PrintAndLog("Read data from a legic tag.");
ffa306de 45 PrintAndLog("Usage: hf legic read [h] <offset> <length> <IV>");
514ddaa2 46 PrintAndLog("Options:");
ffa306de 47 PrintAndLog(" h : this help");
48 PrintAndLog(" <offset> : offset in data array to start download from");
49 PrintAndLog(" <length> : number of bytes to download");
50 PrintAndLog(" <IV> : (optional) Initialization vector to use");
cbdcc89a 51 PrintAndLog("");
514ddaa2 52 PrintAndLog("Samples:");
53 PrintAndLog(" hf legic read");
ffa306de 54 PrintAndLog(" hf legic read 10 4");
cbdcc89a 55 return 0;
56}
e8fecd72 57int usage_legic_sim(void){
ffa306de 58 PrintAndLog("Missing help text.");
59 return 0;
60}
61int usage_legic_write(void){
62 PrintAndLog(" Write sample buffer to a legic tag. (use after load or read)");
63 PrintAndLog("Usage: hf legic write [h] <offset> <length> <IV>");
64 PrintAndLog("Options:");
65 PrintAndLog(" h : this help");
66 PrintAndLog(" <offset> : offset in data array to start writing from");
67 PrintAndLog(" <length> : number of bytes to write");
68 PrintAndLog(" <IV> : (optional) Initialization vector to use");
69 PrintAndLog("");
70 PrintAndLog("Samples:");
71 PrintAndLog(" hf legic write");
72 PrintAndLog(" hf legic write 10 4");
e8fecd72 73 return 0;
74}
75int usage_legic_rawwrite(void){
ffa306de 76 PrintAndLog("Write raw data direct to a specific address on legic tag.");
77 PrintAndLog("Usage: hf legic writeraw [h] <address> <value> <IV>");
78 PrintAndLog("Options:");
79 PrintAndLog(" h : this help");
80 PrintAndLog(" <address> : address to write to");
81 PrintAndLog(" <value> : value to write");
82 PrintAndLog(" <IV> : (optional) Initialization vector to use");
83 PrintAndLog("");
84 PrintAndLog("Samples:");
85 PrintAndLog(" hf legic writeraw");
86 PrintAndLog(" hf legic writeraw 10 4");
e8fecd72 87 return 0;
88}
89int usage_legic_fill(void){
ffa306de 90 PrintAndLog("Missing help text.");
e8fecd72 91 return 0;
92}
93
669c1b80 94/*
95 * Output BigBuf and deobfuscate LEGIC RF tag data.
cbdcc89a 96 * This is based on information given in the talk held
669c1b80 97 * by Henryk Ploetz and Karsten Nohl at 26c3
669c1b80 98 */
3b920280 99int CmdLegicDecode(const char *Cmd) {
e8fecd72 100
101 int i = 0, k = 0, segmentNum = 0, segment_len = 0, segment_flag = 0;
102 int crc = 0, wrp = 0, wrc = 0;
60bb5ef7 103 uint8_t stamp_len = 0;
e8fecd72 104 uint8_t data_buf[1052]; // receiver buffer
105 char token_type[5] = {0,0,0,0,0};
106 int dcf = 0;
3e134b4c 107 int bIsSegmented = 0;
52cf34c1 108
cbdcc89a 109 // download EML memory, where the "legic read" command puts the data.
c71c5ee1 110 // copy data from proxmark into buffer
111 GetFromBigBuf(data_buf,sizeof(data_buf),0);
f7f844d0 112 if ( !WaitForResponseTimeout(CMD_ACK, NULL, 2000)){
113 PrintAndLog("Command execute timeout");
114 return 1;
115 }
116
52cf34c1 117 // Output CDF System area (9 bytes) plus remaining header area (12 bytes)
3b920280 118 crc = data_buf[4];
119 uint32_t calc_crc = CRC8Legic(data_buf, 4);
120
52cf34c1 121 PrintAndLog("\nCDF: System Area");
aacb96d7 122 PrintAndLog("------------------------------------------------------");
3b920280 123 PrintAndLog("MCD: %02x, MSN: %02x %02x %02x, MCC: %02x %s",
52cf34c1 124 data_buf[0],
125 data_buf[1],
126 data_buf[2],
127 data_buf[3],
3b920280 128 data_buf[4],
e579e768 129 (calc_crc == crc) ? "OK":"Fail"
52cf34c1 130 );
669c1b80 131
3e134b4c 132
133 token_type[0] = 0;
134 dcf = ((int)data_buf[6] << 8) | (int)data_buf[5];
135
136 // New unwritten media?
137 if(dcf == 0xFFFF) {
138
139 PrintAndLog("DCF: %d (%02x %02x), Token Type=NM (New Media)",
140 dcf,
141 data_buf[5],
142 data_buf[6]
143 );
144
145 } else if(dcf > 60000) { // Master token?
146
147 int fl = 0;
148
149 if(data_buf[6] == 0xec) {
150 strncpy(token_type, "XAM", sizeof(token_type));
151 fl = 1;
152 stamp_len = 0x0c - (data_buf[5] >> 4);
153 } else {
e8fecd72 154 switch (data_buf[5] & 0x7f) {
155 case 0x00 ... 0x2f:
156 strncpy(token_type, "IAM", sizeof(token_type));
157 fl = (0x2f - (data_buf[5] & 0x7f)) + 1;
158 break;
159 case 0x30 ... 0x6f:
160 strncpy(token_type, "SAM", sizeof(token_type));
161 fl = (0x6f - (data_buf[5] & 0x7f)) + 1;
162 break;
163 case 0x70 ... 0x7f:
164 strncpy(token_type, "GAM", sizeof(token_type));
165 fl = (0x7f - (data_buf[5] & 0x7f)) + 1;
166 break;
167 }
52cf34c1 168
e8fecd72 169 stamp_len = 0xfc - data_buf[6];
3e134b4c 170 }
52cf34c1 171
3e134b4c 172 PrintAndLog("DCF: %d (%02x %02x), Token Type=%s (OLE=%01u), OL=%02u, FL=%02u",
173 dcf,
e8fecd72 174 data_buf[5],
175 data_buf[6],
176 token_type,
177 (data_buf[5] & 0x80 )>> 7,
3e134b4c 178 stamp_len,
179 fl
e8fecd72 180 );
52cf34c1 181
e8fecd72 182 } else { // Is IM(-S) type of card...
3e134b4c 183
184 if(data_buf[7] == 0x9F && data_buf[8] == 0xFF) {
185 bIsSegmented = 1;
186 strncpy(token_type, "IM-S", sizeof(token_type));
187 } else {
188 strncpy(token_type, "IM", sizeof(token_type));
189 }
190
191 PrintAndLog("DCF: %d (%02x %02x), Token Type=%s (OLE=%01u)",
192 dcf,
193 data_buf[5],
194 data_buf[6],
195 token_type,
e8fecd72 196 (data_buf[5]&0x80) >> 7
3e134b4c 197 );
198 }
199
200 // Makes no sence to show this on blank media...
201 if(dcf != 0xFFFF) {
202
203 if(bIsSegmented) {
204 PrintAndLog("WRP=%02u, WRC=%01u, RD=%01u, SSC=%02x",
e8fecd72 205 data_buf[7] & 0x0f,
206 (data_buf[7] & 0x70) >> 4,
207 (data_buf[7] & 0x80) >> 7,
208 data_buf[8]
209 );
3e134b4c 210 }
52cf34c1 211
3e134b4c 212 // Header area is only available on IM-S cards, on master tokens this data is the master token data itself
213 if(bIsSegmented || dcf > 60000) {
214 if(dcf > 60000) {
215 PrintAndLog("Master token data");
216 PrintAndLog("%s", sprint_hex(data_buf+8, 14));
217 } else {
e8fecd72 218 PrintAndLog("Remaining Header Area");
219 PrintAndLog("%s", sprint_hex(data_buf+9, 13));
3e134b4c 220 }
221 }
222 }
d7fd9084 223
e8fecd72 224 uint8_t segCrcBytes[8] = {0,0,0,0,0,0,0,0};
e579e768 225 uint32_t segCalcCRC = 0;
226 uint32_t segCRC = 0;
d7fd9084 227
3e134b4c 228 // Data card?
229 if(dcf <= 60000) {
cbdcc89a 230
e8fecd72 231 PrintAndLog("\nADF: User Area");
232 PrintAndLog("------------------------------------------------------");
3e134b4c 233
234 if(bIsSegmented) {
235
236 // Data start point on segmented cards
e8fecd72 237 i = 22;
3e134b4c 238
239 // decode segments
240 for (segmentNum=1; segmentNum < 128; segmentNum++ )
241 {
26778ea7 242 segment_len = ((data_buf[i+1] ^ crc) & 0x0f) * 256 + (data_buf[i] ^ crc);
243 segment_flag = ((data_buf[i+1] ^ crc) & 0xf0) >> 4;
244 wrp = (data_buf[i+2] ^ crc);
245 wrc = ((data_buf[i+3] ^ crc) & 0x70) >> 4;
e8fecd72 246
247 bool hasWRC = (wrc > 0);
248 bool hasWRP = (wrp > wrc);
249 int wrp_len = (wrp - wrc);
250 int remain_seg_payload_len = (segment_len - wrp - 5);
e579e768 251
e8fecd72 252 // validate segment-crc
253 segCrcBytes[0]=data_buf[0]; //uid0
254 segCrcBytes[1]=data_buf[1]; //uid1
255 segCrcBytes[2]=data_buf[2]; //uid2
256 segCrcBytes[3]=data_buf[3]; //uid3
26778ea7 257 segCrcBytes[4]=(data_buf[i] ^ crc); //hdr0
258 segCrcBytes[5]=(data_buf[i+1] ^ crc); //hdr1
259 segCrcBytes[6]=(data_buf[i+2] ^ crc); //hdr2
260 segCrcBytes[7]=(data_buf[i+3] ^ crc); //hdr3
e8fecd72 261
262 segCalcCRC = CRC8Legic(segCrcBytes, 8);
26778ea7 263 segCRC = data_buf[i+4] ^ crc;
e8fecd72 264
265 PrintAndLog("Segment %02u \nraw header | 0x%02X 0x%02X 0x%02X 0x%02X \nSegment len: %u, Flag: 0x%X (valid:%01u, last:%01u), WRP: %02u, WRC: %02u, RD: %01u, CRC: 0x%02X (%s)",
266 segmentNum,
26778ea7 267 data_buf[i] ^ crc,
268 data_buf[i+1] ^ crc,
269 data_buf[i+2] ^ crc,
270 data_buf[i+3] ^ crc,
e8fecd72 271 segment_len,
272 segment_flag,
273 (segment_flag & 0x4) >> 2,
274 (segment_flag & 0x8) >> 3,
275 wrp,
276 wrc,
277 ((data_buf[i+3]^crc) & 0x80) >> 7,
278 segCRC,
279 ( segCRC == segCalcCRC ) ? "OK" : "fail"
280 );
281
282 i += 5;
669c1b80 283
e8fecd72 284 if ( hasWRC ) {
285 PrintAndLog("WRC protected area: (I %d | K %d| WRC %d)", i, k, wrc);
286 PrintAndLog("\nrow | data");
287 PrintAndLog("-----+------------------------------------------------");
3e134b4c 288
26778ea7 289 for ( k=i; k < (i + wrc); ++k)
e8fecd72 290 data_buf[k] ^= crc;
3e134b4c 291
e8fecd72 292 print_hex_break( data_buf+i, wrc, 16);
3b920280 293
e8fecd72 294 i += wrc;
295 }
669c1b80 296
e8fecd72 297 if ( hasWRP ) {
298 PrintAndLog("Remaining write protected area: (I %d | K %d | WRC %d | WRP %d WRP_LEN %d)",i, k, wrc, wrp, wrp_len);
299 PrintAndLog("\nrow | data");
300 PrintAndLog("-----+------------------------------------------------");
d7fd9084 301
3e134b4c 302 for (k=i; k < (i+wrp_len); ++k)
e8fecd72 303 data_buf[k] ^= crc;
3b920280 304
e8fecd72 305 print_hex_break( data_buf+i, wrp_len, 16);
3b920280 306
e8fecd72 307 i += wrp_len;
d7fd9084 308
3e134b4c 309 // does this one work? (Answer: Only if KGH/BGH is used with BCD encoded card number! So maybe this will show just garbage...)
e8fecd72 310 if( wrp_len == 8 )
311 PrintAndLog("Card ID: %2X%02X%02X", data_buf[i-4]^crc, data_buf[i-3]^crc, data_buf[i-2]^crc);
312 }
669c1b80 313
e8fecd72 314 PrintAndLog("Remaining segment payload: (I %d | K %d | Remain LEN %d)", i, k, remain_seg_payload_len);
315 PrintAndLog("\nrow | data");
316 PrintAndLog("-----+------------------------------------------------");
3e134b4c 317
318 for ( k=i; k < (i+remain_seg_payload_len); ++k)
e8fecd72 319 data_buf[k] ^= crc;
3b920280 320
e8fecd72 321 print_hex_break( data_buf+i, remain_seg_payload_len, 16);
669c1b80 322
e8fecd72 323 i += remain_seg_payload_len;
d7fd9084 324
e8fecd72 325 PrintAndLog("-----+------------------------------------------------\n");
a182a680 326
e8fecd72 327 // end with last segment
328 if (segment_flag & 0x8) return 0;
52cf34c1 329
e8fecd72 330 } // end for loop
3e134b4c 331
332 } else {
333
334 // Data start point on unsegmented cards
335 i = 8;
336
e8fecd72 337 wrp = data_buf[7] & 0x0F;
26778ea7 338 wrc = (data_buf[7] & 0x70) >> 4;
3e134b4c 339
340 bool hasWRC = (wrc > 0);
341 bool hasWRP = (wrp > wrc);
342 int wrp_len = (wrp - wrc);
343 int remain_seg_payload_len = (1024 - 22 - wrp); // Any chance to get physical card size here!?
344
345 PrintAndLog("Unsegmented card - WRP: %02u, WRC: %02u, RD: %01u",
346 wrp,
347 wrc,
348 (data_buf[7] & 0x80) >> 7
349 );
350
351 if ( hasWRC ) {
352 PrintAndLog("WRC protected area: (I %d | WRC %d)", i, wrc);
353 PrintAndLog("\nrow | data");
354 PrintAndLog("-----+------------------------------------------------");
355 print_hex_break( data_buf+i, wrc, 16);
356 i += wrc;
357 }
358
359 if ( hasWRP ) {
360 PrintAndLog("Remaining write protected area: (I %d | WRC %d | WRP %d | WRP_LEN %d)", i, wrc, wrp, wrp_len);
361 PrintAndLog("\nrow | data");
362 PrintAndLog("-----+------------------------------------------------");
e8fecd72 363 print_hex_break( data_buf + i, wrp_len, 16);
3e134b4c 364 i += wrp_len;
365
366 // does this one work? (Answer: Only if KGH/BGH is used with BCD encoded card number! So maybe this will show just garbage...)
367 if( wrp_len == 8 )
368 PrintAndLog("Card ID: %2X%02X%02X", data_buf[i-4], data_buf[i-3], data_buf[i-2]);
369 }
370
371 PrintAndLog("Remaining segment payload: (I %d | Remain LEN %d)", i, remain_seg_payload_len);
372 PrintAndLog("\nrow | data");
373 PrintAndLog("-----+------------------------------------------------");
e8fecd72 374 print_hex_break( data_buf + i, remain_seg_payload_len, 16);
3e134b4c 375 i += remain_seg_payload_len;
376
377 PrintAndLog("-----+------------------------------------------------\n");
378 }
379 }
52cf34c1 380 return 0;
669c1b80 381}
41dab153 382
52cf34c1 383int CmdLegicRFRead(const char *Cmd) {
ffa306de 384
cbdcc89a 385 // params:
386 // offset in data
387 // number of bytes.
388 char cmdp = param_getchar(Cmd, 0);
389 if ( cmdp == 'H' || cmdp == 'h' ) return usage_legic_read();
390
ffa306de 391 uint32_t offset = 0, len = 0, IV = 0;
392 sscanf(Cmd, "%x %x %x", &offset, &len, &IV);
52cf34c1 393
ffa306de 394 // OUT-OF-BOUNDS check
395 if(len + offset > MAX_LENGTH) len = MAX_LENGTH - offset;
396
397 IV &= 0x7F;
398 PrintAndLog("Current IV: 0x%02x", IV);
399
400 UsbCommand c= {CMD_READER_LEGIC_RF, {offset, len, IV}};
52cf34c1 401 clearCommandBuffer();
402 SendCommand(&c);
403 return 0;
41dab153 404}
3612a8a8 405
52cf34c1 406int CmdLegicLoad(const char *Cmd) {
e8fecd72 407
408// iceman: potential bug, where all filepaths or filename which starts with H or h will print the helptext :)
52cf34c1 409 char cmdp = param_getchar(Cmd, 0);
e579e768 410 if ( cmdp == 'H' || cmdp == 'h' || cmdp == 0x00) return usage_legic_load();
b915fda3 411
e579e768 412 char filename[FILE_PATH_SIZE] = {0x00};
413 int len = strlen(Cmd);
414
b915fda3 415 if (len > FILE_PATH_SIZE) {
416 PrintAndLog("Filepath too long (was %s bytes), max allowed is %s ", len, FILE_PATH_SIZE);
417 return 0;
418 }
419 memcpy(filename, Cmd, len);
420
421 FILE *f = fopen(filename, "r");
3612a8a8 422 if(!f) {
423 PrintAndLog("couldn't open '%s'", Cmd);
424 return -1;
425 }
52cf34c1 426
427 char line[80];
810f5379 428 int offset = 0;
c6e0a2eb 429 uint8_t data[USB_CMD_DATA_SIZE] = {0x00};
430 int index = 0;
431 int totalbytes = 0;
52cf34c1 432 while ( fgets(line, sizeof(line), f) ) {
3612a8a8 433 int res = sscanf(line, "%x %x %x %x %x %x %x %x",
c6e0a2eb 434 (unsigned int *)&data[index],
435 (unsigned int *)&data[index + 1],
436 (unsigned int *)&data[index + 2],
437 (unsigned int *)&data[index + 3],
438 (unsigned int *)&data[index + 4],
439 (unsigned int *)&data[index + 5],
440 (unsigned int *)&data[index + 6],
441 (unsigned int *)&data[index + 7]);
e7d099dc 442
3612a8a8 443 if(res != 8) {
444 PrintAndLog("Error: could not read samples");
445 fclose(f);
446 return -1;
447 }
c6e0a2eb 448 index += res;
449
450 if ( index == USB_CMD_DATA_SIZE ){
451// PrintAndLog("sent %d | %d | %d", index, offset, totalbytes);
452 UsbCommand c = { CMD_DOWNLOADED_SIM_SAMPLES_125K, {offset, 0, 0}};
453 memcpy(c.d.asBytes, data, sizeof(data));
454 clearCommandBuffer();
455 SendCommand(&c);
d7fd9084 456 if ( !WaitForResponseTimeout(CMD_ACK, NULL, 1500)){
457 PrintAndLog("Command execute timeout");
458 fclose(f);
459 return 1;
460 }
c6e0a2eb 461 offset += index;
462 totalbytes += index;
463 index = 0;
464 }
3612a8a8 465 }
466 fclose(f);
c6e0a2eb 467
468 // left over bytes?
469 if ( index != 0 ) {
470 UsbCommand c = { CMD_DOWNLOADED_SIM_SAMPLES_125K, {offset, 0, 0}};
471 memcpy(c.d.asBytes, data, 8);
472 clearCommandBuffer();
473 SendCommand(&c);
d7fd9084 474 if ( !WaitForResponseTimeout(CMD_ACK, NULL, 1500)){
475 PrintAndLog("Command execute timeout");
476 return 1;
477 }
c6e0a2eb 478 totalbytes += index;
479 }
480
481 PrintAndLog("loaded %u samples", totalbytes);
3612a8a8 482 return 0;
483}
484
52cf34c1 485int CmdLegicSave(const char *Cmd) {
486 int requested = 1024;
487 int offset = 0;
488 int delivered = 0;
e8fecd72 489 char filename[FILE_PATH_SIZE] = {0x00};
52cf34c1 490 uint8_t got[1024] = {0x00};
491
e8fecd72 492 memset(filename, 0, FILE_PATH_SIZE);
493
52cf34c1 494 sscanf(Cmd, " %s %i %i", filename, &requested, &offset);
495
496 /* If no length given save entire legic read buffer */
497 /* round up to nearest 8 bytes so the saved data can be used with legicload */
e7d099dc 498 if (requested == 0)
52cf34c1 499 requested = 1024;
52cf34c1 500
501 if (requested % 8 != 0) {
502 int remainder = requested % 8;
503 requested = requested + 8 - remainder;
504 }
505
506 if (offset + requested > sizeof(got)) {
507 PrintAndLog("Tried to read past end of buffer, <bytes> + <offset> > 1024");
508 return 0;
509 }
510
d7fd9084 511 GetFromBigBuf(got, requested, offset);
f7f844d0 512 if ( !WaitForResponseTimeout(CMD_ACK, NULL, 2000)){
aacb96d7 513 PrintAndLog("Command execute timeout");
f7f844d0 514 return 1;
515 }
52cf34c1 516
aacb96d7 517 FILE *f = fopen(filename, "w");
518 if(!f) {
519 PrintAndLog("couldn't open '%s'", Cmd+1);
520 return -1;
521 }
522
52cf34c1 523 for (int j = 0; j < requested; j += 8) {
524 fprintf(f, "%02x %02x %02x %02x %02x %02x %02x %02x\n",
c6e0a2eb 525 got[j+0], got[j+1], got[j+2], got[j+3],
526 got[j+4], got[j+5], got[j+6], got[j+7]
52cf34c1 527 );
528 delivered += 8;
529 if (delivered >= requested) break;
530 }
531
532 fclose(f);
533 PrintAndLog("saved %u samples", delivered);
534 return 0;
3612a8a8 535}
536
f7f844d0 537//TODO: write a help text (iceman)
52cf34c1 538int CmdLegicRfSim(const char *Cmd) {
3b920280 539 UsbCommand c = {CMD_SIMULATE_TAG_LEGIC_RF, {6,3,0}};
52cf34c1 540 sscanf(Cmd, " %"lli" %"lli" %"lli, &c.arg[0], &c.arg[1], &c.arg[2]);
541 clearCommandBuffer();
542 SendCommand(&c);
543 return 0;
3612a8a8 544}
545
52cf34c1 546int CmdLegicRfWrite(const char *Cmd) {
ffa306de 547
548 // params:
549 // offset - in tag memory
550 // length - num of bytes to be written
551 // IV - initialisation vector
552
553 char cmdp = param_getchar(Cmd, 0);
554 if ( cmdp == 'H' || cmdp == 'h' ) return usage_legic_write();
555
556 uint32_t offset = 0, len = 0, IV = SESSION_IV;
557
e8fecd72 558 UsbCommand c = {CMD_WRITER_LEGIC_RF, {0,0,0}};
ffa306de 559 int res = sscanf(Cmd, "%x %x %x", &offset, &len, &IV);
560 if(res < 2) {
561 PrintAndLog("Please specify the offset and length as two hex strings and, optionally, the IV also as an hex string");
3612a8a8 562 return -1;
563 }
ffa306de 564
565 // OUT-OF-BOUNDS check
566 if(len + offset > MAX_LENGTH) len = MAX_LENGTH - offset;
567
568
569 IV &= 0x7F;
570 PrintAndLog("Current IV: 0x%02x", IV);
571
572 c.arg[0] = offset;
573 c.arg[1] = len;
574 c.arg[2] = IV;
575
52cf34c1 576 clearCommandBuffer();
3612a8a8 577 SendCommand(&c);
578 return 0;
579}
580
3e134b4c 581int CmdLegicRfRawWrite(const char *Cmd) {
ffa306de 582
583 char cmdp = param_getchar(Cmd, 0);
584 if ( cmdp == 'H' || cmdp == 'h' ) return usage_legic_rawwrite();
585
586 uint32_t address = 0, data = 0, IV = SESSION_IV;
3e134b4c 587 char answer;
ffa306de 588
3e134b4c 589 UsbCommand c = { CMD_RAW_WRITER_LEGIC_RF, {0,0,0} };
ffa306de 590 int res = sscanf(Cmd, "%x %x %x", &address, &data, &IV);
591 if(res < 2)
592 return usage_legic_rawwrite();
593
594 // OUT-OF-BOUNDS check
595 if(address > MAX_LENGTH)
596 return usage_legic_rawwrite();
597
598 IV &= 0x7F;
599 PrintAndLog("Current IV: 0x%02x", IV);
600
601 c.arg[0] = address;
602 c.arg[1] = data;
603 c.arg[2] = IV;
3e134b4c 604
605 if (c.arg[0] == 0x05 || c.arg[0] == 0x06) {
606 PrintAndLog("############# DANGER !! #############");
607 PrintAndLog("# changing the DCF is irreversible #");
608 PrintAndLog("#####################################");
609 PrintAndLog("do youe really want to continue? y(es) n(o)");
6e321dd8 610 if (scanf(" %c", &answer) > 0 && (answer == 'y' || answer == 'Y')) {
3e134b4c 611 SendCommand(&c);
612 return 0;
613 }
614 return -1;
615 }
616
617 clearCommandBuffer();
618 SendCommand(&c);
619 return 0;
620}
621
622//TODO: write a help text (iceman)
52cf34c1 623int CmdLegicRfFill(const char *Cmd) {
3e134b4c 624 UsbCommand cmd = {CMD_WRITER_LEGIC_RF, {0,0,0} };
1a07fd51 625 int res = sscanf(Cmd, " 0x%"llx" 0x%"llx" 0x%"llx, &cmd.arg[0], &cmd.arg[1], &cmd.arg[2]);
3612a8a8 626 if(res != 3) {
627 PrintAndLog("Please specify the offset, length and value as two hex strings");
628 return -1;
629 }
630
631 int i;
52cf34c1 632 UsbCommand c = {CMD_DOWNLOADED_SIM_SAMPLES_125K, {0, 0, 0}};
ba4ad25b 633 memset(c.d.asBytes, cmd.arg[2], 48);
3e134b4c 634
52cf34c1 635 for(i = 0; i < 22; i++) {
636 c.arg[0] = i*48;
3e134b4c 637
638 clearCommandBuffer();
52cf34c1 639 SendCommand(&c);
3e134b4c 640 WaitForResponse(CMD_ACK, NULL);
52cf34c1 641 }
642 clearCommandBuffer();
3612a8a8 643 SendCommand(&cmd);
644 return 0;
645 }
646
3b920280 647int CmdLegicCalcCrc8(const char *Cmd){
648
cc4c8fd6 649 uint8_t *data = NULL;
3e134b4c 650 uint8_t cmdp = 0, uidcrc = 0, type=0;
651 bool errors = false;
652 int len = 0;
e31a0f73 653 int bg, en;
3b920280 654
3e134b4c 655 while(param_getchar(Cmd, cmdp) != 0x00) {
656 switch(param_getchar(Cmd, cmdp)) {
657 case 'b':
658 case 'B':
e31a0f73
AG
659 // peek at length of the input string so we can
660 // figure out how many elements to malloc in "data"
661 bg=en=0;
987c5984
AG
662 if (param_getptr(Cmd, &bg, &en, cmdp+1)) {
663 errors = true;
664 break;
665 }
e31a0f73
AG
666 len = (en - bg + 1);
667
668 // check that user entered even number of characters
669 // for hex data string
670 if (len & 1) {
671 errors = true;
672 break;
673 }
674
08927081
AG
675 // it's possible for user to accidentally enter "b" parameter
676 // more than once - we have to clean previous malloc
677 if (data) free(data);
e31a0f73 678 data = malloc(len >> 1);
3e134b4c 679 if ( data == NULL ) {
680 PrintAndLog("Can't allocate memory. exiting");
681 errors = true;
682 break;
e31a0f73
AG
683 }
684
987c5984
AG
685 if (param_gethex(Cmd, cmdp+1, data, len)) {
686 errors = true;
687 break;
688 }
3e134b4c 689
690 len >>= 1;
691 cmdp += 2;
692 break;
693 case 'u':
694 case 'U':
695 uidcrc = param_get8ex(Cmd, cmdp+1, 0, 16);
696 cmdp += 2;
697 break;
698 case 'c':
699 case 'C':
700 type = param_get8ex(Cmd, cmdp+1, 0, 10);
701 cmdp += 2;
702 break;
703 case 'h':
704 case 'H':
705 errors = true;
706 break;
707 default:
708 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
709 errors = true;
710 break;
711 }
712 if (errors) break;
713 }
714 //Validations
715 if (errors){
aeb128e2 716 if (data) free(data);
3e134b4c 717 return usage_legic_calccrc8();
718 }
719
720 switch (type){
721 case 16:
722 PrintAndLog("LEGIC CRC16: %X", CRC16Legic(data, len, uidcrc));
723 break;
724 default:
725 PrintAndLog("LEGIC CRC8: %X", CRC8Legic(data, len) );
726 break;
eb5206bd 727 }
3b920280 728
aeb128e2 729 if (data) free(data);
3b920280 730 return 0;
731}
732
52cf34c1 733static command_t CommandTable[] = {
3b920280 734 {"help", CmdHelp, 1, "This help"},
735 {"decode", CmdLegicDecode, 0, "Display deobfuscated and decoded LEGIC RF tag data (use after hf legic reader)"},
ffa306de 736 {"read", CmdLegicRFRead, 0, "[offset][length] <iv> -- read bytes from a LEGIC card"},
3b920280 737 {"save", CmdLegicSave, 0, "<filename> [<length>] -- Store samples"},
738 {"load", CmdLegicLoad, 0, "<filename> -- Restore samples"},
739 {"sim", CmdLegicRfSim, 0, "[phase drift [frame drift [req/resp drift]]] Start tag simulator (use after load or read)"},
ffa306de 740 {"write", CmdLegicRfWrite,0, "<offset> <length> <iv> -- Write sample buffer (user after load or read)"},
741 {"writeraw",CmdLegicRfRawWrite, 0, "<address> <value> <iv> -- Write direct to address"},
3b920280 742 {"fill", CmdLegicRfFill, 0, "<offset> <length> <value> -- Fill/Write tag with constant value"},
743 {"crc8", CmdLegicCalcCrc8, 1, "Calculate Legic CRC8 over given hexbytes"},
52cf34c1 744 {NULL, NULL, 0, NULL}
745};
746
747int CmdHFLegic(const char *Cmd) {
748 clearCommandBuffer();
749 CmdsParse(CommandTable, Cmd);
750 return 0;
751}
752
753int CmdHelp(const char *Cmd) {
754 CmdsHelp(CommandTable);
755 return 0;
756}
Impressum, Datenschutz