circuitlist.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389
  1. /* Copyright 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2011, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file circuitlist.c
  8. * \brief Manage the global circuit list.
  9. **/
  10. #include "or.h"
  11. #include "circuitbuild.h"
  12. #include "circuitlist.h"
  13. #include "circuituse.h"
  14. #include "connection.h"
  15. #include "config.h"
  16. #include "connection_edge.h"
  17. #include "connection_or.h"
  18. #include "control.h"
  19. #include "networkstatus.h"
  20. #include "onion.h"
  21. #include "relay.h"
  22. #include "rendclient.h"
  23. #include "rendcommon.h"
  24. #include "rephist.h"
  25. #include "routerlist.h"
  26. #include "ht.h"
  27. /********* START VARIABLES **********/
  28. /** A global list of all circuits at this hop. */
  29. circuit_t *global_circuitlist=NULL;
  30. /** A list of all the circuits in CIRCUIT_STATE_OR_WAIT. */
  31. static smartlist_t *circuits_pending_or_conns=NULL;
  32. static void circuit_free(circuit_t *circ);
  33. static void circuit_free_cpath(crypt_path_t *cpath);
  34. static void circuit_free_cpath_node(crypt_path_t *victim);
  35. /********* END VARIABLES ************/
  36. /** A map from OR connection and circuit ID to circuit. (Lookup performance is
  37. * very important here, since we need to do it every time a cell arrives.) */
  38. typedef struct orconn_circid_circuit_map_t {
  39. HT_ENTRY(orconn_circid_circuit_map_t) node;
  40. or_connection_t *or_conn;
  41. circid_t circ_id;
  42. circuit_t *circuit;
  43. } orconn_circid_circuit_map_t;
  44. /** Helper for hash tables: compare the OR connection and circuit ID for a and
  45. * b, and return less than, equal to, or greater than zero appropriately.
  46. */
  47. static INLINE int
  48. _orconn_circid_entries_eq(orconn_circid_circuit_map_t *a,
  49. orconn_circid_circuit_map_t *b)
  50. {
  51. return a->or_conn == b->or_conn && a->circ_id == b->circ_id;
  52. }
  53. /** Helper: return a hash based on circuit ID and the pointer value of
  54. * or_conn in <b>a</b>. */
  55. static INLINE unsigned int
  56. _orconn_circid_entry_hash(orconn_circid_circuit_map_t *a)
  57. {
  58. return (((unsigned)a->circ_id)<<8) ^ (unsigned)(uintptr_t)(a->or_conn);
  59. }
  60. /** Map from [orconn,circid] to circuit. */
  61. static HT_HEAD(orconn_circid_map, orconn_circid_circuit_map_t)
  62. orconn_circid_circuit_map = HT_INITIALIZER();
  63. HT_PROTOTYPE(orconn_circid_map, orconn_circid_circuit_map_t, node,
  64. _orconn_circid_entry_hash, _orconn_circid_entries_eq)
  65. HT_GENERATE(orconn_circid_map, orconn_circid_circuit_map_t, node,
  66. _orconn_circid_entry_hash, _orconn_circid_entries_eq, 0.6,
  67. malloc, realloc, free)
  68. /** The most recently returned entry from circuit_get_by_circid_orconn;
  69. * used to improve performance when many cells arrive in a row from the
  70. * same circuit.
  71. */
  72. orconn_circid_circuit_map_t *_last_circid_orconn_ent = NULL;
  73. /** Implementation helper for circuit_set_{p,n}_circid_orconn: A circuit ID
  74. * and/or or_connection for circ has just changed from <b>old_conn, old_id</b>
  75. * to <b>conn, id</b>. Adjust the conn,circid map as appropriate, removing
  76. * the old entry (if any) and adding a new one. If <b>active</b> is true,
  77. * remove the circuit from the list of active circuits on old_conn and add it
  78. * to the list of active circuits on conn.
  79. * XXX "active" isn't an arg anymore */
  80. static void
  81. circuit_set_circid_orconn_helper(circuit_t *circ, int direction,
  82. circid_t id,
  83. or_connection_t *conn)
  84. {
  85. orconn_circid_circuit_map_t search;
  86. orconn_circid_circuit_map_t *found;
  87. or_connection_t *old_conn, **conn_ptr;
  88. circid_t old_id, *circid_ptr;
  89. int was_active, make_active;
  90. if (direction == CELL_DIRECTION_OUT) {
  91. conn_ptr = &circ->n_conn;
  92. circid_ptr = &circ->n_circ_id;
  93. was_active = circ->next_active_on_n_conn != NULL;
  94. make_active = circ->n_conn_cells.n > 0;
  95. } else {
  96. or_circuit_t *c = TO_OR_CIRCUIT(circ);
  97. conn_ptr = &c->p_conn;
  98. circid_ptr = &c->p_circ_id;
  99. was_active = c->next_active_on_p_conn != NULL;
  100. make_active = c->p_conn_cells.n > 0;
  101. }
  102. old_conn = *conn_ptr;
  103. old_id = *circid_ptr;
  104. if (id == old_id && conn == old_conn)
  105. return;
  106. if (_last_circid_orconn_ent &&
  107. ((old_id == _last_circid_orconn_ent->circ_id &&
  108. old_conn == _last_circid_orconn_ent->or_conn) ||
  109. (id == _last_circid_orconn_ent->circ_id &&
  110. conn == _last_circid_orconn_ent->or_conn))) {
  111. _last_circid_orconn_ent = NULL;
  112. }
  113. if (old_conn) { /* we may need to remove it from the conn-circid map */
  114. tor_assert(old_conn->_base.magic == OR_CONNECTION_MAGIC);
  115. search.circ_id = old_id;
  116. search.or_conn = old_conn;
  117. found = HT_REMOVE(orconn_circid_map, &orconn_circid_circuit_map, &search);
  118. if (found) {
  119. tor_free(found);
  120. --old_conn->n_circuits;
  121. }
  122. if (was_active && old_conn != conn)
  123. make_circuit_inactive_on_conn(circ,old_conn);
  124. }
  125. /* Change the values only after we have possibly made the circuit inactive
  126. * on the previous conn. */
  127. *conn_ptr = conn;
  128. *circid_ptr = id;
  129. if (conn == NULL)
  130. return;
  131. /* now add the new one to the conn-circid map */
  132. search.circ_id = id;
  133. search.or_conn = conn;
  134. found = HT_FIND(orconn_circid_map, &orconn_circid_circuit_map, &search);
  135. if (found) {
  136. found->circuit = circ;
  137. } else {
  138. found = tor_malloc_zero(sizeof(orconn_circid_circuit_map_t));
  139. found->circ_id = id;
  140. found->or_conn = conn;
  141. found->circuit = circ;
  142. HT_INSERT(orconn_circid_map, &orconn_circid_circuit_map, found);
  143. }
  144. if (make_active && old_conn != conn)
  145. make_circuit_active_on_conn(circ,conn);
  146. ++conn->n_circuits;
  147. }
  148. /** Set the p_conn field of a circuit <b>circ</b>, along
  149. * with the corresponding circuit ID, and add the circuit as appropriate
  150. * to the (orconn,id)-\>circuit map. */
  151. void
  152. circuit_set_p_circid_orconn(or_circuit_t *circ, circid_t id,
  153. or_connection_t *conn)
  154. {
  155. circuit_set_circid_orconn_helper(TO_CIRCUIT(circ), CELL_DIRECTION_IN,
  156. id, conn);
  157. if (conn)
  158. tor_assert(bool_eq(circ->p_conn_cells.n, circ->next_active_on_p_conn));
  159. }
  160. /** Set the n_conn field of a circuit <b>circ</b>, along
  161. * with the corresponding circuit ID, and add the circuit as appropriate
  162. * to the (orconn,id)-\>circuit map. */
  163. void
  164. circuit_set_n_circid_orconn(circuit_t *circ, circid_t id,
  165. or_connection_t *conn)
  166. {
  167. circuit_set_circid_orconn_helper(circ, CELL_DIRECTION_OUT, id, conn);
  168. if (conn)
  169. tor_assert(bool_eq(circ->n_conn_cells.n, circ->next_active_on_n_conn));
  170. }
  171. /** Change the state of <b>circ</b> to <b>state</b>, adding it to or removing
  172. * it from lists as appropriate. */
  173. void
  174. circuit_set_state(circuit_t *circ, uint8_t state)
  175. {
  176. tor_assert(circ);
  177. if (state == circ->state)
  178. return;
  179. if (!circuits_pending_or_conns)
  180. circuits_pending_or_conns = smartlist_create();
  181. if (circ->state == CIRCUIT_STATE_OR_WAIT) {
  182. /* remove from waiting-circuit list. */
  183. smartlist_remove(circuits_pending_or_conns, circ);
  184. }
  185. if (state == CIRCUIT_STATE_OR_WAIT) {
  186. /* add to waiting-circuit list. */
  187. smartlist_add(circuits_pending_or_conns, circ);
  188. }
  189. if (state == CIRCUIT_STATE_OPEN)
  190. tor_assert(!circ->n_conn_onionskin);
  191. circ->state = state;
  192. }
  193. /** Add <b>circ</b> to the global list of circuits. This is called only from
  194. * within circuit_new.
  195. */
  196. static void
  197. circuit_add(circuit_t *circ)
  198. {
  199. if (!global_circuitlist) { /* first one */
  200. global_circuitlist = circ;
  201. circ->next = NULL;
  202. } else {
  203. circ->next = global_circuitlist;
  204. global_circuitlist = circ;
  205. }
  206. }
  207. /** Append to <b>out</b> all circuits in state OR_WAIT waiting for
  208. * the given connection. */
  209. void
  210. circuit_get_all_pending_on_or_conn(smartlist_t *out, or_connection_t *or_conn)
  211. {
  212. tor_assert(out);
  213. tor_assert(or_conn);
  214. if (!circuits_pending_or_conns)
  215. return;
  216. SMARTLIST_FOREACH_BEGIN(circuits_pending_or_conns, circuit_t *, circ) {
  217. if (circ->marked_for_close)
  218. continue;
  219. if (!circ->n_hop)
  220. continue;
  221. tor_assert(circ->state == CIRCUIT_STATE_OR_WAIT);
  222. if (tor_digest_is_zero(circ->n_hop->identity_digest)) {
  223. /* Look at addr/port. This is an unkeyed connection. */
  224. if (!tor_addr_eq(&circ->n_hop->addr, &or_conn->_base.addr) ||
  225. circ->n_hop->port != or_conn->_base.port)
  226. continue;
  227. } else {
  228. /* We expected a key. See if it's the right one. */
  229. if (tor_memneq(or_conn->identity_digest,
  230. circ->n_hop->identity_digest, DIGEST_LEN))
  231. continue;
  232. }
  233. smartlist_add(out, circ);
  234. } SMARTLIST_FOREACH_END(circ);
  235. }
  236. /** Return the number of circuits in state OR_WAIT, waiting for the given
  237. * connection. */
  238. int
  239. circuit_count_pending_on_or_conn(or_connection_t *or_conn)
  240. {
  241. int cnt;
  242. smartlist_t *sl = smartlist_create();
  243. circuit_get_all_pending_on_or_conn(sl, or_conn);
  244. cnt = smartlist_len(sl);
  245. smartlist_free(sl);
  246. log_debug(LD_CIRC,"or_conn to %s, %d pending circs",
  247. or_conn->nickname ? or_conn->nickname : "NULL", cnt);
  248. return cnt;
  249. }
  250. /** Detach from the global circuit list, and deallocate, all
  251. * circuits that have been marked for close.
  252. */
  253. void
  254. circuit_close_all_marked(void)
  255. {
  256. circuit_t *tmp,*m;
  257. while (global_circuitlist && global_circuitlist->marked_for_close) {
  258. tmp = global_circuitlist->next;
  259. circuit_free(global_circuitlist);
  260. global_circuitlist = tmp;
  261. }
  262. tmp = global_circuitlist;
  263. while (tmp && tmp->next) {
  264. if (tmp->next->marked_for_close) {
  265. m = tmp->next->next;
  266. circuit_free(tmp->next);
  267. tmp->next = m;
  268. /* Need to check new tmp->next; don't advance tmp. */
  269. } else {
  270. /* Advance tmp. */
  271. tmp = tmp->next;
  272. }
  273. }
  274. }
  275. /** Return the head of the global linked list of circuits. */
  276. circuit_t *
  277. _circuit_get_global_list(void)
  278. {
  279. return global_circuitlist;
  280. }
  281. /** Function to make circ-\>state human-readable */
  282. const char *
  283. circuit_state_to_string(int state)
  284. {
  285. static char buf[64];
  286. switch (state) {
  287. case CIRCUIT_STATE_BUILDING: return "doing handshakes";
  288. case CIRCUIT_STATE_ONIONSKIN_PENDING: return "processing the onion";
  289. case CIRCUIT_STATE_OR_WAIT: return "connecting to server";
  290. case CIRCUIT_STATE_OPEN: return "open";
  291. default:
  292. log_warn(LD_BUG, "Unknown circuit state %d", state);
  293. tor_snprintf(buf, sizeof(buf), "unknown state [%d]", state);
  294. return buf;
  295. }
  296. }
  297. /** Map a circuit purpose to a string suitable to be displayed to a
  298. * controller. */
  299. const char *
  300. circuit_purpose_to_controller_string(uint8_t purpose)
  301. {
  302. static char buf[32];
  303. switch (purpose) {
  304. case CIRCUIT_PURPOSE_OR:
  305. case CIRCUIT_PURPOSE_INTRO_POINT:
  306. case CIRCUIT_PURPOSE_REND_POINT_WAITING:
  307. case CIRCUIT_PURPOSE_REND_ESTABLISHED:
  308. return "SERVER"; /* A controller should never see these, actually. */
  309. case CIRCUIT_PURPOSE_C_GENERAL:
  310. return "GENERAL";
  311. case CIRCUIT_PURPOSE_C_INTRODUCING:
  312. case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT:
  313. case CIRCUIT_PURPOSE_C_INTRODUCE_ACKED:
  314. return "HS_CLIENT_INTRO";
  315. case CIRCUIT_PURPOSE_C_ESTABLISH_REND:
  316. case CIRCUIT_PURPOSE_C_REND_READY:
  317. case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED:
  318. case CIRCUIT_PURPOSE_C_REND_JOINED:
  319. return "HS_CLIENT_REND";
  320. case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO:
  321. case CIRCUIT_PURPOSE_S_INTRO:
  322. return "HS_SERVICE_INTRO";
  323. case CIRCUIT_PURPOSE_S_CONNECT_REND:
  324. case CIRCUIT_PURPOSE_S_REND_JOINED:
  325. return "HS_SERVICE_REND";
  326. case CIRCUIT_PURPOSE_TESTING:
  327. return "TESTING";
  328. case CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT:
  329. return "MEASURE_TIMEOUT";
  330. case CIRCUIT_PURPOSE_CONTROLLER:
  331. return "CONTROLLER";
  332. default:
  333. tor_snprintf(buf, sizeof(buf), "UNKNOWN_%d", (int)purpose);
  334. return buf;
  335. }
  336. }
  337. /** Return a human-readable string for the circuit purpose <b>purpose</b>. */
  338. const char *
  339. circuit_purpose_to_string(uint8_t purpose)
  340. {
  341. static char buf[32];
  342. switch (purpose)
  343. {
  344. case CIRCUIT_PURPOSE_OR:
  345. return "Circuit at relay";
  346. case CIRCUIT_PURPOSE_INTRO_POINT:
  347. return "Acting as intro point";
  348. case CIRCUIT_PURPOSE_REND_POINT_WAITING:
  349. return "Acting as rendevous (pending)";
  350. case CIRCUIT_PURPOSE_REND_ESTABLISHED:
  351. return "Acting as rendevous (established)";
  352. case CIRCUIT_PURPOSE_C_GENERAL:
  353. return "General-purpose client";
  354. case CIRCUIT_PURPOSE_C_INTRODUCING:
  355. return "Hidden service client: Connecting to intro point";
  356. case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT:
  357. return "Hidden service client: Waiting for ack from intro point";
  358. case CIRCUIT_PURPOSE_C_INTRODUCE_ACKED:
  359. return "Hidden service client: Received ack from intro point";
  360. case CIRCUIT_PURPOSE_C_ESTABLISH_REND:
  361. return "Hidden service client: Establishing rendezvous point";
  362. case CIRCUIT_PURPOSE_C_REND_READY:
  363. return "Hidden service client: Pending rendezvous point";
  364. case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED:
  365. return "Hidden service client: Pending rendezvous point (ack received)";
  366. case CIRCUIT_PURPOSE_C_REND_JOINED:
  367. return "Hidden service client: Active rendezvous point";
  368. case CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT:
  369. return "Measuring circuit timeout";
  370. case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO:
  371. return "Hidden service: Establishing introduction point";
  372. case CIRCUIT_PURPOSE_S_INTRO:
  373. return "Hidden service: Introduction point";
  374. case CIRCUIT_PURPOSE_S_CONNECT_REND:
  375. return "Hidden service: Connecting to rendezvous point";
  376. case CIRCUIT_PURPOSE_S_REND_JOINED:
  377. return "Hidden service: Active rendezvous point";
  378. case CIRCUIT_PURPOSE_TESTING:
  379. return "Testing circuit";
  380. case CIRCUIT_PURPOSE_CONTROLLER:
  381. return "Circuit made by controller";
  382. default:
  383. tor_snprintf(buf, sizeof(buf), "UNKNOWN_%d", (int)purpose);
  384. return buf;
  385. }
  386. }
  387. /** Pick a reasonable package_window to start out for our circuits.
  388. * Originally this was hard-coded at 1000, but now the consensus votes
  389. * on the answer. See proposal 168. */
  390. int32_t
  391. circuit_initial_package_window(void)
  392. {
  393. int32_t num = networkstatus_get_param(NULL, "circwindow", CIRCWINDOW_START,
  394. CIRCWINDOW_START_MIN,
  395. CIRCWINDOW_START_MAX);
  396. /* If the consensus tells us a negative number, we'd assert. */
  397. if (num < 0)
  398. num = CIRCWINDOW_START;
  399. return num;
  400. }
  401. /** Initialize the common elements in a circuit_t, and add it to the global
  402. * list. */
  403. static void
  404. init_circuit_base(circuit_t *circ)
  405. {
  406. tor_gettimeofday(&circ->timestamp_created);
  407. circ->package_window = circuit_initial_package_window();
  408. circ->deliver_window = CIRCWINDOW_START;
  409. /* Initialize the cell_ewma_t structure */
  410. circ->n_cell_ewma.last_adjusted_tick = cell_ewma_get_tick();
  411. circ->n_cell_ewma.cell_count = 0.0;
  412. circ->n_cell_ewma.heap_index = -1;
  413. circ->n_cell_ewma.is_for_p_conn = 0;
  414. circuit_add(circ);
  415. }
  416. /** Allocate space for a new circuit, initializing with <b>p_circ_id</b>
  417. * and <b>p_conn</b>. Add it to the global circuit list.
  418. */
  419. origin_circuit_t *
  420. origin_circuit_new(void)
  421. {
  422. origin_circuit_t *circ;
  423. /* never zero, since a global ID of 0 is treated specially by the
  424. * controller */
  425. static uint32_t n_circuits_allocated = 1;
  426. circ = tor_malloc_zero(sizeof(origin_circuit_t));
  427. circ->_base.magic = ORIGIN_CIRCUIT_MAGIC;
  428. circ->next_stream_id = crypto_rand_int(1<<16);
  429. circ->global_identifier = n_circuits_allocated++;
  430. circ->remaining_relay_early_cells = MAX_RELAY_EARLY_CELLS_PER_CIRCUIT;
  431. circ->remaining_relay_early_cells -= crypto_rand_int(2);
  432. init_circuit_base(TO_CIRCUIT(circ));
  433. circ_times.last_circ_at = approx_time();
  434. return circ;
  435. }
  436. /** Allocate a new or_circuit_t, connected to <b>p_conn</b> as
  437. * <b>p_circ_id</b>. If <b>p_conn</b> is NULL, the circuit is unattached. */
  438. or_circuit_t *
  439. or_circuit_new(circid_t p_circ_id, or_connection_t *p_conn)
  440. {
  441. /* CircIDs */
  442. or_circuit_t *circ;
  443. circ = tor_malloc_zero(sizeof(or_circuit_t));
  444. circ->_base.magic = OR_CIRCUIT_MAGIC;
  445. if (p_conn)
  446. circuit_set_p_circid_orconn(circ, p_circ_id, p_conn);
  447. circ->remaining_relay_early_cells = MAX_RELAY_EARLY_CELLS_PER_CIRCUIT;
  448. init_circuit_base(TO_CIRCUIT(circ));
  449. /* Initialize the cell_ewma_t structure */
  450. /* Initialize the cell counts to 0 */
  451. circ->p_cell_ewma.cell_count = 0.0;
  452. circ->p_cell_ewma.last_adjusted_tick = cell_ewma_get_tick();
  453. circ->p_cell_ewma.is_for_p_conn = 1;
  454. /* It's not in any heap yet. */
  455. circ->p_cell_ewma.heap_index = -1;
  456. return circ;
  457. }
  458. /** Deallocate space associated with circ.
  459. */
  460. static void
  461. circuit_free(circuit_t *circ)
  462. {
  463. void *mem;
  464. size_t memlen;
  465. if (!circ)
  466. return;
  467. if (CIRCUIT_IS_ORIGIN(circ)) {
  468. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  469. mem = ocirc;
  470. memlen = sizeof(origin_circuit_t);
  471. tor_assert(circ->magic == ORIGIN_CIRCUIT_MAGIC);
  472. if (ocirc->build_state) {
  473. extend_info_free(ocirc->build_state->chosen_exit);
  474. circuit_free_cpath_node(ocirc->build_state->pending_final_cpath);
  475. }
  476. tor_free(ocirc->build_state);
  477. circuit_free_cpath(ocirc->cpath);
  478. crypto_free_pk_env(ocirc->intro_key);
  479. rend_data_free(ocirc->rend_data);
  480. } else {
  481. or_circuit_t *ocirc = TO_OR_CIRCUIT(circ);
  482. /* Remember cell statistics for this circuit before deallocating. */
  483. if (get_options()->CellStatistics)
  484. rep_hist_buffer_stats_add_circ(circ, time(NULL));
  485. mem = ocirc;
  486. memlen = sizeof(or_circuit_t);
  487. tor_assert(circ->magic == OR_CIRCUIT_MAGIC);
  488. crypto_free_cipher_env(ocirc->p_crypto);
  489. crypto_free_digest_env(ocirc->p_digest);
  490. crypto_free_cipher_env(ocirc->n_crypto);
  491. crypto_free_digest_env(ocirc->n_digest);
  492. if (ocirc->rend_splice) {
  493. or_circuit_t *other = ocirc->rend_splice;
  494. tor_assert(other->_base.magic == OR_CIRCUIT_MAGIC);
  495. other->rend_splice = NULL;
  496. }
  497. /* remove from map. */
  498. circuit_set_p_circid_orconn(ocirc, 0, NULL);
  499. /* Clear cell queue _after_ removing it from the map. Otherwise our
  500. * "active" checks will be violated. */
  501. cell_queue_clear(&ocirc->p_conn_cells);
  502. }
  503. extend_info_free(circ->n_hop);
  504. tor_free(circ->n_conn_onionskin);
  505. /* Remove from map. */
  506. circuit_set_n_circid_orconn(circ, 0, NULL);
  507. /* Clear cell queue _after_ removing it from the map. Otherwise our
  508. * "active" checks will be violated. */
  509. cell_queue_clear(&circ->n_conn_cells);
  510. memset(mem, 0xAA, memlen); /* poison memory */
  511. tor_free(mem);
  512. }
  513. /** Deallocate space associated with the linked list <b>cpath</b>. */
  514. static void
  515. circuit_free_cpath(crypt_path_t *cpath)
  516. {
  517. crypt_path_t *victim, *head=cpath;
  518. if (!cpath)
  519. return;
  520. /* it's a doubly linked list, so we have to notice when we've
  521. * gone through it once. */
  522. while (cpath->next && cpath->next != head) {
  523. victim = cpath;
  524. cpath = victim->next;
  525. circuit_free_cpath_node(victim);
  526. }
  527. circuit_free_cpath_node(cpath);
  528. }
  529. /** Release all storage held by circuits. */
  530. void
  531. circuit_free_all(void)
  532. {
  533. circuit_t *next;
  534. while (global_circuitlist) {
  535. next = global_circuitlist->next;
  536. if (! CIRCUIT_IS_ORIGIN(global_circuitlist)) {
  537. or_circuit_t *or_circ = TO_OR_CIRCUIT(global_circuitlist);
  538. while (or_circ->resolving_streams) {
  539. edge_connection_t *next_conn;
  540. next_conn = or_circ->resolving_streams->next_stream;
  541. connection_free(TO_CONN(or_circ->resolving_streams));
  542. or_circ->resolving_streams = next_conn;
  543. }
  544. }
  545. circuit_free(global_circuitlist);
  546. global_circuitlist = next;
  547. }
  548. smartlist_free(circuits_pending_or_conns);
  549. circuits_pending_or_conns = NULL;
  550. HT_CLEAR(orconn_circid_map, &orconn_circid_circuit_map);
  551. }
  552. /** Deallocate space associated with the cpath node <b>victim</b>. */
  553. static void
  554. circuit_free_cpath_node(crypt_path_t *victim)
  555. {
  556. if (!victim)
  557. return;
  558. crypto_free_cipher_env(victim->f_crypto);
  559. crypto_free_cipher_env(victim->b_crypto);
  560. crypto_free_digest_env(victim->f_digest);
  561. crypto_free_digest_env(victim->b_digest);
  562. crypto_dh_free(victim->dh_handshake_state);
  563. extend_info_free(victim->extend_info);
  564. memset(victim, 0xBB, sizeof(crypt_path_t)); /* poison memory */
  565. tor_free(victim);
  566. }
  567. /** A helper function for circuit_dump_by_conn() below. Log a bunch
  568. * of information about circuit <b>circ</b>.
  569. */
  570. static void
  571. circuit_dump_details(int severity, circuit_t *circ, int conn_array_index,
  572. const char *type, int this_circid, int other_circid)
  573. {
  574. log(severity, LD_CIRC, "Conn %d has %s circuit: circID %d (other side %d), "
  575. "state %d (%s), born %ld:",
  576. conn_array_index, type, this_circid, other_circid, circ->state,
  577. circuit_state_to_string(circ->state),
  578. (long)circ->timestamp_created.tv_sec);
  579. if (CIRCUIT_IS_ORIGIN(circ)) { /* circ starts at this node */
  580. circuit_log_path(severity, LD_CIRC, TO_ORIGIN_CIRCUIT(circ));
  581. }
  582. }
  583. /** Log, at severity <b>severity</b>, information about each circuit
  584. * that is connected to <b>conn</b>.
  585. */
  586. void
  587. circuit_dump_by_conn(connection_t *conn, int severity)
  588. {
  589. circuit_t *circ;
  590. edge_connection_t *tmpconn;
  591. for (circ=global_circuitlist;circ;circ = circ->next) {
  592. circid_t n_circ_id = circ->n_circ_id, p_circ_id = 0;
  593. if (circ->marked_for_close)
  594. continue;
  595. if (! CIRCUIT_IS_ORIGIN(circ))
  596. p_circ_id = TO_OR_CIRCUIT(circ)->p_circ_id;
  597. if (! CIRCUIT_IS_ORIGIN(circ) && TO_OR_CIRCUIT(circ)->p_conn &&
  598. TO_CONN(TO_OR_CIRCUIT(circ)->p_conn) == conn)
  599. circuit_dump_details(severity, circ, conn->conn_array_index, "App-ward",
  600. p_circ_id, n_circ_id);
  601. if (CIRCUIT_IS_ORIGIN(circ)) {
  602. for (tmpconn=TO_ORIGIN_CIRCUIT(circ)->p_streams; tmpconn;
  603. tmpconn=tmpconn->next_stream) {
  604. if (TO_CONN(tmpconn) == conn) {
  605. circuit_dump_details(severity, circ, conn->conn_array_index,
  606. "App-ward", p_circ_id, n_circ_id);
  607. }
  608. }
  609. }
  610. if (circ->n_conn && TO_CONN(circ->n_conn) == conn)
  611. circuit_dump_details(severity, circ, conn->conn_array_index, "Exit-ward",
  612. n_circ_id, p_circ_id);
  613. if (! CIRCUIT_IS_ORIGIN(circ)) {
  614. for (tmpconn=TO_OR_CIRCUIT(circ)->n_streams; tmpconn;
  615. tmpconn=tmpconn->next_stream) {
  616. if (TO_CONN(tmpconn) == conn) {
  617. circuit_dump_details(severity, circ, conn->conn_array_index,
  618. "Exit-ward", n_circ_id, p_circ_id);
  619. }
  620. }
  621. }
  622. if (!circ->n_conn && circ->n_hop &&
  623. tor_addr_eq(&circ->n_hop->addr, &conn->addr) &&
  624. circ->n_hop->port == conn->port &&
  625. conn->type == CONN_TYPE_OR &&
  626. tor_memeq(TO_OR_CONN(conn)->identity_digest,
  627. circ->n_hop->identity_digest, DIGEST_LEN)) {
  628. circuit_dump_details(severity, circ, conn->conn_array_index,
  629. (circ->state == CIRCUIT_STATE_OPEN &&
  630. !CIRCUIT_IS_ORIGIN(circ)) ?
  631. "Endpoint" : "Pending",
  632. n_circ_id, p_circ_id);
  633. }
  634. }
  635. }
  636. /** Return the circuit whose global ID is <b>id</b>, or NULL if no
  637. * such circuit exists. */
  638. origin_circuit_t *
  639. circuit_get_by_global_id(uint32_t id)
  640. {
  641. circuit_t *circ;
  642. for (circ=global_circuitlist;circ;circ = circ->next) {
  643. if (CIRCUIT_IS_ORIGIN(circ) &&
  644. TO_ORIGIN_CIRCUIT(circ)->global_identifier == id) {
  645. if (circ->marked_for_close)
  646. return NULL;
  647. else
  648. return TO_ORIGIN_CIRCUIT(circ);
  649. }
  650. }
  651. return NULL;
  652. }
  653. /** Return a circ such that:
  654. * - circ-\>n_circ_id or circ-\>p_circ_id is equal to <b>circ_id</b>, and
  655. * - circ is attached to <b>conn</b>, either as p_conn or n_conn.
  656. * Return NULL if no such circuit exists.
  657. */
  658. static INLINE circuit_t *
  659. circuit_get_by_circid_orconn_impl(circid_t circ_id, or_connection_t *conn)
  660. {
  661. orconn_circid_circuit_map_t search;
  662. orconn_circid_circuit_map_t *found;
  663. if (_last_circid_orconn_ent &&
  664. circ_id == _last_circid_orconn_ent->circ_id &&
  665. conn == _last_circid_orconn_ent->or_conn) {
  666. found = _last_circid_orconn_ent;
  667. } else {
  668. search.circ_id = circ_id;
  669. search.or_conn = conn;
  670. found = HT_FIND(orconn_circid_map, &orconn_circid_circuit_map, &search);
  671. _last_circid_orconn_ent = found;
  672. }
  673. if (found && found->circuit)
  674. return found->circuit;
  675. return NULL;
  676. /* The rest of this checks for bugs. Disabled by default. */
  677. {
  678. circuit_t *circ;
  679. for (circ=global_circuitlist;circ;circ = circ->next) {
  680. if (! CIRCUIT_IS_ORIGIN(circ)) {
  681. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  682. if (or_circ->p_conn == conn && or_circ->p_circ_id == circ_id) {
  683. log_warn(LD_BUG,
  684. "circuit matches p_conn, but not in hash table (Bug!)");
  685. return circ;
  686. }
  687. }
  688. if (circ->n_conn == conn && circ->n_circ_id == circ_id) {
  689. log_warn(LD_BUG,
  690. "circuit matches n_conn, but not in hash table (Bug!)");
  691. return circ;
  692. }
  693. }
  694. return NULL;
  695. }
  696. }
  697. /** Return a circ such that:
  698. * - circ-\>n_circ_id or circ-\>p_circ_id is equal to <b>circ_id</b>, and
  699. * - circ is attached to <b>conn</b>, either as p_conn or n_conn.
  700. * - circ is not marked for close.
  701. * Return NULL if no such circuit exists.
  702. */
  703. circuit_t *
  704. circuit_get_by_circid_orconn(circid_t circ_id, or_connection_t *conn)
  705. {
  706. circuit_t *circ = circuit_get_by_circid_orconn_impl(circ_id, conn);
  707. if (!circ || circ->marked_for_close)
  708. return NULL;
  709. else
  710. return circ;
  711. }
  712. /** Return true iff the circuit ID <b>circ_id</b> is currently used by a
  713. * circuit, marked or not, on <b>conn</b>. */
  714. int
  715. circuit_id_in_use_on_orconn(circid_t circ_id, or_connection_t *conn)
  716. {
  717. return circuit_get_by_circid_orconn_impl(circ_id, conn) != NULL;
  718. }
  719. /** Return the circuit that a given edge connection is using. */
  720. circuit_t *
  721. circuit_get_by_edge_conn(edge_connection_t *conn)
  722. {
  723. circuit_t *circ;
  724. circ = conn->on_circuit;
  725. tor_assert(!circ ||
  726. (CIRCUIT_IS_ORIGIN(circ) ? circ->magic == ORIGIN_CIRCUIT_MAGIC
  727. : circ->magic == OR_CIRCUIT_MAGIC));
  728. return circ;
  729. }
  730. /** For each circuit that has <b>conn</b> as n_conn or p_conn, unlink the
  731. * circuit from the orconn,circid map, and mark it for close if it hasn't
  732. * been marked already.
  733. */
  734. void
  735. circuit_unlink_all_from_or_conn(or_connection_t *conn, int reason)
  736. {
  737. circuit_t *circ;
  738. connection_or_unlink_all_active_circs(conn);
  739. for (circ = global_circuitlist; circ; circ = circ->next) {
  740. int mark = 0;
  741. if (circ->n_conn == conn) {
  742. circuit_set_n_circid_orconn(circ, 0, NULL);
  743. mark = 1;
  744. }
  745. if (! CIRCUIT_IS_ORIGIN(circ)) {
  746. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  747. if (or_circ->p_conn == conn) {
  748. circuit_set_p_circid_orconn(or_circ, 0, NULL);
  749. mark = 1;
  750. }
  751. }
  752. if (mark && !circ->marked_for_close)
  753. circuit_mark_for_close(circ, reason);
  754. }
  755. }
  756. /** Return a circ such that:
  757. * - circ-\>rend_data-\>query is equal to <b>rend_query</b>, and
  758. * - circ-\>purpose is equal to <b>purpose</b>.
  759. *
  760. * Return NULL if no such circuit exists.
  761. */
  762. origin_circuit_t *
  763. circuit_get_by_rend_query_and_purpose(const char *rend_query, uint8_t purpose)
  764. {
  765. circuit_t *circ;
  766. tor_assert(CIRCUIT_PURPOSE_IS_ORIGIN(purpose));
  767. for (circ = global_circuitlist; circ; circ = circ->next) {
  768. if (!circ->marked_for_close &&
  769. circ->purpose == purpose) {
  770. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  771. if (ocirc->rend_data &&
  772. !rend_cmp_service_ids(rend_query,
  773. ocirc->rend_data->onion_address))
  774. return ocirc;
  775. }
  776. }
  777. return NULL;
  778. }
  779. /** Return the first circuit originating here in global_circuitlist after
  780. * <b>start</b> whose purpose is <b>purpose</b>, and where
  781. * <b>digest</b> (if set) matches the rend_pk_digest field. Return NULL if no
  782. * circuit is found. If <b>start</b> is NULL, begin at the start of the list.
  783. */
  784. origin_circuit_t *
  785. circuit_get_next_by_pk_and_purpose(origin_circuit_t *start,
  786. const char *digest, uint8_t purpose)
  787. {
  788. circuit_t *circ;
  789. tor_assert(CIRCUIT_PURPOSE_IS_ORIGIN(purpose));
  790. if (start == NULL)
  791. circ = global_circuitlist;
  792. else
  793. circ = TO_CIRCUIT(start)->next;
  794. for ( ; circ; circ = circ->next) {
  795. if (circ->marked_for_close)
  796. continue;
  797. if (circ->purpose != purpose)
  798. continue;
  799. if (!digest)
  800. return TO_ORIGIN_CIRCUIT(circ);
  801. else if (TO_ORIGIN_CIRCUIT(circ)->rend_data &&
  802. tor_memeq(TO_ORIGIN_CIRCUIT(circ)->rend_data->rend_pk_digest,
  803. digest, DIGEST_LEN))
  804. return TO_ORIGIN_CIRCUIT(circ);
  805. }
  806. return NULL;
  807. }
  808. /** Return the first OR circuit in the global list whose purpose is
  809. * <b>purpose</b>, and whose rend_token is the <b>len</b>-byte
  810. * <b>token</b>. */
  811. static or_circuit_t *
  812. circuit_get_by_rend_token_and_purpose(uint8_t purpose, const char *token,
  813. size_t len)
  814. {
  815. circuit_t *circ;
  816. for (circ = global_circuitlist; circ; circ = circ->next) {
  817. if (! circ->marked_for_close &&
  818. circ->purpose == purpose &&
  819. tor_memeq(TO_OR_CIRCUIT(circ)->rend_token, token, len))
  820. return TO_OR_CIRCUIT(circ);
  821. }
  822. return NULL;
  823. }
  824. /** Return the circuit waiting for a rendezvous with the provided cookie.
  825. * Return NULL if no such circuit is found.
  826. */
  827. or_circuit_t *
  828. circuit_get_rendezvous(const char *cookie)
  829. {
  830. return circuit_get_by_rend_token_and_purpose(
  831. CIRCUIT_PURPOSE_REND_POINT_WAITING,
  832. cookie, REND_COOKIE_LEN);
  833. }
  834. /** Return the circuit waiting for intro cells of the given digest.
  835. * Return NULL if no such circuit is found.
  836. */
  837. or_circuit_t *
  838. circuit_get_intro_point(const char *digest)
  839. {
  840. return circuit_get_by_rend_token_and_purpose(
  841. CIRCUIT_PURPOSE_INTRO_POINT, digest,
  842. DIGEST_LEN);
  843. }
  844. /** Return a circuit that is open, is CIRCUIT_PURPOSE_C_GENERAL,
  845. * has a timestamp_dirty value of 0, has flags matching the CIRCLAUNCH_*
  846. * flags in <b>flags</b>, and if info is defined, does not already use info
  847. * as any of its hops; or NULL if no circuit fits this description.
  848. *
  849. * The <b>purpose</b> argument (currently ignored) refers to the purpose of
  850. * the circuit we want to create, not the purpose of the circuit we want to
  851. * cannibalize.
  852. *
  853. * If !CIRCLAUNCH_NEED_UPTIME, prefer returning non-uptime circuits.
  854. */
  855. origin_circuit_t *
  856. circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info,
  857. int flags)
  858. {
  859. circuit_t *_circ;
  860. origin_circuit_t *best=NULL;
  861. int need_uptime = (flags & CIRCLAUNCH_NEED_UPTIME) != 0;
  862. int need_capacity = (flags & CIRCLAUNCH_NEED_CAPACITY) != 0;
  863. int internal = (flags & CIRCLAUNCH_IS_INTERNAL) != 0;
  864. or_options_t *options = get_options();
  865. /* Make sure we're not trying to create a onehop circ by
  866. * cannibalization. */
  867. tor_assert(!(flags & CIRCLAUNCH_ONEHOP_TUNNEL));
  868. log_debug(LD_CIRC,
  869. "Hunting for a circ to cannibalize: purpose %d, uptime %d, "
  870. "capacity %d, internal %d",
  871. purpose, need_uptime, need_capacity, internal);
  872. for (_circ=global_circuitlist; _circ; _circ = _circ->next) {
  873. if (CIRCUIT_IS_ORIGIN(_circ) &&
  874. _circ->state == CIRCUIT_STATE_OPEN &&
  875. !_circ->marked_for_close &&
  876. _circ->purpose == CIRCUIT_PURPOSE_C_GENERAL &&
  877. !_circ->timestamp_dirty) {
  878. origin_circuit_t *circ = TO_ORIGIN_CIRCUIT(_circ);
  879. if ((!need_uptime || circ->build_state->need_uptime) &&
  880. (!need_capacity || circ->build_state->need_capacity) &&
  881. (internal == circ->build_state->is_internal) &&
  882. circ->remaining_relay_early_cells &&
  883. !circ->build_state->onehop_tunnel) {
  884. if (info) {
  885. /* need to make sure we don't duplicate hops */
  886. crypt_path_t *hop = circ->cpath;
  887. routerinfo_t *ri1 = router_get_by_digest(info->identity_digest);
  888. do {
  889. routerinfo_t *ri2;
  890. if (tor_memeq(hop->extend_info->identity_digest,
  891. info->identity_digest, DIGEST_LEN))
  892. goto next;
  893. if (ri1 &&
  894. (ri2 = router_get_by_digest(hop->extend_info->identity_digest))
  895. && routers_in_same_family(ri1, ri2))
  896. goto next;
  897. hop=hop->next;
  898. } while (hop!=circ->cpath);
  899. }
  900. if (options->ExcludeNodes) {
  901. /* Make sure no existing nodes in the circuit are excluded for
  902. * general use. (This may be possible if StrictNodes is 0, and we
  903. * thought we needed to use an otherwise excluded node for, say, a
  904. * directory operation.) */
  905. crypt_path_t *hop = circ->cpath;
  906. do {
  907. if (routerset_contains_extendinfo(options->ExcludeNodes,
  908. hop->extend_info))
  909. goto next;
  910. hop = hop->next;
  911. } while (hop != circ->cpath);
  912. }
  913. if (!best || (best->build_state->need_uptime && !need_uptime))
  914. best = circ;
  915. next: ;
  916. }
  917. }
  918. }
  919. return best;
  920. }
  921. /** Return the number of hops in circuit's path. */
  922. int
  923. circuit_get_cpath_len(origin_circuit_t *circ)
  924. {
  925. int n = 0;
  926. if (circ && circ->cpath) {
  927. crypt_path_t *cpath, *cpath_next = NULL;
  928. for (cpath = circ->cpath; cpath_next != circ->cpath; cpath = cpath_next) {
  929. cpath_next = cpath->next;
  930. ++n;
  931. }
  932. }
  933. return n;
  934. }
  935. /** Return the <b>hopnum</b>th hop in <b>circ</b>->cpath, or NULL if there
  936. * aren't that many hops in the list. */
  937. crypt_path_t *
  938. circuit_get_cpath_hop(origin_circuit_t *circ, int hopnum)
  939. {
  940. if (circ && circ->cpath && hopnum > 0) {
  941. crypt_path_t *cpath, *cpath_next = NULL;
  942. for (cpath = circ->cpath; cpath_next != circ->cpath; cpath = cpath_next) {
  943. cpath_next = cpath->next;
  944. if (--hopnum <= 0)
  945. return cpath;
  946. }
  947. }
  948. return NULL;
  949. }
  950. /** Go through the circuitlist; mark-for-close each circuit that starts
  951. * at us but has not yet been used. */
  952. void
  953. circuit_mark_all_unused_circs(void)
  954. {
  955. circuit_t *circ;
  956. for (circ=global_circuitlist; circ; circ = circ->next) {
  957. if (CIRCUIT_IS_ORIGIN(circ) &&
  958. !circ->marked_for_close &&
  959. !circ->timestamp_dirty)
  960. circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED);
  961. }
  962. }
  963. /** Go through the circuitlist; for each circuit that starts at us
  964. * and is dirty, frob its timestamp_dirty so we won't use it for any
  965. * new streams.
  966. *
  967. * This is useful for letting the user change pseudonyms, so new
  968. * streams will not be linkable to old streams.
  969. */
  970. /* XXX023 this is a bad name for what this function does */
  971. void
  972. circuit_expire_all_dirty_circs(void)
  973. {
  974. circuit_t *circ;
  975. or_options_t *options = get_options();
  976. for (circ=global_circuitlist; circ; circ = circ->next) {
  977. if (CIRCUIT_IS_ORIGIN(circ) &&
  978. !circ->marked_for_close &&
  979. circ->timestamp_dirty)
  980. /* XXXX023 This is a screwed-up way to say "This is too dirty
  981. * for new circuits. */
  982. circ->timestamp_dirty -= options->MaxCircuitDirtiness;
  983. }
  984. }
  985. /** Mark <b>circ</b> to be closed next time we call
  986. * circuit_close_all_marked(). Do any cleanup needed:
  987. * - If state is onionskin_pending, remove circ from the onion_pending
  988. * list.
  989. * - If circ isn't open yet: call circuit_build_failed() if we're
  990. * the origin, and in either case call circuit_rep_hist_note_result()
  991. * to note stats.
  992. * - If purpose is C_INTRODUCE_ACK_WAIT, remove the intro point we
  993. * just tried from our list of intro points for that service
  994. * descriptor.
  995. * - Send appropriate destroys and edge_destroys for conns and
  996. * streams attached to circ.
  997. * - If circ->rend_splice is set (we are the midpoint of a joined
  998. * rendezvous stream), then mark the other circuit to close as well.
  999. */
  1000. void
  1001. _circuit_mark_for_close(circuit_t *circ, int reason, int line,
  1002. const char *file)
  1003. {
  1004. int orig_reason = reason; /* Passed to the controller */
  1005. assert_circuit_ok(circ);
  1006. tor_assert(line);
  1007. tor_assert(file);
  1008. if (circ->marked_for_close) {
  1009. log(LOG_WARN,LD_BUG,
  1010. "Duplicate call to circuit_mark_for_close at %s:%d"
  1011. " (first at %s:%d)", file, line,
  1012. circ->marked_for_close_file, circ->marked_for_close);
  1013. return;
  1014. }
  1015. if (reason == END_CIRC_AT_ORIGIN) {
  1016. if (!CIRCUIT_IS_ORIGIN(circ)) {
  1017. log_warn(LD_BUG, "Specified 'at-origin' non-reason for ending circuit, "
  1018. "but circuit was not at origin. (called %s:%d, purpose=%d)",
  1019. file, line, circ->purpose);
  1020. }
  1021. reason = END_CIRC_REASON_NONE;
  1022. }
  1023. if (CIRCUIT_IS_ORIGIN(circ)) {
  1024. /* We don't send reasons when closing circuits at the origin. */
  1025. reason = END_CIRC_REASON_NONE;
  1026. }
  1027. if (reason & END_CIRC_REASON_FLAG_REMOTE)
  1028. reason &= ~END_CIRC_REASON_FLAG_REMOTE;
  1029. if (reason < _END_CIRC_REASON_MIN || reason > _END_CIRC_REASON_MAX) {
  1030. if (!(orig_reason & END_CIRC_REASON_FLAG_REMOTE))
  1031. log_warn(LD_BUG, "Reason %d out of range at %s:%d", reason, file, line);
  1032. reason = END_CIRC_REASON_NONE;
  1033. }
  1034. if (circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
  1035. onion_pending_remove(TO_OR_CIRCUIT(circ));
  1036. }
  1037. /* If the circuit ever became OPEN, we sent it to the reputation history
  1038. * module then. If it isn't OPEN, we send it there now to remember which
  1039. * links worked and which didn't.
  1040. */
  1041. if (circ->state != CIRCUIT_STATE_OPEN) {
  1042. if (CIRCUIT_IS_ORIGIN(circ)) {
  1043. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1044. circuit_build_failed(ocirc); /* take actions if necessary */
  1045. circuit_rep_hist_note_result(ocirc);
  1046. }
  1047. }
  1048. if (circ->state == CIRCUIT_STATE_OR_WAIT) {
  1049. if (circuits_pending_or_conns)
  1050. smartlist_remove(circuits_pending_or_conns, circ);
  1051. }
  1052. if (CIRCUIT_IS_ORIGIN(circ)) {
  1053. control_event_circuit_status(TO_ORIGIN_CIRCUIT(circ),
  1054. (circ->state == CIRCUIT_STATE_OPEN)?CIRC_EVENT_CLOSED:CIRC_EVENT_FAILED,
  1055. orig_reason);
  1056. }
  1057. if (circ->purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) {
  1058. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1059. tor_assert(circ->state == CIRCUIT_STATE_OPEN);
  1060. tor_assert(ocirc->build_state->chosen_exit);
  1061. tor_assert(ocirc->rend_data);
  1062. /* treat this like getting a nack from it */
  1063. log_info(LD_REND, "Failed intro circ %s to %s (awaiting ack). "
  1064. "Removing from descriptor.",
  1065. safe_str_client(ocirc->rend_data->onion_address),
  1066. safe_str_client(build_state_get_exit_nickname(ocirc->build_state)));
  1067. rend_client_remove_intro_point(ocirc->build_state->chosen_exit,
  1068. ocirc->rend_data);
  1069. }
  1070. if (circ->n_conn) {
  1071. circuit_clear_cell_queue(circ, circ->n_conn);
  1072. connection_or_send_destroy(circ->n_circ_id, circ->n_conn, reason);
  1073. }
  1074. if (! CIRCUIT_IS_ORIGIN(circ)) {
  1075. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  1076. edge_connection_t *conn;
  1077. for (conn=or_circ->n_streams; conn; conn=conn->next_stream)
  1078. connection_edge_destroy(or_circ->p_circ_id, conn);
  1079. or_circ->n_streams = NULL;
  1080. while (or_circ->resolving_streams) {
  1081. conn = or_circ->resolving_streams;
  1082. or_circ->resolving_streams = conn->next_stream;
  1083. if (!conn->_base.marked_for_close) {
  1084. /* The client will see a DESTROY, and infer that the connections
  1085. * are closing because the circuit is getting torn down. No need
  1086. * to send an end cell. */
  1087. conn->edge_has_sent_end = 1;
  1088. conn->end_reason = END_STREAM_REASON_DESTROY;
  1089. conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED;
  1090. connection_mark_for_close(TO_CONN(conn));
  1091. }
  1092. conn->on_circuit = NULL;
  1093. }
  1094. if (or_circ->p_conn) {
  1095. circuit_clear_cell_queue(circ, or_circ->p_conn);
  1096. connection_or_send_destroy(or_circ->p_circ_id, or_circ->p_conn, reason);
  1097. }
  1098. } else {
  1099. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1100. edge_connection_t *conn;
  1101. for (conn=ocirc->p_streams; conn; conn=conn->next_stream)
  1102. connection_edge_destroy(circ->n_circ_id, conn);
  1103. ocirc->p_streams = NULL;
  1104. }
  1105. circ->marked_for_close = line;
  1106. circ->marked_for_close_file = file;
  1107. if (!CIRCUIT_IS_ORIGIN(circ)) {
  1108. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  1109. if (or_circ->rend_splice) {
  1110. if (!or_circ->rend_splice->_base.marked_for_close) {
  1111. /* do this after marking this circuit, to avoid infinite recursion. */
  1112. circuit_mark_for_close(TO_CIRCUIT(or_circ->rend_splice), reason);
  1113. }
  1114. or_circ->rend_splice = NULL;
  1115. }
  1116. }
  1117. }
  1118. /** Verify that cpath layer <b>cp</b> has all of its invariants
  1119. * correct. Trigger an assert if anything is invalid.
  1120. */
  1121. void
  1122. assert_cpath_layer_ok(const crypt_path_t *cp)
  1123. {
  1124. // tor_assert(cp->addr); /* these are zero for rendezvous extra-hops */
  1125. // tor_assert(cp->port);
  1126. tor_assert(cp);
  1127. tor_assert(cp->magic == CRYPT_PATH_MAGIC);
  1128. switch (cp->state)
  1129. {
  1130. case CPATH_STATE_OPEN:
  1131. tor_assert(cp->f_crypto);
  1132. tor_assert(cp->b_crypto);
  1133. /* fall through */
  1134. case CPATH_STATE_CLOSED:
  1135. tor_assert(!cp->dh_handshake_state);
  1136. break;
  1137. case CPATH_STATE_AWAITING_KEYS:
  1138. /* tor_assert(cp->dh_handshake_state); */
  1139. break;
  1140. default:
  1141. log_fn(LOG_ERR, LD_BUG, "Unexpected state %d", cp->state);
  1142. tor_assert(0);
  1143. }
  1144. tor_assert(cp->package_window >= 0);
  1145. tor_assert(cp->deliver_window >= 0);
  1146. }
  1147. /** Verify that cpath <b>cp</b> has all of its invariants
  1148. * correct. Trigger an assert if anything is invalid.
  1149. */
  1150. static void
  1151. assert_cpath_ok(const crypt_path_t *cp)
  1152. {
  1153. const crypt_path_t *start = cp;
  1154. do {
  1155. assert_cpath_layer_ok(cp);
  1156. /* layers must be in sequence of: "open* awaiting? closed*" */
  1157. if (cp != start) {
  1158. if (cp->state == CPATH_STATE_AWAITING_KEYS) {
  1159. tor_assert(cp->prev->state == CPATH_STATE_OPEN);
  1160. } else if (cp->state == CPATH_STATE_OPEN) {
  1161. tor_assert(cp->prev->state == CPATH_STATE_OPEN);
  1162. }
  1163. }
  1164. cp = cp->next;
  1165. tor_assert(cp);
  1166. } while (cp != start);
  1167. }
  1168. /** Verify that circuit <b>c</b> has all of its invariants
  1169. * correct. Trigger an assert if anything is invalid.
  1170. */
  1171. void
  1172. assert_circuit_ok(const circuit_t *c)
  1173. {
  1174. edge_connection_t *conn;
  1175. const or_circuit_t *or_circ = NULL;
  1176. const origin_circuit_t *origin_circ = NULL;
  1177. tor_assert(c);
  1178. tor_assert(c->magic == ORIGIN_CIRCUIT_MAGIC || c->magic == OR_CIRCUIT_MAGIC);
  1179. tor_assert(c->purpose >= _CIRCUIT_PURPOSE_MIN &&
  1180. c->purpose <= _CIRCUIT_PURPOSE_MAX);
  1181. {
  1182. /* Having a separate variable for this pleases GCC 4.2 in ways I hope I
  1183. * never understand. -NM. */
  1184. circuit_t *nonconst_circ = (circuit_t*) c;
  1185. if (CIRCUIT_IS_ORIGIN(c))
  1186. origin_circ = TO_ORIGIN_CIRCUIT(nonconst_circ);
  1187. else
  1188. or_circ = TO_OR_CIRCUIT(nonconst_circ);
  1189. }
  1190. if (c->n_conn) {
  1191. tor_assert(!c->n_hop);
  1192. if (c->n_circ_id) {
  1193. /* We use the _impl variant here to make sure we don't fail on marked
  1194. * circuits, which would not be returned by the regular function. */
  1195. circuit_t *c2 = circuit_get_by_circid_orconn_impl(c->n_circ_id,
  1196. c->n_conn);
  1197. tor_assert(c == c2);
  1198. }
  1199. }
  1200. if (or_circ && or_circ->p_conn) {
  1201. if (or_circ->p_circ_id) {
  1202. /* ibid */
  1203. circuit_t *c2 = circuit_get_by_circid_orconn_impl(or_circ->p_circ_id,
  1204. or_circ->p_conn);
  1205. tor_assert(c == c2);
  1206. }
  1207. }
  1208. if (or_circ)
  1209. for (conn = or_circ->n_streams; conn; conn = conn->next_stream)
  1210. tor_assert(conn->_base.type == CONN_TYPE_EXIT);
  1211. tor_assert(c->deliver_window >= 0);
  1212. tor_assert(c->package_window >= 0);
  1213. if (c->state == CIRCUIT_STATE_OPEN) {
  1214. tor_assert(!c->n_conn_onionskin);
  1215. if (or_circ) {
  1216. tor_assert(or_circ->n_crypto);
  1217. tor_assert(or_circ->p_crypto);
  1218. tor_assert(or_circ->n_digest);
  1219. tor_assert(or_circ->p_digest);
  1220. }
  1221. }
  1222. if (c->state == CIRCUIT_STATE_OR_WAIT && !c->marked_for_close) {
  1223. tor_assert(circuits_pending_or_conns &&
  1224. smartlist_isin(circuits_pending_or_conns, c));
  1225. } else {
  1226. tor_assert(!circuits_pending_or_conns ||
  1227. !smartlist_isin(circuits_pending_or_conns, c));
  1228. }
  1229. if (origin_circ && origin_circ->cpath) {
  1230. assert_cpath_ok(origin_circ->cpath);
  1231. }
  1232. if (c->purpose == CIRCUIT_PURPOSE_REND_ESTABLISHED) {
  1233. tor_assert(or_circ);
  1234. if (!c->marked_for_close) {
  1235. tor_assert(or_circ->rend_splice);
  1236. tor_assert(or_circ->rend_splice->rend_splice == or_circ);
  1237. }
  1238. tor_assert(or_circ->rend_splice != or_circ);
  1239. } else {
  1240. tor_assert(!or_circ || !or_circ->rend_splice);
  1241. }
  1242. }