 e02040107b
			
		
	
	
		e02040107b
		
			
		
	
	
	
	
		
			
			* WIP on stripping fw * Compact FW build - use RAM_EXEC=1 COMPACT=1 DEBUG=0 * Fixed uninitialized storage struct; small fixes to compact fw * Flasher srv w/mocked flash ops * Fixed typos & accomodated FFF changes * Alternative fw startup branch * Working load & jmp to RAM fw * +manifest processing for stage loader; + crc verification for stage payload * Fixed questionable code & potential leaks * Lowered screen update rate; added radio stack update stubs; working dfu write * Console EP with manifest & stage validation * Added microtar lib; minor ui fixes for updater * Removed microtar * Removed mtar #2 * Added a better version of microtar * TAR archive api; LFS backup & restore core * Recursive backup/restore * LFS worker thread * Added system apps to loader - not visible in UI; full update process with restarts * Typo fix * Dropped BL & f6; tooling for updater WIP * Minor py fixes * Minor fixes to make it build after merge * Ported flash workaround from BL + fixed visuals * Minor cleanup * Chmod + loader app search fix * Python linter fix * Removed usb stuff & float read support for staged loader == -10% of binary size * Added backup/restore & update pb requests * Added stub impl to RPC for backup/restore/update commands * Reworked TAR to use borrowed Storage api; slightly reduced build size by removing `static string`; hidden update-related RPC behind defines * Moved backup&restore to storage * Fixed new message types * Backup/restore/update RPC impl * Moved furi_hal_crc to LL; minor fixes * CRC HAL rework to LL * Purging STM HAL * Brought back minimal DFU boot mode (no gui); additional crc state checks * Added splash screen, BROKEN usb function * Clock init rework WIP * Stripped graphics from DFU mode * Temp fix for unused static fun * WIP update picker - broken! * Fixed UI * Bumping version * Fixed RTC setup * Backup to update folder instead of ext root * Removed unused scenes & more usb remnants from staged loader * CI updates * Fixed update bundle name * Temporary restored USB handler * Attempt to prevent .text corruption * Comments on how I spent this Saturday * Added update file icon * Documentation updates * Moved common code to lib folder * Storage: more unit tests * Storage: blocking dir open, differentiate file and dir when freed. * Major refactoring; added input processing to updater to allow retrying on failures (not very useful prob). Added API for extraction of thread return value * Removed re-init check for manifest * Changed low-level path manipulation to toolbox/path.h; makefile cleanup; tiny fix in lint.py * Increased update worker stack size * Text fixes in backup CLI * Displaying number of update stages to run; removed timeout in handling errors * Bumping version * Added thread cleanup for spawner thread * Updated build targets to exclude firmware bundle from 'ALL' * Fixed makefile for update_package; skipping VCP init for update mode (ugly) * Switched github build from ALL to update_package * Added +x for dist_update.sh * Cli: add total heap size to "free" command * Moved (RAM) suffix to build version instead of git commit no. * DFU comment * Some fixes suggested by clang-tidy * Fixed recursive PREFIX macro * Makefile: gather all new rules in updater namespace. FuriHal: rename bootloader to boot, isr safe delays * Github: correct build target name in firmware build * FuriHal: move target switch to boot * Makefile: fix firmware flash * Furi, FuriHal: move kernel start to furi, early init * Drop bootloader related stuff * Drop cube. Drop bootloader linker script. * Renamed update_hl, moved constants to #defines * Moved update-related boot mode to separate bitfield * Reworked updater cli to single entry point; fixed crash on tar cleanup * Added Python replacement for dist shell scripts * Linter fixes for dist.py +x * Fixes for environment suffix * Dropped bash scripts * Added dirty build flag to version structure & interfaces * Version string escapes * Fixed flag logic in dist.py; added support for App instances being imported and not terminating the whole program * Fixed fw address in ReadMe.md * Rpc: fix crash on double screen start * Return back original boot behavior and fix jump to system bootloader * Cleanup code, add error sequence for RTC * Update firmware readme * FuriHal: drop boot, restructure RTC registers usage and add header register check * Furi goes first * Toolchain: add ccache support * Renamed update bundle dir Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			648 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			648 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "flipper.pb.h"
 | |
| #include "furi/common_defines.h"
 | |
| #include "furi/memmgr.h"
 | |
| #include "furi/record.h"
 | |
| #include "pb_decode.h"
 | |
| #include "rpc/rpc.h"
 | |
| #include "rpc_i.h"
 | |
| #include "storage.pb.h"
 | |
| #include "storage/filesystem_api_defines.h"
 | |
| #include "storage/storage.h"
 | |
| #include <stdint.h>
 | |
| #include <lib/toolbox/md5.h>
 | |
| #include <update_util/lfs_backup.h>
 | |
| 
 | |
| #define RPC_TAG "RPC_STORAGE"
 | |
| #define MAX_NAME_LENGTH 255
 | |
| 
 | |
| static const size_t MAX_DATA_SIZE = 512;
 | |
| 
 | |
| typedef enum {
 | |
|     RpcStorageStateIdle = 0,
 | |
|     RpcStorageStateWriting,
 | |
| } RpcStorageState;
 | |
| 
 | |
| typedef struct {
 | |
|     RpcSession* session;
 | |
|     Storage* api;
 | |
|     File* file;
 | |
|     RpcStorageState state;
 | |
|     uint32_t current_command_id;
 | |
| } RpcStorageSystem;
 | |
| 
 | |
| void rpc_print_message(const PB_Main* message);
 | |
| 
 | |
| static void rpc_system_storage_reset_state(
 | |
|     RpcStorageSystem* rpc_storage,
 | |
|     RpcSession* session,
 | |
|     bool send_error) {
 | |
|     furi_assert(rpc_storage);
 | |
| 
 | |
|     if(rpc_storage->state != RpcStorageStateIdle) {
 | |
|         if(send_error) {
 | |
|             rpc_send_and_release_empty(
 | |
|                 session,
 | |
|                 rpc_storage->current_command_id,
 | |
|                 PB_CommandStatus_ERROR_CONTINUOUS_COMMAND_INTERRUPTED);
 | |
|         }
 | |
| 
 | |
|         if(rpc_storage->state == RpcStorageStateWriting) {
 | |
|             storage_file_close(rpc_storage->file);
 | |
|             storage_file_free(rpc_storage->file);
 | |
|             furi_record_close("storage");
 | |
|         }
 | |
| 
 | |
|         rpc_storage->state = RpcStorageStateIdle;
 | |
|     }
 | |
| }
 | |
| 
 | |
| PB_CommandStatus rpc_system_storage_get_error(FS_Error fs_error) {
 | |
|     PB_CommandStatus pb_error;
 | |
|     switch(fs_error) {
 | |
|     case FSE_OK:
 | |
|         pb_error = PB_CommandStatus_OK;
 | |
|         break;
 | |
|     case FSE_INVALID_NAME:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_INVALID_NAME;
 | |
|         break;
 | |
|     case FSE_INVALID_PARAMETER:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_INVALID_PARAMETER;
 | |
|         break;
 | |
|     case FSE_INTERNAL:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_INTERNAL;
 | |
|         break;
 | |
|     case FSE_ALREADY_OPEN:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_ALREADY_OPEN;
 | |
|         break;
 | |
|     case FSE_DENIED:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_DENIED;
 | |
|         break;
 | |
|     case FSE_EXIST:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_EXIST;
 | |
|         break;
 | |
|     case FSE_NOT_EXIST:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_NOT_EXIST;
 | |
|         break;
 | |
|     case FSE_NOT_READY:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_NOT_READY;
 | |
|         break;
 | |
|     case FSE_NOT_IMPLEMENTED:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_NOT_IMPLEMENTED;
 | |
|         break;
 | |
|     default:
 | |
|         pb_error = PB_CommandStatus_ERROR;
 | |
|         break;
 | |
|     }
 | |
| 
 | |
|     return pb_error;
 | |
| }
 | |
| 
 | |
| static PB_CommandStatus rpc_system_storage_get_file_error(File* file) {
 | |
|     return rpc_system_storage_get_error(storage_file_get_error(file));
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_info_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_info_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     response->command_id = request->command_id;
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     FS_Error error = storage_common_fs_info(
 | |
|         fs_api,
 | |
|         request->content.storage_info_request.path,
 | |
|         &response->content.storage_info_response.total_space,
 | |
|         &response->content.storage_info_response.free_space);
 | |
| 
 | |
|     response->command_status = rpc_system_storage_get_error(error);
 | |
|     if(error == FSE_OK) {
 | |
|         response->which_content = PB_Main_storage_info_response_tag;
 | |
|     } else {
 | |
|         response->which_content = PB_Main_empty_tag;
 | |
|     }
 | |
| 
 | |
|     rpc_send_and_release(session, response);
 | |
|     free(response);
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_stat_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_stat_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     response->command_id = request->command_id;
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     const char* path = request->content.storage_stat_request.path;
 | |
|     FileInfo fileinfo;
 | |
|     FS_Error error = storage_common_stat(fs_api, path, &fileinfo);
 | |
| 
 | |
|     response->command_status = rpc_system_storage_get_error(error);
 | |
|     response->which_content = PB_Main_empty_tag;
 | |
| 
 | |
|     if(error == FSE_OK) {
 | |
|         response->which_content = PB_Main_storage_stat_response_tag;
 | |
|         response->content.storage_stat_response.has_file = true;
 | |
|         response->content.storage_stat_response.file.type = (fileinfo.flags & FSF_DIRECTORY) ?
 | |
|                                                                 PB_Storage_File_FileType_DIR :
 | |
|                                                                 PB_Storage_File_FileType_FILE;
 | |
|         response->content.storage_stat_response.file.size = fileinfo.size;
 | |
|     }
 | |
| 
 | |
|     rpc_send_and_release(session, response);
 | |
|     free(response);
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_list_root(const PB_Main* request, void* context) {
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     const char* hard_coded_dirs[] = {"any", "int", "ext"};
 | |
| 
 | |
|     PB_Main response = {
 | |
|         .has_next = false,
 | |
|         .command_id = request->command_id,
 | |
|         .command_status = PB_CommandStatus_OK,
 | |
|         .which_content = PB_Main_storage_list_response_tag,
 | |
|     };
 | |
|     furi_assert(COUNT_OF(hard_coded_dirs) < COUNT_OF(response.content.storage_list_response.file));
 | |
| 
 | |
|     for(uint32_t i = 0; i < COUNT_OF(hard_coded_dirs); ++i) {
 | |
|         ++response.content.storage_list_response.file_count;
 | |
|         response.content.storage_list_response.file[i].data = NULL;
 | |
|         response.content.storage_list_response.file[i].size = 0;
 | |
|         response.content.storage_list_response.file[i].type = PB_Storage_File_FileType_DIR;
 | |
|         char* str = malloc(strlen(hard_coded_dirs[i]) + 1);
 | |
|         strcpy(str, hard_coded_dirs[i]);
 | |
|         response.content.storage_list_response.file[i].name = str;
 | |
|     }
 | |
| 
 | |
|     rpc_send_and_release(session, &response);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_list_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_list_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     if(!strcmp(request->content.storage_list_request.path, "/")) {
 | |
|         rpc_system_storage_list_root(request, context);
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     File* dir = storage_file_alloc(fs_api);
 | |
| 
 | |
|     PB_Main response = {
 | |
|         .command_id = request->command_id,
 | |
|         .has_next = false,
 | |
|         .which_content = PB_Main_storage_list_response_tag,
 | |
|         .command_status = PB_CommandStatus_OK,
 | |
|     };
 | |
|     PB_Storage_ListResponse* list = &response.content.storage_list_response;
 | |
| 
 | |
|     bool finish = false;
 | |
|     int i = 0;
 | |
| 
 | |
|     if(!storage_dir_open(dir, request->content.storage_list_request.path)) {
 | |
|         response.command_status = rpc_system_storage_get_file_error(dir);
 | |
|         response.which_content = PB_Main_empty_tag;
 | |
|         finish = true;
 | |
|     }
 | |
| 
 | |
|     while(!finish) {
 | |
|         FileInfo fileinfo;
 | |
|         char* name = malloc(MAX_NAME_LENGTH + 1);
 | |
|         if(storage_dir_read(dir, &fileinfo, name, MAX_NAME_LENGTH)) {
 | |
|             if(i == COUNT_OF(list->file)) {
 | |
|                 list->file_count = i;
 | |
|                 response.has_next = true;
 | |
|                 rpc_send_and_release(session, &response);
 | |
|                 i = 0;
 | |
|             }
 | |
|             list->file[i].type = (fileinfo.flags & FSF_DIRECTORY) ? PB_Storage_File_FileType_DIR :
 | |
|                                                                     PB_Storage_File_FileType_FILE;
 | |
|             list->file[i].size = fileinfo.size;
 | |
|             list->file[i].data = NULL;
 | |
|             list->file[i].name = name;
 | |
|             ++i;
 | |
|         } else {
 | |
|             list->file_count = i;
 | |
|             finish = true;
 | |
|             free(name);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     response.has_next = false;
 | |
|     rpc_send_and_release(session, &response);
 | |
| 
 | |
|     storage_dir_close(dir);
 | |
|     storage_file_free(dir);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_read_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_read_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     /* use same message memory to send reponse */
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     const char* path = request->content.storage_read_request.path;
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     File* file = storage_file_alloc(fs_api);
 | |
|     bool result = false;
 | |
| 
 | |
|     if(storage_file_open(file, path, FSAM_READ, FSOM_OPEN_EXISTING)) {
 | |
|         size_t size_left = storage_file_size(file);
 | |
|         do {
 | |
|             response->command_id = request->command_id;
 | |
|             response->which_content = PB_Main_storage_read_response_tag;
 | |
|             response->command_status = PB_CommandStatus_OK;
 | |
|             response->content.storage_read_response.has_file = true;
 | |
|             response->content.storage_read_response.file.data =
 | |
|                 malloc(PB_BYTES_ARRAY_T_ALLOCSIZE(MIN(size_left, MAX_DATA_SIZE)));
 | |
|             uint8_t* buffer = response->content.storage_read_response.file.data->bytes;
 | |
|             uint16_t* read_size_msg = &response->content.storage_read_response.file.data->size;
 | |
| 
 | |
|             size_t read_size = MIN(size_left, MAX_DATA_SIZE);
 | |
|             *read_size_msg = storage_file_read(file, buffer, read_size);
 | |
|             size_left -= read_size;
 | |
|             result = (*read_size_msg == read_size);
 | |
| 
 | |
|             if(result) {
 | |
|                 response->has_next = (size_left > 0);
 | |
|                 rpc_send_and_release(session, response);
 | |
|             }
 | |
|         } while((size_left != 0) && result);
 | |
| 
 | |
|         if(!result) {
 | |
|             rpc_send_and_release_empty(
 | |
|                 session, request->command_id, rpc_system_storage_get_file_error(file));
 | |
|         }
 | |
|     } else {
 | |
|         rpc_send_and_release_empty(
 | |
|             session, request->command_id, rpc_system_storage_get_file_error(file));
 | |
|     }
 | |
| 
 | |
|     free(response);
 | |
|     storage_file_close(file);
 | |
|     storage_file_free(file);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_write_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_write_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     bool result = true;
 | |
| 
 | |
|     if((request->command_id != rpc_storage->current_command_id) &&
 | |
|        (rpc_storage->state == RpcStorageStateWriting)) {
 | |
|         rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
|     }
 | |
| 
 | |
|     if(rpc_storage->state != RpcStorageStateWriting) {
 | |
|         rpc_storage->api = furi_record_open("storage");
 | |
|         rpc_storage->file = storage_file_alloc(rpc_storage->api);
 | |
|         rpc_storage->current_command_id = request->command_id;
 | |
|         rpc_storage->state = RpcStorageStateWriting;
 | |
|         const char* path = request->content.storage_write_request.path;
 | |
|         result = storage_file_open(rpc_storage->file, path, FSAM_WRITE, FSOM_CREATE_ALWAYS);
 | |
|     }
 | |
| 
 | |
|     File* file = rpc_storage->file;
 | |
| 
 | |
|     if(result) {
 | |
|         uint8_t* buffer = request->content.storage_write_request.file.data->bytes;
 | |
|         size_t buffer_size = request->content.storage_write_request.file.data->size;
 | |
| 
 | |
|         uint16_t written_size = storage_file_write(file, buffer, buffer_size);
 | |
|         result = (written_size == buffer_size);
 | |
| 
 | |
|         if(result && !request->has_next) {
 | |
|             rpc_send_and_release_empty(
 | |
|                 session, rpc_storage->current_command_id, PB_CommandStatus_OK);
 | |
|             rpc_system_storage_reset_state(rpc_storage, session, false);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     if(!result) {
 | |
|         rpc_send_and_release_empty(
 | |
|             session, rpc_storage->current_command_id, rpc_system_storage_get_file_error(file));
 | |
|         rpc_system_storage_reset_state(rpc_storage, session, false);
 | |
|     }
 | |
| }
 | |
| 
 | |
| static bool rpc_system_storage_is_dir_is_empty(Storage* fs_api, const char* path) {
 | |
|     FileInfo fileinfo;
 | |
|     bool is_dir_is_empty = false;
 | |
|     FS_Error error = storage_common_stat(fs_api, path, &fileinfo);
 | |
|     if((error == FSE_OK) && (fileinfo.flags & FSF_DIRECTORY)) {
 | |
|         File* dir = storage_file_alloc(fs_api);
 | |
|         if(storage_dir_open(dir, path)) {
 | |
|             char* name = malloc(MAX_NAME_LENGTH);
 | |
|             is_dir_is_empty = !storage_dir_read(dir, &fileinfo, name, MAX_NAME_LENGTH);
 | |
|             free(name);
 | |
|         }
 | |
|         storage_dir_close(dir);
 | |
|         storage_file_free(dir);
 | |
|     }
 | |
| 
 | |
|     return is_dir_is_empty;
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_delete_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_delete_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     PB_CommandStatus status = PB_CommandStatus_ERROR;
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     char* path = request->content.storage_delete_request.path;
 | |
|     if(!path) {
 | |
|         status = PB_CommandStatus_ERROR_INVALID_PARAMETERS;
 | |
|     } else {
 | |
|         FS_Error error_remove = storage_common_remove(fs_api, path);
 | |
|         // FSE_DENIED is for empty directory, but not only for this
 | |
|         // that's why we have to check it
 | |
|         if((error_remove == FSE_DENIED) && !rpc_system_storage_is_dir_is_empty(fs_api, path)) {
 | |
|             if(request->content.storage_delete_request.recursive) {
 | |
|                 bool deleted = storage_simply_remove_recursive(fs_api, path);
 | |
|                 status = deleted ? PB_CommandStatus_OK : PB_CommandStatus_ERROR;
 | |
|             } else {
 | |
|                 status = PB_CommandStatus_ERROR_STORAGE_DIR_NOT_EMPTY;
 | |
|             }
 | |
|         } else if(error_remove == FSE_NOT_EXIST) {
 | |
|             status = PB_CommandStatus_OK;
 | |
|         } else {
 | |
|             status = rpc_system_storage_get_error(error_remove);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     furi_record_close("storage");
 | |
|     rpc_send_and_release_empty(session, request->command_id, status);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_mkdir_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_mkdir_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     PB_CommandStatus status;
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     char* path = request->content.storage_mkdir_request.path;
 | |
|     if(path) {
 | |
|         FS_Error error = storage_common_mkdir(fs_api, path);
 | |
|         status = rpc_system_storage_get_error(error);
 | |
|     } else {
 | |
|         status = PB_CommandStatus_ERROR_INVALID_PARAMETERS;
 | |
|     }
 | |
|     furi_record_close("storage");
 | |
|     rpc_send_and_release_empty(session, request->command_id, status);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_md5sum_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_md5sum_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     const char* filename = request->content.storage_md5sum_request.path;
 | |
|     if(!filename) {
 | |
|         rpc_send_and_release_empty(
 | |
|             session, request->command_id, PB_CommandStatus_ERROR_INVALID_PARAMETERS);
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     File* file = storage_file_alloc(fs_api);
 | |
| 
 | |
|     if(storage_file_open(file, filename, FSAM_READ, FSOM_OPEN_EXISTING)) {
 | |
|         const uint16_t read_size = 512;
 | |
|         const uint8_t hash_size = 16;
 | |
|         uint8_t* data = malloc(read_size);
 | |
|         uint8_t* hash = malloc(sizeof(uint8_t) * hash_size);
 | |
|         md5_context* md5_ctx = malloc(sizeof(md5_context));
 | |
| 
 | |
|         md5_starts(md5_ctx);
 | |
|         while(true) {
 | |
|             uint16_t readed_size = storage_file_read(file, data, read_size);
 | |
|             if(readed_size == 0) break;
 | |
|             md5_update(md5_ctx, data, readed_size);
 | |
|         }
 | |
|         md5_finish(md5_ctx, hash);
 | |
|         free(md5_ctx);
 | |
| 
 | |
|         PB_Main response = {
 | |
|             .command_id = request->command_id,
 | |
|             .command_status = PB_CommandStatus_OK,
 | |
|             .which_content = PB_Main_storage_md5sum_response_tag,
 | |
|             .has_next = false,
 | |
|         };
 | |
| 
 | |
|         char* md5sum = response.content.storage_md5sum_response.md5sum;
 | |
|         size_t md5sum_size = sizeof(response.content.storage_md5sum_response.md5sum);
 | |
|         (void)md5sum_size;
 | |
|         furi_assert(hash_size <= ((md5sum_size - 1) / 2));
 | |
|         for(uint8_t i = 0; i < hash_size; i++) {
 | |
|             md5sum += sprintf(md5sum, "%02x", hash[i]);
 | |
|         }
 | |
| 
 | |
|         free(hash);
 | |
|         free(data);
 | |
|         storage_file_close(file);
 | |
|         rpc_send_and_release(session, &response);
 | |
|     } else {
 | |
|         rpc_send_and_release_empty(
 | |
|             session, request->command_id, rpc_system_storage_get_file_error(file));
 | |
|     }
 | |
| 
 | |
|     storage_file_free(file);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_rename_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_rename_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     PB_CommandStatus status;
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, true);
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     FS_Error error = storage_common_rename(
 | |
|         fs_api,
 | |
|         request->content.storage_rename_request.old_path,
 | |
|         request->content.storage_rename_request.new_path);
 | |
|     status = rpc_system_storage_get_error(error);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
|     rpc_send_and_release_empty(session, request->command_id, status);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_backup_create_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_backup_create_request_tag);
 | |
| 
 | |
|     RpcSession* session = (RpcSession*)context;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     response->command_id = request->command_id;
 | |
|     response->has_next = false;
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     bool backup_ok =
 | |
|         lfs_backup_create(fs_api, request->content.storage_backup_create_request.archive_path);
 | |
|     response->command_status = backup_ok ? PB_CommandStatus_OK : PB_CommandStatus_ERROR;
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| 
 | |
|     rpc_send_and_release(session, response);
 | |
|     free(response);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_backup_restore_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_backup_restore_request_tag);
 | |
| 
 | |
|     RpcSession* session = (RpcSession*)context;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     response->command_id = request->command_id;
 | |
|     response->has_next = false;
 | |
|     response->command_status = PB_CommandStatus_OK;
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     bool backup_ok =
 | |
|         lfs_backup_unpack(fs_api, request->content.storage_backup_restore_request.archive_path);
 | |
|     response->command_status = backup_ok ? PB_CommandStatus_OK : PB_CommandStatus_ERROR;
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| 
 | |
|     rpc_send_and_release(session, response);
 | |
|     free(response);
 | |
| }
 | |
| 
 | |
| void* rpc_system_storage_alloc(RpcSession* session) {
 | |
|     furi_assert(session);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = malloc(sizeof(RpcStorageSystem));
 | |
|     rpc_storage->api = furi_record_open("storage");
 | |
|     rpc_storage->session = session;
 | |
|     rpc_storage->state = RpcStorageStateIdle;
 | |
| 
 | |
|     RpcHandler rpc_handler = {
 | |
|         .message_handler = NULL,
 | |
|         .decode_submessage = NULL,
 | |
|         .context = rpc_storage,
 | |
|     };
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_info_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_info_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_stat_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_stat_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_list_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_list_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_read_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_read_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_write_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_write_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_delete_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_delete_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_mkdir_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_mkdir_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_md5sum_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_md5sum_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_rename_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_rename_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_backup_create_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_backup_create_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_backup_restore_process;
 | |
|     rpc_add_handler(session, PB_Main_storage_backup_restore_request_tag, &rpc_handler);
 | |
| 
 | |
|     return rpc_storage;
 | |
| }
 | |
| 
 | |
| void rpc_system_storage_free(void* context) {
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     RpcSession* session = rpc_storage->session;
 | |
|     furi_assert(session);
 | |
| 
 | |
|     rpc_system_storage_reset_state(rpc_storage, session, false);
 | |
|     free(rpc_storage);
 | |
| }
 |