router.c 68 KB

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