summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-07-05 15:06:28 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-07-05 15:10:25 -0700
commitbe48e352f08a7a6e5e96862865cff7946985dd32 (patch)
tree2200b732135a6cfcd47a2b9f81f2318895f7dd66 /src/main.c
parentbbe45df29cbe2e7587a70f334283602f2d6f0bba (diff)
setup: return failed desc _path_ from setup_interactively()
Returning the failed desc was just a lazy half-assed thing that was sort of the best option in the simpler, pre-paths world. But now that everything has paths thanks to recursive settings, let's just return the path to the failed setting's desc. This conveniently gets rid of a UAF bug when setup returned the setting->desc as the failed desc, and main would print the desc *after* freeing all the settings in its final moments. But the best part is now more of the errors parsing settings should be accompanied by an illuminatingly relevant setting path. Previously you'd at best get a bare key from the desc, but often no failed desc was returned at all and you saw no guidance at all. But with the recent improvements to the setup error handling I think those cases should be few if not entirely eliminated.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main.c b/src/main.c
index 119931b..44bb735 100644
--- a/src/main.c
+++ b/src/main.c
@@ -199,7 +199,7 @@ static int parse_seed(const char *in, unsigned *res_seed)
/* turn args into settings, automatically applying defaults if appropriate, or interactively if appropriate. */
/* returns negative value on error, 0 when settings unchanged from args, 1 when changed */
/* on error, *res_failed_desc _may_ be assigned with something useful. */
-static int setup_from_args(til_args_t *args, setup_t *res_setup, const til_setting_desc_t **res_failed_desc)
+static int setup_from_args(til_args_t *args, setup_t *res_setup, const char **res_failed_desc_path)
{
int r = -ENOMEM, changes = 0;
setup_t setup = { .seed = time(NULL) + getpid() };
@@ -228,13 +228,13 @@ static int setup_from_args(til_args_t *args, setup_t *res_setup, const til_setti
if (!setup.video_settings)
goto _err;
- r = setup_interactively(setup.module_settings, til_module_setup, args->use_defaults, &setup.module_setup, res_failed_desc);
+ r = setup_interactively(setup.module_settings, til_module_setup, args->use_defaults, &setup.module_setup, res_failed_desc_path);
if (r < 0)
goto _err;
if (r)
changes = 1;
- r = setup_interactively(setup.video_settings, setup_video, args->use_defaults, &setup.video_setup, res_failed_desc);
+ r = setup_interactively(setup.video_settings, setup_video, args->use_defaults, &setup.video_setup, res_failed_desc_path);
if (r < 0)
goto _err;
if (r)
@@ -361,9 +361,9 @@ static void * rototiller_thread(void *_rt)
*/
int main(int argc, const char *argv[])
{
- const til_setting_desc_t *failed_desc = NULL;
- setup_t setup = {};
- int r;
+ const char *failed_desc_path = NULL;
+ setup_t setup = {};
+ int r;
exit_if((r = til_init()) < 0,
"unable to initialize libtil: %s", strerror(-r));
@@ -374,11 +374,11 @@ int main(int argc, const char *argv[])
if (rototiller.args.help)
return print_help() < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
- exit_if((r = setup_from_args(&rototiller.args, &setup, &failed_desc)) < 0,
+ exit_if((r = setup_from_args(&rototiller.args, &setup, &failed_desc_path)) < 0,
"unable to use args%s%s%s: %s",
- failed_desc ? " for setting \"" : "",
- failed_desc ? failed_desc->spec.key : "",
- failed_desc ? "\"" : "",
+ failed_desc_path ? " for setting \"" : "",
+ failed_desc_path ? : "",
+ failed_desc_path ? "\"" : "", /* XXX: technically leaking the path when set, oh well */
strerror(-r));
exit_if(r && print_setup_as_args(&setup, !rototiller.args.gogogo) < 0,
© All Rights Reserved