mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-18 10:51:54 +03:00
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>
416 lines
12 KiB
C
416 lines
12 KiB
C
#include "cli_i.h"
|
|
#include "cli_commands.h"
|
|
|
|
#include <furi_hal_version.h>
|
|
#include <loader/loader.h>
|
|
|
|
Cli* cli_alloc() {
|
|
Cli* cli = malloc(sizeof(Cli));
|
|
|
|
CliCommandTree_init(cli->commands);
|
|
|
|
string_init(cli->last_line);
|
|
string_init(cli->line);
|
|
|
|
cli->mutex = osMutexNew(NULL);
|
|
furi_check(cli->mutex);
|
|
|
|
return cli;
|
|
}
|
|
|
|
void cli_free(Cli* cli) {
|
|
furi_assert(cli);
|
|
|
|
string_clear(cli->last_line);
|
|
string_clear(cli->line);
|
|
|
|
CliCommandTree_clear(cli->commands);
|
|
|
|
free(cli);
|
|
}
|
|
|
|
void cli_putc(char c) {
|
|
furi_hal_vcp_tx((uint8_t*)&c, 1);
|
|
}
|
|
|
|
char cli_getc(Cli* cli) {
|
|
furi_assert(cli);
|
|
char c;
|
|
if(furi_hal_vcp_rx((uint8_t*)&c, 1) == 0) {
|
|
cli_reset(cli);
|
|
}
|
|
return c;
|
|
}
|
|
|
|
void cli_stdout_callback(void* _cookie, const char* data, size_t size) {
|
|
furi_hal_vcp_tx((const uint8_t*)data, size);
|
|
}
|
|
|
|
void cli_write(Cli* cli, const uint8_t* buffer, size_t size) {
|
|
return furi_hal_vcp_tx(buffer, size);
|
|
}
|
|
|
|
size_t cli_read(Cli* cli, uint8_t* buffer, size_t size) {
|
|
return furi_hal_vcp_rx(buffer, size);
|
|
}
|
|
|
|
bool cli_cmd_interrupt_received(Cli* cli) {
|
|
char c = '\0';
|
|
if(furi_hal_vcp_rx_with_timeout((uint8_t*)&c, 1, 0) == 1) {
|
|
return c == CliSymbolAsciiETX;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void cli_print_usage(const char* cmd, const char* usage, const char* arg) {
|
|
furi_assert(cmd);
|
|
furi_assert(arg);
|
|
furi_assert(usage);
|
|
|
|
printf("%s: illegal option -- %s\r\nusage: %s %s", cmd, arg, cmd, usage);
|
|
}
|
|
|
|
void cli_motd() {
|
|
printf("\r\n"
|
|
" _.-------.._ -,\r\n"
|
|
" .-\"```\"--..,,_/ /`-, -, \\ \r\n"
|
|
" .:\" /:/ /'\\ \\ ,_..., `. | |\r\n"
|
|
" / ,----/:/ /`\\ _\\~`_-\"` _;\r\n"
|
|
" ' / /`\"\"\"'\\ \\ \\.~`_-' ,-\"'/ \r\n"
|
|
" | | | 0 | | .-' ,/` /\r\n"
|
|
" | ,..\\ \\ ,.-\"` ,/` /\r\n"
|
|
" ; : `/`\"\"\\` ,/--==,/-----,\r\n"
|
|
" | `-...| -.___-Z:_______J...---;\r\n"
|
|
" : ` _-'\r\n"
|
|
" _L_ _ ___ ___ ___ ___ ____--\"`___ _ ___\r\n"
|
|
"| __|| | |_ _|| _ \\| _ \\| __|| _ \\ / __|| | |_ _|\r\n"
|
|
"| _| | |__ | | | _/| _/| _| | / | (__ | |__ | |\r\n"
|
|
"|_| |____||___||_| |_| |___||_|_\\ \\___||____||___|\r\n"
|
|
"\r\n"
|
|
"Welcome to Flipper Zero Command Line Interface!\r\n"
|
|
"Read Manual https://docs.flipperzero.one\r\n"
|
|
"\r\n");
|
|
|
|
const Version* firmware_version = furi_hal_version_get_firmware_version();
|
|
if(firmware_version) {
|
|
printf(
|
|
"Firmware version: %s %s (%s%s built on %s)\r\n",
|
|
version_get_gitbranch(firmware_version),
|
|
version_get_version(firmware_version),
|
|
version_get_githash(firmware_version),
|
|
version_get_dirty_flag(firmware_version) ? "-dirty" : "",
|
|
version_get_builddate(firmware_version));
|
|
}
|
|
}
|
|
|
|
void cli_nl(Cli* cli) {
|
|
printf("\r\n");
|
|
}
|
|
|
|
void cli_prompt(Cli* cli) {
|
|
printf("\r\n>: %s", string_get_cstr(cli->line));
|
|
fflush(stdout);
|
|
}
|
|
|
|
void cli_reset(Cli* cli) {
|
|
// cli->last_line is cleared and cli->line's buffer moved to cli->last_line
|
|
string_move(cli->last_line, cli->line);
|
|
// Reiniting cli->line
|
|
string_init(cli->line);
|
|
cli->cursor_position = 0;
|
|
}
|
|
|
|
static void cli_handle_backspace(Cli* cli) {
|
|
if(string_size(cli->line) > 0) {
|
|
// Other side
|
|
printf("\e[D\e[1P");
|
|
fflush(stdout);
|
|
// Our side
|
|
string_t temp;
|
|
string_init(temp);
|
|
string_reserve(temp, string_size(cli->line) - 1);
|
|
string_set_strn(temp, string_get_cstr(cli->line), cli->cursor_position - 1);
|
|
string_cat_str(temp, string_get_cstr(cli->line) + cli->cursor_position);
|
|
|
|
// cli->line is cleared and temp's buffer moved to cli->line
|
|
string_move(cli->line, temp);
|
|
// NO MEMORY LEAK, STOP REPORTING IT
|
|
|
|
cli->cursor_position--;
|
|
} else {
|
|
cli_putc(CliSymbolAsciiBell);
|
|
}
|
|
}
|
|
|
|
static void cli_normalize_line(Cli* cli) {
|
|
string_strim(cli->line);
|
|
cli->cursor_position = string_size(cli->line);
|
|
}
|
|
|
|
static void cli_execute_command(Cli* cli, CliCommand* command, string_t args) {
|
|
if(!(command->flags & CliCommandFlagInsomniaSafe)) {
|
|
furi_hal_power_insomnia_enter();
|
|
}
|
|
|
|
// Ensure that we running alone
|
|
if(!(command->flags & CliCommandFlagParallelSafe)) {
|
|
Loader* loader = furi_record_open("loader");
|
|
bool safety_lock = loader_lock(loader);
|
|
if(safety_lock) {
|
|
// Execute command
|
|
command->callback(cli, args, command->context);
|
|
loader_unlock(loader);
|
|
} else {
|
|
printf("Other application is running, close it first");
|
|
}
|
|
furi_record_close("loader");
|
|
} else {
|
|
// Execute command
|
|
command->callback(cli, args, command->context);
|
|
}
|
|
|
|
if(!(command->flags & CliCommandFlagInsomniaSafe)) {
|
|
furi_hal_power_insomnia_exit();
|
|
}
|
|
}
|
|
|
|
static void cli_handle_enter(Cli* cli) {
|
|
cli_normalize_line(cli);
|
|
|
|
if(string_size(cli->line) == 0) {
|
|
cli_prompt(cli);
|
|
return;
|
|
}
|
|
|
|
// Command and args container
|
|
string_t command;
|
|
string_init(command);
|
|
string_t args;
|
|
string_init(args);
|
|
|
|
// Split command and args
|
|
size_t ws = string_search_char(cli->line, ' ');
|
|
if(ws == STRING_FAILURE) {
|
|
string_set(command, cli->line);
|
|
} else {
|
|
string_set_n(command, cli->line, 0, ws);
|
|
string_set_n(args, cli->line, ws, string_size(cli->line));
|
|
string_strim(args);
|
|
}
|
|
|
|
// Search for command
|
|
furi_check(osMutexAcquire(cli->mutex, osWaitForever) == osOK);
|
|
CliCommand* cli_command = CliCommandTree_get(cli->commands, command);
|
|
if(cli_command) {
|
|
cli_nl(cli);
|
|
cli_execute_command(cli, cli_command, args);
|
|
} else {
|
|
cli_nl(cli);
|
|
printf(
|
|
"`%s` command not found, use `help` or `?` to list all available commands",
|
|
string_get_cstr(command));
|
|
cli_putc(CliSymbolAsciiBell);
|
|
}
|
|
furi_check(osMutexRelease(cli->mutex) == osOK);
|
|
|
|
cli_reset(cli);
|
|
cli_prompt(cli);
|
|
|
|
// Cleanup command and args
|
|
string_clear(command);
|
|
string_clear(args);
|
|
}
|
|
|
|
static void cli_handle_autocomplete(Cli* cli) {
|
|
cli_normalize_line(cli);
|
|
|
|
if(string_size(cli->line) == 0) {
|
|
return;
|
|
}
|
|
|
|
cli_nl(cli);
|
|
|
|
// Prepare common base for autocomplete
|
|
string_t common;
|
|
string_init(common);
|
|
// Iterate throw commands
|
|
for
|
|
M_EACH(cli_command, cli->commands, CliCommandTree_t) {
|
|
// Process only if starts with line buffer
|
|
if(string_start_with_string_p(*cli_command->key_ptr, cli->line)) {
|
|
// Show autocomplete option
|
|
printf("%s\r\n", string_get_cstr(*cli_command->key_ptr));
|
|
// Process common base for autocomplete
|
|
if(string_size(common) > 0) {
|
|
// Choose shortest string
|
|
const size_t key_size = string_size(*cli_command->key_ptr);
|
|
const size_t common_size = string_size(common);
|
|
const size_t min_size = key_size > common_size ? common_size : key_size;
|
|
size_t i = 0;
|
|
while(i < min_size) {
|
|
// Stop when do not match
|
|
if(string_get_char(*cli_command->key_ptr, i) !=
|
|
string_get_char(common, i)) {
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
// Cut right part if any
|
|
string_left(common, i);
|
|
} else {
|
|
// Start with something
|
|
string_set(common, *cli_command->key_ptr);
|
|
}
|
|
}
|
|
}
|
|
// Replace line buffer if autocomplete better
|
|
if(string_size(common) > string_size(cli->line)) {
|
|
string_set(cli->line, common);
|
|
cli->cursor_position = string_size(cli->line);
|
|
}
|
|
// Cleanup
|
|
string_clear(common);
|
|
// Show prompt
|
|
cli_prompt(cli);
|
|
}
|
|
|
|
static void cli_handle_escape(Cli* cli, char c) {
|
|
if(c == 'A') {
|
|
// Use previous command if line buffer is empty
|
|
if(string_size(cli->line) == 0 && string_cmp(cli->line, cli->last_line) != 0) {
|
|
// Set line buffer and cursor position
|
|
string_set(cli->line, cli->last_line);
|
|
cli->cursor_position = string_size(cli->line);
|
|
// Show new line to user
|
|
printf("%s", string_get_cstr(cli->line));
|
|
}
|
|
} else if(c == 'B') {
|
|
} else if(c == 'C') {
|
|
if(cli->cursor_position < string_size(cli->line)) {
|
|
cli->cursor_position++;
|
|
printf("\e[C");
|
|
}
|
|
} else if(c == 'D') {
|
|
if(cli->cursor_position > 0) {
|
|
cli->cursor_position--;
|
|
printf("\e[D");
|
|
}
|
|
}
|
|
fflush(stdout);
|
|
}
|
|
|
|
void cli_process_input(Cli* cli) {
|
|
char c = cli_getc(cli);
|
|
size_t r;
|
|
|
|
if(c == CliSymbolAsciiTab) {
|
|
cli_handle_autocomplete(cli);
|
|
} else if(c == CliSymbolAsciiSOH) {
|
|
osDelay(33); // We are too fast, Minicom is not ready yet
|
|
cli_motd();
|
|
cli_prompt(cli);
|
|
} else if(c == CliSymbolAsciiETX) {
|
|
cli_reset(cli);
|
|
cli_prompt(cli);
|
|
} else if(c == CliSymbolAsciiEOT) {
|
|
cli_reset(cli);
|
|
} else if(c == CliSymbolAsciiEsc) {
|
|
r = furi_hal_vcp_rx((uint8_t*)&c, 1);
|
|
if(r && c == '[') {
|
|
furi_hal_vcp_rx((uint8_t*)&c, 1);
|
|
cli_handle_escape(cli, c);
|
|
} else {
|
|
cli_putc(CliSymbolAsciiBell);
|
|
}
|
|
} else if(c == CliSymbolAsciiBackspace || c == CliSymbolAsciiDel) {
|
|
cli_handle_backspace(cli);
|
|
} else if(c == CliSymbolAsciiCR) {
|
|
cli_handle_enter(cli);
|
|
} else if(c >= 0x20 && c < 0x7F) {
|
|
if(cli->cursor_position == string_size(cli->line)) {
|
|
string_push_back(cli->line, c);
|
|
cli_putc(c);
|
|
} else {
|
|
// ToDo: better way?
|
|
string_t temp;
|
|
string_init(temp);
|
|
string_reserve(temp, string_size(cli->line) + 1);
|
|
string_set_strn(temp, string_get_cstr(cli->line), cli->cursor_position);
|
|
string_push_back(temp, c);
|
|
string_cat_str(temp, string_get_cstr(cli->line) + cli->cursor_position);
|
|
|
|
// cli->line is cleared and temp's buffer moved to cli->line
|
|
string_move(cli->line, temp);
|
|
// NO MEMORY LEAK, STOP REPORTING IT
|
|
|
|
// Print character in replace mode
|
|
printf("\e[4h%c\e[4l", c);
|
|
fflush(stdout);
|
|
}
|
|
cli->cursor_position++;
|
|
} else {
|
|
cli_putc(CliSymbolAsciiBell);
|
|
}
|
|
}
|
|
|
|
void cli_add_command(
|
|
Cli* cli,
|
|
const char* name,
|
|
CliCommandFlag flags,
|
|
CliCallback callback,
|
|
void* context) {
|
|
string_t name_str;
|
|
string_init_set_str(name_str, name);
|
|
string_strim(name_str);
|
|
|
|
size_t name_replace;
|
|
do {
|
|
name_replace = string_replace_str(name_str, " ", "_");
|
|
} while(name_replace != STRING_FAILURE);
|
|
|
|
CliCommand c;
|
|
c.callback = callback;
|
|
c.context = context;
|
|
c.flags = flags;
|
|
|
|
furi_check(osMutexAcquire(cli->mutex, osWaitForever) == osOK);
|
|
CliCommandTree_set_at(cli->commands, name_str, c);
|
|
furi_check(osMutexRelease(cli->mutex) == osOK);
|
|
|
|
string_clear(name_str);
|
|
}
|
|
|
|
void cli_delete_command(Cli* cli, const char* name) {
|
|
string_t name_str;
|
|
string_init_set_str(name_str, name);
|
|
string_strim(name_str);
|
|
|
|
size_t name_replace;
|
|
do {
|
|
name_replace = string_replace_str(name_str, " ", "_");
|
|
} while(name_replace != STRING_FAILURE);
|
|
|
|
furi_check(osMutexAcquire(cli->mutex, osWaitForever) == osOK);
|
|
CliCommandTree_erase(cli->commands, name_str);
|
|
furi_check(osMutexRelease(cli->mutex) == osOK);
|
|
|
|
string_clear(name_str);
|
|
}
|
|
|
|
int32_t cli_srv(void* p) {
|
|
Cli* cli = cli_alloc();
|
|
|
|
// Init basic cli commands
|
|
cli_commands_init(cli);
|
|
|
|
furi_record_create("cli", cli);
|
|
|
|
furi_stdglue_set_thread_stdout_callback(cli_stdout_callback);
|
|
while(1) {
|
|
cli_process_input(cli);
|
|
}
|
|
|
|
return 0;
|
|
}
|