aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2008-03-10 12:41:29 +0000
committerPeter Palfrader <peter@palfrader.org>2008-03-10 12:41:29 +0000
commite8f4d79ec135e65e2108914c0b295ec7cce3e336 (patch)
tree64919f7ac6dbd58600032fea4e169e121823b084 /src
parent4118e319c7c77e20bd4a1e200dc22d59bd59195d (diff)
downloadtor-e8f4d79ec135e65e2108914c0b295ec7cce3e336.tar.gz
tor-e8f4d79ec135e65e2108914c0b295ec7cce3e336.zip
options_init_from_torrc(): move code that looks for torrc into its own function
Part of options_init_from_torrc()'s job was looking for -f flags (to specify an alternate config file) on the command line, complaining if more than one is given or the given does not exist. If none is given then use the compiled-in default location, accepting if it does not exist. This logic has been moved into its own function in an attemped to make options_init_from_torrc() easier to deal with. svn:r13942
Diffstat (limited to 'src')
-rw-r--r--src/or/config.c100
1 files changed, 55 insertions, 45 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 91483282e3..229c52fd4e 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -3523,6 +3523,57 @@ check_nickname_list(const char *lst, const char *name, char **msg)
return r;
}
+/** Learn config file name from command line arguments, or use the default */
+char *
+find_torrc_filename(int argc, char **argv,
+ int *using_default_torrc, int *ignore_missing_torrc)
+{
+ char *fname=NULL;
+ int i;
+
+ for (i = 1; i < argc; ++i) {
+ if (i < argc-1 && !strcmp(argv[i],"-f")) {
+ if (fname) {
+ log(LOG_WARN, LD_CONFIG, "Duplicate -f options on command line.");
+ tor_free(fname);
+ }
+#ifdef MS_WINDOWS
+ /* XXX one day we might want to extend expand_filename to work
+ * under Windows as well. */
+ fname = tor_strdup(argv[i+1]);
+#else
+ fname = expand_filename(argv[i+1]);
+#endif
+ *using_default_torrc = 0;
+ ++i;
+ } else if (!strcmp(argv[i],"--ignore-missing-torrc")) {
+ *ignore_missing_torrc = 1;
+ }
+ }
+
+ if (*using_default_torrc) {
+ /* didn't find one, try CONFDIR */
+ const char *dflt = get_default_conf_file();
+ if (dflt && file_status(dflt) == FN_FILE) {
+ fname = tor_strdup(dflt);
+ } else {
+#ifndef MS_WINDOWS
+ char *fn;
+ fn = expand_filename("~/.torrc");
+ if (fn && file_status(fn) == FN_FILE) {
+ fname = fn;
+ } else {
+ tor_free(fn);
+ fname = tor_strdup(dflt);
+ }
+#else
+ fname = tor_strdup(dflt);
+#endif
+ }
+ }
+ return fname;
+}
+
/** Read a configuration file into <b>options</b>, finding the configuration
* file location based on the command line. After loading the options,
* validate them for consistency, then take actions based on them.
@@ -3534,8 +3585,8 @@ options_init_from_torrc(int argc, char **argv)
config_line_t *cl;
char *cf=NULL, *fname=NULL, *errmsg=NULL;
int i, retval;
- int using_default_torrc;
- int ignore_missing_torrc;
+ int using_default_torrc = 1;
+ int ignore_missing_torrc = 0;
static char **backup_argv;
static int backup_argc;
@@ -3583,49 +3634,8 @@ options_init_from_torrc(int argc, char **argv)
}
}
- /* learn config file name */
- fname = NULL;
- using_default_torrc = 1;
- ignore_missing_torrc = 0;
- for (i = 1; i < argc; ++i) {
- if (i < argc-1 && !strcmp(argv[i],"-f")) {
- if (fname) {
- log(LOG_WARN, LD_CONFIG, "Duplicate -f options on command line.");
- tor_free(fname);
- }
-#ifdef MS_WINDOWS
- /* XXX one day we might want to extend expand_filename to work
- * under Windows as well. */
- fname = tor_strdup(argv[i+1]);
-#else
- fname = expand_filename(argv[i+1]);
-#endif
- using_default_torrc = 0;
- ++i;
- } else if (!strcmp(argv[i],"--ignore-missing-torrc")) {
- ignore_missing_torrc = 1;
- }
- }
- if (using_default_torrc) {
- /* didn't find one, try CONFDIR */
- const char *dflt = get_default_conf_file();
- if (dflt && file_status(dflt) == FN_FILE) {
- fname = tor_strdup(dflt);
- } else {
-#ifndef MS_WINDOWS
- char *fn;
- fn = expand_filename("~/.torrc");
- if (fn && file_status(fn) == FN_FILE) {
- fname = fn;
- } else {
- tor_free(fn);
- fname = tor_strdup(dflt);
- }
-#else
- fname = tor_strdup(dflt);
-#endif
- }
- }
+ fname = find_torrc_filename(argc, argv,
+ &using_default_torrc, &ignore_missing_torrc);
tor_assert(fname);
log(LOG_DEBUG, LD_CONFIG, "Opening config file \"%s\"", fname);