bridges.c 33 KB

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