#define LEGIC_CARD_MEMSIZE 1024
static uint8_t* cardmem;
-static void frame_append_bit(struct legic_frame * const f, int bit) {
+static void frame_append_bit(struct legic_frame * const f, uint8_t bit) {
// Overflow, won't happen
if (f->bits >= 31) return;
uint32_t starttime = GET_TICKS, send = 0;
uint16_t mask = 1;
- uint8_t prng1 = legic_prng_count() ;
+ uint8_t prngstart = legic_prng_count() ;
// xor lsfr onto data.
send = data ^ legic_prng_get_bits(bits);
sendFrameStop = GET_TICKS;
uint8_t cmdbytes[] = {
+ bits,
BYTEx(data, 0),
BYTEx(data, 1),
- bits,
- prng1,
+ 0x00,
+ 0x00,
+ prngstart,
legic_prng_count()
};
LogTrace(cmdbytes, sizeof(cmdbytes), starttime, sendFrameStop, NULL, TRUE);
AT91C_BASE_PIOA->PIO_ODR = GPIO_SSC_DIN;
AT91C_BASE_PIOA->PIO_PER = GPIO_SSC_DIN;
- // calibrate the prng.
+ // calibrate the prng.
+ //
legic_prng_forward(2);
// precompute the cipher
- uint8_t prng_before = legic_prng_count() ;
+ uint8_t prngstart = legic_prng_count() ;
- lsfr = legic_prng_get_bits(bits);
-
- data = lsfr;
+ data = lsfr = legic_prng_get_bits(bits);
//FIXED time between sending frame and now listening frame. 330us
- //WaitTicks( TAG_FRAME_WAIT - (GET_TICKS - sendFrameStop ) );
- WaitTicks( 495 );
-
+ // 387 = 0x19 0001 1001
+ // 480 = 0x19
+ // 500 = 0x1C 0001 1100
uint32_t starttime = GET_TICKS;
+ //uint16_t mywait = TAG_FRAME_WAIT - (starttime - sendFrameStop);
+ uint16_t mywait = 495 - (starttime - sendFrameStop);
+ if ( bits == 6)
+ WaitTicks( 495 - 9 );
+ else {
+ //Dbprintf("WAIT %d", mywait );
+ WaitTicks( mywait );
+ }
+
next_bit_at = GET_TICKS + TAG_BIT_PERIOD;
while ( i-- ){
next_bit_at += TAG_BIT_PERIOD;
// We expect 42 edges == ONE
- if(edges > 20 && edges < 64)
+ //if (edges > 20 && edges < 64)
+ if ( edges > 20 )
data ^= the_bit;
the_bit <<= 1;
// output
f->data = data;
f->bits = bits;
-
- // log
- sendFrameStop = GET_TICKS;
- uint8_t cmdbytes[] = {
+ uint8_t cmdbytes[] = {
+ bits,
BYTEx(data,0),
BYTEx(data,1),
- bits,
- BYTEx(lsfr,0),
- BYTEx(lsfr,1),
BYTEx(data, 0) ^ BYTEx(lsfr,0),
BYTEx(data, 1) ^ BYTEx(lsfr,1),
- prng_before,
+ prngstart,
legic_prng_count()
};
- LogTrace(cmdbytes, sizeof(cmdbytes), starttime, sendFrameStop, NULL, FALSE);
+ LogTrace(cmdbytes, sizeof(cmdbytes), starttime, GET_TICKS, NULL, FALSE);
}
// Setup pm3 as a Legic Reader
// 460 | 690
// 258 | 387
// 244 | 366
- WaitTicks(366);
- legic_prng_forward(3); // 460 / 100 = 4.6 iterations
+ WaitTicks(387);
+ legic_prng_forward(4); // 460 / 100 = 4.6 iterations
uint8_t byte = 0, crc = 0, calcCrc = 0;
uint32_t cmd = (byte_index << 1) | LEGIC_READ;
Dbprintf("!!! crc mismatch: expected %x but got %x !!!", calcCrc, crc);
return -1;
}
-
-
-// legic_prng_forward(2); // 460 / 100 = 4.6 iterations
return byte;
}
int LegicRfReader(int offset, int bytes, int iv) {
uint16_t byte_index = 0;
- uint8_t cmd_sz = 0;
- int card_sz = 0;
- uint8_t isOK = 1;
-
- if ( MF_DBGLEVEL >= 2)
- Dbprintf("setting up legic card, IV = 0x%02x", iv);
-
+ uint8_t cmd_sz = 0, isOK = 1;
+ int card_sz = 0;
+
LegicCommonInit();
uint32_t tag_type = setup_phase_reader(iv);
-
- //we lose to mutch time with dprintf
+
switch_off_tag_rwd();
switch(tag_type) {
int r = legic_read_byte(byte_index + offset, cmd_sz);
if (r == -1 || BUTTON_PRESS()) {
- if ( MF_DBGLEVEL >= 2) DbpString("operation aborted");
+ if ( MF_DBGLEVEL >= 3) DbpString("operation aborted");
isOK = 0;
goto OUT;
}
cardmem[++byte_index] = r;
- //byte_index++;
WDT_HIT();
}
OUT:
+ WDT_HIT();
switch_off_tag_rwd();
LEDsoff();
uint8_t len = (bytes & 0x3FF);
// Quite simpel tag
void annotateLegic(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize){
- if ( cmdsize > 1) {
-
- uint8_t cmdBit = (cmd[0] & 1);
- uint8_t address = (cmd[1] << 7) | cmd[0] >> 1;
-
- if (cmdBit == LEGIC_READ)
- snprintf(exp, size, "READ Byte(%d)", address);
- else if (cmdBit == LEGIC_WRITE )
- snprintf(exp, size, "WRITE Byte(%d)", address);
- else
- snprintf(exp, size, "?");
-
- } else {
- if ( cmd[0] == LEGIC_HSK_22 ) snprintf(exp, size, "MIM22");
- if ( cmd[0] == LEGIC_HSK_256 ) snprintf(exp, size, "MIN256/1024");
+ uint8_t bitsend = cmd[0];
+
+ switch (bitsend){
+ case 7:
+ snprintf(exp, size, "IV 0x%02X", cmd[1]);
+ break;
+ case 6: {
+ if ( cmd[1] == LEGIC_HSK_22 )
+ snprintf(exp, size, "MIM22");
+ if ( cmd[1] == LEGIC_HSK_256 )
+ snprintf(exp, size, "MIN256/1024");
+ break;
+ }
+ case 9:
+ case 11: {
+ uint8_t cmdBit = (cmd[1] & 1);
+ uint8_t address = (cmd[2] << 7) | cmd[1] >> 1;
+
+ if (cmdBit == LEGIC_READ)
+ snprintf(exp, size, "READ Byte(%d)", address);
+
+ if (cmdBit == LEGIC_WRITE )
+ snprintf(exp, size, "WRITE Byte(%d)", address);
+ break;
+ }
+ case 12:
+ default:
+ break;
}
}