2022-01-05 16:10:18 +00:00
|
|
|
#include "lfrfid_app.h"
|
|
|
|
#include "scene/lfrfid_app_scene_start.h"
|
|
|
|
#include "scene/lfrfid_app_scene_read.h"
|
|
|
|
#include "scene/lfrfid_app_scene_read_success.h"
|
|
|
|
#include "scene/lfrfid_app_scene_readed_menu.h"
|
|
|
|
#include "scene/lfrfid_app_scene_write.h"
|
|
|
|
#include "scene/lfrfid_app_scene_write_success.h"
|
|
|
|
#include "scene/lfrfid_app_scene_emulate.h"
|
|
|
|
#include "scene/lfrfid_app_scene_save_name.h"
|
|
|
|
#include "scene/lfrfid_app_scene_save_success.h"
|
|
|
|
#include "scene/lfrfid_app_scene_select_key.h"
|
|
|
|
#include "scene/lfrfid_app_scene_saved_key_menu.h"
|
|
|
|
#include "scene/lfrfid_app_scene_save_data.h"
|
|
|
|
#include "scene/lfrfid_app_scene_save_type.h"
|
|
|
|
#include "scene/lfrfid_app_scene_saved_info.h"
|
|
|
|
#include "scene/lfrfid_app_scene_delete_confirm.h"
|
|
|
|
#include "scene/lfrfid_app_scene_delete_success.h"
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2021-11-04 10:06:13 +00:00
|
|
|
#include <toolbox/path.h>
|
2022-02-18 19:53:46 +00:00
|
|
|
#include <flipper_format/flipper_format.h>
|
2021-06-30 12:02:46 +00:00
|
|
|
|
[FL-1191][FL-1524] Filesystem rework (#568)
* FS-Api: removed datetime manipulation functions and most of the file flags
* Filesystem: common proxy api
* Filesystem: renamed to Storage. Work has begun on a glue layer. Added functions for reentrance.
* Storage: sd mount and sd file open
* Storage: sd file close
* Storage: temporary test app
* Storage: free filedata on close
* Storage: sd file read and write
* Storage: added internal storage (LittleFS)
* Storage: renamed internal commands
* Storage: seek, tell, truncate, size, sync, eof
* Storage: error descriptions
* Storage: directory management api (open, close, read, rewind)
* Storage: common management api (stat, fs_stat, remove, rename, mkdir)
* Dolphin app and Notifications app now use raw storage.
* Storage: storage statuses renamed. Implemented sd card icon.
* Storage: added raw sd-card api.
* Storage settings: work started
* Assets: use new icons approach
* Storage settings: working storage settings
* Storage: completely redesigned api, no longer sticking out FS_Api
* Storage: more simplified api, getting error_id from file is hidden from user, pointer to api is hidden inside file
* Storage: cli info and format commands
* Storage-cli: file list
* Storage: a simpler and more reliable api
* FatFS: slightly lighter and faster config. Also disabled reentrancy and file locking functions. They moved to a storage service.
* Storage-cli: accommodate to the new cli api.
* Storage: filesystem api is separated into internal and common api.
* Cli: added the ability to print the list of free heap blocks
* Storage: uses a list instead of an array to store the StorageFile. Rewrote api calls to use semaphores instead of thread flags.
* Storage settings: added the ability to benchmark the SD card.
* Gui module file select: uses new storage api
* Apps: removed deprecated sd_card_test application
* Args lib: support for enquoted arguments
* Dialogs: a new gui app for simple non-asynchronous apps
* Dialogs: view holder for easy single view work
* File worker: use new storage api
* IButton and lfrrfid apps: save keys to any storage
* Apps: fix ibutton and lfrfid stack, remove sd_card_test.
* SD filesystem: app removed
* File worker: fixed api pointer type
* Subghz: loading assets using the new storage api
* NFC: use the new storage api
* Dialogs: the better api for the message element
* Archive: use new storage api
* Irda: changed assest path, changed app path
* FileWorker: removed unused file_buf_cnt
* Storage: copying and renaming files now works between storages
* Storage cli: read, copy, remove, rename commands
* Archive: removed commented code
* Storage cli: write command
* Applications: add SRV_STORAGE and SRV_DIALOGS
* Internal-storage: removed
* Storage: improved api
* Storage app: changed api pointer from StorageApp to Storage
* Storage: better file_id handling
* Storage: more consistent errors
* Loader: support for NULL icons
* Storage: do nothing with the lfs file or directory if it is not open
* Storage: fix typo
* Storage: minor float usage cleanup, rename some symbols.
* Storage: compact doxygen comments.
Co-authored-by: あく <alleteam@gmail.com>
2021-07-23 12:20:19 +00:00
|
|
|
const char* LfRfidApp::app_folder = "/any/lfrfid";
|
2021-06-30 12:02:46 +00:00
|
|
|
const char* LfRfidApp::app_extension = ".rfid";
|
2021-10-06 09:40:28 +00:00
|
|
|
const char* LfRfidApp::app_filetype = "Flipper RFID key";
|
2021-06-28 14:42:30 +00:00
|
|
|
|
|
|
|
LfRfidApp::LfRfidApp()
|
|
|
|
: scene_controller{this}
|
|
|
|
, notification{"notification"}
|
2021-10-06 09:40:28 +00:00
|
|
|
, storage{"storage"}
|
|
|
|
, dialogs{"dialogs"}
|
2021-06-28 14:42:30 +00:00
|
|
|
, text_store(40) {
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_power_insomnia_enter();
|
2021-06-28 14:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LfRfidApp::~LfRfidApp() {
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_power_insomnia_exit();
|
2021-06-28 14:42:30 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 12:02:46 +00:00
|
|
|
void LfRfidApp::run(void* _args) {
|
|
|
|
const char* args = reinterpret_cast<const char*>(_args);
|
|
|
|
|
[FL-1191][FL-1524] Filesystem rework (#568)
* FS-Api: removed datetime manipulation functions and most of the file flags
* Filesystem: common proxy api
* Filesystem: renamed to Storage. Work has begun on a glue layer. Added functions for reentrance.
* Storage: sd mount and sd file open
* Storage: sd file close
* Storage: temporary test app
* Storage: free filedata on close
* Storage: sd file read and write
* Storage: added internal storage (LittleFS)
* Storage: renamed internal commands
* Storage: seek, tell, truncate, size, sync, eof
* Storage: error descriptions
* Storage: directory management api (open, close, read, rewind)
* Storage: common management api (stat, fs_stat, remove, rename, mkdir)
* Dolphin app and Notifications app now use raw storage.
* Storage: storage statuses renamed. Implemented sd card icon.
* Storage: added raw sd-card api.
* Storage settings: work started
* Assets: use new icons approach
* Storage settings: working storage settings
* Storage: completely redesigned api, no longer sticking out FS_Api
* Storage: more simplified api, getting error_id from file is hidden from user, pointer to api is hidden inside file
* Storage: cli info and format commands
* Storage-cli: file list
* Storage: a simpler and more reliable api
* FatFS: slightly lighter and faster config. Also disabled reentrancy and file locking functions. They moved to a storage service.
* Storage-cli: accommodate to the new cli api.
* Storage: filesystem api is separated into internal and common api.
* Cli: added the ability to print the list of free heap blocks
* Storage: uses a list instead of an array to store the StorageFile. Rewrote api calls to use semaphores instead of thread flags.
* Storage settings: added the ability to benchmark the SD card.
* Gui module file select: uses new storage api
* Apps: removed deprecated sd_card_test application
* Args lib: support for enquoted arguments
* Dialogs: a new gui app for simple non-asynchronous apps
* Dialogs: view holder for easy single view work
* File worker: use new storage api
* IButton and lfrrfid apps: save keys to any storage
* Apps: fix ibutton and lfrfid stack, remove sd_card_test.
* SD filesystem: app removed
* File worker: fixed api pointer type
* Subghz: loading assets using the new storage api
* NFC: use the new storage api
* Dialogs: the better api for the message element
* Archive: use new storage api
* Irda: changed assest path, changed app path
* FileWorker: removed unused file_buf_cnt
* Storage: copying and renaming files now works between storages
* Storage cli: read, copy, remove, rename commands
* Archive: removed commented code
* Storage cli: write command
* Applications: add SRV_STORAGE and SRV_DIALOGS
* Internal-storage: removed
* Storage: improved api
* Storage app: changed api pointer from StorageApp to Storage
* Storage: better file_id handling
* Storage: more consistent errors
* Loader: support for NULL icons
* Storage: do nothing with the lfs file or directory if it is not open
* Storage: fix typo
* Storage: minor float usage cleanup, rename some symbols.
* Storage: compact doxygen comments.
Co-authored-by: あく <alleteam@gmail.com>
2021-07-23 12:20:19 +00:00
|
|
|
make_app_folder();
|
|
|
|
|
2021-06-30 12:02:46 +00:00
|
|
|
if(strlen(args)) {
|
|
|
|
load_key_data(args, &worker.key);
|
|
|
|
scene_controller.add_scene(SceneType::Emulate, new LfRfidAppSceneEmulate());
|
|
|
|
scene_controller.process(100, SceneType::Emulate);
|
|
|
|
} else {
|
|
|
|
scene_controller.add_scene(SceneType::Start, new LfRfidAppSceneStart());
|
|
|
|
scene_controller.add_scene(SceneType::Read, new LfRfidAppSceneRead());
|
|
|
|
scene_controller.add_scene(SceneType::ReadSuccess, new LfRfidAppSceneReadSuccess());
|
|
|
|
scene_controller.add_scene(SceneType::ReadedMenu, new LfRfidAppSceneReadedMenu());
|
|
|
|
scene_controller.add_scene(SceneType::Write, new LfRfidAppSceneWrite());
|
|
|
|
scene_controller.add_scene(SceneType::WriteSuccess, new LfRfidAppSceneWriteSuccess());
|
|
|
|
scene_controller.add_scene(SceneType::Emulate, new LfRfidAppSceneEmulate());
|
|
|
|
scene_controller.add_scene(SceneType::SaveName, new LfRfidAppSceneSaveName());
|
|
|
|
scene_controller.add_scene(SceneType::SaveSuccess, new LfRfidAppSceneSaveSuccess());
|
|
|
|
scene_controller.add_scene(SceneType::SelectKey, new LfRfidAppSceneSelectKey());
|
|
|
|
scene_controller.add_scene(SceneType::SavedKeyMenu, new LfRfidAppSceneSavedKeyMenu());
|
|
|
|
scene_controller.add_scene(SceneType::SaveData, new LfRfidAppSceneSaveData());
|
|
|
|
scene_controller.add_scene(SceneType::SaveType, new LfRfidAppSceneSaveType());
|
|
|
|
scene_controller.add_scene(SceneType::SavedInfo, new LfRfidAppSceneSavedInfo());
|
|
|
|
scene_controller.add_scene(SceneType::DeleteConfirm, new LfRfidAppSceneDeleteConfirm());
|
|
|
|
scene_controller.add_scene(SceneType::DeleteSuccess, new LfRfidAppSceneDeleteSuccess());
|
|
|
|
scene_controller.process(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidApp::save_key(RfidKey* key) {
|
|
|
|
string_t file_name;
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
make_app_folder();
|
|
|
|
|
|
|
|
string_init_printf(file_name, "%s/%s%s", app_folder, key->get_name(), app_extension);
|
|
|
|
result = save_key_data(string_get_cstr(file_name), key);
|
|
|
|
string_clear(file_name);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidApp::load_key_from_file_select(bool need_restore) {
|
|
|
|
TextStore* filename_ts = new TextStore(64);
|
2021-10-06 09:40:28 +00:00
|
|
|
bool result = false;
|
2021-06-30 12:02:46 +00:00
|
|
|
|
|
|
|
if(need_restore) {
|
2021-10-06 09:40:28 +00:00
|
|
|
result = dialog_file_select_show(
|
|
|
|
dialogs,
|
2021-06-30 12:02:46 +00:00
|
|
|
app_folder,
|
|
|
|
app_extension,
|
|
|
|
filename_ts->text,
|
|
|
|
filename_ts->text_size,
|
|
|
|
worker.key.get_name());
|
|
|
|
} else {
|
2021-10-06 09:40:28 +00:00
|
|
|
result = dialog_file_select_show(
|
|
|
|
dialogs, app_folder, app_extension, filename_ts->text, filename_ts->text_size, NULL);
|
2021-06-30 12:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(result) {
|
|
|
|
string_t key_str;
|
|
|
|
string_init_printf(key_str, "%s/%s%s", app_folder, filename_ts->text, app_extension);
|
|
|
|
result = load_key_data(string_get_cstr(key_str), &worker.key);
|
|
|
|
string_clear(key_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete filename_ts;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidApp::delete_key(RfidKey* key) {
|
|
|
|
string_t file_name;
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
string_init_printf(file_name, "%s/%s%s", app_folder, key->get_name(), app_extension);
|
2021-10-06 09:40:28 +00:00
|
|
|
result = storage_simply_remove(storage, string_get_cstr(file_name));
|
2021-06-30 12:02:46 +00:00
|
|
|
string_clear(file_name);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidApp::load_key_data(const char* path, RfidKey* key) {
|
2022-02-18 19:53:46 +00:00
|
|
|
FlipperFormat* file = flipper_format_file_alloc(storage);
|
2021-06-30 12:02:46 +00:00
|
|
|
bool result = false;
|
2021-10-06 09:40:28 +00:00
|
|
|
string_t str_result;
|
|
|
|
string_init(str_result);
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2021-10-06 09:40:28 +00:00
|
|
|
do {
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_file_open_existing(file, path)) break;
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2021-10-06 09:40:28 +00:00
|
|
|
// header
|
|
|
|
uint32_t version;
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_read_header(file, str_result, &version)) break;
|
2021-10-06 09:40:28 +00:00
|
|
|
if(string_cmp_str(str_result, app_filetype) != 0) break;
|
|
|
|
if(version != 1) break;
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2021-10-06 09:40:28 +00:00
|
|
|
// key type
|
|
|
|
LfrfidKeyType type;
|
|
|
|
RfidKey loaded_key;
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_read_string(file, "Key type", str_result)) break;
|
2021-10-06 09:40:28 +00:00
|
|
|
if(!lfrfid_key_get_string_type(string_get_cstr(str_result), &type)) break;
|
|
|
|
loaded_key.set_type(type);
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2021-10-06 09:40:28 +00:00
|
|
|
// key data
|
|
|
|
uint8_t key_data[loaded_key.get_type_data_count()] = {};
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_read_hex(file, "Data", key_data, loaded_key.get_type_data_count()))
|
|
|
|
break;
|
2021-10-06 09:40:28 +00:00
|
|
|
loaded_key.set_data(key_data, loaded_key.get_type_data_count());
|
2021-06-30 12:02:46 +00:00
|
|
|
|
|
|
|
path_extract_filename_no_ext(path, str_result);
|
2021-10-06 09:40:28 +00:00
|
|
|
loaded_key.set_name(string_get_cstr(str_result));
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2021-10-06 09:40:28 +00:00
|
|
|
*key = loaded_key;
|
|
|
|
result = true;
|
|
|
|
} while(0);
|
2021-06-30 12:02:46 +00:00
|
|
|
|
2022-02-18 19:53:46 +00:00
|
|
|
flipper_format_free(file);
|
2021-10-06 09:40:28 +00:00
|
|
|
string_clear(str_result);
|
|
|
|
|
|
|
|
if(!result) {
|
|
|
|
dialog_message_show_storage_error(dialogs, "Cannot load\nkey file");
|
|
|
|
}
|
2021-06-30 12:02:46 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidApp::save_key_data(const char* path, RfidKey* key) {
|
2022-02-18 19:53:46 +00:00
|
|
|
FlipperFormat* file = flipper_format_file_alloc(storage);
|
2021-06-30 12:02:46 +00:00
|
|
|
bool result = false;
|
|
|
|
|
2021-10-06 09:40:28 +00:00
|
|
|
do {
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_file_open_always(file, path)) break;
|
|
|
|
if(!flipper_format_write_header_cstr(file, app_filetype, 1)) break;
|
|
|
|
if(!flipper_format_write_comment_cstr(file, "Key type can be EM4100, H10301 or I40134"))
|
2021-11-04 10:06:13 +00:00
|
|
|
break;
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_write_string_cstr(
|
2021-11-04 10:06:13 +00:00
|
|
|
file, "Key type", lfrfid_key_get_type_string(key->get_type())))
|
|
|
|
break;
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_write_comment_cstr(
|
2021-11-04 10:06:13 +00:00
|
|
|
file, "Data size for EM4100 is 5, for H10301 is 3, for I40134 is 3"))
|
|
|
|
break;
|
2022-02-18 19:53:46 +00:00
|
|
|
if(!flipper_format_write_hex(file, "Data", key->get_data(), key->get_type_data_count()))
|
2021-10-06 09:40:28 +00:00
|
|
|
break;
|
|
|
|
result = true;
|
|
|
|
} while(0);
|
|
|
|
|
2022-02-18 19:53:46 +00:00
|
|
|
flipper_format_free(file);
|
2021-10-06 09:40:28 +00:00
|
|
|
|
|
|
|
if(!result) {
|
|
|
|
dialog_message_show_storage_error(dialogs, "Cannot save\nkey file");
|
2021-06-30 12:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LfRfidApp::make_app_folder() {
|
2021-10-06 09:40:28 +00:00
|
|
|
if(!storage_simply_mkdir(storage, app_folder)) {
|
|
|
|
dialog_message_show_storage_error(dialogs, "Cannot create\napp folder");
|
|
|
|
}
|
2021-06-28 14:42:30 +00:00
|
|
|
}
|