mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +00:00
203 lines
5.4 KiB
C
203 lines
5.4 KiB
C
|
#include <flipper_format.h>
|
||
|
#include <flipper_format_i.h>
|
||
|
|
||
|
#include <subghz/types.h>
|
||
|
#include <lib/subghz/protocols/raw.h>
|
||
|
|
||
|
#include "subbrute_worker.h"
|
||
|
|
||
|
#define TAG "SubBruteWorker"
|
||
|
|
||
|
struct SubBruteWorker {
|
||
|
FuriThread* thread;
|
||
|
volatile bool worker_running;
|
||
|
|
||
|
SubGhzEnvironment* environment;
|
||
|
SubGhzReceiver* receiver;
|
||
|
SubGhzTransmitter* transmitter;
|
||
|
SubGhzProtocolDecoderBase* decoder_result;
|
||
|
FlipperFormat* flipper_format;
|
||
|
|
||
|
uint32_t last_time_tx_data;
|
||
|
FuriMessageQueue* event_queue;
|
||
|
|
||
|
// Preset and frequency needed
|
||
|
FuriHalSubGhzPreset preset;
|
||
|
uint32_t frequency;
|
||
|
string_t protocol_name;
|
||
|
|
||
|
//SubBruteWorkerCallback callback;
|
||
|
//void* context;
|
||
|
};
|
||
|
|
||
|
/** Taken from subghz_tx_rx_worker.c */
|
||
|
#define SUBBRUTE_TXRX_WORKER_BUF_SIZE 2048
|
||
|
#define SUBBRUTE_TXRX_WORKER_MAX_TXRX_SIZE 60
|
||
|
#define SUBBRUTE_TXRX_WORKER_TIMEOUT_READ_WRITE_BUF 40
|
||
|
#define SUBBRUTE_TX_TIMEOUT 200
|
||
|
#define SUBBRUTE_SEND_DELAY 260
|
||
|
|
||
|
/**
|
||
|
* Entrypoint for worker
|
||
|
*
|
||
|
* @param context SubBruteWorker*
|
||
|
* @return 0 if ok
|
||
|
*/
|
||
|
int32_t subbrute_worker_thread(void* context) {
|
||
|
furi_assert(context);
|
||
|
SubBruteWorker* instance = (SubBruteWorker*)context;
|
||
|
|
||
|
if(!instance->worker_running) {
|
||
|
FURI_LOG_W(TAG, "Worker is not set to running state!");
|
||
|
return -1;
|
||
|
}
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_I(TAG, "Worker start");
|
||
|
#endif
|
||
|
|
||
|
instance->environment = subghz_environment_alloc();
|
||
|
instance->transmitter = subghz_transmitter_alloc_init(
|
||
|
instance->environment, string_get_cstr(instance->protocol_name));
|
||
|
|
||
|
furi_hal_subghz_reset();
|
||
|
furi_hal_subghz_load_preset(instance->preset);
|
||
|
instance->frequency = furi_hal_subghz_set_frequency_and_path(instance->frequency);
|
||
|
|
||
|
furi_hal_gpio_init(&gpio_cc1101_g0, GpioModeOutputPushPull, GpioPullNo, GpioSpeedLow);
|
||
|
furi_hal_gpio_write(&gpio_cc1101_g0, true);
|
||
|
|
||
|
furi_hal_power_suppress_charge_enter();
|
||
|
|
||
|
// Set ready to transmit value
|
||
|
instance->last_time_tx_data = furi_get_tick() - SUBBRUTE_SEND_DELAY;
|
||
|
|
||
|
while(instance->worker_running) {
|
||
|
// Transmit
|
||
|
if(!furi_hal_subghz_tx()) {
|
||
|
FURI_LOG_E(TAG, "Cannot transmit!");
|
||
|
break;
|
||
|
}
|
||
|
furi_delay_ms(250);
|
||
|
}
|
||
|
|
||
|
furi_hal_subghz_set_path(FuriHalSubGhzPathIsolate);
|
||
|
furi_hal_subghz_sleep();
|
||
|
|
||
|
furi_hal_power_suppress_charge_exit();
|
||
|
|
||
|
subghz_transmitter_free(instance->transmitter);
|
||
|
subghz_environment_free(instance->environment);
|
||
|
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_I(TAG, "Worker stop");
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
SubBruteWorker* subbrute_worker_alloc() {
|
||
|
SubBruteWorker* instance = malloc(sizeof(SubBruteWorker));
|
||
|
|
||
|
instance->thread = furi_thread_alloc();
|
||
|
furi_thread_set_name(instance->thread, "SubBruteAttackWorker");
|
||
|
furi_thread_set_stack_size(instance->thread, 2048);
|
||
|
furi_thread_set_context(instance->thread, instance);
|
||
|
furi_thread_set_callback(instance->thread, subbrute_worker_thread);
|
||
|
|
||
|
//instance->status = SubBruteWorkerStatusIDLE;
|
||
|
instance->worker_running = false;
|
||
|
|
||
|
instance->flipper_format = flipper_format_string_alloc();
|
||
|
string_init(instance->protocol_name);
|
||
|
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
void subbrute_worker_free(SubBruteWorker* instance) {
|
||
|
furi_assert(instance);
|
||
|
furi_assert(!instance->worker_running);
|
||
|
|
||
|
furi_thread_free(instance->thread);
|
||
|
flipper_format_free(instance->flipper_format);
|
||
|
string_clear(instance->protocol_name);
|
||
|
|
||
|
free(instance);
|
||
|
}
|
||
|
|
||
|
bool subbrute_worker_start(
|
||
|
SubBruteWorker* instance,
|
||
|
uint32_t frequency,
|
||
|
FuriHalSubGhzPreset preset,
|
||
|
string_t protocol_name) {
|
||
|
furi_assert(instance);
|
||
|
furi_assert(!instance->worker_running);
|
||
|
|
||
|
instance->frequency = frequency;
|
||
|
instance->preset = preset;
|
||
|
string_init_move(instance->protocol_name, protocol_name);
|
||
|
|
||
|
bool res = false;
|
||
|
|
||
|
furi_hal_subghz_reset();
|
||
|
furi_hal_subghz_idle();
|
||
|
furi_hal_subghz_load_preset(instance->preset);
|
||
|
|
||
|
furi_hal_subghz_set_frequency_and_path(instance->frequency);
|
||
|
furi_hal_subghz_flush_rx();
|
||
|
|
||
|
if(furi_hal_subghz_is_tx_allowed(frequency)) {
|
||
|
instance->frequency = frequency;
|
||
|
res = true;
|
||
|
}
|
||
|
instance->worker_running = res;
|
||
|
|
||
|
#ifdef FURI_DEBUG
|
||
|
FURI_LOG_I(TAG, "Frequency: %d", frequency);
|
||
|
#endif
|
||
|
instance->preset = preset;
|
||
|
|
||
|
furi_thread_start(instance->thread);
|
||
|
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
void subbrute_worker_stop(SubBruteWorker* instance) {
|
||
|
furi_assert(instance);
|
||
|
|
||
|
instance->worker_running = false;
|
||
|
|
||
|
furi_thread_join(instance->thread);
|
||
|
|
||
|
furi_hal_subghz_set_path(FuriHalSubGhzPathIsolate);
|
||
|
furi_hal_subghz_sleep();
|
||
|
}
|
||
|
|
||
|
bool subbrute_worker_is_running(SubBruteWorker* instance) {
|
||
|
furi_assert(instance);
|
||
|
|
||
|
return instance->worker_running;
|
||
|
}
|
||
|
|
||
|
bool subbrute_worker_can_transmit(SubBruteWorker* instance) {
|
||
|
furi_assert(instance);
|
||
|
|
||
|
return (furi_get_tick() - instance->last_time_tx_data) > SUBBRUTE_SEND_DELAY;
|
||
|
}
|
||
|
|
||
|
bool subbrute_worker_transmit(SubBruteWorker* instance, string_t payload) {
|
||
|
furi_assert(instance);
|
||
|
furi_assert(instance->worker_running);
|
||
|
|
||
|
if(!subbrute_worker_can_transmit(instance)) {
|
||
|
FURI_LOG_E(TAG, "Too early to transmit");
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
instance->last_time_tx_data = furi_get_tick();
|
||
|
|
||
|
Stream* stream = flipper_format_get_raw_stream(instance->flipper_format);
|
||
|
stream_clean(stream);
|
||
|
stream_write_cstring(stream, string_get_cstr(payload));
|
||
|
subghz_transmitter_deserialize(instance->transmitter, instance->flipper_format);
|
||
|
|
||
|
return true;
|
||
|
}
|