router.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345
  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 constructing rotated onion key");
  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 onion 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 key file \"%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 constructing key");
  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. Return 0 on success,
  214. * or -1 if Tor should die.
  215. */
  216. int
  217. init_keys(void)
  218. {
  219. char keydir[512];
  220. char keydir2[512];
  221. char fingerprint[FINGERPRINT_LEN+1];
  222. /*nickname<space>fp\n\0 */
  223. char fingerprint_line[MAX_NICKNAME_LEN+FINGERPRINT_LEN+3];
  224. char *cp;
  225. const char *mydesc, *datadir;
  226. crypto_pk_env_t *prkey;
  227. char digest[20];
  228. or_options_t *options = get_options();
  229. if (!key_lock)
  230. key_lock = tor_mutex_new();
  231. /* OP's don't need persistent keys; just make up an identity and
  232. * initialize the TLS context. */
  233. if (!server_mode(options)) {
  234. if (!(prkey = crypto_new_pk_env()))
  235. return -1;
  236. if (crypto_pk_generate_key(prkey))
  237. return -1;
  238. set_identity_key(prkey);
  239. /* Create a TLS context; default the client nickname to "client". */
  240. if (tor_tls_context_new(get_identity_key(),
  241. options->Nickname ? options->Nickname : "client",
  242. MAX_SSL_KEY_LIFETIME) < 0) {
  243. log_err(LD_GENERAL,"Error creating TLS context for Tor client.");
  244. return -1;
  245. }
  246. return 0;
  247. }
  248. /* Make sure DataDirectory exists, and is private. */
  249. datadir = options->DataDirectory;
  250. if (check_private_dir(datadir, CPD_CREATE)) {
  251. return -1;
  252. }
  253. /* Check the key directory. */
  254. tor_snprintf(keydir,sizeof(keydir),"%s/keys", datadir);
  255. if (check_private_dir(keydir, CPD_CREATE)) {
  256. return -1;
  257. }
  258. cp = keydir + strlen(keydir); /* End of string. */
  259. /* 1. Read identity key. Make it if none is found. */
  260. tor_snprintf(keydir,sizeof(keydir),"%s/keys/identity.key",datadir);
  261. tor_snprintf(keydir2,sizeof(keydir2),"%s/keys/secret_id_key",datadir);
  262. log_info(LD_GENERAL,"Reading/making identity key \"%s\"...",keydir2);
  263. prkey = init_key_from_file_name_changed(keydir,keydir2);
  264. if (!prkey) return -1;
  265. set_identity_key(prkey);
  266. /* 2. Read onion key. Make it if none is found. */
  267. tor_snprintf(keydir,sizeof(keydir),"%s/keys/onion.key",datadir);
  268. tor_snprintf(keydir2,sizeof(keydir2),"%s/keys/secret_onion_key",datadir);
  269. log_info(LD_GENERAL,"Reading/making onion key \"%s\"...",keydir2);
  270. prkey = init_key_from_file_name_changed(keydir,keydir2);
  271. if (!prkey) return -1;
  272. set_onion_key(prkey);
  273. tor_snprintf(keydir,sizeof(keydir),"%s/keys/secret_onion_key.old",datadir);
  274. if (file_status(keydir) == FN_FILE) {
  275. prkey = init_key_from_file(keydir);
  276. if (prkey)
  277. lastonionkey = prkey;
  278. }
  279. /* 3. Initialize link key and TLS context. */
  280. if (tor_tls_context_new(get_identity_key(), options->Nickname,
  281. MAX_SSL_KEY_LIFETIME) < 0) {
  282. log_err(LD_GENERAL,"Error initializing TLS context");
  283. return -1;
  284. }
  285. /* 4. Build our router descriptor. */
  286. /* Must be called after keys are initialized. */
  287. mydesc = router_get_my_descriptor();
  288. if (authdir_mode(options)) {
  289. const char *m;
  290. /* We need to add our own fingerprint so it gets recognized. */
  291. if (dirserv_add_own_fingerprint(options->Nickname, get_identity_key())) {
  292. log_err(LD_GENERAL,"Error adding own fingerprint to approved set");
  293. return -1;
  294. }
  295. if (!mydesc) {
  296. log_err(LD_GENERAL,"Error initializing descriptor.");
  297. return -1;
  298. }
  299. if (dirserv_add_descriptor(mydesc, &m) < 0) {
  300. log_err(LD_GENERAL,"Unable to add own descriptor to directory: %s",
  301. m?m:"<unknown error>");
  302. return -1;
  303. }
  304. }
  305. /* 5. Dump fingerprint to 'fingerprint' */
  306. tor_snprintf(keydir,sizeof(keydir),"%s/fingerprint", datadir);
  307. log_info(LD_GENERAL,"Dumping fingerprint to \"%s\"...",keydir);
  308. if (crypto_pk_get_fingerprint(get_identity_key(), fingerprint, 1)<0) {
  309. log_err(LD_GENERAL,"Error computing fingerprint");
  310. return -1;
  311. }
  312. tor_assert(strlen(options->Nickname) <= MAX_NICKNAME_LEN);
  313. if (tor_snprintf(fingerprint_line, sizeof(fingerprint_line),
  314. "%s %s\n",options->Nickname, fingerprint) < 0) {
  315. log_err(LD_GENERAL,"Error writing fingerprint line");
  316. return -1;
  317. }
  318. if (write_str_to_file(keydir, fingerprint_line, 0)) {
  319. log_err(LD_FS, "Error writing fingerprint line to file");
  320. return -1;
  321. }
  322. log(LOG_NOTICE, LD_GENERAL,
  323. "Your Tor server's identity key fingerprint is '%s %s'",
  324. options->Nickname, fingerprint);
  325. if (!authdir_mode(options))
  326. return 0;
  327. /* 6. [authdirserver only] load approved-routers file */
  328. if (dirserv_load_fingerprint_file() < 0) {
  329. log_err(LD_GENERAL,"Error loading fingerprints");
  330. return -1;
  331. }
  332. /* 6b. [authdirserver only] add own key to approved directories. */
  333. crypto_pk_get_digest(get_identity_key(), digest);
  334. if (!router_digest_is_trusted_dir(digest)) {
  335. add_trusted_dir_server(options->Nickname, NULL,
  336. (uint16_t)options->DirPort, digest,
  337. options->V1AuthoritativeDir, /* v1 authority */
  338. 1, /* v2 authority */
  339. options->V1AuthoritativeDir /* hidserv authority */);
  340. }
  341. return 0; /* success */
  342. }
  343. /* Keep track of whether we should upload our server descriptor,
  344. * and what type of server we are.
  345. */
  346. /** Whether we can reach our ORPort from the outside. */
  347. static int can_reach_or_port = 0;
  348. /** Whether we can reach our DirPort from the outside. */
  349. static int can_reach_dir_port = 0;
  350. /** Return 1 if ORPort is known reachable; else return 0. */
  351. int
  352. check_whether_orport_reachable(void)
  353. {
  354. or_options_t *options = get_options();
  355. return options->AssumeReachable ||
  356. can_reach_or_port;
  357. }
  358. /** Return 1 if we don't have a dirport configured, or if it's reachable. */
  359. int
  360. check_whether_dirport_reachable(void)
  361. {
  362. or_options_t *options = get_options();
  363. return !options->DirPort ||
  364. options->AssumeReachable ||
  365. we_are_hibernating() ||
  366. can_reach_dir_port;
  367. }
  368. /** Look at a variety of factors, and return 0 if we don't want to
  369. * advertise the fact that we have a DirPort open. Else return the
  370. * DirPort we want to advertise. */
  371. static int
  372. decide_to_advertise_dirport(or_options_t *options, routerinfo_t *router)
  373. {
  374. if (!router->dir_port) /* short circuit the rest of the function */
  375. return 0;
  376. if (authdir_mode(options)) /* always publish */
  377. return router->dir_port;
  378. if (we_are_hibernating())
  379. return 0;
  380. if (!check_whether_dirport_reachable())
  381. return 0;
  382. if (router->bandwidthcapacity >= router->bandwidthrate) {
  383. /* check if we might potentially hibernate. */
  384. if (options->AccountingMax != 0)
  385. return 0;
  386. /* also check if we're advertising a small amount, and have
  387. a "boring" DirPort. */
  388. if (router->bandwidthrate < 50000 && router->dir_port > 1024)
  389. return 0;
  390. }
  391. /* Sounds like a great idea. Let's publish it. */
  392. return router->dir_port;
  393. }
  394. /** Some time has passed, or we just got new directory information.
  395. * See if we currently believe our ORPort or DirPort to be
  396. * unreachable. If so, launch a new test for it.
  397. *
  398. * For ORPort, we simply try making a circuit that ends at ourselves.
  399. * Success is noticed in onionskin_answer().
  400. *
  401. * For DirPort, we make a connection via Tor to our DirPort and ask
  402. * for our own server descriptor.
  403. * Success is noticed in connection_dir_client_reached_eof().
  404. */
  405. void
  406. consider_testing_reachability(int test_or, int test_dir)
  407. {
  408. routerinfo_t *me = router_get_my_routerinfo();
  409. int orport_reachable = check_whether_orport_reachable();
  410. if (!me)
  411. return;
  412. if (test_or && (!orport_reachable || !circuit_enough_testing_circs())) {
  413. log_info(LD_CIRC, "Testing %s of my ORPort: %s:%d.",
  414. !orport_reachable ? "reachability" : "bandwidth",
  415. me->address, me->or_port);
  416. circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, me, 0, 1, 1);
  417. }
  418. if (test_dir && !check_whether_dirport_reachable()) {
  419. /* ask myself, via tor, for my server descriptor. */
  420. directory_initiate_command_router(me, DIR_PURPOSE_FETCH_SERVERDESC,
  421. 1, "authority", NULL, 0);
  422. }
  423. }
  424. /** Annotate that we found our ORPort reachable. */
  425. void
  426. router_orport_found_reachable(void)
  427. {
  428. if (!can_reach_or_port) {
  429. log_notice(LD_OR,"Self-testing indicates your ORPort is reachable from "
  430. "the outside. Excellent.%s",
  431. get_options()->PublishServerDescriptor ?
  432. " Publishing server descriptor." : "");
  433. can_reach_or_port = 1;
  434. mark_my_descriptor_dirty();
  435. }
  436. }
  437. /** Annotate that we found our DirPort reachable. */
  438. void
  439. router_dirport_found_reachable(void)
  440. {
  441. if (!can_reach_dir_port) {
  442. log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
  443. "from the outside. Excellent.");
  444. can_reach_dir_port = 1;
  445. mark_my_descriptor_dirty();
  446. }
  447. }
  448. #define UPTIME_CUTOFF_FOR_NEW_BANDWIDTH_TEST (6*60*60)
  449. /** Our router has just moved to a new IP. Reset stats. */
  450. void
  451. server_has_changed_ip(void)
  452. {
  453. if (stats_n_seconds_working > UPTIME_CUTOFF_FOR_NEW_BANDWIDTH_TEST)
  454. reset_bandwidth_test();
  455. stats_n_seconds_working = 0;
  456. can_reach_or_port = 0;
  457. can_reach_dir_port = 0;
  458. mark_my_descriptor_dirty();
  459. }
  460. /** We have enough testing circuit open. Send a bunch of "drop"
  461. * cells down each of them, to exercise our bandwidth. */
  462. void
  463. router_perform_bandwidth_test(int num_circs, time_t now)
  464. {
  465. int num_cells = get_options()->BandwidthRate * 10 / CELL_NETWORK_SIZE;
  466. int max_cells = num_cells < CIRCWINDOW_START ?
  467. num_cells : CIRCWINDOW_START;
  468. int cells_per_circuit = max_cells / num_circs;
  469. origin_circuit_t *circ = NULL;
  470. log_notice(LD_OR,"Performing bandwidth self-test.");
  471. while ((circ = circuit_get_next_by_pk_and_purpose(circ, NULL,
  472. CIRCUIT_PURPOSE_TESTING))) {
  473. /* dump cells_per_circuit drop cells onto this circ */
  474. int i = cells_per_circuit;
  475. if (circ->_base.state != CIRCUIT_STATE_OPEN)
  476. continue;
  477. circ->_base.timestamp_dirty = now;
  478. while (i-- > 0) {
  479. if (connection_edge_send_command(NULL, TO_CIRCUIT(circ),
  480. RELAY_COMMAND_DROP,
  481. NULL, 0, circ->cpath->prev)<0) {
  482. return; /* stop if error */
  483. }
  484. }
  485. }
  486. }
  487. /** Return true iff we believe ourselves to be an authoritative
  488. * directory server.
  489. */
  490. int
  491. authdir_mode(or_options_t *options)
  492. {
  493. return options->AuthoritativeDir != 0;
  494. }
  495. /** Return true iff we try to stay connected to all ORs at once.
  496. */
  497. int
  498. clique_mode(or_options_t *options)
  499. {
  500. return authdir_mode(options);
  501. }
  502. /** Return true iff we are trying to be a server.
  503. */
  504. int
  505. server_mode(or_options_t *options)
  506. {
  507. if (options->ClientOnly) return 0;
  508. return (options->ORPort != 0 || options->ORListenAddress);
  509. }
  510. /** Remember if we've advertised ourselves to the dirservers. */
  511. static int server_is_advertised=0;
  512. /** Return true iff we have published our descriptor lately.
  513. */
  514. int
  515. advertised_server_mode(void)
  516. {
  517. return server_is_advertised;
  518. }
  519. /**
  520. * Called with a boolean: set whether we have recently published our
  521. * descriptor.
  522. */
  523. static void
  524. set_server_advertised(int s)
  525. {
  526. server_is_advertised = s;
  527. }
  528. /** Return true iff we are trying to be a socks proxy. */
  529. int
  530. proxy_mode(or_options_t *options)
  531. {
  532. return (options->SocksPort != 0 || options->SocksListenAddress);
  533. }
  534. /** Decide if we're a publishable server. We are a publishable server if:
  535. * - We don't have the ClientOnly option set
  536. * and
  537. * - We have the PublishServerDescriptor option set
  538. * and
  539. * - We have ORPort set
  540. * and
  541. * - We believe we are reachable from the outside; or
  542. * - We have the AuthoritativeDirectory option set.
  543. */
  544. static int
  545. decide_if_publishable_server(void)
  546. {
  547. or_options_t *options = get_options();
  548. if (options->ClientOnly)
  549. return 0;
  550. if (!options->PublishServerDescriptor)
  551. return 0;
  552. if (!server_mode(options))
  553. return 0;
  554. if (options->AuthoritativeDir)
  555. return 1;
  556. return check_whether_orport_reachable();
  557. }
  558. /** Initiate server descriptor upload as reasonable (if server is publishable,
  559. * etc). <b>force</b> is as for router_upload_dir_desc_to_dirservers.
  560. *
  561. * We need to rebuild the descriptor if it's dirty even if we're not
  562. * uploading, because our reachability testing *uses* our descriptor to
  563. * determine what IP address and ports to test.
  564. */
  565. void
  566. consider_publishable_server(int force)
  567. {
  568. int rebuilt;
  569. if (!server_mode(get_options()))
  570. return;
  571. rebuilt = router_rebuild_descriptor(0);
  572. if (decide_if_publishable_server()) {
  573. set_server_advertised(1);
  574. if (rebuilt == 0)
  575. router_upload_dir_desc_to_dirservers(force);
  576. } else {
  577. set_server_advertised(0);
  578. }
  579. }
  580. /*
  581. * Clique maintenance -- to be phased out.
  582. */
  583. /** Return true iff this OR should try to keep connections open to all
  584. * other ORs. */
  585. int
  586. router_is_clique_mode(routerinfo_t *router)
  587. {
  588. if (router_digest_is_trusted_dir(router->cache_info.identity_digest))
  589. return 1;
  590. return 0;
  591. }
  592. /*
  593. * OR descriptor generation.
  594. */
  595. /** My routerinfo. */
  596. static routerinfo_t *desc_routerinfo = NULL;
  597. /** Since when has our descriptor been "clean"? 0 if we need to regenerate it
  598. * now. */
  599. static time_t desc_clean_since = 0;
  600. /** Boolean: do we need to regenerate the above? */
  601. static int desc_needs_upload = 0;
  602. /** OR only: If <b>force</b> is true, or we haven't uploaded this
  603. * descriptor successfully yet, try to upload our signed descriptor to
  604. * all the directory servers we know about.
  605. */
  606. void
  607. router_upload_dir_desc_to_dirservers(int force)
  608. {
  609. const char *s;
  610. s = router_get_my_descriptor();
  611. if (!s) {
  612. log_info(LD_GENERAL, "No descriptor; skipping upload");
  613. return;
  614. }
  615. if (!get_options()->PublishServerDescriptor)
  616. return;
  617. if (!force && !desc_needs_upload)
  618. return;
  619. desc_needs_upload = 0;
  620. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR, s, strlen(s));
  621. }
  622. /** OR only: Check whether my exit policy says to allow connection to
  623. * conn. Return 0 if we accept; non-0 if we reject.
  624. */
  625. int
  626. router_compare_to_my_exit_policy(edge_connection_t *conn)
  627. {
  628. tor_assert(desc_routerinfo);
  629. /* make sure it's resolved to something. this way we can't get a
  630. 'maybe' below. */
  631. if (!conn->_base.addr)
  632. return -1;
  633. return compare_addr_to_addr_policy(conn->_base.addr, conn->_base.port,
  634. desc_routerinfo->exit_policy) != ADDR_POLICY_ACCEPTED;
  635. }
  636. /** Return true iff I'm a server and <b>digest</b> is equal to
  637. * my identity digest. */
  638. int
  639. router_digest_is_me(const char *digest)
  640. {
  641. routerinfo_t *me = router_get_my_routerinfo();
  642. if (!me || memcmp(me->cache_info.identity_digest, digest, DIGEST_LEN))
  643. return 0;
  644. return 1;
  645. }
  646. /** A wrapper around router_digest_is_me(). */
  647. int
  648. router_is_me(routerinfo_t *router)
  649. {
  650. return router_digest_is_me(router->cache_info.identity_digest);
  651. }
  652. /** Return true iff <b>fp</b> is a hex fingerprint of my identity digest. */
  653. int
  654. router_fingerprint_is_me(const char *fp)
  655. {
  656. char digest[DIGEST_LEN];
  657. if (strlen(fp) == HEX_DIGEST_LEN &&
  658. base16_decode(digest, sizeof(digest), fp, HEX_DIGEST_LEN) == 0)
  659. return router_digest_is_me(digest);
  660. return 0;
  661. }
  662. /** Return a routerinfo for this OR, rebuilding a fresh one if
  663. * necessary. Return NULL on error, or if called on an OP. */
  664. routerinfo_t *
  665. router_get_my_routerinfo(void)
  666. {
  667. if (!server_mode(get_options()))
  668. return NULL;
  669. if (!desc_routerinfo || !desc_clean_since)
  670. if (router_rebuild_descriptor(!desc_routerinfo))
  671. return NULL;
  672. return desc_routerinfo;
  673. }
  674. /** OR only: Return a signed server descriptor for this OR, rebuilding a fresh
  675. * one if necessary. Return NULL on error.
  676. */
  677. const char *
  678. router_get_my_descriptor(void)
  679. {
  680. const char *body;
  681. if (!router_get_my_routerinfo())
  682. return NULL;
  683. /* Make sure this is nul-terminated. */
  684. tor_assert(desc_routerinfo->cache_info.saved_location == SAVED_NOWHERE);
  685. body = signed_descriptor_get_body(&desc_routerinfo->cache_info);
  686. tor_assert(!body[desc_routerinfo->cache_info.signed_descriptor_len]);
  687. log_debug(LD_GENERAL,"my desc is '%s'", body);
  688. return body;
  689. }
  690. /*DOCDOC*/
  691. static smartlist_t *warned_nonexistent_family = NULL;
  692. static int router_guess_address_from_dir_headers(uint32_t *guess);
  693. /** Return our current best guess at our address, either because
  694. * it's configured in torrc, or because we've learned it from
  695. * dirserver headers. */
  696. int
  697. router_pick_published_address(or_options_t *options, uint32_t *addr)
  698. {
  699. if (resolve_my_address(LOG_INFO, options, addr, NULL) < 0) {
  700. log_info(LD_CONFIG, "Could not determine our address locally. "
  701. "Checking if directory headers provide any hints.");
  702. if (router_guess_address_from_dir_headers(addr) < 0) {
  703. log_info(LD_CONFIG, "No hints from directory headers either. "
  704. "Will try again later.");
  705. return -1;
  706. }
  707. }
  708. return 0;
  709. }
  710. /** If <b>force</b> is true, or our descriptor is out-of-date, rebuild
  711. * a fresh routerinfo and signed server descriptor for this OR.
  712. * Return 0 on success, -1 on temporary error.
  713. */
  714. int
  715. router_rebuild_descriptor(int force)
  716. {
  717. routerinfo_t *ri;
  718. uint32_t addr;
  719. char platform[256];
  720. int hibernating = we_are_hibernating();
  721. or_options_t *options = get_options();
  722. if (desc_clean_since && !force)
  723. return 0;
  724. if (router_pick_published_address(options, &addr) < 0) {
  725. /* Stop trying to rebuild our descriptor every second. We'll
  726. * learn that it's time to try again when server_has_changed_ip()
  727. * marks it dirty. */
  728. desc_clean_since = time(NULL);
  729. return -1;
  730. }
  731. ri = tor_malloc_zero(sizeof(routerinfo_t));
  732. ri->routerlist_index = -1;
  733. ri->address = tor_dup_addr(addr);
  734. ri->nickname = tor_strdup(options->Nickname);
  735. ri->addr = addr;
  736. ri->or_port = options->ORPort;
  737. ri->dir_port = options->DirPort;
  738. ri->cache_info.published_on = time(NULL);
  739. ri->onion_pkey = crypto_pk_dup_key(get_onion_key()); /* must invoke from
  740. * main thread */
  741. ri->identity_pkey = crypto_pk_dup_key(get_identity_key());
  742. if (crypto_pk_get_digest(ri->identity_pkey,
  743. ri->cache_info.identity_digest)<0) {
  744. routerinfo_free(ri);
  745. return -1;
  746. }
  747. get_platform_str(platform, sizeof(platform));
  748. ri->platform = tor_strdup(platform);
  749. ri->bandwidthrate = (int)options->BandwidthRate;
  750. ri->bandwidthburst = (int)options->BandwidthBurst;
  751. ri->bandwidthcapacity = hibernating ? 0 : rep_hist_bandwidth_assess();
  752. if (options->BandwidthRate > options->MaxAdvertisedBandwidth)
  753. ri->bandwidthrate = (int)options->MaxAdvertisedBandwidth;
  754. policies_parse_exit_policy(options->ExitPolicy, &ri->exit_policy,
  755. options->ExitPolicyRejectPrivate);
  756. if (desc_routerinfo) { /* inherit values */
  757. ri->is_valid = desc_routerinfo->is_valid;
  758. ri->is_running = desc_routerinfo->is_running;
  759. ri->is_named = desc_routerinfo->is_named;
  760. }
  761. if (authdir_mode(options))
  762. ri->is_valid = ri->is_named = 1; /* believe in yourself */
  763. if (options->MyFamily) {
  764. smartlist_t *family;
  765. if (!warned_nonexistent_family)
  766. warned_nonexistent_family = smartlist_create();
  767. family = smartlist_create();
  768. ri->declared_family = smartlist_create();
  769. smartlist_split_string(family, options->MyFamily, ",",
  770. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  771. SMARTLIST_FOREACH(family, char *, name,
  772. {
  773. routerinfo_t *member;
  774. if (!strcasecmp(name, options->Nickname))
  775. member = ri;
  776. else
  777. member = router_get_by_nickname(name, 1);
  778. if (!member) {
  779. if (!smartlist_string_isin(warned_nonexistent_family, name) &&
  780. !is_legal_hexdigest(name)) {
  781. log_warn(LD_CONFIG,
  782. "I have no descriptor for the router named \"%s\" "
  783. "in my declared family; I'll use the nickname as is, but "
  784. "this may confuse clients.", name);
  785. smartlist_add(warned_nonexistent_family, tor_strdup(name));
  786. }
  787. smartlist_add(ri->declared_family, name);
  788. name = NULL;
  789. } else {
  790. char *fp = tor_malloc(HEX_DIGEST_LEN+2);
  791. fp[0] = '$';
  792. base16_encode(fp+1,HEX_DIGEST_LEN+1,
  793. member->cache_info.identity_digest, DIGEST_LEN);
  794. smartlist_add(ri->declared_family, fp);
  795. if (smartlist_string_isin(warned_nonexistent_family, name))
  796. smartlist_string_remove(warned_nonexistent_family, name);
  797. }
  798. tor_free(name);
  799. });
  800. /* remove duplicates from the list */
  801. smartlist_sort_strings(ri->declared_family);
  802. smartlist_uniq_strings(ri->declared_family);
  803. smartlist_free(family);
  804. }
  805. ri->cache_info.signed_descriptor_body = tor_malloc(8192);
  806. if (router_dump_router_to_string(ri->cache_info.signed_descriptor_body, 8192,
  807. ri, get_identity_key())<0) {
  808. log_warn(LD_BUG, "Couldn't allocate string for descriptor.");
  809. return -1;
  810. }
  811. ri->cache_info.signed_descriptor_len =
  812. strlen(ri->cache_info.signed_descriptor_body);
  813. crypto_digest(ri->cache_info.signed_descriptor_digest,
  814. ri->cache_info.signed_descriptor_body,
  815. ri->cache_info.signed_descriptor_len);
  816. if (desc_routerinfo)
  817. routerinfo_free(desc_routerinfo);
  818. desc_routerinfo = ri;
  819. desc_clean_since = time(NULL);
  820. desc_needs_upload = 1;
  821. control_event_my_descriptor_changed();
  822. return 0;
  823. }
  824. /** Mark descriptor out of date if it's older than <b>when</b> */
  825. void
  826. mark_my_descriptor_dirty_if_older_than(time_t when)
  827. {
  828. if (desc_clean_since < when)
  829. mark_my_descriptor_dirty();
  830. }
  831. /** Call when the current descriptor is out of date. */
  832. void
  833. mark_my_descriptor_dirty(void)
  834. {
  835. desc_clean_since = 0;
  836. }
  837. /** How frequently will we republish our descriptor because of large (factor
  838. * of 2) shifts in estimated bandwidth? */
  839. #define MAX_BANDWIDTH_CHANGE_FREQ (20*60)
  840. /** Check whether bandwidth has changed a lot since the last time we announced
  841. * bandwidth. If so, mark our descriptor dirty. */
  842. void
  843. check_descriptor_bandwidth_changed(time_t now)
  844. {
  845. static time_t last_changed = 0;
  846. uint64_t prev, cur;
  847. if (!desc_routerinfo)
  848. return;
  849. prev = desc_routerinfo->bandwidthcapacity;
  850. cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess();
  851. if ((prev != cur && (!prev || !cur)) ||
  852. cur > prev*2 ||
  853. cur < prev/2) {
  854. if (last_changed+MAX_BANDWIDTH_CHANGE_FREQ < now) {
  855. log_info(LD_GENERAL,
  856. "Measured bandwidth has changed; rebuilding descriptor.");
  857. mark_my_descriptor_dirty();
  858. last_changed = now;
  859. }
  860. }
  861. }
  862. static void
  863. log_addr_has_changed(int severity, uint32_t prev, uint32_t cur)
  864. {
  865. char addrbuf_prev[INET_NTOA_BUF_LEN];
  866. char addrbuf_cur[INET_NTOA_BUF_LEN];
  867. struct in_addr in_prev;
  868. struct in_addr in_cur;
  869. in_prev.s_addr = htonl(prev);
  870. tor_inet_ntoa(&in_prev, addrbuf_prev, sizeof(addrbuf_prev));
  871. in_cur.s_addr = htonl(cur);
  872. tor_inet_ntoa(&in_cur, addrbuf_cur, sizeof(addrbuf_cur));
  873. if (prev)
  874. log_fn(severity, LD_GENERAL,
  875. "Our IP Address has changed from %s to %s; "
  876. "rebuilding descriptor.",
  877. addrbuf_prev, addrbuf_cur);
  878. else
  879. log_notice(LD_GENERAL,
  880. "Guessed our IP address as %s.",
  881. addrbuf_cur);
  882. }
  883. /** Check whether our own address as defined by the Address configuration
  884. * has changed. This is for routers that get their address from a service
  885. * like dyndns. If our address has changed, mark our descriptor dirty. */
  886. void
  887. check_descriptor_ipaddress_changed(time_t now)
  888. {
  889. uint32_t prev, cur;
  890. or_options_t *options = get_options();
  891. (void) now;
  892. if (!desc_routerinfo)
  893. return;
  894. prev = desc_routerinfo->addr;
  895. if (resolve_my_address(LOG_INFO, options, &cur, NULL) < 0) {
  896. log_info(LD_CONFIG,"options->Address didn't resolve into an IP.");
  897. return;
  898. }
  899. if (prev != cur) {
  900. log_addr_has_changed(LOG_INFO, prev, cur);
  901. mark_my_descriptor_dirty();
  902. /* the above call is probably redundant, since resolve_my_address()
  903. * probably already noticed and marked it dirty. */
  904. }
  905. }
  906. static uint32_t last_guessed_ip = 0;
  907. /** A directory authority told us our IP address is <b>suggestion</b>.
  908. * If this address is different from the one we think we are now, and
  909. * if our computer doesn't actually know its IP address, then switch. */
  910. void
  911. router_new_address_suggestion(const char *suggestion)
  912. {
  913. uint32_t addr, cur;
  914. struct in_addr in;
  915. or_options_t *options = get_options();
  916. /* first, learn what the IP address actually is */
  917. if (!tor_inet_aton(suggestion, &in)) {
  918. log_debug(LD_DIR, "Malformed X-Your-Address-Is header. Ignoring.");
  919. return;
  920. }
  921. addr = ntohl(in.s_addr);
  922. log_debug(LD_DIR, "Got X-Your-Address-Is: %s.", suggestion);
  923. if (!server_mode(options) ||
  924. resolve_my_address(LOG_INFO, options, &cur, NULL) >= 0) {
  925. /* We're all set -- we already know our address. Great. */
  926. last_guessed_ip = cur; /* store it in case we need it later */
  927. return;
  928. }
  929. if (last_guessed_ip != addr) {
  930. log_addr_has_changed(LOG_NOTICE, last_guessed_ip, addr);
  931. server_has_changed_ip();
  932. last_guessed_ip = addr; /* router_rebuild_descriptor() will fetch it */
  933. }
  934. }
  935. /** We failed to resolve our address locally, but we'd like to build
  936. * a descriptor and publish / test reachability. If we have a guess
  937. * about our address based on directory headers, answer it and return
  938. * 0; else return -1. */
  939. static int
  940. router_guess_address_from_dir_headers(uint32_t *guess)
  941. {
  942. if (last_guessed_ip) {
  943. *guess = last_guessed_ip;
  944. return 0;
  945. }
  946. return -1;
  947. }
  948. /** Set <b>platform</b> (max length <b>len</b>) to a NUL-terminated short
  949. * string describing the version of Tor and the operating system we're
  950. * currently running on.
  951. */
  952. void
  953. get_platform_str(char *platform, size_t len)
  954. {
  955. tor_snprintf(platform, len, "Tor %s on %s",
  956. VERSION, get_uname());
  957. return;
  958. }
  959. /* XXX need to audit this thing and count fenceposts. maybe
  960. * refactor so we don't have to keep asking if we're
  961. * near the end of maxlen?
  962. */
  963. #define DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  964. /** OR only: Given a routerinfo for this router, and an identity key to sign
  965. * with, encode the routerinfo as a signed server descriptor and write the
  966. * result into <b>s</b>, using at most <b>maxlen</b> bytes. Return -1 on
  967. * failure, and the number of bytes used on success.
  968. */
  969. int
  970. router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
  971. crypto_pk_env_t *ident_key)
  972. {
  973. char *onion_pkey; /* Onion key, PEM-encoded. */
  974. char *identity_pkey; /* Identity key, PEM-encoded. */
  975. char digest[DIGEST_LEN];
  976. char published[ISO_TIME_LEN+1];
  977. char fingerprint[FINGERPRINT_LEN+1];
  978. struct in_addr in;
  979. char addrbuf[INET_NTOA_BUF_LEN];
  980. size_t onion_pkeylen, identity_pkeylen;
  981. size_t written;
  982. int result=0;
  983. addr_policy_t *tmpe;
  984. char *bandwidth_usage;
  985. char *family_line;
  986. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  987. char *s_tmp, *s_dup;
  988. const char *cp;
  989. routerinfo_t *ri_tmp;
  990. #endif
  991. or_options_t *options = get_options();
  992. /* Make sure the identity key matches the one in the routerinfo. */
  993. if (crypto_pk_cmp_keys(ident_key, router->identity_pkey)) {
  994. log_warn(LD_BUG,"Tried to sign a router with a private key that didn't "
  995. "match router's public key!");
  996. return -1;
  997. }
  998. /* record our fingerprint, so we can include it in the descriptor */
  999. if (crypto_pk_get_fingerprint(router->identity_pkey, fingerprint, 1)<0) {
  1000. log_err(LD_BUG,"Error computing fingerprint");
  1001. return -1;
  1002. }
  1003. /* PEM-encode the onion key */
  1004. if (crypto_pk_write_public_key_to_string(router->onion_pkey,
  1005. &onion_pkey,&onion_pkeylen)<0) {
  1006. log_warn(LD_BUG,"write onion_pkey to string failed!");
  1007. return -1;
  1008. }
  1009. /* PEM-encode the identity key key */
  1010. if (crypto_pk_write_public_key_to_string(router->identity_pkey,
  1011. &identity_pkey,&identity_pkeylen)<0) {
  1012. log_warn(LD_BUG,"write identity_pkey to string failed!");
  1013. tor_free(onion_pkey);
  1014. return -1;
  1015. }
  1016. /* Encode the publication time. */
  1017. format_iso_time(published, router->cache_info.published_on);
  1018. /* How busy have we been? */
  1019. bandwidth_usage = rep_hist_get_bandwidth_lines();
  1020. if (router->declared_family && smartlist_len(router->declared_family)) {
  1021. size_t n;
  1022. char *s = smartlist_join_strings(router->declared_family, " ", 0, &n);
  1023. n += strlen("family ") + 2; /* 1 for \n, 1 for \0. */
  1024. family_line = tor_malloc(n);
  1025. tor_snprintf(family_line, n, "family %s\n", s);
  1026. tor_free(s);
  1027. } else {
  1028. family_line = tor_strdup("");
  1029. }
  1030. /* Generate the easy portion of the router descriptor. */
  1031. result = tor_snprintf(s, maxlen,
  1032. "router %s %s %d 0 %d\n"
  1033. "platform %s\n"
  1034. "published %s\n"
  1035. "opt fingerprint %s\n"
  1036. "uptime %ld\n"
  1037. "bandwidth %d %d %d\n"
  1038. "onion-key\n%s"
  1039. "signing-key\n%s"
  1040. #ifdef USE_EVENTDNS
  1041. "opt eventdns 1\n"
  1042. #else
  1043. "opt eventdns 0\n"
  1044. #endif
  1045. "%s%s%s",
  1046. router->nickname,
  1047. router->address,
  1048. router->or_port,
  1049. decide_to_advertise_dirport(options, router),
  1050. router->platform,
  1051. published,
  1052. fingerprint,
  1053. stats_n_seconds_working,
  1054. (int) router->bandwidthrate,
  1055. (int) router->bandwidthburst,
  1056. (int) router->bandwidthcapacity,
  1057. onion_pkey, identity_pkey,
  1058. family_line, bandwidth_usage,
  1059. we_are_hibernating() ? "opt hibernating 1\n" : "");
  1060. tor_free(family_line);
  1061. tor_free(onion_pkey);
  1062. tor_free(identity_pkey);
  1063. tor_free(bandwidth_usage);
  1064. if (result < 0)
  1065. return -1;
  1066. /* From now on, we use 'written' to remember the current length of 's'. */
  1067. written = result;
  1068. if (options->ContactInfo && strlen(options->ContactInfo)) {
  1069. result = tor_snprintf(s+written,maxlen-written, "contact %s\n",
  1070. options->ContactInfo);
  1071. if (result<0)
  1072. return -1;
  1073. written += result;
  1074. }
  1075. /* Write the exit policy to the end of 's'. */
  1076. for (tmpe=router->exit_policy; tmpe; tmpe=tmpe->next) {
  1077. /* Write: "accept 1.2.3.4" */
  1078. in.s_addr = htonl(tmpe->addr);
  1079. tor_inet_ntoa(&in, addrbuf, sizeof(addrbuf));
  1080. result = tor_snprintf(s+written, maxlen-written, "%s %s",
  1081. tmpe->policy_type == ADDR_POLICY_ACCEPT ? "accept" : "reject",
  1082. tmpe->msk == 0 ? "*" : addrbuf);
  1083. if (result < 0)
  1084. return -1;
  1085. written += result;
  1086. if (tmpe->msk != 0xFFFFFFFFu && tmpe->msk != 0) {
  1087. int n_bits = addr_mask_get_bits(tmpe->msk);
  1088. if (n_bits >= 0) {
  1089. if (tor_snprintf(s+written, maxlen-written, "/%d", n_bits)<0)
  1090. return -1;
  1091. } else {
  1092. /* Write "/255.255.0.0" */
  1093. in.s_addr = htonl(tmpe->msk);
  1094. tor_inet_ntoa(&in, addrbuf, sizeof(addrbuf));
  1095. if (tor_snprintf(s+written, maxlen-written, "/%s", addrbuf)<0)
  1096. return -1;
  1097. }
  1098. written += strlen(s+written);
  1099. }
  1100. if (tmpe->prt_min <= 1 && tmpe->prt_max == 65535) {
  1101. /* There is no port set; write ":*" */
  1102. if (written+4 > maxlen)
  1103. return -1;
  1104. strlcat(s+written, ":*\n", maxlen-written);
  1105. written += 3;
  1106. } else if (tmpe->prt_min == tmpe->prt_max) {
  1107. /* There is only one port; write ":80". */
  1108. result = tor_snprintf(s+written, maxlen-written, ":%d\n", tmpe->prt_min);
  1109. if (result<0)
  1110. return -1;
  1111. written += result;
  1112. } else {
  1113. /* There is a range of ports; write ":79-80". */
  1114. result = tor_snprintf(s+written, maxlen-written, ":%d-%d\n",
  1115. tmpe->prt_min, tmpe->prt_max);
  1116. if (result<0)
  1117. return -1;
  1118. written += result;
  1119. }
  1120. } /* end for */
  1121. if (written+256 > maxlen) /* Not enough room for signature. */
  1122. return -1;
  1123. /* Sign the directory */
  1124. strlcat(s+written, "router-signature\n", maxlen-written);
  1125. written += strlen(s+written);
  1126. s[written] = '\0';
  1127. if (router_get_router_hash(s, digest) < 0)
  1128. return -1;
  1129. if (router_append_dirobj_signature(s+written,maxlen-written,
  1130. digest,ident_key)<0) {
  1131. log_warn(LD_BUG, "Couldn't sign router descriptor");
  1132. return -1;
  1133. }
  1134. written += strlen(s+written);
  1135. if (written+2 > maxlen)
  1136. return -1;
  1137. /* include a last '\n' */
  1138. s[written] = '\n';
  1139. s[written+1] = 0;
  1140. #ifdef DEBUG_ROUTER_DUMP_ROUTER_TO_STRING
  1141. cp = s_tmp = s_dup = tor_strdup(s);
  1142. ri_tmp = router_parse_entry_from_string(cp, NULL, 1);
  1143. if (!ri_tmp) {
  1144. log_err(LD_BUG,
  1145. "We just generated a router descriptor we can't parse: <<%s>>",
  1146. s);
  1147. return -1;
  1148. }
  1149. tor_free(s_dup);
  1150. routerinfo_free(ri_tmp);
  1151. #endif
  1152. return written+1;
  1153. }
  1154. /** Return true iff <b>s</b> is a legally valid server nickname. */
  1155. int
  1156. is_legal_nickname(const char *s)
  1157. {
  1158. size_t len;
  1159. tor_assert(s);
  1160. len = strlen(s);
  1161. return len > 0 && len <= MAX_NICKNAME_LEN &&
  1162. strspn(s,LEGAL_NICKNAME_CHARACTERS) == len;
  1163. }
  1164. /** Return true iff <b>s</b> is a legally valid server nickname or
  1165. * hex-encoded identity-key digest. */
  1166. int
  1167. is_legal_nickname_or_hexdigest(const char *s)
  1168. {
  1169. if (*s!='$')
  1170. return is_legal_nickname(s);
  1171. else
  1172. return is_legal_hexdigest(s);
  1173. }
  1174. /** Return true iff <b>s</b> is a legally valid hex-encoded identity-key
  1175. * digest. */
  1176. int
  1177. is_legal_hexdigest(const char *s)
  1178. {
  1179. size_t len;
  1180. tor_assert(s);
  1181. if (s[0] == '$') s++;
  1182. len = strlen(s);
  1183. return (len == HEX_DIGEST_LEN &&
  1184. strspn(s,HEX_CHARACTERS)==len);
  1185. }
  1186. /** Forget that we have issued any router-related warnings, so that we'll
  1187. * warn again if we see the same errors. */
  1188. void
  1189. router_reset_warnings(void)
  1190. {
  1191. if (warned_nonexistent_family) {
  1192. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  1193. smartlist_clear(warned_nonexistent_family);
  1194. }
  1195. }
  1196. /** Release all static resources held in router.c */
  1197. void
  1198. router_free_all(void)
  1199. {
  1200. if (onionkey)
  1201. crypto_free_pk_env(onionkey);
  1202. if (lastonionkey)
  1203. crypto_free_pk_env(lastonionkey);
  1204. if (identitykey)
  1205. crypto_free_pk_env(identitykey);
  1206. if (key_lock)
  1207. tor_mutex_free(key_lock);
  1208. if (desc_routerinfo)
  1209. routerinfo_free(desc_routerinfo);
  1210. if (warned_nonexistent_family) {
  1211. SMARTLIST_FOREACH(warned_nonexistent_family, char *, cp, tor_free(cp));
  1212. smartlist_free(warned_nonexistent_family);
  1213. }
  1214. }