router.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. const char router_c_id[] =
  7. "$Id$";
  8. #include "or.h"
  9. /**
  10. * \file router.c
  11. * \brief OR functionality, including key maintenance, generating
  12. * and uploading server descriptors, retrying OR connections.
  13. **/
  14. extern long stats_n_seconds_working;
  15. /* Exposed for test.c. */ void get_platform_str(char *platform, size_t len);
  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. static crypto_pk_env_t *onionkey=NULL;
  25. static crypto_pk_env_t *lastonionkey=NULL;
  26. static crypto_pk_env_t *identitykey=NULL;
  27. /** Replace the current onion key with <b>k</b>. Does not affect lastonionkey;
  28. * to update onionkey correctly, call rotate_onion_key().
  29. */
  30. void
  31. set_onion_key(crypto_pk_env_t *k)
  32. {
  33. tor_mutex_acquire(key_lock);
  34. onionkey = k;
  35. onionkey_set_at = time(NULL);
  36. tor_mutex_release(key_lock);
  37. mark_my_descriptor_dirty();
  38. }
  39. /** Return the current onion key. Requires that the onion key has been
  40. * loaded or generated. */
  41. crypto_pk_env_t *
  42. get_onion_key(void)
  43. {
  44. tor_assert(onionkey);
  45. return onionkey;
  46. }
  47. /** Store a copy of the current onion key into *<b>key</b>, and a copy
  48. * of the most recent onion key into *<b>last</b>.
  49. */
  50. void
  51. dup_onion_keys(crypto_pk_env_t **key, crypto_pk_env_t **last)
  52. {
  53. tor_assert(key);
  54. tor_assert(last);
  55. tor_mutex_acquire(key_lock);
  56. tor_assert(onionkey);
  57. *key = crypto_pk_dup_key(onionkey);
  58. if (lastonionkey)
  59. *last = crypto_pk_dup_key(lastonionkey);
  60. else
  61. *last = NULL;
  62. tor_mutex_release(key_lock);
  63. }
  64. /** Return the time when the onion key was last set. This is either the time
  65. * when the process launched, or the time of the most recent key rotation since
  66. * the process launched.
  67. */
  68. time_t
  69. get_onion_key_set_at(void)
  70. {
  71. return onionkey_set_at;
  72. }
  73. /** Set the current identity key to k.
  74. */
  75. void
  76. set_identity_key(crypto_pk_env_t *k)
  77. {
  78. if (identitykey)
  79. crypto_free_pk_env(identitykey);
  80. identitykey = k;
  81. }
  82. /** Returns the current identity key; requires that the identity key has been
  83. * set.
  84. */
  85. crypto_pk_env_t *
  86. get_identity_key(void)
  87. {
  88. tor_assert(identitykey);
  89. return identitykey;
  90. }
  91. /** Return true iff the identity key has been set. */
  92. int
  93. identity_key_is_set(void)
  94. {
  95. return identitykey != NULL;
  96. }
  97. /** Replace the previous onion key with the current onion key, and generate
  98. * a new previous onion key. Immediately after calling this function,
  99. * the OR should:
  100. * - schedule all previous cpuworkers to shut down _after_ processing
  101. * pending work. (This will cause fresh cpuworkers to be generated.)
  102. * - generate and upload a fresh routerinfo.
  103. */
  104. void
  105. rotate_onion_key(void)
  106. {
  107. char fname[512];
  108. char fname_prev[512];
  109. crypto_pk_env_t *prkey;
  110. tor_snprintf(fname,sizeof(fname),
  111. "%s/keys/secret_onion_key",get_options()->DataDirectory);
  112. tor_snprintf(fname_prev,sizeof(fname_prev),
  113. "%s/keys/secret_onion_key.old",get_options()->DataDirectory);
  114. if (!(prkey = crypto_new_pk_env())) {
  115. log_err(LD_GENERAL,"Error creating crypto environment.");
  116. goto error;
  117. }
  118. if (crypto_pk_generate_key(prkey)) {
  119. log_err(LD_BUG,"Error generating onion key");
  120. goto error;
  121. }
  122. if (file_status(fname) == FN_FILE) {
  123. if (replace_file(fname, fname_prev))
  124. goto error;
  125. }
  126. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  127. log_err(LD_FS,"Couldn't write generated key to \"%s\".", fname);
  128. goto error;
  129. }
  130. log_info(LD_GENERAL, "Rotating onion key");
  131. tor_mutex_acquire(key_lock);
  132. if (lastonionkey)
  133. crypto_free_pk_env(lastonionkey);
  134. lastonionkey = onionkey;
  135. onionkey = prkey;
  136. onionkey_set_at = time(NULL);
  137. tor_mutex_release(key_lock);
  138. mark_my_descriptor_dirty();
  139. return;
  140. error:
  141. log_warn(LD_GENERAL, "Couldn't rotate onion key.");
  142. }
  143. /* Read an RSA secret key key from a file that was once named fname_old,
  144. * but is now named fname_new. Rename the file from old to new as needed.
  145. */
  146. static crypto_pk_env_t *
  147. init_key_from_file_name_changed(const char *fname_old,
  148. const char *fname_new)
  149. {
  150. if (file_status(fname_new) == FN_FILE || file_status(fname_old) != FN_FILE)
  151. /* The new filename is there, or both are, or neither is. */
  152. return init_key_from_file(fname_new);
  153. /* The old filename exists, and the new one doesn't. Rename and load. */
  154. if (rename(fname_old, fname_new) < 0) {
  155. log_warn(LD_FS, "Couldn't rename \"%s\" to \"%s\": %s",
  156. fname_old, fname_new, strerror(errno));
  157. return NULL;
  158. }
  159. return init_key_from_file(fname_new);
  160. }
  161. /** Try to read an RSA key from <b>fname</b>. If <b>fname</b> doesn't exist,
  162. * create a new RSA key and save it in <b>fname</b>. Return the read/created
  163. * key, or NULL on error.
  164. */
  165. crypto_pk_env_t *
  166. init_key_from_file(const char *fname)
  167. {
  168. crypto_pk_env_t *prkey = NULL;
  169. FILE *file = NULL;
  170. if (!(prkey = crypto_new_pk_env())) {
  171. log_err(LD_GENERAL,"Error creating crypto environment.");
  172. goto error;
  173. }
  174. switch (file_status(fname)) {
  175. case FN_DIR:
  176. case FN_ERROR:
  177. log_err(LD_FS,"Can't read key from \"%s\"", fname);
  178. goto error;
  179. case FN_NOENT:
  180. log_info(LD_GENERAL, "No key found in \"%s\"; generating fresh key.",
  181. fname);
  182. if (crypto_pk_generate_key(prkey)) {
  183. log_err(LD_GENERAL,"Error generating onion key");
  184. goto error;
  185. }
  186. if (crypto_pk_check_key(prkey) <= 0) {
  187. log_err(LD_GENERAL,"Generated key seems invalid");
  188. goto error;
  189. }
  190. log_info(LD_GENERAL, "Generated key seems valid");
  191. if (crypto_pk_write_private_key_to_filename(prkey, fname)) {
  192. log_err(LD_FS,"Couldn't write generated key to \"%s\".", fname);
  193. goto error;
  194. }
  195. return prkey;
  196. case FN_FILE:
  197. if (crypto_pk_read_private_key_from_filename(prkey, fname)) {
  198. log_err(LD_GENERAL,"Error loading private key.");
  199. goto error;
  200. }
  201. return prkey;
  202. default:
  203. tor_assert(0);
  204. }
  205. error:
  206. if (prkey)
  207. crypto_free_pk_env(prkey);
  208. if (file)
  209. fclose(file);
  210. return NULL;
  211. }
  212. /** Initialize all OR private keys, and the TLS context, as necessary.
  213. * On OPs, this only initializes the tls context.
  214. */
  215. int
  216. init_keys(void)
  217. {
  218. char keydir[512];
  219. char keydir2[512];
  220. char fingerprint[FINGERPRINT_LEN+1];
  221. /*nickname<space>fp\n\0 */
  222. char fingerprint_line[MAX_NICKNAME_LEN+FINGERPRINT_LEN+3];
  223. char *cp;
  224. const char *mydesc, *datadir;
  225. crypto_pk_env_t *prkey;
  226. char digest[20];
  227. or_options_t *options = get_options();
  228. if (!key_lock)
  229. key_lock = tor_mutex_new();
  230. /* OP's don't need persistent keys; just make up an identity and
  231. * initialize the TLS context. */
  232. if (!server_mode(options)) {
  233. if (!(prkey = crypto_new_pk_env()))
  234. return -1;
  235. if (crypto_pk_generate_key(prkey))
  236. return -1;
  237. set_identity_key(prkey);
  238. /* Create a TLS context; default the client nickname to "client". */
  239. if (tor_tls_context_new(get_identity_key(),
  240. options->Nickname ? options->Nickname : "client",
  241. MAX_SSL_KEY_LIFETIME) < 0) {
  242. log_err(LD_GENERAL,"Error creating TLS context for OP.");
  243. return -1;
  244. }
  245. return 0;
  246. }
  247. /* Make sure DataDirectory exists, and is private. */
  248. datadir = options->DataDirectory;
  249. if (check_private_dir(datadir, CPD_CREATE)) {
  250. return -1;
  251. }
  252. /* Check the key directory. */
  253. tor_snprintf(keydir,sizeof(keydir),"%s/keys", datadir);
  254. if (check_private_dir(keydir, CPD_CREATE)) {
  255. return -1;
  256. }
  257. cp = keydir + strlen(keydir); /* End of string. */
  258. /* 1. Read identity key. Make it if none is found. */
  259. tor_snprintf(keydir,sizeof(keydir),"%s/keys/identity.key",datadir);
  260. tor_snprintf(keydir2,sizeof(keydir2),"%s/keys/secret_id_key",datadir);
  261. log_info(LD_GENERAL,"Reading/making identity key \"%s\"...",keydir2);
  262. prkey = init_key_from_file_name_changed(keydir,keydir2);
  263. if (!prkey) return -1;
  264. set_identity_key(prkey);
  265. /* 2. Read onion key. Make it if none is found. */
  266. tor_snprintf(keydir,sizeof(keydir),"%s/keys/onion.key",datadir);
  267. tor_snprintf(keydir2,sizeof(keydir2),"%s/keys/secret_onion_key",datadir);
  268. log_info(LD_GENERAL,"Reading/making onion key \"%s\"...",keydir2);
  269. prkey = init_key_from_file_name_changed(keydir,keydir2);
  270. if (!prkey) return -1;
  271. set_onion_key(prkey);
  272. tor_snprintf(keydir,sizeof(keydir),"%s/keys/secret_onion_key.old",datadir);
  273. if (file_status(keydir) == FN_FILE) {
  274. prkey = init_key_from_file(keydir);
  275. if (prkey)
  276. lastonionkey = prkey;
  277. }
  278. /* 3. Initialize link key and TLS context. */
  279. if (tor_tls_context_new(get_identity_key(), options->Nickname,
  280. MAX_SSL_KEY_LIFETIME) < 0) {
  281. log_err(LD_GENERAL,"Error initializing TLS context");
  282. return -1;
  283. }
  284. /* 4. Build our router descriptor. */
  285. /* Must be called after keys are initialized. */
  286. mydesc = router_get_my_descriptor();
  287. if (!mydesc) {
  288. log_err(LD_GENERAL,"Error initializing descriptor.");
  289. return -1;
  290. }
  291. if (authdir_mode(options)) {
  292. const char *m;
  293. /* We need to add our own fingerprint so it gets recognized. */
  294. if (dirserv_add_own_fingerprint(options->Nickname, get_identity_key())) {
  295. log_err(LD_GENERAL,"Error adding own fingerprint to approved set");
  296. return -1;
  297. }
  298. if (dirserv_add_descriptor(mydesc, &m) < 0) {
  299. log_err(LD_GENERAL,"Unable to add own descriptor to directory: %s",
  300. m?m:"<unknown error>");
  301. return -1;
  302. }
  303. }
  304. #if 0
  305. tor_snprintf(keydir,sizeof(keydir),"%s/router.desc", datadir);
  306. log_info(LD_GENERAL,"Dumping descriptor to \"%s\"...",keydir);
  307. if (write_str_to_file(keydir, mydesc,0)) {
  308. return -1;
  309. }
  310. #endif
  311. /* 5. Dump fingerprint to 'fingerprint' */
  312. tor_snprintf(keydir,sizeof(keydir),"%s/fingerprint", datadir);
  313. log_info(LD_GENERAL,"Dumping fingerprint to \"%s\"...",keydir);
  314. if (crypto_pk_get_fingerprint(get_identity_key(), fingerprint, 1)<0) {
  315. log_err(LD_GENERAL,"Error computing fingerprint");
  316. return -1;
  317. }
  318. tor_assert(strlen(options->Nickname) <= MAX_NICKNAME_LEN);
  319. if (tor_snprintf(fingerprint_line, sizeof(fingerprint_line),
  320. "%s %s\n",options->Nickname, fingerprint) < 0) {
  321. log_err(LD_GENERAL,"Error writing fingerprint line");
  322. return -1;
  323. }
  324. if (write_str_to_file(keydir, fingerprint_line, 0)) {
  325. log_err(LD_FS, "Error writing fingerprint line to file");
  326. return -1;
  327. }
  328. log(LOG_NOTICE, LD_GENERAL,
  329. "Your Tor server's identity key fingerprint is '%s %s'",
  330. options->Nickname, fingerprint);
  331. if (!authdir_mode(options))
  332. return 0;
  333. /* 6. [authdirserver only] load approved-routers file */
  334. tor_snprintf(keydir,sizeof(keydir),"%s/approved-routers", datadir);
  335. log_info(LD_DIRSERV,"Loading approved fingerprints from \"%s\"...",keydir);
  336. if (dirserv_parse_fingerprint_file(keydir) < 0) {
  337. log_err(LD_GENERAL,"Error loading fingerprints");
  338. return -1;
  339. }
  340. /* 6b. [authdirserver only] add own key to approved directories. */
  341. crypto_pk_get_digest(get_identity_key(), digest);
  342. if (!router_digest_is_trusted_dir(digest)) {
  343. add_trusted_dir_server(options->Nickname, NULL,
  344. (uint16_t)options->DirPort, digest,
  345. options->V1AuthoritativeDir);
  346. }
  347. return 0; /* success */
  348. }
  349. /* Keep track of whether we should upload our server descriptor,
  350. * and what type of server we are.
  351. */
  352. /** Whether we can reach our ORPort from the outside. */
  353. static int can_reach_or_port = 0;
  354. /** Whether we can reach our DirPort from the outside. */
  355. static int can_reach_dir_port = 0;
  356. /** Return 1 if ORPort is known reachable; else return 0. */
  357. int
  358. check_whether_orport_reachable(void)
  359. {
  360. or_options_t *options = get_options();
  361. return options->AssumeReachable ||
  362. can_reach_or_port;
  363. }
  364. /** Return 1 if we don't have a dirport configured, or if it's reachable. */
  365. int
  366. check_whether_dirport_reachable(void)
  367. {
  368. or_options_t *options = get_options();
  369. return !options->DirPort ||
  370. options->AssumeReachable ||
  371. we_are_hibernating() ||
  372. can_reach_dir_port;
  373. }
  374. /** Look at a variety of factors, and return 0 if we don't want to
  375. * advertise the fact that we have a DirPort open. Else return the
  376. * DirPort we want to advertise. */
  377. static int
  378. decide_to_advertise_dirport(or_options_t *options, routerinfo_t *router)
  379. {
  380. if (!router->dir_port) /* short circuit the rest of the function */
  381. return 0;
  382. if (authdir_mode(options)) /* always publish */
  383. return router->dir_port;
  384. if (we_are_hibernating())
  385. return 0;
  386. if (!check_whether_dirport_reachable())
  387. return 0;
  388. if (router->bandwidthcapacity >= router->bandwidthrate) {
  389. /* check if we might potentially hibernate. */
  390. if (options->AccountingMax != 0)
  391. return 0;
  392. /* also check if we're advertising a small amount, and have
  393. a "boring" DirPort. */
  394. if (router->bandwidthrate < 50000 && router->dir_port > 1024)
  395. return 0;
  396. }
  397. /* Sounds like a great idea. Let's publish it. */
  398. return router->dir_port;
  399. }
  400. /** Some time has passed, or we just got new directory information.
  401. * See if we currently believe our ORPort or DirPort to be
  402. * unreachable. If so, launch a new test for it.
  403. *
  404. * For ORPort, we simply try making a circuit that ends at ourselves.
  405. * Success is noticed in onionskin_answer().
  406. *
  407. * For DirPort, we make a connection via Tor to our DirPort and ask
  408. * for our own server descriptor.
  409. * Success is noticed in connection_dir_client_reached_eof().
  410. */
  411. void
  412. consider_testing_reachability(void)
  413. {
  414. routerinfo_t *me = router_get_my_routerinfo();
  415. if (!me) {
  416. log_warn(LD_BUG,
  417. "Bug: router_get_my_routerinfo() did not find my routerinfo?");
  418. return;
  419. }
  420. if (!check_whether_orport_reachable()) {
  421. log_info(LD_CIRC, "Testing reachability of my ORPort: %s:%d.",
  422. me->address, me->or_port);
  423. circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, me, 0, 1, 1);
  424. }
  425. if (!check_whether_dirport_reachable()) {
  426. /* ask myself, via tor, for my server descriptor. */
  427. directory_initiate_command_router(me, DIR_PURPOSE_FETCH_SERVERDESC,
  428. 1, "authority", NULL, 0);
  429. }
  430. }
  431. /** Annotate that we found our ORPort reachable. */
  432. void
  433. router_orport_found_reachable(void)
  434. {
  435. if (!can_reach_or_port) {
  436. log_notice(LD_OR,"Self-testing indicates your ORPort is reachable from "
  437. "the outside. Excellent.%s",
  438. get_options()->PublishServerDescriptor ?
  439. " Publishing server descriptor." : "");
  440. can_reach_or_port = 1;
  441. mark_my_descriptor_dirty();
  442. consider_publishable_server(1);
  443. }
  444. }
  445. /** Annotate that we found our DirPort reachable. */
  446. void
  447. router_dirport_found_reachable(void)
  448. {
  449. if (!can_reach_dir_port) {
  450. log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
  451. "from the outside. Excellent.");
  452. can_reach_dir_port = 1;
  453. }
  454. }
  455. /** Our router has just moved to a new IP. Reset stats. */
  456. void
  457. server_has_changed_ip(void)
  458. {
  459. stats_n_seconds_working = 0;
  460. can_reach_or_port = 0;
  461. can_reach_dir_port = 0;
  462. mark_my_descriptor_dirty();
  463. }
  464. /** Return true iff we believe ourselves to be an authoritative
  465. * directory server.
  466. */
  467. int
  468. authdir_mode(or_options_t *options)
  469. {
  470. return options->AuthoritativeDir != 0;
  471. }
  472. /** Return true iff we try to stay connected to all ORs at once.
  473. */
  474. int
  475. clique_mode(or_options_t *options)
  476. {
  477. return authdir_mode(options);
  478. }
  479. /** Return true iff we are trying to be a server.
  480. */
  481. int
  482. server_mode(or_options_t *options)
  483. {
  484. if (options->ClientOnly) return 0;
  485. return (options->ORPort != 0 || options->ORListenAddress);
  486. }
  487. /** Remember if we've advertised ourselves to the dirservers. */
  488. static int server_is_advertised=0;
  489. /** Return true iff we have published our descriptor lately.
  490. */
  491. int
  492. advertised_server_mode(void)
  493. {
  494. return server_is_advertised;
  495. }
  496. /**
  497. * Called with a boolean: set whether we have recently published our
  498. * descriptor.
  499. */
  500. static void
  501. set_server_advertised(int s)
  502. {
  503. server_is_advertised = s;
  504. }
  505. /** Return true iff we are trying to be a socks proxy. */
  506. int
  507. proxy_mode(or_options_t *options)
  508. {
  509. return (options->SocksPort != 0 || options->SocksListenAddress);
  510. }
  511. /** Decide if we're a publishable server. We are a publishable server if:
  512. * - We don't have the ClientOnly option set
  513. * and
  514. * - We have the PublishServerDescriptor option set
  515. * and
  516. * - We have ORPort set
  517. * and
  518. * - We believe we are reachable from the outside; or
  519. * - We have the AuthoritativeDirectory option set.
  520. */
  521. static int
  522. decide_if_publishable_server(void)
  523. {
  524. or_options_t *options = get_options();
  525. if (options->ClientOnly)
  526. return 0;
  527. if (!options->PublishServerDescriptor)
  528. return 0;
  529. if (!server_mode(options))
  530. return 0;
  531. if (options->AuthoritativeDir)
  532. return 1;
  533. return check_whether_orport_reachable();
  534. }
  535. /** Initiate server descriptor upload as reasonable (if server is publishable,
  536. * etc). <b>force</b> is as for router_upload_dir_desc_to_dirservers.
  537. *
  538. * We need to rebuild the descriptor if it's dirty even if we're not
  539. * uploading, because our reachability testing *uses* our descriptor to
  540. * determine what IP address and ports to test.
  541. */
  542. void
  543. consider_publishable_server(int force)
  544. {
  545. int rebuilt;
  546. if (!server_mode(get_options()))
  547. return;
  548. rebuilt = router_rebuild_descriptor(0);
  549. if (decide_if_publishable_server()) {
  550. set_server_advertised(1);
  551. if (rebuilt == 0)
  552. router_upload_dir_desc_to_dirservers(force);
  553. } else {
  554. set_server_advertised(0);
  555. }
  556. }
  557. /*
  558. * Clique maintenance -- to be phased out.
  559. */
  560. /** Return true iff this OR should try to keep connections open to all
  561. * other ORs. */
  562. int
  563. router_is_clique_mode(routerinfo_t *router)
  564. {
  565. if (router_digest_is_trusted_dir(router->cache_info.identity_digest))
  566. return 1;
  567. return 0;
  568. }
  569. /*
  570. * OR descriptor generation.
  571. */
  572. /** My routerinfo. */
  573. static routerinfo_t *desc_routerinfo = NULL;
  574. /** Since when has our descriptor been "clean"? 0 if we need to regenerate it
  575. * now. */
  576. static time_t desc_clean_since = 0;
  577. /** Boolean: do we need to regenerate the above? */
  578. static int desc_needs_upload = 0;
  579. /** OR only: If <b>force</b> is true, or we haven't uploaded this
  580. * descriptor successfully yet, try to upload our signed descriptor to
  581. * all the directory servers we know about.
  582. */
  583. void
  584. router_upload_dir_desc_to_dirservers(int force)
  585. {
  586. const char *s;
  587. s = router_get_my_descriptor();
  588. if (!s) {
  589. log_warn(LD_GENERAL, "No descriptor; skipping upload");
  590. return;
  591. }
  592. if (!get_options()->PublishServerDescriptor)
  593. return;
  594. if (!force && !desc_needs_upload)
  595. return;
  596. desc_needs_upload = 0;
  597. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR, s, strlen(s));
  598. }
  599. /** OR only: Check whether my exit policy says to allow connection to
  600. * conn. Return 0 if we accept; non-0 if we reject.
  601. */
  602. int
  603. router_compare_to_my_exit_policy(connection_t *conn)
  604. {
  605. tor_assert(desc_routerinfo);
  606. /* make sure it's resolved to something. this way we can't get a
  607. 'maybe' below. */
  608. if (!conn->addr)
  609. return -1;
  610. return compare_addr_to_addr_policy(conn->addr, conn->port,
  611. desc_routerinfo->exit_policy) != ADDR_POLICY_ACCEPTED;
  612. }
  613. /** Return true iff I'm a server and <b>digest</b> is equal to
  614. * my identity digest. */
  615. int
  616. router_digest_is_me(const char *digest)
  617. {
  618. routerinfo_t *me = router_get_my_routerinfo();
  619. if (!me || memcmp(me->cache_info.identity_digest, digest, DIGEST_LEN))
  620. return 0;
  621. return 1;
  622. }
  623. /** A wrapper around router_digest_is_me(). */
  624. int
  625. router_is_me(routerinfo_t *router)
  626. {
  627. return router_digest_is_me(router->cache_info.identity_digest);
  628. }
  629. /** Return true iff <b>fp</b> is a hex fingerprint of my identity digest. */
  630. int
  631. router_fingerprint_is_me(const char *fp)
  632. {
  633. char digest[DIGEST_LEN];
  634. if (strlen(fp) == HEX_DIGEST_LEN &&
  635. base16_decode(digest, sizeof(digest), fp, HEX_DIGEST_LEN) == 0)
  636. return router_digest_is_me(digest);
  637. return 0;
  638. }
  639. /** Return a routerinfo for this OR, rebuilding a fresh one if
  640. * necessary. Return NULL on error, or if called on an OP. */
  641. routerinfo_t *
  642. router_get_my_routerinfo(void)
  643. {
  644. if (!server_mode(get_options()))
  645. return NULL;
  646. if (!desc_routerinfo || !desc_clean_since)
  647. if (router_rebuild_descriptor(!desc_routerinfo))
  648. return NULL;
  649. return desc_routerinfo;
  650. }
  651. /** OR only: Return a signed server descriptor for this OR, rebuilding a fresh
  652. * one if necessary. Return NULL on error.
  653. */
  654. const char *
  655. router_get_my_descriptor(void)
  656. {
  657. const char *body;
  658. if (!router_get_my_routerinfo())
  659. return NULL;
  660. /* Make sure this is nul-terminated. */
  661. tor_assert(desc_routerinfo->cache_info.saved_location == SAVED_NOWHERE);
  662. body = signed_descriptor_get_body(&desc_routerinfo->cache_info);
  663. tor_assert(!body[desc_routerinfo->cache_info.signed_descriptor_len]);
  664. log_debug(LD_GENERAL,"my desc is '%s'", body);
  665. return body;
  666. }
  667. /*DOCDOC*/
  668. static smartlist_t *warned_nonexistent_family = NULL;
  669. /** If <b>force</b> is true, or our descriptor is out-of-date, rebuild
  670. * a fresh routerinfo and signed server descriptor for this OR.
  671. * Return 0 on success, -1 on error.
  672. */
  673. int
  674. router_rebuild_descriptor(int force)
  675. {
  676. routerinfo_t *ri;
  677. uint32_t addr;
  678. char platform[256];
  679. int hibernating = we_are_hibernating();
  680. or_options_t *options = get_options();
  681. if (desc_clean_since && !force)
  682. return 0;
  683. if (resolve_my_address(options, &addr, NULL) < 0) {
  684. log_warn(LD_CONFIG,"options->Address didn't resolve into an IP.");
  685. return -1;
  686. }
  687. ri = tor_malloc_zero(sizeof(routerinfo_t));
  688. ri->address = tor_dup_addr(addr);
  689. ri->nickname = tor_strdup(options->Nickname);
  690. ri->addr = addr;
  691. ri->or_port = options->ORPort;
  692. ri->dir_port = options->DirPort;
  693. ri->cache_info.published_on = time(NULL);
  694. ri->onion_pkey = crypto_pk_dup_key(get_onion_key()); /* must invoke from
  695. * main thread */
  696. ri->identity_pkey = crypto_pk_dup_key(get_identity_key());
  697. if (crypto_pk_get_digest(ri->identity_pkey,
  698. ri->cache_info.identity_digest)<0) {
  699. routerinfo_free(ri);
  700. return -1;
  701. }
  702. get_platform_str(platform, sizeof(platform));
  703. ri->platform = tor_strdup(platform);
  704. ri->bandwidthrate = (int)options->BandwidthRate;
  705. ri->bandwidthburst = (int)options->BandwidthBurst;
  706. ri->bandwidthcapacity = hibernating ? 0 : rep_hist_bandwidth_assess();
  707. if (options->BandwidthRate > options->MaxAdvertisedBandwidth)
  708. ri->bandwidthrate = (int)options->MaxAdvertisedBandwidth;
  709. policies_parse_exit_policy(options->ExitPolicy, &ri->exit_policy,
  710. options->ExitPolicyRejectPrivate);
  711. if (desc_routerinfo) { /* inherit values */
  712. ri->is_valid = desc_routerinfo->is_valid;
  713. ri->is_running = desc_routerinfo->is_running;
  714. ri->is_named = desc_routerinfo->is_named;
  715. }
  716. if (authdir_mode(options))
  717. ri->is_valid = ri->is_named = 1; /* believe in yourself */
  718. if (options->MyFamily) {
  719. smartlist_t *family;
  720. if (!warned_nonexistent_family)
  721. warned_nonexistent_family = smartlist_create();
  722. family = smartlist_create();
  723. ri->declared_family = smartlist_create();
  724. smartlist_split_string(family, options->MyFamily, ",",
  725. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  726. SMARTLIST_FOREACH(family, char *, name,
  727. {
  728. routerinfo_t *member;
  729. if (!strcasecmp(name, options->Nickname))
  730. member = ri;
  731. else
  732. member = router_get_by_nickname(name, 1);
  733. if (!member) {
  734. if (!smartlist_string_isin(warned_nonexistent_family, name) &&
  735. !is_legal_hexdigest(name)) {
  736. log_warn(LD_CONFIG,
  737. "I have no descriptor for the router named \"%s\" "
  738. "in my declared family; I'll use the nickname as is, but "
  739. "this may confuse clients.", name);
  740. smartlist_add(warned_nonexistent_family, tor_strdup(name));
  741. }
  742. smartlist_add(ri->declared_family, name);
  743. name = NULL;
  744. } else {
  745. char *fp = tor_malloc(HEX_DIGEST_LEN+2);
  746. fp[0] = '$';
  747. base16_encode(fp+1,HEX_DIGEST_LEN+1,
  748. member->cache_info.identity_digest, DIGEST_LEN);
  749. smartlist_add(ri->declared_family, fp);
  750. if (smartlist_string_isin(warned_nonexistent_family, name))
  751. smartlist_string_remove(warned_nonexistent_family, name);
  752. }
  753. tor_free(name);
  754. });
  755. smartlist_free(family);
  756. }
  757. ri->cache_info.signed_descriptor_body = tor_malloc(8192);
  758. if (router_dump_router_to_string(ri->cache_info.signed_descriptor_body, 8192,
  759. ri, get_identity_key())<0) {
  760. log_warn(LD_BUG, "Couldn't allocate string for descriptor.");
  761. return -1;
  762. }
  763. ri->cache_info.signed_descriptor_len =
  764. strlen(ri->cache_info.signed_descriptor_body);
  765. crypto_digest(ri->cache_info.signed_descriptor_digest,
  766. ri->cache_info.signed_descriptor_body,
  767. ri->cache_info.signed_descriptor_len);
  768. if (desc_routerinfo)
  769. routerinfo_free(desc_routerinfo);
  770. desc_routerinfo = ri;
  771. desc_clean_since = time(NULL);
  772. desc_needs_upload = 1;
  773. return 0;
  774. }
  775. /** Mark descriptor out of date if it's older than <b>when</b> */
  776. void
  777. mark_my_descriptor_dirty_if_older_than(time_t when)
  778. {
  779. if (desc_clean_since < when)
  780. mark_my_descriptor_dirty();
  781. }
  782. /** Call when the current descriptor is out of date. */
  783. void
  784. mark_my_descriptor_dirty(void)
  785. {
  786. desc_clean_since = 0;
  787. }
  788. /** How frequently will we republish our descriptor because of large (factor
  789. * of 2) shifts in estimated bandwidth? */
  790. #define MAX_BANDWIDTH_CHANGE_FREQ (20*60)
  791. /** Check whether bandwidth has changed a lot since the last time we announced
  792. * bandwidth. If so, mark our descriptor dirty. */
  793. void
  794. check_descriptor_bandwidth_changed(time_t now)
  795. {
  796. static time_t last_changed = 0;
  797. uint64_t prev, cur;
  798. if (!desc_routerinfo)
  799. return;
  800. prev = desc_routerinfo->bandwidthcapacity;
  801. cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess();
  802. if ((prev != cur && (!prev || !cur)) ||
  803. cur > prev*2 ||
  804. cur < prev/2) {
  805. if (last_changed+MAX_BANDWIDTH_CHANGE_FREQ < now) {
  806. log_info(LD_GENERAL,
  807. "Measured bandwidth has changed; rebuilding descriptor.");
  808. mark_my_descriptor_dirty();
  809. last_changed = now;
  810. }
  811. }
  812. }
  813. /** Check whether our own address as defined by the Address configuration
  814. * has changed. This is for routers that get their address from a service
  815. * like dyndns. If our address has changed, mark our descriptor dirty. */
  816. void
  817. check_descriptor_ipaddress_changed(time_t now)
  818. {
  819. uint32_t prev, cur;
  820. or_options_t *options = get_options();
  821. (void) now;
  822. if (!desc_routerinfo)
  823. return;
  824. prev = desc_routerinfo->addr;
  825. if (resolve_my_address(options, &cur, NULL) < 0) {
  826. log_warn(LD_CONFIG,"options->Address didn't resolve into an IP.");
  827. return;
  828. }
  829. if (prev != cur) {
  830. char addrbuf_prev[INET_NTOA_BUF_LEN];
  831. char addrbuf_cur[INET_NTOA_BUF_LEN];
  832. struct in_addr in_prev;
  833. struct in_addr in_cur;
  834. in_prev.s_addr = htonl(prev);
  835. tor_inet_ntoa(&in_prev, addrbuf_prev, sizeof(addrbuf_prev));
  836. in_cur.s_addr = htonl(cur);
  837. tor_inet_ntoa(&in_cur, addrbuf_cur, sizeof(addrbuf_cur));
  838. log_info(LD_GENERAL,
  839. "Our IP Address has changed from %s to %s; "
  840. "rebuilding descriptor.",
  841. addrbuf_prev, addrbuf_cur);
  842. mark_my_descriptor_dirty();
  843. }
  844. }
  845. /** Set <b>platform</b> (max length <b>len</b>) to a NUL-terminated short
  846. * string describing the version of Tor and the operating system we're
  847. * currently running on.
  848. */
  849. void
  850. get_platform_str(char *platform, size_t len)
  851. {
  852. tor_snprintf(platform, len, "Tor %s on %s",
  853. VERSION, get_uname());
  854. return;
  855. }
  856. /* XXX need to audit this thing and count fenceposts. maybe
  857. * refactor so we don't have to keep asking if we're
  858. * near the end of maxlen?
  859. */
  860. #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  861. /** OR only: Given a routerinfo for this router, and an identity key to sign
  862. * with, encode the routerinfo as a signed server descriptor and write the
  863. * result into <b>s</b>, using at most <b>maxlen</b> bytes. Return -1 on
  864. * failure, and the number of bytes used on success.
  865. */
  866. int
  867. router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
  868. crypto_pk_env_t *ident_key)
  869. {
  870. char *onion_pkey; /* Onion key, PEM-encoded. */
  871. char *identity_pkey; /* Identity key, PEM-encoded. */
  872. char digest[DIGEST_LEN];
  873. char published[ISO_TIME_LEN+1];
  874. char fingerprint[FINGERPRINT_LEN+1];
  875. struct in_addr in;
  876. char addrbuf[INET_NTOA_BUF_LEN];
  877. size_t onion_pkeylen, identity_pkeylen;
  878. size_t written;
  879. int result=0;
  880. addr_policy_t *tmpe;
  881. char *bandwidth_usage;
  882. char *family_line;
  883. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  884. char *s_tmp, *s_dup;
  885. const char *cp;
  886. routerinfo_t *ri_tmp;
  887. #endif
  888. or_options_t *options = get_options();
  889. /* Make sure the identity key matches the one in the routerinfo. */
  890. if (crypto_pk_cmp_keys(ident_key, router->identity_pkey)) {
  891. log_warn(LD_BUG,"Tried to sign a router with a private key that didn't "
  892. "match router's public key!");
  893. return -1;
  894. }
  895. /* record our fingerprint, so we can include it in the descriptor */
  896. if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) {
  897. log_err(LD_BUG,"Error computing fingerprint");
  898. return -1;
  899. }
  900. /* PEM-encode the onion key */
  901. if (crypto_pk_write_public_key_to_string(router->onion_pkey,
  902. &onion_pkey,&onion_pkeylen)<0) {
  903. log_warn(LD_BUG,"write onion_pkey to string failed!");
  904. return -1;
  905. }
  906. /* PEM-encode the identity key key */
  907. if (crypto_pk_write_public_key_to_string(router->identity_pkey,
  908. &identity_pkey,&identity_pkeylen)<0) {
  909. log_warn(LD_BUG,"write identity_pkey to string failed!");
  910. tor_free(onion_pkey);
  911. return -1;
  912. }
  913. /* Encode the publication time. */
  914. format_iso_time(published, router->cache_info.published_on);
  915. /* How busy have we been? */
  916. bandwidth_usage = rep_hist_get_bandwidth_lines();
  917. if (router->declared_family && smartlist_len(router->declared_family)) {
  918. size_t n;
  919. char *s = smartlist_join_strings(router->declared_family, " ", 0, &n);
  920. n += strlen("family ") + 2; /* 1 for \n, 1 for \0. */
  921. family_line = tor_malloc(n);
  922. tor_snprintf(family_line, n, "family %s\n", s);
  923. tor_free(s);
  924. } else {
  925. family_line = tor_strdup("");
  926. }
  927. /* Generate the easy portion of the router descriptor. */
  928. result = tor_snprintf(s, maxlen,
  929. "router %s %s %d 0 %d\n"
  930. "platform %s\n"
  931. "published %s\n"
  932. "opt fingerprint %s\n"
  933. "uptime %ld\n"
  934. "bandwidth %d %d %d\n"
  935. "onion-key\n%s"
  936. "signing-key\n%s%s%s%s",
  937. router->nickname,
  938. router->address,
  939. router->or_port,
  940. decide_to_advertise_dirport(options, router),
  941. router->platform,
  942. published,
  943. fingerprint,
  944. stats_n_seconds_working,
  945. (int) router->bandwidthrate,
  946. (int) router->bandwidthburst,
  947. (int) router->bandwidthcapacity,
  948. onion_pkey, identity_pkey,
  949. family_line, bandwidth_usage,
  950. we_are_hibernating() ? "opt hibernating 1\n" : "");
  951. tor_free(family_line);
  952. tor_free(onion_pkey);
  953. tor_free(identity_pkey);
  954. tor_free(bandwidth_usage);
  955. if (result < 0)
  956. return -1;
  957. /* From now on, we use 'written' to remember the current length of 's'. */
  958. written = result;
  959. if (options->ContactInfo && strlen(options->ContactInfo)) {
  960. result = tor_snprintf(s+written,maxlen-written, "contact %s\n",
  961. options->ContactInfo);
  962. if (result<0)
  963. return -1;
  964. written += result;
  965. }
  966. /* Write the exit policy to the end of 's'. */
  967. for (tmpe=router->exit_policy; tmpe; tmpe=tmpe->next) {
  968. /* Write: "accept 1.2.3.4" */
  969. in.s_addr = htonl(tmpe->addr);
  970. tor_inet_ntoa(&in, addrbuf, sizeof(addrbuf));
  971. result = tor_snprintf(s+written, maxlen-written, "%s %s",
  972. tmpe->policy_type == ADDR_POLICY_ACCEPT ? "accept" : "reject",
  973. tmpe->msk == 0 ? "*" : addrbuf);
  974. if (result < 0)
  975. return -1;
  976. written += result;
  977. if (tmpe->msk != 0xFFFFFFFFu && tmpe->msk != 0) {
  978. int n_bits = addr_mask_get_bits(tmpe->msk);
  979. if (n_bits >= 0) {
  980. if (tor_snprintf(s+written, maxlen-written, "/%d", n_bits)<0)
  981. return -1;
  982. } else {
  983. /* Write "/255.255.0.0" */
  984. in.s_addr = htonl(tmpe->msk);
  985. tor_inet_ntoa(&in, addrbuf, sizeof(addrbuf));
  986. if (tor_snprintf(s+written, maxlen-written, "/%s", addrbuf)<0)
  987. return -1;
  988. }
  989. written += strlen(s+written);
  990. }
  991. if (tmpe->prt_min <= 1 && tmpe->prt_max == 65535) {
  992. /* There is no port set; write ":*" */
  993. if (written+4 > maxlen)
  994. return -1;
  995. strlcat(s+written, ":*\n", maxlen-written);
  996. written += 3;
  997. } else if (tmpe->prt_min == tmpe->prt_max) {
  998. /* There is only one port; write ":80". */
  999. result = tor_snprintf(s+written, maxlen-written, ":%d\n", tmpe->prt_min);
  1000. if (result<0)
  1001. return -1;
  1002. written += result;
  1003. } else {
  1004. /* There is a range of ports; write ":79-80". */
  1005. result = tor_snprintf(s+written, maxlen-written, ":%d-%d\n",
  1006. tmpe->prt_min, tmpe->prt_max);
  1007. if (result<0)
  1008. return -1;
  1009. written += result;
  1010. }
  1011. } /* end for */
  1012. if (written+256 > maxlen) /* Not enough room for signature. */
  1013. return -1;
  1014. /* Sign the directory */
  1015. strlcat(s+written, "router-signature\n", maxlen-written);
  1016. written += strlen(s+written);
  1017. s[written] = '\0';
  1018. if (router_get_router_hash(s, digest) < 0)
  1019. return -1;
  1020. if (router_append_dirobj_signature(s+written,maxlen-written,
  1021. digest,ident_key)<0) {
  1022. log_warn(LD_BUG, "Couldn't sign router descriptor");
  1023. return -1;
  1024. }
  1025. written += strlen(s+written);
  1026. if (written+2 > maxlen)
  1027. return -1;
  1028. /* include a last '\n' */
  1029. s[written] = '\n';
  1030. s[written+1] = 0;
  1031. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1032. cp = s_tmp = s_dup = tor_strdup(s);
  1033. ri_tmp = router_parse_entry_from_string(cp, NULL, 1);
  1034. if (!ri_tmp) {
  1035. log_err(LD_BUG,
  1036. "We just generated a router descriptor we can't parse: <<%s>>",
  1037. s);
  1038. return -1;
  1039. }
  1040. tor_free(s_dup);
  1041. routerinfo_free(ri_tmp);
  1042. #endif
  1043. return written+1;
  1044. }
  1045. /** Return true iff <b>s</b> is a legally valid server nickname. */
  1046. int
  1047. is_legal_nickname(const char *s)
  1048. {
  1049. size_t len;
  1050. tor_assert(s);
  1051. len = strlen(s);
  1052. return len > 0 && len <= MAX_NICKNAME_LEN &&
  1053. strspn(s,LEGAL_NICKNAME_CHARACTERS) == len;
  1054. }
  1055. /** Return true iff <b>s</b> is a legally valid server nickname or
  1056. * hex-encoded identity-key digest. */
  1057. int
  1058. is_legal_nickname_or_hexdigest(const char *s)
  1059. {
  1060. if (*s!='$')
  1061. return is_legal_nickname(s);
  1062. else
  1063. return is_legal_hexdigest(s);
  1064. }
  1065. /** Return true iff <b>s</b> is a legally valid hex-encoded identity-key
  1066. * digest. */
  1067. int
  1068. is_legal_hexdigest(const char *s)
  1069. {
  1070. size_t len;
  1071. tor_assert(s);
  1072. if (s[0] == '$') s++;
  1073. len = strlen(s);
  1074. return (len == HEX_DIGEST_LEN &&
  1075. strspn(s,HEX_CHARACTERS)==len);
  1076. }
  1077. /** Forget that we have issued any router-related warnings, so that we'll
  1078. * warn again if we see the same errors. */
  1079. void
  1080. router_reset_warnings(void)
  1081. {
  1082. if (warned_nonexistent_family) {
  1083. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  1084. smartlist_clear(warned_nonexistent_family);
  1085. }
  1086. }
  1087. /** Release all static resources held in router.c */
  1088. void
  1089. router_free_all(void)
  1090. {
  1091. if (onionkey)
  1092. crypto_free_pk_env(onionkey);
  1093. if (lastonionkey)
  1094. crypto_free_pk_env(lastonionkey);
  1095. if (identitykey)
  1096. crypto_free_pk_env(identitykey);
  1097. if (key_lock)
  1098. tor_mutex_free(key_lock);
  1099. if (desc_routerinfo)
  1100. routerinfo_free(desc_routerinfo);
  1101. if (warned_nonexistent_family) {
  1102. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  1103. smartlist_free(warned_nonexistent_family);
  1104. }
  1105. }