mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
* cli_completions: fix null dereference * cli: mark free_blocks as parallel safe * codeowners: add me to co-owners of cli
523 lines
18 KiB
C
523 lines
18 KiB
C
#include "cli_main_commands.h"
|
|
#include "cli_command_gpio.h"
|
|
#include <toolbox/cli/cli_ansi.h>
|
|
|
|
#include <core/thread.h>
|
|
#include <furi_hal.h>
|
|
#include <furi_hal_info.h>
|
|
#include <task_control_block.h>
|
|
#include <time.h>
|
|
#include <notification/notification_messages.h>
|
|
#include <notification/notification_app.h>
|
|
#include <loader/loader.h>
|
|
#include <lib/toolbox/args.h>
|
|
#include <lib/toolbox/strint.h>
|
|
#include <toolbox/pipe.h>
|
|
|
|
// Close to ISO, `date +'%Y-%m-%d %H:%M:%S %u'`
|
|
#define CLI_DATE_FORMAT "%.4d-%.2d-%.2d %.2d:%.2d:%.2d %d"
|
|
|
|
void cli_command_info_callback(const char* key, const char* value, bool last, void* context) {
|
|
UNUSED(last);
|
|
UNUSED(context);
|
|
printf("%-30s: %s\r\n", key, value);
|
|
}
|
|
|
|
/** Info Command
|
|
*
|
|
* This command is intended to be used by humans
|
|
*
|
|
* Arguments:
|
|
* - device - print device info
|
|
* - power - print power info
|
|
* - power_debug - print power debug info
|
|
*
|
|
* @param cli The cli instance
|
|
* @param args The arguments
|
|
* @param context The context
|
|
*/
|
|
void cli_command_info(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
|
|
if(context) {
|
|
furi_hal_info_get(cli_command_info_callback, '_', NULL);
|
|
return;
|
|
}
|
|
|
|
if(!furi_string_cmp(args, "device")) {
|
|
furi_hal_info_get(cli_command_info_callback, '.', NULL);
|
|
} else if(!furi_string_cmp(args, "power")) {
|
|
furi_hal_power_info_get(cli_command_info_callback, '.', NULL);
|
|
} else if(!furi_string_cmp(args, "power_debug")) {
|
|
furi_hal_power_debug_get(cli_command_info_callback, NULL);
|
|
} else {
|
|
cli_print_usage("info", "<device|power|power_debug>", furi_string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void cli_command_uptime(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(args);
|
|
UNUSED(context);
|
|
uint32_t uptime = furi_get_tick() / furi_kernel_get_tick_frequency();
|
|
printf("Uptime: %luh%lum%lus", uptime / 60 / 60, uptime / 60 % 60, uptime % 60);
|
|
}
|
|
|
|
void cli_command_date(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(context);
|
|
|
|
DateTime datetime = {0};
|
|
|
|
if(furi_string_size(args) > 0) {
|
|
uint16_t hours, minutes, seconds, month, day, year, weekday;
|
|
int ret = sscanf(
|
|
furi_string_get_cstr(args),
|
|
"%hu-%hu-%hu %hu:%hu:%hu %hu",
|
|
&year,
|
|
&month,
|
|
&day,
|
|
&hours,
|
|
&minutes,
|
|
&seconds,
|
|
&weekday);
|
|
|
|
// Some variables are going to discard upper byte
|
|
// There will be some funky behaviour which is not breaking anything
|
|
datetime.hour = hours;
|
|
datetime.minute = minutes;
|
|
datetime.second = seconds;
|
|
datetime.weekday = weekday;
|
|
datetime.month = month;
|
|
datetime.day = day;
|
|
datetime.year = year;
|
|
|
|
if(ret != 7) {
|
|
printf(
|
|
"Invalid datetime format, use `%s`. sscanf %d %s",
|
|
"%Y-%m-%d %H:%M:%S %u",
|
|
ret,
|
|
furi_string_get_cstr(args));
|
|
return;
|
|
}
|
|
|
|
if(!datetime_validate_datetime(&datetime)) {
|
|
printf("Invalid datetime data");
|
|
return;
|
|
}
|
|
|
|
furi_hal_rtc_set_datetime(&datetime);
|
|
// Verification
|
|
furi_hal_rtc_get_datetime(&datetime);
|
|
printf(
|
|
"New datetime is: " CLI_DATE_FORMAT,
|
|
datetime.year,
|
|
datetime.month,
|
|
datetime.day,
|
|
datetime.hour,
|
|
datetime.minute,
|
|
datetime.second,
|
|
datetime.weekday);
|
|
} else {
|
|
furi_hal_rtc_get_datetime(&datetime);
|
|
printf(
|
|
CLI_DATE_FORMAT,
|
|
datetime.year,
|
|
datetime.month,
|
|
datetime.day,
|
|
datetime.hour,
|
|
datetime.minute,
|
|
datetime.second,
|
|
datetime.weekday);
|
|
}
|
|
}
|
|
|
|
#define CLI_COMMAND_LOG_RING_SIZE 2048
|
|
#define CLI_COMMAND_LOG_BUFFER_SIZE 64
|
|
|
|
void cli_command_log_tx_callback(const uint8_t* buffer, size_t size, void* context) {
|
|
PipeSide* pipe = context;
|
|
pipe_send(pipe, buffer, size);
|
|
}
|
|
|
|
bool cli_command_log_level_set_from_string(FuriString* level) {
|
|
FuriLogLevel log_level;
|
|
if(furi_log_level_from_string(furi_string_get_cstr(level), &log_level)) {
|
|
furi_log_set_level(log_level);
|
|
return true;
|
|
} else {
|
|
printf("<log> — start logging using the current level from the system settings\r\n");
|
|
printf("<log error> — only critical errors and other important messages\r\n");
|
|
printf("<log warn> — non-critical errors and warnings including <log error>\r\n");
|
|
printf("<log info> — non-critical information including <log warn>\r\n");
|
|
printf("<log default> — the default system log level (equivalent to <log info>)\r\n");
|
|
printf(
|
|
"<log debug> — debug information including <log info> (may impact system performance)\r\n");
|
|
printf(
|
|
"<log trace> — system traces including <log debug> (may impact system performance)\r\n");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void cli_command_log(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(context);
|
|
FuriLogLevel previous_level = furi_log_get_level();
|
|
bool restore_log_level = false;
|
|
|
|
if(furi_string_size(args) > 0) {
|
|
if(!cli_command_log_level_set_from_string(args)) {
|
|
return;
|
|
}
|
|
restore_log_level = true;
|
|
}
|
|
|
|
const char* current_level;
|
|
furi_log_level_to_string(furi_log_get_level(), ¤t_level);
|
|
printf("Current log level: %s\r\n", current_level);
|
|
|
|
FuriLogHandler log_handler = {
|
|
.callback = cli_command_log_tx_callback,
|
|
.context = pipe,
|
|
};
|
|
|
|
furi_log_add_handler(log_handler);
|
|
|
|
printf("Use <log ?> to list available log levels\r\n");
|
|
printf("Press CTRL+C to stop...\r\n");
|
|
while(!cli_is_pipe_broken_or_is_etx_next_char(pipe)) {
|
|
furi_delay_ms(100);
|
|
}
|
|
|
|
furi_log_remove_handler(log_handler);
|
|
|
|
if(restore_log_level) {
|
|
// There will be strange behaviour if log level is set from settings while log command is running
|
|
furi_log_set_level(previous_level);
|
|
}
|
|
}
|
|
|
|
void cli_command_sysctl_debug(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(context);
|
|
if(!furi_string_cmp(args, "0")) {
|
|
furi_hal_rtc_reset_flag(FuriHalRtcFlagDebug);
|
|
printf("Debug disabled.");
|
|
} else if(!furi_string_cmp(args, "1")) {
|
|
furi_hal_rtc_set_flag(FuriHalRtcFlagDebug);
|
|
printf("Debug enabled.");
|
|
} else {
|
|
cli_print_usage("sysctl debug", "<1|0>", furi_string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void cli_command_sysctl_heap_track(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(context);
|
|
if(!furi_string_cmp(args, "none")) {
|
|
furi_hal_rtc_set_heap_track_mode(FuriHalRtcHeapTrackModeNone);
|
|
printf("Heap tracking disabled");
|
|
} else if(!furi_string_cmp(args, "main")) {
|
|
furi_hal_rtc_set_heap_track_mode(FuriHalRtcHeapTrackModeMain);
|
|
printf("Heap tracking enabled for application main thread");
|
|
#ifdef FURI_DEBUG
|
|
} else if(!furi_string_cmp(args, "tree")) {
|
|
furi_hal_rtc_set_heap_track_mode(FuriHalRtcHeapTrackModeTree);
|
|
printf("Heap tracking enabled for application main and child threads");
|
|
} else if(!furi_string_cmp(args, "all")) {
|
|
furi_hal_rtc_set_heap_track_mode(FuriHalRtcHeapTrackModeAll);
|
|
printf("Heap tracking enabled for all threads");
|
|
#endif
|
|
} else {
|
|
cli_print_usage("sysctl heap_track", "<none|main|tree|all>", furi_string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void cli_command_sysctl_print_usage(void) {
|
|
printf("Usage:\r\n");
|
|
printf("sysctl <cmd> <args>\r\n");
|
|
printf("Cmd list:\r\n");
|
|
|
|
printf("\tdebug <0|1>\t - Enable or disable system debug\r\n");
|
|
#ifdef FURI_DEBUG
|
|
printf("\theap_track <none|main|tree|all>\t - Set heap allocation tracking mode\r\n");
|
|
#else
|
|
printf("\theap_track <none|main>\t - Set heap allocation tracking mode\r\n");
|
|
#endif
|
|
}
|
|
|
|
void cli_command_sysctl(PipeSide* pipe, FuriString* args, void* context) {
|
|
FuriString* cmd;
|
|
cmd = furi_string_alloc();
|
|
|
|
do {
|
|
if(!args_read_string_and_trim(args, cmd)) {
|
|
cli_command_sysctl_print_usage();
|
|
break;
|
|
}
|
|
|
|
if(furi_string_cmp_str(cmd, "debug") == 0) {
|
|
cli_command_sysctl_debug(pipe, args, context);
|
|
break;
|
|
}
|
|
|
|
if(furi_string_cmp_str(cmd, "heap_track") == 0) {
|
|
cli_command_sysctl_heap_track(pipe, args, context);
|
|
break;
|
|
}
|
|
|
|
cli_command_sysctl_print_usage();
|
|
} while(false);
|
|
|
|
furi_string_free(cmd);
|
|
}
|
|
|
|
void cli_command_vibro(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(context);
|
|
|
|
if(!furi_string_cmp(args, "0")) {
|
|
NotificationApp* notification = furi_record_open(RECORD_NOTIFICATION);
|
|
notification_message_block(notification, &sequence_reset_vibro);
|
|
furi_record_close(RECORD_NOTIFICATION);
|
|
} else if(!furi_string_cmp(args, "1")) {
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagStealthMode)) {
|
|
printf("Flipper is in stealth mode. Unmute the device to control vibration.");
|
|
return;
|
|
}
|
|
|
|
NotificationApp* notification = furi_record_open(RECORD_NOTIFICATION);
|
|
if(notification->settings.vibro_on) {
|
|
notification_message_block(notification, &sequence_set_vibro_on);
|
|
} else {
|
|
printf("Vibro is disabled in settings. Enable it to control vibration.");
|
|
}
|
|
|
|
furi_record_close(RECORD_NOTIFICATION);
|
|
} else {
|
|
cli_print_usage("vibro", "<1|0>", furi_string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void cli_command_led(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(context);
|
|
// Get first word as light name
|
|
NotificationMessage notification_led_message;
|
|
FuriString* light_name;
|
|
light_name = furi_string_alloc();
|
|
size_t ws = furi_string_search_char(args, ' ');
|
|
if(ws == FURI_STRING_FAILURE) {
|
|
cli_print_usage("led", "<r|g|b|bl> <0-255>", furi_string_get_cstr(args));
|
|
furi_string_free(light_name);
|
|
return;
|
|
} else {
|
|
furi_string_set_n(light_name, args, 0, ws);
|
|
furi_string_right(args, ws);
|
|
furi_string_trim(args);
|
|
}
|
|
// Check light name
|
|
if(!furi_string_cmp(light_name, "r")) {
|
|
notification_led_message.type = NotificationMessageTypeLedRed;
|
|
} else if(!furi_string_cmp(light_name, "g")) {
|
|
notification_led_message.type = NotificationMessageTypeLedGreen;
|
|
} else if(!furi_string_cmp(light_name, "b")) {
|
|
notification_led_message.type = NotificationMessageTypeLedBlue;
|
|
} else if(!furi_string_cmp(light_name, "bl")) {
|
|
notification_led_message.type = NotificationMessageTypeLedDisplayBacklight;
|
|
} else {
|
|
cli_print_usage("led", "<r|g|b|bl> <0-255>", furi_string_get_cstr(args));
|
|
furi_string_free(light_name);
|
|
return;
|
|
}
|
|
furi_string_free(light_name);
|
|
// Read light value from the rest of the string
|
|
uint32_t value;
|
|
if(strint_to_uint32(furi_string_get_cstr(args), NULL, &value, 0) != StrintParseNoError ||
|
|
value >= 256) {
|
|
cli_print_usage("led", "<r|g|b|bl> <0-255>", furi_string_get_cstr(args));
|
|
return;
|
|
}
|
|
|
|
// Set led value
|
|
notification_led_message.data.led.value = value;
|
|
|
|
// Form notification sequence
|
|
const NotificationSequence notification_sequence = {
|
|
¬ification_led_message,
|
|
NULL,
|
|
};
|
|
|
|
// Send notification
|
|
NotificationApp* notification = furi_record_open(RECORD_NOTIFICATION);
|
|
notification_internal_message_block(notification, ¬ification_sequence);
|
|
furi_record_close(RECORD_NOTIFICATION);
|
|
}
|
|
|
|
static void cli_command_top(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(context);
|
|
|
|
int interval = 1000;
|
|
args_read_int_and_trim(args, &interval);
|
|
|
|
FuriThreadList* thread_list = furi_thread_list_alloc();
|
|
while(!cli_is_pipe_broken_or_is_etx_next_char(pipe)) {
|
|
uint32_t tick = furi_get_tick();
|
|
furi_thread_enumerate(thread_list);
|
|
|
|
if(interval) printf(ANSI_CURSOR_POS("1", "1"));
|
|
|
|
uint32_t uptime = tick / furi_kernel_get_tick_frequency();
|
|
printf(
|
|
"Threads: %zu, ISR Time: %0.2f%%, Uptime: %luh%lum%lus" ANSI_ERASE_LINE(
|
|
ANSI_ERASE_FROM_CURSOR_TO_END) "\r\n",
|
|
furi_thread_list_size(thread_list),
|
|
(double)furi_thread_list_get_isr_time(thread_list),
|
|
uptime / 60 / 60,
|
|
uptime / 60 % 60,
|
|
uptime % 60);
|
|
|
|
printf(
|
|
"Heap: total %zu, free %zu, minimum %zu, max block %zu" ANSI_ERASE_LINE(
|
|
ANSI_ERASE_FROM_CURSOR_TO_END) "\r\n" ANSI_ERASE_LINE(ANSI_ERASE_FROM_CURSOR_TO_END) "\r\n",
|
|
memmgr_get_total_heap(),
|
|
memmgr_get_free_heap(),
|
|
memmgr_get_minimum_free_heap(),
|
|
memmgr_heap_get_max_free_block());
|
|
|
|
printf(
|
|
"%-17s %-20s %-10s %5s %12s %6s %10s %7s %5s" ANSI_ERASE_LINE(
|
|
ANSI_ERASE_FROM_CURSOR_TO_END) "\r\n",
|
|
"AppID",
|
|
"Name",
|
|
"State",
|
|
"Prio",
|
|
"Stack start",
|
|
"Stack",
|
|
"Stack Min",
|
|
"Heap",
|
|
"%CPU");
|
|
|
|
for(size_t i = 0; i < furi_thread_list_size(thread_list); i++) {
|
|
const FuriThreadListItem* item = furi_thread_list_get_at(thread_list, i);
|
|
printf(
|
|
"%-17s %-20s %-10s %5d 0x%08lx %6lu %10lu %7zu %5.1f" ANSI_ERASE_LINE(
|
|
ANSI_ERASE_FROM_CURSOR_TO_END) "\r\n",
|
|
item->app_id,
|
|
item->name,
|
|
item->state,
|
|
item->priority,
|
|
item->stack_address,
|
|
item->stack_size,
|
|
item->stack_min_free,
|
|
item->heap,
|
|
(double)item->cpu);
|
|
}
|
|
|
|
printf(ANSI_ERASE_DISPLAY(ANSI_ERASE_FROM_CURSOR_TO_END));
|
|
fflush(stdout);
|
|
|
|
if(interval > 0) {
|
|
furi_delay_ms(interval);
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
furi_thread_list_free(thread_list);
|
|
}
|
|
|
|
void cli_command_free(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(args);
|
|
UNUSED(context);
|
|
|
|
printf("Free heap size: %zu\r\n", memmgr_get_free_heap());
|
|
printf("Total heap size: %zu\r\n", memmgr_get_total_heap());
|
|
printf("Minimum heap size: %zu\r\n", memmgr_get_minimum_free_heap());
|
|
printf("Maximum heap block: %zu\r\n", memmgr_heap_get_max_free_block());
|
|
|
|
printf("Pool free: %zu\r\n", memmgr_pool_get_free());
|
|
printf("Maximum pool block: %zu\r\n", memmgr_pool_get_max_block());
|
|
}
|
|
|
|
void cli_command_free_blocks(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(args);
|
|
UNUSED(context);
|
|
|
|
memmgr_heap_printf_free_blocks();
|
|
}
|
|
|
|
void cli_command_i2c(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(pipe);
|
|
UNUSED(args);
|
|
UNUSED(context);
|
|
|
|
furi_hal_i2c_acquire(&furi_hal_i2c_handle_external);
|
|
printf("Scanning external i2c on PC0(SCL)/PC1(SDA)\r\n"
|
|
"Clock: 100khz, 7bit address\r\n"
|
|
"\r\n");
|
|
printf(" | 0 1 2 3 4 5 6 7 8 9 A B C D E F\r\n");
|
|
printf("--+--------------------------------\r\n");
|
|
for(uint8_t row = 0; row < 0x8; row++) {
|
|
printf("%x | ", row);
|
|
for(uint8_t column = 0; column <= 0xF; column++) {
|
|
bool ret = furi_hal_i2c_is_device_ready(
|
|
&furi_hal_i2c_handle_external, ((row << 4) + column) << 1, 2);
|
|
printf("%c ", ret ? '#' : '-');
|
|
}
|
|
printf("\r\n");
|
|
}
|
|
furi_hal_i2c_release(&furi_hal_i2c_handle_external);
|
|
}
|
|
|
|
/**
|
|
* Echoes any bytes it receives except ASCII ETX (0x03, Ctrl+C)
|
|
*/
|
|
void cli_command_echo(PipeSide* pipe, FuriString* args, void* context) {
|
|
UNUSED(args);
|
|
UNUSED(context);
|
|
|
|
uint8_t buffer[256];
|
|
|
|
while(true) {
|
|
size_t to_read = CLAMP(pipe_bytes_available(pipe), sizeof(buffer), 1UL);
|
|
size_t read = pipe_receive(pipe, buffer, to_read);
|
|
if(read < to_read) break;
|
|
|
|
if(memchr(buffer, CliKeyETX, read)) break;
|
|
|
|
size_t written = pipe_send(pipe, buffer, read);
|
|
if(written < read) break;
|
|
}
|
|
}
|
|
|
|
void cli_main_commands_init(CliRegistry* registry) {
|
|
cli_registry_add_command(
|
|
registry, "!", CliCommandFlagParallelSafe, cli_command_info, (void*)true);
|
|
cli_registry_add_command(registry, "info", CliCommandFlagParallelSafe, cli_command_info, NULL);
|
|
cli_registry_add_command(
|
|
registry, "device_info", CliCommandFlagParallelSafe, cli_command_info, (void*)true);
|
|
|
|
cli_registry_add_command(
|
|
registry, "uptime", CliCommandFlagParallelSafe, cli_command_uptime, NULL);
|
|
cli_registry_add_command(registry, "date", CliCommandFlagParallelSafe, cli_command_date, NULL);
|
|
cli_registry_add_command(registry, "log", CliCommandFlagParallelSafe, cli_command_log, NULL);
|
|
cli_registry_add_command(registry, "sysctl", CliCommandFlagDefault, cli_command_sysctl, NULL);
|
|
cli_registry_add_command(registry, "top", CliCommandFlagParallelSafe, cli_command_top, NULL);
|
|
cli_registry_add_command(registry, "free", CliCommandFlagParallelSafe, cli_command_free, NULL);
|
|
cli_registry_add_command(
|
|
registry, "free_blocks", CliCommandFlagParallelSafe, cli_command_free_blocks, NULL);
|
|
cli_registry_add_command(registry, "echo", CliCommandFlagParallelSafe, cli_command_echo, NULL);
|
|
|
|
cli_registry_add_command(registry, "vibro", CliCommandFlagDefault, cli_command_vibro, NULL);
|
|
cli_registry_add_command(registry, "led", CliCommandFlagDefault, cli_command_led, NULL);
|
|
cli_registry_add_command(registry, "gpio", CliCommandFlagDefault, cli_command_gpio, NULL);
|
|
cli_registry_add_command(registry, "i2c", CliCommandFlagDefault, cli_command_i2c, NULL);
|
|
}
|
|
|
|
void cli_on_system_start(void) {
|
|
CliRegistry* registry = cli_registry_alloc();
|
|
cli_main_commands_init(registry);
|
|
furi_record_create(RECORD_CLI, registry);
|
|
}
|