* Furi: rename and move core * Furi: drop CMSIS_OS header and unused api, partially refactor and cleanup the rest * Furi: CMSIS_OS drop and refactoring. * Furi: refactoring, remove cmsis legacy * Furi: fix incorrect assert on queue deallocation, cleanup timer * Furi: improve delay api, get rid of floats * hal: dropped furi_hal_crc * Furi: move DWT based delay to cortex HAL * Furi: update core documentation Co-authored-by: hedger <hedger@nanode.su>
		
			
				
	
	
		
			700 lines
		
	
	
		
			24 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			700 lines
		
	
	
		
			24 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "flipper.pb.h"
 | 
						|
#include <core/common_defines.h>
 | 
						|
#include <core/memmgr.h>
 | 
						|
#include <core/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 <lib/toolbox/path.h>
 | 
						|
#include <update_util/lfs_backup.h>
 | 
						|
 | 
						|
#define TAG "RpcStorage"
 | 
						|
 | 
						|
#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;
 | 
						|
 | 
						|
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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Info");
 | 
						|
 | 
						|
    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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Stat");
 | 
						|
 | 
						|
    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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "List");
 | 
						|
 | 
						|
    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(path_contains_only_ascii(name)) {
 | 
						|
                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 {
 | 
						|
                free(name);
 | 
						|
            }
 | 
						|
        } 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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Read");
 | 
						|
 | 
						|
    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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Write");
 | 
						|
 | 
						|
    RpcStorageSystem* rpc_storage = context;
 | 
						|
    RpcSession* session = rpc_storage->session;
 | 
						|
    furi_assert(session);
 | 
						|
 | 
						|
    bool result = true;
 | 
						|
 | 
						|
    if(!path_contains_only_ascii(request->content.storage_write_request.path)) {
 | 
						|
        rpc_storage->current_command_id = request->command_id;
 | 
						|
        rpc_send_and_release_empty(
 | 
						|
            session, rpc_storage->current_command_id, PB_CommandStatus_ERROR_STORAGE_INVALID_NAME);
 | 
						|
        rpc_system_storage_reset_state(rpc_storage, session, false);
 | 
						|
        return;
 | 
						|
    }
 | 
						|
 | 
						|
    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 = true;
 | 
						|
    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);
 | 
						|
            while(storage_dir_read(dir, &fileinfo, name, MAX_NAME_LENGTH)) {
 | 
						|
                if(path_contains_only_ascii(name)) {
 | 
						|
                    is_dir_is_empty = false;
 | 
						|
                    break;
 | 
						|
                }
 | 
						|
            }
 | 
						|
            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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Delete");
 | 
						|
 | 
						|
    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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Mkdir");
 | 
						|
 | 
						|
    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) {
 | 
						|
        if(path_contains_only_ascii(path)) {
 | 
						|
            FS_Error error = storage_common_mkdir(fs_api, path);
 | 
						|
            status = rpc_system_storage_get_error(error);
 | 
						|
        } else {
 | 
						|
            status = PB_CommandStatus_ERROR_STORAGE_INVALID_NAME;
 | 
						|
        }
 | 
						|
    } 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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Md5sum");
 | 
						|
 | 
						|
    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 size_to_read = 512;
 | 
						|
        const uint8_t hash_size = 16;
 | 
						|
        uint8_t* data = malloc(size_to_read);
 | 
						|
        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 read_size = storage_file_read(file, data, size_to_read);
 | 
						|
            if(read_size == 0) break;
 | 
						|
            md5_update(md5_ctx, data, read_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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "Rename");
 | 
						|
 | 
						|
    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");
 | 
						|
 | 
						|
    if(path_contains_only_ascii(request->content.storage_rename_request.new_path)) {
 | 
						|
        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);
 | 
						|
    } else {
 | 
						|
        status = PB_CommandStatus_ERROR_STORAGE_INVALID_NAME;
 | 
						|
    }
 | 
						|
 | 
						|
    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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "BackupCreate");
 | 
						|
 | 
						|
    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);
 | 
						|
 | 
						|
    FURI_LOG_D(TAG, "BackupRestore");
 | 
						|
 | 
						|
    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);
 | 
						|
}
 |