mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
281 lines
No EOL
8.6 KiB
C
281 lines
No EOL
8.6 KiB
C
#include "attack.h"
|
|
#include "../fuzzer_i.h"
|
|
|
|
#include <input/input.h>
|
|
#include <gui/elements.h>
|
|
|
|
#define ATTACK_SCENE_MAX_UID_LENGTH 25
|
|
#define UID_MAX_DISPLAYED_LEN (8U)
|
|
|
|
struct FuzzerViewAttack {
|
|
View* view;
|
|
FuzzerViewAttackCallback callback;
|
|
void* context;
|
|
};
|
|
|
|
typedef struct {
|
|
uint8_t time_delay;
|
|
const char* attack_name;
|
|
const char* protocol_name;
|
|
FuzzerAttackState attack_state;
|
|
char* uid;
|
|
} FuzzerViewAttackModel;
|
|
|
|
void fuzzer_view_attack_reset_data(
|
|
FuzzerViewAttack* view,
|
|
const char* attack_name,
|
|
const char* protocol_name) {
|
|
furi_assert(view);
|
|
|
|
with_view_model(
|
|
view->view,
|
|
FuzzerViewAttackModel * model,
|
|
{
|
|
model->attack_name = attack_name;
|
|
model->protocol_name = protocol_name;
|
|
model->attack_state = FuzzerAttackStateIdle;
|
|
strcpy(model->uid, "Not_set");
|
|
},
|
|
true);
|
|
}
|
|
|
|
void fuzzer_view_attack_set_uid(FuzzerViewAttack* view, const FuzzerPayload uid) {
|
|
furi_assert(view);
|
|
|
|
// TODO fix it
|
|
uint8_t* data = malloc(uid.data_size);
|
|
memcpy(data, uid.data, uid.data_size);
|
|
|
|
with_view_model(
|
|
view->view,
|
|
FuzzerViewAttackModel * model,
|
|
{
|
|
snprintf(
|
|
model->uid,
|
|
uid.data_size * 3,
|
|
"%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X",
|
|
data[0],
|
|
data[1],
|
|
data[2],
|
|
data[3],
|
|
data[4],
|
|
data[5],
|
|
data[6],
|
|
data[7]);
|
|
},
|
|
true);
|
|
|
|
free(data);
|
|
}
|
|
|
|
void fuzzer_view_attack_start(FuzzerViewAttack* view) {
|
|
furi_assert(view);
|
|
|
|
with_view_model(
|
|
view->view,
|
|
FuzzerViewAttackModel * model,
|
|
{ model->attack_state = FuzzerAttackStateRunning; },
|
|
true);
|
|
}
|
|
|
|
void fuzzer_view_attack_stop(FuzzerViewAttack* view) {
|
|
furi_assert(view);
|
|
|
|
with_view_model(
|
|
view->view,
|
|
FuzzerViewAttackModel * model,
|
|
{ model->attack_state = FuzzerAttackStateOff; },
|
|
true);
|
|
}
|
|
|
|
void fuzzer_view_attack_pause(FuzzerViewAttack* view) {
|
|
furi_assert(view);
|
|
|
|
with_view_model(
|
|
view->view,
|
|
FuzzerViewAttackModel * model,
|
|
{ model->attack_state = FuzzerAttackStateIdle; },
|
|
true);
|
|
}
|
|
|
|
void fuzzer_view_attack_end(FuzzerViewAttack* view) {
|
|
furi_assert(view);
|
|
|
|
with_view_model(
|
|
view->view,
|
|
FuzzerViewAttackModel * model,
|
|
{ model->attack_state = FuzzerAttackStateEnd; },
|
|
true);
|
|
}
|
|
|
|
void fuzzer_view_attack_set_callback(
|
|
FuzzerViewAttack* view_attack,
|
|
FuzzerViewAttackCallback callback,
|
|
void* context) {
|
|
furi_assert(view_attack);
|
|
|
|
view_attack->callback = callback;
|
|
view_attack->context = context;
|
|
}
|
|
|
|
void fuzzer_view_attack_draw(Canvas* canvas, FuzzerViewAttackModel* model) {
|
|
char time_delay[16];
|
|
snprintf(time_delay, sizeof(time_delay), "Time delay: %d", model->time_delay);
|
|
|
|
canvas_clear(canvas);
|
|
canvas_set_color(canvas, ColorBlack);
|
|
|
|
canvas_set_font(canvas, FontPrimary);
|
|
canvas_draw_str_aligned(canvas, 64, 2, AlignCenter, AlignTop, model->attack_name);
|
|
|
|
canvas_set_font(canvas, FontSecondary);
|
|
canvas_draw_str_aligned(canvas, 64, 14, AlignCenter, AlignTop, time_delay);
|
|
canvas_draw_str_aligned(canvas, 64, 26, AlignCenter, AlignTop, model->protocol_name);
|
|
|
|
canvas_set_font(canvas, FontPrimary);
|
|
if(128 < canvas_string_width(canvas, model->uid)) {
|
|
canvas_set_font(canvas, FontSecondary);
|
|
}
|
|
canvas_draw_str_aligned(canvas, 64, 38, AlignCenter, AlignTop, model->uid);
|
|
|
|
canvas_set_font(canvas, FontSecondary);
|
|
if(model->attack_state == FuzzerAttackStateRunning) {
|
|
elements_button_center(canvas, "Stop");
|
|
} else if(model->attack_state == FuzzerAttackStateIdle) {
|
|
elements_button_center(canvas, "Start");
|
|
elements_button_left(canvas, "TD -");
|
|
elements_button_right(canvas, "+ TD");
|
|
} else if(model->attack_state == FuzzerAttackStateEnd) {
|
|
// elements_button_center(canvas, "Restart"); // Reset
|
|
elements_button_left(canvas, "Exit");
|
|
}
|
|
}
|
|
|
|
bool fuzzer_view_attack_input(InputEvent* event, void* context) {
|
|
furi_assert(context);
|
|
FuzzerViewAttack* view_attack = context;
|
|
|
|
if(event->key == InputKeyBack && event->type == InputTypeShort) {
|
|
view_attack->callback(FuzzerCustomEventViewAttackBack, view_attack->context);
|
|
return true;
|
|
} else if(event->key == InputKeyOk && event->type == InputTypeShort) {
|
|
view_attack->callback(FuzzerCustomEventViewAttackOk, view_attack->context);
|
|
return true;
|
|
} else if(event->key == InputKeyLeft) {
|
|
with_view_model(
|
|
view_attack->view,
|
|
FuzzerViewAttackModel * model,
|
|
{
|
|
if(model->attack_state == FuzzerAttackStateIdle) {
|
|
// TimeDelay
|
|
if(event->type == InputTypeShort) {
|
|
if(model->time_delay > FUZZ_TIME_DELAY_MIN) {
|
|
model->time_delay--;
|
|
}
|
|
} else if(event->type == InputTypeLong) {
|
|
if((model->time_delay - 10) >= FUZZ_TIME_DELAY_MIN) {
|
|
model->time_delay -= 10;
|
|
} else {
|
|
model->time_delay = FUZZ_TIME_DELAY_MIN;
|
|
}
|
|
}
|
|
} else if(
|
|
(model->attack_state == FuzzerAttackStateEnd) &&
|
|
(event->type == InputTypeShort)) {
|
|
// Exit if Ended
|
|
view_attack->callback(FuzzerCustomEventViewAttackBack, view_attack->context);
|
|
}
|
|
},
|
|
true);
|
|
return true;
|
|
} else if(event->key == InputKeyRight) {
|
|
with_view_model(
|
|
view_attack->view,
|
|
FuzzerViewAttackModel * model,
|
|
{
|
|
if(model->attack_state == FuzzerAttackStateIdle) {
|
|
// TimeDelay
|
|
if(event->type == InputTypeShort) {
|
|
if(model->time_delay < FUZZ_TIME_DELAY_MAX) {
|
|
model->time_delay++;
|
|
}
|
|
} else if(event->type == InputTypeLong) {
|
|
model->time_delay += 10;
|
|
if(model->time_delay > FUZZ_TIME_DELAY_MAX) {
|
|
model->time_delay = FUZZ_TIME_DELAY_MAX;
|
|
}
|
|
}
|
|
} else {
|
|
// Nothing
|
|
}
|
|
},
|
|
true);
|
|
return true;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void fuzzer_view_attack_enter(void* context) {
|
|
furi_assert(context);
|
|
}
|
|
|
|
void fuzzer_view_attack_exit(void* context) {
|
|
furi_assert(context);
|
|
}
|
|
|
|
FuzzerViewAttack* fuzzer_view_attack_alloc() {
|
|
if(fuzzer_proto_get_max_data_size() > UID_MAX_DISPLAYED_LEN) {
|
|
furi_crash("Maximum of displayed bytes exceeded");
|
|
}
|
|
|
|
FuzzerViewAttack* view_attack = malloc(sizeof(FuzzerViewAttack));
|
|
|
|
// View allocation and configuration
|
|
view_attack->view = view_alloc();
|
|
view_allocate_model(view_attack->view, ViewModelTypeLocking, sizeof(FuzzerViewAttackModel));
|
|
view_set_context(view_attack->view, view_attack);
|
|
view_set_draw_callback(view_attack->view, (ViewDrawCallback)fuzzer_view_attack_draw);
|
|
view_set_input_callback(view_attack->view, fuzzer_view_attack_input);
|
|
view_set_enter_callback(view_attack->view, fuzzer_view_attack_enter);
|
|
view_set_exit_callback(view_attack->view, fuzzer_view_attack_exit);
|
|
|
|
with_view_model(
|
|
view_attack->view,
|
|
FuzzerViewAttackModel * model,
|
|
{
|
|
model->time_delay = FUZZ_TIME_DELAY_MIN;
|
|
model->uid = malloc(ATTACK_SCENE_MAX_UID_LENGTH + 1);
|
|
model->attack_state = FuzzerAttackStateOff;
|
|
|
|
strcpy(model->uid, "Not_set");
|
|
model->attack_name = "Not_set";
|
|
model->protocol_name = "Not_set";
|
|
},
|
|
true);
|
|
return view_attack;
|
|
}
|
|
|
|
void fuzzer_view_attack_free(FuzzerViewAttack* view_attack) {
|
|
furi_assert(view_attack);
|
|
|
|
with_view_model(
|
|
view_attack->view, FuzzerViewAttackModel * model, { free(model->uid); }, true);
|
|
view_free(view_attack->view);
|
|
free(view_attack);
|
|
}
|
|
|
|
View* fuzzer_view_attack_get_view(FuzzerViewAttack* view_attack) {
|
|
furi_assert(view_attack);
|
|
return view_attack->view;
|
|
}
|
|
|
|
uint8_t fuzzer_view_attack_get_time_delay(FuzzerViewAttack* view) {
|
|
furi_assert(view);
|
|
uint8_t time_delay;
|
|
|
|
with_view_model(
|
|
view->view, FuzzerViewAttackModel * model, { time_delay = model->time_delay; }, false);
|
|
|
|
return time_delay;
|
|
} |