]>
Commit | Line | Data |
---|---|---|
1 | //----------------------------------------------------------------------------- | |
2 | // (c) 2009 Henryk Plötz <henryk@ploetzli.ch> | |
3 | // 2016 Iceman | |
4 | // 2018 AntiCat | |
5 | // | |
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 | |
8 | // the license. | |
9 | //----------------------------------------------------------------------------- | |
10 | // LEGIC RF simulation code | |
11 | //----------------------------------------------------------------------------- | |
12 | ||
13 | #include "legicrf.h" | |
14 | ||
15 | #include "proxmark3.h" | |
16 | #include "apps.h" | |
17 | #include "util.h" | |
18 | #include "string.h" | |
19 | #include "legic_prng.h" | |
20 | #include "legic.h" | |
21 | #include "crc.h" | |
22 | #include "fpgaloader.h" | |
23 | ||
24 | static legic_card_select_t card;/* metadata of currently selected card */ | |
25 | static crc_t legic_crc; | |
26 | ||
27 | //----------------------------------------------------------------------------- | |
28 | // Frame timing and pseudorandom number generator | |
29 | // | |
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) | |
34 | // | |
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. | |
38 | // | |
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 | //----------------------------------------------------------------------------- | |
42 | ||
43 | static uint32_t last_frame_end; /* ts of last bit of previews rx or tx frame */ | |
44 | ||
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) */ | |
52 | ||
53 | #define LEGIC_READ 0x01 /* Read Command */ | |
54 | #define LEGIC_WRITE 0x00 /* Write Command */ | |
55 | ||
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 */ | |
59 | ||
60 | #define INPUT_THRESHOLD 8 /* heuristically determined, lower values */ | |
61 | /* lead to detecting false ack during write */ | |
62 | ||
63 | //----------------------------------------------------------------------------- | |
64 | // I/O interface abstraction (FPGA -> ARM) | |
65 | //----------------------------------------------------------------------------- | |
66 | ||
67 | static inline uint16_t rx_frame_from_fpga() { | |
68 | for(;;) { | |
69 | WDT_HIT(); | |
70 | ||
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; | |
74 | } | |
75 | } | |
76 | } | |
77 | ||
78 | //----------------------------------------------------------------------------- | |
79 | // Demodulation (Reader) | |
80 | //----------------------------------------------------------------------------- | |
81 | ||
82 | // Returns a demedulated bit | |
83 | // | |
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). | |
87 | // | |
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)) | |
91 | // | |
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 | |
94 | // also. | |
95 | // | |
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() { | |
99 | int32_t sum_cq = 0; | |
100 | int32_t sum_ci = 0; | |
101 | ||
102 | // skip first 5 I/Q pairs | |
103 | for(size_t i = 0; i<5; ++i) { | |
104 | (void)rx_frame_from_fpga(); | |
105 | } | |
106 | ||
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); | |
112 | sum_ci += ci; | |
113 | sum_cq += cq; | |
114 | } | |
115 | ||
116 | // calculate power | |
117 | int32_t power = (MAX(ABS(sum_ci), ABS(sum_cq)) + MIN(ABS(sum_ci), ABS(sum_cq))/2); | |
118 | ||
119 | // compare average (power / 8) to threshold | |
120 | return ((power >> 3) > INPUT_THRESHOLD); | |
121 | } | |
122 | ||
123 | //----------------------------------------------------------------------------- | |
124 | // Modulation (Reader) | |
125 | // | |
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 | //----------------------------------------------------------------------------- | |
131 | ||
132 | static inline void tx_bit(bool bit) { | |
133 | // insert pause | |
134 | HIGH(GPIO_SSC_DOUT); | |
135 | last_frame_end += RWD_TIME_PAUSE; | |
136 | while(GET_TICKS < last_frame_end) { }; | |
137 | ||
138 | // return to carrier on, wait for bit periode to end | |
139 | LOW(GPIO_SSC_DOUT); | |
140 | last_frame_end += (bit ? RWD_TIME_1 : RWD_TIME_0) - RWD_TIME_PAUSE; | |
141 | while(GET_TICKS < last_frame_end) { }; | |
142 | } | |
143 | ||
144 | //----------------------------------------------------------------------------- | |
145 | // Frame Handling (Reader) | |
146 | // | |
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 | |
151 | // present. | |
152 | //----------------------------------------------------------------------------- | |
153 | ||
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); | |
156 | ||
157 | // wait for next tx timeslot | |
158 | last_frame_end += RWD_FRAME_WAIT; | |
159 | while(GET_TICKS < last_frame_end) { }; | |
160 | ||
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); | |
166 | }; | |
167 | ||
168 | // add pause to mark end of the frame | |
169 | HIGH(GPIO_SSC_DOUT); | |
170 | last_frame_end += RWD_TIME_PAUSE; | |
171 | while(GET_TICKS < last_frame_end) { }; | |
172 | LOW(GPIO_SSC_DOUT); | |
173 | } | |
174 | ||
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); | |
177 | ||
178 | // hold sampling until card is expected to respond | |
179 | last_frame_end += TAG_FRAME_WAIT; | |
180 | while(GET_TICKS < last_frame_end) { }; | |
181 | ||
182 | uint32_t frame = 0; | |
183 | for(uint8_t i = 0; i < len; ++i) { | |
184 | frame |= (rx_bit() ^ legic_prng_get_bit()) << i; | |
185 | legic_prng_forward(1); | |
186 | ||
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) { }; | |
190 | } | |
191 | ||
192 | return frame; | |
193 | } | |
194 | ||
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); | |
198 | ||
199 | // hold sampling until card is expected to respond | |
200 | last_frame_end += TAG_FRAME_WAIT; | |
201 | while(GET_TICKS < last_frame_end) { }; | |
202 | ||
203 | uint32_t ack = 0; | |
204 | for(uint8_t i = 0; i < TAG_WRITE_TIMEOUT; ++i) { | |
205 | // sample bit | |
206 | ack = rx_bit(); | |
207 | legic_prng_forward(1); | |
208 | ||
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) { }; | |
212 | ||
213 | // check if it was an ACK | |
214 | if(ack) { | |
215 | break; | |
216 | } | |
217 | } | |
218 | ||
219 | return ack; | |
220 | } | |
221 | ||
222 | //----------------------------------------------------------------------------- | |
223 | // Legic Reader | |
224 | //----------------------------------------------------------------------------- | |
225 | ||
226 | static int init_card(uint8_t cardtype, legic_card_select_t *p_card) { | |
227 | p_card->tagtype = cardtype; | |
228 | ||
229 | switch(p_card->tagtype) { | |
230 | case 0x0d: | |
231 | p_card->cmdsize = 6; | |
232 | p_card->addrsize = 5; | |
233 | p_card->cardsize = 22; | |
234 | break; | |
235 | case 0x1d: | |
236 | p_card->cmdsize = 9; | |
237 | p_card->addrsize = 8; | |
238 | p_card->cardsize = 256; | |
239 | break; | |
240 | case 0x3d: | |
241 | p_card->cmdsize = 11; | |
242 | p_card->addrsize = 10; | |
243 | p_card->cardsize = 1024; | |
244 | break; | |
245 | default: | |
246 | p_card->cmdsize = 0; | |
247 | p_card->addrsize = 0; | |
248 | p_card->cardsize = 0; | |
249 | return 2; | |
250 | } | |
251 | return 0; | |
252 | } | |
253 | ||
254 | static void init_reader(bool clear_mem) { | |
255 | // configure FPGA | |
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); | |
259 | LED_D_ON(); | |
260 | ||
261 | // configure SSC with defaults | |
262 | FpgaSetupSsc(FPGA_MAJOR_MODE_HF_READER); | |
263 | ||
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; | |
267 | LOW(GPIO_SSC_DOUT); | |
268 | ||
269 | // init crc calculator | |
270 | crc_init(&legic_crc, 4, 0x19 >> 1, 0x05, 0); | |
271 | ||
272 | // start us timer | |
273 | StartTicks(); | |
274 | } | |
275 | ||
276 | // Setup reader to card connection | |
277 | // | |
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; | |
285 | ||
286 | // Switch on carrier and let the card charge for 5ms. | |
287 | last_frame_end += 7500; | |
288 | while(GET_TICKS < last_frame_end) { }; | |
289 | ||
290 | legic_prng_init(0); | |
291 | tx_frame(iv, 7); | |
292 | ||
293 | // configure prng | |
294 | legic_prng_init(iv); | |
295 | legic_prng_forward(2); | |
296 | ||
297 | // receive card type | |
298 | int32_t card_type = rx_frame(6); | |
299 | legic_prng_forward(3); | |
300 | ||
301 | // send obsfuscated acknowledgment frame | |
302 | switch (card_type) { | |
303 | case 0x0D: | |
304 | tx_frame(0x19, 6); // MIM22 | READCMD = 0x18 | 0x01 | |
305 | break; | |
306 | case 0x1D: | |
307 | case 0x3D: | |
308 | tx_frame(0x39, 6); // MIM256 | READCMD = 0x38 | 0x01 | |
309 | break; | |
310 | } | |
311 | ||
312 | return card_type; | |
313 | } | |
314 | ||
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); | |
319 | } | |
320 | ||
321 | static int16_t read_byte(uint16_t index, uint8_t cmd_sz) { | |
322 | uint16_t cmd = (index << 1) | LEGIC_READ; | |
323 | ||
324 | // read one byte | |
325 | LED_B_ON(); | |
326 | legic_prng_forward(2); | |
327 | tx_frame(cmd, cmd_sz); | |
328 | legic_prng_forward(2); | |
329 | uint32_t frame = rx_frame(12); | |
330 | LED_B_OFF(); | |
331 | ||
332 | // split frame into data and crc | |
333 | uint8_t byte = BYTEx(frame, 0); | |
334 | uint8_t crc = BYTEx(frame, 1); | |
335 | ||
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); | |
340 | return -1; | |
341 | } | |
342 | ||
343 | legic_prng_forward(1); | |
344 | ||
345 | return byte; | |
346 | } | |
347 | ||
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 | |
355 | ||
356 | // send write command | |
357 | LED_C_ON(); | |
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); | |
361 | LED_C_OFF(); | |
362 | ||
363 | // wait for ack | |
364 | return rx_ack(); | |
365 | } | |
366 | ||
367 | //----------------------------------------------------------------------------- | |
368 | // Command Line Interface | |
369 | // | |
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); | |
375 | ||
376 | // configure ARM and FPGA | |
377 | init_reader(false); | |
378 | ||
379 | // establish shared secret and detect card type | |
380 | DbpString("Reading card ..."); | |
381 | uint8_t card_type = setup_phase(SESSION_IV); | |
382 | uint8_t result = 0; | |
383 | if(init_card(card_type, &card) != 0) { | |
384 | result = 1; | |
385 | goto OUT; | |
386 | } | |
387 | ||
388 | // if no argument is specified create full dump | |
389 | if(bytes == -1) { | |
390 | bytes = card.cardsize; | |
391 | } | |
392 | ||
393 | // do not read beyond card memory | |
394 | if(bytes + offset > card.cardsize) { | |
395 | bytes = card.cardsize - offset; | |
396 | } | |
397 | ||
398 | for(uint16_t i = 0; i < bytes; ++i) { | |
399 | int16_t byte = read_byte(offset + i, card.cmdsize); | |
400 | if(byte == -1) { | |
401 | result = 2; | |
402 | goto OUT; | |
403 | } | |
404 | BigBuf[i] = byte; | |
405 | } | |
406 | ||
407 | OUT: | |
408 | cmd_send(CMD_ACK, result, bytes, 0, &card, sizeof(card)); | |
409 | FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF); | |
410 | LED_B_OFF(); | |
411 | LED_C_OFF(); | |
412 | LED_D_OFF(); | |
413 | StopTicks(); | |
414 | } | |
415 | ||
416 | void LegicRfWriter(int bytes, int offset) { | |
417 | uint8_t *BigBuf = BigBuf_get_addr(); | |
418 | ||
419 | // configure ARM and FPGA | |
420 | init_reader(false); | |
421 | ||
422 | // uid is not writeable | |
423 | if(offset <= WRITE_LOWERLIMIT) { | |
424 | goto OUT; | |
425 | } | |
426 | ||
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"); | |
432 | goto OUT; | |
433 | } | |
434 | ||
435 | // do not write beyond card memory | |
436 | if(bytes + offset > card.cardsize) { | |
437 | bytes = card.cardsize - offset; | |
438 | } | |
439 | ||
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); | |
444 | goto OUT; | |
445 | } | |
446 | } | |
447 | ||
448 | // OK | |
449 | DbpString("Write successful"); | |
450 | ||
451 | OUT: | |
452 | FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF); | |
453 | LED_B_OFF(); | |
454 | LED_C_OFF(); | |
455 | LED_D_OFF(); | |
456 | StopTicks(); | |
457 | } |