router.c 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. const char router_c_id[] =
  7. "$Id$";
  8. #define ROUTER_PRIVATE
  9. #include "or.h"
  10. /**
  11. * \file router.c
  12. * \brief OR functionality, including key maintenance, generating
  13. * and uploading server descriptors, retrying OR connections.
  14. **/
  15. extern long stats_n_seconds_working;
  16. /************************************************************/
  17. /*****
  18. * Key management: ORs only.
  19. *****/
  20. /** Private keys for this OR. There is also an SSL key managed by tortls.c.
  21. */
  22. static tor_mutex_t *key_lock=NULL;
  23. static time_t onionkey_set_at=0; /**< When was onionkey last changed? */
  24. /** Current private onionskin decryption key: used to decode CREATE cells. */
  25. static crypto_pk_env_t *onionkey=NULL;
  26. /** Previous private onionskin decription key: used to decode CREATE cells
  27. * generated by clients that have an older version of our descriptor. */
  28. static crypto_pk_env_t *lastonionkey=NULL;
  29. /** Private "identity key": used to sign directory info and TLS
  30. * certificates. Never changes. */
  31. static crypto_pk_env_t *identitykey=NULL;
  32. /** Digest of identitykey. */
  33. static char identitykey_digest[DIGEST_LEN];
  34. /** Signing key used for v3 directory material; only set for authorities. */
  35. static crypto_pk_env_t *authority_signing_key = NULL;
  36. /** Key certificate to authenticate v3 directory material; only set for
  37. * authorities. */
  38. static authority_cert_t *authority_key_certificate = NULL;
  39. /* (Note that v3 authorities also have a separate "authority identity key",
  40. * but this key is never actually loaded by the Tor process. Instead, it's
  41. * used by tor-gencert to sign new signing keys and make new key
  42. * certificates. */
  43. /** Replace the current onion key with <b>k</b>. Does not affect lastonionkey;
  44. * to update onionkey correctly, call rotate_onion_key().
  45. */
  46. static void
  47. set_onion_key(crypto_pk_env_t *k)
  48. {
  49. tor_mutex_acquire(key_lock);
  50. onionkey = k;
  51. onionkey_set_at = time(NULL);
  52. tor_mutex_release(key_lock);
  53. mark_my_descriptor_dirty();
  54. }
  55. /** Return the current onion key. Requires that the onion key has been
  56. * loaded or generated. */
  57. crypto_pk_env_t *
  58. get_onion_key(void)
  59. {
  60. tor_assert(onionkey);
  61. return onionkey;
  62. }
  63. /** Store a copy of the current onion key into *<b>key</b>, and a copy
  64. * of the most recent onion key into *<b>last</b>.
  65. */
  66. void
  67. dup_onion_keys(crypto_pk_env_t **key, crypto_pk_env_t **last)
  68. {
  69. tor_assert(key);
  70. tor_assert(last);
  71. tor_mutex_acquire(key_lock);
  72. tor_assert(onionkey);
  73. *key = crypto_pk_dup_key(onionkey);
  74. if (lastonionkey)
  75. *last = crypto_pk_dup_key(lastonionkey);
  76. else
  77. *last = NULL;
  78. tor_mutex_release(key_lock);
  79. }
  80. /** Return the time when the onion key was last set. This is either the time
  81. * when the process launched, or the time of the most recent key rotation since
  82. * the process launched.
  83. */
  84. time_t
  85. get_onion_key_set_at(void)
  86. {
  87. return onionkey_set_at;
  88. }
  89. /** Set the current identity key to k.
  90. */
  91. void
  92. set_identity_key(crypto_pk_env_t *k)
  93. {
  94. if (identitykey)
  95. crypto_free_pk_env(identitykey);
  96. identitykey = k;
  97. crypto_pk_get_digest(identitykey, identitykey_digest);
  98. }
  99. /** Returns the current identity key; requires that the identity key has been
  100. * set.
  101. */
  102. crypto_pk_env_t *
  103. get_identity_key(void)
  104. {
  105. tor_assert(identitykey);
  106. return identitykey;
  107. }
  108. /** Return true iff the identity key has been set. */
  109. int
  110. identity_key_is_set(void)
  111. {
  112. return identitykey != NULL;
  113. }
  114. /** Return the key certificate for this v3 (voting) authority, or NULL
  115. * if we have no such certificate. */
  116. authority_cert_t *
  117. get_my_v3_authority_cert(void)
  118. {
  119. return authority_key_certificate;
  120. }
  121. /** Return the v3 signing key for this v3 (voting) authority, or NULL
  122. * if we have no such key. */
  123. crypto_pk_env_t *
  124. get_my_v3_authority_signing_key(void)
  125. {
  126. return authority_signing_key;
  127. }
  128. /** Replace the previous onion key with the current onion key, and generate
  129. * a new previous onion key. Immediately after calling this function,
  130. * the OR should:
  131. * - schedule all previous cpuworkers to shut down _after_ processing
  132. * pending work. (This will cause fresh cpuworkers to be generated.)
  133. * - generate and upload a fresh routerinfo.
  134. */
  135. void
  136. rotate_onion_key(void)
  137. {
  138. char fname[512];
  139. char fname_prev[512];
  140. crypto_pk_env_t *prkey;
  141. or_state_t *state = get_or_state();
  142. time_t now;
  143. tor_snprintf(fname,sizeof(fname),
  144. "%s"PATH_SEPARATOR"keys"PATH_SEPARATOR"secret_onion_key",
  145. get_options()->DataDirectory);
  146. tor_snprintf(fname_prev,sizeof(fname_prev),
  147. "%s"PATH_SEPARATOR"keys"PATH_SEPARATOR"secret_onion_key.old",
  148. get_options()->DataDirectory);
  149. if (!(prkey = crypto_new_pk_env())) {
  150. log_err(LD_GENERAL,"Error constructing rotated onion key");
  151. goto error;
  152. }
  153. if (crypto_pk_generate_key(prkey)) {
  154. log_err(LD_BUG,"Error generating onion key");
  155. goto error;
  156. }
  157. if (file_status(fname) == FN_FILE) {
  158. if (replace_file(fname, fname_prev))
  159. goto error;
  160. }
  161. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  162. log_err(LD_FS,"Couldn't write generated onion key to \"%s\".", fname);
  163. goto error;
  164. }
  165. log_info(LD_GENERAL, "Rotating onion key");
  166. tor_mutex_acquire(key_lock);
  167. if (lastonionkey)
  168. crypto_free_pk_env(lastonionkey);
  169. lastonionkey = onionkey;
  170. onionkey = prkey;
  171. now = time(NULL);
  172. state->LastRotatedOnionKey = onionkey_set_at = now;
  173. tor_mutex_release(key_lock);
  174. mark_my_descriptor_dirty();
  175. or_state_mark_dirty(state, get_options()->AvoidDiskWrites ? now+3600 : 0);
  176. return;
  177. error:
  178. log_warn(LD_GENERAL, "Couldn't rotate onion key.");
  179. }
  180. /** Try to read an RSA key from <b>fname</b>. If <b>fname</b> doesn't exist
  181. * and <b>generate</b> is true, create a new RSA key and save it in
  182. * <b>fname</b>. Return the read/created key, or NULL on error. Log all
  183. * errors at level <b>severity</b>.
  184. */
  185. crypto_pk_env_t *
  186. init_key_from_file(const char *fname, int generate, int severity)
  187. {
  188. crypto_pk_env_t *prkey = NULL;
  189. FILE *file = NULL;
  190. if (!(prkey = crypto_new_pk_env())) {
  191. log(severity, LD_GENERAL,"Error constructing key");
  192. goto error;
  193. }
  194. switch (file_status(fname)) {
  195. case FN_DIR:
  196. case FN_ERROR:
  197. log(severity, LD_FS,"Can't read key from \"%s\"", fname);
  198. goto error;
  199. case FN_NOENT:
  200. if (generate) {
  201. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  202. fname);
  203. if (crypto_pk_generate_key(prkey)) {
  204. log(severity, LD_GENERAL,"Error generating onion key");
  205. goto error;
  206. }
  207. if (crypto_pk_check_key(prkey) <= 0) {
  208. log(severity, LD_GENERAL,"Generated key seems invalid");
  209. goto error;
  210. }
  211. log_info(LD_GENERAL, "Generated key seems valid");
  212. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  213. log(severity, LD_FS,
  214. "Couldn't write generated key to \"%s\".", fname);
  215. goto error;
  216. }
  217. } else {
  218. log_info(LD_GENERAL, "No key found in \"%s\"", fname);
  219. }
  220. return prkey;
  221. case FN_FILE:
  222. if (crypto_pk_read_private_key_from_filename(prkey, fname)) {
  223. log(severity, LD_GENERAL,"Error loading private key.");
  224. goto error;
  225. }
  226. return prkey;
  227. default:
  228. tor_assert(0);
  229. }
  230. error:
  231. if (prkey)
  232. crypto_free_pk_env(prkey);
  233. if (file)
  234. fclose(file);
  235. return NULL;
  236. }
  237. /** Load the v3 (voting) authority signing key and certificate from
  238. * <b>keydir</b>, if they are present. */
  239. /* XXXX020 maybe move to dirserv.c */
  240. static void
  241. init_v3_authority_keys(const char *keydir)
  242. {
  243. char *fname = NULL, *cert = NULL;
  244. const char *eos = NULL;
  245. size_t fname_len = strlen(keydir) + 64;
  246. crypto_pk_env_t *signing_key = NULL;
  247. authority_cert_t *parsed = NULL;
  248. fname = tor_malloc(fname_len);
  249. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"authority_signing_key",
  250. keydir);
  251. signing_key = init_key_from_file(fname, 0, LOG_INFO);
  252. if (!signing_key) {
  253. log_warn(LD_DIR, "No version 3 directory key found in %s", fname);
  254. goto done;
  255. }
  256. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"authority_certificate",
  257. keydir);
  258. cert = read_file_to_str(fname, 0, NULL);
  259. if (!cert) {
  260. log_warn(LD_DIR, "Signing key found, but no certificate found in %s",
  261. fname);
  262. goto done;
  263. }
  264. parsed = authority_cert_parse_from_string(cert, &eos);
  265. if (!parsed) {
  266. log_warn(LD_DIR, "Unable to parse certificate in %s", fname);
  267. goto done;
  268. }
  269. if (crypto_pk_cmp_keys(signing_key, parsed->signing_key) != 0) {
  270. log_warn(LD_DIR, "Stored signing key does not match signing key in "
  271. "certificate");
  272. goto done;
  273. }
  274. parsed->cache_info.signed_descriptor_body = cert;
  275. parsed->cache_info.signed_descriptor_len = eos-cert;
  276. cert = NULL;
  277. authority_key_certificate = parsed;
  278. authority_signing_key = signing_key;
  279. parsed = NULL;
  280. signing_key = NULL;
  281. done:
  282. tor_free(fname);
  283. tor_free(cert);
  284. if (signing_key)
  285. crypto_free_pk_env(signing_key);
  286. if (parsed)
  287. authority_cert_free(parsed);
  288. }
  289. /** Initialize all OR private keys, and the TLS context, as necessary.
  290. * On OPs, this only initializes the tls context. Return 0 on success,
  291. * or -1 if Tor should die.
  292. */
  293. int
  294. init_keys(void)
  295. {
  296. char keydir[512];
  297. char fingerprint[FINGERPRINT_LEN+1];
  298. /*nickname<space>fp\n\0 */
  299. char fingerprint_line[MAX_NICKNAME_LEN+FINGERPRINT_LEN+3];
  300. const char *mydesc, *datadir;
  301. crypto_pk_env_t *prkey;
  302. char digest[20];
  303. char *cp;
  304. or_options_t *options = get_options();
  305. or_state_t *state = get_or_state();
  306. authority_type_t type;
  307. if (!key_lock)
  308. key_lock = tor_mutex_new();
  309. /* OP's don't need persistent keys; just make up an identity and
  310. * initialize the TLS context. */
  311. if (!server_mode(options)) {
  312. if (!(prkey = crypto_new_pk_env()))
  313. return -1;
  314. if (crypto_pk_generate_key(prkey))
  315. return -1;
  316. set_identity_key(prkey);
  317. /* Create a TLS context; default the client nickname to "client". */
  318. if (tor_tls_context_new(get_identity_key(),
  319. options->Nickname ? options->Nickname : "client",
  320. MAX_SSL_KEY_LIFETIME) < 0) {
  321. log_err(LD_GENERAL,"Error creating TLS context for Tor client.");
  322. return -1;
  323. }
  324. return 0;
  325. }
  326. /* Make sure DataDirectory exists, and is private. */
  327. datadir = options->DataDirectory;
  328. if (check_private_dir(datadir, CPD_CREATE)) {
  329. return -1;
  330. }
  331. /* Check the key directory. */
  332. tor_snprintf(keydir,sizeof(keydir),"%s"PATH_SEPARATOR"keys", datadir);
  333. if (check_private_dir(keydir, CPD_CREATE)) {
  334. return -1;
  335. }
  336. /* 1. Read identity key. Make it if none is found. */
  337. tor_snprintf(keydir,sizeof(keydir),
  338. "%s"PATH_SEPARATOR"keys"PATH_SEPARATOR"secret_id_key",datadir);
  339. log_info(LD_GENERAL,"Reading/making identity key \"%s\"...",keydir);
  340. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  341. if (!prkey) return -1;
  342. set_identity_key(prkey);
  343. /* 1b. Read v3 directory authority key/cert information. */
  344. if (authdir_mode(options) && options->V3AuthoritativeDir)
  345. init_v3_authority_keys(keydir);
  346. /* 2. Read onion key. Make it if none is found. */
  347. tor_snprintf(keydir,sizeof(keydir),
  348. "%s"PATH_SEPARATOR"keys"PATH_SEPARATOR"secret_onion_key",datadir);
  349. log_info(LD_GENERAL,"Reading/making onion key \"%s\"...",keydir);
  350. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  351. if (!prkey) return -1;
  352. set_onion_key(prkey);
  353. if (state->LastRotatedOnionKey > 100) { /* allow for some parsing slop. */
  354. onionkey_set_at = state->LastRotatedOnionKey;
  355. } else {
  356. /* We have no LastRotatedOnionKey set; either we just created the key
  357. * or it's a holdover from 0.1.2.4-alpha-dev or earlier. In either case,
  358. * start the clock ticking now so that we will eventually rotate it even
  359. * if we don't stay up for a full MIN_ONION_KEY_LIFETIME. */
  360. state->LastRotatedOnionKey = onionkey_set_at = time(NULL);
  361. or_state_mark_dirty(state, options->AvoidDiskWrites ? time(NULL)+3600 : 0);
  362. }
  363. tor_snprintf(keydir,sizeof(keydir),
  364. "%s"PATH_SEPARATOR"keys"PATH_SEPARATOR"secret_onion_key.old",datadir);
  365. if (file_status(keydir) == FN_FILE) {
  366. prkey = init_key_from_file(keydir, 1, LOG_ERR);
  367. if (prkey)
  368. lastonionkey = prkey;
  369. }
  370. /* 3. Initialize link key and TLS context. */
  371. if (tor_tls_context_new(get_identity_key(), options->Nickname,
  372. MAX_SSL_KEY_LIFETIME) < 0) {
  373. log_err(LD_GENERAL,"Error initializing TLS context");
  374. return -1;
  375. }
  376. /* 4. Build our router descriptor. */
  377. /* Must be called after keys are initialized. */
  378. mydesc = router_get_my_descriptor();
  379. if (authdir_mode(options)) {
  380. const char *m;
  381. routerinfo_t *ri;
  382. /* We need to add our own fingerprint so it gets recognized. */
  383. if (dirserv_add_own_fingerprint(options->Nickname, get_identity_key())) {
  384. log_err(LD_GENERAL,"Error adding own fingerprint to approved set");
  385. return -1;
  386. }
  387. if (!mydesc) {
  388. log_err(LD_GENERAL,"Error initializing descriptor.");
  389. return -1;
  390. }
  391. ri = router_parse_entry_from_string(mydesc, NULL, 1);
  392. if (!ri) {
  393. log_err(LD_GENERAL,"Generated a routerinfo we couldn't parse.");
  394. return -1;
  395. }
  396. if (dirserv_add_descriptor(ri, &m) < 0) {
  397. log_err(LD_GENERAL,"Unable to add own descriptor to directory: %s",
  398. m?m:"<unknown error>");
  399. return -1;
  400. }
  401. }
  402. /* 5. Dump fingerprint to 'fingerprint' */
  403. tor_snprintf(keydir,sizeof(keydir),"%s"PATH_SEPARATOR"fingerprint", datadir);
  404. log_info(LD_GENERAL,"Dumping fingerprint to \"%s\"...",keydir);
  405. if (crypto_pk_get_fingerprint(get_identity_key(), fingerprint, 1)<0) {
  406. log_err(LD_GENERAL,"Error computing fingerprint");
  407. return -1;
  408. }
  409. tor_assert(strlen(options->Nickname) <= MAX_NICKNAME_LEN);
  410. if (tor_snprintf(fingerprint_line, sizeof(fingerprint_line),
  411. "%s %s\n",options->Nickname, fingerprint) < 0) {
  412. log_err(LD_GENERAL,"Error writing fingerprint line");
  413. return -1;
  414. }
  415. /* Check whether we need to write the fingerprint file. */
  416. cp = NULL;
  417. if (file_status(keydir) == FN_FILE)
  418. cp = read_file_to_str(keydir, 0, NULL);
  419. if (!cp || strcmp(cp, fingerprint_line)) {
  420. if (write_str_to_file(keydir, fingerprint_line, 0)) {
  421. log_err(LD_FS, "Error writing fingerprint line to file");
  422. return -1;
  423. }
  424. }
  425. tor_free(cp);
  426. log(LOG_NOTICE, LD_GENERAL,
  427. "Your Tor server's identity key fingerprint is '%s %s'",
  428. options->Nickname, fingerprint);
  429. if (!authdir_mode(options))
  430. return 0;
  431. /* 6. [authdirserver only] load approved-routers file */
  432. if (dirserv_load_fingerprint_file() < 0) {
  433. log_err(LD_GENERAL,"Error loading fingerprints");
  434. return -1;
  435. }
  436. /* 6b. [authdirserver only] add own key to approved directories. */
  437. crypto_pk_get_digest(get_identity_key(), digest);
  438. type = ((options->V1AuthoritativeDir ? V1_AUTHORITY : 0) |
  439. (options->V2AuthoritativeDir ? V2_AUTHORITY : 0) |
  440. (options->BridgeAuthoritativeDir ? BRIDGE_AUTHORITY : 0) |
  441. (options->HSAuthoritativeDir ? HIDSERV_AUTHORITY : 0));
  442. if (!router_digest_is_trusted_dir(digest)) {
  443. add_trusted_dir_server(options->Nickname, NULL,
  444. (uint16_t)options->DirPort,
  445. (uint16_t)options->ORPort,
  446. digest,
  447. type);
  448. }
  449. return 0; /* success */
  450. }
  451. /* Keep track of whether we should upload our server descriptor,
  452. * and what type of server we are.
  453. */
  454. /** Whether we can reach our ORPort from the outside. */
  455. static int can_reach_or_port = 0;
  456. /** Whether we can reach our DirPort from the outside. */
  457. static int can_reach_dir_port = 0;
  458. /** Forget what we have learned about our reachability status. */
  459. void
  460. router_reset_reachability(void)
  461. {
  462. can_reach_or_port = can_reach_dir_port = 0;
  463. }
  464. /** Return 1 if ORPort is known reachable; else return 0. */
  465. int
  466. check_whether_orport_reachable(void)
  467. {
  468. or_options_t *options = get_options();
  469. return options->AssumeReachable ||
  470. can_reach_or_port;
  471. }
  472. /** Return 1 if we don't have a dirport configured, or if it's reachable. */
  473. int
  474. check_whether_dirport_reachable(void)
  475. {
  476. or_options_t *options = get_options();
  477. return !options->DirPort ||
  478. options->AssumeReachable ||
  479. we_are_hibernating() ||
  480. can_reach_dir_port;
  481. }
  482. /** Look at a variety of factors, and return 0 if we don't want to
  483. * advertise the fact that we have a DirPort open. Else return the
  484. * DirPort we want to advertise.
  485. *
  486. * Log a helpful message if we change our mind about whether to publish
  487. * a DirPort.
  488. */
  489. static int
  490. decide_to_advertise_dirport(or_options_t *options, routerinfo_t *router)
  491. {
  492. static int advertising=1; /* start out assuming we will advertise */
  493. int new_choice=1;
  494. const char *reason = NULL;
  495. /* Section one: reasons to publish or not publish that aren't
  496. * worth mentioning to the user, either because they're obvious
  497. * or because they're normal behavior. */
  498. if (!router->dir_port) /* short circuit the rest of the function */
  499. return 0;
  500. if (authdir_mode(options)) /* always publish */
  501. return router->dir_port;
  502. if (we_are_hibernating())
  503. return 0;
  504. if (!check_whether_dirport_reachable())
  505. return 0;
  506. /* Section two: reasons to publish or not publish that the user
  507. * might find surprising. These are generally config options that
  508. * make us choose not to publish. */
  509. if (accounting_is_enabled(options)) {
  510. /* if we might potentially hibernate */
  511. new_choice = 0;
  512. reason = "AccountingMax enabled";
  513. } else if (router->bandwidthrate < 51200) {
  514. /* if we're advertising a small amount */
  515. new_choice = 0;
  516. reason = "BandwidthRate under 50KB";
  517. }
  518. if (advertising != new_choice) {
  519. if (new_choice == 1) {
  520. log(LOG_NOTICE, LD_DIR, "Advertising DirPort as %d", router->dir_port);
  521. } else {
  522. tor_assert(reason);
  523. log(LOG_NOTICE, LD_DIR, "Not advertising DirPort (Reason: %s)", reason);
  524. }
  525. advertising = new_choice;
  526. }
  527. return advertising ? router->dir_port : 0;
  528. }
  529. /** Some time has passed, or we just got new directory information.
  530. * See if we currently believe our ORPort or DirPort to be
  531. * unreachable. If so, launch a new test for it.
  532. *
  533. * For ORPort, we simply try making a circuit that ends at ourselves.
  534. * Success is noticed in onionskin_answer().
  535. *
  536. * For DirPort, we make a connection via Tor to our DirPort and ask
  537. * for our own server descriptor.
  538. * Success is noticed in connection_dir_client_reached_eof().
  539. */
  540. void
  541. consider_testing_reachability(int test_or, int test_dir)
  542. {
  543. routerinfo_t *me = router_get_my_routerinfo();
  544. int orport_reachable = check_whether_orport_reachable();
  545. if (!me)
  546. return;
  547. if (test_or && (!orport_reachable || !circuit_enough_testing_circs())) {
  548. log_info(LD_CIRC, "Testing %s of my ORPort: %s:%d.",
  549. !orport_reachable ? "reachability" : "bandwidth",
  550. me->address, me->or_port);
  551. circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, 0, me, 0, 1, 1);
  552. control_event_server_status(LOG_NOTICE,
  553. "CHECKING_REACHABILITY ORADDRESS=%s:%d",
  554. me->address, me->or_port);
  555. }
  556. if (test_dir && !check_whether_dirport_reachable() &&
  557. !connection_get_by_type_addr_port_purpose(
  558. CONN_TYPE_DIR, me->addr, me->dir_port,
  559. DIR_PURPOSE_FETCH_SERVERDESC)) {
  560. /* ask myself, via tor, for my server descriptor. */
  561. directory_initiate_command(me->address, me->addr,
  562. me->or_port, me->dir_port,
  563. 0, me->cache_info.identity_digest,
  564. DIR_PURPOSE_FETCH_SERVERDESC,
  565. 1, "authority", NULL, 0);
  566. control_event_server_status(LOG_NOTICE,
  567. "CHECKING_REACHABILITY DIRADDRESS=%s:%d",
  568. me->address, me->dir_port);
  569. }
  570. }
  571. /** Annotate that we found our ORPort reachable. */
  572. void
  573. router_orport_found_reachable(void)
  574. {
  575. if (!can_reach_or_port) {
  576. routerinfo_t *me = router_get_my_routerinfo();
  577. log_notice(LD_OR,"Self-testing indicates your ORPort is reachable from "
  578. "the outside. Excellent.%s",
  579. get_options()->_PublishServerDescriptor != NO_AUTHORITY ?
  580. " Publishing server descriptor." : "");
  581. can_reach_or_port = 1;
  582. mark_my_descriptor_dirty();
  583. if (!me)
  584. return;
  585. control_event_server_status(LOG_NOTICE,
  586. "REACHABILITY_SUCCEEDED ORADDRESS=%s:%d",
  587. me->address, me->dir_port);
  588. }
  589. }
  590. /** Annotate that we found our DirPort reachable. */
  591. void
  592. router_dirport_found_reachable(void)
  593. {
  594. if (!can_reach_dir_port) {
  595. routerinfo_t *me = router_get_my_routerinfo();
  596. log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
  597. "from the outside. Excellent.");
  598. can_reach_dir_port = 1;
  599. mark_my_descriptor_dirty();
  600. if (!me)
  601. return;
  602. control_event_server_status(LOG_NOTICE,
  603. "REACHABILITY_SUCCEEDED DIRADDRESS=%s:%d",
  604. me->address, me->dir_port);
  605. }
  606. }
  607. /** We have enough testing circuits open. Send a bunch of "drop"
  608. * cells down each of them, to exercise our bandwidth. */
  609. void
  610. router_perform_bandwidth_test(int num_circs, time_t now)
  611. {
  612. int num_cells = (int)(get_options()->BandwidthRate * 10 / CELL_NETWORK_SIZE);
  613. int max_cells = num_cells < CIRCWINDOW_START ?
  614. num_cells : CIRCWINDOW_START;
  615. int cells_per_circuit = max_cells / num_circs;
  616. origin_circuit_t *circ = NULL;
  617. log_notice(LD_OR,"Performing bandwidth self-test...done.");
  618. while ((circ = circuit_get_next_by_pk_and_purpose(circ, NULL,
  619. CIRCUIT_PURPOSE_TESTING))) {
  620. /* dump cells_per_circuit drop cells onto this circ */
  621. int i = cells_per_circuit;
  622. if (circ->_base.state != CIRCUIT_STATE_OPEN)
  623. continue;
  624. circ->_base.timestamp_dirty = now;
  625. while (i-- > 0) {
  626. if (relay_send_command_from_edge(0, TO_CIRCUIT(circ),
  627. RELAY_COMMAND_DROP,
  628. NULL, 0, circ->cpath->prev)<0) {
  629. return; /* stop if error */
  630. }
  631. }
  632. }
  633. }
  634. /** Return true iff we believe ourselves to be an authoritative
  635. * directory server.
  636. */
  637. int
  638. authdir_mode(or_options_t *options)
  639. {
  640. return options->AuthoritativeDir != 0;
  641. }
  642. /** Return true iff we believe ourselves to be a v1 authoritative
  643. * directory server.
  644. */
  645. int
  646. authdir_mode_v1(or_options_t *options)
  647. {
  648. return authdir_mode(options) && options->V1AuthoritativeDir != 0;
  649. }
  650. /** Return true iff we believe ourselves to be a v2 authoritative
  651. * directory server.
  652. */
  653. int
  654. authdir_mode_v2(or_options_t *options)
  655. {
  656. return authdir_mode(options) && options->V2AuthoritativeDir != 0;
  657. }
  658. /** Return true iff we are an authoritative directory server that
  659. * handles descriptors -- including receiving posts, creating directories,
  660. * and testing reachability.
  661. */
  662. int
  663. authdir_mode_handles_descs(or_options_t *options)
  664. {
  665. return authdir_mode_v1(options) || authdir_mode_v2(options);
  666. }
  667. /** Return true iff we believe ourselves to be a bridge authoritative
  668. * directory server.
  669. */
  670. int
  671. authdir_mode_bridge(or_options_t *options)
  672. {
  673. return authdir_mode(options) && options->BridgeAuthoritativeDir != 0;
  674. }
  675. /** Return true iff we try to stay connected to all ORs at once.
  676. */
  677. int
  678. clique_mode(or_options_t *options)
  679. {
  680. return authdir_mode_handles_descs(options);
  681. }
  682. /** Return true iff we are trying to be a server.
  683. */
  684. int
  685. server_mode(or_options_t *options)
  686. {
  687. if (options->ClientOnly) return 0;
  688. return (options->ORPort != 0 || options->ORListenAddress);
  689. }
  690. /** Remember if we've advertised ourselves to the dirservers. */
  691. static int server_is_advertised=0;
  692. /** Return true iff we have published our descriptor lately.
  693. */
  694. int
  695. advertised_server_mode(void)
  696. {
  697. return server_is_advertised;
  698. }
  699. /**
  700. * Called with a boolean: set whether we have recently published our
  701. * descriptor.
  702. */
  703. static void
  704. set_server_advertised(int s)
  705. {
  706. server_is_advertised = s;
  707. }
  708. /** Return true iff we are trying to be a socks proxy. */
  709. int
  710. proxy_mode(or_options_t *options)
  711. {
  712. return (options->SocksPort != 0 || options->SocksListenAddress);
  713. }
  714. /** Decide if we're a publishable server. We are a publishable server if:
  715. * - We don't have the ClientOnly option set
  716. * and
  717. * - We have the PublishServerDescriptor option set to non-empty
  718. * and
  719. * - We have ORPort set
  720. * and
  721. * - We believe we are reachable from the outside; or
  722. * - We are an authoritative directory server.
  723. */
  724. static int
  725. decide_if_publishable_server(void)
  726. {
  727. or_options_t *options = get_options();
  728. if (options->ClientOnly)
  729. return 0;
  730. if (options->_PublishServerDescriptor == NO_AUTHORITY)
  731. return 0;
  732. if (!server_mode(options))
  733. return 0;
  734. if (authdir_mode(options))
  735. return 1;
  736. return check_whether_orport_reachable();
  737. }
  738. /** Initiate server descriptor upload as reasonable (if server is publishable,
  739. * etc). <b>force</b> is as for router_upload_dir_desc_to_dirservers.
  740. *
  741. * We need to rebuild the descriptor if it's dirty even if we're not
  742. * uploading, because our reachability testing *uses* our descriptor to
  743. * determine what IP address and ports to test.
  744. */
  745. void
  746. consider_publishable_server(int force)
  747. {
  748. int rebuilt;
  749. if (!server_mode(get_options()))
  750. return;
  751. rebuilt = router_rebuild_descriptor(0);
  752. if (decide_if_publishable_server()) {
  753. set_server_advertised(1);
  754. if (rebuilt == 0)
  755. router_upload_dir_desc_to_dirservers(force);
  756. } else {
  757. set_server_advertised(0);
  758. }
  759. }
  760. /*
  761. * Clique maintenance -- to be phased out.
  762. */
  763. /** Return true iff we believe this OR tries to keep connections open
  764. * to all other ORs. */
  765. int
  766. router_is_clique_mode(routerinfo_t *router)
  767. {
  768. if (router_digest_is_trusted_dir(router->cache_info.identity_digest))
  769. return 1;
  770. return 0;
  771. }
  772. /*
  773. * OR descriptor generation.
  774. */
  775. /** My routerinfo. */
  776. static routerinfo_t *desc_routerinfo = NULL;
  777. /** My extrainfo */
  778. static extrainfo_t *desc_extrainfo = NULL;
  779. /** Since when has our descriptor been "clean"? 0 if we need to regenerate it
  780. * now. */
  781. static time_t desc_clean_since = 0;
  782. /** Boolean: do we need to regenerate the above? */
  783. static int desc_needs_upload = 0;
  784. /** OR only: If <b>force</b> is true, or we haven't uploaded this
  785. * descriptor successfully yet, try to upload our signed descriptor to
  786. * all the directory servers we know about.
  787. */
  788. void
  789. router_upload_dir_desc_to_dirservers(int force)
  790. {
  791. routerinfo_t *ri;
  792. extrainfo_t *ei;
  793. char *msg;
  794. size_t desc_len, extra_len = 0, total_len;
  795. authority_type_t auth = get_options()->_PublishServerDescriptor;
  796. ri = router_get_my_routerinfo();
  797. if (!ri) {
  798. log_info(LD_GENERAL, "No descriptor; skipping upload");
  799. return;
  800. }
  801. ei = router_get_my_extrainfo();
  802. if (auth == NO_AUTHORITY)
  803. return;
  804. if (!force && !desc_needs_upload)
  805. return;
  806. desc_needs_upload = 0;
  807. desc_len = ri->cache_info.signed_descriptor_len;
  808. extra_len = ei ? ei->cache_info.signed_descriptor_len : 0;
  809. total_len = desc_len + extra_len + 1;
  810. msg = tor_malloc(total_len);
  811. memcpy(msg, ri->cache_info.signed_descriptor_body, desc_len);
  812. if (ei) {
  813. memcpy(msg+desc_len, ei->cache_info.signed_descriptor_body, extra_len);
  814. }
  815. msg[desc_len+extra_len] = 0;
  816. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR, auth,
  817. msg, desc_len, extra_len);
  818. tor_free(msg);
  819. }
  820. /** OR only: Check whether my exit policy says to allow connection to
  821. * conn. Return 0 if we accept; non-0 if we reject.
  822. */
  823. int
  824. router_compare_to_my_exit_policy(edge_connection_t *conn)
  825. {
  826. if (!router_get_my_routerinfo()) /* make sure desc_routerinfo exists */
  827. return -1;
  828. /* make sure it's resolved to something. this way we can't get a
  829. 'maybe' below. */
  830. if (!conn->_base.addr)
  831. return -1;
  832. return compare_addr_to_addr_policy(conn->_base.addr, conn->_base.port,
  833. desc_routerinfo->exit_policy) != ADDR_POLICY_ACCEPTED;
  834. }
  835. /** Return true iff I'm a server and <b>digest</b> is equal to
  836. * my identity digest. */
  837. int
  838. router_digest_is_me(const char *digest)
  839. {
  840. return identitykey && !memcmp(identitykey_digest, digest, DIGEST_LEN);
  841. }
  842. /** A wrapper around router_digest_is_me(). */
  843. int
  844. router_is_me(routerinfo_t *router)
  845. {
  846. return router_digest_is_me(router->cache_info.identity_digest);
  847. }
  848. /** Return true iff <b>fp</b> is a hex fingerprint of my identity digest. */
  849. int
  850. router_fingerprint_is_me(const char *fp)
  851. {
  852. char digest[DIGEST_LEN];
  853. if (strlen(fp) == HEX_DIGEST_LEN &&
  854. base16_decode(digest, sizeof(digest), fp, HEX_DIGEST_LEN) == 0)
  855. return router_digest_is_me(digest);
  856. return 0;
  857. }
  858. /** Return a routerinfo for this OR, rebuilding a fresh one if
  859. * necessary. Return NULL on error, or if called on an OP. */
  860. routerinfo_t *
  861. router_get_my_routerinfo(void)
  862. {
  863. if (!server_mode(get_options()))
  864. return NULL;
  865. if (router_rebuild_descriptor(0))
  866. return NULL;
  867. return desc_routerinfo;
  868. }
  869. /** OR only: Return a signed server descriptor for this OR, rebuilding a fresh
  870. * one if necessary. Return NULL on error.
  871. */
  872. const char *
  873. router_get_my_descriptor(void)
  874. {
  875. const char *body;
  876. if (!router_get_my_routerinfo())
  877. return NULL;
  878. /* Make sure this is nul-terminated. */
  879. tor_assert(desc_routerinfo->cache_info.saved_location == SAVED_NOWHERE);
  880. body = signed_descriptor_get_body(&desc_routerinfo->cache_info);
  881. tor_assert(!body[desc_routerinfo->cache_info.signed_descriptor_len]);
  882. log_debug(LD_GENERAL,"my desc is '%s'", body);
  883. return body;
  884. }
  885. /* Return the extrainfo document for this OR, or NULL if we have none.
  886. * Rebuilt it (and the server descriptor) if necessary. */
  887. extrainfo_t *
  888. router_get_my_extrainfo(void)
  889. {
  890. if (!server_mode(get_options()))
  891. return NULL;
  892. if (router_rebuild_descriptor(0))
  893. return NULL;
  894. return desc_extrainfo;
  895. }
  896. /** A list of nicknames that we've warned about including in our family
  897. * declaration verbatim rather than as digests. */
  898. static smartlist_t *warned_nonexistent_family = NULL;
  899. static int router_guess_address_from_dir_headers(uint32_t *guess);
  900. /** Return our current best guess at our address, either because
  901. * it's configured in torrc, or because we've learned it from
  902. * dirserver headers. */
  903. int
  904. router_pick_published_address(or_options_t *options, uint32_t *addr)
  905. {
  906. if (resolve_my_address(LOG_INFO, options, addr, NULL) < 0) {
  907. log_info(LD_CONFIG, "Could not determine our address locally. "
  908. "Checking if directory headers provide any hints.");
  909. if (router_guess_address_from_dir_headers(addr) < 0) {
  910. log_info(LD_CONFIG, "No hints from directory headers either. "
  911. "Will try again later.");
  912. return -1;
  913. }
  914. }
  915. return 0;
  916. }
  917. /** If <b>force</b> is true, or our descriptor is out-of-date, rebuild a fresh
  918. * routerinfo, signed server descriptor, and extra-info document for this OR.
  919. * Return 0 on success, -1 on temporary error.
  920. */
  921. int
  922. router_rebuild_descriptor(int force)
  923. {
  924. routerinfo_t *ri;
  925. extrainfo_t *ei;
  926. uint32_t addr;
  927. char platform[256];
  928. int hibernating = we_are_hibernating();
  929. or_options_t *options = get_options();
  930. if (desc_clean_since && !force)
  931. return 0;
  932. if (router_pick_published_address(options, &addr) < 0) {
  933. /* Stop trying to rebuild our descriptor every second. We'll
  934. * learn that it's time to try again when server_has_changed_ip()
  935. * marks it dirty. */
  936. desc_clean_since = time(NULL);
  937. return -1;
  938. }
  939. ri = tor_malloc_zero(sizeof(routerinfo_t));
  940. ri->routerlist_index = -1;
  941. ri->address = tor_dup_addr(addr);
  942. ri->nickname = tor_strdup(options->Nickname);
  943. ri->addr = addr;
  944. ri->or_port = options->ORPort;
  945. ri->dir_port = options->DirPort;
  946. ri->cache_info.published_on = time(NULL);
  947. ri->onion_pkey = crypto_pk_dup_key(get_onion_key()); /* must invoke from
  948. * main thread */
  949. ri->identity_pkey = crypto_pk_dup_key(get_identity_key());
  950. if (crypto_pk_get_digest(ri->identity_pkey,
  951. ri->cache_info.identity_digest)<0) {
  952. routerinfo_free(ri);
  953. return -1;
  954. }
  955. get_platform_str(platform, sizeof(platform));
  956. ri->platform = tor_strdup(platform);
  957. /* compute ri->bandwidthrate as the min of various options */
  958. ri->bandwidthrate = (int)options->BandwidthRate;
  959. if (ri->bandwidthrate > options->MaxAdvertisedBandwidth)
  960. ri->bandwidthrate = (int)options->MaxAdvertisedBandwidth;
  961. if (options->RelayBandwidthRate > 0 &&
  962. ri->bandwidthrate > options->RelayBandwidthRate)
  963. ri->bandwidthrate = (int)options->RelayBandwidthRate;
  964. /* and compute ri->bandwidthburst similarly */
  965. ri->bandwidthburst = (int)options->BandwidthBurst;
  966. if (options->RelayBandwidthBurst > 0 &&
  967. ri->bandwidthburst > options->RelayBandwidthBurst)
  968. ri->bandwidthburst = (int)options->RelayBandwidthBurst;
  969. ri->bandwidthcapacity = hibernating ? 0 : rep_hist_bandwidth_assess();
  970. policies_parse_exit_policy(options->ExitPolicy, &ri->exit_policy,
  971. options->ExitPolicyRejectPrivate);
  972. if (desc_routerinfo) { /* inherit values */
  973. ri->is_valid = desc_routerinfo->is_valid;
  974. ri->is_running = desc_routerinfo->is_running;
  975. ri->is_named = desc_routerinfo->is_named;
  976. }
  977. if (authdir_mode(options))
  978. ri->is_valid = ri->is_named = 1; /* believe in yourself */
  979. if (options->MyFamily) {
  980. smartlist_t *family;
  981. if (!warned_nonexistent_family)
  982. warned_nonexistent_family = smartlist_create();
  983. family = smartlist_create();
  984. ri->declared_family = smartlist_create();
  985. smartlist_split_string(family, options->MyFamily, ",",
  986. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  987. SMARTLIST_FOREACH(family, char *, name,
  988. {
  989. routerinfo_t *member;
  990. if (!strcasecmp(name, options->Nickname))
  991. member = ri;
  992. else
  993. member = router_get_by_nickname(name, 1);
  994. if (!member) {
  995. if (!smartlist_string_isin(warned_nonexistent_family, name) &&
  996. !is_legal_hexdigest(name)) {
  997. log_warn(LD_CONFIG,
  998. "I have no descriptor for the router named \"%s\" "
  999. "in my declared family; I'll use the nickname as is, but "
  1000. "this may confuse clients.", name);
  1001. smartlist_add(warned_nonexistent_family, tor_strdup(name));
  1002. }
  1003. smartlist_add(ri->declared_family, name);
  1004. name = NULL;
  1005. } else if (router_is_me(member)) {
  1006. /* Don't list ourself in our own family; that's redundant */
  1007. } else {
  1008. char *fp = tor_malloc(HEX_DIGEST_LEN+2);
  1009. fp[0] = '$';
  1010. base16_encode(fp+1,HEX_DIGEST_LEN+1,
  1011. member->cache_info.identity_digest, DIGEST_LEN);
  1012. smartlist_add(ri->declared_family, fp);
  1013. if (smartlist_string_isin(warned_nonexistent_family, name))
  1014. smartlist_string_remove(warned_nonexistent_family, name);
  1015. }
  1016. tor_free(name);
  1017. });
  1018. /* remove duplicates from the list */
  1019. smartlist_sort_strings(ri->declared_family);
  1020. smartlist_uniq_strings(ri->declared_family);
  1021. smartlist_free(family);
  1022. }
  1023. /* Now generate the extrainfo. */
  1024. ei = tor_malloc_zero(sizeof(extrainfo_t));
  1025. ei->cache_info.is_extrainfo = 1;
  1026. strlcpy(ei->nickname, get_options()->Nickname, sizeof(ei->nickname));
  1027. ei->cache_info.published_on = ri->cache_info.published_on;
  1028. memcpy(ei->cache_info.identity_digest, ri->cache_info.identity_digest,
  1029. DIGEST_LEN);
  1030. ei->cache_info.signed_descriptor_body = tor_malloc(8192);
  1031. if (extrainfo_dump_to_string(ei->cache_info.signed_descriptor_body, 8192,
  1032. ei, get_identity_key()) < 0) {
  1033. log_warn(LD_BUG, "Couldn't generate extra-info descriptor.");
  1034. return -1;
  1035. }
  1036. ei->cache_info.signed_descriptor_len =
  1037. strlen(ei->cache_info.signed_descriptor_body);
  1038. router_get_extrainfo_hash(ei->cache_info.signed_descriptor_body,
  1039. ei->cache_info.signed_descriptor_digest);
  1040. /* Now finish the router descriptor. */
  1041. memcpy(ri->cache_info.extra_info_digest,
  1042. ei->cache_info.signed_descriptor_digest,
  1043. DIGEST_LEN);
  1044. ri->cache_info.signed_descriptor_body = tor_malloc(8192);
  1045. if (router_dump_router_to_string(ri->cache_info.signed_descriptor_body, 8192,
  1046. ri, get_identity_key())<0) {
  1047. log_warn(LD_BUG, "Couldn't generate router descriptor.");
  1048. return -1;
  1049. }
  1050. ri->cache_info.signed_descriptor_len =
  1051. strlen(ri->cache_info.signed_descriptor_body);
  1052. router_get_router_hash(ri->cache_info.signed_descriptor_body,
  1053. ri->cache_info.signed_descriptor_digest);
  1054. tor_assert(! routerinfo_incompatible_with_extrainfo(ri, ei, NULL));
  1055. if (desc_routerinfo)
  1056. routerinfo_free(desc_routerinfo);
  1057. desc_routerinfo = ri;
  1058. if (desc_extrainfo)
  1059. extrainfo_free(desc_extrainfo);
  1060. desc_extrainfo = ei;
  1061. desc_clean_since = time(NULL);
  1062. desc_needs_upload = 1;
  1063. control_event_my_descriptor_changed();
  1064. return 0;
  1065. }
  1066. /** Mark descriptor out of date if it's older than <b>when</b> */
  1067. void
  1068. mark_my_descriptor_dirty_if_older_than(time_t when)
  1069. {
  1070. if (desc_clean_since < when)
  1071. mark_my_descriptor_dirty();
  1072. }
  1073. /** Call when the current descriptor is out of date. */
  1074. void
  1075. mark_my_descriptor_dirty(void)
  1076. {
  1077. desc_clean_since = 0;
  1078. }
  1079. /** How frequently will we republish our descriptor because of large (factor
  1080. * of 2) shifts in estimated bandwidth? */
  1081. #define MAX_BANDWIDTH_CHANGE_FREQ (20*60)
  1082. /** Check whether bandwidth has changed a lot since the last time we announced
  1083. * bandwidth. If so, mark our descriptor dirty. */
  1084. void
  1085. check_descriptor_bandwidth_changed(time_t now)
  1086. {
  1087. static time_t last_changed = 0;
  1088. uint64_t prev, cur;
  1089. if (!desc_routerinfo)
  1090. return;
  1091. prev = desc_routerinfo->bandwidthcapacity;
  1092. cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess();
  1093. if ((prev != cur && (!prev || !cur)) ||
  1094. cur > prev*2 ||
  1095. cur < prev/2) {
  1096. if (last_changed+MAX_BANDWIDTH_CHANGE_FREQ < now) {
  1097. log_info(LD_GENERAL,
  1098. "Measured bandwidth has changed; rebuilding descriptor.");
  1099. mark_my_descriptor_dirty();
  1100. last_changed = now;
  1101. }
  1102. }
  1103. }
  1104. /** Note at log level severity that our best guess of address has changed from
  1105. * <b>prev</b> to <b>cur</b>. */
  1106. static void
  1107. log_addr_has_changed(int severity, uint32_t prev, uint32_t cur)
  1108. {
  1109. char addrbuf_prev[INET_NTOA_BUF_LEN];
  1110. char addrbuf_cur[INET_NTOA_BUF_LEN];
  1111. struct in_addr in_prev;
  1112. struct in_addr in_cur;
  1113. in_prev.s_addr = htonl(prev);
  1114. tor_inet_ntoa(&in_prev, addrbuf_prev, sizeof(addrbuf_prev));
  1115. in_cur.s_addr = htonl(cur);
  1116. tor_inet_ntoa(&in_cur, addrbuf_cur, sizeof(addrbuf_cur));
  1117. if (prev)
  1118. log_fn(severity, LD_GENERAL,
  1119. "Our IP Address has changed from %s to %s; "
  1120. "rebuilding descriptor.",
  1121. addrbuf_prev, addrbuf_cur);
  1122. else
  1123. log_notice(LD_GENERAL,
  1124. "Guessed our IP address as %s.",
  1125. addrbuf_cur);
  1126. }
  1127. /** Check whether our own address as defined by the Address configuration
  1128. * has changed. This is for routers that get their address from a service
  1129. * like dyndns. If our address has changed, mark our descriptor dirty. */
  1130. void
  1131. check_descriptor_ipaddress_changed(time_t now)
  1132. {
  1133. uint32_t prev, cur;
  1134. or_options_t *options = get_options();
  1135. (void) now;
  1136. if (!desc_routerinfo)
  1137. return;
  1138. prev = desc_routerinfo->addr;
  1139. if (resolve_my_address(LOG_INFO, options, &cur, NULL) < 0) {
  1140. log_info(LD_CONFIG,"options->Address didn't resolve into an IP.");
  1141. return;
  1142. }
  1143. if (prev != cur) {
  1144. log_addr_has_changed(LOG_INFO, prev, cur);
  1145. ip_address_changed(0);
  1146. }
  1147. }
  1148. /** The most recently guessed value of our IP address, based on directory
  1149. * headers. */
  1150. static uint32_t last_guessed_ip = 0;
  1151. /** A directory server told us our IP address is <b>suggestion</b>.
  1152. * If this address is different from the one we think we are now, and
  1153. * if our computer doesn't actually know its IP address, then switch. */
  1154. void
  1155. router_new_address_suggestion(const char *suggestion)
  1156. {
  1157. uint32_t addr, cur = 0;
  1158. struct in_addr in;
  1159. or_options_t *options = get_options();
  1160. /* first, learn what the IP address actually is */
  1161. if (!tor_inet_aton(suggestion, &in)) {
  1162. log_debug(LD_DIR, "Malformed X-Your-Address-Is header %s. Ignoring.",
  1163. escaped(suggestion));
  1164. return;
  1165. }
  1166. addr = ntohl(in.s_addr);
  1167. log_debug(LD_DIR, "Got X-Your-Address-Is: %s.", suggestion);
  1168. if (!server_mode(options)) {
  1169. last_guessed_ip = addr; /* store it in case we need it later */
  1170. return;
  1171. }
  1172. if (resolve_my_address(LOG_INFO, options, &cur, NULL) >= 0) {
  1173. /* We're all set -- we already know our address. Great. */
  1174. last_guessed_ip = cur; /* store it in case we need it later */
  1175. return;
  1176. }
  1177. if (is_internal_IP(addr, 0)) {
  1178. /* Don't believe anybody who says our IP is, say, 127.0.0.1. */
  1179. return;
  1180. }
  1181. /* Okay. We can't resolve our own address, and X-Your-Address-Is is giving
  1182. * us an answer different from what we had the last time we managed to
  1183. * resolve it. */
  1184. if (last_guessed_ip != addr) {
  1185. control_event_server_status(LOG_NOTICE,
  1186. "EXTERNAL_ADDRESS ADDRESS=%s METHOD=DIRSERV",
  1187. suggestion);
  1188. log_addr_has_changed(LOG_NOTICE, last_guessed_ip, addr);
  1189. ip_address_changed(0);
  1190. last_guessed_ip = addr; /* router_rebuild_descriptor() will fetch it */
  1191. }
  1192. }
  1193. /** We failed to resolve our address locally, but we'd like to build
  1194. * a descriptor and publish / test reachability. If we have a guess
  1195. * about our address based on directory headers, answer it and return
  1196. * 0; else return -1. */
  1197. static int
  1198. router_guess_address_from_dir_headers(uint32_t *guess)
  1199. {
  1200. if (last_guessed_ip) {
  1201. *guess = last_guessed_ip;
  1202. return 0;
  1203. }
  1204. return -1;
  1205. }
  1206. extern const char tor_svn_revision[]; /* from main.c */
  1207. /** Set <b>platform</b> (max length <b>len</b>) to a NUL-terminated short
  1208. * string describing the version of Tor and the operating system we're
  1209. * currently running on.
  1210. */
  1211. void
  1212. get_platform_str(char *platform, size_t len)
  1213. {
  1214. tor_snprintf(platform, len, "Tor %s on %s", get_version(), get_uname());
  1215. }
  1216. /* XXX need to audit this thing and count fenceposts. maybe
  1217. * refactor so we don't have to keep asking if we're
  1218. * near the end of maxlen?
  1219. */
  1220. #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1221. /** OR only: Given a routerinfo for this router, and an identity key to sign
  1222. * with, encode the routerinfo as a signed server descriptor and write the
  1223. * result into <b>s</b>, using at most <b>maxlen</b> bytes. Return -1 on
  1224. * failure, and the number of bytes used on success.
  1225. */
  1226. int
  1227. router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
  1228. crypto_pk_env_t *ident_key)
  1229. {
  1230. char *onion_pkey; /* Onion key, PEM-encoded. */
  1231. char *identity_pkey; /* Identity key, PEM-encoded. */
  1232. char digest[DIGEST_LEN];
  1233. char published[ISO_TIME_LEN+1];
  1234. char fingerprint[FINGERPRINT_LEN+1];
  1235. char extra_info_digest[HEX_DIGEST_LEN+1];
  1236. size_t onion_pkeylen, identity_pkeylen;
  1237. size_t written;
  1238. int result=0;
  1239. addr_policy_t *tmpe;
  1240. char *bandwidth_usage;
  1241. char *family_line;
  1242. or_options_t *options = get_options();
  1243. /* Make sure the identity key matches the one in the routerinfo. */
  1244. if (crypto_pk_cmp_keys(ident_key, router->identity_pkey)) {
  1245. log_warn(LD_BUG,"Tried to sign a router with a private key that didn't "
  1246. "match router's public key!");
  1247. return -1;
  1248. }
  1249. /* record our fingerprint, so we can include it in the descriptor */
  1250. if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) {
  1251. log_err(LD_BUG,"Error computing fingerprint");
  1252. return -1;
  1253. }
  1254. /* PEM-encode the onion key */
  1255. if (crypto_pk_write_public_key_to_string(router->onion_pkey,
  1256. &onion_pkey,&onion_pkeylen)<0) {
  1257. log_warn(LD_BUG,"write onion_pkey to string failed!");
  1258. return -1;
  1259. }
  1260. /* PEM-encode the identity key key */
  1261. if (crypto_pk_write_public_key_to_string(router->identity_pkey,
  1262. &identity_pkey,&identity_pkeylen)<0) {
  1263. log_warn(LD_BUG,"write identity_pkey to string failed!");
  1264. tor_free(onion_pkey);
  1265. return -1;
  1266. }
  1267. /* Encode the publication time. */
  1268. format_iso_time(published, router->cache_info.published_on);
  1269. /* How busy have we been? */
  1270. bandwidth_usage = rep_hist_get_bandwidth_lines(0);
  1271. if (router->declared_family && smartlist_len(router->declared_family)) {
  1272. size_t n;
  1273. char *family = smartlist_join_strings(router->declared_family, " ", 0, &n);
  1274. n += strlen("family ") + 2; /* 1 for \n, 1 for \0. */
  1275. family_line = tor_malloc(n);
  1276. tor_snprintf(family_line, n, "family %s\n", family);
  1277. tor_free(family);
  1278. } else {
  1279. family_line = tor_strdup("");
  1280. }
  1281. base16_encode(extra_info_digest, sizeof(extra_info_digest),
  1282. router->cache_info.extra_info_digest, DIGEST_LEN);
  1283. /* Generate the easy portion of the router descriptor. */
  1284. result = tor_snprintf(s, maxlen,
  1285. "router %s %s %d 0 %d\n"
  1286. "platform %s\n"
  1287. "published %s\n"
  1288. "opt fingerprint %s\n"
  1289. "uptime %ld\n"
  1290. "bandwidth %d %d %d\n"
  1291. "opt extra-info-digest %s\n%s"
  1292. "onion-key\n%s"
  1293. "signing-key\n%s"
  1294. "%s%s%s",
  1295. router->nickname,
  1296. router->address,
  1297. router->or_port,
  1298. decide_to_advertise_dirport(options, router),
  1299. router->platform,
  1300. published,
  1301. fingerprint,
  1302. stats_n_seconds_working,
  1303. (int) router->bandwidthrate,
  1304. (int) router->bandwidthburst,
  1305. (int) router->bandwidthcapacity,
  1306. extra_info_digest,
  1307. options->DownloadExtraInfo ? "opt caches-extra-info\n" : "",
  1308. onion_pkey, identity_pkey,
  1309. family_line, bandwidth_usage,
  1310. we_are_hibernating() ? "opt hibernating 1\n" : "");
  1311. tor_free(family_line);
  1312. tor_free(onion_pkey);
  1313. tor_free(identity_pkey);
  1314. tor_free(bandwidth_usage);
  1315. if (result < 0) {
  1316. log_warn(LD_BUG,"descriptor snprintf #1 ran out of room!");
  1317. return -1;
  1318. }
  1319. /* From now on, we use 'written' to remember the current length of 's'. */
  1320. written = result;
  1321. if (options->ContactInfo && strlen(options->ContactInfo)) {
  1322. result = tor_snprintf(s+written,maxlen-written, "contact %s\n",
  1323. options->ContactInfo);
  1324. if (result<0) {
  1325. log_warn(LD_BUG,"descriptor snprintf #2 ran out of room!");
  1326. return -1;
  1327. }
  1328. written += result;
  1329. }
  1330. /* Write the exit policy to the end of 's'. */
  1331. tmpe = router->exit_policy;
  1332. if (dns_seems_to_be_broken()) {
  1333. /* DNS is screwed up; don't claim to be an exit. */
  1334. strlcat(s+written, "reject *:*\n", maxlen-written);
  1335. written += strlen("reject *:*\n");
  1336. tmpe = NULL;
  1337. }
  1338. for ( ; tmpe; tmpe=tmpe->next) {
  1339. result = policy_write_item(s+written, maxlen-written, tmpe);
  1340. if (result < 0) {
  1341. log_warn(LD_BUG,"descriptor policy_write_item ran out of room!");
  1342. return -1;
  1343. }
  1344. tor_assert(result == (int)strlen(s+written));
  1345. written += result;
  1346. if (written+2 > maxlen) {
  1347. log_warn(LD_BUG,"descriptor policy_write_item ran out of room (2)!");
  1348. return -1;
  1349. }
  1350. s[written++] = '\n';
  1351. }
  1352. if (written+256 > maxlen) { /* Not enough room for signature. */
  1353. log_warn(LD_BUG,"not enough room left in descriptor for signature!");
  1354. return -1;
  1355. }
  1356. /* Sign the directory */
  1357. strlcpy(s+written, "router-signature\n", maxlen-written);
  1358. written += strlen(s+written);
  1359. s[written] = '\0';
  1360. if (router_get_router_hash(s, digest) < 0) {
  1361. return -1;
  1362. }
  1363. note_crypto_pk_op(SIGN_RTR);
  1364. if (router_append_dirobj_signature(s+written,maxlen-written,
  1365. digest,ident_key)<0) {
  1366. log_warn(LD_BUG, "Couldn't sign router descriptor");
  1367. return -1;
  1368. }
  1369. written += strlen(s+written);
  1370. if (written+2 > maxlen) {
  1371. log_warn(LD_BUG,"Not enough room to finish descriptor.");
  1372. return -1;
  1373. }
  1374. /* include a last '\n' */
  1375. s[written] = '\n';
  1376. s[written+1] = 0;
  1377. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1378. {
  1379. char *s_dup;
  1380. const char *cp;
  1381. routerinfo_t *ri_tmp;
  1382. cp = s_dup = tor_strdup(s);
  1383. ri_tmp = router_parse_entry_from_string(cp, NULL, 1);
  1384. if (!ri_tmp) {
  1385. log_err(LD_BUG,
  1386. "We just generated a router descriptor we can't parse.");
  1387. log_err(LD_BUG, "Descriptor was: <<%s>>", s);
  1388. return -1;
  1389. }
  1390. tor_free(s_dup);
  1391. routerinfo_free(ri_tmp);
  1392. }
  1393. #endif
  1394. return written+1;
  1395. }
  1396. /** Write the contents of <b>extrainfo</b> to the <b>maxlen</b>-byte string
  1397. * <b>s</b>, signing them with <b>ident_key</b>. Return 0 on success,
  1398. * negative on failure. */
  1399. int
  1400. extrainfo_dump_to_string(char *s, size_t maxlen, extrainfo_t *extrainfo,
  1401. crypto_pk_env_t *ident_key)
  1402. {
  1403. char identity[HEX_DIGEST_LEN+1];
  1404. char published[ISO_TIME_LEN+1];
  1405. char digest[DIGEST_LEN];
  1406. char *bandwidth_usage;
  1407. int result;
  1408. size_t len;
  1409. base16_encode(identity, sizeof(identity),
  1410. extrainfo->cache_info.identity_digest, DIGEST_LEN);
  1411. format_iso_time(published, extrainfo->cache_info.published_on);
  1412. bandwidth_usage = rep_hist_get_bandwidth_lines(1);
  1413. result = tor_snprintf(s, maxlen,
  1414. "extra-info %s %s\n"
  1415. "published %s\n%s"
  1416. "router-signature\n",
  1417. extrainfo->nickname, identity,
  1418. published, bandwidth_usage);
  1419. tor_free(bandwidth_usage);
  1420. if (result<0)
  1421. return -1;
  1422. len = strlen(s);
  1423. if (router_get_extrainfo_hash(s, digest)<0)
  1424. return -1;
  1425. if (router_append_dirobj_signature(s+len, maxlen-len, digest, ident_key)<0)
  1426. return -1;
  1427. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1428. {
  1429. char *cp, *s_dup;
  1430. extrainfo_t *ei_tmp;
  1431. cp = s_dup = tor_strdup(s);
  1432. ei_tmp = extrainfo_parse_entry_from_string(cp, NULL, 1, NULL);
  1433. if (!ei_tmp) {
  1434. log_err(LD_BUG,
  1435. "We just generated an extrainfo descriptor we can't parse.");
  1436. log_err(LD_BUG, "Descriptor was: <<%s>>", s);
  1437. return -1;
  1438. }
  1439. tor_free(s_dup);
  1440. extrainfo_free(ei_tmp);
  1441. }
  1442. #endif
  1443. return strlen(s)+1;
  1444. }
  1445. /** Return true iff <b>s</b> is a legally valid server nickname. */
  1446. int
  1447. is_legal_nickname(const char *s)
  1448. {
  1449. size_t len;
  1450. tor_assert(s);
  1451. len = strlen(s);
  1452. return len > 0 && len <= MAX_NICKNAME_LEN &&
  1453. strspn(s,LEGAL_NICKNAME_CHARACTERS) == len;
  1454. }
  1455. /** Return true iff <b>s</b> is a legally valid server nickname or
  1456. * hex-encoded identity-key digest. */
  1457. int
  1458. is_legal_nickname_or_hexdigest(const char *s)
  1459. {
  1460. if (*s!='$')
  1461. return is_legal_nickname(s);
  1462. else
  1463. return is_legal_hexdigest(s);
  1464. }
  1465. /** Return true iff <b>s</b> is a legally valid hex-encoded identity-key
  1466. * digest. */
  1467. int
  1468. is_legal_hexdigest(const char *s)
  1469. {
  1470. size_t len;
  1471. tor_assert(s);
  1472. if (s[0] == '$') s++;
  1473. len = strlen(s);
  1474. if (len > HEX_DIGEST_LEN) {
  1475. if (s[HEX_DIGEST_LEN] == '=' ||
  1476. s[HEX_DIGEST_LEN] == '~') {
  1477. if (!is_legal_nickname(s+HEX_DIGEST_LEN+1))
  1478. return 0;
  1479. } else {
  1480. return 0;
  1481. }
  1482. }
  1483. return (len >= HEX_DIGEST_LEN &&
  1484. strspn(s,HEX_CHARACTERS)==HEX_DIGEST_LEN);
  1485. }
  1486. /** Set <b>buf</b> (which must have MAX_VERBOSE_NICKNAME_LEN+1 bytes) to the
  1487. * verbose representation of the identity of <b>router</b>. The format is:
  1488. * A dollar sign.
  1489. * The upper-case hexadecimal encoding of the SHA1 hash of router's identity.
  1490. * A "=" if the router is named; a "~" if it is not.
  1491. * The router's nickname.
  1492. **/
  1493. void
  1494. router_get_verbose_nickname(char *buf, routerinfo_t *router)
  1495. {
  1496. buf[0] = '$';
  1497. base16_encode(buf+1, HEX_DIGEST_LEN+1, router->cache_info.identity_digest,
  1498. DIGEST_LEN);
  1499. buf[1+HEX_DIGEST_LEN] = router->is_named ? '=' : '~';
  1500. strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1);
  1501. }
  1502. /** Forget that we have issued any router-related warnings, so that we'll
  1503. * warn again if we see the same errors. */
  1504. void
  1505. router_reset_warnings(void)
  1506. {
  1507. if (warned_nonexistent_family) {
  1508. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  1509. smartlist_clear(warned_nonexistent_family);
  1510. }
  1511. }
  1512. /** Release all static resources held in router.c */
  1513. void
  1514. router_free_all(void)
  1515. {
  1516. if (onionkey)
  1517. crypto_free_pk_env(onionkey);
  1518. if (lastonionkey)
  1519. crypto_free_pk_env(lastonionkey);
  1520. if (identitykey)
  1521. crypto_free_pk_env(identitykey);
  1522. if (key_lock)
  1523. tor_mutex_free(key_lock);
  1524. if (desc_routerinfo)
  1525. routerinfo_free(desc_routerinfo);
  1526. if (desc_extrainfo)
  1527. extrainfo_free(desc_extrainfo);
  1528. if (authority_signing_key)
  1529. crypto_free_pk_env(authority_signing_key);
  1530. if (authority_key_certificate)
  1531. authority_cert_free(authority_key_certificate);
  1532. if (warned_nonexistent_family) {
  1533. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  1534. smartlist_free(warned_nonexistent_family);
  1535. }
  1536. }