aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-03-25 14:55:27 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-03-28 20:50:40 +0200
commit8cdfb83bbb7af44666d74860f474482ee20ff453 (patch)
treeece5fce90ba810dcb8ccfc88f3a4d1e8f8195391
parent4c0c971223e22d846d8411ae683aa572966df71e (diff)
downloadhardware_replicant_libsamsung-ipc-8cdfb83bbb7af44666d74860f474482ee20ff453.tar.gz
hardware_replicant_libsamsung-ipc-8cdfb83bbb7af44666d74860f474482ee20ff453.tar.bz2
hardware_replicant_libsamsung-ipc-8cdfb83bbb7af44666d74860f474482ee20ff453.zip
tools: nv_data_imei: use const arrays of structs with static storage duration
This ensures that the content of theses arrays cannot be changed at runtime. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--tools/nv_data-imei.c40
-rw-r--r--tools/nv_data-imei.h2
2 files changed, 21 insertions, 21 deletions
diff --git a/tools/nv_data-imei.c b/tools/nv_data-imei.c
index 63b1cb8..c710c8f 100644
--- a/tools/nv_data-imei.c
+++ b/tools/nv_data-imei.c
@@ -84,7 +84,7 @@ static int list_supported(void)
return 0;
}
-static int get_offset(struct command *command, void *arg)
+static int get_offset(const struct command *command, void *arg)
{
struct offset *offset = arg;
size_t i;
@@ -146,7 +146,7 @@ static int get_offset(struct command *command, void *arg)
return 0;
}
-static int get_imei(struct command *command, void *arg)
+static int get_imei(const struct command *command, void *arg)
{
struct imei *imei = arg;
@@ -213,7 +213,7 @@ static int get_imei(struct command *command, void *arg)
return 0;
}
-static struct command_option commands_options[] = {
+static const struct command_option commands_options[] = {
{
OPTION_FILE,
"",
@@ -245,7 +245,7 @@ static struct command_option commands_options[] = {
{ 0 },
};
-static struct command commands[] = {
+static const struct command commands[] = {
{
"list-supported",
"Display supported devices and EFS",
@@ -348,12 +348,12 @@ static void print_warnings(void)
}
/* TODO: Enforce type to only allow valid OPTION_* */
-static void *get_option(uint8_t given_option)
+static const struct command_option *get_option(uint8_t given_option)
{
int i = 0;
while (true) {
- struct command_option *command_option =
+ const struct command_option *command_option =
&(commands_options[i++]);
/* TODO: Get C to do something like if (!option) */
@@ -372,7 +372,7 @@ static int print_all_options(void)
int i = 0;
while (true) {
- struct command_option *option = &(commands_options[i++]);
+ const struct command_option *option = &(commands_options[i++]);
/* TODO: Get C to do something like if (!option) */
if (!option->option)
@@ -402,7 +402,7 @@ static int nv_data_imei_help(void)
printf("Commands:\n");
while (true) {
- struct command *cmd = &(commands[i++]);
+ const struct command *cmd = &(commands[i++]);
/* TODO: Get C to do something like if (!cmd) */
if (!cmd->name)
@@ -419,12 +419,12 @@ static int nv_data_imei_help(void)
return 0;
}
-static void *get_command(const char *name)
+static const struct command *get_command(const char *name)
{
int i = 0;
while (true) {
- struct command *cmd = &(commands[i++]);
+ const struct command *cmd = &(commands[i++]);
/* TODO: Get C to do something like if (!cmd) */
if (!cmd->name)
@@ -444,7 +444,7 @@ static void *get_command(const char *name)
static int command_help(const char *command_name)
{
- struct command *command;
+ const struct command *command;
size_t i;
command = get_command(command_name);
@@ -462,8 +462,8 @@ static int command_help(const char *command_name)
if (command->options & BIT(i)) {
bool required = !!(command->required_options &
BIT(i));
- struct command_option *option = get_option(
- command->options & BIT(i));
+ const struct command_option *option =
+ get_option(command->options & BIT(i));
/* Check if option and commands are in sync */
assert(option != NULL);
@@ -486,8 +486,8 @@ static int command_help(const char *command_name)
printf("Options:\n");
for (i = 0; i < (8 * sizeof(command->options)); i++) {
if (command->options & BIT(i)) {
- struct command_option *option = get_option(
- command->options & BIT(i));
+ const struct command_option *option =
+ get_option(command->options & BIT(i));
/* Check if option and commands are in sync */
assert(option != NULL);
@@ -510,8 +510,8 @@ static int command_help(const char *command_name)
if (command->options) {
for (i = 0; i < (8 * sizeof(command->options)); i++) {
if (command->required_options & BIT(i)) {
- struct command_option *option = get_option(
- command->options & BIT(i));
+ const struct command_option *option =
+ get_option(command->options & BIT(i));
/* Check if option and commands are in sync */
assert(option != NULL);
@@ -843,9 +843,9 @@ int main(int argc, char * const argv[])
opterr = 0;
struct imei imei;
struct offset offset;
- struct command *command = NULL;
- struct command_option *option = NULL;
- char *nv_data_path;
+ const struct command *command = NULL;
+ const struct command_option *option = NULL;
+ char *nv_data_path = NULL;
int c, rc;
memset(&imei, 0, sizeof(imei));
diff --git a/tools/nv_data-imei.h b/tools/nv_data-imei.h
index cb35808..7a153c2 100644
--- a/tools/nv_data-imei.h
+++ b/tools/nv_data-imei.h
@@ -66,7 +66,7 @@ struct command_option {
const char *option_string;
const char *help;
const char *example;
- int (*get_data)(struct command *command, void *arg);
+ int (*get_data)(const struct command *command, void *arg);
};
#define NO_OPTIONS 0