1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-11-08 21:52:34 +05:30

simplify arguments

This commit is contained in:
Intel A80486DX2-66 2024-08-06 16:03:57 +03:00
parent c19192b00b
commit cca38d03eb
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
2 changed files with 51 additions and 37 deletions

View File

@ -91,7 +91,8 @@ distclean: testclean
# Variables for testing
EXEC_LOG = ./exec.log
PROGRAM_ARGS := -p 60 -t 2 -n 2 --noconfirm -s 999999999
PROGRAM_ARGS := -probability 60 -threshold 2 -passes 2 -noconfirm -seed \
999999999
test:
@if [ ! -e "$(EXECPATH)" ]; then \

View File

@ -34,14 +34,13 @@ enum arg_destinations {
};
/* constant values: arguments */
const char* ARGS_HELP[] = { "-h", "--help" };
const char* ARGS_PROBABILITY[] = { "-p", "--probability" };
const char* ARGS_THRESHOLD[] = { "-t", "--threshold" };
const char* ARGS_PASSES[] = { "-n", "--passes" };
const char* ARGS_CONTENTS[] = { "-c", "--contents" };
const char* ARGS_LINE_ENDINGS[] = { "-l", "--line-endings" };
const char* ARGS_PRINTABLE[] = { "-P", "--printable" };
const char* ARGS_SEED[] = { "-s", "--seed" };
const char* ARGS_HELP[] = { "-help", "-h", "--help", NULL };
#define ARG_HELP (ARGS_HELP[0])
const char* ARG_PROBABILITY = "-probability";
const char* ARG_THRESHOLD = "-threshold";
const char* ARG_PASSES = "-passes";
const char* ARG_NOCONFIRM = "-noconfirm";
const char* ARG_SEED = "-seed";
/* global variables */
uint32_t PRNG_seed_value;
@ -55,7 +54,7 @@ uint8_t config = C_CONFIRM;
}
/* macros: lambdas */
#define ARG_MATCH(s, args2) (!strcmp(s, args2[0]) || !strcmp(s, args2[1]))
#define ARG_MATCH(s1, s2) (!strcmp(s1, s2))
/* default values */
static uint16_t probability = 100;
@ -66,6 +65,7 @@ static size_t passes = 1;
static char* correct_slashes(const char* path);
static char* my_basename(const char* raw_path);
static void parse_value(uint8_t destination, const char* arg);
bool args_match(const char* arg, const char* args_list[]);
/* function implementations */
static char* correct_slashes(const char* path) {
@ -151,11 +151,19 @@ static void parse_value(uint8_t destination, const char* arg) {
}
}
bool args_match(const char* arg, const char* args_list[]) {
for (const char** p = args_list; *p != NULL; ++p)
if (!strcmp(arg, *p))
return true;
return false;
}
int main(int argc, char** argv) {
puts("Polonium: a file corrupter\n"
"Hardcoded modification: 24-bit group flip\n");
if (argc < 2 || ARG_MATCH(argv[argc - 1], ARGS_HELP)) {
if (argc < 2 || args_match(argv[argc - 1], ARGS_HELP)) {
char* program_name = my_basename(argv[0]);
printf(
"Usage: %s <file to corrupt> [parameters] [options]\n"
@ -163,37 +171,43 @@ int main(int argc, char** argv) {
"Both parameters and options are optional.\n"
"\n"
"[parameters]:\n"
" --probability : Determines the likelihood of a neutron "
" -probability : Determines the likelihood of a neutron "
"radiation event\n"
" occurring. The higher the value, the more "
" occurring. The higher the value, the more "
"likely the bits are\n"
" to be corrupted.\n"
" Value range: [1..%" PRIu16 "]\n"
" Default value: %" PRIu16 "\n"
" to be corrupted.\n"
" Value range: [1..%" PRIu16 "]\n"
" Default value: %" PRIu16 "\n"
"\n"
" --threshold : Controls the amount of change allowed for each "
" -threshold : Controls the amount of change allowed for each "
"byte. The\n"
" higher the value, the more extensive the "
" higher the value, the more extensive the "
"modifications will\n"
" be.\n"
" Value range: [1.." INT2STR(CHAR_BIT) "]\n"
" Default value: %" PRIu8 "\n"
" be.\n"
" Value range: [1.." INT2STR(CHAR_BIT) "]\n"
" Default value: %" PRIu8 "\n"
"\n"
" --passes : This parameter determines the number of times "
" -passes : This parameter determines the number of times "
"the file will\n"
" be processed. The higher the value, the longer "
" be processed. The higher the value, the longer "
"the overall\n"
" processing time will be.\n"
" Value range: [1..%" PRIuMAX "]\n"
" Default value: %" PRIuMAX "\n"
" processing time will be.\n"
" Value range: [1..%" PRIuMAX "]\n"
" Default value: %" PRIuMAX "\n"
"\n"
"[options]:\n"
" --noconfirm : (Caution!) Do not ask user to confirm "
" -noconfirm : (Caution!) Do not ask user to confirm "
"deletion\n"
"\n"
" --seed : Specify a 32-bit seed for the PRNG. If you "
" -contents : Only corrupt contents of files (PNG, BMP, WAV)\n"
"\n"
" -line-endings : Preserve line endings\n"
"\n"
" -printable : Work only with printable ASCII characters\n"
"\n"
" -seed : Specify a 32-bit seed for the PRNG. If you "
"want to keep it\n"
" random, set the option to `random`.\n",
" random, set the option to `random`.\n",
program_name, UINT16_MAX, probability, threshold,
(uintmax_t) SIZE_MAX, passes);
free(program_name);
@ -218,21 +232,20 @@ int main(int argc, char** argv) {
continue;
}
if (ARG_MATCH(arg, ARGS_PROBABILITY))
if (ARG_MATCH(arg, ARG_PROBABILITY))
arg_destination = ARG_DEST_POSSIBILITY;
else if (ARG_MATCH(arg, ARGS_THRESHOLD))
else if (ARG_MATCH(arg, ARG_THRESHOLD))
arg_destination = ARG_DEST_THRESHOLD;
else if (ARG_MATCH(arg, ARGS_PASSES))
else if (ARG_MATCH(arg, ARG_PASSES))
arg_destination = ARG_DEST_PASSES;
else if (ARG_MATCH(arg, ARGS_SEED))
else if (ARG_MATCH(arg, ARG_SEED))
arg_destination = ARG_DEST_SEED;
else if (!strcmp(arg, "--noconfirm")) {
else if (ARG_MATCH(arg, ARG_NOCONFIRM)) {
LOOP_ACTION_CONFIG(CLEAR_CONFIG, C_CONFIRM);
} else
FATAL_ERROR_RET("Unknown command line parameter '%s'.\n"
"Please invoke the program with argument %s or "
"%s to display help.\n",
arg, ARGS_HELP[0], ARGS_HELP[1]);
"Please invoke the program with argument %s to "
"display help.\n", arg, ARG_HELP);
if (last_arg)
FATAL_ERROR_RET("Please provide the value.");