forked from DarkFlippers/flipperzero-subbrute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subbrute_device.h
189 lines (170 loc) · 7.26 KB
/
subbrute_device.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#pragma once
#include "subbrute_protocols.h"
#include "helpers/subbrute_radio_device_loader.h"
#include <lib/subghz/protocols/base.h>
#include <lib/subghz/transmitter.h>
#include <lib/subghz/receiver.h>
#include <lib/subghz/environment.h>
#define SUBBRUTE_MAX_LEN_NAME 64
#define SUBBRUTE_PATH EXT_PATH("subghz")
#define SUBBRUTE_FILE_EXT ".sub"
/**
* @enum SubBruteFileResult
* @brief Represents the possible results of a sub-brute force file operation.
*
* This enumeration defines a set of possible results that can occur when performing
* a sub-brute force operation on a file. Each result represents a specific error or
* condition that can occur during the operation.
*/
typedef enum {
SubBruteFileResultUnknown,
SubBruteFileResultOk,
SubBruteFileResultErrorOpenFile,
SubBruteFileResultMissingOrIncorrectHeader,
SubBruteFileResultFrequencyNotAllowed,
SubBruteFileResultMissingOrIncorrectFrequency,
SubBruteFileResultPresetInvalid,
SubBruteFileResultMissingProtocol,
SubBruteFileResultProtocolNotSupported,
SubBruteFileResultDynamicProtocolNotValid,
SubBruteFileResultProtocolNotFound,
SubBruteFileResultMissingOrIncorrectBit,
SubBruteFileResultMissingOrIncorrectKey,
SubBruteFileResultMissingOrIncorrectTe,
} SubBruteFileResult;
/**
* @struct SubBruteDevice
* @brief Represents a device for SubBrute attack.
*
* This structure contains information and state variables required for performing
* a SubBrute attack.
*
*/
typedef struct {
const SubBruteProtocol* protocol_info; /**< Protocol info */
SubBruteProtocol* file_protocol_info; /**< File protocol info */
uint64_t current_step; /**< Current step */
/** @see @c SubGhz service for more info */
SubGhzReceiver* receiver; /**< Receiver */
SubGhzProtocolDecoderBase* decoder_result; /**< Decoder result */
SubGhzEnvironment* environment; /**< Environment */
const SubGhzDevice* radio_device; /**< Radio device */
SubBruteAttacks attack; /**< Attack state */
uint64_t max_value; /**< Max step */
uint8_t extra_repeats; /**< Extra repeats */
/** @brief Loaded info for the attack type */
uint64_t key_from_file; /**< Key from file */
uint64_t current_key_from_file; /**< Current key from file */
bool two_bytes; /**< Two bytes key */
uint8_t bit_index; /**< Index of a group to bruteforce in loaded file */
} SubBruteDevice;
/**
* @brief Response messages
* */
static char* const error_device_ok = "OK";
static char* const error_device_invalid_path = "invalid name/path";
static char* const error_device_missing_header = "Missing or incorrect header";
static char* const error_device_invalid_frequency = "Invalid frequency!";
static char* const error_device_incorrect_frequency = "Missing or incorrect Frequency";
static char* const error_device_preset_fail = "Preset FAIL";
static char* const error_device_missing_protocol = "Missing Protocol";
static char* const error_device_protocol_unsupported = "Protocol unsupported";
static char* const error_device_dynamic_protocol_unsupported = "Dynamic protocol unsupported";
static char* const error_device_protocol_not_found = "Protocol not found";
static char* const error_device_missing_bit = "Missing or incorrect Bit";
static char* const error_device_missing_key = "Missing or incorrect Key";
static char* const error_device_missing_te = "Missing or incorrect TE";
static char* const error_device_unknown = "Unknown error";
/**
* @brief Allocates memory for a SubBruteDevice structure.
*
* This function allocates memory for a SubBruteDevice structure and
* initializes it using the given SubGhzDevice.
*
* @param[in] radio_device The SubGhzDevice used to initialize the SubBruteDevice.
* @return A pointer to the allocated SubBruteDevice structure.
*/
SubBruteDevice* subbrute_device_alloc(const SubGhzDevice* radio_device);
/**
* @brief Frees the memory allocated for a SubBruteDevice instance.
*
* This function frees the memory allocated for a SubBruteDevice instance.
* After calling this function, the instance is no longer valid and should not be used.
*
* @param[out] instance Pointer to the SubBruteDevice instance to be freed.
*
*/
void subbrute_device_free(SubBruteDevice* instance);
/**
* Saves a file with the specified key name using the given SubBruteDevice instance.
*
* @param instance The SubBruteDevice instance to use for saving the file.
* @param key_name The name of the key to be used for saving the file.
* @return True if the file is successfully saved, False otherwise.
*/
bool subbrute_device_save_file(SubBruteDevice* instance, const char* key_name);
/**
* @brief Retrieves the description for a specific device error.
*
* This function returns a string that describes the given device error ID. The error ID
* should be obtained from a SubBruteFileResult value. The returned string provides
* additional information about the error, such as its cause or possible solutions.
*
* @param error_id The device error ID for which to retrieve the description.
*
* @return A pointer to a constant string containing the description of the device error.
*/
const char* subbrute_device_error_get_desc(SubBruteFileResult error_id);
SubBruteFileResult subbrute_device_attack_set(
SubBruteDevice* context,
SubBruteAttacks type,
uint8_t extra_repeats);
/**
* @brief Loads data from a file into a SubBruteDevice context.
*
* This function reads data from the specified file and populates the
* SubBruteDevice context with the loaded data. The file contents are
* expected to be in a specific format supported by the SubBruteDevice.
* Use this function to initialize the context with pre-existing data.
*
* @param context Pointer to the SubBruteDevice context to be populated.
* @param file_path Path of the file to load data from.
* @return The status of the loading operation.
* - Returns 0 if the loading is successful.
* - Returns a non-zero value if an error occurs during loading.
*/
uint8_t subbrute_device_load_from_file(SubBruteDevice* context, const char* file_path);
/**
* @brief Adds a step to the SubBruteDevice instance.
*
* This function adds a step to the given SubBruteDevice instance. It updates
* the internal state of the device accordingly.
*
* @param[in,out] instance The SubBruteDevice instance.
* @param[in] step The step to be added.
*
* @return The updated value of the device state after adding the step.
*/
uint64_t subbrute_device_add_step(SubBruteDevice* instance, int8_t step);
/**
* @brief Frees the memory allocated for the protocol information of a SubBruteDevice instance.
*
* This function will deallocate the memory used by the protocol information of a SubBruteDevice instance,
* including all the individual protocol objects and their data.
*
* @param instance Pointer to the SubBruteDevice instance.
*/
void subbrute_device_free_protocol_info(SubBruteDevice* instance);
/**
* @brief Set the default values for a SubBruteDevice attack configuration.
*
* This function sets the default values for a SubBruteDevice attack configuration based on the specified default_attack type.
*
* @param context Pointer to a SubBruteDevice instance.
* @param default_attack The default attack type to use.
*
* @see SubBruteDevice
*/
void subbrute_device_attack_set_default_values(
SubBruteDevice* context,
SubBruteAttacks default_attack);