bridges.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2017, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file bridges.c
  8. * \brief Code to manage bridges and bridge selection.
  9. *
  10. * Bridges are fixed entry nodes, used for censorship circumvention.
  11. **/
  12. #include "or.h"
  13. #include "bridges.h"
  14. #include "circuitbuild.h"
  15. #include "config.h"
  16. #include "connection.h"
  17. #include "directory.h"
  18. #include "entrynodes.h"
  19. #include "nodelist.h"
  20. #include "policies.h"
  21. #include "router.h"
  22. #include "routerlist.h"
  23. #include "routerset.h"
  24. #include "transports.h"
  25. /** Information about a configured bridge. Currently this just matches the
  26. * ones in the torrc file, but one day we may be able to learn about new
  27. * bridges on our own, and remember them in the state file. */
  28. struct bridge_info_t {
  29. /** Address and port of the bridge, as configured by the user.*/
  30. tor_addr_port_t addrport_configured;
  31. /** Address of the bridge. */
  32. tor_addr_t addr;
  33. /** TLS port for the bridge. */
  34. uint16_t port;
  35. /** Boolean: We are re-parsing our bridge list, and we are going to remove
  36. * this one if we don't find it in the list of configured bridges. */
  37. unsigned marked_for_removal : 1;
  38. /** Expected identity digest, or all zero bytes if we don't know what the
  39. * digest should be. */
  40. char identity[DIGEST_LEN];
  41. /** Name of pluggable transport protocol taken from its config line. */
  42. char *transport_name;
  43. /** When should we next try to fetch a descriptor for this bridge? */
  44. download_status_t fetch_status;
  45. /** A smartlist of k=v values to be passed to the SOCKS proxy, if
  46. transports are used for this bridge. */
  47. smartlist_t *socks_args;
  48. };
  49. static void bridge_free(bridge_info_t *bridge);
  50. static void rewrite_node_address_for_bridge(const bridge_info_t *bridge,
  51. node_t *node);
  52. /** A list of configured bridges. Whenever we actually get a descriptor
  53. * for one, we add it as an entry guard. Note that the order of bridges
  54. * in this list does not necessarily correspond to the order of bridges
  55. * in the torrc. */
  56. static smartlist_t *bridge_list = NULL;
  57. /** Mark every entry of the bridge list to be removed on our next call to
  58. * sweep_bridge_list unless it has first been un-marked. */
  59. void
  60. mark_bridge_list(void)
  61. {
  62. if (!bridge_list)
  63. bridge_list = smartlist_new();
  64. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, b,
  65. b->marked_for_removal = 1);
  66. }
  67. /** Remove every entry of the bridge list that was marked with
  68. * mark_bridge_list if it has not subsequently been un-marked. */
  69. void
  70. sweep_bridge_list(void)
  71. {
  72. if (!bridge_list)
  73. bridge_list = smartlist_new();
  74. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, b) {
  75. if (b->marked_for_removal) {
  76. SMARTLIST_DEL_CURRENT(bridge_list, b);
  77. bridge_free(b);
  78. }
  79. } SMARTLIST_FOREACH_END(b);
  80. }
  81. /** Initialize the bridge list to empty, creating it if needed. */
  82. static void
  83. clear_bridge_list(void)
  84. {
  85. if (!bridge_list)
  86. bridge_list = smartlist_new();
  87. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, b, bridge_free(b));
  88. smartlist_clear(bridge_list);
  89. }
  90. /** Free the bridge <b>bridge</b>. */
  91. static void
  92. bridge_free(bridge_info_t *bridge)
  93. {
  94. if (!bridge)
  95. return;
  96. tor_free(bridge->transport_name);
  97. if (bridge->socks_args) {
  98. SMARTLIST_FOREACH(bridge->socks_args, char*, s, tor_free(s));
  99. smartlist_free(bridge->socks_args);
  100. }
  101. tor_free(bridge);
  102. }
  103. /** Return a list of all the configured bridges, as bridge_info_t pointers. */
  104. const smartlist_t *
  105. bridge_list_get(void)
  106. {
  107. if (!bridge_list)
  108. bridge_list = smartlist_new();
  109. return bridge_list;
  110. }
  111. /**
  112. * Given a <b>bridge</b>, return a pointer to its RSA identity digest, or
  113. * NULL if we don't know one for it.
  114. */
  115. const uint8_t *
  116. bridge_get_rsa_id_digest(const bridge_info_t *bridge)
  117. {
  118. tor_assert(bridge);
  119. if (tor_digest_is_zero(bridge->identity))
  120. return NULL;
  121. else
  122. return (const uint8_t *) bridge->identity;
  123. }
  124. /**
  125. * Given a <b>bridge</b>, return a pointer to its configured addr:port
  126. * combination.
  127. */
  128. const tor_addr_port_t *
  129. bridge_get_addr_port(const bridge_info_t *bridge)
  130. {
  131. tor_assert(bridge);
  132. return &bridge->addrport_configured;
  133. }
  134. /** If we have a bridge configured whose digest matches <b>digest</b>, or a
  135. * bridge with no known digest whose address matches any of the
  136. * tor_addr_port_t's in <b>orports</b>, return that bridge. Else return
  137. * NULL. */
  138. static bridge_info_t *
  139. get_configured_bridge_by_orports_digest(const char *digest,
  140. const smartlist_t *orports)
  141. {
  142. if (!bridge_list)
  143. return NULL;
  144. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, bridge)
  145. {
  146. if (tor_digest_is_zero(bridge->identity)) {
  147. SMARTLIST_FOREACH_BEGIN(orports, tor_addr_port_t *, ap)
  148. {
  149. if (tor_addr_compare(&bridge->addr, &ap->addr, CMP_EXACT) == 0 &&
  150. bridge->port == ap->port)
  151. return bridge;
  152. }
  153. SMARTLIST_FOREACH_END(ap);
  154. }
  155. if (digest && tor_memeq(bridge->identity, digest, DIGEST_LEN))
  156. return bridge;
  157. }
  158. SMARTLIST_FOREACH_END(bridge);
  159. return NULL;
  160. }
  161. /** If we have a bridge configured whose digest matches <b>digest</b>, or a
  162. * bridge with no known digest whose address matches <b>addr</b>:<b>port</b>,
  163. * return that bridge. Else return NULL. If <b>digest</b> is NULL, check for
  164. * address/port matches only. */
  165. bridge_info_t *
  166. get_configured_bridge_by_addr_port_digest(const tor_addr_t *addr,
  167. uint16_t port,
  168. const char *digest)
  169. {
  170. if (!bridge_list)
  171. return NULL;
  172. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, bridge)
  173. {
  174. if ((tor_digest_is_zero(bridge->identity) || digest == NULL) &&
  175. !tor_addr_compare(&bridge->addr, addr, CMP_EXACT) &&
  176. bridge->port == port)
  177. return bridge;
  178. if (digest && tor_memeq(bridge->identity, digest, DIGEST_LEN))
  179. return bridge;
  180. }
  181. SMARTLIST_FOREACH_END(bridge);
  182. return NULL;
  183. }
  184. /**
  185. * As get_configured_bridge_by_addr_port, but require that the
  186. * address match <b>addr</b>:<b>port</b>, and that the ID digest match
  187. * <b>digest</b>. (The other function will ignore the address if the
  188. * digest matches.)
  189. */
  190. bridge_info_t *
  191. get_configured_bridge_by_exact_addr_port_digest(const tor_addr_t *addr,
  192. uint16_t port,
  193. const char *digest)
  194. {
  195. if (!bridge_list)
  196. return NULL;
  197. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, bridge) {
  198. if (!tor_addr_compare(&bridge->addr, addr, CMP_EXACT) &&
  199. bridge->port == port) {
  200. if (digest && tor_memeq(bridge->identity, digest, DIGEST_LEN))
  201. return bridge;
  202. else if (!digest || tor_digest_is_zero(bridge->identity))
  203. return bridge;
  204. }
  205. } SMARTLIST_FOREACH_END(bridge);
  206. return NULL;
  207. }
  208. /** If we have a bridge configured whose digest matches <b>digest</b>, or a
  209. * bridge with no known digest whose address matches <b>addr</b>:<b>port</b>,
  210. * return 1. Else return 0. If <b>digest</b> is NULL, check for
  211. * address/port matches only. */
  212. int
  213. addr_is_a_configured_bridge(const tor_addr_t *addr,
  214. uint16_t port,
  215. const char *digest)
  216. {
  217. tor_assert(addr);
  218. return get_configured_bridge_by_addr_port_digest(addr, port, digest) ? 1 : 0;
  219. }
  220. /** If we have a bridge configured whose digest matches
  221. * <b>ei->identity_digest</b>, or a bridge with no known digest whose address
  222. * matches <b>ei->addr</b>:<b>ei->port</b>, return 1. Else return 0.
  223. * If <b>ei->onion_key</b> is NULL, check for address/port matches only. */
  224. int
  225. extend_info_is_a_configured_bridge(const extend_info_t *ei)
  226. {
  227. const char *digest = ei->onion_key ? ei->identity_digest : NULL;
  228. return addr_is_a_configured_bridge(&ei->addr, ei->port, digest);
  229. }
  230. /** Wrapper around get_configured_bridge_by_addr_port_digest() to look
  231. * it up via router descriptor <b>ri</b>. */
  232. static bridge_info_t *
  233. get_configured_bridge_by_routerinfo(const routerinfo_t *ri)
  234. {
  235. bridge_info_t *bi = NULL;
  236. smartlist_t *orports = router_get_all_orports(ri);
  237. bi = get_configured_bridge_by_orports_digest(ri->cache_info.identity_digest,
  238. orports);
  239. SMARTLIST_FOREACH(orports, tor_addr_port_t *, p, tor_free(p));
  240. smartlist_free(orports);
  241. return bi;
  242. }
  243. /** Return 1 if <b>ri</b> is one of our known bridges, else 0. */
  244. int
  245. routerinfo_is_a_configured_bridge(const routerinfo_t *ri)
  246. {
  247. return get_configured_bridge_by_routerinfo(ri) ? 1 : 0;
  248. }
  249. /** Return 1 if <b>node</b> is one of our configured bridges, else 0. */
  250. int
  251. node_is_a_configured_bridge(const node_t *node)
  252. {
  253. int retval = 0;
  254. smartlist_t *orports = node_get_all_orports(node);
  255. retval = get_configured_bridge_by_orports_digest(node->identity,
  256. orports) != NULL;
  257. SMARTLIST_FOREACH(orports, tor_addr_port_t *, p, tor_free(p));
  258. smartlist_free(orports);
  259. return retval;
  260. }
  261. /** We made a connection to a router at <b>addr</b>:<b>port</b>
  262. * without knowing its digest. Its digest turned out to be <b>digest</b>.
  263. * If it was a bridge, and we still don't know its digest, record it.
  264. */
  265. void
  266. learned_router_identity(const tor_addr_t *addr, uint16_t port,
  267. const char *digest,
  268. const ed25519_public_key_t *ed_id)
  269. {
  270. // XXXX prop220 use ed_id here, once there is some way to specify
  271. (void)ed_id;
  272. int learned = 0;
  273. bridge_info_t *bridge =
  274. get_configured_bridge_by_exact_addr_port_digest(addr, port, digest);
  275. if (bridge && tor_digest_is_zero(bridge->identity)) {
  276. memcpy(bridge->identity, digest, DIGEST_LEN);
  277. learned = 1;
  278. }
  279. /* XXXX prop220 remember bridge ed25519 identities -- add a field */
  280. #if 0
  281. if (bridge && ed_id &&
  282. ed25519_public_key_is_zero(&bridge->ed25519_identity) &&
  283. !ed25519_public_key_is_zero(ed_id)) {
  284. memcpy(&bridge->ed25519_identity, ed_id, sizeof(*ed_id));
  285. learned = 1;
  286. }
  287. #endif /* 0 */
  288. if (learned) {
  289. char *transport_info = NULL;
  290. const char *transport_name =
  291. find_transport_name_by_bridge_addrport(addr, port);
  292. if (transport_name)
  293. tor_asprintf(&transport_info, " (with transport '%s')", transport_name);
  294. // XXXX prop220 log both fingerprints.
  295. log_notice(LD_DIR, "Learned fingerprint %s for bridge %s%s.",
  296. hex_str(digest, DIGEST_LEN), fmt_addrport(addr, port),
  297. transport_info ? transport_info : "");
  298. tor_free(transport_info);
  299. entry_guard_learned_bridge_identity(&bridge->addrport_configured,
  300. (const uint8_t *)digest);
  301. }
  302. }
  303. /** Return true if <b>bridge</b> has the same identity digest as
  304. * <b>digest</b>. If <b>digest</b> is NULL, it matches
  305. * bridges with unspecified identity digests. */
  306. static int
  307. bridge_has_digest(const bridge_info_t *bridge, const char *digest)
  308. {
  309. if (digest)
  310. return tor_memeq(digest, bridge->identity, DIGEST_LEN);
  311. else
  312. return tor_digest_is_zero(bridge->identity);
  313. }
  314. /** We are about to add a new bridge at <b>addr</b>:<b>port</b>, with optional
  315. * <b>digest</b> and <b>transport_name</b>. Mark for removal any previously
  316. * existing bridge with the same address and port, and warn the user as
  317. * appropriate.
  318. */
  319. static void
  320. bridge_resolve_conflicts(const tor_addr_t *addr, uint16_t port,
  321. const char *digest, const char *transport_name)
  322. {
  323. /* Iterate the already-registered bridge list:
  324. If you find a bridge with the same adress and port, mark it for
  325. removal. It doesn't make sense to have two active bridges with
  326. the same IP:PORT. If the bridge in question has a different
  327. digest or transport than <b>digest</b>/<b>transport_name</b>,
  328. it's probably a misconfiguration and we should warn the user.
  329. */
  330. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, bridge) {
  331. if (bridge->marked_for_removal)
  332. continue;
  333. if (tor_addr_eq(&bridge->addr, addr) && (bridge->port == port)) {
  334. bridge->marked_for_removal = 1;
  335. if (!bridge_has_digest(bridge, digest) ||
  336. strcmp_opt(bridge->transport_name, transport_name)) {
  337. /* warn the user */
  338. char *bridge_description_new, *bridge_description_old;
  339. tor_asprintf(&bridge_description_new, "%s:%s:%s",
  340. fmt_addrport(addr, port),
  341. digest ? hex_str(digest, DIGEST_LEN) : "",
  342. transport_name ? transport_name : "");
  343. tor_asprintf(&bridge_description_old, "%s:%s:%s",
  344. fmt_addrport(&bridge->addr, bridge->port),
  345. tor_digest_is_zero(bridge->identity) ?
  346. "" : hex_str(bridge->identity,DIGEST_LEN),
  347. bridge->transport_name ? bridge->transport_name : "");
  348. log_warn(LD_GENERAL,"Tried to add bridge '%s', but we found a conflict"
  349. " with the already registered bridge '%s'. We will discard"
  350. " the old bridge and keep '%s'. If this is not what you"
  351. " wanted, please change your configuration file accordingly.",
  352. bridge_description_new, bridge_description_old,
  353. bridge_description_new);
  354. tor_free(bridge_description_new);
  355. tor_free(bridge_description_old);
  356. }
  357. }
  358. } SMARTLIST_FOREACH_END(bridge);
  359. }
  360. /** Return True if we have a bridge that uses a transport with name
  361. * <b>transport_name</b>. */
  362. MOCK_IMPL(int,
  363. transport_is_needed, (const char *transport_name))
  364. {
  365. if (!bridge_list)
  366. return 0;
  367. SMARTLIST_FOREACH_BEGIN(bridge_list, const bridge_info_t *, bridge) {
  368. if (bridge->transport_name &&
  369. !strcmp(bridge->transport_name, transport_name))
  370. return 1;
  371. } SMARTLIST_FOREACH_END(bridge);
  372. return 0;
  373. }
  374. /** Register the bridge information in <b>bridge_line</b> to the
  375. * bridge subsystem. Steals reference of <b>bridge_line</b>. */
  376. void
  377. bridge_add_from_config(bridge_line_t *bridge_line)
  378. {
  379. bridge_info_t *b;
  380. // XXXX prop220 add a way to specify ed25519 ID to bridge_line_t.
  381. { /* Log the bridge we are about to register: */
  382. log_debug(LD_GENERAL, "Registering bridge at %s (transport: %s) (%s)",
  383. fmt_addrport(&bridge_line->addr, bridge_line->port),
  384. bridge_line->transport_name ?
  385. bridge_line->transport_name : "no transport",
  386. tor_digest_is_zero(bridge_line->digest) ?
  387. "no key listed" : hex_str(bridge_line->digest, DIGEST_LEN));
  388. if (bridge_line->socks_args) { /* print socks arguments */
  389. int i = 0;
  390. tor_assert(smartlist_len(bridge_line->socks_args) > 0);
  391. log_debug(LD_GENERAL, "Bridge uses %d SOCKS arguments:",
  392. smartlist_len(bridge_line->socks_args));
  393. SMARTLIST_FOREACH(bridge_line->socks_args, const char *, arg,
  394. log_debug(LD_CONFIG, "%d: %s", ++i, arg));
  395. }
  396. }
  397. bridge_resolve_conflicts(&bridge_line->addr,
  398. bridge_line->port,
  399. bridge_line->digest,
  400. bridge_line->transport_name);
  401. b = tor_malloc_zero(sizeof(bridge_info_t));
  402. tor_addr_copy(&b->addrport_configured.addr, &bridge_line->addr);
  403. b->addrport_configured.port = bridge_line->port;
  404. tor_addr_copy(&b->addr, &bridge_line->addr);
  405. b->port = bridge_line->port;
  406. memcpy(b->identity, bridge_line->digest, DIGEST_LEN);
  407. if (bridge_line->transport_name)
  408. b->transport_name = bridge_line->transport_name;
  409. b->fetch_status.schedule = DL_SCHED_BRIDGE;
  410. b->fetch_status.backoff = DL_SCHED_RANDOM_EXPONENTIAL;
  411. b->fetch_status.increment_on = DL_SCHED_INCREMENT_ATTEMPT;
  412. /* We can't reset the bridge's download status here, because UseBridges
  413. * might be 0 now, and it might be changed to 1 much later. */
  414. b->socks_args = bridge_line->socks_args;
  415. if (!bridge_list)
  416. bridge_list = smartlist_new();
  417. tor_free(bridge_line); /* Deallocate bridge_line now. */
  418. smartlist_add(bridge_list, b);
  419. }
  420. /** If <b>digest</b> is one of our known bridges, return it. */
  421. bridge_info_t *
  422. find_bridge_by_digest(const char *digest)
  423. {
  424. if (! bridge_list)
  425. return NULL;
  426. SMARTLIST_FOREACH(bridge_list, bridge_info_t *, bridge,
  427. {
  428. if (tor_memeq(bridge->identity, digest, DIGEST_LEN))
  429. return bridge;
  430. });
  431. return NULL;
  432. }
  433. /** Given the <b>addr</b> and <b>port</b> of a bridge, if that bridge
  434. * supports a pluggable transport, return its name. Otherwise, return
  435. * NULL. */
  436. const char *
  437. find_transport_name_by_bridge_addrport(const tor_addr_t *addr, uint16_t port)
  438. {
  439. if (!bridge_list)
  440. return NULL;
  441. SMARTLIST_FOREACH_BEGIN(bridge_list, const bridge_info_t *, bridge) {
  442. if (tor_addr_eq(&bridge->addr, addr) &&
  443. (bridge->port == port))
  444. return bridge->transport_name;
  445. } SMARTLIST_FOREACH_END(bridge);
  446. return NULL;
  447. }
  448. /** If <b>addr</b> and <b>port</b> match the address and port of a
  449. * bridge of ours that uses pluggable transports, place its transport
  450. * in <b>transport</b>.
  451. *
  452. * Return 0 on success (found a transport, or found a bridge with no
  453. * transport, or found no bridge); return -1 if we should be using a
  454. * transport, but the transport could not be found.
  455. */
  456. int
  457. get_transport_by_bridge_addrport(const tor_addr_t *addr, uint16_t port,
  458. const transport_t **transport)
  459. {
  460. *transport = NULL;
  461. if (!bridge_list)
  462. return 0;
  463. SMARTLIST_FOREACH_BEGIN(bridge_list, const bridge_info_t *, bridge) {
  464. if (tor_addr_eq(&bridge->addr, addr) &&
  465. (bridge->port == port)) { /* bridge matched */
  466. if (bridge->transport_name) { /* it also uses pluggable transports */
  467. *transport = transport_get_by_name(bridge->transport_name);
  468. if (*transport == NULL) { /* it uses pluggable transports, but
  469. the transport could not be found! */
  470. return -1;
  471. }
  472. return 0;
  473. } else { /* bridge matched, but it doesn't use transports. */
  474. break;
  475. }
  476. }
  477. } SMARTLIST_FOREACH_END(bridge);
  478. *transport = NULL;
  479. return 0;
  480. }
  481. /** Return a smartlist containing all the SOCKS arguments that we
  482. * should pass to the SOCKS proxy. */
  483. const smartlist_t *
  484. get_socks_args_by_bridge_addrport(const tor_addr_t *addr, uint16_t port)
  485. {
  486. bridge_info_t *bridge = get_configured_bridge_by_addr_port_digest(addr,
  487. port,
  488. NULL);
  489. return bridge ? bridge->socks_args : NULL;
  490. }
  491. /** We need to ask <b>bridge</b> for its server descriptor. */
  492. static void
  493. launch_direct_bridge_descriptor_fetch(bridge_info_t *bridge)
  494. {
  495. const or_options_t *options = get_options();
  496. circuit_guard_state_t *guard_state = NULL;
  497. if (connection_get_by_type_addr_port_purpose(
  498. CONN_TYPE_DIR, &bridge->addr, bridge->port,
  499. DIR_PURPOSE_FETCH_SERVERDESC))
  500. return; /* it's already on the way */
  501. if (routerset_contains_bridge(options->ExcludeNodes, bridge)) {
  502. download_status_mark_impossible(&bridge->fetch_status);
  503. log_warn(LD_APP, "Not using bridge at %s: it is in ExcludeNodes.",
  504. safe_str_client(fmt_and_decorate_addr(&bridge->addr)));
  505. return;
  506. }
  507. /* Until we get a descriptor for the bridge, we only know one address for
  508. * it. */
  509. if (!fascist_firewall_allows_address_addr(&bridge->addr, bridge->port,
  510. FIREWALL_OR_CONNECTION, 0, 0)) {
  511. log_notice(LD_CONFIG, "Tried to fetch a descriptor directly from a "
  512. "bridge, but that bridge is not reachable through our "
  513. "firewall.");
  514. return;
  515. }
  516. /* If we already have a node_t for this bridge, rewrite its address now. */
  517. node_t *node = node_get_mutable_by_id(bridge->identity);
  518. if (node) {
  519. rewrite_node_address_for_bridge(bridge, node);
  520. }
  521. tor_addr_port_t bridge_addrport;
  522. memcpy(&bridge_addrport.addr, &bridge->addr, sizeof(tor_addr_t));
  523. bridge_addrport.port = bridge->port;
  524. guard_state = get_guard_state_for_bridge_desc_fetch(bridge->identity);
  525. directory_request_t *req =
  526. directory_request_new(DIR_PURPOSE_FETCH_SERVERDESC);
  527. directory_request_set_or_addr_port(req, &bridge_addrport);
  528. directory_request_set_directory_id_digest(req, bridge->identity);
  529. directory_request_set_router_purpose(req, ROUTER_PURPOSE_BRIDGE);
  530. directory_request_set_resource(req, "authority.z");
  531. if (guard_state) {
  532. directory_request_set_guard_state(req, guard_state);
  533. }
  534. directory_initiate_request(req);
  535. directory_request_free(req);
  536. }
  537. /** Fetching the bridge descriptor from the bridge authority returned a
  538. * "not found". Fall back to trying a direct fetch. */
  539. void
  540. retry_bridge_descriptor_fetch_directly(const char *digest)
  541. {
  542. bridge_info_t *bridge = find_bridge_by_digest(digest);
  543. if (!bridge)
  544. return; /* not found? oh well. */
  545. launch_direct_bridge_descriptor_fetch(bridge);
  546. }
  547. /** For each bridge in our list for which we don't currently have a
  548. * descriptor, fetch a new copy of its descriptor -- either directly
  549. * from the bridge or via a bridge authority. */
  550. void
  551. fetch_bridge_descriptors(const or_options_t *options, time_t now)
  552. {
  553. int num_bridge_auths = get_n_authorities(BRIDGE_DIRINFO);
  554. int ask_bridge_directly;
  555. int can_use_bridge_authority;
  556. if (!bridge_list)
  557. return;
  558. /* If we still have unconfigured managed proxies, don't go and
  559. connect to a bridge. */
  560. if (pt_proxies_configuration_pending())
  561. return;
  562. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, bridge)
  563. {
  564. /* This resets the download status on first use */
  565. if (!download_status_is_ready(&bridge->fetch_status, now,
  566. IMPOSSIBLE_TO_DOWNLOAD))
  567. continue; /* don't bother, no need to retry yet */
  568. if (routerset_contains_bridge(options->ExcludeNodes, bridge)) {
  569. download_status_mark_impossible(&bridge->fetch_status);
  570. log_warn(LD_APP, "Not using bridge at %s: it is in ExcludeNodes.",
  571. safe_str_client(fmt_and_decorate_addr(&bridge->addr)));
  572. continue;
  573. }
  574. /* schedule the next attempt
  575. * we can't increment after a failure, because sometimes we use the
  576. * bridge authority, and sometimes we use the bridge direct */
  577. download_status_increment_attempt(
  578. &bridge->fetch_status,
  579. safe_str_client(fmt_and_decorate_addr(&bridge->addr)),
  580. now);
  581. can_use_bridge_authority = !tor_digest_is_zero(bridge->identity) &&
  582. num_bridge_auths;
  583. ask_bridge_directly = !can_use_bridge_authority ||
  584. !options->UpdateBridgesFromAuthority;
  585. log_debug(LD_DIR, "ask_bridge_directly=%d (%d, %d, %d)",
  586. ask_bridge_directly, tor_digest_is_zero(bridge->identity),
  587. !options->UpdateBridgesFromAuthority, !num_bridge_auths);
  588. if (ask_bridge_directly &&
  589. !fascist_firewall_allows_address_addr(&bridge->addr, bridge->port,
  590. FIREWALL_OR_CONNECTION, 0,
  591. 0)) {
  592. log_notice(LD_DIR, "Bridge at '%s' isn't reachable by our "
  593. "firewall policy. %s.",
  594. fmt_addrport(&bridge->addr, bridge->port),
  595. can_use_bridge_authority ?
  596. "Asking bridge authority instead" : "Skipping");
  597. if (can_use_bridge_authority)
  598. ask_bridge_directly = 0;
  599. else
  600. continue;
  601. }
  602. if (ask_bridge_directly) {
  603. /* we need to ask the bridge itself for its descriptor. */
  604. launch_direct_bridge_descriptor_fetch(bridge);
  605. } else {
  606. /* We have a digest and we want to ask an authority. We could
  607. * combine all the requests into one, but that may give more
  608. * hints to the bridge authority than we want to give. */
  609. char resource[10 + HEX_DIGEST_LEN];
  610. memcpy(resource, "fp/", 3);
  611. base16_encode(resource+3, HEX_DIGEST_LEN+1,
  612. bridge->identity, DIGEST_LEN);
  613. memcpy(resource+3+HEX_DIGEST_LEN, ".z", 3);
  614. log_info(LD_DIR, "Fetching bridge info '%s' from bridge authority.",
  615. resource);
  616. directory_get_from_dirserver(DIR_PURPOSE_FETCH_SERVERDESC,
  617. ROUTER_PURPOSE_BRIDGE, resource, 0, DL_WANT_AUTHORITY);
  618. }
  619. }
  620. SMARTLIST_FOREACH_END(bridge);
  621. }
  622. /** If our <b>bridge</b> is configured to be a different address than
  623. * the bridge gives in <b>node</b>, rewrite the routerinfo
  624. * we received to use the address we meant to use. Now we handle
  625. * multihomed bridges better.
  626. */
  627. static void
  628. rewrite_node_address_for_bridge(const bridge_info_t *bridge, node_t *node)
  629. {
  630. /* XXXX move this function. */
  631. /* XXXX overridden addresses should really live in the node_t, so that the
  632. * routerinfo_t and the microdesc_t can be immutable. But we can only
  633. * do that safely if we know that no function that connects to an OR
  634. * does so through an address from any source other than node_get_addr().
  635. */
  636. tor_addr_t addr;
  637. const or_options_t *options = get_options();
  638. if (node->ri) {
  639. routerinfo_t *ri = node->ri;
  640. tor_addr_from_ipv4h(&addr, ri->addr);
  641. if ((!tor_addr_compare(&bridge->addr, &addr, CMP_EXACT) &&
  642. bridge->port == ri->or_port) ||
  643. (!tor_addr_compare(&bridge->addr, &ri->ipv6_addr, CMP_EXACT) &&
  644. bridge->port == ri->ipv6_orport)) {
  645. /* they match, so no need to do anything */
  646. } else {
  647. if (tor_addr_family(&bridge->addr) == AF_INET) {
  648. ri->addr = tor_addr_to_ipv4h(&bridge->addr);
  649. ri->or_port = bridge->port;
  650. log_info(LD_DIR,
  651. "Adjusted bridge routerinfo for '%s' to match configured "
  652. "address %s:%d.",
  653. ri->nickname, fmt_addr32(ri->addr), ri->or_port);
  654. } else if (tor_addr_family(&bridge->addr) == AF_INET6) {
  655. tor_addr_copy(&ri->ipv6_addr, &bridge->addr);
  656. ri->ipv6_orport = bridge->port;
  657. log_info(LD_DIR,
  658. "Adjusted bridge routerinfo for '%s' to match configured "
  659. "address %s.",
  660. ri->nickname, fmt_addrport(&ri->ipv6_addr, ri->ipv6_orport));
  661. } else {
  662. log_err(LD_BUG, "Address family not supported: %d.",
  663. tor_addr_family(&bridge->addr));
  664. return;
  665. }
  666. }
  667. if (options->ClientPreferIPv6ORPort == -1) {
  668. /* Mark which address to use based on which bridge_t we got. */
  669. node->ipv6_preferred = (tor_addr_family(&bridge->addr) == AF_INET6 &&
  670. !tor_addr_is_null(&node->ri->ipv6_addr));
  671. } else {
  672. /* Mark which address to use based on user preference */
  673. node->ipv6_preferred = (fascist_firewall_prefer_ipv6_orport(options) &&
  674. !tor_addr_is_null(&node->ri->ipv6_addr));
  675. }
  676. /* XXXipv6 we lack support for falling back to another address for
  677. the same relay, warn the user */
  678. if (!tor_addr_is_null(&ri->ipv6_addr)) {
  679. tor_addr_port_t ap;
  680. node_get_pref_orport(node, &ap);
  681. log_notice(LD_CONFIG,
  682. "Bridge '%s' has both an IPv4 and an IPv6 address. "
  683. "Will prefer using its %s address (%s) based on %s.",
  684. ri->nickname,
  685. node->ipv6_preferred ? "IPv6" : "IPv4",
  686. fmt_addrport(&ap.addr, ap.port),
  687. options->ClientPreferIPv6ORPort == -1 ?
  688. "the configured Bridge address" :
  689. "ClientPreferIPv6ORPort");
  690. }
  691. }
  692. if (node->rs) {
  693. routerstatus_t *rs = node->rs;
  694. tor_addr_from_ipv4h(&addr, rs->addr);
  695. if ((!tor_addr_compare(&bridge->addr, &addr, CMP_EXACT) &&
  696. bridge->port == rs->or_port) ||
  697. (!tor_addr_compare(&bridge->addr, &rs->ipv6_addr, CMP_EXACT) &&
  698. bridge->port == rs->ipv6_orport)) {
  699. /* they match, so no need to do anything */
  700. } else {
  701. if (tor_addr_family(&bridge->addr) == AF_INET) {
  702. rs->addr = tor_addr_to_ipv4h(&bridge->addr);
  703. rs->or_port = bridge->port;
  704. log_info(LD_DIR,
  705. "Adjusted bridge routerstatus for '%s' to match "
  706. "configured address %s.",
  707. rs->nickname, fmt_addrport(&bridge->addr, rs->or_port));
  708. /* set IPv6 preferences even if there is no ri */
  709. } else if (tor_addr_family(&bridge->addr) == AF_INET6) {
  710. tor_addr_copy(&rs->ipv6_addr, &bridge->addr);
  711. rs->ipv6_orport = bridge->port;
  712. log_info(LD_DIR,
  713. "Adjusted bridge routerstatus for '%s' to match configured"
  714. " address %s.",
  715. rs->nickname, fmt_addrport(&rs->ipv6_addr, rs->ipv6_orport));
  716. } else {
  717. log_err(LD_BUG, "Address family not supported: %d.",
  718. tor_addr_family(&bridge->addr));
  719. return;
  720. }
  721. }
  722. if (options->ClientPreferIPv6ORPort == -1) {
  723. /* Mark which address to use based on which bridge_t we got. */
  724. node->ipv6_preferred = (tor_addr_family(&bridge->addr) == AF_INET6 &&
  725. !tor_addr_is_null(&node->rs->ipv6_addr));
  726. } else {
  727. /* Mark which address to use based on user preference */
  728. node->ipv6_preferred = (fascist_firewall_prefer_ipv6_orport(options) &&
  729. !tor_addr_is_null(&node->rs->ipv6_addr));
  730. }
  731. /* XXXipv6 we lack support for falling back to another address for
  732. the same relay, warn the user */
  733. if (!tor_addr_is_null(&rs->ipv6_addr)) {
  734. tor_addr_port_t ap;
  735. node_get_pref_orport(node, &ap);
  736. log_notice(LD_CONFIG,
  737. "Bridge '%s' has both an IPv4 and an IPv6 address. "
  738. "Will prefer using its %s address (%s) based on %s.",
  739. rs->nickname,
  740. node->ipv6_preferred ? "IPv6" : "IPv4",
  741. fmt_addrport(&ap.addr, ap.port),
  742. options->ClientPreferIPv6ORPort == -1 ?
  743. "the configured Bridge address" :
  744. "ClientPreferIPv6ORPort");
  745. }
  746. }
  747. }
  748. /** We just learned a descriptor for a bridge. See if that
  749. * digest is in our entry guard list, and add it if not. */
  750. void
  751. learned_bridge_descriptor(routerinfo_t *ri, int from_cache)
  752. {
  753. tor_assert(ri);
  754. tor_assert(ri->purpose == ROUTER_PURPOSE_BRIDGE);
  755. if (get_options()->UseBridges) {
  756. /* Retry directory downloads whenever we get a bridge descriptor:
  757. * - when bootstrapping, and
  758. * - when we aren't sure if any of our bridges are reachable.
  759. * Keep on retrying until we have at least one reachable bridge. */
  760. int first = num_bridges_usable(0) < 1;
  761. bridge_info_t *bridge = get_configured_bridge_by_routerinfo(ri);
  762. time_t now = time(NULL);
  763. router_set_status(ri->cache_info.identity_digest, 1);
  764. if (bridge) { /* if we actually want to use this one */
  765. node_t *node;
  766. /* it's here; schedule its re-fetch for a long time from now. */
  767. if (!from_cache) {
  768. /* This schedules the re-fetch at a constant interval, which produces
  769. * a pattern of bridge traffic. But it's better than trying all
  770. * configured briges several times in the first few minutes. */
  771. download_status_reset(&bridge->fetch_status);
  772. }
  773. node = node_get_mutable_by_id(ri->cache_info.identity_digest);
  774. tor_assert(node);
  775. rewrite_node_address_for_bridge(bridge, node);
  776. if (tor_digest_is_zero(bridge->identity)) {
  777. memcpy(bridge->identity,ri->cache_info.identity_digest, DIGEST_LEN);
  778. log_notice(LD_DIR, "Learned identity %s for bridge at %s:%d",
  779. hex_str(bridge->identity, DIGEST_LEN),
  780. fmt_and_decorate_addr(&bridge->addr),
  781. (int) bridge->port);
  782. }
  783. entry_guard_learned_bridge_identity(&bridge->addrport_configured,
  784. (const uint8_t*)ri->cache_info.identity_digest);
  785. log_notice(LD_DIR, "new bridge descriptor '%s' (%s): %s", ri->nickname,
  786. from_cache ? "cached" : "fresh", router_describe(ri));
  787. /* If we didn't have a reachable bridge before this one, try directory
  788. * documents again. */
  789. if (first) {
  790. routerlist_retry_directory_downloads(now);
  791. }
  792. }
  793. }
  794. }
  795. /** Return a smartlist containing all bridge identity digests */
  796. MOCK_IMPL(smartlist_t *,
  797. list_bridge_identities, (void))
  798. {
  799. smartlist_t *result = NULL;
  800. char *digest_tmp;
  801. if (get_options()->UseBridges && bridge_list) {
  802. result = smartlist_new();
  803. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, b) {
  804. digest_tmp = tor_malloc(DIGEST_LEN);
  805. memcpy(digest_tmp, b->identity, DIGEST_LEN);
  806. smartlist_add(result, digest_tmp);
  807. } SMARTLIST_FOREACH_END(b);
  808. }
  809. return result;
  810. }
  811. /** Get the download status for a bridge descriptor given its identity */
  812. MOCK_IMPL(download_status_t *,
  813. get_bridge_dl_status_by_id, (const char *digest))
  814. {
  815. download_status_t *dl = NULL;
  816. if (digest && get_options()->UseBridges && bridge_list) {
  817. SMARTLIST_FOREACH_BEGIN(bridge_list, bridge_info_t *, b) {
  818. if (tor_memeq(digest, b->identity, DIGEST_LEN)) {
  819. dl = &(b->fetch_status);
  820. break;
  821. }
  822. } SMARTLIST_FOREACH_END(b);
  823. }
  824. return dl;
  825. }
  826. /** Release all storage held in bridges.c */
  827. void
  828. bridges_free_all(void)
  829. {
  830. clear_bridge_list();
  831. smartlist_free(bridge_list);
  832. bridge_list = NULL;
  833. }