1 //-----------------------------------------------------------------------------
2 // (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
6 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
7 // at your option, any later version. See the LICENSE.txt file for the text of
9 //-----------------------------------------------------------------------------
10 // LEGIC RF simulation code
11 //-----------------------------------------------------------------------------
15 #include "proxmark3.h"
19 #include "legic_prng.h"
22 #include "fpgaloader.h"
24 static legic_card_select_t card
;/* metadata of currently selected card */
25 static crc_t legic_crc
;
27 //-----------------------------------------------------------------------------
28 // Frame timing and pseudorandom number generator
30 // The Prng is forwarded every 100us (TAG_BIT_PERIOD), except when the reader is
31 // transmitting. In that case the prng has to be forwarded every bit transmitted:
32 // - 60us for a 0 (RWD_TIME_0)
33 // - 100us for a 1 (RWD_TIME_1)
35 // The data dependent timing makes writing comprehensible code significantly
36 // harder. The current aproach forwards the prng data based if there is data on
37 // air and time based, using GET_TICKS, during computational and wait periodes.
39 // To not have the necessity to calculate/guess exection time dependend timeouts
40 // tx_frame and rx_frame use a shared timestamp to coordinate tx and rx timeslots.
41 //-----------------------------------------------------------------------------
43 static uint32_t last_frame_end
; /* ts of last bit of previews rx or tx frame */
45 #define RWD_TIME_PAUSE 30 /* 20us */
46 #define RWD_TIME_1 150 /* READER_TIME_PAUSE 20us off + 80us on = 100us */
47 #define RWD_TIME_0 90 /* READER_TIME_PAUSE 20us off + 40us on = 60us */
48 #define RWD_FRAME_WAIT 330 /* 220us from TAG frame end to READER frame start */
49 #define TAG_FRAME_WAIT 495 /* 330us from READER frame end to TAG frame start */
50 #define TAG_BIT_PERIOD 150 /* 100us */
51 #define TAG_WRITE_TIMEOUT 60 /* 40 * 100us (write should take at most 3.6ms) */
53 #define LEGIC_READ 0x01 /* Read Command */
54 #define LEGIC_WRITE 0x00 /* Write Command */
56 #define SESSION_IV 0x55 /* An arbitrary chose session IV, all shoud work */
57 #define OFFSET_LOG 1024 /* The largest Legic Prime card is 1k */
58 #define WRITE_LOWERLIMIT 4 /* UID and MCC are not writable */
60 #define INPUT_THRESHOLD 8 /* heuristically determined, lower values */
61 /* lead to detecting false ack during write */
63 //-----------------------------------------------------------------------------
64 // I/O interface abstraction (FPGA -> ARM)
65 //-----------------------------------------------------------------------------
67 static inline uint16_t rx_frame_from_fpga() {
71 // wait for frame be become available in rx holding register
72 if(AT91C_BASE_SSC
->SSC_SR
& (AT91C_SSC_RXRDY
)) {
73 return AT91C_BASE_SSC
->SSC_RHR
;
78 //-----------------------------------------------------------------------------
79 // Demodulation (Reader)
80 //-----------------------------------------------------------------------------
82 // Returns a demedulated bit
84 // The FPGA running xcorrelation samples the subcarrier at ~13.56 MHz. The mode
85 // was initialy designed to receive BSPK/2-PSK. Hance, it reports an I/Q pair
86 // every 4.7us (8 bits i and 8 bits q).
88 // The subcarrier amplitude can be calculated using Pythagoras sqrt(i^2 + q^2).
89 // To reduce CPU time the amplitude is approximated by using linear functions:
90 // am = MAX(ABS(i),ABS(q)) + 1/2*MIN(ABS(i),ABSq))
92 // The bit time is 99.1us (21 I/Q pairs). The receiver skips the first 5 samples
93 // and averages the next (most stable) 8 samples. The final 8 samples are dropped
96 // The demodulated should be alligned to the bit period by the caller. This is
97 // done in rx_bit and rx_ack.
98 static inline bool rx_bit() {
102 // skip first 5 I/Q pairs
103 for(size_t i
= 0; i
<5; ++i
) {
104 (void)rx_frame_from_fpga();
107 // sample next 8 I/Q pairs
108 for(size_t i
= 0; i
<8; ++i
) {
109 uint16_t iq
= rx_frame_from_fpga();
110 int8_t ci
= (int8_t)(iq
>> 8);
111 int8_t cq
= (int8_t)(iq
& 0xff);
117 int32_t power
= (MAX(ABS(sum_ci
), ABS(sum_cq
)) + MIN(ABS(sum_ci
), ABS(sum_cq
))/2);
119 // compare average (power / 8) to threshold
120 return ((power
>> 3) > INPUT_THRESHOLD
);
123 //-----------------------------------------------------------------------------
124 // Modulation (Reader)
126 // I've tried to modulate the Legic specific pause-puls using ssc and the default
127 // ssc clock of 105.4 kHz (bit periode of 9.4us) - previous commit. However,
128 // the timing was not precise enough. By increasing the ssc clock this could
129 // be circumvented, but the adventage over bitbang would be little.
130 //-----------------------------------------------------------------------------
132 static inline void tx_bit(bool bit
) {
135 last_frame_end
+= RWD_TIME_PAUSE
;
136 while(GET_TICKS
< last_frame_end
) { };
138 // return to carrier on, wait for bit periode to end
140 last_frame_end
+= (bit
? RWD_TIME_1
: RWD_TIME_0
) - RWD_TIME_PAUSE
;
141 while(GET_TICKS
< last_frame_end
) { };
144 //-----------------------------------------------------------------------------
145 // Frame Handling (Reader)
147 // The LEGIC RF protocol from card to reader does not include explicit frame
148 // start/stop information or length information. The reader must know beforehand
149 // how many bits it wants to receive.
150 // Notably: a card sending a stream of 0-bits is indistinguishable from no card
152 //-----------------------------------------------------------------------------
154 static void tx_frame(uint32_t frame
, uint8_t len
) {
155 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER
| FPGA_HF_READER_MODE_SEND_FULL_MOD
);
157 // wait for next tx timeslot
158 last_frame_end
+= RWD_FRAME_WAIT
;
159 while(GET_TICKS
< last_frame_end
) { };
161 // transmit frame, MSB first
162 for(uint8_t i
= 0; i
< len
; ++i
) {
163 bool bit
= (frame
>> i
) & 0x01;
164 tx_bit(bit
^ legic_prng_get_bit());
165 legic_prng_forward(1);
168 // add pause to mark end of the frame
170 last_frame_end
+= RWD_TIME_PAUSE
;
171 while(GET_TICKS
< last_frame_end
) { };
175 static uint32_t rx_frame(uint8_t len
) {
176 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER
| FPGA_HF_READER_SUBCARRIER_212_KHZ
| FPGA_HF_READER_MODE_RECEIVE_IQ
);
178 // hold sampling until card is expected to respond
179 last_frame_end
+= TAG_FRAME_WAIT
;
180 while(GET_TICKS
< last_frame_end
) { };
183 for(uint8_t i
= 0; i
< len
; ++i
) {
184 frame
|= (rx_bit() ^ legic_prng_get_bit()) << i
;
185 legic_prng_forward(1);
187 // rx_bit runs only 95us, resync to TAG_BIT_PERIOD
188 last_frame_end
+= TAG_BIT_PERIOD
;
189 while(GET_TICKS
< last_frame_end
) { };
195 static bool rx_ack() {
196 // change fpga into rx mode
197 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER
| FPGA_HF_READER_SUBCARRIER_212_KHZ
| FPGA_HF_READER_MODE_RECEIVE_IQ
);
199 // hold sampling until card is expected to respond
200 last_frame_end
+= TAG_FRAME_WAIT
;
201 while(GET_TICKS
< last_frame_end
) { };
204 for(uint8_t i
= 0; i
< TAG_WRITE_TIMEOUT
; ++i
) {
207 legic_prng_forward(1);
209 // rx_bit runs only 95us, resync to TAG_BIT_PERIOD
210 last_frame_end
+= TAG_BIT_PERIOD
;
211 while(GET_TICKS
< last_frame_end
) { };
213 // check if it was an ACK
222 //-----------------------------------------------------------------------------
224 //-----------------------------------------------------------------------------
226 static int init_card(uint8_t cardtype
, legic_card_select_t
*p_card
) {
227 p_card
->tagtype
= cardtype
;
229 switch(p_card
->tagtype
) {
232 p_card
->addrsize
= 5;
233 p_card
->cardsize
= 22;
237 p_card
->addrsize
= 8;
238 p_card
->cardsize
= 256;
241 p_card
->cmdsize
= 11;
242 p_card
->addrsize
= 10;
243 p_card
->cardsize
= 1024;
247 p_card
->addrsize
= 0;
248 p_card
->cardsize
= 0;
254 static void init_reader(bool clear_mem
) {
256 FpgaDownloadAndGo(FPGA_BITSTREAM_HF
);
257 FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER
| FPGA_HF_READER_SUBCARRIER_212_KHZ
| FPGA_HF_READER_MODE_RECEIVE_IQ
);
258 SetAdcMuxFor(GPIO_MUXSEL_HIPKD
);
261 // configure SSC with defaults
262 FpgaSetupSsc(FPGA_MAJOR_MODE_HF_READER
);
264 // re-claim GPIO_SSC_DOUT as GPIO and enable output
265 AT91C_BASE_PIOA
->PIO_OER
= GPIO_SSC_DOUT
;
266 AT91C_BASE_PIOA
->PIO_PER
= GPIO_SSC_DOUT
;
269 // init crc calculator
270 crc_init(&legic_crc
, 4, 0x19 >> 1, 0x05, 0);
276 // Setup reader to card connection
278 // The setup consists of a three way handshake:
279 // - Transmit initialisation vector 7 bits
280 // - Receive card type 6 bits
281 // - Transmit Acknowledge 6 bits
282 static uint32_t setup_phase(uint8_t iv
) {
283 // init coordination timestamp
284 last_frame_end
= GET_TICKS
;
286 // Switch on carrier and let the card charge for 5ms.
287 last_frame_end
+= 7500;
288 while(GET_TICKS
< last_frame_end
) { };
295 legic_prng_forward(2);
298 int32_t card_type
= rx_frame(6);
299 legic_prng_forward(3);
301 // send obsfuscated acknowledgment frame
304 tx_frame(0x19, 6); // MIM22 | READCMD = 0x18 | 0x01
308 tx_frame(0x39, 6); // MIM256 | READCMD = 0x38 | 0x01
315 static uint8_t calc_crc4(uint16_t cmd
, uint8_t cmd_sz
, uint8_t value
) {
316 crc_clear(&legic_crc
);
317 crc_update(&legic_crc
, (value
<< cmd_sz
) | cmd
, 8 + cmd_sz
);
318 return crc_finish(&legic_crc
);
321 static int16_t read_byte(uint16_t index
, uint8_t cmd_sz
) {
322 uint16_t cmd
= (index
<< 1) | LEGIC_READ
;
326 legic_prng_forward(2);
327 tx_frame(cmd
, cmd_sz
);
328 legic_prng_forward(2);
329 uint32_t frame
= rx_frame(12);
332 // split frame into data and crc
333 uint8_t byte
= BYTEx(frame
, 0);
334 uint8_t crc
= BYTEx(frame
, 1);
336 // check received against calculated crc
337 uint8_t calc_crc
= calc_crc4(cmd
, cmd_sz
, byte
);
338 if(calc_crc
!= crc
) {
339 Dbprintf("!!! crc mismatch: %x != %x !!!", calc_crc
, crc
);
343 legic_prng_forward(1);
348 // Transmit write command, wait until (3.6ms) the tag sends back an unencrypted
349 // ACK ('1' bit) and forward the prng time based.
350 bool write_byte(uint16_t index
, uint8_t byte
, uint8_t addr_sz
) {
351 uint32_t cmd
= index
<< 1 | LEGIC_WRITE
; // prepare command
352 uint8_t crc
= calc_crc4(cmd
, addr_sz
+ 1, byte
); // calculate crc
353 cmd
|= byte
<< (addr_sz
+ 1); // append value
354 cmd
|= (crc
& 0xF) << (addr_sz
+ 1 + 8); // and crc
356 // send write command
358 legic_prng_forward(2);
359 tx_frame(cmd
, addr_sz
+ 1 + 8 + 4); // sz = addr_sz + cmd + data + crc
360 legic_prng_forward(3);
367 //-----------------------------------------------------------------------------
368 // Command Line Interface
370 // Only this functions are public / called from appmain.c
371 //-----------------------------------------------------------------------------
372 void LegicRfReader(int offset
, int bytes
) {
373 uint8_t *BigBuf
= BigBuf_get_addr();
374 memset(BigBuf
, 0, 1024);
376 // configure ARM and FPGA
379 // establish shared secret and detect card type
380 DbpString("Reading card ...");
381 uint8_t card_type
= setup_phase(SESSION_IV
);
383 if(init_card(card_type
, &card
) != 0) {
388 // if no argument is specified create full dump
390 bytes
= card
.cardsize
;
393 // do not read beyond card memory
394 if(bytes
+ offset
> card
.cardsize
) {
395 bytes
= card
.cardsize
- offset
;
398 for(uint16_t i
= 0; i
< bytes
; ++i
) {
399 int16_t byte
= read_byte(offset
+ i
, card
.cmdsize
);
408 cmd_send(CMD_ACK
, result
, bytes
, 0, &card
, sizeof(card
));
409 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);
416 void LegicRfWriter(int bytes
, int offset
) {
417 uint8_t *BigBuf
= BigBuf_get_addr();
419 // configure ARM and FPGA
422 // uid is not writeable
423 if(offset
<= WRITE_LOWERLIMIT
) {
427 // establish shared secret and detect card type
428 Dbprintf("Writing 0x%02.2x - 0x%02.2x ...", offset
, offset
+bytes
);
429 uint8_t card_type
= setup_phase(SESSION_IV
);
430 if(init_card(card_type
, &card
) != 0) {
431 Dbprintf("No or unknown card found, aborting");
435 // do not write beyond card memory
436 if(bytes
+ offset
> card
.cardsize
) {
437 bytes
= card
.cardsize
- offset
;
440 // write in reverse order, only then is DCF (decremental field) writable
441 while(bytes
-- > 0 && !BUTTON_PRESS()) {
442 if(!write_byte(bytes
+ offset
, BigBuf
[bytes
+ offset
], card
.addrsize
)) {
443 Dbprintf("operation failed @ 0x%03.3x", bytes
);
449 DbpString("Write successful");
452 FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF
);