router.c 65 KB

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