router.c 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2011, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #define ROUTER_PRIVATE
  7. #include "or.h"
  8. #include "circuitlist.h"
  9. #include "circuituse.h"
  10. #include "config.h"
  11. #include "connection.h"
  12. #include "control.h"
  13. #include "directory.h"
  14. #include "dirserv.h"
  15. #include "dns.h"
  16. #include "geoip.h"
  17. #include "hibernate.h"
  18. #include "main.h"
  19. #include "networkstatus.h"
  20. #include "policies.h"
  21. #include "relay.h"
  22. #include "rephist.h"
  23. #include "router.h"
  24. #include "routerlist.h"
  25. #include "routerparse.h"
  26. /**
  27. * \file router.c
  28. * \brief OR functionality, including key maintenance, generating
  29. * and uploading server descriptors, retrying OR connections.
  30. **/
  31. extern long stats_n_seconds_working;
  32. /************************************************************/
  33. /*****
  34. * Key management: ORs only.
  35. *****/
  36. /** Private keys for this OR. There is also an SSL key managed by tortls.c.
  37. */
  38. static tor_mutex_t *key_lock=NULL;
  39. static time_t onionkey_set_at=0; /**< When was onionkey last changed? */
  40. /** Current private onionskin decryption key: used to decode CREATE cells. */
  41. static crypto_pk_env_t *onionkey=NULL;
  42. /** Previous private onionskin decryption key: used to decode CREATE cells
  43. * generated by clients that have an older version of our descriptor. */
  44. static crypto_pk_env_t *lastonionkey=NULL;
  45. /** Private server "identity key": used to sign directory info and TLS
  46. * certificates. Never changes. */
  47. static crypto_pk_env_t *server_identitykey=NULL;
  48. /** Digest of server_identitykey. */
  49. static char server_identitykey_digest[DIGEST_LEN];
  50. /** Private client "identity key": used to sign bridges' and clients'
  51. * outbound TLS certificates. Regenerated on startup and on IP address
  52. * change. */
  53. static crypto_pk_env_t *client_identitykey=NULL;
  54. /** Signing key used for v3 directory material; only set for authorities. */
  55. static crypto_pk_env_t *authority_signing_key = NULL;
  56. /** Key certificate to authenticate v3 directory material; only set for
  57. * authorities. */
  58. static authority_cert_t *authority_key_certificate = NULL;
  59. /** For emergency V3 authority key migration: An extra signing key that we use
  60. * with our old (obsolete) identity key for a while. */
  61. static crypto_pk_env_t *legacy_signing_key = NULL;
  62. /** For emergency V3 authority key migration: An extra certificate to
  63. * authenticate legacy_signing_key with our obsolete identity key.*/
  64. static authority_cert_t *legacy_key_certificate = NULL;
  65. /* (Note that v3 authorities also have a separate "authority identity key",
  66. * but this key is never actually loaded by the Tor process. Instead, it's
  67. * used by tor-gencert to sign new signing keys and make new key
  68. * certificates. */
  69. /** Replace the current onion key with <b>k</b>. Does not affect
  70. * lastonionkey; to update lastonionkey correctly, call rotate_onion_key().
  71. */
  72. static void
  73. set_onion_key(crypto_pk_env_t *k)
  74. {
  75. tor_mutex_acquire(key_lock);
  76. crypto_free_pk_env(onionkey);
  77. onionkey = k;
  78. onionkey_set_at = time(NULL);
  79. tor_mutex_release(key_lock);
  80. mark_my_descriptor_dirty();
  81. }
  82. /** Return the current onion key. Requires that the onion key has been
  83. * loaded or generated. */
  84. crypto_pk_env_t *
  85. get_onion_key(void)
  86. {
  87. tor_assert(onionkey);
  88. return onionkey;
  89. }
  90. /** Store a full copy of the current onion key into *<b>key</b>, and a full
  91. * copy of the most recent onion key into *<b>last</b>.
  92. */
  93. void
  94. dup_onion_keys(crypto_pk_env_t **key, crypto_pk_env_t **last)
  95. {
  96. tor_assert(key);
  97. tor_assert(last);
  98. tor_mutex_acquire(key_lock);
  99. tor_assert(onionkey);
  100. *key = crypto_pk_copy_full(onionkey);
  101. if (lastonionkey)
  102. *last = crypto_pk_copy_full(lastonionkey);
  103. else
  104. *last = NULL;
  105. tor_mutex_release(key_lock);
  106. }
  107. /** Return the time when the onion key was last set. This is either the time
  108. * when the process launched, or the time of the most recent key rotation since
  109. * the process launched.
  110. */
  111. time_t
  112. get_onion_key_set_at(void)
  113. {
  114. return onionkey_set_at;
  115. }
  116. /** Set the current server identity key to <b>k</b>.
  117. */
  118. void
  119. set_server_identity_key(crypto_pk_env_t *k)
  120. {
  121. crypto_free_pk_env(server_identitykey);
  122. server_identitykey = k;
  123. crypto_pk_get_digest(server_identitykey, server_identitykey_digest);
  124. }
  125. /** Make sure that we have set up our identity keys to match or not match as
  126. * appropriate, and die with an assertion if we have not. */
  127. static void
  128. assert_identity_keys_ok(void)
  129. {
  130. tor_assert(client_identitykey);
  131. if (public_server_mode(get_options())) {
  132. /* assert that we have set the client and server keys to be equal */
  133. tor_assert(server_identitykey);
  134. tor_assert(0==crypto_pk_cmp_keys(client_identitykey, server_identitykey));
  135. } else {
  136. /* assert that we have set the client and server keys to be unequal */
  137. if (server_identitykey)
  138. tor_assert(0!=crypto_pk_cmp_keys(client_identitykey,
  139. server_identitykey));
  140. }
  141. }
  142. /** Returns the current server identity key; requires that the key has
  143. * been set, and that we are running as a Tor server.
  144. */
  145. crypto_pk_env_t *
  146. get_server_identity_key(void)
  147. {
  148. tor_assert(server_identitykey);
  149. tor_assert(server_mode(get_options()));
  150. assert_identity_keys_ok();
  151. return server_identitykey;
  152. }
  153. /** Return true iff the server identity key has been set. */
  154. int
  155. server_identity_key_is_set(void)
  156. {
  157. return server_identitykey != NULL;
  158. }
  159. /** Set the current client identity key to <b>k</b>.
  160. */
  161. void
  162. set_client_identity_key(crypto_pk_env_t *k)
  163. {
  164. crypto_free_pk_env(client_identitykey);
  165. client_identitykey = k;
  166. }
  167. /** Returns the current client identity key for use on outgoing TLS
  168. * connections; requires that the key has been set.
  169. */
  170. crypto_pk_env_t *
  171. get_tlsclient_identity_key(void)
  172. {
  173. tor_assert(client_identitykey);
  174. assert_identity_keys_ok();
  175. return client_identitykey;
  176. }
  177. /** Return true iff the client identity key has been set. */
  178. int
  179. client_identity_key_is_set(void)
  180. {
  181. return client_identitykey != NULL;
  182. }
  183. /** Return the key certificate for this v3 (voting) authority, or NULL
  184. * if we have no such certificate. */
  185. authority_cert_t *
  186. get_my_v3_authority_cert(void)
  187. {
  188. return authority_key_certificate;
  189. }
  190. /** Return the v3 signing key for this v3 (voting) authority, or NULL
  191. * if we have no such key. */
  192. crypto_pk_env_t *
  193. get_my_v3_authority_signing_key(void)
  194. {
  195. return authority_signing_key;
  196. }
  197. /** If we're an authority, and we're using a legacy authority identity key for
  198. * emergency migration purposes, return the certificate associated with that
  199. * key. */
  200. authority_cert_t *
  201. get_my_v3_legacy_cert(void)
  202. {
  203. return legacy_key_certificate;
  204. }
  205. /** If we're an authority, and we're using a legacy authority identity key for
  206. * emergency migration purposes, return that key. */
  207. crypto_pk_env_t *
  208. get_my_v3_legacy_signing_key(void)
  209. {
  210. return legacy_signing_key;
  211. }
  212. /** Replace the previous onion key with the current onion key, and generate
  213. * a new previous onion key. Immediately after calling this function,
  214. * the OR should:
  215. * - schedule all previous cpuworkers to shut down _after_ processing
  216. * pending work. (This will cause fresh cpuworkers to be generated.)
  217. * - generate and upload a fresh routerinfo.
  218. */
  219. void
  220. rotate_onion_key(void)
  221. {
  222. char *fname, *fname_prev;
  223. crypto_pk_env_t *prkey;
  224. or_state_t *state = get_or_state();
  225. time_t now;
  226. fname = get_datadir_fname2("keys", "secret_onion_key");
  227. fname_prev = get_datadir_fname2("keys", "secret_onion_key.old");
  228. if (!(prkey = crypto_new_pk_env())) {
  229. log_err(LD_GENERAL,"Error constructing rotated onion key");
  230. goto error;
  231. }
  232. if (crypto_pk_generate_key(prkey)) {
  233. log_err(LD_BUG,"Error generating onion key");
  234. goto error;
  235. }
  236. if (file_status(fname) == FN_FILE) {
  237. if (replace_file(fname, fname_prev))
  238. goto error;
  239. }
  240. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  241. log_err(LD_FS,"Couldn't write generated onion key to \"%s\".", fname);
  242. goto error;
  243. }
  244. log_info(LD_GENERAL, "Rotating onion key");
  245. tor_mutex_acquire(key_lock);
  246. crypto_free_pk_env(lastonionkey);
  247. lastonionkey = onionkey;
  248. onionkey = prkey;
  249. now = time(NULL);
  250. state->LastRotatedOnionKey = onionkey_set_at = now;
  251. tor_mutex_release(key_lock);
  252. mark_my_descriptor_dirty();
  253. or_state_mark_dirty(state, get_options()->AvoidDiskWrites ? now+3600 : 0);
  254. goto done;
  255. error:
  256. log_warn(LD_GENERAL, "Couldn't rotate onion key.");
  257. if (prkey)
  258. crypto_free_pk_env(prkey);
  259. done:
  260. tor_free(fname);
  261. tor_free(fname_prev);
  262. }
  263. /** Try to read an RSA key from <b>fname</b>. If <b>fname</b> doesn't exist
  264. * and <b>generate</b> is true, create a new RSA key and save it in
  265. * <b>fname</b>. Return the read/created key, or NULL on error. Log all
  266. * errors at level <b>severity</b>.
  267. */
  268. crypto_pk_env_t *
  269. init_key_from_file(const char *fname, int generate, int severity)
  270. {
  271. crypto_pk_env_t *prkey = NULL;
  272. if (!(prkey = crypto_new_pk_env())) {
  273. log(severity, LD_GENERAL,"Error constructing key");
  274. goto error;
  275. }
  276. switch (file_status(fname)) {
  277. case FN_DIR:
  278. case FN_ERROR:
  279. log(severity, LD_FS,"Can't read key from \"%s\"", fname);
  280. goto error;
  281. case FN_NOENT:
  282. if (generate) {
  283. if (!have_lockfile()) {
  284. if (try_locking(get_options(), 0)<0) {
  285. /* Make sure that --list-fingerprint only creates new keys
  286. * if there is no possibility for a deadlock. */
  287. log(severity, LD_FS, "Another Tor process has locked \"%s\". Not "
  288. "writing any new keys.", fname);
  289. /*XXXX The 'other process' might make a key in a second or two;
  290. * maybe we should wait for it. */
  291. goto error;
  292. }
  293. }
  294. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  295. fname);
  296. if (crypto_pk_generate_key(prkey)) {
  297. log(severity, LD_GENERAL,"Error generating onion key");
  298. goto error;
  299. }
  300. if (crypto_pk_check_key(prkey) <= 0) {
  301. log(severity, LD_GENERAL,"Generated key seems invalid");
  302. goto error;
  303. }
  304. log_info(LD_GENERAL, "Generated key seems valid");
  305. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  306. log(severity, LD_FS,
  307. "Couldn't write generated key to \"%s\".", fname);
  308. goto error;
  309. }
  310. } else {
  311. log_info(LD_GENERAL, "No key found in \"%s\"", fname);
  312. }
  313. return prkey;
  314. case FN_FILE:
  315. if (crypto_pk_read_private_key_from_filename(prkey, fname)) {
  316. log(severity, LD_GENERAL,"Error loading private key.");
  317. goto error;
  318. }
  319. return prkey;
  320. default:
  321. tor_assert(0);
  322. }
  323. error:
  324. if (prkey)
  325. crypto_free_pk_env(prkey);
  326. return NULL;
  327. }
  328. /** Try to load the vote-signing private key and certificate for being a v3
  329. * directory authority, and make sure they match. If <b>legacy</b>, load a
  330. * legacy key/cert set for emergency key migration; otherwise load the regular
  331. * key/cert set. On success, store them into *<b>key_out</b> and
  332. * *<b>cert_out</b> respectively, and return 0. On failure, return -1. */
  333. static int
  334. load_authority_keyset(int legacy, crypto_pk_env_t **key_out,
  335. authority_cert_t **cert_out)
  336. {
  337. int r = -1;
  338. char *fname = NULL, *cert = NULL;
  339. const char *eos = NULL;
  340. crypto_pk_env_t *signing_key = NULL;
  341. authority_cert_t *parsed = NULL;
  342. fname = get_datadir_fname2("keys",
  343. legacy ? "legacy_signing_key" : "authority_signing_key");
  344. signing_key = init_key_from_file(fname, 0, LOG_INFO);
  345. if (!signing_key) {
  346. log_warn(LD_DIR, "No version 3 directory key found in %s", fname);
  347. goto done;
  348. }
  349. tor_free(fname);
  350. fname = get_datadir_fname2("keys",
  351. legacy ? "legacy_certificate" : "authority_certificate");
  352. cert = read_file_to_str(fname, 0, NULL);
  353. if (!cert) {
  354. log_warn(LD_DIR, "Signing key found, but no certificate found in %s",
  355. fname);
  356. goto done;
  357. }
  358. parsed = authority_cert_parse_from_string(cert, &eos);
  359. if (!parsed) {
  360. log_warn(LD_DIR, "Unable to parse certificate in %s", fname);
  361. goto done;
  362. }
  363. if (crypto_pk_cmp_keys(signing_key, parsed->signing_key) != 0) {
  364. log_warn(LD_DIR, "Stored signing key does not match signing key in "
  365. "certificate");
  366. goto done;
  367. }
  368. crypto_free_pk_env(*key_out);
  369. authority_cert_free(*cert_out);
  370. *key_out = signing_key;
  371. *cert_out = parsed;
  372. r = 0;
  373. signing_key = NULL;
  374. parsed = NULL;
  375. done:
  376. tor_free(fname);
  377. tor_free(cert);
  378. crypto_free_pk_env(signing_key);
  379. authority_cert_free(parsed);
  380. return r;
  381. }
  382. /** Load the v3 (voting) authority signing key and certificate, if they are
  383. * present. Return -1 if anything is missing, mismatched, or unloadable;
  384. * return 0 on success. */
  385. static int
  386. init_v3_authority_keys(void)
  387. {
  388. if (load_authority_keyset(0, &authority_signing_key,
  389. &authority_key_certificate)<0)
  390. return -1;
  391. if (get_options()->V3AuthUseLegacyKey &&
  392. load_authority_keyset(1, &legacy_signing_key,
  393. &legacy_key_certificate)<0)
  394. return -1;
  395. return 0;
  396. }
  397. /** If we're a v3 authority, check whether we have a certificate that's
  398. * likely to expire soon. Warn if we do, but not too often. */
  399. void
  400. v3_authority_check_key_expiry(void)
  401. {
  402. time_t now, expires;
  403. static time_t last_warned = 0;
  404. int badness, time_left, warn_interval;
  405. if (!authdir_mode_v3(get_options()) || !authority_key_certificate)
  406. return;
  407. now = time(NULL);
  408. expires = authority_key_certificate->expires;
  409. time_left = (int)( expires - now );
  410. if (time_left <= 0) {
  411. badness = LOG_ERR;
  412. warn_interval = 60*60;
  413. } else if (time_left <= 24*60*60) {
  414. badness = LOG_WARN;
  415. warn_interval = 60*60;
  416. } else if (time_left <= 24*60*60*7) {
  417. badness = LOG_WARN;
  418. warn_interval = 24*60*60;
  419. } else if (time_left <= 24*60*60*30) {
  420. badness = LOG_WARN;
  421. warn_interval = 24*60*60*5;
  422. } else {
  423. return;
  424. }
  425. if (last_warned + warn_interval > now)
  426. return;
  427. if (time_left <= 0) {
  428. log(badness, LD_DIR, "Your v3 authority certificate has expired."
  429. " Generate a new one NOW.");
  430. } else if (time_left <= 24*60*60) {
  431. log(badness, LD_DIR, "Your v3 authority certificate expires in %d hours;"
  432. " Generate a new one NOW.", time_left/(60*60));
  433. } else {
  434. log(badness, LD_DIR, "Your v3 authority certificate expires in %d days;"
  435. " Generate a new one soon.", time_left/(24*60*60));
  436. }
  437. last_warned = now;
  438. }
  439. /** Initialize all OR private keys, and the TLS context, as necessary.
  440. * On OPs, this only initializes the tls context. Return 0 on success,
  441. * or -1 if Tor should die.
  442. */
  443. int
  444. init_keys(void)
  445. {
  446. char *keydir;
  447. char fingerprint[FINGERPRINT_LEN+1];
  448. /*nickname<space>fp\n\0 */
  449. char fingerprint_line[MAX_NICKNAME_LEN+FINGERPRINT_LEN+3];
  450. const char *mydesc;
  451. crypto_pk_env_t *prkey;
  452. char digest[20];
  453. char v3_digest[20];
  454. char *cp;
  455. or_options_t *options = get_options();
  456. authority_type_t type;
  457. time_t now = time(NULL);
  458. trusted_dir_server_t *ds;
  459. int v3_digest_set = 0;
  460. authority_cert_t *cert = NULL;
  461. if (!key_lock)
  462. key_lock = tor_mutex_new();
  463. /* There are a couple of paths that put us here before */
  464. if (crypto_global_init(get_options()->HardwareAccel,
  465. get_options()->AccelName,
  466. get_options()->AccelDir)) {
  467. log_err(LD_BUG, "Unable to initialize OpenSSL. Exiting.");
  468. return -1;
  469. }
  470. /* OP's don't need persistent keys; just make up an identity and
  471. * initialize the TLS context. */
  472. if (!server_mode(options)) {
  473. if (!(prkey = crypto_new_pk_env()))
  474. return -1;
  475. if (crypto_pk_generate_key(prkey)) {
  476. crypto_free_pk_env(prkey);
  477. return -1;
  478. }
  479. set_client_identity_key(prkey);
  480. /* Create a TLS context. */
  481. if (tor_tls_context_init(0,
  482. get_tlsclient_identity_key(),
  483. NULL,
  484. MAX_SSL_KEY_LIFETIME) < 0) {
  485. log_err(LD_GENERAL,"Error creating TLS context for Tor client.");
  486. return -1;
  487. }
  488. return 0;
  489. }
  490. /* Make sure DataDirectory exists, and is private. */
  491. if (check_private_dir(options->DataDirectory, CPD_CREATE)) {
  492. return -1;
  493. }
  494. /* Check the key directory. */
  495. keydir = get_datadir_fname("keys");
  496. if (check_private_dir(keydir, CPD_CREATE)) {
  497. tor_free(keydir);
  498. return -1;
  499. }
  500. tor_free(keydir);
  501. /* 1a. Read v3 directory authority key/cert information. */
  502. memset(v3_digest, 0, sizeof(v3_digest));
  503. if (authdir_mode_v3(options)) {
  504. if (init_v3_authority_keys()<0) {
  505. log_err(LD_GENERAL, "We're configured as a V3 authority, but we "
  506. "were unable to load our v3 authority keys and certificate! "
  507. "Use tor-gencert to generate them. Dying.");
  508. return -1;
  509. }
  510. cert = get_my_v3_authority_cert();
  511. if (cert) {
  512. crypto_pk_get_digest(get_my_v3_authority_cert()->identity_key,
  513. v3_digest);
  514. v3_digest_set = 1;
  515. }
  516. }
  517. /* 1b. Read identity key. Make it if none is found. */
  518. keydir = get_datadir_fname2("keys", "secret_id_key");
  519. log_info(LD_GENERAL,"Reading/making identity key \"%s\"...",keydir);
  520. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  521. tor_free(keydir);
  522. if (!prkey) return -1;
  523. set_server_identity_key(prkey);
  524. /* 1c. If we are configured as a bridge, generate a client key;
  525. * otherwise, set the server identity key as our client identity
  526. * key. */
  527. if (public_server_mode(options)) {
  528. set_client_identity_key(crypto_pk_dup_key(prkey)); /* set above */
  529. } else {
  530. if (!(prkey = crypto_new_pk_env()))
  531. return -1;
  532. if (crypto_pk_generate_key(prkey)) {
  533. crypto_free_pk_env(prkey);
  534. return -1;
  535. }
  536. set_client_identity_key(prkey);
  537. }
  538. /* 2. Read onion key. Make it if none is found. */
  539. keydir = get_datadir_fname2("keys", "secret_onion_key");
  540. log_info(LD_GENERAL,"Reading/making onion key \"%s\"...",keydir);
  541. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  542. tor_free(keydir);
  543. if (!prkey) return -1;
  544. set_onion_key(prkey);
  545. if (options->command == CMD_RUN_TOR) {
  546. /* only mess with the state file if we're actually running Tor */
  547. or_state_t *state = get_or_state();
  548. if (state->LastRotatedOnionKey > 100 && state->LastRotatedOnionKey < now) {
  549. /* We allow for some parsing slop, but we don't want to risk accepting
  550. * values in the distant future. If we did, we might never rotate the
  551. * onion key. */
  552. onionkey_set_at = state->LastRotatedOnionKey;
  553. } else {
  554. /* We have no LastRotatedOnionKey set; either we just created the key
  555. * or it's a holdover from 0.1.2.4-alpha-dev or earlier. In either case,
  556. * start the clock ticking now so that we will eventually rotate it even
  557. * if we don't stay up for a full MIN_ONION_KEY_LIFETIME. */
  558. state->LastRotatedOnionKey = onionkey_set_at = now;
  559. or_state_mark_dirty(state, options->AvoidDiskWrites ?
  560. time(NULL)+3600 : 0);
  561. }
  562. }
  563. keydir = get_datadir_fname2("keys", "secret_onion_key.old");
  564. if (!lastonionkey && file_status(keydir) == FN_FILE) {
  565. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  566. if (prkey)
  567. lastonionkey = prkey;
  568. }
  569. tor_free(keydir);
  570. /* 3. Initialize link key and TLS context. */
  571. if (tor_tls_context_init(public_server_mode(options),
  572. get_tlsclient_identity_key(),
  573. get_server_identity_key(),
  574. MAX_SSL_KEY_LIFETIME) < 0) {
  575. log_err(LD_GENERAL,"Error initializing TLS context");
  576. return -1;
  577. }
  578. /* 4. Build our router descriptor. */
  579. /* Must be called after keys are initialized. */
  580. mydesc = router_get_my_descriptor();
  581. if (authdir_mode(options)) {
  582. const char *m = NULL;
  583. routerinfo_t *ri;
  584. /* We need to add our own fingerprint so it gets recognized. */
  585. if (dirserv_add_own_fingerprint(options->Nickname,
  586. get_server_identity_key())) {
  587. log_err(LD_GENERAL,"Error adding own fingerprint to approved set");
  588. return -1;
  589. }
  590. if (mydesc) {
  591. ri = router_parse_entry_from_string(mydesc, NULL, 1, 0, NULL);
  592. if (!ri) {
  593. log_err(LD_GENERAL,"Generated a routerinfo we couldn't parse.");
  594. return -1;
  595. }
  596. if (!WRA_WAS_ADDED(dirserv_add_descriptor(ri, &m, "self"))) {
  597. log_err(LD_GENERAL,"Unable to add own descriptor to directory: %s",
  598. m?m:"<unknown error>");
  599. return -1;
  600. }
  601. }
  602. }
  603. /* 5. Dump fingerprint to 'fingerprint' */
  604. keydir = get_datadir_fname("fingerprint");
  605. log_info(LD_GENERAL,"Dumping fingerprint to \"%s\"...",keydir);
  606. if (crypto_pk_get_fingerprint(get_server_identity_key(),
  607. fingerprint, 0) < 0) {
  608. log_err(LD_GENERAL,"Error computing fingerprint");
  609. tor_free(keydir);
  610. return -1;
  611. }
  612. tor_assert(strlen(options->Nickname) <= MAX_NICKNAME_LEN);
  613. if (tor_snprintf(fingerprint_line, sizeof(fingerprint_line),
  614. "%s %s\n",options->Nickname, fingerprint) < 0) {
  615. log_err(LD_GENERAL,"Error writing fingerprint line");
  616. tor_free(keydir);
  617. return -1;
  618. }
  619. /* Check whether we need to write the fingerprint file. */
  620. cp = NULL;
  621. if (file_status(keydir) == FN_FILE)
  622. cp = read_file_to_str(keydir, 0, NULL);
  623. if (!cp || strcmp(cp, fingerprint_line)) {
  624. if (write_str_to_file(keydir, fingerprint_line, 0)) {
  625. log_err(LD_FS, "Error writing fingerprint line to file");
  626. tor_free(keydir);
  627. tor_free(cp);
  628. return -1;
  629. }
  630. }
  631. tor_free(cp);
  632. tor_free(keydir);
  633. log(LOG_NOTICE, LD_GENERAL,
  634. "Your Tor server's identity key fingerprint is '%s %s'",
  635. options->Nickname, fingerprint);
  636. if (!authdir_mode(options))
  637. return 0;
  638. /* 6. [authdirserver only] load approved-routers file */
  639. if (dirserv_load_fingerprint_file() < 0) {
  640. log_err(LD_GENERAL,"Error loading fingerprints");
  641. return -1;
  642. }
  643. /* 6b. [authdirserver only] add own key to approved directories. */
  644. crypto_pk_get_digest(get_server_identity_key(), digest);
  645. type = ((options->V1AuthoritativeDir ? V1_AUTHORITY : NO_AUTHORITY) |
  646. (options->V2AuthoritativeDir ? V2_AUTHORITY : NO_AUTHORITY) |
  647. (options->V3AuthoritativeDir ? V3_AUTHORITY : NO_AUTHORITY) |
  648. (options->BridgeAuthoritativeDir ? BRIDGE_AUTHORITY : NO_AUTHORITY) |
  649. (options->HSAuthoritativeDir ? HIDSERV_AUTHORITY : NO_AUTHORITY));
  650. ds = router_get_trusteddirserver_by_digest(digest);
  651. if (!ds) {
  652. ds = add_trusted_dir_server(options->Nickname, NULL,
  653. (uint16_t)options->DirPort,
  654. (uint16_t)options->ORPort,
  655. digest,
  656. v3_digest,
  657. type);
  658. if (!ds) {
  659. log_err(LD_GENERAL,"We want to be a directory authority, but we "
  660. "couldn't add ourselves to the authority list. Failing.");
  661. return -1;
  662. }
  663. }
  664. if (ds->type != type) {
  665. log_warn(LD_DIR, "Configured authority type does not match authority "
  666. "type in DirServer list. Adjusting. (%d v %d)",
  667. type, ds->type);
  668. ds->type = type;
  669. }
  670. if (v3_digest_set && (ds->type & V3_AUTHORITY) &&
  671. memcmp(v3_digest, ds->v3_identity_digest, DIGEST_LEN)) {
  672. log_warn(LD_DIR, "V3 identity key does not match identity declared in "
  673. "DirServer line. Adjusting.");
  674. memcpy(ds->v3_identity_digest, v3_digest, DIGEST_LEN);
  675. }
  676. if (cert) { /* add my own cert to the list of known certs */
  677. log_info(LD_DIR, "adding my own v3 cert");
  678. if (trusted_dirs_load_certs_from_string(
  679. cert->cache_info.signed_descriptor_body, 0, 0)<0) {
  680. log_warn(LD_DIR, "Unable to parse my own v3 cert! Failing.");
  681. return -1;
  682. }
  683. }
  684. return 0; /* success */
  685. }
  686. /* Keep track of whether we should upload our server descriptor,
  687. * and what type of server we are.
  688. */
  689. /** Whether we can reach our ORPort from the outside. */
  690. static int can_reach_or_port = 0;
  691. /** Whether we can reach our DirPort from the outside. */
  692. static int can_reach_dir_port = 0;
  693. /** Forget what we have learned about our reachability status. */
  694. void
  695. router_reset_reachability(void)
  696. {
  697. can_reach_or_port = can_reach_dir_port = 0;
  698. }
  699. /** Return 1 if ORPort is known reachable; else return 0. */
  700. int
  701. check_whether_orport_reachable(void)
  702. {
  703. or_options_t *options = get_options();
  704. return options->AssumeReachable ||
  705. can_reach_or_port;
  706. }
  707. /** Return 1 if we don't have a dirport configured, or if it's reachable. */
  708. int
  709. check_whether_dirport_reachable(void)
  710. {
  711. or_options_t *options = get_options();
  712. return !options->DirPort ||
  713. options->AssumeReachable ||
  714. we_are_hibernating() ||
  715. can_reach_dir_port;
  716. }
  717. /** Look at a variety of factors, and return 0 if we don't want to
  718. * advertise the fact that we have a DirPort open. Else return the
  719. * DirPort we want to advertise.
  720. *
  721. * Log a helpful message if we change our mind about whether to publish
  722. * a DirPort.
  723. */
  724. static int
  725. decide_to_advertise_dirport(or_options_t *options, uint16_t dir_port)
  726. {
  727. static int advertising=1; /* start out assuming we will advertise */
  728. int new_choice=1;
  729. const char *reason = NULL;
  730. /* Section one: reasons to publish or not publish that aren't
  731. * worth mentioning to the user, either because they're obvious
  732. * or because they're normal behavior. */
  733. if (!dir_port) /* short circuit the rest of the function */
  734. return 0;
  735. if (authdir_mode(options)) /* always publish */
  736. return dir_port;
  737. if (we_are_hibernating())
  738. return 0;
  739. if (!check_whether_dirport_reachable())
  740. return 0;
  741. /* Section two: reasons to publish or not publish that the user
  742. * might find surprising. These are generally config options that
  743. * make us choose not to publish. */
  744. if (accounting_is_enabled(options)) {
  745. /* if we might potentially hibernate */
  746. new_choice = 0;
  747. reason = "AccountingMax enabled";
  748. #define MIN_BW_TO_ADVERTISE_DIRPORT 51200
  749. } else if (options->BandwidthRate < MIN_BW_TO_ADVERTISE_DIRPORT ||
  750. (options->RelayBandwidthRate > 0 &&
  751. options->RelayBandwidthRate < MIN_BW_TO_ADVERTISE_DIRPORT)) {
  752. /* if we're advertising a small amount */
  753. new_choice = 0;
  754. reason = "BandwidthRate under 50KB";
  755. }
  756. if (advertising != new_choice) {
  757. if (new_choice == 1) {
  758. log(LOG_NOTICE, LD_DIR, "Advertising DirPort as %d", dir_port);
  759. } else {
  760. tor_assert(reason);
  761. log(LOG_NOTICE, LD_DIR, "Not advertising DirPort (Reason: %s)", reason);
  762. }
  763. advertising = new_choice;
  764. }
  765. return advertising ? dir_port : 0;
  766. }
  767. /** Some time has passed, or we just got new directory information.
  768. * See if we currently believe our ORPort or DirPort to be
  769. * unreachable. If so, launch a new test for it.
  770. *
  771. * For ORPort, we simply try making a circuit that ends at ourselves.
  772. * Success is noticed in onionskin_answer().
  773. *
  774. * For DirPort, we make a connection via Tor to our DirPort and ask
  775. * for our own server descriptor.
  776. * Success is noticed in connection_dir_client_reached_eof().
  777. */
  778. void
  779. consider_testing_reachability(int test_or, int test_dir)
  780. {
  781. routerinfo_t *me = router_get_my_routerinfo();
  782. int orport_reachable = check_whether_orport_reachable();
  783. tor_addr_t addr;
  784. if (!me)
  785. return;
  786. if (test_or && (!orport_reachable || !circuit_enough_testing_circs())) {
  787. log_info(LD_CIRC, "Testing %s of my ORPort: %s:%d.",
  788. !orport_reachable ? "reachability" : "bandwidth",
  789. me->address, me->or_port);
  790. circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, me,
  791. CIRCLAUNCH_NEED_CAPACITY|CIRCLAUNCH_IS_INTERNAL);
  792. }
  793. tor_addr_from_ipv4h(&addr, me->addr);
  794. if (test_dir && !check_whether_dirport_reachable() &&
  795. !connection_get_by_type_addr_port_purpose(
  796. CONN_TYPE_DIR, &addr, me->dir_port,
  797. DIR_PURPOSE_FETCH_SERVERDESC)) {
  798. /* ask myself, via tor, for my server descriptor. */
  799. directory_initiate_command(me->address, &addr,
  800. me->or_port, me->dir_port,
  801. 0, /* does not matter */
  802. 0, me->cache_info.identity_digest,
  803. DIR_PURPOSE_FETCH_SERVERDESC,
  804. ROUTER_PURPOSE_GENERAL,
  805. 1, "authority.z", NULL, 0, 0);
  806. }
  807. }
  808. /** Annotate that we found our ORPort reachable. */
  809. void
  810. router_orport_found_reachable(void)
  811. {
  812. if (!can_reach_or_port) {
  813. routerinfo_t *me = router_get_my_routerinfo();
  814. log_notice(LD_OR,"Self-testing indicates your ORPort is reachable from "
  815. "the outside. Excellent.%s",
  816. get_options()->_PublishServerDescriptor != NO_AUTHORITY ?
  817. " Publishing server descriptor." : "");
  818. can_reach_or_port = 1;
  819. mark_my_descriptor_dirty();
  820. if (!me) { /* should never happen */
  821. log_warn(LD_BUG, "ORPort found reachable, but I have no routerinfo "
  822. "yet. Failing to inform controller of success.");
  823. return;
  824. }
  825. control_event_server_status(LOG_NOTICE,
  826. "REACHABILITY_SUCCEEDED ORADDRESS=%s:%d",
  827. me->address, me->or_port);
  828. }
  829. }
  830. /** Annotate that we found our DirPort reachable. */
  831. void
  832. router_dirport_found_reachable(void)
  833. {
  834. if (!can_reach_dir_port) {
  835. routerinfo_t *me = router_get_my_routerinfo();
  836. log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
  837. "from the outside. Excellent.");
  838. can_reach_dir_port = 1;
  839. if (!me || decide_to_advertise_dirport(get_options(), me->dir_port))
  840. mark_my_descriptor_dirty();
  841. if (!me) { /* should never happen */
  842. log_warn(LD_BUG, "DirPort found reachable, but I have no routerinfo "
  843. "yet. Failing to inform controller of success.");
  844. return;
  845. }
  846. control_event_server_status(LOG_NOTICE,
  847. "REACHABILITY_SUCCEEDED DIRADDRESS=%s:%d",
  848. me->address, me->dir_port);
  849. }
  850. }
  851. /** We have enough testing circuits open. Send a bunch of "drop"
  852. * cells down each of them, to exercise our bandwidth. */
  853. void
  854. router_perform_bandwidth_test(int num_circs, time_t now)
  855. {
  856. int num_cells = (int)(get_options()->BandwidthRate * 10 / CELL_NETWORK_SIZE);
  857. int max_cells = num_cells < CIRCWINDOW_START ?
  858. num_cells : CIRCWINDOW_START;
  859. int cells_per_circuit = max_cells / num_circs;
  860. origin_circuit_t *circ = NULL;
  861. log_notice(LD_OR,"Performing bandwidth self-test...done.");
  862. while ((circ = circuit_get_next_by_pk_and_purpose(circ, NULL,
  863. CIRCUIT_PURPOSE_TESTING))) {
  864. /* dump cells_per_circuit drop cells onto this circ */
  865. int i = cells_per_circuit;
  866. if (circ->_base.state != CIRCUIT_STATE_OPEN)
  867. continue;
  868. circ->_base.timestamp_dirty = now;
  869. while (i-- > 0) {
  870. if (relay_send_command_from_edge(0, TO_CIRCUIT(circ),
  871. RELAY_COMMAND_DROP,
  872. NULL, 0, circ->cpath->prev)<0) {
  873. return; /* stop if error */
  874. }
  875. }
  876. }
  877. }
  878. /** Return true iff we believe ourselves to be an authoritative
  879. * directory server.
  880. */
  881. int
  882. authdir_mode(or_options_t *options)
  883. {
  884. return options->AuthoritativeDir != 0;
  885. }
  886. /** Return true iff we believe ourselves to be a v1 authoritative
  887. * directory server.
  888. */
  889. int
  890. authdir_mode_v1(or_options_t *options)
  891. {
  892. return authdir_mode(options) && options->V1AuthoritativeDir != 0;
  893. }
  894. /** Return true iff we believe ourselves to be a v2 authoritative
  895. * directory server.
  896. */
  897. int
  898. authdir_mode_v2(or_options_t *options)
  899. {
  900. return authdir_mode(options) && options->V2AuthoritativeDir != 0;
  901. }
  902. /** Return true iff we believe ourselves to be a v3 authoritative
  903. * directory server.
  904. */
  905. int
  906. authdir_mode_v3(or_options_t *options)
  907. {
  908. return authdir_mode(options) && options->V3AuthoritativeDir != 0;
  909. }
  910. /** Return true iff we are a v1, v2, or v3 directory authority. */
  911. int
  912. authdir_mode_any_main(or_options_t *options)
  913. {
  914. return options->V1AuthoritativeDir ||
  915. options->V2AuthoritativeDir ||
  916. options->V3AuthoritativeDir;
  917. }
  918. /** Return true if we believe ourselves to be any kind of
  919. * authoritative directory beyond just a hidserv authority. */
  920. int
  921. authdir_mode_any_nonhidserv(or_options_t *options)
  922. {
  923. return options->BridgeAuthoritativeDir ||
  924. authdir_mode_any_main(options);
  925. }
  926. /** Return true iff we are an authoritative directory server that is
  927. * authoritative about receiving and serving descriptors of type
  928. * <b>purpose</b> its dirport. Use -1 for "any purpose". */
  929. int
  930. authdir_mode_handles_descs(or_options_t *options, int purpose)
  931. {
  932. if (purpose < 0)
  933. return authdir_mode_any_nonhidserv(options);
  934. else if (purpose == ROUTER_PURPOSE_GENERAL)
  935. return authdir_mode_any_main(options);
  936. else if (purpose == ROUTER_PURPOSE_BRIDGE)
  937. return (options->BridgeAuthoritativeDir);
  938. else
  939. return 0;
  940. }
  941. /** Return true iff we are an authoritative directory server that
  942. * publishes its own network statuses.
  943. */
  944. int
  945. authdir_mode_publishes_statuses(or_options_t *options)
  946. {
  947. if (authdir_mode_bridge(options))
  948. return 0;
  949. return authdir_mode_any_nonhidserv(options);
  950. }
  951. /** Return true iff we are an authoritative directory server that
  952. * tests reachability of the descriptors it learns about.
  953. */
  954. int
  955. authdir_mode_tests_reachability(or_options_t *options)
  956. {
  957. return authdir_mode_handles_descs(options, -1);
  958. }
  959. /** Return true iff we believe ourselves to be a bridge authoritative
  960. * directory server.
  961. */
  962. int
  963. authdir_mode_bridge(or_options_t *options)
  964. {
  965. return authdir_mode(options) && options->BridgeAuthoritativeDir != 0;
  966. }
  967. /** Return true iff we are trying to be a server.
  968. */
  969. int
  970. server_mode(or_options_t *options)
  971. {
  972. if (options->ClientOnly) return 0;
  973. return (options->ORPort != 0 || options->ORListenAddress);
  974. }
  975. /** Return true iff we are trying to be a non-bridge server.
  976. */
  977. int
  978. public_server_mode(or_options_t *options)
  979. {
  980. if (!server_mode(options)) return 0;
  981. return (!options->BridgeRelay);
  982. }
  983. /** Return true iff the combination of options in <b>options</b> and parameters
  984. * in the consensus mean that we don't want to allow exits from circuits
  985. * we got from addresses not known to be servers. */
  986. int
  987. should_refuse_unknown_exits(or_options_t *options)
  988. {
  989. if (options->RefuseUnknownExits_ != -1) {
  990. return options->RefuseUnknownExits_;
  991. } else {
  992. return networkstatus_get_param(NULL, "refuseunknownexits", 1);
  993. }
  994. }
  995. /** Remember if we've advertised ourselves to the dirservers. */
  996. static int server_is_advertised=0;
  997. /** Return true iff we have published our descriptor lately.
  998. */
  999. int
  1000. advertised_server_mode(void)
  1001. {
  1002. return server_is_advertised;
  1003. }
  1004. /**
  1005. * Called with a boolean: set whether we have recently published our
  1006. * descriptor.
  1007. */
  1008. static void
  1009. set_server_advertised(int s)
  1010. {
  1011. server_is_advertised = s;
  1012. }
  1013. /** Return true iff we are trying to be a socks proxy. */
  1014. int
  1015. proxy_mode(or_options_t *options)
  1016. {
  1017. return (options->SocksPort != 0 || options->SocksListenAddress ||
  1018. options->TransPort != 0 || options->TransListenAddress ||
  1019. options->NATDPort != 0 || options->NATDListenAddress ||
  1020. options->DNSPort != 0 || options->DNSListenAddress);
  1021. }
  1022. /** Decide if we're a publishable server. We are a publishable server if:
  1023. * - We don't have the ClientOnly option set
  1024. * and
  1025. * - We have the PublishServerDescriptor option set to non-empty
  1026. * and
  1027. * - We have ORPort set
  1028. * and
  1029. * - We believe we are reachable from the outside; or
  1030. * - We are an authoritative directory server.
  1031. */
  1032. static int
  1033. decide_if_publishable_server(void)
  1034. {
  1035. or_options_t *options = get_options();
  1036. if (options->ClientOnly)
  1037. return 0;
  1038. if (options->_PublishServerDescriptor == NO_AUTHORITY)
  1039. return 0;
  1040. if (!server_mode(options))
  1041. return 0;
  1042. if (authdir_mode(options))
  1043. return 1;
  1044. return check_whether_orport_reachable();
  1045. }
  1046. /** Initiate server descriptor upload as reasonable (if server is publishable,
  1047. * etc). <b>force</b> is as for router_upload_dir_desc_to_dirservers.
  1048. *
  1049. * We need to rebuild the descriptor if it's dirty even if we're not
  1050. * uploading, because our reachability testing *uses* our descriptor to
  1051. * determine what IP address and ports to test.
  1052. */
  1053. void
  1054. consider_publishable_server(int force)
  1055. {
  1056. int rebuilt;
  1057. if (!server_mode(get_options()))
  1058. return;
  1059. rebuilt = router_rebuild_descriptor(0);
  1060. if (decide_if_publishable_server()) {
  1061. set_server_advertised(1);
  1062. if (rebuilt == 0)
  1063. router_upload_dir_desc_to_dirservers(force);
  1064. } else {
  1065. set_server_advertised(0);
  1066. }
  1067. }
  1068. /*
  1069. * OR descriptor generation.
  1070. */
  1071. /** My routerinfo. */
  1072. static routerinfo_t *desc_routerinfo = NULL;
  1073. /** My extrainfo */
  1074. static extrainfo_t *desc_extrainfo = NULL;
  1075. /** Since when has our descriptor been "clean"? 0 if we need to regenerate it
  1076. * now. */
  1077. static time_t desc_clean_since = 0;
  1078. /** Boolean: do we need to regenerate the above? */
  1079. static int desc_needs_upload = 0;
  1080. /** OR only: If <b>force</b> is true, or we haven't uploaded this
  1081. * descriptor successfully yet, try to upload our signed descriptor to
  1082. * all the directory servers we know about.
  1083. */
  1084. void
  1085. router_upload_dir_desc_to_dirservers(int force)
  1086. {
  1087. routerinfo_t *ri;
  1088. extrainfo_t *ei;
  1089. char *msg;
  1090. size_t desc_len, extra_len = 0, total_len;
  1091. authority_type_t auth = get_options()->_PublishServerDescriptor;
  1092. ri = router_get_my_routerinfo();
  1093. if (!ri) {
  1094. log_info(LD_GENERAL, "No descriptor; skipping upload");
  1095. return;
  1096. }
  1097. ei = router_get_my_extrainfo();
  1098. if (auth == NO_AUTHORITY)
  1099. return;
  1100. if (!force && !desc_needs_upload)
  1101. return;
  1102. desc_needs_upload = 0;
  1103. desc_len = ri->cache_info.signed_descriptor_len;
  1104. extra_len = ei ? ei->cache_info.signed_descriptor_len : 0;
  1105. total_len = desc_len + extra_len + 1;
  1106. msg = tor_malloc(total_len);
  1107. memcpy(msg, ri->cache_info.signed_descriptor_body, desc_len);
  1108. if (ei) {
  1109. memcpy(msg+desc_len, ei->cache_info.signed_descriptor_body, extra_len);
  1110. }
  1111. msg[desc_len+extra_len] = 0;
  1112. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR,
  1113. (auth & BRIDGE_AUTHORITY) ?
  1114. ROUTER_PURPOSE_BRIDGE :
  1115. ROUTER_PURPOSE_GENERAL,
  1116. auth, msg, desc_len, extra_len);
  1117. tor_free(msg);
  1118. }
  1119. /** OR only: Check whether my exit policy says to allow connection to
  1120. * conn. Return 0 if we accept; non-0 if we reject.
  1121. */
  1122. int
  1123. router_compare_to_my_exit_policy(edge_connection_t *conn)
  1124. {
  1125. if (!router_get_my_routerinfo()) /* make sure desc_routerinfo exists */
  1126. return -1;
  1127. /* make sure it's resolved to something. this way we can't get a
  1128. 'maybe' below. */
  1129. if (tor_addr_is_null(&conn->_base.addr))
  1130. return -1;
  1131. /* XXXX IPv6 */
  1132. if (tor_addr_family(&conn->_base.addr) != AF_INET)
  1133. return -1;
  1134. return compare_tor_addr_to_addr_policy(&conn->_base.addr, conn->_base.port,
  1135. desc_routerinfo->exit_policy) != ADDR_POLICY_ACCEPTED;
  1136. }
  1137. /** Return true iff my exit policy is reject *:*. Return -1 if we don't
  1138. * have a descriptor */
  1139. int
  1140. router_my_exit_policy_is_reject_star(void)
  1141. {
  1142. if (!router_get_my_routerinfo()) /* make sure desc_routerinfo exists */
  1143. return -1;
  1144. return desc_routerinfo->policy_is_reject_star;
  1145. }
  1146. /** Return true iff I'm a server and <b>digest</b> is equal to
  1147. * my server identity key digest. */
  1148. int
  1149. router_digest_is_me(const char *digest)
  1150. {
  1151. return (server_identitykey &&
  1152. !memcmp(server_identitykey_digest, digest, DIGEST_LEN));
  1153. }
  1154. /** Return true iff I'm a server and <b>digest</b> is equal to
  1155. * my identity digest. */
  1156. int
  1157. router_extrainfo_digest_is_me(const char *digest)
  1158. {
  1159. extrainfo_t *ei = router_get_my_extrainfo();
  1160. if (!ei)
  1161. return 0;
  1162. return !memcmp(digest,
  1163. ei->cache_info.signed_descriptor_digest,
  1164. DIGEST_LEN);
  1165. }
  1166. /** A wrapper around router_digest_is_me(). */
  1167. int
  1168. router_is_me(routerinfo_t *router)
  1169. {
  1170. return router_digest_is_me(router->cache_info.identity_digest);
  1171. }
  1172. /** Return true iff <b>fp</b> is a hex fingerprint of my identity digest. */
  1173. int
  1174. router_fingerprint_is_me(const char *fp)
  1175. {
  1176. char digest[DIGEST_LEN];
  1177. if (strlen(fp) == HEX_DIGEST_LEN &&
  1178. base16_decode(digest, sizeof(digest), fp, HEX_DIGEST_LEN) == 0)
  1179. return router_digest_is_me(digest);
  1180. return 0;
  1181. }
  1182. /** Return a routerinfo for this OR, rebuilding a fresh one if
  1183. * necessary. Return NULL on error, or if called on an OP. */
  1184. routerinfo_t *
  1185. router_get_my_routerinfo(void)
  1186. {
  1187. if (!server_mode(get_options()))
  1188. return NULL;
  1189. if (router_rebuild_descriptor(0))
  1190. return NULL;
  1191. return desc_routerinfo;
  1192. }
  1193. /** OR only: Return a signed server descriptor for this OR, rebuilding a fresh
  1194. * one if necessary. Return NULL on error.
  1195. */
  1196. const char *
  1197. router_get_my_descriptor(void)
  1198. {
  1199. const char *body;
  1200. if (!router_get_my_routerinfo())
  1201. return NULL;
  1202. /* Make sure this is nul-terminated. */
  1203. tor_assert(desc_routerinfo->cache_info.saved_location == SAVED_NOWHERE);
  1204. body = signed_descriptor_get_body(&desc_routerinfo->cache_info);
  1205. tor_assert(!body[desc_routerinfo->cache_info.signed_descriptor_len]);
  1206. log_debug(LD_GENERAL,"my desc is '%s'", body);
  1207. return body;
  1208. }
  1209. /** Return the extrainfo document for this OR, or NULL if we have none.
  1210. * Rebuilt it (and the server descriptor) if necessary. */
  1211. extrainfo_t *
  1212. router_get_my_extrainfo(void)
  1213. {
  1214. if (!server_mode(get_options()))
  1215. return NULL;
  1216. if (router_rebuild_descriptor(0))
  1217. return NULL;
  1218. return desc_extrainfo;
  1219. }
  1220. /** A list of nicknames that we've warned about including in our family
  1221. * declaration verbatim rather than as digests. */
  1222. static smartlist_t *warned_nonexistent_family = NULL;
  1223. static int router_guess_address_from_dir_headers(uint32_t *guess);
  1224. /** Make a current best guess at our address, either because
  1225. * it's configured in torrc, or because we've learned it from
  1226. * dirserver headers. Place the answer in *<b>addr</b> and return
  1227. * 0 on success, else return -1 if we have no guess. */
  1228. int
  1229. router_pick_published_address(or_options_t *options, uint32_t *addr)
  1230. {
  1231. char buf[INET_NTOA_BUF_LEN];
  1232. struct in_addr a;
  1233. if (resolve_my_address(LOG_INFO, options, addr, NULL) < 0) {
  1234. log_info(LD_CONFIG, "Could not determine our address locally. "
  1235. "Checking if directory headers provide any hints.");
  1236. if (router_guess_address_from_dir_headers(addr) < 0) {
  1237. log_info(LD_CONFIG, "No hints from directory headers either. "
  1238. "Will try again later.");
  1239. return -1;
  1240. }
  1241. }
  1242. a.s_addr = htonl(*addr);
  1243. tor_inet_ntoa(&a, buf, sizeof(buf));
  1244. log_info(LD_CONFIG,"Success: chose address '%s'.", buf);
  1245. return 0;
  1246. }
  1247. /** If <b>force</b> is true, or our descriptor is out-of-date, rebuild a fresh
  1248. * routerinfo, signed server descriptor, and extra-info document for this OR.
  1249. * Return 0 on success, -1 on temporary error.
  1250. */
  1251. int
  1252. router_rebuild_descriptor(int force)
  1253. {
  1254. routerinfo_t *ri;
  1255. extrainfo_t *ei;
  1256. uint32_t addr;
  1257. char platform[256];
  1258. int hibernating = we_are_hibernating();
  1259. or_options_t *options = get_options();
  1260. if (desc_clean_since && !force)
  1261. return 0;
  1262. if (router_pick_published_address(options, &addr) < 0) {
  1263. /* Stop trying to rebuild our descriptor every second. We'll
  1264. * learn that it's time to try again when ip_address_changed()
  1265. * marks it dirty. */
  1266. desc_clean_since = time(NULL);
  1267. return -1;
  1268. }
  1269. ri = tor_malloc_zero(sizeof(routerinfo_t));
  1270. ri->cache_info.routerlist_index = -1;
  1271. ri->address = tor_dup_ip(addr);
  1272. ri->nickname = tor_strdup(options->Nickname);
  1273. ri->addr = addr;
  1274. ri->or_port = options->ORPort;
  1275. ri->dir_port = options->DirPort;
  1276. ri->cache_info.published_on = time(NULL);
  1277. ri->onion_pkey = crypto_pk_dup_key(get_onion_key()); /* must invoke from
  1278. * main thread */
  1279. ri->identity_pkey = crypto_pk_dup_key(get_server_identity_key());
  1280. if (crypto_pk_get_digest(ri->identity_pkey,
  1281. ri->cache_info.identity_digest)<0) {
  1282. routerinfo_free(ri);
  1283. return -1;
  1284. }
  1285. get_platform_str(platform, sizeof(platform));
  1286. ri->platform = tor_strdup(platform);
  1287. /* compute ri->bandwidthrate as the min of various options */
  1288. ri->bandwidthrate = get_effective_bwrate(options);
  1289. /* and compute ri->bandwidthburst similarly */
  1290. ri->bandwidthburst = get_effective_bwburst(options);
  1291. ri->bandwidthcapacity = hibernating ? 0 : rep_hist_bandwidth_assess();
  1292. policies_parse_exit_policy(options->ExitPolicy, &ri->exit_policy,
  1293. options->ExitPolicyRejectPrivate,
  1294. ri->address, !options->BridgeRelay);
  1295. ri->policy_is_reject_star =
  1296. policy_is_reject_star(ri->exit_policy);
  1297. if (desc_routerinfo) { /* inherit values */
  1298. ri->is_valid = desc_routerinfo->is_valid;
  1299. ri->is_running = desc_routerinfo->is_running;
  1300. ri->is_named = desc_routerinfo->is_named;
  1301. }
  1302. if (authdir_mode(options))
  1303. ri->is_valid = ri->is_named = 1; /* believe in yourself */
  1304. if (options->MyFamily) {
  1305. smartlist_t *family;
  1306. if (!warned_nonexistent_family)
  1307. warned_nonexistent_family = smartlist_create();
  1308. family = smartlist_create();
  1309. ri->declared_family = smartlist_create();
  1310. smartlist_split_string(family, options->MyFamily, ",",
  1311. SPLIT_SKIP_SPACE|SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1312. SMARTLIST_FOREACH(family, char *, name,
  1313. {
  1314. routerinfo_t *member;
  1315. if (!strcasecmp(name, options->Nickname))
  1316. member = ri;
  1317. else
  1318. member = router_get_by_nickname(name, 1);
  1319. if (!member) {
  1320. int is_legal = is_legal_nickname_or_hexdigest(name);
  1321. if (!smartlist_string_isin(warned_nonexistent_family, name) &&
  1322. !is_legal_hexdigest(name)) {
  1323. if (is_legal)
  1324. log_warn(LD_CONFIG,
  1325. "I have no descriptor for the router named \"%s\" in my "
  1326. "declared family; I'll use the nickname as is, but "
  1327. "this may confuse clients.", name);
  1328. else
  1329. log_warn(LD_CONFIG, "There is a router named \"%s\" in my "
  1330. "declared family, but that isn't a legal nickname. "
  1331. "Skipping it.", escaped(name));
  1332. smartlist_add(warned_nonexistent_family, tor_strdup(name));
  1333. }
  1334. if (is_legal) {
  1335. smartlist_add(ri->declared_family, name);
  1336. name = NULL;
  1337. }
  1338. } else if (router_is_me(member)) {
  1339. /* Don't list ourself in our own family; that's redundant */
  1340. } else {
  1341. char *fp = tor_malloc(HEX_DIGEST_LEN+2);
  1342. fp[0] = '$';
  1343. base16_encode(fp+1,HEX_DIGEST_LEN+1,
  1344. member->cache_info.identity_digest, DIGEST_LEN);
  1345. smartlist_add(ri->declared_family, fp);
  1346. if (smartlist_string_isin(warned_nonexistent_family, name))
  1347. smartlist_string_remove(warned_nonexistent_family, name);
  1348. }
  1349. tor_free(name);
  1350. });
  1351. /* remove duplicates from the list */
  1352. smartlist_sort_strings(ri->declared_family);
  1353. smartlist_uniq_strings(ri->declared_family);
  1354. smartlist_free(family);
  1355. }
  1356. /* Now generate the extrainfo. */
  1357. ei = tor_malloc_zero(sizeof(extrainfo_t));
  1358. ei->cache_info.is_extrainfo = 1;
  1359. strlcpy(ei->nickname, get_options()->Nickname, sizeof(ei->nickname));
  1360. ei->cache_info.published_on = ri->cache_info.published_on;
  1361. memcpy(ei->cache_info.identity_digest, ri->cache_info.identity_digest,
  1362. DIGEST_LEN);
  1363. if (extrainfo_dump_to_string(&ei->cache_info.signed_descriptor_body,
  1364. ei, get_server_identity_key()) < 0) {
  1365. log_warn(LD_BUG, "Couldn't generate extra-info descriptor.");
  1366. extrainfo_free(ei);
  1367. ei = NULL;
  1368. } else {
  1369. ei->cache_info.signed_descriptor_len =
  1370. strlen(ei->cache_info.signed_descriptor_body);
  1371. router_get_extrainfo_hash(ei->cache_info.signed_descriptor_body,
  1372. ei->cache_info.signed_descriptor_digest);
  1373. }
  1374. /* Now finish the router descriptor. */
  1375. if (ei) {
  1376. memcpy(ri->cache_info.extra_info_digest,
  1377. ei->cache_info.signed_descriptor_digest,
  1378. DIGEST_LEN);
  1379. } else {
  1380. /* ri was allocated with tor_malloc_zero, so there is no need to
  1381. * zero ri->cache_info.extra_info_digest here. */
  1382. }
  1383. ri->cache_info.signed_descriptor_body = tor_malloc(8192);
  1384. if (router_dump_router_to_string(ri->cache_info.signed_descriptor_body, 8192,
  1385. ri, get_server_identity_key()) < 0) {
  1386. log_warn(LD_BUG, "Couldn't generate router descriptor.");
  1387. routerinfo_free(ri);
  1388. extrainfo_free(ei);
  1389. return -1;
  1390. }
  1391. ri->cache_info.signed_descriptor_len =
  1392. strlen(ri->cache_info.signed_descriptor_body);
  1393. ri->purpose =
  1394. options->BridgeRelay ? ROUTER_PURPOSE_BRIDGE : ROUTER_PURPOSE_GENERAL;
  1395. ri->cache_info.send_unencrypted = 1;
  1396. /* Let bridges serve their own descriptors unencrypted, so they can
  1397. * pass reachability testing. (If they want to be harder to notice,
  1398. * they can always leave the DirPort off). */
  1399. if (ei && !options->BridgeRelay)
  1400. ei->cache_info.send_unencrypted = 1;
  1401. router_get_router_hash(ri->cache_info.signed_descriptor_body,
  1402. strlen(ri->cache_info.signed_descriptor_body),
  1403. ri->cache_info.signed_descriptor_digest);
  1404. routerinfo_set_country(ri);
  1405. if (ei) {
  1406. tor_assert(! routerinfo_incompatible_with_extrainfo(ri, ei, NULL, NULL));
  1407. }
  1408. routerinfo_free(desc_routerinfo);
  1409. desc_routerinfo = ri;
  1410. extrainfo_free(desc_extrainfo);
  1411. desc_extrainfo = ei;
  1412. desc_clean_since = time(NULL);
  1413. desc_needs_upload = 1;
  1414. control_event_my_descriptor_changed();
  1415. return 0;
  1416. }
  1417. /** Mark descriptor out of date if it's older than <b>when</b> */
  1418. void
  1419. mark_my_descriptor_dirty_if_older_than(time_t when)
  1420. {
  1421. if (desc_clean_since < when)
  1422. mark_my_descriptor_dirty();
  1423. }
  1424. /** Call when the current descriptor is out of date. */
  1425. void
  1426. mark_my_descriptor_dirty(void)
  1427. {
  1428. desc_clean_since = 0;
  1429. }
  1430. /** How frequently will we republish our descriptor because of large (factor
  1431. * of 2) shifts in estimated bandwidth? */
  1432. #define MAX_BANDWIDTH_CHANGE_FREQ (20*60)
  1433. /** Check whether bandwidth has changed a lot since the last time we announced
  1434. * bandwidth. If so, mark our descriptor dirty. */
  1435. void
  1436. check_descriptor_bandwidth_changed(time_t now)
  1437. {
  1438. static time_t last_changed = 0;
  1439. uint64_t prev, cur;
  1440. if (!desc_routerinfo)
  1441. return;
  1442. prev = desc_routerinfo->bandwidthcapacity;
  1443. cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess();
  1444. if ((prev != cur && (!prev || !cur)) ||
  1445. cur > prev*2 ||
  1446. cur < prev/2) {
  1447. if (last_changed+MAX_BANDWIDTH_CHANGE_FREQ < now) {
  1448. log_info(LD_GENERAL,
  1449. "Measured bandwidth has changed; rebuilding descriptor.");
  1450. mark_my_descriptor_dirty();
  1451. last_changed = now;
  1452. }
  1453. }
  1454. }
  1455. /** Note at log level severity that our best guess of address has changed from
  1456. * <b>prev</b> to <b>cur</b>. */
  1457. static void
  1458. log_addr_has_changed(int severity, uint32_t prev, uint32_t cur,
  1459. const char *source)
  1460. {
  1461. char addrbuf_prev[INET_NTOA_BUF_LEN];
  1462. char addrbuf_cur[INET_NTOA_BUF_LEN];
  1463. struct in_addr in_prev;
  1464. struct in_addr in_cur;
  1465. in_prev.s_addr = htonl(prev);
  1466. tor_inet_ntoa(&in_prev, addrbuf_prev, sizeof(addrbuf_prev));
  1467. in_cur.s_addr = htonl(cur);
  1468. tor_inet_ntoa(&in_cur, addrbuf_cur, sizeof(addrbuf_cur));
  1469. if (prev)
  1470. log_fn(severity, LD_GENERAL,
  1471. "Our IP Address has changed from %s to %s; "
  1472. "rebuilding descriptor (source: %s).",
  1473. addrbuf_prev, addrbuf_cur, source);
  1474. else
  1475. log_notice(LD_GENERAL,
  1476. "Guessed our IP address as %s (source: %s).",
  1477. addrbuf_cur, source);
  1478. }
  1479. /** Check whether our own address as defined by the Address configuration
  1480. * has changed. This is for routers that get their address from a service
  1481. * like dyndns. If our address has changed, mark our descriptor dirty. */
  1482. void
  1483. check_descriptor_ipaddress_changed(time_t now)
  1484. {
  1485. uint32_t prev, cur;
  1486. or_options_t *options = get_options();
  1487. (void) now;
  1488. if (!desc_routerinfo)
  1489. return;
  1490. prev = desc_routerinfo->addr;
  1491. if (resolve_my_address(LOG_INFO, options, &cur, NULL) < 0) {
  1492. log_info(LD_CONFIG,"options->Address didn't resolve into an IP.");
  1493. return;
  1494. }
  1495. if (prev != cur) {
  1496. log_addr_has_changed(LOG_NOTICE, prev, cur, "resolve");
  1497. ip_address_changed(0);
  1498. }
  1499. }
  1500. /** The most recently guessed value of our IP address, based on directory
  1501. * headers. */
  1502. static uint32_t last_guessed_ip = 0;
  1503. /** A directory server <b>d_conn</b> told us our IP address is
  1504. * <b>suggestion</b>.
  1505. * If this address is different from the one we think we are now, and
  1506. * if our computer doesn't actually know its IP address, then switch. */
  1507. void
  1508. router_new_address_suggestion(const char *suggestion,
  1509. const dir_connection_t *d_conn)
  1510. {
  1511. uint32_t addr, cur = 0;
  1512. struct in_addr in;
  1513. or_options_t *options = get_options();
  1514. /* first, learn what the IP address actually is */
  1515. if (!tor_inet_aton(suggestion, &in)) {
  1516. log_debug(LD_DIR, "Malformed X-Your-Address-Is header %s. Ignoring.",
  1517. escaped(suggestion));
  1518. return;
  1519. }
  1520. addr = ntohl(in.s_addr);
  1521. log_debug(LD_DIR, "Got X-Your-Address-Is: %s.", suggestion);
  1522. if (!server_mode(options)) {
  1523. last_guessed_ip = addr; /* store it in case we need it later */
  1524. return;
  1525. }
  1526. if (resolve_my_address(LOG_INFO, options, &cur, NULL) >= 0) {
  1527. /* We're all set -- we already know our address. Great. */
  1528. last_guessed_ip = cur; /* store it in case we need it later */
  1529. return;
  1530. }
  1531. if (is_internal_IP(addr, 0)) {
  1532. /* Don't believe anybody who says our IP is, say, 127.0.0.1. */
  1533. return;
  1534. }
  1535. if (tor_addr_eq_ipv4h(&d_conn->_base.addr, addr)) {
  1536. /* Don't believe anybody who says our IP is their IP. */
  1537. log_debug(LD_DIR, "A directory server told us our IP address is %s, "
  1538. "but he's just reporting his own IP address. Ignoring.",
  1539. suggestion);
  1540. return;
  1541. }
  1542. /* Okay. We can't resolve our own address, and X-Your-Address-Is is giving
  1543. * us an answer different from what we had the last time we managed to
  1544. * resolve it. */
  1545. if (last_guessed_ip != addr) {
  1546. control_event_server_status(LOG_NOTICE,
  1547. "EXTERNAL_ADDRESS ADDRESS=%s METHOD=DIRSERV",
  1548. suggestion);
  1549. log_addr_has_changed(LOG_NOTICE, last_guessed_ip, addr,
  1550. d_conn->_base.address);
  1551. ip_address_changed(0);
  1552. last_guessed_ip = addr; /* router_rebuild_descriptor() will fetch it */
  1553. }
  1554. }
  1555. /** We failed to resolve our address locally, but we'd like to build
  1556. * a descriptor and publish / test reachability. If we have a guess
  1557. * about our address based on directory headers, answer it and return
  1558. * 0; else return -1. */
  1559. static int
  1560. router_guess_address_from_dir_headers(uint32_t *guess)
  1561. {
  1562. if (last_guessed_ip) {
  1563. *guess = last_guessed_ip;
  1564. return 0;
  1565. }
  1566. return -1;
  1567. }
  1568. /** Set <b>platform</b> (max length <b>len</b>) to a NUL-terminated short
  1569. * string describing the version of Tor and the operating system we're
  1570. * currently running on.
  1571. */
  1572. void
  1573. get_platform_str(char *platform, size_t len)
  1574. {
  1575. tor_snprintf(platform, len, "Tor %s on %s", get_version(), get_uname());
  1576. }
  1577. /* XXX need to audit this thing and count fenceposts. maybe
  1578. * refactor so we don't have to keep asking if we're
  1579. * near the end of maxlen?
  1580. */
  1581. #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1582. /** OR only: Given a routerinfo for this router, and an identity key to sign
  1583. * with, encode the routerinfo as a signed server descriptor and write the
  1584. * result into <b>s</b>, using at most <b>maxlen</b> bytes. Return -1 on
  1585. * failure, and the number of bytes used on success.
  1586. */
  1587. int
  1588. router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
  1589. crypto_pk_env_t *ident_key)
  1590. {
  1591. char *onion_pkey; /* Onion key, PEM-encoded. */
  1592. char *identity_pkey; /* Identity key, PEM-encoded. */
  1593. char digest[DIGEST_LEN];
  1594. char published[ISO_TIME_LEN+1];
  1595. char fingerprint[FINGERPRINT_LEN+1];
  1596. int has_extra_info_digest;
  1597. char extra_info_digest[HEX_DIGEST_LEN+1];
  1598. size_t onion_pkeylen, identity_pkeylen;
  1599. size_t written;
  1600. int result=0;
  1601. addr_policy_t *tmpe;
  1602. char *family_line;
  1603. or_options_t *options = get_options();
  1604. /* Make sure the identity key matches the one in the routerinfo. */
  1605. if (crypto_pk_cmp_keys(ident_key, router->identity_pkey)) {
  1606. log_warn(LD_BUG,"Tried to sign a router with a private key that didn't "
  1607. "match router's public key!");
  1608. return -1;
  1609. }
  1610. /* record our fingerprint, so we can include it in the descriptor */
  1611. if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) {
  1612. log_err(LD_BUG,"Error computing fingerprint");
  1613. return -1;
  1614. }
  1615. /* PEM-encode the onion key */
  1616. if (crypto_pk_write_public_key_to_string(router->onion_pkey,
  1617. &onion_pkey,&onion_pkeylen)<0) {
  1618. log_warn(LD_BUG,"write onion_pkey to string failed!");
  1619. return -1;
  1620. }
  1621. /* PEM-encode the identity key */
  1622. if (crypto_pk_write_public_key_to_string(router->identity_pkey,
  1623. &identity_pkey,&identity_pkeylen)<0) {
  1624. log_warn(LD_BUG,"write identity_pkey to string failed!");
  1625. tor_free(onion_pkey);
  1626. return -1;
  1627. }
  1628. /* Encode the publication time. */
  1629. format_iso_time(published, router->cache_info.published_on);
  1630. if (router->declared_family && smartlist_len(router->declared_family)) {
  1631. size_t n;
  1632. char *family = smartlist_join_strings(router->declared_family, " ", 0, &n);
  1633. n += strlen("family ") + 2; /* 1 for \n, 1 for \0. */
  1634. family_line = tor_malloc(n);
  1635. tor_snprintf(family_line, n, "family %s\n", family);
  1636. tor_free(family);
  1637. } else {
  1638. family_line = tor_strdup("");
  1639. }
  1640. has_extra_info_digest =
  1641. ! tor_digest_is_zero(router->cache_info.extra_info_digest);
  1642. if (has_extra_info_digest) {
  1643. base16_encode(extra_info_digest, sizeof(extra_info_digest),
  1644. router->cache_info.extra_info_digest, DIGEST_LEN);
  1645. }
  1646. /* Generate the easy portion of the router descriptor. */
  1647. result = tor_snprintf(s, maxlen,
  1648. "router %s %s %d 0 %d\n"
  1649. "platform %s\n"
  1650. "opt protocols Link 1 2 Circuit 1\n"
  1651. "published %s\n"
  1652. "opt fingerprint %s\n"
  1653. "uptime %ld\n"
  1654. "bandwidth %d %d %d\n"
  1655. "%s%s%s%s"
  1656. "onion-key\n%s"
  1657. "signing-key\n%s"
  1658. "%s%s%s%s",
  1659. router->nickname,
  1660. router->address,
  1661. router->or_port,
  1662. decide_to_advertise_dirport(options, router->dir_port),
  1663. router->platform,
  1664. published,
  1665. fingerprint,
  1666. stats_n_seconds_working,
  1667. (int) router->bandwidthrate,
  1668. (int) router->bandwidthburst,
  1669. (int) router->bandwidthcapacity,
  1670. has_extra_info_digest ? "opt extra-info-digest " : "",
  1671. has_extra_info_digest ? extra_info_digest : "",
  1672. has_extra_info_digest ? "\n" : "",
  1673. options->DownloadExtraInfo ? "opt caches-extra-info\n" : "",
  1674. onion_pkey, identity_pkey,
  1675. family_line,
  1676. we_are_hibernating() ? "opt hibernating 1\n" : "",
  1677. options->HidServDirectoryV2 ? "opt hidden-service-dir\n" : "",
  1678. options->AllowSingleHopExits ? "opt allow-single-hop-exits\n" : "");
  1679. tor_free(family_line);
  1680. tor_free(onion_pkey);
  1681. tor_free(identity_pkey);
  1682. if (result < 0) {
  1683. log_warn(LD_BUG,"descriptor snprintf #1 ran out of room!");
  1684. return -1;
  1685. }
  1686. /* From now on, we use 'written' to remember the current length of 's'. */
  1687. written = result;
  1688. if (options->ContactInfo && strlen(options->ContactInfo)) {
  1689. const char *ci = options->ContactInfo;
  1690. if (strchr(ci, '\n') || strchr(ci, '\r'))
  1691. ci = escaped(ci);
  1692. result = tor_snprintf(s+written,maxlen-written, "contact %s\n", ci);
  1693. if (result<0) {
  1694. log_warn(LD_BUG,"descriptor snprintf #2 ran out of room!");
  1695. return -1;
  1696. }
  1697. written += result;
  1698. }
  1699. /* Write the exit policy to the end of 's'. */
  1700. if (dns_seems_to_be_broken() || has_dns_init_failed() ||
  1701. !router->exit_policy || !smartlist_len(router->exit_policy)) {
  1702. /* DNS is screwed up; don't claim to be an exit. */
  1703. strlcat(s+written, "reject *:*\n", maxlen-written);
  1704. written += strlen("reject *:*\n");
  1705. tmpe = NULL;
  1706. } else if (router->exit_policy) {
  1707. int i;
  1708. for (i = 0; i < smartlist_len(router->exit_policy); ++i) {
  1709. tmpe = smartlist_get(router->exit_policy, i);
  1710. result = policy_write_item(s+written, maxlen-written, tmpe, 1);
  1711. if (result < 0) {
  1712. log_warn(LD_BUG,"descriptor policy_write_item ran out of room!");
  1713. return -1;
  1714. }
  1715. tor_assert(result == (int)strlen(s+written));
  1716. written += result;
  1717. if (written+2 > maxlen) {
  1718. log_warn(LD_BUG,"descriptor policy_write_item ran out of room (2)!");
  1719. return -1;
  1720. }
  1721. s[written++] = '\n';
  1722. }
  1723. }
  1724. if (written + DIROBJ_MAX_SIG_LEN > maxlen) {
  1725. /* Not enough room for signature. */
  1726. log_warn(LD_BUG,"not enough room left in descriptor for signature!");
  1727. return -1;
  1728. }
  1729. /* Sign the descriptor */
  1730. strlcpy(s+written, "router-signature\n", maxlen-written);
  1731. written += strlen(s+written);
  1732. s[written] = '\0';
  1733. if (router_get_router_hash(s, strlen(s), digest) < 0) {
  1734. return -1;
  1735. }
  1736. note_crypto_pk_op(SIGN_RTR);
  1737. if (router_append_dirobj_signature(s+written,maxlen-written,
  1738. digest,DIGEST_LEN,ident_key)<0) {
  1739. log_warn(LD_BUG, "Couldn't sign router descriptor");
  1740. return -1;
  1741. }
  1742. written += strlen(s+written);
  1743. if (written+2 > maxlen) {
  1744. log_warn(LD_BUG,"Not enough room to finish descriptor.");
  1745. return -1;
  1746. }
  1747. /* include a last '\n' */
  1748. s[written] = '\n';
  1749. s[written+1] = 0;
  1750. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1751. {
  1752. char *s_dup;
  1753. const char *cp;
  1754. routerinfo_t *ri_tmp;
  1755. cp = s_dup = tor_strdup(s);
  1756. ri_tmp = router_parse_entry_from_string(cp, NULL, 1, 0, NULL);
  1757. if (!ri_tmp) {
  1758. log_err(LD_BUG,
  1759. "We just generated a router descriptor we can't parse.");
  1760. log_err(LD_BUG, "Descriptor was: <<%s>>", s);
  1761. return -1;
  1762. }
  1763. tor_free(s_dup);
  1764. routerinfo_free(ri_tmp);
  1765. }
  1766. #endif
  1767. return (int)written+1;
  1768. }
  1769. /** Load the contents of <b>filename</b>, find the last line starting with
  1770. * <b>end_line</b>, ensure that its timestamp is not more than 25 hours in
  1771. * the past or more than 1 hour in the future with respect to <b>now</b>,
  1772. * and write the file contents starting with that line to *<b>out</b>.
  1773. * Return 1 for success, 0 if the file does not exist, or -1 if the file
  1774. * does not contain a line matching these criteria or other failure. */
  1775. static int
  1776. load_stats_file(const char *filename, const char *end_line, time_t now,
  1777. char **out)
  1778. {
  1779. int r = -1;
  1780. char *fname = get_datadir_fname(filename);
  1781. char *contents, *start = NULL, *tmp, timestr[ISO_TIME_LEN+1];
  1782. time_t written;
  1783. switch (file_status(fname)) {
  1784. case FN_FILE:
  1785. /* X022 Find an alternative to reading the whole file to memory. */
  1786. if ((contents = read_file_to_str(fname, 0, NULL))) {
  1787. tmp = strstr(contents, end_line);
  1788. /* Find last block starting with end_line */
  1789. while (tmp) {
  1790. start = tmp;
  1791. tmp = strstr(tmp + 1, end_line);
  1792. }
  1793. if (!start)
  1794. goto notfound;
  1795. if (strlen(start) < strlen(end_line) + 1 + sizeof(timestr))
  1796. goto notfound;
  1797. strlcpy(timestr, start + 1 + strlen(end_line), sizeof(timestr));
  1798. if (parse_iso_time(timestr, &written) < 0)
  1799. goto notfound;
  1800. if (written < now - (25*60*60) || written > now + (1*60*60))
  1801. goto notfound;
  1802. *out = tor_strdup(start);
  1803. r = 1;
  1804. }
  1805. notfound:
  1806. tor_free(contents);
  1807. break;
  1808. case FN_NOENT:
  1809. r = 0;
  1810. break;
  1811. case FN_ERROR:
  1812. case FN_DIR:
  1813. default:
  1814. break;
  1815. }
  1816. tor_free(fname);
  1817. return r;
  1818. }
  1819. /** Write the contents of <b>extrainfo</b> and aggregated statistics to
  1820. * *<b>s_out</b>, signing them with <b>ident_key</b>. Return 0 on
  1821. * success, negative on failure. */
  1822. int
  1823. extrainfo_dump_to_string(char **s_out, extrainfo_t *extrainfo,
  1824. crypto_pk_env_t *ident_key)
  1825. {
  1826. or_options_t *options = get_options();
  1827. char identity[HEX_DIGEST_LEN+1];
  1828. char published[ISO_TIME_LEN+1];
  1829. char digest[DIGEST_LEN];
  1830. char *bandwidth_usage;
  1831. int result;
  1832. static int write_stats_to_extrainfo = 1;
  1833. char sig[DIROBJ_MAX_SIG_LEN+1];
  1834. char *s, *pre, *contents, *cp, *s_dup = NULL;
  1835. time_t now = time(NULL);
  1836. smartlist_t *chunks = smartlist_create();
  1837. extrainfo_t *ei_tmp = NULL;
  1838. base16_encode(identity, sizeof(identity),
  1839. extrainfo->cache_info.identity_digest, DIGEST_LEN);
  1840. format_iso_time(published, extrainfo->cache_info.published_on);
  1841. bandwidth_usage = rep_hist_get_bandwidth_lines();
  1842. tor_asprintf(&pre, "extra-info %s %s\npublished %s\n%s",
  1843. extrainfo->nickname, identity,
  1844. published, bandwidth_usage);
  1845. tor_free(bandwidth_usage);
  1846. smartlist_add(chunks, pre);
  1847. if (options->ExtraInfoStatistics && write_stats_to_extrainfo) {
  1848. log_info(LD_GENERAL, "Adding stats to extra-info descriptor.");
  1849. if (options->DirReqStatistics &&
  1850. load_stats_file("stats"PATH_SEPARATOR"dirreq-stats",
  1851. "dirreq-stats-end", now, &contents) > 0) {
  1852. smartlist_add(chunks, contents);
  1853. }
  1854. if (options->EntryStatistics &&
  1855. load_stats_file("stats"PATH_SEPARATOR"entry-stats",
  1856. "entry-stats-end", now, &contents) > 0) {
  1857. smartlist_add(chunks, contents);
  1858. }
  1859. if (options->CellStatistics &&
  1860. load_stats_file("stats"PATH_SEPARATOR"buffer-stats",
  1861. "cell-stats-end", now, &contents) > 0) {
  1862. smartlist_add(chunks, contents);
  1863. }
  1864. if (options->ExitPortStatistics &&
  1865. load_stats_file("stats"PATH_SEPARATOR"exit-stats",
  1866. "exit-stats-end", now, &contents) > 0) {
  1867. smartlist_add(chunks, contents);
  1868. }
  1869. }
  1870. if (should_record_bridge_info(options) && write_stats_to_extrainfo) {
  1871. const char *bridge_stats = geoip_get_bridge_stats_extrainfo(now);
  1872. if (bridge_stats) {
  1873. smartlist_add(chunks, tor_strdup(bridge_stats));
  1874. }
  1875. }
  1876. smartlist_add(chunks, tor_strdup("router-signature\n"));
  1877. s = smartlist_join_strings(chunks, "", 0, NULL);
  1878. while (strlen(s) > MAX_EXTRAINFO_UPLOAD_SIZE - DIROBJ_MAX_SIG_LEN) {
  1879. /* So long as there are at least two chunks (one for the initial
  1880. * extra-info line and one for the router-signature), we can keep removing
  1881. * things. */
  1882. if (smartlist_len(chunks) > 2) {
  1883. /* We remove the next-to-last element (remember, len-1 is the last
  1884. element), since we need to keep the router-signature element. */
  1885. int idx = smartlist_len(chunks) - 2;
  1886. char *e = smartlist_get(chunks, idx);
  1887. smartlist_del_keeporder(chunks, idx);
  1888. log_warn(LD_GENERAL, "We just generated an extra-info descriptor "
  1889. "with statistics that exceeds the 50 KB "
  1890. "upload limit. Removing last added "
  1891. "statistics.");
  1892. tor_free(e);
  1893. tor_free(s);
  1894. s = smartlist_join_strings(chunks, "", 0, NULL);
  1895. } else {
  1896. log_warn(LD_BUG, "We just generated an extra-info descriptors that "
  1897. "exceeds the 50 KB upload limit.");
  1898. goto err;
  1899. }
  1900. }
  1901. memset(sig, 0, sizeof(sig));
  1902. if (router_get_extrainfo_hash(s, digest) < 0 ||
  1903. router_append_dirobj_signature(sig, sizeof(sig), digest, DIGEST_LEN,
  1904. ident_key) < 0) {
  1905. log_warn(LD_BUG, "Could not append signature to extra-info "
  1906. "descriptor.");
  1907. goto err;
  1908. }
  1909. smartlist_add(chunks, tor_strdup(sig));
  1910. tor_free(s);
  1911. s = smartlist_join_strings(chunks, "", 0, NULL);
  1912. cp = s_dup = tor_strdup(s);
  1913. ei_tmp = extrainfo_parse_entry_from_string(cp, NULL, 1, NULL);
  1914. if (!ei_tmp) {
  1915. if (write_stats_to_extrainfo) {
  1916. log_warn(LD_GENERAL, "We just generated an extra-info descriptor "
  1917. "with statistics that we can't parse. Not "
  1918. "adding statistics to this or any future "
  1919. "extra-info descriptors.");
  1920. write_stats_to_extrainfo = 0;
  1921. result = extrainfo_dump_to_string(s_out, extrainfo, ident_key);
  1922. goto done;
  1923. } else {
  1924. log_warn(LD_BUG, "We just generated an extrainfo descriptor we "
  1925. "can't parse.");
  1926. goto err;
  1927. }
  1928. }
  1929. *s_out = s;
  1930. s = NULL; /* prevent free */
  1931. result = 0;
  1932. goto done;
  1933. err:
  1934. result = -1;
  1935. done:
  1936. tor_free(s);
  1937. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  1938. smartlist_free(chunks);
  1939. tor_free(s_dup);
  1940. extrainfo_free(ei_tmp);
  1941. return result;
  1942. }
  1943. /** Return true iff <b>s</b> is a legally valid server nickname. */
  1944. int
  1945. is_legal_nickname(const char *s)
  1946. {
  1947. size_t len;
  1948. tor_assert(s);
  1949. len = strlen(s);
  1950. return len > 0 && len <= MAX_NICKNAME_LEN &&
  1951. strspn(s,LEGAL_NICKNAME_CHARACTERS) == len;
  1952. }
  1953. /** Return true iff <b>s</b> is a legally valid server nickname or
  1954. * hex-encoded identity-key digest. */
  1955. int
  1956. is_legal_nickname_or_hexdigest(const char *s)
  1957. {
  1958. if (*s!='$')
  1959. return is_legal_nickname(s);
  1960. else
  1961. return is_legal_hexdigest(s);
  1962. }
  1963. /** Return true iff <b>s</b> is a legally valid hex-encoded identity-key
  1964. * digest. */
  1965. int
  1966. is_legal_hexdigest(const char *s)
  1967. {
  1968. size_t len;
  1969. tor_assert(s);
  1970. if (s[0] == '$') s++;
  1971. len = strlen(s);
  1972. if (len > HEX_DIGEST_LEN) {
  1973. if (s[HEX_DIGEST_LEN] == '=' ||
  1974. s[HEX_DIGEST_LEN] == '~') {
  1975. if (!is_legal_nickname(s+HEX_DIGEST_LEN+1))
  1976. return 0;
  1977. } else {
  1978. return 0;
  1979. }
  1980. }
  1981. return (len >= HEX_DIGEST_LEN &&
  1982. strspn(s,HEX_CHARACTERS)==HEX_DIGEST_LEN);
  1983. }
  1984. /** Set <b>buf</b> (which must have MAX_VERBOSE_NICKNAME_LEN+1 bytes) to the
  1985. * verbose representation of the identity of <b>router</b>. The format is:
  1986. * A dollar sign.
  1987. * The upper-case hexadecimal encoding of the SHA1 hash of router's identity.
  1988. * A "=" if the router is named; a "~" if it is not.
  1989. * The router's nickname.
  1990. **/
  1991. void
  1992. router_get_verbose_nickname(char *buf, const routerinfo_t *router)
  1993. {
  1994. buf[0] = '$';
  1995. base16_encode(buf+1, HEX_DIGEST_LEN+1, router->cache_info.identity_digest,
  1996. DIGEST_LEN);
  1997. buf[1+HEX_DIGEST_LEN] = router->is_named ? '=' : '~';
  1998. strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1);
  1999. }
  2000. /** Set <b>buf</b> (which must have MAX_VERBOSE_NICKNAME_LEN+1 bytes) to the
  2001. * verbose representation of the identity of <b>router</b>. The format is:
  2002. * A dollar sign.
  2003. * The upper-case hexadecimal encoding of the SHA1 hash of router's identity.
  2004. * A "=" if the router is named; a "~" if it is not.
  2005. * The router's nickname.
  2006. **/
  2007. void
  2008. routerstatus_get_verbose_nickname(char *buf, const routerstatus_t *router)
  2009. {
  2010. buf[0] = '$';
  2011. base16_encode(buf+1, HEX_DIGEST_LEN+1, router->identity_digest,
  2012. DIGEST_LEN);
  2013. buf[1+HEX_DIGEST_LEN] = router->is_named ? '=' : '~';
  2014. strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1);
  2015. }
  2016. /** Forget that we have issued any router-related warnings, so that we'll
  2017. * warn again if we see the same errors. */
  2018. void
  2019. router_reset_warnings(void)
  2020. {
  2021. if (warned_nonexistent_family) {
  2022. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  2023. smartlist_clear(warned_nonexistent_family);
  2024. }
  2025. }
  2026. /** Given a router purpose, convert it to a string. Don't call this on
  2027. * ROUTER_PURPOSE_UNKNOWN: The whole point of that value is that we don't
  2028. * know its string representation. */
  2029. const char *
  2030. router_purpose_to_string(uint8_t p)
  2031. {
  2032. switch (p)
  2033. {
  2034. case ROUTER_PURPOSE_GENERAL: return "general";
  2035. case ROUTER_PURPOSE_BRIDGE: return "bridge";
  2036. case ROUTER_PURPOSE_CONTROLLER: return "controller";
  2037. default:
  2038. tor_assert(0);
  2039. }
  2040. return NULL;
  2041. }
  2042. /** Given a string, convert it to a router purpose. */
  2043. uint8_t
  2044. router_purpose_from_string(const char *s)
  2045. {
  2046. if (!strcmp(s, "general"))
  2047. return ROUTER_PURPOSE_GENERAL;
  2048. else if (!strcmp(s, "bridge"))
  2049. return ROUTER_PURPOSE_BRIDGE;
  2050. else if (!strcmp(s, "controller"))
  2051. return ROUTER_PURPOSE_CONTROLLER;
  2052. else
  2053. return ROUTER_PURPOSE_UNKNOWN;
  2054. }
  2055. /** Release all static resources held in router.c */
  2056. void
  2057. router_free_all(void)
  2058. {
  2059. crypto_free_pk_env(onionkey);
  2060. crypto_free_pk_env(lastonionkey);
  2061. crypto_free_pk_env(server_identitykey);
  2062. crypto_free_pk_env(client_identitykey);
  2063. tor_mutex_free(key_lock);
  2064. routerinfo_free(desc_routerinfo);
  2065. extrainfo_free(desc_extrainfo);
  2066. crypto_free_pk_env(authority_signing_key);
  2067. authority_cert_free(authority_key_certificate);
  2068. crypto_free_pk_env(legacy_signing_key);
  2069. authority_cert_free(legacy_key_certificate);
  2070. if (warned_nonexistent_family) {
  2071. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  2072. smartlist_free(warned_nonexistent_family);
  2073. }
  2074. }