]>
Commit | Line | Data |
---|---|---|
f397b5cc M |
1 | // Merlok, 2011\r |
2 | // people from mifare@nethemba.com, 2010\r | |
3 | //\r | |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or,\r | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of\r | |
6 | // the license.\r | |
7 | //-----------------------------------------------------------------------------\r | |
8 | // High frequency ISO14443A commands\r | |
9 | //-----------------------------------------------------------------------------\r | |
10 | \r | |
11 | #include <stdio.h>\r | |
12 | #include <stdlib.h>\r | |
13 | #include <unistd.h>\r | |
f397b5cc M |
14 | #include "common.h"\r |
15 | #include "cmdmain.h"\r | |
16 | #include "ui.h"\r | |
17 | #include "data.h"\r | |
f397b5cc M |
18 | #include "util.h"\r |
19 | #include "nonce2key/nonce2key.h"\r | |
20 | #include "nonce2key/crapto1.h"\r | |
8b6a93df | 21 | #include "iso14443crc.h"\r |
c2731f37 | 22 | #include "protocols.h"\r |
f397b5cc M |
23 | \r |
24 | #define MEM_CHUNK 1000000\r | |
25 | #define NESTED_SECTOR_RETRY 10\r | |
26 | \r | |
55acbb2a | 27 | // mifare tracer flags\r |
c2731f37 | 28 | #define TRACE_IDLE 0x00\r |
29 | #define TRACE_AUTH1 0x01\r | |
30 | #define TRACE_AUTH2 0x02\r | |
31 | #define TRACE_AUTH_OK 0x03\r | |
32 | #define TRACE_READ_DATA 0x04\r | |
33 | #define TRACE_WRITE_OK 0x05\r | |
34 | #define TRACE_WRITE_DATA 0x06\r | |
55acbb2a | 35 | \r |
c2731f37 | 36 | #define TRACE_ERROR 0xFF\r |
55acbb2a | 37 | \r |
f397b5cc M |
38 | typedef struct {\r |
39 | uint64_t Key[2];\r | |
40 | int foundKey[2];\r | |
41 | } sector;\r | |
42 | \r | |
e4691591 | 43 | extern char logHexFileName[FILE_PATH_SIZE];\r |
55acbb2a | 44 | \r |
9492e0b0 | 45 | int mfnested(uint8_t blockNo, uint8_t keyType, uint8_t * key, uint8_t trgBlockNo, uint8_t trgKeyType, uint8_t * ResultKeys, bool calibrate);\r |
b10a759f | 46 | int mfCheckKeys (uint8_t blockNo, uint8_t keyType, bool clear_trace, uint8_t keycnt, uint8_t * keyBlock, uint64_t * key);\r |
e0c635d1 | 47 | \r |
8556b852 M |
48 | int mfEmlGetMem(uint8_t *data, int blockNum, int blocksCount);\r |
49 | int mfEmlSetMem(uint8_t *data, int blockNum, int blocksCount);\r | |
0de8e387 | 50 | int mfEmlSetMem_xt(uint8_t *data, int blockNum, int blocksCount, int blockBtWidth);\r |
e0c635d1 | 51 | \r |
c2731f37 | 52 | int mfCSetUID(uint8_t *uid, uint8_t *atqa, uint8_t *sak, uint8_t *oldUID, uint8_t wipecard);\r |
53 | int mfCSetBlock(uint8_t blockNo, uint8_t *data, uint8_t *uid, uint8_t params);\r | |
545a1f38 | 54 | int mfCGetBlock(uint8_t blockNo, uint8_t *data, uint8_t params);\r |
e0c635d1 M |
55 | \r |
56 | int mfTraceInit(uint8_t *tuid, uint8_t *atqa, uint8_t sak, bool wantSaveToEmlFile);\r | |
6a1f2d82 | 57 | int mfTraceDecode(uint8_t *data_src, int len, bool wantSaveToEmlFile);\r |
e0c635d1 M |
58 | \r |
59 | int isTraceCardEmpty(void);\r | |
60 | int isBlockEmpty(int blockN);\r | |
61 | int isBlockTrailer(int blockN);\r | |
62 | int loadTraceCard(uint8_t *tuid);\r | |
63 | int saveTraceCard(void);\r | |
e98572a1 | 64 | int tryDecryptWord(uint32_t nt, uint32_t ar_enc, uint32_t at_enc, uint8_t *data, int len);\r |