2022-09-24 17:47:21 +00:00
|
|
|
#include <furi.h>
|
|
|
|
#include <furi_hal.h>
|
|
|
|
#include <input/input.h>
|
|
|
|
#include <m-string.h>
|
|
|
|
|
|
|
|
#include <gui/gui.h>
|
|
|
|
#include <gui/view_dispatcher.h>
|
|
|
|
#include <gui/view_stack.h>
|
|
|
|
#include <gui/scene_manager.h>
|
|
|
|
#include <gui/modules/text_input.h>
|
|
|
|
#include <gui/modules/popup.h>
|
|
|
|
#include <gui/modules/widget.h>
|
|
|
|
#include <gui/modules/loading.h>
|
|
|
|
|
|
|
|
#include <dialogs/dialogs.h>
|
|
|
|
|
2022-09-07 13:38:20 +00:00
|
|
|
#include "subbrute.h"
|
2022-09-24 17:47:21 +00:00
|
|
|
#include "subbrute_i.h"
|
|
|
|
#include "subbrute_custom_event.h"
|
|
|
|
|
|
|
|
#define TAG "SubBruteApp"
|
|
|
|
|
|
|
|
static const char* subbrute_menu_names[] = {
|
|
|
|
[SubBruteAttackCAME12bit307] = "CAME 12bit 307mhz",
|
|
|
|
[SubBruteAttackCAME12bit433] = "CAME 12bit 433mhz",
|
|
|
|
[SubBruteAttackCAME12bit868] = "CAME 12bit 868mhz",
|
|
|
|
[SubBruteAttackChamberlain9bit315] = "Chamberlain 9bit 315mhz",
|
|
|
|
[SubBruteAttackChamberlain9bit390] = "Chamberlain 9bit 390mhz",
|
|
|
|
[SubBruteAttackLinear10bit300] = "Linear 10bit 300mhz",
|
|
|
|
[SubBruteAttackLinear10bit310] = "Linear 10bit 310mhz",
|
|
|
|
[SubBruteAttackNICE12bit433] = "NICE 12bit 433mhz",
|
|
|
|
[SubBruteAttackNICE12bit868] = "NICE 12bit 868mhz",
|
|
|
|
[SubBruteAttackLoadFile] = "BF existing dump",
|
|
|
|
[SubBruteAttackTotalCount] = "Total Count",
|
|
|
|
};
|
|
|
|
|
2022-09-25 13:05:52 +00:00
|
|
|
static const char* subbrute_menu_names_small[] = {
|
|
|
|
[SubBruteAttackCAME12bit307] = "CAME 307mhz",
|
|
|
|
[SubBruteAttackCAME12bit433] = "CAME 433mhz",
|
|
|
|
[SubBruteAttackCAME12bit868] = "CAME 868mhz",
|
|
|
|
[SubBruteAttackChamberlain9bit315] = "Cham 315mhz",
|
|
|
|
[SubBruteAttackChamberlain9bit390] = "Cham 390mhz",
|
|
|
|
[SubBruteAttackLinear10bit300] = "Linear 300mhz",
|
|
|
|
[SubBruteAttackLinear10bit310] = "Linear 310mhz",
|
|
|
|
[SubBruteAttackNICE12bit433] = "NICE 433mhz",
|
|
|
|
[SubBruteAttackNICE12bit868] = "NICE 868mhz",
|
|
|
|
[SubBruteAttackLoadFile] = "Existing",
|
|
|
|
[SubBruteAttackTotalCount] = "Total Count",
|
|
|
|
};
|
|
|
|
|
2022-09-24 18:30:08 +00:00
|
|
|
static bool subbrute_custom_event_callback(void* context, uint32_t event) {
|
2022-09-24 17:47:21 +00:00
|
|
|
furi_assert(context);
|
|
|
|
SubBruteState* instance = context;
|
|
|
|
return scene_manager_handle_custom_event(instance->scene_manager, event);
|
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 18:30:08 +00:00
|
|
|
static bool subbrute_back_event_callback(void* context) {
|
2022-09-24 17:47:21 +00:00
|
|
|
furi_assert(context);
|
|
|
|
SubBruteState* instance = context;
|
|
|
|
return scene_manager_handle_back_event(instance->scene_manager);
|
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 18:30:08 +00:00
|
|
|
static void subbrute_tick_event_callback(void* context) {
|
2022-09-24 17:47:21 +00:00
|
|
|
furi_assert(context);
|
|
|
|
SubBruteState* instance = context;
|
|
|
|
scene_manager_handle_tick_event(instance->scene_manager);
|
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
SubBruteState* subbrute_alloc() {
|
|
|
|
SubBruteState* instance = malloc(sizeof(SubBruteState));
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
instance->scene_manager = scene_manager_alloc(&subbrute_scene_handlers, instance);
|
|
|
|
instance->view_dispatcher = view_dispatcher_alloc();
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 18:15:09 +00:00
|
|
|
instance->gui = furi_record_open(RECORD_GUI);
|
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_enable_queue(instance->view_dispatcher);
|
|
|
|
view_dispatcher_set_event_callback_context(instance->view_dispatcher, instance);
|
|
|
|
view_dispatcher_set_custom_event_callback(
|
|
|
|
instance->view_dispatcher, subbrute_custom_event_callback);
|
|
|
|
view_dispatcher_set_navigation_event_callback(
|
|
|
|
instance->view_dispatcher, subbrute_back_event_callback);
|
|
|
|
view_dispatcher_set_tick_event_callback(
|
|
|
|
instance->view_dispatcher, subbrute_tick_event_callback, 100);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 18:15:09 +00:00
|
|
|
//Dialog
|
2022-09-24 17:47:21 +00:00
|
|
|
instance->dialogs = furi_record_open(RECORD_DIALOGS);
|
2022-09-24 18:15:09 +00:00
|
|
|
|
|
|
|
// Notifications
|
2022-09-24 17:47:21 +00:00
|
|
|
instance->notifications = furi_record_open(RECORD_NOTIFICATION);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 18:15:09 +00:00
|
|
|
// Devices
|
|
|
|
instance->device = subbrute_device_alloc();
|
2022-09-24 17:47:21 +00:00
|
|
|
|
|
|
|
// TextInput
|
|
|
|
instance->text_input = text_input_alloc();
|
|
|
|
view_dispatcher_add_view(
|
2022-09-25 13:05:52 +00:00
|
|
|
instance->view_dispatcher,
|
|
|
|
SubBruteViewTextInput,
|
|
|
|
text_input_get_view(instance->text_input));
|
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// Custom Widget
|
|
|
|
instance->widget = widget_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher, SubBruteViewWidget, widget_get_view(instance->widget));
|
|
|
|
|
|
|
|
// Popup
|
|
|
|
instance->popup = popup_alloc();
|
2022-09-25 13:05:52 +00:00
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher, SubBruteViewPopup, popup_get_view(instance->popup));
|
2022-09-24 17:47:21 +00:00
|
|
|
|
|
|
|
// ViewStack
|
|
|
|
instance->view_stack = view_stack_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher, SubBruteViewStack, view_stack_get_view(instance->view_stack));
|
|
|
|
|
|
|
|
// SubBruteMainView
|
|
|
|
instance->view_main = subbrute_main_view_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher,
|
|
|
|
SubBruteViewMain,
|
|
|
|
subbrute_main_view_get_view(instance->view_main));
|
|
|
|
|
|
|
|
// SubBruteAttackView
|
|
|
|
instance->view_attack = subbrute_attack_view_alloc();
|
|
|
|
view_dispatcher_add_view(
|
|
|
|
instance->view_dispatcher,
|
|
|
|
SubBruteViewAttack,
|
|
|
|
subbrute_attack_view_get_view(instance->view_attack));
|
|
|
|
|
|
|
|
// Loading
|
|
|
|
instance->loading = loading_alloc();
|
|
|
|
//instance->flipper_format = flipper_format_string_alloc();
|
|
|
|
//instance->environment = subghz_environment_alloc();
|
|
|
|
|
|
|
|
return instance;
|
2022-09-07 13:38:20 +00:00
|
|
|
}
|
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
void subbrute_free(SubBruteState* instance) {
|
|
|
|
furi_assert(instance);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-25 13:05:52 +00:00
|
|
|
// SubBruteDevice
|
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteDevice");
|
|
|
|
#endif
|
|
|
|
subbrute_device_free(instance->device);
|
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// Notifications
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free Notifications");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
notification_message(instance->notifications, &sequence_blink_stop);
|
|
|
|
furi_record_close(RECORD_NOTIFICATION);
|
|
|
|
instance->notifications = NULL;
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// Loading
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free loading");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
loading_free(instance->loading);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// View Main
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteViewMain");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_remove_view(instance->view_dispatcher, SubBruteViewMain);
|
|
|
|
subbrute_main_view_free(instance->view_main);
|
2022-09-08 02:00:53 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// View Attack
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteViewAttack");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_remove_view(instance->view_dispatcher, SubBruteViewAttack);
|
|
|
|
subbrute_attack_view_free(instance->view_attack);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// TextInput
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteViewTextInput");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_remove_view(instance->view_dispatcher, SubBruteViewTextInput);
|
|
|
|
text_input_free(instance->text_input);
|
2022-09-08 02:00:53 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// Custom Widget
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteViewWidget");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_remove_view(instance->view_dispatcher, SubBruteViewWidget);
|
|
|
|
widget_free(instance->widget);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// Popup
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteViewPopup");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_remove_view(instance->view_dispatcher, SubBruteViewPopup);
|
|
|
|
popup_free(instance->popup);
|
|
|
|
|
|
|
|
// ViewStack
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free SubBruteViewStack");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_remove_view(instance->view_dispatcher, SubBruteViewStack);
|
|
|
|
view_stack_free(instance->view_stack);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
|
|
|
//Dialog
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free RECORD_DIALOGS");
|
|
|
|
#endif
|
2022-09-07 13:38:20 +00:00
|
|
|
furi_record_close(RECORD_DIALOGS);
|
2022-09-24 18:15:09 +00:00
|
|
|
instance->dialogs = NULL;
|
2022-09-07 14:48:24 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// Scene manager
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free scene_manager");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
scene_manager_free(instance->scene_manager);
|
2022-09-08 02:00:53 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// View Dispatcher
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free view_dispatcher");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
view_dispatcher_free(instance->view_dispatcher);
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// GUI
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free RECORD_GUI");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
furi_record_close(RECORD_GUI);
|
|
|
|
instance->gui = NULL;
|
2022-09-07 14:48:24 +00:00
|
|
|
|
2022-09-07 13:38:20 +00:00
|
|
|
// The rest
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "free instance");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
free(instance);
|
2022-09-07 13:38:20 +00:00
|
|
|
}
|
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
void subbrute_show_loading_popup(void* context, bool show) {
|
|
|
|
TaskHandle_t timer_task = xTaskGetHandle(configTIMER_SERVICE_TASK_NAME);
|
|
|
|
SubBruteState* instance = context;
|
|
|
|
ViewStack* view_stack = instance->view_stack;
|
|
|
|
Loading* loading = instance->loading;
|
|
|
|
|
|
|
|
if(show) {
|
|
|
|
// Raise timer priority so that animations can play
|
|
|
|
vTaskPrioritySet(timer_task, configMAX_PRIORITIES - 1);
|
|
|
|
view_stack_add_view(view_stack, loading_get_view(loading));
|
|
|
|
} else {
|
|
|
|
view_stack_remove_view(view_stack, loading_get_view(loading));
|
|
|
|
// Restore default timer priority
|
|
|
|
vTaskPrioritySet(timer_task, configTIMER_TASK_PRIORITY);
|
2022-09-07 13:38:20 +00:00
|
|
|
}
|
2022-09-24 17:47:21 +00:00
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
void subbrute_text_input_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
SubBruteState* instance = context;
|
|
|
|
view_dispatcher_send_custom_event(
|
2022-09-25 13:05:52 +00:00
|
|
|
instance->view_dispatcher, SubBruteCustomEventTypeTextEditDone);
|
2022-09-24 17:47:21 +00:00
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
void subbrute_popup_closed_callback(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
SubBruteState* instance = context;
|
|
|
|
view_dispatcher_send_custom_event(
|
|
|
|
instance->view_dispatcher, SubBruteCustomEventTypePopupClosed);
|
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
const char* subbrute_get_menu_name(SubBruteAttacks index) {
|
2022-09-24 20:46:43 +00:00
|
|
|
furi_assert(index < SubBruteAttackTotalCount);
|
2022-09-08 02:00:53 +00:00
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
return subbrute_menu_names[index];
|
|
|
|
}
|
2022-09-07 13:38:20 +00:00
|
|
|
|
2022-09-25 13:05:52 +00:00
|
|
|
const char* subbrute_get_small_menu_name(SubBruteAttacks index) {
|
|
|
|
furi_assert(index < SubBruteAttackTotalCount);
|
|
|
|
|
|
|
|
return subbrute_menu_names_small[index];
|
|
|
|
}
|
|
|
|
|
2022-09-24 17:47:21 +00:00
|
|
|
// ENTRYPOINT
|
|
|
|
int32_t subbrute_app(void* p) {
|
|
|
|
UNUSED(p);
|
2022-09-24 20:46:43 +00:00
|
|
|
#ifdef FURI_DEBUG
|
2022-09-25 13:05:52 +00:00
|
|
|
FURI_LOG_D(TAG, "subbrute_app");
|
2022-09-24 20:46:43 +00:00
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
SubBruteState* instance = subbrute_alloc();
|
|
|
|
#ifdef FURI_DEBUG
|
2022-09-24 20:46:43 +00:00
|
|
|
FURI_LOG_D(TAG, "Starting subbrute_alloc done");
|
2022-09-24 17:47:21 +00:00
|
|
|
#endif
|
|
|
|
view_dispatcher_attach_to_gui(
|
|
|
|
instance->view_dispatcher, instance->gui, ViewDispatcherTypeFullscreen);
|
|
|
|
scene_manager_next_scene(instance->scene_manager, SubBruteSceneStart);
|
|
|
|
#ifdef FURI_DEBUG
|
2022-09-24 20:46:43 +00:00
|
|
|
FURI_LOG_D(TAG, "scene_manager_next_scene set");
|
2022-09-24 17:47:21 +00:00
|
|
|
#endif
|
|
|
|
furi_hal_power_suppress_charge_enter();
|
|
|
|
#ifdef FURI_DEBUG
|
2022-09-24 20:46:43 +00:00
|
|
|
FURI_LOG_D(TAG, "view_dispatcher_run");
|
2022-09-24 17:47:21 +00:00
|
|
|
#endif
|
|
|
|
view_dispatcher_run(instance->view_dispatcher);
|
2022-09-07 14:48:24 +00:00
|
|
|
furi_hal_power_suppress_charge_exit();
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "before subbrute_free");
|
|
|
|
#endif
|
2022-09-24 17:47:21 +00:00
|
|
|
subbrute_free(instance);
|
2022-09-25 13:05:52 +00:00
|
|
|
#ifdef FURI_DEBUG
|
|
|
|
FURI_LOG_D(TAG, "return 0");
|
|
|
|
#endif
|
2022-09-07 13:38:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|