mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 13:33:06 +00:00
582 lines
20 KiB
C
582 lines
20 KiB
C
#include "subbrute_device.h"
|
|
#include "subbrute_i.h"
|
|
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
#include <furi_hal_subghz.h>
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <lib/subghz/types.h>
|
|
#include <lib/subghz/protocols/base.h>
|
|
|
|
#include <storage/storage.h>
|
|
#include <dialogs/dialogs.h>
|
|
#include <stream/stream.h>
|
|
#include <stream/buffered_file_stream.h>
|
|
#include <lib/toolbox/path.h>
|
|
#include <lib/flipper_format/flipper_format_i.h>
|
|
|
|
#define TAG "SubBruteDevice"
|
|
|
|
/**
|
|
* List of protocols
|
|
*/
|
|
static const char* protocol_came = "CAME";
|
|
static const char* protocol_cham_code = "Cham_Code";
|
|
static const char* protocol_linear = "Linear";
|
|
static const char* protocol_nice_flo = "Nice FLO";
|
|
static const char* protocol_princeton = "Princeton";
|
|
static const char* protocol_raw = "RAW";
|
|
|
|
/**
|
|
* Values to not use less memory for packet parse operations
|
|
*/
|
|
static const char* subbrute_key_file_start =
|
|
"Filetype: Flipper SubGhz Key File\nVersion: 1\nFrequency: %u\nPreset: %s\nProtocol: %s\nBit: %d\n";
|
|
static const char* subbrute_key_file_key = "Key: %s\n";
|
|
static const char* subbrute_key_file_princeton_end = "TE: %d\n";
|
|
|
|
// Why nobody set in as const in all codebase?
|
|
static const char* preset_ook270_async = "FuriHalSubGhzPresetOok270Async";
|
|
static const char* preset_ook650_async = "FuriHalSubGhzPresetOok650Async";
|
|
static const char* preset_2fsk_dev238_async = "FuriHalSubGhzPreset2FSKDev238Async";
|
|
static const char* preset_2fsk_dev476_async = "FuriHalSubGhzPreset2FSKDev476Async";
|
|
static const char* preset_msk99_97_kb_async = "FuriHalSubGhzPresetMSK99_97KbAsync";
|
|
static const char* preset_gfs99_97_kb_async = "FuriHalSubGhzPresetGFS99_97KbAsync";
|
|
|
|
SubBruteDevice* subbrute_device_alloc() {
|
|
SubBruteDevice* instance = malloc(sizeof(SubBruteDevice));
|
|
|
|
instance->state = SubBruteDeviceStateIDLE;
|
|
instance->key_index = 0;
|
|
instance->dialogs = furi_record_open(RECORD_DIALOGS);
|
|
|
|
string_init(instance->load_path);
|
|
|
|
string_init(instance->payload);
|
|
string_init(instance->preset_name);
|
|
string_init(instance->protocol_name);
|
|
|
|
subbrute_device_attack_set_default_values(instance);
|
|
|
|
return instance;
|
|
}
|
|
|
|
void subbrute_device_free(SubBruteDevice* instance) {
|
|
furi_assert(instance);
|
|
|
|
furi_record_close(RECORD_DIALOGS);
|
|
|
|
string_clear(instance->payload);
|
|
string_clear(instance->load_path);
|
|
string_clear(instance->preset_name);
|
|
string_clear(instance->protocol_name);
|
|
|
|
string_clear(instance->load_path);
|
|
|
|
free(instance);
|
|
}
|
|
|
|
SubBruteFileResult subbrute_device_load_protocol_from_file(SubBruteDevice* instance) {
|
|
furi_assert(instance);
|
|
|
|
// Input events and views are managed by file_browser
|
|
string_t app_directory;
|
|
string_init_set_str(app_directory, SUBBRUTE_PATH);
|
|
|
|
DialogsFileBrowserOptions browser_options;
|
|
dialog_file_browser_set_basic_options(&browser_options, SUBBRUTE_FILE_EXT, &I_sub1_10px);
|
|
|
|
SubBruteFileResult load_result = SubBruteFileResultUnknown;
|
|
bool res = dialog_file_browser_show(
|
|
instance->dialogs, instance->load_path, app_directory, &browser_options);
|
|
|
|
string_clear(app_directory);
|
|
if(res) {
|
|
load_result = subbrute_device_attack_set(
|
|
instance, SubBruteAttackLoadFile, string_get_cstr(instance->load_path));
|
|
if(load_result == SubBruteFileResultOk) {
|
|
// Ready to run!
|
|
instance->state = SubBruteDeviceStateReady;
|
|
FURI_LOG_I(TAG, "Ready to run");
|
|
}
|
|
} else {
|
|
FURI_LOG_I(TAG, "Returned error: %sd", load_result);
|
|
// res = false;
|
|
//
|
|
// char file_info_message[128];
|
|
// snprintf(
|
|
// file_info_message,
|
|
// sizeof(file_info_message),
|
|
// "Can not load file\n%s",
|
|
// (char*)subbrute_device_error_get_desc(set_result));
|
|
// dialog_message_show_storage_error(instance->dialogs, file_info_message);
|
|
}
|
|
|
|
return load_result;
|
|
}
|
|
|
|
bool subbrute_device_save_file(SubBruteDevice* instance, const char* dev_file_name) {
|
|
furi_assert(instance);
|
|
bool result = subbrute_device_create_packet_parsed(instance, instance->key_index);
|
|
|
|
if(!result) {
|
|
//subbrute_device_notification_message(instance, &sequence_error);
|
|
return false;
|
|
}
|
|
|
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
|
Stream* stream = buffered_file_stream_alloc(storage);
|
|
|
|
result = false;
|
|
do {
|
|
if(!buffered_file_stream_open(stream, dev_file_name, FSAM_READ_WRITE, FSOM_OPEN_ALWAYS)) {
|
|
buffered_file_stream_close(stream);
|
|
break;
|
|
}
|
|
stream_write_string(stream, instance->payload);
|
|
|
|
result = true;
|
|
} while(false);
|
|
|
|
buffered_file_stream_close(stream);
|
|
stream_free(stream);
|
|
if(!result) {
|
|
//subbrute_device_notification_message(instance, &sequence_error);
|
|
}
|
|
|
|
furi_record_close(RECORD_STORAGE);
|
|
|
|
return result;
|
|
}
|
|
|
|
const char* subbrute_device_error_get_desc(SubBruteFileResult error_id) {
|
|
const char* result;
|
|
switch(error_id) {
|
|
case(SubBruteFileResultOk):
|
|
result = "OK";
|
|
break;
|
|
case(SubBruteFileResultErrorOpenFile):
|
|
result = "invalid name/path";
|
|
break;
|
|
case(SubBruteFileResultMissingOrIncorrectHeader):
|
|
result = "Missing or incorrect header";
|
|
break;
|
|
case(SubBruteFileResultFrequencyNotAllowed):
|
|
result = "Invalid frequency!";
|
|
break;
|
|
case(SubBruteFileResultMissingOrIncorrectFrequency):
|
|
result = "Missing or incorrect Frequency";
|
|
break;
|
|
case(SubBruteFileResultPresetInvalid):
|
|
result = "Preset FAIL";
|
|
break;
|
|
case(SubBruteFileResultMissingProtocol):
|
|
result = "Missing Protocol";
|
|
break;
|
|
case(SubBruteFileResultProtocolNotSupported):
|
|
result = "RAW unsupported";
|
|
break;
|
|
case(SubBruteFileResultDynamicProtocolNotValid):
|
|
result = "Dynamic protocol unsupported";
|
|
break;
|
|
case(SubBruteFileResultProtocolNotFound):
|
|
result = "Protocol not found";
|
|
break;
|
|
case(SubBruteFileResultMissingOrIncorrectBit):
|
|
result = "Missing or incorrect Bit";
|
|
break;
|
|
case(SubBruteFileResultMissingOrIncorrectKey):
|
|
result = "Missing or incorrect Key";
|
|
break;
|
|
case(SubBruteFileResultMissingOrIncorrectTe):
|
|
result = "Missing or incorrect TE";
|
|
break;
|
|
case SubBruteFileResultUnknown:
|
|
default:
|
|
result = "Unknown error";
|
|
break;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
bool subbrute_device_create_packet_parsed(SubBruteDevice* instance, uint8_t step) {
|
|
furi_assert(instance);
|
|
|
|
char step_payload[SUBBRUTE_PAYLOAD_SIZE] = {0};
|
|
string_reset(instance->payload);
|
|
|
|
if(instance->attack == SubBruteAttackLoadFile) {
|
|
if(step >= sizeof(instance->file_key)) {
|
|
return false;
|
|
}
|
|
snprintf(
|
|
step_payload, sizeof(step_payload), "%02X", (uint8_t)instance->file_key[step]);
|
|
} else {
|
|
//snprintf(step_payload, sizeof(step_payload), "%16X", step);
|
|
snprintf(step_payload, sizeof(step_payload), "%02X", step);
|
|
}
|
|
|
|
FURI_LOG_D(TAG, "step_payload: %s, step: %d", step_payload, step);
|
|
|
|
if(instance->has_tail) {
|
|
string_init_printf(
|
|
instance->payload,
|
|
instance->file_template,
|
|
step_payload,
|
|
instance->te);
|
|
} else {
|
|
string_init_printf(
|
|
instance->payload, instance->file_template, step_payload);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
SubBruteFileResult subbrute_device_attack_set(
|
|
SubBruteDevice* instance,
|
|
SubBruteAttacks type,
|
|
const char* file_path) {
|
|
furi_assert(instance);
|
|
subbrute_device_attack_set_default_values(instance);
|
|
uint8_t file_result;
|
|
|
|
switch(type) {
|
|
case SubBruteAttackLoadFile:
|
|
file_result = subbrute_device_load_from_file(instance, file_path);
|
|
if(file_result != SubBruteFileResultOk) {
|
|
// Failed load file so failed to set attack type
|
|
return file_result; // RETURN
|
|
}
|
|
break;
|
|
case SubBruteAttackCAME12bit307:
|
|
case SubBruteAttackCAME12bit433:
|
|
case SubBruteAttackCAME12bit868:
|
|
if(type == SubBruteAttackCAME12bit307) {
|
|
instance->frequency = 307800000;
|
|
} else if(type == SubBruteAttackCAME12bit433) {
|
|
instance->frequency = 433920000;
|
|
} else /* ALWAYS TRUE if(type == SubBruteAttackCAME12bit868) */ {
|
|
instance->frequency = 868350000;
|
|
}
|
|
instance->bit = 12;
|
|
string_set_str(instance->protocol_name, protocol_came);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
case SubBruteAttackChamberlain9bit315:
|
|
instance->frequency = 315000000;
|
|
instance->bit = 9;
|
|
string_set_str(instance->protocol_name, protocol_cham_code);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
case SubBruteAttackChamberlain9bit390:
|
|
instance->frequency = 390000000;
|
|
instance->bit = 9;
|
|
string_set_str(instance->protocol_name, protocol_cham_code);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
case SubBruteAttackLinear10bit300:
|
|
instance->frequency = 300000000;
|
|
instance->bit = 10;
|
|
string_set_str(instance->protocol_name, protocol_linear);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
case SubBruteAttackLinear10bit310:
|
|
instance->frequency = 310000000;
|
|
instance->bit = 10;
|
|
string_set_str(instance->protocol_name, protocol_linear);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
case SubBruteAttackNICE12bit433:
|
|
instance->frequency = 433920000;
|
|
instance->bit = 12;
|
|
string_set_str(instance->protocol_name, protocol_nice_flo);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
case SubBruteAttackNICE12bit868:
|
|
instance->frequency = 868350000;
|
|
instance->bit = 12;
|
|
string_set_str(instance->protocol_name, protocol_nice_flo);
|
|
//string_set_str(instance->preset_name, preset_ook650_async);
|
|
break;
|
|
default:
|
|
FURI_LOG_E(TAG, "Unknown attack type: %d", type);
|
|
return SubBruteFileResultProtocolNotFound; // RETURN
|
|
}
|
|
|
|
if(!furi_hal_subghz_is_tx_allowed(instance->frequency)) {
|
|
FURI_LOG_E(TAG, "Frequency invalid: %d", instance->frequency);
|
|
return SubBruteFileResultMissingOrIncorrectFrequency; // RETURN
|
|
}
|
|
|
|
// For non-file types we didn't set SubGhzProtocolDecoderBase
|
|
instance->environment = subghz_environment_alloc();
|
|
instance->receiver = subghz_receiver_alloc_init(instance->environment);
|
|
subghz_receiver_set_filter(instance->receiver, SubGhzProtocolFlag_Decodable);
|
|
furi_hal_subghz_reset();
|
|
|
|
uint8_t protocol_check_result = SubBruteFileResultProtocolNotFound;
|
|
if(type != SubBruteAttackLoadFile) {
|
|
instance->decoder_result = subghz_receiver_search_decoder_base_by_name(
|
|
instance->receiver, string_get_cstr(instance->protocol_name));
|
|
|
|
if(!instance->decoder_result ||
|
|
instance->decoder_result->protocol->type == SubGhzProtocolTypeDynamic) {
|
|
FURI_LOG_E(TAG, "Can't load SubGhzProtocolDecoderBase in phase non-file decoder set");
|
|
} else {
|
|
protocol_check_result = SubBruteFileResultOk;
|
|
}
|
|
} else {
|
|
// And here we need to set preset enum
|
|
instance->preset = subbrute_device_convert_preset(instance->preset_name);
|
|
protocol_check_result = SubBruteFileResultOk;
|
|
}
|
|
|
|
subghz_environment_free(instance->environment);
|
|
subghz_receiver_free(instance->receiver);
|
|
|
|
if(protocol_check_result != SubBruteFileResultOk) {
|
|
return SubBruteFileResultProtocolNotFound;
|
|
}
|
|
|
|
if(strcmp(string_get_cstr(instance->protocol_name), protocol_princeton) == 0) {
|
|
instance->has_tail = true;
|
|
}
|
|
|
|
// Calc max value
|
|
if(instance->attack == SubBruteAttackLoadFile) {
|
|
instance->max_value = 0xFF;
|
|
} else {
|
|
string_t max_value_s;
|
|
string_init(max_value_s);
|
|
for(uint8_t i = 0; i < instance->bit; i++) {
|
|
string_cat_printf(max_value_s, "1");
|
|
}
|
|
instance->max_value = (uint64_t)strtol(string_get_cstr(max_value_s), NULL, 2);
|
|
string_clear(max_value_s);
|
|
}
|
|
|
|
// Now we are ready to set file template for using in the future with snprintf
|
|
// for sending attack payload
|
|
snprintf(
|
|
instance->file_template,
|
|
sizeof(instance->file_template),
|
|
subbrute_key_file_start,
|
|
instance->frequency,
|
|
string_get_cstr(instance->preset_name),
|
|
string_get_cstr(instance->protocol_name),
|
|
instance->bit);
|
|
strncat(
|
|
instance->file_template,
|
|
subbrute_key_file_key,
|
|
sizeof(instance->file_template));
|
|
if(instance->has_tail) {
|
|
strncat(
|
|
instance->file_template,
|
|
subbrute_key_file_princeton_end,
|
|
sizeof(instance->file_template));
|
|
}
|
|
|
|
return SubBruteFileResultOk;
|
|
}
|
|
|
|
uint8_t subbrute_device_load_from_file(SubBruteDevice* instance, const char* file_path) {
|
|
furi_assert(instance);
|
|
|
|
SubBruteFileResult result = SubBruteFileResultUnknown;
|
|
|
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
|
FlipperFormat* fff_data_file = flipper_format_file_alloc(storage);
|
|
|
|
string_t temp_str;
|
|
string_init(temp_str);
|
|
uint32_t temp_data32;
|
|
|
|
instance->environment = subghz_environment_alloc();
|
|
instance->receiver = subghz_receiver_alloc_init(instance->environment);
|
|
subghz_receiver_set_filter(instance->receiver, SubGhzProtocolFlag_Decodable);
|
|
furi_hal_subghz_reset();
|
|
|
|
do {
|
|
if(!flipper_format_file_open_existing(fff_data_file, file_path)) {
|
|
FURI_LOG_E(TAG, "Error open file %s", file_path);
|
|
result = SubBruteFileResultErrorOpenFile;
|
|
break;
|
|
}
|
|
if(!flipper_format_read_header(fff_data_file, temp_str, &temp_data32)) {
|
|
FURI_LOG_E(TAG, "Missing or incorrect header");
|
|
result = SubBruteFileResultMissingOrIncorrectHeader;
|
|
break;
|
|
}
|
|
|
|
// Frequency
|
|
if(flipper_format_read_uint32(fff_data_file, "Frequency", &temp_data32, 1)) {
|
|
instance->frequency = temp_data32;
|
|
if(!furi_hal_subghz_is_tx_allowed(instance->frequency)) {
|
|
result = SubBruteFileResultFrequencyNotAllowed;
|
|
break;
|
|
}
|
|
} else {
|
|
FURI_LOG_E(TAG, "Missing or incorrect Frequency");
|
|
result = SubBruteFileResultMissingOrIncorrectFrequency;
|
|
break;
|
|
}
|
|
// Preset
|
|
if(!flipper_format_read_string(fff_data_file, "Preset", instance->preset_name)) {
|
|
FURI_LOG_E(TAG, "Preset FAIL");
|
|
result = SubBruteFileResultPresetInvalid;
|
|
}
|
|
// Protocol
|
|
if(!flipper_format_read_string(
|
|
fff_data_file, "Protocol", instance->protocol_name)) {
|
|
FURI_LOG_E(TAG, "Missing Protocol");
|
|
result = SubBruteFileResultMissingProtocol;
|
|
break;
|
|
}
|
|
#ifdef FURI_DEBUG
|
|
else {
|
|
FURI_LOG_D(TAG, "Protocol: %s", string_get_cstr(instance->protocol_name));
|
|
}
|
|
#endif
|
|
|
|
instance->decoder_result = subghz_receiver_search_decoder_base_by_name(
|
|
instance->receiver, string_get_cstr(instance->protocol_name));
|
|
|
|
if(!instance->decoder_result ||
|
|
strcmp(string_get_cstr(instance->protocol_name), "RAW") == 0) {
|
|
FURI_LOG_E(TAG, "RAW unsupported");
|
|
result = SubBruteFileResultProtocolNotSupported;
|
|
break;
|
|
}
|
|
|
|
if(instance->decoder_result->protocol->type == SubGhzProtocolTypeDynamic) {
|
|
FURI_LOG_E(TAG, "Protocol is dynamic - not supported");
|
|
result = SubBruteFileResultDynamicProtocolNotValid;
|
|
break;
|
|
}
|
|
#ifdef FURI_DEBUG
|
|
else {
|
|
FURI_LOG_D(TAG, "Decoder: %s", instance->decoder_result->protocol->name);
|
|
}
|
|
#endif
|
|
|
|
// instance->decoder_result = subghz_receiver_search_decoder_base_by_name(
|
|
// instance->receiver, string_get_cstr(instance->protocol_name));
|
|
//
|
|
// if(!instance->decoder_result) {
|
|
// FURI_LOG_E(TAG, "Protocol not found");
|
|
// result = SubBruteFileResultProtocolNotFound;
|
|
// break;
|
|
// }
|
|
|
|
// Bit
|
|
if(!flipper_format_read_uint32(fff_data_file, "Bit", &temp_data32, 1)) {
|
|
FURI_LOG_E(TAG, "Missing or incorrect Bit");
|
|
result = SubBruteFileResultMissingOrIncorrectBit;
|
|
break;
|
|
} else {
|
|
instance->bit = temp_data32;
|
|
}
|
|
|
|
// Key
|
|
if(!flipper_format_read_string(fff_data_file, "Key", temp_str)) {
|
|
FURI_LOG_E(TAG, "Missing or incorrect Key");
|
|
result = SubBruteFileResultMissingOrIncorrectKey;
|
|
break;
|
|
} else {
|
|
snprintf(
|
|
instance->file_key,
|
|
sizeof(instance->file_key),
|
|
"%s",
|
|
string_get_cstr(temp_str));
|
|
}
|
|
|
|
// TE
|
|
if(!flipper_format_read_uint32(fff_data_file, "TE", &temp_data32, 1)) {
|
|
FURI_LOG_E(TAG, "Missing or incorrect TE");
|
|
//result = SubBruteFileResultMissingOrIncorrectTe;
|
|
//break;
|
|
} else {
|
|
instance->te = temp_data32;
|
|
instance->has_tail = true;
|
|
}
|
|
|
|
// Repeat
|
|
if(flipper_format_read_uint32(fff_data_file, "Repeat", &temp_data32, 1)) {
|
|
#ifdef FURI_DEBUG
|
|
FURI_LOG_D(TAG, "Repeat: %d", temp_data32);
|
|
#endif
|
|
instance->repeat = temp_data32;
|
|
} else {
|
|
#ifdef FURI_DEBUG
|
|
FURI_LOG_D(TAG, "Repeat: 3 (default)");
|
|
#endif
|
|
instance->repeat = 3;
|
|
}
|
|
|
|
result = SubBruteFileResultOk;
|
|
} while(0);
|
|
|
|
string_clear(temp_str);
|
|
flipper_format_file_close(fff_data_file);
|
|
flipper_format_free(fff_data_file);
|
|
furi_record_close(RECORD_STORAGE);
|
|
|
|
subghz_environment_free(instance->environment);
|
|
subghz_receiver_free(instance->receiver);
|
|
|
|
if(result == SubBruteFileResultOk) {
|
|
#ifdef FURI_DEBUG
|
|
FURI_LOG_D(TAG, "Loaded successfully");
|
|
#endif
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void subbrute_device_attack_set_default_values(SubBruteDevice* instance) {
|
|
furi_assert(instance);
|
|
|
|
instance->attack = SubBruteAttackNone;
|
|
instance->max_value = 0;
|
|
instance->key_index = 0;
|
|
|
|
memset(instance->file_template, 0, sizeof(instance->file_template));
|
|
memset(instance->current_key, 0, sizeof(instance->current_key));
|
|
memset(instance->file_key, 0, sizeof(instance->file_key));
|
|
|
|
string_set_str(instance->protocol_name, protocol_raw);
|
|
|
|
string_set_str(instance->preset_name, preset_ook650_async);
|
|
instance->preset = FuriHalSubGhzPresetOok650Async;
|
|
|
|
string_reset(instance->payload);
|
|
|
|
instance->repeat = 5;
|
|
instance->te = 0;
|
|
instance->has_tail = false;
|
|
}
|
|
|
|
FuriHalSubGhzPreset subbrute_device_convert_preset(string_t preset) {
|
|
if(string_cmp_str(preset, preset_ook270_async) == 0) {
|
|
return FuriHalSubGhzPresetOok270Async;
|
|
}
|
|
if(string_cmp_str(preset, preset_ook650_async) == 0) {
|
|
return FuriHalSubGhzPresetOok650Async;
|
|
}
|
|
if(string_cmp_str(preset, preset_2fsk_dev238_async) == 0) {
|
|
return FuriHalSubGhzPreset2FSKDev238Async;
|
|
}
|
|
if(string_cmp_str(preset, preset_2fsk_dev476_async) == 0) {
|
|
return FuriHalSubGhzPreset2FSKDev476Async;
|
|
}
|
|
if(string_cmp_str(preset, preset_msk99_97_kb_async) == 0) {
|
|
return FuriHalSubGhzPresetMSK99_97KbAsync;
|
|
}
|
|
if(string_cmp_str(preset, preset_gfs99_97_kb_async) == 0) {
|
|
return FuriHalSubGhzPresetMSK99_97KbAsync;
|
|
}
|
|
return FuriHalSubGhzPresetCustom;
|
|
}
|