/
githubmirror
/
libeconf
Обзор
Документация
Войти
/
githubmirror
/
libeconf
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
util/econftool.c
884 строки
27 KB
Stefan Schubert
Do not try to parse files with name like ".." and "." (#227)
13 дек 2024, 15:11
Не верифицирован
13 дек 2024, 15:11
53cd107
Код
Авторство
О чём код?
/* Copyright (C) 2019, 2020 SUSE LLC Author: Dominik Gedon <dgedon@suse.de> Jorik Cronenberg <jcronenberg@suse.de> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #include <errno.h> #include <ftw.h> #include <getopt.h> #include <limits.h> #include <pwd.h> #include <stdio.h> #include <string.h> #include <sys/wait.h> #include <unistd.h> #include "libeconf.h" #include "libeconf_ext.h" #define UNUSED(x) (void)(x) static const char *utilname = "econftool"; static bool non_interactive = false; static char *conf_suffix = NULL; /* the suffix of the filename e.g. .conf */ static char *conf_dir = NULL; /* the directory of the config file */ static char *conf_basename = NULL; /* the filename without the suffix */ static char *conf_filename = NULL; /* the filename including the suffix */ static char *conf_path = NULL; /* the path concatenated with the filename and the suffix */ static char *xdg_config_dir = NULL; static char *root_dir = NULL; static char *usr_root_dir = NULL; /** * @brief Shows the usage. */ static void usage(void) { fprintf(stderr, "Usage: %s COMMAND [OPTIONS] <<filename>.<suffix> | <absolute_filename_path>>\n\n", utilname); fprintf(stderr, "If <absolute_filename_path> (begins with \"/\") is given, only this\n"); fprintf(stderr, "file will be parsed.\n"); fprintf(stderr, "Otherwise different files in /etc /usr/vendor and */<filename>.suffix.d/\n"); fprintf(stderr, "directories will be parsed.\n\n"); fprintf(stderr, "COMMANDS:\n"); fprintf(stderr, "show reads all snippets for <filename>.conf (in /usr/etc and /etc),\n"); fprintf(stderr, " and prints all groups,keys and their values.\n"); fprintf(stderr, " The root directories is /. It can be set by the environment\n"); fprintf(stderr, " variable $ECONFTOOL_ROOT \n"); fprintf(stderr, "cat prints the content of the files and the name of the file in the order\n"); fprintf(stderr, " as it has been read.\n"); fprintf(stderr, "syntax checks the syntax, prints parsing errors and returns 1 if an error\n"); fprintf(stderr, " has been found (otherwise 0).\n"); fprintf(stderr, " as it has been read.\n"); fprintf(stderr, "edit starts the editor $EDITOR (environment variable) where the\n"); fprintf(stderr, " groups, keys and values can be modified and saved afterwards.\n"); fprintf(stderr, " -f, --full: copy the original configuration file to /etc instead of\n"); fprintf(stderr, " creating drop-in files.\n"); fprintf(stderr, " --use-home: only has an effect if the user is root.\n"); fprintf(stderr, " chooses the root home directory instead of /etc.\n"); fprintf(stderr, "revert reverts all changes to the vendor versions. Basically deletes\n"); fprintf(stderr, " the config file and snippet directory in /etc.\n"); fprintf(stderr, " -y, --yes: assumes yes for all prompts and runs non-interactively.\n\n"); fprintf(stderr, "\ngeneral Options:\n"); fprintf(stderr, "--comment <character>: Character which starts a comment. ('#' default).\n"); fprintf(stderr, "--delimiters <string>: Characters which separates key/value entries. (\"=\" default).\n"); fprintf(stderr, " e.g. --delimiters=\"= \\t\"\n"); fprintf(stderr, " e.g. --delimiters=spaces regarding all spaces\n"); } /** * @brief Replace a substring of a string by another * * @param str source string * @param orig search string * @param rep replace string */ static char *replace_str(char *str, char *orig, char *rep) { static char buffer[1024]; char *p; if(!(p = strstr(str, orig))) return str; strncpy(buffer, str, p-str); buffer[p-str] = '\0'; sprintf(buffer+(p-str), "%s%s", rep, p+strlen(orig)); return buffer; } /** * @brief Defines a list of directories from which the configuration files have * to be parsed. The list is a string, divides by ":". The last entry has * the highest priority. E.g.: "PARSING_DIRS=/usr/etc/:/run:/etc" * */ static econf_file *init_key_file(void) { econf_file *key_file = NULL; econf_err error; char *param = NULL; if (asprintf(¶m, "PARSING_DIRS=%s:%s", usr_root_dir, root_dir) < 0) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } if ((error = econf_newKeyFile_with_options(&key_file, param))) { fprintf (stderr, "ERROR: couldn't allocate new key_file: %s\n", econf_errString(error)); free(param); exit(EXIT_FAILURE); } free(param); return key_file; } /** * @brief Change root dir if environment variable "ECONFTOOL_ROOT" exists * * @param change_path the path to be changed */ static void change_root_dir(char **change_path) { if (getenv("ECONFTOOL_ROOT") != NULL) { int strlen_econftool_root = strlen(getenv("ECONFTOOL_ROOT")); /* check if ECONFTOOL_ROOT has already been added */ if (*change_path != NULL && strncmp(*change_path, getenv("ECONFTOOL_ROOT"), strlen_econftool_root) == 0) return; if (*change_path != NULL) { char *tmp = strdup(*change_path); free(*change_path); if (asprintf(change_path, "%s%s", getenv("ECONFTOOL_ROOT"), tmp) < 0) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } free(tmp); } else { free(*change_path); if (asprintf(change_path, "%s", getenv("ECONFTOOL_ROOT")) < 0) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } } } } /** * @brief This function is used as a callback for nftw to delete * all files nftw finds. */ static int nftw_remove(const char *path, const struct stat *sb, int flag, struct FTW *ftwbuf) { UNUSED(sb); UNUSED(flag); UNUSED(ftwbuf); return remove(path); } /** * @brief Generate a tmpfile using mkstemp() and write its name into tmp_name */ static int generate_tmp_file(char **tmp_name) { int filedes; char tmp_filename[] = "/tmp/econftool-XXXXXX"; filedes = mkstemp(tmp_filename); if (filedes == -1) { perror("mkstemp() failed"); return -1; } *tmp_name = strdup(tmp_filename); if (*tmp_name == NULL) { perror("out of memory!"); return -1; } return 0; } /** * @brief freeing used memory which has been used for groups */ static void free_groups(char ***groups) { econf_free(*groups); } /** * @brief printing error with linenr and filename */ static void print_error(const econf_err error) { char *filename = NULL; uint64_t line_nr = 0; econf_errLocation( &filename, &line_nr); fprintf(stderr, "%s (line %d): %s\n", filename, (int) line_nr, econf_errString(error)); free(filename); } /** * @brief printing header */ static void pr_header(void) { printf ("Vendor config directory: %s\n",usr_root_dir); printf ("Config directory for local changes: %s\n",root_dir); printf ("Basename: %s\n",conf_basename); printf ("Suffix: %s\n",conf_suffix); } /** * @brief printing one key_file entry */ static econf_err pr_key_file(struct econf_file *key_file) { char **groups __attribute__ ((__cleanup__(free_groups))) = NULL; econf_ext_value *value = NULL; size_t groupCount = 0; econf_err econf_error; fprintf(stderr, "----------------------------------\n"); char *path = econf_getPath(key_file); if (strlen(path) > 0) { fprintf(stderr, "Path: %s\n\n", path); } free(path); /* show groups, keys and their value */ econf_error = econf_getGroups(key_file, &groupCount, &groups); if (econf_error) { if (econf_error != ECONF_NOGROUP) { print_error(econf_error); return econf_error; } else { /* no groups defined; generating an root entry */ groups = calloc(1, sizeof(char*)); groups[0] = NULL; groupCount = 1; } } for (size_t g = 0; g < groupCount; g++) { char **keys = NULL; size_t key_count = 0; econf_error = econf_getKeys(key_file, groups[g], &key_count, &keys); if (econf_error) { print_error(econf_error); econf_free(keys); return econf_error; } if (groups[g] != NULL) printf("%s\n", groups[g]); for (size_t k = 0; k < key_count; k++) { econf_error = econf_getExtValue(key_file, groups[g], keys[k], &value); if (econf_error) { print_error(econf_error); econf_free(keys); return econf_error; } if (value != NULL) { size_t v = 0; printf("%s = ", keys[k]); while (value->values[v] != 0) { if (v==0) { printf("%s\n", value->values[v]); } else { printf(" %s\n", value->values[v]); } v++; } econf_freeExtValue(value); } } printf("\n"); econf_free(keys); } return ECONF_SUCCESS; } /** * @brief This command will read all snippets for filename.conf * (econf_readConfig) OR a single file only. After that it * will evtl. print all groups, keys and their values as * an application would see them. */ static int econf_read(struct econf_file **key_file, const char *delimiters, const char *comment, const bool show) { econf_err econf_error; if (conf_filename[0] == '/') { /* reading one file only */ econf_error = econf_readFile(key_file, conf_filename, delimiters, comment); } else { *key_file = init_key_file(); econf_error = econf_readConfig(key_file, NULL, NULL, conf_basename, conf_suffix, delimiters, comment); } if (econf_error) { print_error(econf_error); return -1; } if (show) { pr_header(); pr_key_file(*key_file); } else { fprintf(stderr, "Syntax is OK\n"); } return 0; } /** * @brief This command will read all snippets for filename.conf * (econf_readDirsHistory) in hierarchical order and print all groups, * keys and their values. */ static int econf_cat(const char *delimiters, const char *comment) { econf_file **key_files; econf_err econf_error; size_t size = 0; if (conf_filename[0] == '/') { fprintf(stderr, "The cat command does not makes sense for parsing a single file. Please use the show command instead.\n"); return -1; } econf_error = econf_readDirsHistory(&key_files, &size, usr_root_dir, root_dir, conf_basename, conf_suffix, delimiters, comment); if (econf_error) { print_error(econf_error); return -1; } pr_header(); for (size_t i=0; i < size; i++) { pr_key_file(key_files[i]); econf_free(key_files[i]); } free(key_files); return 0; } /** * @brief Generates a tmpfiles from key_file and opens editor to allow user editing. * It then saves the edited in key_file_edit and deletes the tmpfile */ static int econf_edit_editor(struct econf_file **key_file_edit, struct econf_file **key_file, const char *delimiters, const char *comment) { econf_err econf_error; int wstatus; char *editor; char *tmpfile_edit = NULL; char *path_tmpfile_edit = NULL; char *tmp_name = NULL; char *tmp_path = getenv("TMPDIR"); if (tmp_path == NULL) tmp_path = "/tmp"; if (generate_tmp_file(&tmp_name)) return -1; path_tmpfile_edit = strdup(tmp_name); if (path_tmpfile_edit == NULL) { fprintf(stderr, "Out of memory!\n"); return -1; } tmpfile_edit = strdup(strrchr(path_tmpfile_edit, '/') + 1); if (tmpfile_edit == NULL) { fprintf(stderr, "Out of memory!\n"); return -1; } editor = getenv("EDITOR"); if (editor == NULL) { /* if no editor is specified take vi as default */ editor = "vi"; } pid_t pid = fork(); if (pid == -1) { perror("fork() failed"); exit(EXIT_FAILURE); } else if (!pid) { /* child */ /* write contents of key_file to tmpfile */ econf_error = econf_writeFile(*key_file, tmp_path, tmpfile_edit); if (econf_error) { fprintf(stderr, "%s\n", econf_errString(econf_error)); exit(EXIT_FAILURE); } /* execute given command and save result in tmpfile_edit */ execlp(editor, editor, path_tmpfile_edit, (char *) NULL); fprintf(stderr, "Couldn't execute %s: %s\n", editor, strerror(errno)); exit(EXIT_FAILURE); } /* parent */ int ret = 0; do { if (waitpid(pid, &wstatus, 0) == -1 && errno != EINTR) { perror("waitpid"); ret = -1; goto cleanup; } else if (!WIFEXITED(wstatus)) { fprintf(stderr, "Exited, status: %d\n", WEXITSTATUS(wstatus)); ret = -1; goto cleanup; } } while (!WIFEXITED(wstatus)); /* save edits from tmpfile_edit in key_file_edit */ econf_error = econf_readFile(key_file_edit, path_tmpfile_edit, delimiters, comment); if (econf_error) { fprintf(stderr, "%s\n", econf_errString(econf_error)); ret = -1; } cleanup: remove(path_tmpfile_edit); return ret; } /** * @brief This command will start an editor (EDITOR environment variable), * which shows all groups, keys and their values (like econftool * show output), allows the admin to modify them, and stores the * changes afterwards in a drop-in file in /etc/filename.conf.d/. * * --full: copy the original config file to /etc instead of creating drop-in * files. * * If not root, the file will be created in XDG_CONFIG_HOME, which is normally * $HOME/.config. * * TODO: * - Replace static values of the path with future libeconf API calls */ static int econf_edit(struct econf_file **key_file, const char *delimiters, const char *comment) { econf_err econf_error; econf_file *key_file_edit = NULL; if (conf_filename[0] == '/') { /* reading one file only */ econf_error = econf_readFile(key_file, conf_filename, delimiters, comment); } else { *key_file = init_key_file(); econf_error = econf_readConfig(key_file, NULL, NULL, conf_basename, conf_suffix, delimiters, comment); } if (econf_error == ECONF_NOFILE) { /* the file does not exist */ /* create empty key file */ if ((econf_error = econf_newIniFile(key_file))) { fprintf(stderr, "%s\n", econf_errString(econf_error)); return -1; } } else if (econf_error != ECONF_SUCCESS) { /* other errors besides "missing config file" or "no error" */ fprintf(stderr, "%s\n", econf_errString(econf_error)); return -1; } if (econf_edit_editor(&key_file_edit, key_file, delimiters, comment)) { econf_free(key_file_edit); return -1; } /*********************************************************************/ /* TODO: analyse the key_files of the 2 tmp files to extract the change * - starting with groups, then keys and then values */ int ret = 0; char **groups = NULL; char **groupsEdit = NULL; size_t groupCount = 0; size_t groupEditCount = 0; /* extract the groups of the original key_file into groups */ econf_error = econf_getGroups(*key_file, &groupCount, &groups); if (econf_error) { fprintf(stderr, "%s\n", econf_errString(econf_error)); ret = -1; goto cleanup; } /* extract the groups of the edited key_file into groupsEdit */ econf_error = econf_getGroups(key_file_edit, &groupEditCount, &groupsEdit); if (econf_error) { fprintf(stderr, "%s\n", econf_errString(econf_error)); ret = -1; goto cleanup; } /* if path does not exist, create it */ if (access(conf_dir, F_OK) == -1 && errno == ENOENT) { if (mkdir(conf_dir, 0755) != 0) { perror("mkdir() failed"); ret = -1; goto cleanup; } } /* check if file already exists */ if (access(conf_path, F_OK) == 0 && !non_interactive) { char input[3] = ""; /* let the user verify that the file should really be overwritten */ do { fprintf(stdout, "The file %s/%s already exists!\n", conf_dir, conf_filename); fprintf(stdout, "Do you really want to overwrite it?\nYes [y], no [n]\n"); if (scanf("%2s", input) != 1) { fprintf(stderr, "Didn't read correctly\n"); strcpy(input, ""); } } while (strcmp(input, "y") != 0 && strcmp(input, "n") != 0); if (strcmp(input, "y") == 0) { printf( "Writing file %s to %s\n",conf_filename, conf_dir); if ((econf_error = econf_writeFile(key_file_edit, conf_dir, conf_filename))) { fprintf(stderr, "%s\n", econf_errString(econf_error)); ret = -1; goto cleanup; } } } else { printf( "Writing file %s to %s\n",conf_filename, conf_dir); if ((econf_error = econf_writeFile(key_file_edit, conf_dir, conf_filename))) { fprintf(stderr, "%s\n", econf_errString(econf_error)); ret = -1; goto cleanup; } } /* cleanup */ cleanup: econf_free(key_file_edit); econf_free(groupsEdit); econf_free(groups); return ret; } /** * @brief Revert all changes to the vendor version. If the user is root, * delete all files in /etc for config file including snippet directory. * If the user is not root delete the config file in xdg_config_dir. */ static int econf_revert(bool is_root, bool use_homedir) { char input[3] = ""; int status = 0; free(conf_path); if (!is_root || use_homedir) { if (asprintf(&conf_path, "%s/%s", xdg_config_dir, conf_filename) < 0) { fprintf(stderr, "Out of memory!\n"); return -1; } } else { if (asprintf(&conf_path, "/etc/%s", conf_filename) < 0) { fprintf(stderr, "Out of memory!\n"); return -1; } } if (access(conf_path, F_OK) == -1 && (access(conf_dir, F_OK) == -1 || !is_root)) { fprintf(stderr, "Could not find %s or a snippet directory\n", conf_path); return -1; } /* Delete config file */ if (access(conf_path, F_OK) == 0) { /* let the user verify that the file should really be deleted */ while (strcmp(input, "y") != 0 && strcmp(input, "n") != 0 && !non_interactive) { fprintf(stdout, "Delete file %s?\nYes [y], no [n]\n", conf_path); if (scanf("%2s", input) != 1) { fprintf(stderr, "Didn't read correctly\n"); } } if (strcmp(input, "y") == 0 || non_interactive) { status = remove(conf_path); if (status) perror("remove() failed"); else fprintf(stdout, "File %s deleted!\n", conf_path); } } if (!is_root || use_homedir) return 0; /* Reset input */ strcpy(input, ""); /* Delete snippet directory */ if (access(conf_dir, F_OK) == 0) { /* let the user verify that the directory should really be deleted */ while (strcmp(input, "y") != 0 && strcmp(input, "n") != 0 && !non_interactive) { fprintf(stdout, "Delete directory %s?\nYes [y], no [n]\n", conf_dir); if (scanf("%2s", input) != 2) { fprintf(stderr, "Didn't read correctly\n"); continue; } } if (strcmp(input, "y") == 0 || non_interactive) { status = nftw(conf_dir, nftw_remove, getdtablesize() - 10, FTW_DEPTH | FTW_PHYS); if (status) perror("nftw() failed"); else fprintf(stdout, "Directory %s deleted!\n", conf_dir); } } return status; } int main (int argc, char *argv[]) { static const char *dropin_filename = "90_econftool.conf"; static econf_file *key_file = NULL; char *home_dir = NULL; /* the path of the home directory */ bool is_dropin_file = true; bool is_root = false; bool use_homedir = false; char *comment = "#"; char *delimiters = "="; /* parse command line arguments. See getopt_long(3) */ int opt, nonopts; int index = 0; static struct option longopts[] = { /* name, arguments, flag, value */ {"full", no_argument, 0, 'f'}, {"help", no_argument, 0, 'h'}, {"yes", no_argument, 0, 'y'}, {"use-home", no_argument, 0, 'u'}, {"comment", required_argument, 0, 'c'}, {"delimiters", required_argument, 0, 'd'}, {0, 0, 0, 0 } }; root_dir = strdup("/etc"); usr_root_dir = strdup("/usr/etc"); conf_dir = strdup(""); conf_basename = strdup(""); while ((opt = getopt_long(argc, argv, "hfyuc:d:", longopts, &index)) != -1) { switch(opt) { case 'f': /* overwrite path */ free(conf_dir); if (asprintf(&conf_dir, "%s", "/etc") < 0) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } change_root_dir(&conf_dir); is_dropin_file = false; break; case 'h': usage(); return EXIT_SUCCESS; case 'y': non_interactive = true; break; case 'u': use_homedir = true; break; case 'c': comment = optarg; break; case 'd': delimiters = optarg; break; case '?': default: fprintf(stderr, "Try '%s --help' for more information.\n", utilname); exit(EXIT_FAILURE); break; } } nonopts = argc - optind; /* only do something if we have an input */ if (argc < 2) { usage(); return EXIT_FAILURE; } else if (argc < 3 || nonopts < 2) { fprintf(stderr, "Invalid number of Arguments\n\n"); usage(); return EXIT_FAILURE; } /* translating delimiters */ if ( strcmp(delimiters, "spaces") == 0 ) { delimiters = " \t\f\n\r\v"; } else { delimiters = replace_str(delimiters, "\\t", "\t"); delimiters = replace_str(delimiters, "\\f", "\f"); delimiters = replace_str(delimiters, "\\n", "\n"); delimiters = replace_str(delimiters, "\\r", "\r"); delimiters = replace_str(delimiters, "\\v", "\v"); } /**** initialization ****/ /* basic write permission check */ is_root = getuid() == 0; if ( argv[optind + 1][0] != '/') { /* it is not a single file only */ /* get the position of the last dot in the filename to extract * the suffix from it. */ conf_suffix = strrchr(argv[optind + 1], '.'); if (conf_suffix == NULL) { fprintf(stderr, "Currently only works with a dot in the filename and a suffix!\n\n"); usage(); exit(1); } else { /* set filename to the proper argv argument */ free(conf_basename); conf_basename = strndup(argv[optind + 1], strlen(argv[optind + 1]) - strlen(conf_suffix)); if (conf_basename == NULL) { fprintf(stderr, "Out of memory!\n"); return EXIT_FAILURE; } } } conf_filename = strdup(argv[optind + 1]); if (conf_filename == NULL) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } if (is_dropin_file) { free(conf_dir); if (asprintf(&conf_dir, "/etc/%s.d", conf_filename) < 0) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } change_root_dir(&conf_dir); } free(conf_path); if (asprintf(&conf_path, "%s/%s", conf_dir, conf_filename) < 0) { fprintf(stderr, "Out of memory!\n"); return EXIT_FAILURE; } if (getenv("ECONFTOOL_ROOT") == NULL) if (getenv("HOME") != NULL) { free(home_dir); home_dir = strdup(getenv("HOME")); if (home_dir == NULL) { fprintf(stderr, "Out of memory!\n"); return EXIT_FAILURE; } } else { struct passwd *pw = getpwuid(getuid()); if(pw) { free (home_dir); home_dir = strdup(pw->pw_dir); if (home_dir == NULL) { fprintf(stderr, "Out of memory!\n"); return EXIT_FAILURE; } } } else change_root_dir(&home_dir); if (getenv("XDG_CONFIG_HOME") == NULL) { /* if no XDG_CONFIG_HOME is specified take ~/.config as default */ if (asprintf(&xdg_config_dir, "%s/.config", home_dir) < 0) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } } else { xdg_config_dir = strdup(getenv("XDG_CONFIG_HOME")); if (xdg_config_dir == NULL) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } } free(home_dir); /* Change Root dirs */ change_root_dir(&root_dir); change_root_dir(&usr_root_dir); int ret = 0; if (strcmp(argv[optind], "show") == 0) { ret = econf_read(&key_file, delimiters, comment, true); } else if (strcmp(argv[optind], "syntax") == 0) { ret = econf_read(&key_file, delimiters, comment, false); } else if (strcmp(argv[optind], "edit") == 0) { if (!is_root || use_homedir) { /* adjust path to home directory of the user.*/ free(conf_dir); conf_dir = strdup(xdg_config_dir); if (conf_dir == NULL) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } change_root_dir(&conf_dir); free(conf_path); if (asprintf(&conf_path, "%s/%s", conf_dir, conf_filename) < 0) { fprintf(stderr, "Out of memory!\n"); return EXIT_FAILURE; } } else if(is_dropin_file) { free(conf_filename); conf_filename = strdup(dropin_filename); if (conf_filename == NULL) { fprintf(stderr, "Out of memory!\n"); exit(EXIT_FAILURE); } free(conf_path); if (asprintf(&conf_path, "%s/%s", conf_dir, conf_filename) < 0) { fprintf(stderr, "Out of memory!\n"); return EXIT_FAILURE; } } ret = econf_edit(&key_file, delimiters, comment); } else if (strcmp(argv[optind], "revert") == 0) { ret = econf_revert(is_root, use_homedir); } else if (strcmp(argv[optind], "cat") == 0) { ret = econf_cat(delimiters, comment); } else { fprintf(stderr, "Unknown command!\n\n"); usage(); exit(EXIT_FAILURE); } /* cleanup */ econf_free(key_file); return ret; }