| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836 |
- #include "config.h"
- #include <stdlib.h>
- #include <string.h>
- #include <flipper_format/flipper_format.h>
- #include <furi_hal_rtc.h>
- #include <flipper_format/flipper_format_i.h>
- #include <flipper_format/flipper_format_stream.h>
- #include <memset_s.h>
- #include "../../types/common.h"
- #include "../../types/token_info.h"
- #include "../../config/app/config.h"
- #include "../kb_layouts/kb_layout_provider.h"
- #include "../crypto/crypto_facade.h"
- #include "../crypto/constants.h"
- #include "migrations/common_migration.h"
- #define CONFIG_FILE_PATH CONFIG_FILE_DIRECTORY_PATH "/totp.conf"
- #define CONFIG_FILE_BACKUP_DIR CONFIG_FILE_DIRECTORY_PATH "/backups"
- #define CONFIG_FILE_BACKUP_BASE_PATH CONFIG_FILE_BACKUP_DIR "/totp.conf"
- struct ConfigFileContext {
- /**
- * @brief Config file reference
- */
- FlipperFormat* config_file;
- /**
- * @brief Storage reference
- */
- Storage* storage;
- /**
- * @brief Token list iterator context
- */
- TokenInfoIteratorContext* token_info_iterator_context;
- };
- /**
- * @brief Opens storage record
- * @return Storage record
- */
- static Storage* totp_open_storage() {
- return furi_record_open(RECORD_STORAGE);
- }
- /**
- * @brief Closes storage record
- */
- static void totp_close_storage() {
- furi_record_close(RECORD_STORAGE);
- }
- /**
- * @brief Closes config file
- * @param file config file reference
- */
- static void totp_close_config_file(FlipperFormat* file) {
- if(file == NULL) return;
- flipper_format_file_close(file);
- flipper_format_free(file);
- }
- /**
- * @brief Tries to take a config file backup
- * @param storage storage record
- * @return backup path if backup successfully taken; \c NULL otherwise
- */
- static char* totp_config_file_backup_i(Storage* storage) {
- if(!storage_dir_exists(storage, CONFIG_FILE_BACKUP_DIR) &&
- !storage_simply_mkdir(storage, CONFIG_FILE_BACKUP_DIR)) {
- return NULL;
- }
- DateTime current_datetime;
- furi_hal_rtc_get_datetime(¤t_datetime);
- uint8_t backup_path_size = sizeof(CONFIG_FILE_BACKUP_BASE_PATH) + 14;
- char* backup_path = malloc(backup_path_size);
- furi_check(backup_path != NULL);
- memcpy(backup_path, CONFIG_FILE_BACKUP_BASE_PATH, sizeof(CONFIG_FILE_BACKUP_BASE_PATH));
- uint16_t i = 1;
- bool backup_file_exists;
- do {
- snprintf(
- backup_path,
- backup_path_size,
- CONFIG_FILE_BACKUP_BASE_PATH ".%4" PRIu16 "%02" PRIu8 "%02" PRIu8 "-%" PRIu16,
- current_datetime.year,
- current_datetime.month,
- current_datetime.day,
- i);
- i++;
- } while((backup_file_exists = storage_common_exists(storage, backup_path)) && i <= 9999);
- if(backup_file_exists ||
- storage_common_copy(storage, CONFIG_FILE_PATH, backup_path) != FSE_OK) {
- FURI_LOG_E(LOGGING_TAG, "Unable to take a backup");
- free(backup_path);
- return NULL;
- }
- FURI_LOG_I(LOGGING_TAG, "Took config file backup to %s", backup_path);
- return backup_path;
- }
- /**
- * @brief Opens or creates TOTP application standard config file
- * @param storage storage record to use
- * @param[out] file opened config file
- * @return Config file open result
- */
- static bool totp_open_config_file(Storage* storage, FlipperFormat** file) {
- FlipperFormat* fff_data_file = flipper_format_file_alloc(storage);
- bool conf_file_exists = storage_common_stat(storage, CONFIG_FILE_PATH, NULL) == FSE_OK;
- if(!conf_file_exists &&
- storage_common_stat(storage, EXT_PATH("authenticator"), NULL) == FSE_OK) {
- FURI_LOG_I(LOGGING_TAG, "Application catalog needs to be migrated");
- FS_Error migration_result =
- storage_common_migrate(storage, EXT_PATH("authenticator"), CONFIG_FILE_DIRECTORY_PATH);
- FURI_LOG_I(LOGGING_TAG, "Migrated catalog. Result code: %d", (int)migration_result);
- conf_file_exists = storage_common_stat(storage, CONFIG_FILE_PATH, NULL) == FSE_OK;
- }
- if(conf_file_exists) {
- FURI_LOG_D(LOGGING_TAG, "Config file %s found", CONFIG_FILE_PATH);
- if(!flipper_format_file_open_existing(fff_data_file, CONFIG_FILE_PATH)) {
- FURI_LOG_E(LOGGING_TAG, "Error opening existing file %s", CONFIG_FILE_PATH);
- totp_close_config_file(fff_data_file);
- return false;
- }
- } else {
- if(storage_common_stat(storage, CONFIG_FILE_DIRECTORY_PATH, NULL) == FSE_NOT_EXIST) {
- FURI_LOG_D(LOGGING_TAG, "Config file directory doesn't exist. Will create new");
- if(!storage_simply_mkdir(storage, CONFIG_FILE_DIRECTORY_PATH)) {
- FURI_LOG_E(
- LOGGING_TAG,
- "Error creating config file directory %s",
- CONFIG_FILE_DIRECTORY_PATH);
- return false;
- }
- }
- FURI_LOG_D(LOGGING_TAG, "Config file %s is not found. Will create new.", CONFIG_FILE_PATH);
- if(!flipper_format_file_open_new(fff_data_file, CONFIG_FILE_PATH)) {
- totp_close_config_file(fff_data_file);
- FURI_LOG_E(LOGGING_TAG, "Error creating new file %s", CONFIG_FILE_PATH);
- return false;
- }
- flipper_format_write_header_cstr(
- fff_data_file, CONFIG_FILE_HEADER, CONFIG_FILE_ACTUAL_VERSION);
- uint32_t tmp_uint32 = CRYPTO_LATEST_VERSION;
- flipper_format_write_uint32(fff_data_file, TOTP_CONFIG_KEY_CRYPTO_VERSION, &tmp_uint32, 1);
- tmp_uint32 = DEFAULT_CRYPTO_KEY_SLOT;
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_CRYPTO_KEY_SLOT, &tmp_uint32, 1);
- flipper_format_write_comment_cstr(
- fff_data_file,
- "Config file format specification can be found here: https://t.ly/zwQjE");
- float tmp_tz = 0;
- flipper_format_write_float(fff_data_file, TOTP_CONFIG_KEY_TIMEZONE, &tmp_tz, 1);
- tmp_uint32 = NotificationMethodSound | NotificationMethodVibro;
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_NOTIFICATION_METHOD, &tmp_uint32, 1);
- tmp_uint32 = AutomationMethodBadUsb;
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_METHOD, &tmp_uint32, 1);
- tmp_uint32 = TOTP_DEFAULT_KB_LAYOUT;
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_KB_LAYOUT, &tmp_uint32, 1);
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- tmp_uint32 = 0; //-V1048
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_BADBT_PROFILE, &tmp_uint32, 1);
- #endif
- tmp_uint32 = 500;
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_INITIAL_DELAY, &tmp_uint32, 1);
- tmp_uint32 = 0; //-V1048
- flipper_format_write_uint32(fff_data_file, TOTP_CONFIG_KEY_FONT, &tmp_uint32, 1);
- flipper_format_write_uint32(
- fff_data_file, TOTP_CONFIG_KEY_UI_TOKEN_DIGIT_GROUPING, &tmp_uint32, 1);
- if(!flipper_format_rewind(fff_data_file)) {
- totp_close_config_file(fff_data_file);
- FURI_LOG_E(LOGGING_TAG, "Rewind error");
- return false;
- }
- }
- *file = fff_data_file;
- return true;
- }
- char* totp_config_file_backup(const PluginState* plugin_state) {
- if(plugin_state->config_file_context == NULL) return NULL;
- totp_close_config_file(plugin_state->config_file_context->config_file);
- char* result = totp_config_file_backup_i(plugin_state->config_file_context->storage);
- totp_open_config_file(
- plugin_state->config_file_context->storage,
- &plugin_state->config_file_context->config_file);
- totp_token_info_iterator_attach_to_config_file(
- plugin_state->config_file_context->token_info_iterator_context,
- plugin_state->config_file_context->config_file);
- return result;
- }
- bool totp_config_file_update_timezone_offset(const PluginState* plugin_state) {
- FlipperFormat* file = plugin_state->config_file_context->config_file;
- flipper_format_rewind(file);
- bool update_result = false;
- do {
- if(!flipper_format_insert_or_update_float(
- file, TOTP_CONFIG_KEY_TIMEZONE, &plugin_state->timezone_offset, 1)) {
- break;
- }
- update_result = true;
- } while(false);
- return update_result;
- }
- bool totp_config_file_update_notification_method(const PluginState* plugin_state) {
- FlipperFormat* file = plugin_state->config_file_context->config_file;
- flipper_format_rewind(file);
- bool update_result = false;
- do {
- uint32_t tmp_uint32 = plugin_state->notification_method;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_NOTIFICATION_METHOD, &tmp_uint32, 1)) {
- break;
- }
- update_result = true;
- } while(false);
- return update_result;
- }
- bool totp_config_file_update_automation_method(const PluginState* plugin_state) {
- FlipperFormat* file = plugin_state->config_file_context->config_file;
- flipper_format_rewind(file);
- bool update_result = false;
- do {
- uint32_t tmp_uint32 = plugin_state->automation_method;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_METHOD, &tmp_uint32, 1)) {
- break;
- }
- tmp_uint32 = plugin_state->automation_kb_layout;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_KB_LAYOUT, &tmp_uint32, 1)) {
- break;
- }
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- tmp_uint32 = plugin_state->bt_type_code_worker_profile_index;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_BADBT_PROFILE, &tmp_uint32, 1)) {
- break;
- }
- #endif
- tmp_uint32 = plugin_state->automation_initial_delay;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_INITIAL_DELAY, &tmp_uint32, 1)) {
- break;
- }
- update_result = true;
- } while(false);
- return update_result;
- }
- bool totp_config_file_update_user_settings(const PluginState* plugin_state) {
- FlipperFormat* file = plugin_state->config_file_context->config_file;
- flipper_format_rewind(file);
- bool update_result = false;
- do {
- if(!flipper_format_insert_or_update_float(
- file, TOTP_CONFIG_KEY_TIMEZONE, &plugin_state->timezone_offset, 1)) {
- break;
- }
- uint32_t tmp_uint32 = plugin_state->notification_method;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_NOTIFICATION_METHOD, &tmp_uint32, 1)) {
- break;
- }
- tmp_uint32 = plugin_state->automation_method;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_METHOD, &tmp_uint32, 1)) {
- break;
- }
- tmp_uint32 = plugin_state->active_font_index;
- if(!flipper_format_insert_or_update_uint32(file, TOTP_CONFIG_KEY_FONT, &tmp_uint32, 1)) {
- break;
- }
- tmp_uint32 = plugin_state->automation_kb_layout;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_KB_LAYOUT, &tmp_uint32, 1)) {
- break;
- }
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- tmp_uint32 = plugin_state->bt_type_code_worker_profile_index;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_BADBT_PROFILE, &tmp_uint32, 1)) {
- break;
- }
- #endif
- tmp_uint32 = plugin_state->automation_initial_delay;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_AUTOMATION_INITIAL_DELAY, &tmp_uint32, 1)) {
- break;
- }
- tmp_uint32 = plugin_state->split_token_into_groups;
- if(!flipper_format_insert_or_update_uint32(
- file, TOTP_CONFIG_KEY_UI_TOKEN_DIGIT_GROUPING, &tmp_uint32, 1)) {
- break;
- }
- update_result = true;
- } while(false);
- return update_result;
- }
- bool totp_config_file_load(PluginState* const plugin_state) {
- Storage* storage = totp_open_storage();
- FlipperFormat* fff_data_file;
- if(!totp_open_config_file(storage, &fff_data_file)) {
- totp_close_storage();
- return false;
- }
- flipper_format_rewind(fff_data_file);
- bool result = false;
- plugin_state->timezone_offset = 0;
- FuriString* temp_str = furi_string_alloc();
- do {
- uint32_t file_version;
- if(!flipper_format_read_header(fff_data_file, temp_str, &file_version)) {
- FURI_LOG_E(LOGGING_TAG, "Missing or incorrect header");
- break;
- }
- if(file_version < CONFIG_FILE_ACTUAL_VERSION) {
- FURI_LOG_I(
- LOGGING_TAG,
- "Obsolete config file version detected. Current version: %" PRIu32
- "; Actual version: %" PRId16,
- file_version,
- CONFIG_FILE_ACTUAL_VERSION);
- totp_close_config_file(fff_data_file);
- char* backup_path = totp_config_file_backup_i(storage);
- if(backup_path != NULL) {
- if(totp_open_config_file(storage, &fff_data_file) != true) {
- break;
- }
- FlipperFormat* fff_backup_data_file = flipper_format_file_alloc(storage);
- if(!flipper_format_file_open_existing(fff_backup_data_file, backup_path)) {
- flipper_format_file_close(fff_backup_data_file);
- flipper_format_free(fff_backup_data_file);
- break;
- }
- if(totp_config_migrate_to_latest(fff_data_file, fff_backup_data_file)) {
- FURI_LOG_I(
- LOGGING_TAG,
- "Applied migration to version %" PRId16,
- CONFIG_FILE_ACTUAL_VERSION);
- file_version = CONFIG_FILE_ACTUAL_VERSION;
- } else {
- FURI_LOG_W(
- LOGGING_TAG,
- "An error occurred during migration to version %" PRId16,
- CONFIG_FILE_ACTUAL_VERSION);
- break;
- }
- flipper_format_file_close(fff_backup_data_file);
- flipper_format_free(fff_backup_data_file);
- flipper_format_rewind(fff_data_file);
- free(backup_path);
- } else {
- FURI_LOG_E(
- LOGGING_TAG,
- "An error occurred during taking backup of %s before migration",
- CONFIG_FILE_PATH);
- break;
- }
- }
- uint32_t tmp_uint32;
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_CRYPTO_VERSION, &tmp_uint32, 1)) {
- FURI_LOG_E(LOGGING_TAG, "Missing required " TOTP_CONFIG_KEY_CRYPTO_VERSION "property");
- break;
- }
- plugin_state->crypto_settings.crypto_version = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_CRYPTO_KEY_SLOT, &tmp_uint32, 1)) {
- FURI_LOG_E(
- LOGGING_TAG, "Missing required " TOTP_CONFIG_KEY_CRYPTO_KEY_SLOT "property");
- break;
- }
- plugin_state->crypto_settings.crypto_key_slot = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_hex(
- fff_data_file,
- TOTP_CONFIG_KEY_SALT,
- &plugin_state->crypto_settings.salt[0],
- CRYPTO_SALT_LENGTH)) {
- FURI_LOG_D(LOGGING_TAG, "Missing salt");
- }
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- uint32_t crypto_size;
- if(flipper_format_get_value_count(
- fff_data_file, TOTP_CONFIG_KEY_CRYPTO_VERIFY, &crypto_size) &&
- crypto_size > 0) {
- plugin_state->crypto_settings.crypto_verify_data =
- malloc(sizeof(uint8_t) * crypto_size);
- furi_check(plugin_state->crypto_settings.crypto_verify_data != NULL);
- plugin_state->crypto_settings.crypto_verify_data_length = crypto_size;
- if(!flipper_format_read_hex(
- fff_data_file,
- TOTP_CONFIG_KEY_CRYPTO_VERIFY,
- plugin_state->crypto_settings.crypto_verify_data,
- crypto_size)) {
- FURI_LOG_D(LOGGING_TAG, "Missing crypto verify token");
- free(plugin_state->crypto_settings.crypto_verify_data);
- plugin_state->crypto_settings.crypto_verify_data = NULL;
- plugin_state->crypto_settings.crypto_verify_data_length = 0;
- }
- } else {
- plugin_state->crypto_settings.crypto_verify_data = NULL;
- plugin_state->crypto_settings.crypto_verify_data_length = 0;
- }
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_float(
- fff_data_file, TOTP_CONFIG_KEY_TIMEZONE, &plugin_state->timezone_offset, 1)) {
- plugin_state->timezone_offset = 0;
- FURI_LOG_D(LOGGING_TAG, "Missing timezone offset information, defaulting to 0");
- }
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_bool(
- fff_data_file,
- TOTP_CONFIG_KEY_PINSET,
- &plugin_state->crypto_settings.pin_required,
- 1)) {
- plugin_state->crypto_settings.pin_required = true;
- }
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_NOTIFICATION_METHOD, &tmp_uint32, 1)) {
- tmp_uint32 = NotificationMethodSound | NotificationMethodVibro;
- }
- plugin_state->notification_method = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_METHOD, &tmp_uint32, 1)) {
- tmp_uint32 = AutomationMethodBadUsb;
- }
- plugin_state->automation_method = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_KB_LAYOUT, &tmp_uint32, 1)) {
- tmp_uint32 = TOTP_DEFAULT_KB_LAYOUT;
- }
- plugin_state->automation_kb_layout = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_BADBT_PROFILE, &tmp_uint32, 1)) {
- tmp_uint32 = 0;
- }
- plugin_state->bt_type_code_worker_profile_index = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- #endif
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_AUTOMATION_INITIAL_DELAY, &tmp_uint32, 1)) {
- tmp_uint32 = 500;
- }
- plugin_state->automation_initial_delay = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_uint32(fff_data_file, TOTP_CONFIG_KEY_FONT, &tmp_uint32, 1)) {
- tmp_uint32 = 0;
- }
- plugin_state->active_font_index = tmp_uint32;
- if(!flipper_format_rewind(fff_data_file)) {
- break;
- }
- if(!flipper_format_read_uint32(
- fff_data_file, TOTP_CONFIG_KEY_UI_TOKEN_DIGIT_GROUPING, &tmp_uint32, 1)) {
- tmp_uint32 = 0;
- }
- plugin_state->split_token_into_groups = tmp_uint32;
- plugin_state->config_file_context = malloc(sizeof(ConfigFileContext));
- furi_check(plugin_state->config_file_context != NULL);
- plugin_state->config_file_context->storage = storage;
- plugin_state->config_file_context->config_file = fff_data_file;
- plugin_state->config_file_context->token_info_iterator_context =
- totp_token_info_iterator_alloc(
- storage,
- plugin_state->config_file_context->config_file,
- &plugin_state->crypto_settings);
- result = true;
- } while(false);
- furi_string_free(temp_str);
- return result;
- }
- bool totp_config_file_update_crypto_signatures(const PluginState* plugin_state) {
- FlipperFormat* config_file = plugin_state->config_file_context->config_file;
- flipper_format_rewind(config_file);
- bool update_result = false;
- do {
- uint32_t tmp_uint32 = plugin_state->crypto_settings.crypto_version;
- if(!flipper_format_insert_or_update_uint32(
- config_file, TOTP_CONFIG_KEY_CRYPTO_VERSION, &tmp_uint32, 1)) {
- break;
- }
- tmp_uint32 = plugin_state->crypto_settings.crypto_key_slot;
- if(!flipper_format_insert_or_update_uint32(
- config_file, TOTP_CONFIG_KEY_CRYPTO_KEY_SLOT, &tmp_uint32, 1)) {
- break;
- }
- if(!flipper_format_insert_or_update_hex(
- config_file,
- TOTP_CONFIG_KEY_SALT,
- &plugin_state->crypto_settings.salt[0],
- CRYPTO_SALT_LENGTH)) {
- break;
- }
- if(!flipper_format_insert_or_update_hex(
- config_file,
- TOTP_CONFIG_KEY_CRYPTO_VERIFY,
- plugin_state->crypto_settings.crypto_verify_data,
- plugin_state->crypto_settings.crypto_verify_data_length)) {
- break;
- }
- if(!flipper_format_insert_or_update_bool(
- config_file,
- TOTP_CONFIG_KEY_PINSET,
- &plugin_state->crypto_settings.pin_required,
- 1)) {
- break;
- }
- update_result = true;
- } while(false);
- return update_result;
- }
- void totp_config_file_close(PluginState* const plugin_state) {
- if(plugin_state->config_file_context == NULL) return;
- totp_token_info_iterator_free(plugin_state->config_file_context->token_info_iterator_context);
- totp_close_config_file(plugin_state->config_file_context->config_file);
- free(plugin_state->config_file_context);
- plugin_state->config_file_context = NULL;
- totp_close_storage();
- }
- void totp_config_file_reset(PluginState* const plugin_state) {
- totp_config_file_close(plugin_state);
- Storage* storage = totp_open_storage();
- storage_simply_remove(storage, CONFIG_FILE_PATH);
- totp_close_storage();
- }
- bool totp_config_file_update_encryption(
- PluginState* plugin_state,
- uint8_t new_crypto_key_slot,
- const uint8_t* new_pin,
- uint8_t new_pin_length) {
- FlipperFormat* config_file = plugin_state->config_file_context->config_file;
- Stream* stream = flipper_format_get_raw_stream(config_file);
- size_t original_offset = stream_tell(stream);
- if(!stream_rewind(stream)) {
- return false;
- }
- if(!totp_crypto_check_key_slot(new_crypto_key_slot)) {
- return false;
- }
- CryptoSettings old_crypto_settings = plugin_state->crypto_settings;
- memset(&plugin_state->crypto_settings.iv[0], 0, CRYPTO_IV_LENGTH);
- memset(&plugin_state->crypto_settings.salt[0], 0, CRYPTO_SALT_LENGTH);
- if(plugin_state->crypto_settings.crypto_verify_data != NULL) {
- free(plugin_state->crypto_settings.crypto_verify_data);
- plugin_state->crypto_settings.crypto_verify_data = NULL;
- }
- plugin_state->crypto_settings.crypto_key_slot = new_crypto_key_slot;
- plugin_state->crypto_settings.crypto_version = CRYPTO_LATEST_VERSION;
- CryptoSeedIVResult seed_result = totp_crypto_seed_iv(
- &plugin_state->crypto_settings, new_pin_length > 0 ? new_pin : NULL, new_pin_length);
- if(seed_result & CryptoSeedIVResultFlagSuccess &&
- seed_result & CryptoSeedIVResultFlagNewCryptoVerifyData &&
- !totp_config_file_update_crypto_signatures(plugin_state)) {
- return false;
- } else if(seed_result == CryptoSeedIVResultFailed) {
- return false;
- }
- char buffer[sizeof(TOTP_CONFIG_KEY_TOKEN_SECRET) + 1];
- bool result = true;
- while(true) {
- if(!stream_seek_to_char(stream, '\n', StreamDirectionForward)) {
- break;
- }
- size_t buffer_read_size;
- if((buffer_read_size = stream_read(stream, (uint8_t*)&buffer[0], sizeof(buffer))) == 0) {
- break;
- }
- if(!stream_seek(stream, -(int32_t)buffer_read_size, StreamOffsetFromCurrent)) {
- result = false;
- break;
- }
- if(strncmp(buffer, "\n" TOTP_CONFIG_KEY_TOKEN_SECRET ":", sizeof(buffer)) == 0) {
- uint32_t secret_bytes_count;
- if(!flipper_format_get_value_count(
- config_file, TOTP_CONFIG_KEY_TOKEN_SECRET, &secret_bytes_count)) {
- secret_bytes_count = 0;
- }
- if(secret_bytes_count > 1) {
- size_t secret_token_start = stream_tell(stream) + 1;
- uint8_t* encrypted_token = malloc(secret_bytes_count);
- furi_check(encrypted_token != NULL);
- if(!flipper_format_read_hex(
- config_file,
- TOTP_CONFIG_KEY_TOKEN_SECRET,
- encrypted_token,
- secret_bytes_count)) {
- result = false;
- free(encrypted_token);
- break;
- }
- size_t plain_token_length;
- uint8_t* plain_token = totp_crypto_decrypt(
- encrypted_token, secret_bytes_count, &old_crypto_settings, &plain_token_length);
- free(encrypted_token);
- size_t encrypted_token_length;
- encrypted_token = totp_crypto_encrypt(
- plain_token,
- plain_token_length,
- &plugin_state->crypto_settings,
- &encrypted_token_length);
- memset_s(plain_token, plain_token_length, 0, plain_token_length);
- free(plain_token);
- if(!stream_seek(stream, secret_token_start, StreamOffsetFromStart)) {
- result = false;
- free(encrypted_token);
- break;
- }
- if(!flipper_format_write_hex(
- config_file,
- TOTP_CONFIG_KEY_TOKEN_SECRET,
- encrypted_token,
- encrypted_token_length)) {
- free(encrypted_token);
- result = false;
- break;
- }
- free(encrypted_token);
- }
- }
- }
- stream_seek(stream, original_offset, StreamOffsetFromStart);
- return result;
- }
- bool totp_config_file_ensure_latest_encryption(
- PluginState* plugin_state,
- const uint8_t* pin,
- uint8_t pin_length) {
- bool result = true;
- if(plugin_state->crypto_settings.crypto_version < CRYPTO_LATEST_VERSION) {
- FURI_LOG_I(
- LOGGING_TAG,
- "Migration crypto from v%" PRIu8 " to v%" PRIu8 " is needed",
- plugin_state->crypto_settings.crypto_version,
- CRYPTO_LATEST_VERSION);
- #ifndef TOTP_OBSOLETE_CRYPTO_V1_COMPATIBILITY_ENABLED
- if(plugin_state->crypto_settings.crypto_version == 1) {
- furi_crash("Authenticator: Crypto v1 is not supported");
- }
- #endif
- #ifndef TOTP_OBSOLETE_CRYPTO_V2_COMPATIBILITY_ENABLED
- if(plugin_state->crypto_settings.crypto_version == 2) {
- furi_crash("Authenticator: Crypto v2 is not supported");
- }
- #endif
- char* backup_path = totp_config_file_backup(plugin_state);
- if(backup_path != NULL) {
- free(backup_path);
- uint8_t crypto_key_slot = plugin_state->crypto_settings.crypto_key_slot;
- if(!totp_crypto_check_key_slot(crypto_key_slot)) {
- crypto_key_slot = DEFAULT_CRYPTO_KEY_SLOT;
- }
- result =
- totp_config_file_update_encryption(plugin_state, crypto_key_slot, pin, pin_length);
- FURI_LOG_I(
- LOGGING_TAG,
- "Migration to crypto v%d is done. Result: %d",
- CRYPTO_LATEST_VERSION,
- result);
- } else {
- result = false;
- }
- }
- return result;
- }
- TokenInfoIteratorContext* totp_config_get_token_iterator_context(const PluginState* plugin_state) {
- return plugin_state->config_file_context->token_info_iterator_context;
- }
|