123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890 |
- /* Copyright 2001 Matej Pfajfar.
- * Copyright 2001-2004 Roger Dingledine.
- * Copyright 2004 Roger Dingledine, Nick Mathewson. */
- /* See LICENSE for licensing information */
- /* $Id$ */
- /**
- * /file config.c
- *
- * /brief Code to parse and interpret configuration files.
- *
- **/
- #include "or.h"
- #ifdef MS_WINDOWS
- #include <shlobj.h>
- #endif
- /** Enumeration of types which option values can take */
- typedef enum config_type_t {
- CONFIG_TYPE_STRING = 0, /**< An arbitrary string. */
- CONFIG_TYPE_UINT, /**< A non-negative integer less than MAX_INT */
- CONFIG_TYPE_DOUBLE, /**< A floating-point value */
- CONFIG_TYPE_BOOL, /**< A boolean value, expressed as 0 or 1. */
- CONFIG_TYPE_CSV, /**< A list of strings, separated by commas and optional
- * whitespace. */
- CONFIG_TYPE_LINELIST, /**< Uninterpreted config lines */
- CONFIG_TYPE_LINELIST_S, /**< Uninterpreted, context-sensitive config lines,
- * mixed with other keywords. */
- CONFIG_TYPE_LINELIST_V, /**< Catch-all "virtual" option to summarize
- * context-sensitive config lines when fetching.
- */
- CONFIG_TYPE_OBSOLETE, /**< Obsolete (ignored) option. */
- } config_type_t;
- /* An abbreviation for a configuration option allowed on the command line */
- typedef struct config_abbrev_t {
- const char *abbreviated;
- const char *full;
- int commandline_only;
- } config_abbrev_t;
- /* Handy macro for declaring "In the config file or on the command line,
- * you can abbreviate <b>tok</b>s as <b>tok</b>". */
- #define PLURAL(tok) { #tok, #tok "s", 0 }
- /* A list of command-line abbreviations. */
- static config_abbrev_t config_abbrevs[] = {
- PLURAL(ExitNode),
- PLURAL(EntryNode),
- PLURAL(ExcludeNode),
- PLURAL(FirewallPort),
- PLURAL(HiddenServiceNode),
- PLURAL(HiddenServiceExcludeNode),
- PLURAL(RendNode),
- PLURAL(RendExcludeNode),
- { "l", "Log", 1},
- { "BandwidthRate", "BandwidthRateBytes", 1},
- { "BandwidthBurst", "BandwidthBurstBytes", 1},
- { NULL, NULL , 0},
- };
- #undef PLURAL
- /** A variable allowed in the configuration file or on the command line. */
- typedef struct config_var_t {
- const char *name; /**< The full keyword (case insensitive). */
- config_type_t type; /**< How to interpret the type and turn it into a value. */
- off_t var_offset; /**< Offset of the corresponding member of or_options_t. */
- const char *initvalue; /**< String (or null) describing initial value. */
- } config_var_t;
- /** Return the offset of <b>member</b> within the type <b>tp</b>, in bytes */
- #define STRUCT_OFFSET(tp, member) ((off_t) (((char*)&((tp*)0)->member)-(char*)0))
- /** An entry for config_vars: "The option <b>name</b> has type
- * CONFIG_TYPE_<b>conftype</b>, and corresponds to
- * or_options_t.<b>member</b>"
- */
- #define VAR(name,conftype,member,initvalue) \
- { name, CONFIG_TYPE_ ## conftype, STRUCT_OFFSET(or_options_t, member), initvalue }
- /** An entry for config_vars: "The option <b>name</b> is obsolete." */
- #define OBSOLETE(name) { name, CONFIG_TYPE_OBSOLETE, 0, NULL }
- /** Array of configuration options. Until we disallow nonstandard
- * abbreviations, order is significant, since the first matching option will
- * be chosen first.
- */
- static config_var_t config_vars[] = {
- VAR("Address", STRING, Address, NULL),
- VAR("AllowUnverifiedNodes",CSV, AllowUnverifiedNodes, "middle,rendezvous"),
- VAR("AuthoritativeDirectory",BOOL, AuthoritativeDir, "0"),
- VAR("BandwidthRateBytes", UINT, BandwidthRateBytes, "800000"),
- VAR("BandwidthBurstBytes", UINT, BandwidthBurstBytes, "50000000"),
- VAR("ClientOnly", BOOL, ClientOnly, "0"),
- VAR("ContactInfo", STRING, ContactInfo, NULL),
- VAR("ControlPort", UINT, ControlPort, "0"),
- VAR("DebugLogFile", STRING, DebugLogFile, NULL),
- VAR("DataDirectory", STRING, DataDirectory, NULL),
- VAR("DirPort", UINT, DirPort, "0"),
- VAR("DirBindAddress", LINELIST, DirBindAddress, NULL),
- VAR("DirFetchPostPeriod", UINT, DirFetchPostPeriod, "600"),
- VAR("DirPolicy", LINELIST, DirPolicy, NULL),
- VAR("DirServer", LINELIST, DirServers, NULL),
- VAR("ExitNodes", STRING, ExitNodes, NULL),
- VAR("EntryNodes", STRING, EntryNodes, NULL),
- VAR("StrictExitNodes", BOOL, StrictExitNodes, "0"),
- VAR("StrictEntryNodes", BOOL, StrictEntryNodes, "0"),
- VAR("ExitPolicy", LINELIST, ExitPolicy, NULL),
- VAR("ExcludeNodes", STRING, ExcludeNodes, NULL),
- VAR("FascistFirewall", BOOL, FascistFirewall, "0"),
- VAR("FirewallPorts", CSV, FirewallPorts, "80,443"),
- VAR("MyFamily", STRING, MyFamily, NULL),
- VAR("NodeFamily", LINELIST, NodeFamilies, NULL),
- VAR("Group", STRING, Group, NULL),
- VAR("HashedControlPassword",STRING, HashedControlPassword, NULL),
- VAR("HttpProxy", STRING, HttpProxy, NULL),
- VAR("HiddenServiceOptions",LINELIST_V, RendConfigLines, NULL),
- VAR("HiddenServiceDir", LINELIST_S, RendConfigLines, NULL),
- VAR("HiddenServicePort", LINELIST_S, RendConfigLines, NULL),
- VAR("HiddenServiceNodes", LINELIST_S, RendConfigLines, NULL),
- VAR("HiddenServiceExcludeNodes", LINELIST_S, RendConfigLines, NULL),
- VAR("IgnoreVersion", BOOL, IgnoreVersion, "0"),
- VAR("KeepalivePeriod", UINT, KeepalivePeriod, "300"),
- VAR("Log", LINELIST, Logs, NULL),
- VAR("LogLevel", LINELIST_S, OldLogOptions, NULL),
- VAR("LogFile", LINELIST_S, OldLogOptions, NULL),
- OBSOLETE("LinkPadding"),
- VAR("MaxConn", UINT, MaxConn, "1024"),
- VAR("MaxOnionsPending", UINT, MaxOnionsPending, "100"),
- VAR("MonthlyAccountingStart",UINT, AccountingStart, "1"),
- VAR("AccountingMaxKB", UINT, AccountingMaxKB, "0"),
- VAR("Nickname", STRING, Nickname, NULL),
- VAR("NewCircuitPeriod", UINT, NewCircuitPeriod, "30"),
- VAR("NumCpus", UINT, NumCpus, "1"),
- VAR("ORPort", UINT, ORPort, "0"),
- VAR("ORBindAddress", LINELIST, ORBindAddress, NULL),
- VAR("OutboundBindAddress", STRING, OutboundBindAddress, NULL),
- VAR("PidFile", STRING, PidFile, NULL),
- VAR("PathlenCoinWeight", DOUBLE, PathlenCoinWeight, "0.3"),
- VAR("RedirectExit", LINELIST, RedirectExit, NULL),
- OBSOLETE("RouterFile"),
- VAR("RunAsDaemon", BOOL, RunAsDaemon, "0"),
- VAR("RunTesting", BOOL, RunTesting, "0"),
- VAR("RecommendedVersions", LINELIST, RecommendedVersions, NULL),
- VAR("RendNodes", STRING, RendNodes, NULL),
- VAR("RendExcludeNodes", STRING, RendExcludeNodes, NULL),
- VAR("SocksPort", UINT, SocksPort, "9050"),
- VAR("SocksBindAddress", LINELIST, SocksBindAddress, NULL),
- VAR("SocksPolicy", LINELIST, SocksPolicy, NULL),
- VAR("SysLog", LINELIST_S, OldLogOptions, NULL),
- OBSOLETE("TrafficShaping"),
- VAR("User", STRING, User, NULL),
- { NULL, CONFIG_TYPE_OBSOLETE, 0, NULL }
- };
- #undef VAR
- #undef OBSOLETE
- /** Largest allowed config line */
- #define CONFIG_LINE_T_MAXLEN 4096
- static void option_reset(or_options_t *options, config_var_t *var);
- static void options_free(or_options_t *options);
- static or_options_t *options_dup(or_options_t *old);
- static int options_validate(or_options_t *options);
- static int options_transition_allowed(or_options_t *old, or_options_t *new);
- static int check_nickname_list(const char *lst, const char *name);
- static int parse_dir_server_line(const char *line, int validate_only);
- static int parse_redirect_line(or_options_t *options,
- struct config_line_t *line);
- static int parse_log_severity_range(const char *range, int *min_out,
- int *max_out);
- static int convert_log_option(or_options_t *options,
- struct config_line_t *level_opt,
- struct config_line_t *file_opt, int isDaemon);
- static int add_single_log_option(or_options_t *options, int minSeverity,
- int maxSeverity,
- const char *type, const char *fname);
- static int normalize_log_options(or_options_t *options);
- static int validate_data_directory(or_options_t *options);
- /*
- * Functions to read and write the global options pointer.
- */
- /** Command-line and config-file options. */
- static or_options_t *global_options=NULL;
- /** Return the currently configured options. */
- or_options_t *
- get_options(void) {
- tor_assert(global_options);
- return global_options;
- }
- /** Change the current global options to contain <b>new_val</b> instead
- * of their current value; free the old value as necessary. Where
- * <b>new_val</b> is different from the old value, update the process to
- * use the new value instead.
- *
- * Note 1: <b>new_val</b> must have previously been validated with
- * options_validate(), or Tor may freak out and exit.
- *
- * Note 2: We haven't moved all the "act on new configuration" logic
- * here yet. Some is still in do_hup() and other places.
- */
- void
- set_options(or_options_t *new_val) {
- if (global_options)
- options_free(global_options);
- global_options = new_val;
- }
- /** Fetch the active option list, and take actions based on it. All
- * of the things we do should survive being done repeatedly.
- * Return 0 if all goes well, return -1 if it's time to die.
- */
- int
- options_act(void) {
- struct config_line_t *cl;
- or_options_t *options = get_options();
- clear_trusted_dir_servers();
- for (cl = options->DirServers; cl; cl = cl->next) {
- if (parse_dir_server_line(cl->value, 0)<0) {
- log_fn(LOG_ERR,
- "Previously validated DirServer line could not be added!");
- return -1;
- }
- }
- if (rend_config_services(options, 0)<0) {
- log_fn(LOG_ERR,
- "Previously validated hidden services line could not be added!");
- return -1;
- }
- /* Setuid/setgid as appropriate */
- if(options->User || options->Group) {
- if(switch_id(options->User, options->Group) != 0) {
- return -1;
- }
- }
- /*XXX in options_validate, we should check if this is going to fail */
- /* Ensure data directory is private; create if possible. */
- if (get_data_directory() &&
- check_private_dir(get_data_directory(), 1) != 0) {
- log_fn(LOG_ERR, "Couldn't access/create private data directory %s",
- get_data_directory());
- return -1;
- }
- /* Bail out at this point if we're not going to be a server: we want
- * to not fork, and to log stuff to stderr. */
- if (options->command != CMD_RUN_TOR)
- return 0;
- if (set_max_file_descriptors(options->MaxConn) < 0)
- return -1;
- /* Configure the log(s) */
- if (config_init_logs(options)<0)
- return -1;
- /* Close the temporary log we used while starting up, if it isn't already
- * gone. */
- close_temp_logs();
- add_callback_log(LOG_WARN, LOG_ERR, control_event_logmsg);
- /* Start backgrounding the process, if requested. */
- if (options->RunAsDaemon) {
- start_daemon(get_data_directory());
- }
- /* Finish backgrounding the process */
- if(options->RunAsDaemon) {
- /* XXXX Can we delay this any more? */
- finish_daemon();
- }
- /* Write our pid to the pid file. If we do not have write permissions we
- * will log a warning */
- if(options->PidFile)
- write_pidfile(options->PidFile);
- /* reload keys as needed for rendezvous services. */
- if (rend_service_load_keys()<0) {
- log_fn(LOG_ERR,"Error reloading rendezvous service keys");
- return -1;
- }
- if(retry_all_listeners(1) < 0) {
- log_fn(LOG_ERR,"Failed to bind one of the listener ports.");
- return -1;
- }
- return 0;
- }
- /*
- * Functions to parse config options
- */
- /** If <b>option</b> is an official abbreviation for a longer option,
- * return the longer option. Otherwise return <b>option</b>.
- * If <b>command_line</b> is set, apply all abbreviations. Otherwise, only
- * apply abbreviations that work for the config file and the command line. */
- static const char *
- expand_abbrev(const char *option, int command_line)
- {
- int i;
- for (i=0; config_abbrevs[i].abbreviated; ++i) {
- /* Abbreviations aren't casei. */
- if (!strcmp(option,config_abbrevs[i].abbreviated) &&
- (command_line || !config_abbrevs[i].commandline_only)) {
- return config_abbrevs[i].full;
- }
- }
- return option;
- }
- /** Helper: Read a list of configuration options from the command line. */
- static struct config_line_t *
- config_get_commandlines(int argc, char **argv)
- {
- struct config_line_t *new;
- struct config_line_t *front = NULL;
- char *s;
- int i = 1;
- while (i < argc-1) {
- if (!strcmp(argv[i],"-f") ||
- !strcmp(argv[i],"--hash-password")) {
- i += 2; /* command-line option with argument. ignore them. */
- continue;
- } else if (!strcmp(argv[i],"--list-fingerprint")) {
- i += 1; /* command-line option. ignore it. */
- continue;
- }
- new = tor_malloc(sizeof(struct config_line_t));
- s = argv[i];
- while(*s == '-')
- s++;
- new->key = tor_strdup(expand_abbrev(s, 1));
- new->value = tor_strdup(argv[i+1]);
- log(LOG_DEBUG,"Commandline: parsed keyword '%s', value '%s'",
- new->key, new->value);
- new->next = front;
- front = new;
- i += 2;
- }
- return front;
- }
- /** Helper: allocate a new configuration option mapping 'key' to 'val',
- * prepend it to 'front', and return the newly allocated config_line_t */
- struct config_line_t *
- config_line_prepend(struct config_line_t *front,
- const char *key,
- const char *val)
- {
- struct config_line_t *newline;
- newline = tor_malloc(sizeof(struct config_line_t));
- newline->key = tor_strdup(key);
- newline->value = tor_strdup(val);
- newline->next = front;
- return newline;
- }
- /** Helper: parse the config string and strdup into key/value
- * strings. Set *result to the list, or NULL if parsing the string
- * failed. Return 0 on success, -1 on failure. Warn and ignore any
- * misformatted lines. */
- int
- config_get_lines(char *string, struct config_line_t **result)
- {
- struct config_line_t *list = NULL;
- char *k, *v;
- do {
- string = parse_line_from_str(string, &k, &v);
- if (!string) {
- config_free_lines(list);
- return -1;
- }
- if (k && v)
- list = config_line_prepend(list, k, v);
- } while (*string);
- *result = list;
- return 0;
- }
- /**
- * Free all the configuration lines on the linked list <b>front</b>.
- */
- void
- config_free_lines(struct config_line_t *front)
- {
- struct config_line_t *tmp;
- while (front) {
- tmp = front;
- front = tmp->next;
- tor_free(tmp->key);
- tor_free(tmp->value);
- tor_free(tmp);
- }
- }
- /** If <b>key</b> is a configuration option, return the corresponding
- * config_var_t. Otherwise, if <b>key</b> is a non-standard abbreviation,
- * warn, and return the corresponding config_var_t. Otherwise return NULL.
- */
- static config_var_t *config_find_option(const char *key)
- {
- int i;
- /* First, check for an exact (case-insensitive) match */
- for (i=0; config_vars[i].name; ++i) {
- if (!strcasecmp(key, config_vars[i].name))
- return &config_vars[i];
- }
- /* If none, check for an abbreviated match */
- for (i=0; config_vars[i].name; ++i) {
- if (!strncasecmp(key, config_vars[i].name, strlen(key))) {
- log_fn(LOG_WARN, "The abbreviation '%s' is deprecated. "
- "Tell Nick and Roger to make it official, or just use '%s' instead",
- key, config_vars[i].name);
- return &config_vars[i];
- }
- }
- /* Okay, unrecogized options */
- return NULL;
- }
- /** If <b>c</b> is a syntactically valid configuration line, update
- * <b>options</b> with its value and return 0. Otherwise return -1 for bad key,
- * -2 for bad value.
- *
- * If 'reset' is set, and we get a line containing no value, restore the
- * option to its default value.
- */
- static int
- config_assign_line(or_options_t *options, struct config_line_t *c, int reset)
- {
- int i, ok;
- config_var_t *var;
- void *lvalue;
- var = config_find_option(c->key);
- if (!var) {
- log_fn(LOG_WARN, "Unknown option '%s'. Failing.", c->key);
- return -1;
- }
- /* Put keyword into canonical case. */
- if (strcmp(var->name, c->key)) {
- tor_free(c->key);
- c->key = tor_strdup(var->name);
- }
- if (reset && !strlen(c->value)) {
- option_reset(options, var);
- return 0;
- }
- lvalue = ((char*)options) + var->var_offset;
- switch(var->type) {
- case CONFIG_TYPE_UINT:
- i = tor_parse_long(c->value, 10, 0, INT_MAX, &ok, NULL);
- if (!ok) {
- log(LOG_WARN, "Int keyword '%s %s' is malformed or out of bounds.",
- c->key,c->value);
- return -2;
- }
- *(int *)lvalue = i;
- break;
- case CONFIG_TYPE_BOOL:
- i = tor_parse_long(c->value, 10, 0, 1, &ok, NULL);
- if (!ok) {
- log(LOG_WARN, "Boolean keyword '%s' expects 0 or 1.", c->key);
- return -2;
- }
- *(int *)lvalue = i;
- break;
- case CONFIG_TYPE_STRING:
- tor_free(*(char **)lvalue);
- *(char **)lvalue = tor_strdup(c->value);
- break;
- case CONFIG_TYPE_DOUBLE:
- *(double *)lvalue = atof(c->value);
- break;
- case CONFIG_TYPE_CSV:
- if (*(smartlist_t**)lvalue == NULL)
- *(smartlist_t**)lvalue = smartlist_create();
- smartlist_split_string(*(smartlist_t**)lvalue, c->value, ",",
- SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
- break;
- case CONFIG_TYPE_LINELIST:
- case CONFIG_TYPE_LINELIST_S:
- /* Note: this reverses the order that the lines appear in. That's
- * just fine, since we build up the list of lines reversed in the
- * first place. */
- *(struct config_line_t**)lvalue =
- config_line_prepend(*(struct config_line_t**)lvalue, c->key, c->value);
- break;
- case CONFIG_TYPE_OBSOLETE:
- log_fn(LOG_WARN, "Skipping obsolete configuration option '%s'", c->key);
- break;
- case CONFIG_TYPE_LINELIST_V:
- log_fn(LOG_WARN, "Can't provide value for virtual option '%s'", c->key);
- return -2;
- default:
- tor_assert(0);
- break;
- }
- return 0;
- }
- /** restore the option named <b>key</b> in options to its default value. */
- static void
- config_reset_line(or_options_t *options, const char *key)
- {
- config_var_t *var;
- var = config_find_option(key);
- if (!var)
- return; /* give error on next pass. */
- option_reset(options, var);
- }
- /** Return true iff key is a valid configuration option. */
- int
- config_option_is_recognized(const char *key)
- {
- config_var_t *var = config_find_option(key);
- return (var != NULL);
- }
- /** Return a canonicalized list of the options assigned for key.
- */
- struct config_line_t *
- config_get_assigned_option(or_options_t *options, const char *key)
- {
- config_var_t *var;
- const void *value;
- char buf[32];
- struct config_line_t *result;
- tor_assert(options && key);
- var = config_find_option(key);
- if (!var) {
- log_fn(LOG_WARN, "Unknown option '%s'. Failing.", key);
- return NULL;
- } else if (var->type == CONFIG_TYPE_LINELIST_S) {
- log_fn(LOG_WARN, "Can't return context-sensitive '%s' on its own", key);
- return NULL;
- }
- value = ((char*)options) + var->var_offset;
- if (var->type == CONFIG_TYPE_LINELIST ||
- var->type == CONFIG_TYPE_LINELIST_V) {
- /* Linelist requires special handling: we just copy and return it. */
- const struct config_line_t *next_in = *(const struct config_line_t**)value;
- struct config_line_t **next_out = &result;
- while (next_in) {
- *next_out = tor_malloc(sizeof(struct config_line_t));
- (*next_out)->key = tor_strdup(next_in->key);
- (*next_out)->value = tor_strdup(next_in->value);
- next_in = next_in->next;
- next_out = &((*next_out)->next);
- }
- (*next_out) = NULL;
- return result;
- }
- result = tor_malloc_zero(sizeof(struct config_line_t));
- result->key = tor_strdup(var->name);
- switch(var->type)
- {
- case CONFIG_TYPE_STRING:
- if (*(char**)value) {
- result->value = tor_strdup(*(char**)value);
- } else {
- tor_free(result->key);
- tor_free(result);
- return NULL;
- }
- break;
- case CONFIG_TYPE_UINT:
- /* XXX This means every or_options_t uint or bool element
- * needs to be an int. Not, say, a uint16_t or char. */
- tor_snprintf(buf, sizeof(buf), "%d", *(int*)value);
- result->value = tor_strdup(buf);
- break;
- case CONFIG_TYPE_DOUBLE:
- tor_snprintf(buf, sizeof(buf), "%f", *(double*)value);
- result->value = tor_strdup(buf);
- break;
- case CONFIG_TYPE_BOOL:
- result->value = tor_strdup(*(int*)value ? "1" : "0");
- break;
- case CONFIG_TYPE_CSV:
- if (*(smartlist_t**)value)
- result->value = smartlist_join_strings(*(smartlist_t**)value,",",0,NULL);
- else
- result->value = tor_strdup("");
- break;
- case CONFIG_TYPE_OBSOLETE:
- log_fn(LOG_WARN,"You asked me for the value of an obsolete config option %s.", key);
- tor_free(result->key);
- tor_free(result);
- return NULL;
- default:
- tor_free(result->key);
- tor_free(result);
- log_fn(LOG_WARN,"Bug: unknown type %d for known key %s", var->type, key);
- return NULL;
- }
- return result;
- }
- /** Iterate through the linked list of requested options <b>list</b>.
- * For each item, convert as appropriate and assign to <b>options</b>.
- * If an item is unrecognized, return -1 immediately,
- * else return 0 for success.
- *
- * If <b>reset</b>, then interpret empty lines as meaning "restore to
- * default value", and interpret LINELIST* options as replacing (not
- * extending) their previous values. Return 0 on success, -1 on bad key,
- * -2 on bad value.
- */
- static int
- config_assign(or_options_t *options, struct config_line_t *list, int reset)
- {
- struct config_line_t *p;
- tor_assert(options);
- /* pass 1: normalize keys */
- for (p = list; p; p = p->next) {
- const char *full = expand_abbrev(p->key, 0);
- if (strcmp(full,p->key)) {
- tor_free(p->key);
- p->key = tor_strdup(full);
- }
- }
- /* pass 2: if we're reading from a resetting source, clear all mentioned
- * linelists. */
- if (reset) {
- for (p = list; p; p = p->next)
- config_reset_line(options, p->key);
- }
- /* pass 3: assign. */
- while (list) {
- int r;
- if ((r=config_assign_line(options, list, reset)))
- return r;
- list = list->next;
- }
- return 0;
- }
- /** Try assigning <b>list</b> to <b>options</b>. You do this by duping
- * options, assigning list to the new one, then validating it. If it's
- * ok, then through out the old one and stick with the new one. Else,
- * revert to old and return failure. Return 0 on success, -1 on bad
- * keys, -2 on bad values, -3 on bad transition.
- */
- int
- config_trial_assign(or_options_t **options, struct config_line_t *list, int reset)
- {
- int r;
- or_options_t *trial_options = options_dup(*options);
- if ((r=config_assign(trial_options, list, reset)) < 0) {
- options_free(trial_options);
- return r;
- }
- if (options_validate(trial_options) < 0) {
- options_free(trial_options);
- return -2;
- }
- if (options_transition_allowed(*options, trial_options) < 0) {
- options_free(trial_options);
- return -3;
- }
- return 0;
- }
- /** Replace the option indexed by <b>var</b> in <b>options</b> with its
- * default value. */
- static void
- option_reset(or_options_t *options, config_var_t *var)
- {
- struct config_line_t *c;
- void *lvalue;
- lvalue = ((char*)options) + var->var_offset;
- switch (var->type) {
- case CONFIG_TYPE_STRING:
- tor_free(*(char**)lvalue);
- break;
- case CONFIG_TYPE_DOUBLE:
- *(double*)lvalue = 0.0;
- break;
- case CONFIG_TYPE_UINT:
- case CONFIG_TYPE_BOOL:
- *(int*)lvalue = 0;
- break;
- case CONFIG_TYPE_CSV:
- if (*(smartlist_t**)lvalue) {
- SMARTLIST_FOREACH(*(smartlist_t **)lvalue, char *, cp, tor_free(cp));
- smartlist_free(*(smartlist_t **)lvalue);
- *(smartlist_t **)lvalue = NULL;
- }
- break;
- case CONFIG_TYPE_LINELIST:
- case CONFIG_TYPE_LINELIST_S:
- config_free_lines(*(struct config_line_t **)lvalue);
- *(struct config_line_t **)lvalue = NULL;
- break;
- case CONFIG_TYPE_LINELIST_V:
- /* handled by linelist_s. */
- break;
- case CONFIG_TYPE_OBSOLETE:
- break;
- }
- if (var->initvalue) {
- c = tor_malloc_zero(sizeof(struct config_line_t));
- c->key = tor_strdup(var->name);
- c->value = tor_strdup(var->initvalue);
- config_assign_line(options,c,0);
- config_free_lines(c);
- }
- }
- /** Set <b>options</b>->DirServers to contain the default directory
- * servers. */
- static void
- add_default_trusted_dirservers(or_options_t *options)
- {
- /* moria1 */
- options->DirServers = config_line_prepend(options->DirServers, "DirServer",
- "18.244.0.188:9031 FFCB 46DB 1339 DA84 674C 70D7 CB58 6434 C437 0441");
- /* moria2 */
- options->DirServers = config_line_prepend(options->DirServers, "DirServer",
- "18.244.0.114:80 719B E45D E224 B607 C537 07D0 E214 3E2D 423E 74CF");
- /* tor26 */
- options->DirServers = config_line_prepend(options->DirServers, "DirServer",
- "62.116.124.106:9030 847B 1F85 0344 D787 6491 A548 92F9 0493 4E4E B85D");
- }
- /** Print a usage message for tor. */
- static void
- print_usage(void)
- {
- printf("tor -f <torrc> [args]\n"
- "See man page for more options. This -h is obsolete.\n");
- #if 0
- "-b <bandwidth>\t\tbytes/second rate limiting\n"
- "-d <file>\t\tDebug file\n"
- "-l <level>\t\tLog level\n"
- "-r <file>\t\tList of known routers\n");
- printf("\nClient options:\n"
- "-e \"nick1 nick2 ...\"\t\tExit nodes\n"
- "-s <IP>\t\t\tPort to bind to for Socks\n");
- printf("\nServer options:\n"
- "-n <nick>\t\tNickname of router\n"
- "-o <port>\t\tOR port to bind to\n"
- "-p <file>\t\tPID file\n");
- #endif
- }
- /**
- * Based on <b>address</b>, guess our public IP address and put it
- * in <b>addr</b>.
- */
- int
- resolve_my_address(const char *address, uint32_t *addr)
- {
- struct in_addr in;
- struct hostent *rent;
- char hostname[256];
- int explicit_ip=1;
- tor_assert(addr);
- if (address) {
- strlcpy(hostname, address, sizeof(hostname));
- } else { /* then we need to guess our address */
- explicit_ip = 0; /* it's implicit */
- if (gethostname(hostname, sizeof(hostname)) < 0) {
- log_fn(LOG_WARN,"Error obtaining local hostname");
- return -1;
- }
- log_fn(LOG_DEBUG,"Guessed local host name as '%s'",hostname);
- }
- /* now we know hostname. resolve it and keep only the IP */
- if (tor_inet_aton(hostname, &in) == 0) {
- /* then we have to resolve it */
- explicit_ip = 0;
- rent = (struct hostent *)gethostbyname(hostname);
- if (!rent) {
- log_fn(LOG_WARN,"Could not resolve local Address %s. Failing.", hostname);
- return -1;
- }
- tor_assert(rent->h_length == 4);
- memcpy(&in.s_addr, rent->h_addr, rent->h_length);
- }
- if (!explicit_ip && is_internal_IP(htonl(in.s_addr))) {
- log_fn(LOG_WARN,"Address '%s' resolves to private IP '%s'. "
- "Please set the Address config option to be the IP you want to use.",
- hostname, inet_ntoa(in));
- return -1;
- }
- log_fn(LOG_DEBUG, "Resolved Address to %s.", inet_ntoa(in));
- *addr = ntohl(in.s_addr);
- return 0;
- }
- /** Called when we don't have a nickname set. Try to guess a good
- * nickname based on the hostname, and return it. */
- static char *
- get_default_nickname(void)
- {
- char localhostname[256];
- char *cp, *out, *outp;
- if (gethostname(localhostname, sizeof(localhostname)) < 0) {
- log_fn(LOG_WARN,"Error obtaining local hostname");
- return NULL;
- }
- /* Put it in lowercase; stop at the first dot. */
- for (cp = localhostname; *cp; ++cp) {
- if (*cp == '.') {
- *cp = '\0';
- break;
- }
- *cp = tolower(*cp);
- }
- /* Strip invalid characters. */
- cp = localhostname;
- out = outp = tor_malloc(strlen(localhostname) + 1);
- while (*cp) {
- if (strchr(LEGAL_NICKNAME_CHARACTERS, *cp))
- *outp++ = *cp++;
- else
- cp++;
- }
- *outp = '\0';
- /* Enforce length. */
- if (strlen(out) > MAX_NICKNAME_LEN)
- out[MAX_NICKNAME_LEN]='\0';
- return out;
- }
- /** Release storage held by <b>options</b> */
- static void
- options_free(or_options_t *options)
- {
- int i;
- void *lvalue;
- for (i=0; config_vars[i].name; ++i) {
- lvalue = ((char*)options) + config_vars[i].var_offset;
- switch(config_vars[i].type) {
- case CONFIG_TYPE_UINT:
- case CONFIG_TYPE_BOOL:
- case CONFIG_TYPE_DOUBLE:
- case CONFIG_TYPE_OBSOLETE:
- break; /* nothing to free for these config types */
- case CONFIG_TYPE_STRING:
- tor_free(*(char **)lvalue);
- break;
- case CONFIG_TYPE_LINELIST:
- case CONFIG_TYPE_LINELIST_V:
- config_free_lines(*(struct config_line_t**)lvalue);
- *(struct config_line_t**)lvalue = NULL;
- break;
- case CONFIG_TYPE_CSV:
- if (*(smartlist_t**)lvalue) {
- SMARTLIST_FOREACH(*(smartlist_t**)lvalue, char *, cp, tor_free(cp));
- smartlist_free(*(smartlist_t**)lvalue);
- *(smartlist_t**)lvalue = NULL;
- }
- break;
- case CONFIG_TYPE_LINELIST_S:
- /* will be freed by corresponding LINELIST_V. */
- break;
- }
- }
- /* XXX this last part is an exception. can we make it not needed? */
- if (options->RedirectExitList) {
- SMARTLIST_FOREACH(options->RedirectExitList,
- exit_redirect_t *, p, tor_free(p));
- smartlist_free(options->RedirectExitList);
- options->RedirectExitList = NULL;
- }
- }
- /** Copy storage held by <b>old</b> into a new or_options_t and return it. */
- static or_options_t *
- options_dup(or_options_t *old)
- {
- or_options_t *newopts;
- int i;
- struct config_line_t *line;
- newopts = tor_malloc_zero(sizeof(or_options_t));
- for (i=0; config_vars[i].name; ++i) {
- if(config_vars[i].type == CONFIG_TYPE_LINELIST_S)
- continue;
- if(config_vars[i].type == CONFIG_TYPE_OBSOLETE)
- continue;
- line = config_get_assigned_option(old, config_vars[i].name);
- if (line) {
- if (config_assign(newopts, line, 0) < 0) {
- log_fn(LOG_WARN,"Bug: config_get_assigned_option() generated "
- "something we couldn't config_assign().");
- tor_assert(0);
- }
- }
- config_free_lines(line);
- }
- return newopts;
- }
- /** Set <b>options</b> to hold reasonable defaults for most options.
- * Each option defaults to zero. */
- void
- options_init(or_options_t *options)
- {
- int i;
- config_var_t *var;
- for (i=0; config_vars[i].name; ++i) {
- var = &config_vars[i];
- if(!var->initvalue)
- continue; /* defaults to NULL or 0 */
- option_reset(options, var);
- }
- }
- /** Return 0 if every setting in <b>options</b> is reasonable. Else
- * warn and return -1. Should have no side effects, except for
- * normalizing the contents of <b>options</b>. */
- static int
- options_validate(or_options_t *options)
- {
- int i;
- int result = 0;
- struct config_line_t *cl;
- if (options->ORPort < 0 || options->ORPort > 65535) {
- log(LOG_WARN, "ORPort option out of bounds.");
- result = -1;
- }
- if (validate_data_directory(options)<0) {
- log(LOG_WARN, "Invalid DataDirectory");
- result = -1;
- }
- if (options->Nickname == NULL) {
- if (server_mode(options)) {
- if (!(options->Nickname = get_default_nickname()))
- return -1;
- log_fn(LOG_NOTICE, "Choosing default nickname %s", options->Nickname);
- }
- } else {
- if (strspn(options->Nickname, LEGAL_NICKNAME_CHARACTERS) !=
- strlen(options->Nickname)) {
- log_fn(LOG_WARN, "Nickname '%s' contains illegal characters.", options->Nickname);
- result = -1;
- }
- if (strlen(options->Nickname) == 0) {
- log_fn(LOG_WARN, "Nickname must have at least one character");
- result = -1;
- }
- if (strlen(options->Nickname) > MAX_NICKNAME_LEN) {
- log_fn(LOG_WARN, "Nickname '%s' has more than %d characters.",
- options->Nickname, MAX_NICKNAME_LEN);
- result = -1;
- }
- }
- if (normalize_log_options(options))
- return -1;
- /* Special case if no options are given. */
- if (!options->Logs) {
- options->Logs = config_line_prepend(NULL, "Log", "notice-err stdout");
- }
- if (server_mode(options)) {
- /* confirm that our address isn't broken, so we can complain now */
- uint32_t tmp;
- if (resolve_my_address(options->Address, &tmp) < 0)
- result = -1;
- }
- if (options->SocksPort < 0 || options->SocksPort > 65535) {
- log(LOG_WARN, "SocksPort option out of bounds.");
- result = -1;
- }
- if (options->SocksPort == 0 && options->ORPort == 0) {
- log(LOG_WARN, "SocksPort and ORPort are both undefined? Quitting.");
- result = -1;
- }
- if (options->ControlPort < 0 || options->ControlPort > 65535) {
- log(LOG_WARN, "ControlPort option out of bounds.");
- result = -1;
- }
- if (options->DirPort < 0 || options->DirPort > 65535) {
- log(LOG_WARN, "DirPort option out of bounds.");
- result = -1;
- }
- if (options->StrictExitNodes &&
- (!options->ExitNodes || !strlen(options->ExitNodes))) {
- log(LOG_WARN, "StrictExitNodes set, but no ExitNodes listed.");
- }
- if (options->StrictEntryNodes &&
- (!options->EntryNodes || !strlen(options->EntryNodes))) {
- log(LOG_WARN, "StrictEntryNodes set, but no EntryNodes listed.");
- }
- if (options->AuthoritativeDir && options->RecommendedVersions == NULL) {
- log(LOG_WARN, "Directory servers must configure RecommendedVersions.");
- result = -1;
- }
- if (options->AuthoritativeDir && !options->DirPort) {
- log(LOG_WARN, "Running as authoritative directory, but no DirPort set.");
- result = -1;
- }
- if (options->AuthoritativeDir && !options->ORPort) {
- log(LOG_WARN, "Running as authoritative directory, but no ORPort set.");
- result = -1;
- }
- if (options->AuthoritativeDir && options->ClientOnly) {
- log(LOG_WARN, "Running as authoritative directory, but ClientOnly also set.");
- result = -1;
- }
- if (options->FirewallPorts) {
- SMARTLIST_FOREACH(options->FirewallPorts, const char *, cp,
- {
- i = atoi(cp);
- if (i < 1 || i > 65535) {
- log(LOG_WARN, "Port '%s' out of range in FirewallPorts", cp);
- result=-1;
- }
- });
- }
- options->_AllowUnverified = 0;
- if (options->AllowUnverifiedNodes) {
- SMARTLIST_FOREACH(options->AllowUnverifiedNodes, const char *, cp, {
- if (!strcasecmp(cp, "entry"))
- options->_AllowUnverified |= ALLOW_UNVERIFIED_ENTRY;
- else if (!strcasecmp(cp, "exit"))
- options->_AllowUnverified |= ALLOW_UNVERIFIED_EXIT;
- else if (!strcasecmp(cp, "middle"))
- options->_AllowUnverified |= ALLOW_UNVERIFIED_MIDDLE;
- else if (!strcasecmp(cp, "introduction"))
- options->_AllowUnverified |= ALLOW_UNVERIFIED_INTRODUCTION;
- else if (!strcasecmp(cp, "rendezvous"))
- options->_AllowUnverified |= ALLOW_UNVERIFIED_RENDEZVOUS;
- else {
- log(LOG_WARN, "Unrecognized value '%s' in AllowUnverifiedNodes",
- cp);
- result=-1;
- }
- });
- }
- if (options->SocksPort >= 1 &&
- (options->PathlenCoinWeight < 0.0 || options->PathlenCoinWeight >= 1.0)) {
- log(LOG_WARN, "PathlenCoinWeight option must be >=0.0 and <1.0.");
- result = -1;
- }
- if (options->MaxConn < 1) {
- log(LOG_WARN, "MaxConn option must be a non-zero positive integer.");
- result = -1;
- }
- if (options->MaxConn >= MAXCONNECTIONS) {
- log(LOG_WARN, "MaxConn option must be less than %d.", MAXCONNECTIONS);
- result = -1;
- }
- #define MIN_DIRFETCHPOSTPERIOD 60
- if (options->DirFetchPostPeriod < MIN_DIRFETCHPOSTPERIOD) {
- log(LOG_WARN, "DirFetchPostPeriod option must be at least %d.", MIN_DIRFETCHPOSTPERIOD);
- result = -1;
- }
- if (options->DirFetchPostPeriod > MIN_ONION_KEY_LIFETIME / 2) {
- log(LOG_WARN, "DirFetchPostPeriod is too large; clipping.");
- options->DirFetchPostPeriod = MIN_ONION_KEY_LIFETIME / 2;
- }
- if (options->KeepalivePeriod < 1) {
- log(LOG_WARN,"KeepalivePeriod option must be positive.");
- result = -1;
- }
- if (2*options->BandwidthRateBytes >= options->BandwidthBurstBytes) {
- log(LOG_WARN,"BandwidthBurstBytes must be more than twice BandwidthRateBytes.");
- result = -1;
- }
- if (options->AccountingStart < 0 || options->AccountingStart > 31) {
- log(LOG_WARN,"Monthly accounting must start on a day of the month, and no months have %d days.",
- options->AccountingStart);
- result = -1;
- } else if (options->AccountingStart > 28) {
- log(LOG_WARN,"Not every month has %d days.",options->AccountingStart);
- result = -1;
- }
- if (options->HttpProxy) { /* parse it now */
- if (parse_addr_port(options->HttpProxy, NULL,
- &options->HttpProxyAddr, &options->HttpProxyPort) < 0) {
- log(LOG_WARN,"HttpProxy failed to parse or resolve. Please fix.");
- result = -1;
- }
- if (options->HttpProxyPort == 0) { /* give it a default */
- options->HttpProxyPort = 80;
- }
- }
- if (check_nickname_list(options->ExitNodes, "ExitNodes"))
- result = -1;
- if (check_nickname_list(options->EntryNodes, "EntryNodes"))
- result = -1;
- if (check_nickname_list(options->ExcludeNodes, "ExcludeNodes"))
- result = -1;
- if (check_nickname_list(options->RendNodes, "RendNodes"))
- result = -1;
- if (check_nickname_list(options->RendNodes, "RendExcludeNodes"))
- result = -1;
- if (check_nickname_list(options->MyFamily, "MyFamily"))
- result = -1;
- for (cl = options->NodeFamilies; cl; cl = cl->next) {
- if (check_nickname_list(cl->value, "NodeFamily"))
- result = -1;
- }
- /* free options->RedirectExitList */
- if (options->RedirectExitList) {
- SMARTLIST_FOREACH(options->RedirectExitList,
- exit_redirect_t *, p, tor_free(p));
- smartlist_free(options->RedirectExitList);
- }
- options->RedirectExitList = smartlist_create();
- for (cl = options->RedirectExit; cl; cl = cl->next) {
- if (parse_redirect_line(options, cl)<0)
- result = -1;
- }
- if (!options->DirServers) {
- add_default_trusted_dirservers(options);
- } else {
- for (cl = options->DirServers; cl; cl = cl->next) {
- if (parse_dir_server_line(cl->value, 1)<0)
- result = -1;
- }
- }
- if (rend_config_services(options, 1) < 0)
- result = -1;
- return result;
- }
- /** Check if any of the previous options have changed but aren't allowed to. */
- static int
- options_transition_allowed(or_options_t *old, or_options_t *new_val) {
- if(!old)
- return 0;
- if (old->PidFile &&
- (!new_val->PidFile || strcmp(old->PidFile,new_val->PidFile))) {
- log_fn(LOG_WARN,"PidFile is not allowed to change. Failing.");
- return -1;
- }
- if (old->RunAsDaemon && !new_val->RunAsDaemon) {
- log_fn(LOG_WARN,"During reload, change from RunAsDaemon=1 to =0 not allowed. Failing.");
- return -1;
- }
- if (old->ORPort != new_val->ORPort) {
- log_fn(LOG_WARN,"During reload, changing ORPort is not allowed. Failing.");
- return -1;
- }
- if ((old->DataDirectory &&
- (!new_val->DataDirectory ||
- strcmp(old->DataDirectory,new_val->DataDirectory)!=0)) ||
- (!old->DataDirectory && new_val->DataDirectory)) {
- log_fn(LOG_WARN,"During reload, changing DataDirectory (%s->%s) is not allowed. Failing.", old->DataDirectory, new_val->DataDirectory);
- return -1;
- }
- return 0;
- }
- #ifdef MS_WINDOWS
- /** Return the directory on windows where we expect to find our application
- * data. */
- static char *get_windows_conf_root(void)
- {
- static int is_set = 0;
- static char path[MAX_PATH+1];
- LPITEMIDLIST idl;
- IMalloc *m;
- HRESULT result;
- if (is_set)
- return path;
- /* Find X:\documents and settings\username\applicatation data\ .
- * We would use SHGetSpecialFolder path, but that wasn't added until IE4.
- */
- if (!SUCCEEDED(SHGetSpecialFolderLocation(NULL, CSIDL_APPDATA,
- &idl))) {
- GetCurrentDirectory(MAX_PATH, path);
- is_set = 1;
- log_fn(LOG_WARN, "I couldn't find your application data folder: are you running an ancient version of Windows 95? Defaulting to '%s'", path);
- return path;
- }
- /* Convert the path from an "ID List" (whatever that is!) to a path. */
- result = SHGetPathFromIDList(idl, path);
- /* Now we need to free the */
- SHGetMalloc(&m);
- if (m) {
- m->lpVtbl->Free(m, idl);
- m->lpVtbl->Release(m);
- }
- if (!SUCCEEDED(result)) {
- return NULL;
- }
- strlcat(path,"\\tor",MAX_PATH);
- is_set = 1;
- return path;
- }
- #endif
- /** Return the default location for our torrc file. */
- static char *
- get_default_conf_file(void)
- {
- #ifdef MS_WINDOWS
- char *path = tor_malloc(MAX_PATH);
- strlcpy(path, get_windows_conf_root(), MAX_PATH);
- strlcat(path,"\\torrc",MAX_PATH);
- return path;
- #else
- return tor_strdup(CONFDIR "/torrc");
- #endif
- }
- /** Verify whether lst is a string containing valid-looking space-separated
- * nicknames, or NULL. Return 0 on success. Warn and return -1 on failure.
- */
- static int check_nickname_list(const char *lst, const char *name)
- {
- int r = 0;
- smartlist_t *sl;
- if (!lst)
- return 0;
- sl = smartlist_create();
- smartlist_split_string(sl, lst, ",", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
- SMARTLIST_FOREACH(sl, const char *, s,
- {
- if (!is_legal_nickname_or_hexdigest(s)) {
- log_fn(LOG_WARN, "Invalid nickname '%s' in %s line", s, name);
- r = -1;
- }
- });
- SMARTLIST_FOREACH(sl, char *, s, tor_free(s));
- smartlist_free(sl);
- return r;
- }
- /** 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.
- * Return 0 if success, -1 if failure. */
- int
- init_from_config(int argc, char **argv)
- {
- or_options_t *oldoptions, *newoptions;
- struct config_line_t *cl;
- char *cf=NULL, *fname=NULL;
- int i, retval;
- int using_default_torrc;
- static char **backup_argv;
- static int backup_argc;
- if (argv) { /* first time we're called. save commandline args */
- backup_argv = argv;
- backup_argc = argc;
- oldoptions = NULL;
- } else { /* we're reloading. need to clean up old options first. */
- argv = backup_argv;
- argc = backup_argc;
- oldoptions = get_options();
- }
- if (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1],"--help"))) {
- print_usage();
- exit(0);
- }
- if (argc > 1 && (!strcmp(argv[1],"--version"))) {
- printf("Tor version %s.\n",VERSION);
- exit(0);
- }
- newoptions = tor_malloc_zero(sizeof(or_options_t));
- options_init(newoptions);
- /* learn config file name, get config lines, assign them */
- fname = NULL;
- using_default_torrc = 1;
- newoptions->command = CMD_RUN_TOR;
- for (i = 1; i < argc; ++i) {
- if (i < argc-1 && !strcmp(argv[i],"-f")) {
- if (fname) {
- log(LOG_WARN, "Duplicate -f options on command line.");
- tor_free(fname);
- }
- fname = tor_strdup(argv[i+1]);
- using_default_torrc = 0;
- ++i;
- } else if (!strcmp(argv[i],"--list-fingerprint")) {
- newoptions->command = CMD_LIST_FINGERPRINT;
- } else if (!strcmp(argv[i],"--hash-password")) {
- newoptions->command = CMD_HASH_PASSWORD;
- newoptions->command_arg = tor_strdup( (i < argc-1) ? argv[i+1] : "");
- ++i;
- }
- }
- if (using_default_torrc) {
- /* didn't find one, try CONFDIR */
- char *fn;
- fn = get_default_conf_file();
- if (fn && file_status(fn) == FN_FILE) {
- fname = fn;
- } else {
- tor_free(fn);
- fn = expand_filename("~/.torrc");
- if (fn && file_status(fn) == FN_FILE) {
- fname = fn;
- } else {
- tor_free(fn);
- fname = get_default_conf_file();
- }
- }
- }
- tor_assert(fname);
- log(LOG_DEBUG, "Opening config file '%s'", fname);
- cf = read_file_to_str(fname, 0);
- if (!cf) {
- if (using_default_torrc == 1) {
- log(LOG_NOTICE, "Configuration file '%s' not present, "
- "using reasonable defaults.", fname);
- tor_free(fname);
- } else {
- log(LOG_WARN, "Unable to open configuration file '%s'.", fname);
- tor_free(fname);
- goto err;
- }
- } else { /* it opened successfully. use it. */
- tor_free(fname);
- retval = config_get_lines(cf, &cl);
- tor_free(cf);
- if (retval < 0)
- goto err;
- retval = config_assign(newoptions, cl, 0);
- config_free_lines(cl);
- if (retval < 0)
- goto err;
- }
- /* Go through command-line variables too */
- cl = config_get_commandlines(argc,argv);
- retval = config_assign(newoptions,cl,0);
- config_free_lines(cl);
- if (retval < 0)
- goto err;
- /* Validate newoptions */
- if (options_validate(newoptions) < 0)
- goto err;
- if (options_transition_allowed(oldoptions, newoptions) < 0)
- goto err;
- set_options(newoptions); /* frees and replaces old options */
- if (options_act() < 0) { /* acting on them failed. die. */
- log_fn(LOG_ERR,"Acting on config options left us in a broken state. Dying.");
- exit(1);
- }
- return 0;
- err:
- options_free(newoptions);
- return -1;
- }
- /** If <b>range</b> is of the form MIN-MAX, for MIN and MAX both
- * recognized log severity levels, set *<b>min_out</b> to MIN and
- * *<b>max_out</b> to MAX and return 0. Else, if <b>range<b> is of
- * the form MIN, act as if MIN-err had been specified. Else, warn and
- * return -1.
- */
- static int
- parse_log_severity_range(const char *range, int *min_out, int *max_out)
- {
- int levelMin, levelMax;
- const char *cp;
- cp = strchr(range, '-');
- if (cp) {
- if (cp == range) {
- levelMin = LOG_DEBUG;
- } else {
- char *tmp_sev = tor_strndup(range, cp - range);
- levelMin = parse_log_level(tmp_sev);
- if (levelMin < 0) {
- log_fn(LOG_WARN, "Unrecognized log severity '%s': must be one of "
- "err|warn|notice|info|debug", tmp_sev);
- tor_free(tmp_sev);
- return -1;
- }
- tor_free(tmp_sev);
- }
- if (!*(cp+1)) {
- levelMax = LOG_ERR;
- } else {
- levelMax = parse_log_level(cp+1);
- if (levelMax < 0) {
- log_fn(LOG_WARN, "Unrecognized log severity '%s': must be one of "
- "err|warn|notice|info|debug", cp+1);
- return -1;
- }
- }
- } else {
- levelMin = parse_log_level(range);
- if (levelMin < 0) {
- log_fn(LOG_WARN, "Unrecognized log severity '%s': must be one of "
- "err|warn|notice|info|debug", range);
- return -1;
- }
- levelMax = LOG_ERR;
- }
- *min_out = levelMin;
- *max_out = levelMax;
- return 0;
- }
- /** Try to convert a pair of old-style logging options [LogLevel, and
- * (LogFile/Syslog)] to a new-style option, and add the new option to
- * options->Logs. */
- static int
- convert_log_option(or_options_t *options, struct config_line_t *level_opt,
- struct config_line_t *file_opt, int isDaemon)
- {
- int levelMin = -1, levelMax = -1;
- if (level_opt) {
- if (parse_log_severity_range(level_opt->value, &levelMin, &levelMax))
- return -1;
- }
- if (levelMin < 0 && levelMax < 0) {
- levelMin = LOG_NOTICE;
- levelMax = LOG_ERR;
- } else if (levelMin < 0) {
- levelMin = levelMax;
- } else {
- levelMax = LOG_ERR;
- }
- if (file_opt && !strcasecmp(file_opt->key, "LogFile")) {
- if (add_single_log_option(options, levelMin, levelMax, "file", file_opt->value) < 0) {
- log_fn(LOG_WARN, "Cannot write to LogFile '%s': %s.", file_opt->value,
- strerror(errno));
- return -1;
- }
- } else if (file_opt && !strcasecmp(file_opt->key, "SysLog")) {
- if (add_single_log_option(options, levelMin, levelMax, "syslog", NULL) < 0)
- return -1;
- } else if (!isDaemon) {
- add_single_log_option(options, levelMin, levelMax, "stdout", NULL);
- }
- return 0;
- }
- /**
- * Initialize the logs based on the configuration file.
- */
- int
- config_init_logs(or_options_t *options)
- {
- struct config_line_t *opt;
- int ok;
- smartlist_t *elts;
- ok = 1;
- elts = smartlist_create();
- for (opt = options->Logs; opt; opt = opt->next) {
- int levelMin=LOG_DEBUG, levelMax=LOG_ERR;
- smartlist_split_string(elts, opt->value, " ",
- SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3);
- if (smartlist_len(elts) == 0) {
- log_fn(LOG_WARN, "Bad syntax on Log option 'Log %s'", opt->value);
- ok = 0; goto cleanup;
- }
- if (parse_log_severity_range(smartlist_get(elts,0), &levelMin, &levelMax)) {
- ok = 0; goto cleanup;
- }
- if (smartlist_len(elts) < 2) { /* only loglevels were provided */
- add_stream_log(levelMin, levelMax, "<stdout>", stdout);
- goto cleanup;
- }
- if (!strcasecmp(smartlist_get(elts,1), "file")) {
- if (smartlist_len(elts) != 3) {
- log_fn(LOG_WARN, "Bad syntax on Log option 'Log %s'", opt->value);
- ok = 0; goto cleanup;
- }
- add_file_log(levelMin, levelMax, smartlist_get(elts, 2));
- goto cleanup;
- }
- if (smartlist_len(elts) != 2) {
- log_fn(LOG_WARN, "Bad syntax on Log option 'Log %s'", opt->value);
- ok = 0; goto cleanup;
- }
- if (!strcasecmp(smartlist_get(elts,1), "stdout")) {
- add_stream_log(levelMin, levelMax, "<stdout>", stdout);
- close_temp_logs();
- } else if (!strcasecmp(smartlist_get(elts,1), "stderr")) {
- add_stream_log(levelMin, levelMax, "<stderr>", stderr);
- close_temp_logs();
- } else if (!strcasecmp(smartlist_get(elts,1), "syslog")) {
- #ifdef HAVE_SYSLOG_H
- add_syslog_log(levelMin, levelMax);
- #else
- log_fn(LOG_WARN, "Syslog is not supported in this compilation.");
- #endif
- }
- cleanup:
- SMARTLIST_FOREACH(elts, char*, cp, tor_free(cp));
- smartlist_clear(elts);
- }
- smartlist_free(elts);
- close_temp_logs();
- return ok?0:-1;
- }
- /** Add a single option of the form Log min-max <type> [fname] to options. */
- static int
- add_single_log_option(or_options_t *options, int minSeverity, int maxSeverity,
- const char *type, const char *fname)
- {
- char buf[512];
- int n;
- n = tor_snprintf(buf, sizeof(buf), "%s-%s %s%s%s",
- log_level_to_string(minSeverity),
- log_level_to_string(maxSeverity),
- type, fname?" ":"", fname?fname:"");
- if (n<0) {
- log_fn(LOG_WARN, "Normalized log option too long.");
- return -1;
- }
- log_fn(LOG_WARN, "The old LogLevel/LogFile/DebugLogFile/SysLog options are deprecated, and will go away soon. New format: 'Log %s'", buf);
- options->Logs = config_line_prepend(options->Logs, "Log", buf);
- return 0;
- }
- /** Convert all old-style logging options to new-style Log options. Return 0
- * on success, -1 on faulure. */
- static int
- normalize_log_options(or_options_t *options)
- {
- /* The order of options is: Level? (File Level?)+
- */
- struct config_line_t *opt = options->OldLogOptions;
- /* Special case for if first option is LogLevel. */
- if (opt && !strcasecmp(opt->key, "LogLevel")) {
- if (opt->next && (!strcasecmp(opt->next->key, "LogFile") ||
- !strcasecmp(opt->next->key, "SysLog"))) {
- if (convert_log_option(options, opt, opt->next, options->RunAsDaemon) < 0)
- return -1;
- opt = opt->next->next;
- } else if (!opt->next) {
- if (convert_log_option(options, opt, NULL, options->RunAsDaemon) < 0)
- return -1;
- opt = opt->next;
- } else {
- ; /* give warning below */
- }
- }
- while (opt) {
- if (!strcasecmp(opt->key, "LogLevel")) {
- log_fn(LOG_WARN, "Two LogLevel options in a row without intervening LogFile or SysLog");
- opt = opt->next;
- } else {
- tor_assert(!strcasecmp(opt->key, "LogFile") ||
- !strcasecmp(opt->key, "SysLog"));
- if (opt->next && !strcasecmp(opt->next->key, "LogLevel")) {
- /* LogFile/SysLog followed by LogLevel */
- if (convert_log_option(options,opt->next,opt, options->RunAsDaemon) < 0)
- return -1;
- opt = opt->next->next;
- } else {
- /* LogFile/SysLog followed by LogFile/SysLog or end of list. */
- if (convert_log_option(options,NULL, opt, options->RunAsDaemon) < 0)
- return -1;
- opt = opt->next;
- }
- }
- }
- if (options->DebugLogFile) {
- if (add_single_log_option(options, LOG_DEBUG, LOG_ERR, "file", options->DebugLogFile) < 0)
- return -1;
- }
- tor_free(options->DebugLogFile);
- config_free_lines(options->OldLogOptions);
- options->OldLogOptions = NULL;
- return 0;
- }
- /**
- * Given a linked list of config lines containing "allow" and "deny" tokens,
- * parse them and place the result in <b>dest</b>. Skip malformed lines.
- */
- void
- config_parse_exit_policy(struct config_line_t *cfg,
- struct exit_policy_t **dest)
- {
- struct exit_policy_t **nextp;
- smartlist_t *entries;
- if (!cfg)
- return;
- nextp = dest;
- while (*nextp)
- nextp = &((*nextp)->next);
- entries = smartlist_create();
- for (; cfg; cfg = cfg->next) {
- smartlist_split_string(entries, cfg->value, ",", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
- SMARTLIST_FOREACH(entries, const char *, ent,
- {
- log_fn(LOG_DEBUG,"Adding new entry '%s'",ent);
- *nextp = router_parse_exit_policy_from_string(ent);
- if (*nextp) {
- nextp = &((*nextp)->next);
- } else {
- log_fn(LOG_WARN,"Malformed exit policy %s; skipping.", ent);
- }
- });
- SMARTLIST_FOREACH(entries, char *, ent, tor_free(ent));
- smartlist_clear(entries);
- }
- smartlist_free(entries);
- }
- /** Release all storage held by <b>p</b> */
- void
- exit_policy_free(struct exit_policy_t *p) {
- struct exit_policy_t *e;
- while (p) {
- e = p;
- p = p->next;
- tor_free(e->string);
- tor_free(e);
- }
- }
- /** Parse a single RedirectExit line's contents from <b>line</b>. If they are
- * valid, add an element to <b>options</b>->RedirectExitList and return 0.
- * Else return -1. */
- static int
- parse_redirect_line(or_options_t *options, struct config_line_t *line)
- {
- smartlist_t *elements = NULL;
- exit_redirect_t *r;
- tor_assert(options);
- tor_assert(options->RedirectExitList);
- tor_assert(line);
- r = tor_malloc_zero(sizeof(exit_redirect_t));
- elements = smartlist_create();
- smartlist_split_string(elements, line->value, " ",
- SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
- if (smartlist_len(elements) != 2) {
- log_fn(LOG_WARN, "Wrong number of elements in RedirectExit line");
- goto err;
- }
- if (parse_addr_and_port_range(smartlist_get(elements,0),&r->addr,&r->mask,
- &r->port_min,&r->port_max)) {
- log_fn(LOG_WARN, "Error parsing source address in RedirectExit line");
- goto err;
- }
- if (0==strcasecmp(smartlist_get(elements,1), "pass")) {
- r->is_redirect = 0;
- } else {
- if (parse_addr_port(smartlist_get(elements,1),NULL,&r->addr_dest,
- &r->port_dest)) {
- log_fn(LOG_WARN, "Error parsing dest address in RedirectExit line");
- goto err;
- }
- r->is_redirect = 1;
- }
- goto done;
- err:
- tor_free(r);
- done:
- SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
- smartlist_free(elements);
- if (r) {
- smartlist_add(options->RedirectExitList, r);
- return 0;
- } else {
- return -1;
- }
- }
- /** Read the contents of a DirServer line from <b>line</b>. Return 0
- * if the line is well-formed, and 0 if it isn't. If
- * <b>validate_only</b> is 0, and the line is well-formed, then add
- * the dirserver desribed in the line as a valid server. */
- static int
- parse_dir_server_line(const char *line, int validate_only)
- {
- smartlist_t *items = NULL;
- int r;
- char *addrport, *address=NULL;
- uint16_t port;
- char digest[DIGEST_LEN];
- items = smartlist_create();
- smartlist_split_string(items, line, " ",
- SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 2);
- if (smartlist_len(items) < 2) {
- log_fn(LOG_WARN, "Too few arguments to DirServer line.");
- goto err;
- }
- addrport = smartlist_get(items, 0);
- if (parse_addr_port(addrport, &address, NULL, &port)<0) {
- log_fn(LOG_WARN, "Error parsing DirServer address '%s'", addrport);
- goto err;
- }
- if (!port) {
- log_fn(LOG_WARN, "Missing port in DirServe address '%s'",addrport);
- goto err;
- }
- tor_strstrip(smartlist_get(items, 1), " ");
- if (strlen(smartlist_get(items, 1)) != HEX_DIGEST_LEN) {
- log_fn(LOG_WARN, "Key digest for DirServer is wrong length.");
- goto err;
- }
- if (base16_decode(digest, DIGEST_LEN,
- smartlist_get(items,1), HEX_DIGEST_LEN)<0) {
- log_fn(LOG_WARN, "Unable to decode DirServer key digest.");
- goto err;
- }
- if (!validate_only) {
- log_fn(LOG_DEBUG, "Trusted dirserver at %s:%d (%s)", address, (int)port,
- (char*)smartlist_get(items,1));
- add_trusted_dir_server(address, port, digest);
- }
- r = 0;
- goto done;
- err:
- r = -1;
- done:
- SMARTLIST_FOREACH(items, char*, s, tor_free(s));
- smartlist_free(items);
- tor_free(address);
- return r;
- }
- /** Return the place where we are currently configured to store and read all
- * of our persistant data. */
- const char *
- get_data_directory(void)
- {
- return get_options()->DataDirectory;
- }
- static int
- validate_data_directory(or_options_t *options) {
- const char *d = options->DataDirectory;
- if (!options->DataDirectory) {
- #ifdef MS_WINDOWS
- char *p;
- p = tor_malloc(MAX_PATH);
- strlcpy(p,get_windows_conf_root(),MAX_PATH);
- options->DataDirectory = p;
- return p;
- #else
- d = "~/.tor";
- }
- #endif
- if (d && strncmp(d,"~/",2) == 0) {
- char *fn = expand_filename(d);
- if (!fn) {
- log_fn(LOG_ERR,"Failed to expand filename '%s'. Exiting.", d);
- exit(1);
- }
- tor_free(options->DataDirectory);
- options->DataDirectory = fn;
- }
- return 0;
- }
- /*
- Local Variables:
- mode:c
- indent-tabs-mode:nil
- c-basic-offset:2
- End:
- */
|