mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-26 06:42:02 +03:00
cf8c82c451
* Initial MFPlus draft * Proper detection (WIP) * Mifare Plus detection done * Bump F18 API * Alloc takes no arguments * Fixes from code review * Remove leftover logging * Remove stray reminder comment * Review changes and extra logging * Fix atqa detection * Fix incorrect comparison * ATQA byte swap fix * mf plus: code clean up * mf plus: remove unused code * mf plus: fix read fail event handling * mf plus: fix return error codes * mf plus: handle load and save errors * mf plus: assert -> check in public API funxtion * Bump API Symbols version * Fix wrong feature mask * Skylanders plugin separation * Fix navigation * Fix info box size Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
177 lines
5.3 KiB
C
177 lines
5.3 KiB
C
#include "nfc_supported_card_plugin.h"
|
|
|
|
#include <flipper_application/flipper_application.h>
|
|
|
|
#include <nfc/nfc_device.h>
|
|
#include <bit_lib/bit_lib.h>
|
|
#include <nfc/protocols/mf_classic/mf_classic_poller_sync.h>
|
|
#include <flipper_format/flipper_format.h>
|
|
|
|
#define TAG "Skylanders"
|
|
|
|
static const uint64_t skylanders_key = 0x4b0b20107ccb;
|
|
|
|
static const char* nfc_resources_header = "Flipper NFC resources";
|
|
static const uint32_t nfc_resources_file_version = 1;
|
|
|
|
static bool skylanders_search_data(
|
|
Storage* storage,
|
|
const char* file_name,
|
|
FuriString* key,
|
|
FuriString* data) {
|
|
bool parsed = false;
|
|
FlipperFormat* file = flipper_format_file_alloc(storage);
|
|
FuriString* temp_str;
|
|
temp_str = furi_string_alloc();
|
|
|
|
do {
|
|
// Open file
|
|
if(!flipper_format_file_open_existing(file, file_name)) break;
|
|
// Read file header and version
|
|
uint32_t version = 0;
|
|
if(!flipper_format_read_header(file, temp_str, &version)) break;
|
|
if(furi_string_cmp_str(temp_str, nfc_resources_header) ||
|
|
(version != nfc_resources_file_version))
|
|
break;
|
|
if(!flipper_format_read_string(file, furi_string_get_cstr(key), data)) break;
|
|
parsed = true;
|
|
} while(false);
|
|
|
|
furi_string_free(temp_str);
|
|
flipper_format_free(file);
|
|
return parsed;
|
|
}
|
|
|
|
bool skylanders_get_name(Storage* storage, uint16_t id, FuriString* name) {
|
|
bool parsed = false;
|
|
FuriString* key;
|
|
key = furi_string_alloc_printf("%04X", id);
|
|
if(skylanders_search_data(storage, EXT_PATH("nfc/assets/skylanders.nfc"), key, name)) {
|
|
parsed = true;
|
|
}
|
|
furi_string_free(key);
|
|
return parsed;
|
|
}
|
|
|
|
bool skylanders_verify(Nfc* nfc) {
|
|
bool verified = false;
|
|
|
|
do {
|
|
const uint8_t verify_sector = 0;
|
|
uint8_t block_num = mf_classic_get_first_block_num_of_sector(verify_sector);
|
|
FURI_LOG_D(TAG, "Verifying sector %u", verify_sector);
|
|
|
|
MfClassicKey key = {};
|
|
bit_lib_num_to_bytes_be(skylanders_key, COUNT_OF(key.data), key.data);
|
|
|
|
MfClassicAuthContext auth_ctx = {};
|
|
MfClassicError error =
|
|
mf_classic_poller_sync_auth(nfc, block_num, &key, MfClassicKeyTypeA, &auth_ctx);
|
|
|
|
if(error != MfClassicErrorNone) {
|
|
FURI_LOG_D(TAG, "Failed to read block %u: %d", block_num, error);
|
|
break;
|
|
}
|
|
|
|
verified = true;
|
|
} while(false);
|
|
|
|
return verified;
|
|
}
|
|
|
|
static bool skylanders_read(Nfc* nfc, NfcDevice* device) {
|
|
furi_assert(nfc);
|
|
furi_assert(device);
|
|
|
|
bool is_read = false;
|
|
|
|
MfClassicData* data = mf_classic_alloc();
|
|
nfc_device_copy_data(device, NfcProtocolMfClassic, data);
|
|
|
|
do {
|
|
MfClassicType type = MfClassicType1k;
|
|
MfClassicError error = mf_classic_poller_sync_detect_type(nfc, &type);
|
|
if(error != MfClassicErrorNone) break;
|
|
|
|
data->type = type;
|
|
MfClassicDeviceKeys keys = {};
|
|
for(size_t i = 0; i < mf_classic_get_total_sectors_num(data->type); i++) {
|
|
bit_lib_num_to_bytes_be(skylanders_key, sizeof(MfClassicKey), keys.key_a[i].data);
|
|
FURI_BIT_SET(keys.key_a_mask, i);
|
|
bit_lib_num_to_bytes_be(skylanders_key, sizeof(MfClassicKey), keys.key_b[i].data);
|
|
FURI_BIT_SET(keys.key_b_mask, i);
|
|
}
|
|
|
|
error = mf_classic_poller_sync_read(nfc, &keys, data);
|
|
if(error != MfClassicErrorNone) {
|
|
FURI_LOG_W(TAG, "Failed to read data");
|
|
break;
|
|
}
|
|
|
|
nfc_device_set_data(device, NfcProtocolMfClassic, data);
|
|
|
|
is_read = mf_classic_is_card_read(data);
|
|
} while(false);
|
|
|
|
mf_classic_free(data);
|
|
|
|
return is_read;
|
|
}
|
|
|
|
static bool skylanders_parse(const NfcDevice* device, FuriString* parsed_data) {
|
|
furi_assert(device);
|
|
|
|
const MfClassicData* data = nfc_device_get_data(device, NfcProtocolMfClassic);
|
|
|
|
bool parsed = false;
|
|
FuriString* name = furi_string_alloc();
|
|
|
|
do {
|
|
// verify key
|
|
const uint8_t verify_sector = 0;
|
|
MfClassicSectorTrailer* sec_tr =
|
|
mf_classic_get_sector_trailer_by_sector(data, verify_sector);
|
|
uint64_t key = bit_lib_bytes_to_num_be(sec_tr->key_a.data, 6);
|
|
if(key != skylanders_key) break;
|
|
|
|
const uint16_t id = (uint16_t)*data->block[1].data;
|
|
if(id == 0) break;
|
|
|
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
|
|
|
bool success = skylanders_get_name(storage, id, name);
|
|
|
|
furi_record_close(RECORD_STORAGE);
|
|
if(!success) break;
|
|
|
|
furi_string_printf(parsed_data, "\e#Skylanders\n%s", furi_string_get_cstr(name));
|
|
|
|
parsed = true;
|
|
|
|
} while(false);
|
|
|
|
furi_string_free(name);
|
|
|
|
return parsed;
|
|
}
|
|
|
|
/* Actual implementation of app<>plugin interface */
|
|
static const NfcSupportedCardsPlugin skylanders_plugin = {
|
|
.protocol = NfcProtocolMfClassic,
|
|
.verify = skylanders_verify,
|
|
.read = skylanders_read,
|
|
.parse = skylanders_parse,
|
|
};
|
|
|
|
/* Plugin descriptor to comply with basic plugin specification */
|
|
static const FlipperAppPluginDescriptor skylanders_plugin_descriptor = {
|
|
.appid = NFC_SUPPORTED_CARD_PLUGIN_APP_ID,
|
|
.ep_api_version = NFC_SUPPORTED_CARD_PLUGIN_API_VERSION,
|
|
.entry_point = &skylanders_plugin,
|
|
};
|
|
|
|
/* Plugin entry point - must return a pointer to const descriptor */
|
|
const FlipperAppPluginDescriptor* skylanders_plugin_ep(void) {
|
|
return &skylanders_plugin_descriptor;
|
|
}
|