circuitlist.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163
  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-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file circuitlist.c
  8. * \brief Manage the global circuit list.
  9. **/
  10. #define CIRCUITLIST_PRIVATE
  11. #include "or.h"
  12. #include "channel.h"
  13. #include "circpathbias.h"
  14. #include "circuitbuild.h"
  15. #include "circuitlist.h"
  16. #include "circuituse.h"
  17. #include "circuitstats.h"
  18. #include "connection.h"
  19. #include "config.h"
  20. #include "connection_edge.h"
  21. #include "connection_or.h"
  22. #include "control.h"
  23. #include "networkstatus.h"
  24. #include "nodelist.h"
  25. #include "onion.h"
  26. #include "onion_fast.h"
  27. #include "policies.h"
  28. #include "relay.h"
  29. #include "rendclient.h"
  30. #include "rendcommon.h"
  31. #include "rephist.h"
  32. #include "routerlist.h"
  33. #include "routerset.h"
  34. #include "ht.h"
  35. /********* START VARIABLES **********/
  36. /** A global list of all circuits at this hop. */
  37. struct global_circuitlist_s global_circuitlist =
  38. TOR_LIST_HEAD_INITIALIZER(global_circuitlist);
  39. /** A list of all the circuits in CIRCUIT_STATE_CHAN_WAIT. */
  40. static smartlist_t *circuits_pending_chans = NULL;
  41. static void circuit_free_cpath_node(crypt_path_t *victim);
  42. static void cpath_ref_decref(crypt_path_reference_t *cpath_ref);
  43. //static void circuit_set_rend_token(or_circuit_t *circ, int is_rend_circ,
  44. // const uint8_t *token);
  45. static void circuit_clear_rend_token(or_circuit_t *circ);
  46. /********* END VARIABLES ************/
  47. /** A map from channel and circuit ID to circuit. (Lookup performance is
  48. * very important here, since we need to do it every time a cell arrives.) */
  49. typedef struct chan_circid_circuit_map_t {
  50. HT_ENTRY(chan_circid_circuit_map_t) node;
  51. channel_t *chan;
  52. circid_t circ_id;
  53. circuit_t *circuit;
  54. /* For debugging 12184: when was this placeholder item added? */
  55. time_t made_placeholder_at;
  56. } chan_circid_circuit_map_t;
  57. /** Helper for hash tables: compare the channel and circuit ID for a and
  58. * b, and return less than, equal to, or greater than zero appropriately.
  59. */
  60. static INLINE int
  61. chan_circid_entries_eq_(chan_circid_circuit_map_t *a,
  62. chan_circid_circuit_map_t *b)
  63. {
  64. return a->chan == b->chan && a->circ_id == b->circ_id;
  65. }
  66. /** Helper: return a hash based on circuit ID and the pointer value of
  67. * chan in <b>a</b>. */
  68. static INLINE unsigned int
  69. chan_circid_entry_hash_(chan_circid_circuit_map_t *a)
  70. {
  71. /* Try to squeze the siphash input into 8 bytes to save any extra siphash
  72. * rounds. This hash function is in the critical path. */
  73. uintptr_t chan = (uintptr_t) (void*) a->chan;
  74. uint32_t array[2];
  75. array[0] = a->circ_id;
  76. /* The low bits of the channel pointer are uninteresting, since the channel
  77. * is a pretty big structure. */
  78. array[1] = (uint32_t) (chan >> 6);
  79. return (unsigned) siphash24g(array, sizeof(array));
  80. }
  81. /** Map from [chan,circid] to circuit. */
  82. static HT_HEAD(chan_circid_map, chan_circid_circuit_map_t)
  83. chan_circid_map = HT_INITIALIZER();
  84. HT_PROTOTYPE(chan_circid_map, chan_circid_circuit_map_t, node,
  85. chan_circid_entry_hash_, chan_circid_entries_eq_)
  86. HT_GENERATE(chan_circid_map, chan_circid_circuit_map_t, node,
  87. chan_circid_entry_hash_, chan_circid_entries_eq_, 0.6,
  88. malloc, realloc, free)
  89. /** The most recently returned entry from circuit_get_by_circid_chan;
  90. * used to improve performance when many cells arrive in a row from the
  91. * same circuit.
  92. */
  93. chan_circid_circuit_map_t *_last_circid_chan_ent = NULL;
  94. /** Implementation helper for circuit_set_{p,n}_circid_channel: A circuit ID
  95. * and/or channel for circ has just changed from <b>old_chan, old_id</b>
  96. * to <b>chan, id</b>. Adjust the chan,circid map as appropriate, removing
  97. * the old entry (if any) and adding a new one. */
  98. static void
  99. circuit_set_circid_chan_helper(circuit_t *circ, int direction,
  100. circid_t id,
  101. channel_t *chan)
  102. {
  103. chan_circid_circuit_map_t search;
  104. chan_circid_circuit_map_t *found;
  105. channel_t *old_chan, **chan_ptr;
  106. circid_t old_id, *circid_ptr;
  107. int make_active, attached = 0;
  108. if (direction == CELL_DIRECTION_OUT) {
  109. chan_ptr = &circ->n_chan;
  110. circid_ptr = &circ->n_circ_id;
  111. make_active = circ->n_chan_cells.n > 0;
  112. } else {
  113. or_circuit_t *c = TO_OR_CIRCUIT(circ);
  114. chan_ptr = &c->p_chan;
  115. circid_ptr = &c->p_circ_id;
  116. make_active = c->p_chan_cells.n > 0;
  117. }
  118. old_chan = *chan_ptr;
  119. old_id = *circid_ptr;
  120. if (id == old_id && chan == old_chan)
  121. return;
  122. if (_last_circid_chan_ent &&
  123. ((old_id == _last_circid_chan_ent->circ_id &&
  124. old_chan == _last_circid_chan_ent->chan) ||
  125. (id == _last_circid_chan_ent->circ_id &&
  126. chan == _last_circid_chan_ent->chan))) {
  127. _last_circid_chan_ent = NULL;
  128. }
  129. if (old_chan) {
  130. /*
  131. * If we're changing channels or ID and had an old channel and a non
  132. * zero old ID and weren't marked for close (i.e., we should have been
  133. * attached), detach the circuit. ID changes require this because
  134. * circuitmux hashes on (channel_id, circuit_id).
  135. */
  136. if (old_id != 0 && (old_chan != chan || old_id != id) &&
  137. !(circ->marked_for_close)) {
  138. tor_assert(old_chan->cmux);
  139. circuitmux_detach_circuit(old_chan->cmux, circ);
  140. }
  141. /* we may need to remove it from the conn-circid map */
  142. search.circ_id = old_id;
  143. search.chan = old_chan;
  144. found = HT_REMOVE(chan_circid_map, &chan_circid_map, &search);
  145. if (found) {
  146. tor_free(found);
  147. if (direction == CELL_DIRECTION_OUT) {
  148. /* One fewer circuits use old_chan as n_chan */
  149. --(old_chan->num_n_circuits);
  150. } else {
  151. /* One fewer circuits use old_chan as p_chan */
  152. --(old_chan->num_p_circuits);
  153. }
  154. }
  155. }
  156. /* Change the values only after we have possibly made the circuit inactive
  157. * on the previous chan. */
  158. *chan_ptr = chan;
  159. *circid_ptr = id;
  160. if (chan == NULL)
  161. return;
  162. /* now add the new one to the conn-circid map */
  163. search.circ_id = id;
  164. search.chan = chan;
  165. found = HT_FIND(chan_circid_map, &chan_circid_map, &search);
  166. if (found) {
  167. found->circuit = circ;
  168. found->made_placeholder_at = 0;
  169. } else {
  170. found = tor_malloc_zero(sizeof(chan_circid_circuit_map_t));
  171. found->circ_id = id;
  172. found->chan = chan;
  173. found->circuit = circ;
  174. HT_INSERT(chan_circid_map, &chan_circid_map, found);
  175. }
  176. /*
  177. * Attach to the circuitmux if we're changing channels or IDs and
  178. * have a new channel and ID to use and the circuit is not marked for
  179. * close.
  180. */
  181. if (chan && id != 0 && (old_chan != chan || old_id != id) &&
  182. !(circ->marked_for_close)) {
  183. tor_assert(chan->cmux);
  184. circuitmux_attach_circuit(chan->cmux, circ, direction);
  185. attached = 1;
  186. }
  187. /*
  188. * This is a no-op if we have no cells, but if we do it marks us active to
  189. * the circuitmux
  190. */
  191. if (make_active && attached)
  192. update_circuit_on_cmux(circ, direction);
  193. /* Adjust circuit counts on new channel */
  194. if (direction == CELL_DIRECTION_OUT) {
  195. ++chan->num_n_circuits;
  196. } else {
  197. ++chan->num_p_circuits;
  198. }
  199. }
  200. /** Mark that circuit id <b>id</b> shouldn't be used on channel <b>chan</b>,
  201. * even if there is no circuit on the channel. We use this to keep the
  202. * circuit id from getting re-used while we have queued but not yet sent
  203. * a destroy cell. */
  204. void
  205. channel_mark_circid_unusable(channel_t *chan, circid_t id)
  206. {
  207. chan_circid_circuit_map_t search;
  208. chan_circid_circuit_map_t *ent;
  209. /* See if there's an entry there. That wouldn't be good. */
  210. memset(&search, 0, sizeof(search));
  211. search.chan = chan;
  212. search.circ_id = id;
  213. ent = HT_FIND(chan_circid_map, &chan_circid_map, &search);
  214. if (ent && ent->circuit) {
  215. /* we have a problem. */
  216. log_warn(LD_BUG, "Tried to mark %u unusable on %p, but there was already "
  217. "a circuit there.", (unsigned)id, chan);
  218. } else if (ent) {
  219. /* It's already marked. */
  220. if (!ent->made_placeholder_at)
  221. ent->made_placeholder_at = approx_time();
  222. } else {
  223. ent = tor_malloc_zero(sizeof(chan_circid_circuit_map_t));
  224. ent->chan = chan;
  225. ent->circ_id = id;
  226. /* leave circuit at NULL. */
  227. ent->made_placeholder_at = approx_time();
  228. HT_INSERT(chan_circid_map, &chan_circid_map, ent);
  229. }
  230. }
  231. /** Mark that a circuit id <b>id</b> can be used again on <b>chan</b>.
  232. * We use this to re-enable the circuit ID after we've sent a destroy cell.
  233. */
  234. void
  235. channel_mark_circid_usable(channel_t *chan, circid_t id)
  236. {
  237. chan_circid_circuit_map_t search;
  238. chan_circid_circuit_map_t *ent;
  239. /* See if there's an entry there. That wouldn't be good. */
  240. memset(&search, 0, sizeof(search));
  241. search.chan = chan;
  242. search.circ_id = id;
  243. ent = HT_REMOVE(chan_circid_map, &chan_circid_map, &search);
  244. if (ent && ent->circuit) {
  245. log_warn(LD_BUG, "Tried to mark %u usable on %p, but there was already "
  246. "a circuit there.", (unsigned)id, chan);
  247. return;
  248. }
  249. if (_last_circid_chan_ent == ent)
  250. _last_circid_chan_ent = NULL;
  251. tor_free(ent);
  252. }
  253. /** Called to indicate that a DESTROY is pending on <b>chan</b> with
  254. * circuit ID <b>id</b>, but hasn't been sent yet. */
  255. void
  256. channel_note_destroy_pending(channel_t *chan, circid_t id)
  257. {
  258. circuit_t *circ = circuit_get_by_circid_channel_even_if_marked(id,chan);
  259. if (circ) {
  260. if (circ->n_chan == chan && circ->n_circ_id == id) {
  261. circ->n_delete_pending = 1;
  262. } else {
  263. or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
  264. if (orcirc->p_chan == chan && orcirc->p_circ_id == id) {
  265. circ->p_delete_pending = 1;
  266. }
  267. }
  268. return;
  269. }
  270. channel_mark_circid_unusable(chan, id);
  271. }
  272. /** Called to indicate that a DESTROY is no longer pending on <b>chan</b> with
  273. * circuit ID <b>id</b> -- typically, because it has been sent. */
  274. void
  275. channel_note_destroy_not_pending(channel_t *chan, circid_t id)
  276. {
  277. circuit_t *circ = circuit_get_by_circid_channel_even_if_marked(id,chan);
  278. if (circ) {
  279. if (circ->n_chan == chan && circ->n_circ_id == id) {
  280. circ->n_delete_pending = 0;
  281. } else {
  282. or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
  283. if (orcirc->p_chan == chan && orcirc->p_circ_id == id) {
  284. circ->p_delete_pending = 0;
  285. }
  286. }
  287. /* XXXX this shouldn't happen; log a bug here. */
  288. return;
  289. }
  290. channel_mark_circid_usable(chan, id);
  291. }
  292. /** Set the p_conn field of a circuit <b>circ</b>, along
  293. * with the corresponding circuit ID, and add the circuit as appropriate
  294. * to the (chan,id)-\>circuit map. */
  295. void
  296. circuit_set_p_circid_chan(or_circuit_t *or_circ, circid_t id,
  297. channel_t *chan)
  298. {
  299. circuit_t *circ = TO_CIRCUIT(or_circ);
  300. channel_t *old_chan = or_circ->p_chan;
  301. circid_t old_id = or_circ->p_circ_id;
  302. circuit_set_circid_chan_helper(circ, CELL_DIRECTION_IN, id, chan);
  303. if (chan) {
  304. tor_assert(bool_eq(or_circ->p_chan_cells.n,
  305. or_circ->next_active_on_p_chan));
  306. chan->timestamp_last_had_circuits = approx_time();
  307. }
  308. if (circ->p_delete_pending && old_chan) {
  309. channel_mark_circid_unusable(old_chan, old_id);
  310. circ->p_delete_pending = 0;
  311. }
  312. }
  313. /** Set the n_conn field of a circuit <b>circ</b>, along
  314. * with the corresponding circuit ID, and add the circuit as appropriate
  315. * to the (chan,id)-\>circuit map. */
  316. void
  317. circuit_set_n_circid_chan(circuit_t *circ, circid_t id,
  318. channel_t *chan)
  319. {
  320. channel_t *old_chan = circ->n_chan;
  321. circid_t old_id = circ->n_circ_id;
  322. circuit_set_circid_chan_helper(circ, CELL_DIRECTION_OUT, id, chan);
  323. if (chan) {
  324. tor_assert(bool_eq(circ->n_chan_cells.n, circ->next_active_on_n_chan));
  325. chan->timestamp_last_had_circuits = approx_time();
  326. }
  327. if (circ->n_delete_pending && old_chan) {
  328. channel_mark_circid_unusable(old_chan, old_id);
  329. circ->n_delete_pending = 0;
  330. }
  331. }
  332. /** Change the state of <b>circ</b> to <b>state</b>, adding it to or removing
  333. * it from lists as appropriate. */
  334. void
  335. circuit_set_state(circuit_t *circ, uint8_t state)
  336. {
  337. tor_assert(circ);
  338. if (state == circ->state)
  339. return;
  340. if (!circuits_pending_chans)
  341. circuits_pending_chans = smartlist_new();
  342. if (circ->state == CIRCUIT_STATE_CHAN_WAIT) {
  343. /* remove from waiting-circuit list. */
  344. smartlist_remove(circuits_pending_chans, circ);
  345. }
  346. if (state == CIRCUIT_STATE_CHAN_WAIT) {
  347. /* add to waiting-circuit list. */
  348. smartlist_add(circuits_pending_chans, circ);
  349. }
  350. if (state == CIRCUIT_STATE_OPEN)
  351. tor_assert(!circ->n_chan_create_cell);
  352. circ->state = state;
  353. }
  354. /** Append to <b>out</b> all circuits in state CHAN_WAIT waiting for
  355. * the given connection. */
  356. void
  357. circuit_get_all_pending_on_channel(smartlist_t *out, channel_t *chan)
  358. {
  359. tor_assert(out);
  360. tor_assert(chan);
  361. if (!circuits_pending_chans)
  362. return;
  363. SMARTLIST_FOREACH_BEGIN(circuits_pending_chans, circuit_t *, circ) {
  364. if (circ->marked_for_close)
  365. continue;
  366. if (!circ->n_hop)
  367. continue;
  368. tor_assert(circ->state == CIRCUIT_STATE_CHAN_WAIT);
  369. if (tor_digest_is_zero(circ->n_hop->identity_digest)) {
  370. /* Look at addr/port. This is an unkeyed connection. */
  371. if (!channel_matches_extend_info(chan, circ->n_hop))
  372. continue;
  373. } else {
  374. /* We expected a key. See if it's the right one. */
  375. if (tor_memneq(chan->identity_digest,
  376. circ->n_hop->identity_digest, DIGEST_LEN))
  377. continue;
  378. }
  379. smartlist_add(out, circ);
  380. } SMARTLIST_FOREACH_END(circ);
  381. }
  382. /** Return the number of circuits in state CHAN_WAIT, waiting for the given
  383. * channel. */
  384. int
  385. circuit_count_pending_on_channel(channel_t *chan)
  386. {
  387. int cnt;
  388. smartlist_t *sl = smartlist_new();
  389. tor_assert(chan);
  390. circuit_get_all_pending_on_channel(sl, chan);
  391. cnt = smartlist_len(sl);
  392. smartlist_free(sl);
  393. log_debug(LD_CIRC,"or_conn to %s at %s, %d pending circs",
  394. chan->nickname ? chan->nickname : "NULL",
  395. channel_get_canonical_remote_descr(chan),
  396. cnt);
  397. return cnt;
  398. }
  399. /** Detach from the global circuit list, and deallocate, all
  400. * circuits that have been marked for close.
  401. */
  402. void
  403. circuit_close_all_marked(void)
  404. {
  405. circuit_t *circ, *tmp;
  406. TOR_LIST_FOREACH_SAFE(circ, &global_circuitlist, head, tmp)
  407. if (circ->marked_for_close)
  408. circuit_free(circ);
  409. }
  410. /** Return the head of the global linked list of circuits. */
  411. MOCK_IMPL(struct global_circuitlist_s *,
  412. circuit_get_global_list,(void))
  413. {
  414. return &global_circuitlist;
  415. }
  416. /** Function to make circ-\>state human-readable */
  417. const char *
  418. circuit_state_to_string(int state)
  419. {
  420. static char buf[64];
  421. switch (state) {
  422. case CIRCUIT_STATE_BUILDING: return "doing handshakes";
  423. case CIRCUIT_STATE_ONIONSKIN_PENDING: return "processing the onion";
  424. case CIRCUIT_STATE_CHAN_WAIT: return "connecting to server";
  425. case CIRCUIT_STATE_OPEN: return "open";
  426. default:
  427. log_warn(LD_BUG, "Unknown circuit state %d", state);
  428. tor_snprintf(buf, sizeof(buf), "unknown state [%d]", state);
  429. return buf;
  430. }
  431. }
  432. /** Map a circuit purpose to a string suitable to be displayed to a
  433. * controller. */
  434. const char *
  435. circuit_purpose_to_controller_string(uint8_t purpose)
  436. {
  437. static char buf[32];
  438. switch (purpose) {
  439. case CIRCUIT_PURPOSE_OR:
  440. case CIRCUIT_PURPOSE_INTRO_POINT:
  441. case CIRCUIT_PURPOSE_REND_POINT_WAITING:
  442. case CIRCUIT_PURPOSE_REND_ESTABLISHED:
  443. return "SERVER"; /* A controller should never see these, actually. */
  444. case CIRCUIT_PURPOSE_C_GENERAL:
  445. return "GENERAL";
  446. case CIRCUIT_PURPOSE_C_INTRODUCING:
  447. case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT:
  448. case CIRCUIT_PURPOSE_C_INTRODUCE_ACKED:
  449. return "HS_CLIENT_INTRO";
  450. case CIRCUIT_PURPOSE_C_ESTABLISH_REND:
  451. case CIRCUIT_PURPOSE_C_REND_READY:
  452. case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED:
  453. case CIRCUIT_PURPOSE_C_REND_JOINED:
  454. return "HS_CLIENT_REND";
  455. case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO:
  456. case CIRCUIT_PURPOSE_S_INTRO:
  457. return "HS_SERVICE_INTRO";
  458. case CIRCUIT_PURPOSE_S_CONNECT_REND:
  459. case CIRCUIT_PURPOSE_S_REND_JOINED:
  460. return "HS_SERVICE_REND";
  461. case CIRCUIT_PURPOSE_TESTING:
  462. return "TESTING";
  463. case CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT:
  464. return "MEASURE_TIMEOUT";
  465. case CIRCUIT_PURPOSE_CONTROLLER:
  466. return "CONTROLLER";
  467. case CIRCUIT_PURPOSE_PATH_BIAS_TESTING:
  468. return "PATH_BIAS_TESTING";
  469. default:
  470. tor_snprintf(buf, sizeof(buf), "UNKNOWN_%d", (int)purpose);
  471. return buf;
  472. }
  473. }
  474. /** Return a string specifying the state of the hidden-service circuit
  475. * purpose <b>purpose</b>, or NULL if <b>purpose</b> is not a
  476. * hidden-service-related circuit purpose. */
  477. const char *
  478. circuit_purpose_to_controller_hs_state_string(uint8_t purpose)
  479. {
  480. switch (purpose)
  481. {
  482. default:
  483. log_fn(LOG_WARN, LD_BUG,
  484. "Unrecognized circuit purpose: %d",
  485. (int)purpose);
  486. tor_fragile_assert();
  487. /* fall through */
  488. case CIRCUIT_PURPOSE_OR:
  489. case CIRCUIT_PURPOSE_C_GENERAL:
  490. case CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT:
  491. case CIRCUIT_PURPOSE_TESTING:
  492. case CIRCUIT_PURPOSE_CONTROLLER:
  493. case CIRCUIT_PURPOSE_PATH_BIAS_TESTING:
  494. return NULL;
  495. case CIRCUIT_PURPOSE_INTRO_POINT:
  496. return "OR_HSSI_ESTABLISHED";
  497. case CIRCUIT_PURPOSE_REND_POINT_WAITING:
  498. return "OR_HSCR_ESTABLISHED";
  499. case CIRCUIT_PURPOSE_REND_ESTABLISHED:
  500. return "OR_HS_R_JOINED";
  501. case CIRCUIT_PURPOSE_C_INTRODUCING:
  502. return "HSCI_CONNECTING";
  503. case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT:
  504. return "HSCI_INTRO_SENT";
  505. case CIRCUIT_PURPOSE_C_INTRODUCE_ACKED:
  506. return "HSCI_DONE";
  507. case CIRCUIT_PURPOSE_C_ESTABLISH_REND:
  508. return "HSCR_CONNECTING";
  509. case CIRCUIT_PURPOSE_C_REND_READY:
  510. return "HSCR_ESTABLISHED_IDLE";
  511. case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED:
  512. return "HSCR_ESTABLISHED_WAITING";
  513. case CIRCUIT_PURPOSE_C_REND_JOINED:
  514. return "HSCR_JOINED";
  515. case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO:
  516. return "HSSI_CONNECTING";
  517. case CIRCUIT_PURPOSE_S_INTRO:
  518. return "HSSI_ESTABLISHED";
  519. case CIRCUIT_PURPOSE_S_CONNECT_REND:
  520. return "HSSR_CONNECTING";
  521. case CIRCUIT_PURPOSE_S_REND_JOINED:
  522. return "HSSR_JOINED";
  523. }
  524. }
  525. /** Return a human-readable string for the circuit purpose <b>purpose</b>. */
  526. const char *
  527. circuit_purpose_to_string(uint8_t purpose)
  528. {
  529. static char buf[32];
  530. switch (purpose)
  531. {
  532. case CIRCUIT_PURPOSE_OR:
  533. return "Circuit at relay";
  534. case CIRCUIT_PURPOSE_INTRO_POINT:
  535. return "Acting as intro point";
  536. case CIRCUIT_PURPOSE_REND_POINT_WAITING:
  537. return "Acting as rendevous (pending)";
  538. case CIRCUIT_PURPOSE_REND_ESTABLISHED:
  539. return "Acting as rendevous (established)";
  540. case CIRCUIT_PURPOSE_C_GENERAL:
  541. return "General-purpose client";
  542. case CIRCUIT_PURPOSE_C_INTRODUCING:
  543. return "Hidden service client: Connecting to intro point";
  544. case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT:
  545. return "Hidden service client: Waiting for ack from intro point";
  546. case CIRCUIT_PURPOSE_C_INTRODUCE_ACKED:
  547. return "Hidden service client: Received ack from intro point";
  548. case CIRCUIT_PURPOSE_C_ESTABLISH_REND:
  549. return "Hidden service client: Establishing rendezvous point";
  550. case CIRCUIT_PURPOSE_C_REND_READY:
  551. return "Hidden service client: Pending rendezvous point";
  552. case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED:
  553. return "Hidden service client: Pending rendezvous point (ack received)";
  554. case CIRCUIT_PURPOSE_C_REND_JOINED:
  555. return "Hidden service client: Active rendezvous point";
  556. case CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT:
  557. return "Measuring circuit timeout";
  558. case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO:
  559. return "Hidden service: Establishing introduction point";
  560. case CIRCUIT_PURPOSE_S_INTRO:
  561. return "Hidden service: Introduction point";
  562. case CIRCUIT_PURPOSE_S_CONNECT_REND:
  563. return "Hidden service: Connecting to rendezvous point";
  564. case CIRCUIT_PURPOSE_S_REND_JOINED:
  565. return "Hidden service: Active rendezvous point";
  566. case CIRCUIT_PURPOSE_TESTING:
  567. return "Testing circuit";
  568. case CIRCUIT_PURPOSE_CONTROLLER:
  569. return "Circuit made by controller";
  570. case CIRCUIT_PURPOSE_PATH_BIAS_TESTING:
  571. return "Path-bias testing circuit";
  572. default:
  573. tor_snprintf(buf, sizeof(buf), "UNKNOWN_%d", (int)purpose);
  574. return buf;
  575. }
  576. }
  577. /** Pick a reasonable package_window to start out for our circuits.
  578. * Originally this was hard-coded at 1000, but now the consensus votes
  579. * on the answer. See proposal 168. */
  580. int32_t
  581. circuit_initial_package_window(void)
  582. {
  583. int32_t num = networkstatus_get_param(NULL, "circwindow", CIRCWINDOW_START,
  584. CIRCWINDOW_START_MIN,
  585. CIRCWINDOW_START_MAX);
  586. /* If the consensus tells us a negative number, we'd assert. */
  587. if (num < 0)
  588. num = CIRCWINDOW_START;
  589. return num;
  590. }
  591. /** Initialize the common elements in a circuit_t, and add it to the global
  592. * list. */
  593. static void
  594. init_circuit_base(circuit_t *circ)
  595. {
  596. tor_gettimeofday(&circ->timestamp_created);
  597. // Gets reset when we send CREATE_FAST.
  598. // circuit_expire_building() expects these to be equal
  599. // until the orconn is built.
  600. circ->timestamp_began = circ->timestamp_created;
  601. circ->package_window = circuit_initial_package_window();
  602. circ->deliver_window = CIRCWINDOW_START;
  603. cell_queue_init(&circ->n_chan_cells);
  604. TOR_LIST_INSERT_HEAD(&global_circuitlist, circ, head);
  605. }
  606. /** Allocate space for a new circuit, initializing with <b>p_circ_id</b>
  607. * and <b>p_conn</b>. Add it to the global circuit list.
  608. */
  609. origin_circuit_t *
  610. origin_circuit_new(void)
  611. {
  612. origin_circuit_t *circ;
  613. /* never zero, since a global ID of 0 is treated specially by the
  614. * controller */
  615. static uint32_t n_circuits_allocated = 1;
  616. circ = tor_malloc_zero(sizeof(origin_circuit_t));
  617. circ->base_.magic = ORIGIN_CIRCUIT_MAGIC;
  618. circ->next_stream_id = crypto_rand_int(1<<16);
  619. circ->global_identifier = n_circuits_allocated++;
  620. circ->remaining_relay_early_cells = MAX_RELAY_EARLY_CELLS_PER_CIRCUIT;
  621. circ->remaining_relay_early_cells -= crypto_rand_int(2);
  622. init_circuit_base(TO_CIRCUIT(circ));
  623. circuit_build_times_update_last_circ(get_circuit_build_times_mutable());
  624. return circ;
  625. }
  626. /** Allocate a new or_circuit_t, connected to <b>p_conn</b> as
  627. * <b>p_circ_id</b>. If <b>p_conn</b> is NULL, the circuit is unattached. */
  628. or_circuit_t *
  629. or_circuit_new(circid_t p_circ_id, channel_t *p_chan)
  630. {
  631. /* CircIDs */
  632. or_circuit_t *circ;
  633. circ = tor_malloc_zero(sizeof(or_circuit_t));
  634. circ->base_.magic = OR_CIRCUIT_MAGIC;
  635. if (p_chan)
  636. circuit_set_p_circid_chan(circ, p_circ_id, p_chan);
  637. circ->remaining_relay_early_cells = MAX_RELAY_EARLY_CELLS_PER_CIRCUIT;
  638. cell_queue_init(&circ->p_chan_cells);
  639. init_circuit_base(TO_CIRCUIT(circ));
  640. return circ;
  641. }
  642. /** Deallocate space associated with circ.
  643. */
  644. STATIC void
  645. circuit_free(circuit_t *circ)
  646. {
  647. void *mem;
  648. size_t memlen;
  649. if (!circ)
  650. return;
  651. if (CIRCUIT_IS_ORIGIN(circ)) {
  652. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  653. mem = ocirc;
  654. memlen = sizeof(origin_circuit_t);
  655. tor_assert(circ->magic == ORIGIN_CIRCUIT_MAGIC);
  656. if (ocirc->build_state) {
  657. extend_info_free(ocirc->build_state->chosen_exit);
  658. circuit_free_cpath_node(ocirc->build_state->pending_final_cpath);
  659. cpath_ref_decref(ocirc->build_state->service_pending_final_cpath_ref);
  660. }
  661. tor_free(ocirc->build_state);
  662. circuit_clear_cpath(ocirc);
  663. crypto_pk_free(ocirc->intro_key);
  664. rend_data_free(ocirc->rend_data);
  665. tor_free(ocirc->dest_address);
  666. if (ocirc->socks_username) {
  667. memwipe(ocirc->socks_username, 0x12, ocirc->socks_username_len);
  668. tor_free(ocirc->socks_username);
  669. }
  670. if (ocirc->socks_password) {
  671. memwipe(ocirc->socks_password, 0x06, ocirc->socks_password_len);
  672. tor_free(ocirc->socks_password);
  673. }
  674. addr_policy_list_free(ocirc->prepend_policy);
  675. } else {
  676. or_circuit_t *ocirc = TO_OR_CIRCUIT(circ);
  677. /* Remember cell statistics for this circuit before deallocating. */
  678. if (get_options()->CellStatistics)
  679. rep_hist_buffer_stats_add_circ(circ, time(NULL));
  680. mem = ocirc;
  681. memlen = sizeof(or_circuit_t);
  682. tor_assert(circ->magic == OR_CIRCUIT_MAGIC);
  683. crypto_cipher_free(ocirc->p_crypto);
  684. crypto_digest_free(ocirc->p_digest);
  685. crypto_cipher_free(ocirc->n_crypto);
  686. crypto_digest_free(ocirc->n_digest);
  687. circuit_clear_rend_token(ocirc);
  688. if (ocirc->rend_splice) {
  689. or_circuit_t *other = ocirc->rend_splice;
  690. tor_assert(other->base_.magic == OR_CIRCUIT_MAGIC);
  691. other->rend_splice = NULL;
  692. }
  693. /* remove from map. */
  694. circuit_set_p_circid_chan(ocirc, 0, NULL);
  695. /* Clear cell queue _after_ removing it from the map. Otherwise our
  696. * "active" checks will be violated. */
  697. cell_queue_clear(&ocirc->p_chan_cells);
  698. }
  699. extend_info_free(circ->n_hop);
  700. tor_free(circ->n_chan_create_cell);
  701. TOR_LIST_REMOVE(circ, head);
  702. /* Remove from map. */
  703. circuit_set_n_circid_chan(circ, 0, NULL);
  704. /* Clear cell queue _after_ removing it from the map. Otherwise our
  705. * "active" checks will be violated. */
  706. cell_queue_clear(&circ->n_chan_cells);
  707. memwipe(mem, 0xAA, memlen); /* poison memory */
  708. tor_free(mem);
  709. }
  710. /** Deallocate the linked list circ-><b>cpath</b>, and remove the cpath from
  711. * <b>circ</b>. */
  712. void
  713. circuit_clear_cpath(origin_circuit_t *circ)
  714. {
  715. crypt_path_t *victim, *head, *cpath;
  716. head = cpath = circ->cpath;
  717. if (!cpath)
  718. return;
  719. /* it's a circular list, so we have to notice when we've
  720. * gone through it once. */
  721. while (cpath->next && cpath->next != head) {
  722. victim = cpath;
  723. cpath = victim->next;
  724. circuit_free_cpath_node(victim);
  725. }
  726. circuit_free_cpath_node(cpath);
  727. circ->cpath = NULL;
  728. }
  729. /** Release all storage held by circuits. */
  730. void
  731. circuit_free_all(void)
  732. {
  733. circuit_t *tmp, *tmp2;
  734. TOR_LIST_FOREACH_SAFE(tmp, &global_circuitlist, head, tmp2) {
  735. if (! CIRCUIT_IS_ORIGIN(tmp)) {
  736. or_circuit_t *or_circ = TO_OR_CIRCUIT(tmp);
  737. while (or_circ->resolving_streams) {
  738. edge_connection_t *next_conn;
  739. next_conn = or_circ->resolving_streams->next_stream;
  740. connection_free(TO_CONN(or_circ->resolving_streams));
  741. or_circ->resolving_streams = next_conn;
  742. }
  743. }
  744. circuit_free(tmp);
  745. }
  746. smartlist_free(circuits_pending_chans);
  747. circuits_pending_chans = NULL;
  748. {
  749. chan_circid_circuit_map_t **elt, **next, *c;
  750. for (elt = HT_START(chan_circid_map, &chan_circid_map);
  751. elt;
  752. elt = next) {
  753. c = *elt;
  754. next = HT_NEXT_RMV(chan_circid_map, &chan_circid_map, elt);
  755. tor_assert(c->circuit == NULL);
  756. tor_free(c);
  757. }
  758. }
  759. HT_CLEAR(chan_circid_map, &chan_circid_map);
  760. }
  761. /** Deallocate space associated with the cpath node <b>victim</b>. */
  762. static void
  763. circuit_free_cpath_node(crypt_path_t *victim)
  764. {
  765. if (!victim)
  766. return;
  767. crypto_cipher_free(victim->f_crypto);
  768. crypto_cipher_free(victim->b_crypto);
  769. crypto_digest_free(victim->f_digest);
  770. crypto_digest_free(victim->b_digest);
  771. onion_handshake_state_release(&victim->handshake_state);
  772. crypto_dh_free(victim->rend_dh_handshake_state);
  773. extend_info_free(victim->extend_info);
  774. memwipe(victim, 0xBB, sizeof(crypt_path_t)); /* poison memory */
  775. tor_free(victim);
  776. }
  777. /** Release a crypt_path_reference_t*, which may be NULL. */
  778. static void
  779. cpath_ref_decref(crypt_path_reference_t *cpath_ref)
  780. {
  781. if (cpath_ref != NULL) {
  782. if (--(cpath_ref->refcount) == 0) {
  783. circuit_free_cpath_node(cpath_ref->cpath);
  784. tor_free(cpath_ref);
  785. }
  786. }
  787. }
  788. /** A helper function for circuit_dump_by_conn() below. Log a bunch
  789. * of information about circuit <b>circ</b>.
  790. */
  791. static void
  792. circuit_dump_conn_details(int severity,
  793. circuit_t *circ,
  794. int conn_array_index,
  795. const char *type,
  796. circid_t this_circid,
  797. circid_t other_circid)
  798. {
  799. tor_log(severity, LD_CIRC, "Conn %d has %s circuit: circID %u "
  800. "(other side %u), state %d (%s), born %ld:",
  801. conn_array_index, type, (unsigned)this_circid, (unsigned)other_circid,
  802. circ->state, circuit_state_to_string(circ->state),
  803. (long)circ->timestamp_began.tv_sec);
  804. if (CIRCUIT_IS_ORIGIN(circ)) { /* circ starts at this node */
  805. circuit_log_path(severity, LD_CIRC, TO_ORIGIN_CIRCUIT(circ));
  806. }
  807. }
  808. /** Log, at severity <b>severity</b>, information about each circuit
  809. * that is connected to <b>conn</b>.
  810. */
  811. void
  812. circuit_dump_by_conn(connection_t *conn, int severity)
  813. {
  814. circuit_t *circ;
  815. edge_connection_t *tmpconn;
  816. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  817. circid_t n_circ_id = circ->n_circ_id, p_circ_id = 0;
  818. if (circ->marked_for_close) {
  819. continue;
  820. }
  821. if (!CIRCUIT_IS_ORIGIN(circ)) {
  822. p_circ_id = TO_OR_CIRCUIT(circ)->p_circ_id;
  823. }
  824. if (CIRCUIT_IS_ORIGIN(circ)) {
  825. for (tmpconn=TO_ORIGIN_CIRCUIT(circ)->p_streams; tmpconn;
  826. tmpconn=tmpconn->next_stream) {
  827. if (TO_CONN(tmpconn) == conn) {
  828. circuit_dump_conn_details(severity, circ, conn->conn_array_index,
  829. "App-ward", p_circ_id, n_circ_id);
  830. }
  831. }
  832. }
  833. if (! CIRCUIT_IS_ORIGIN(circ)) {
  834. for (tmpconn=TO_OR_CIRCUIT(circ)->n_streams; tmpconn;
  835. tmpconn=tmpconn->next_stream) {
  836. if (TO_CONN(tmpconn) == conn) {
  837. circuit_dump_conn_details(severity, circ, conn->conn_array_index,
  838. "Exit-ward", n_circ_id, p_circ_id);
  839. }
  840. }
  841. }
  842. }
  843. }
  844. /** Return the circuit whose global ID is <b>id</b>, or NULL if no
  845. * such circuit exists. */
  846. origin_circuit_t *
  847. circuit_get_by_global_id(uint32_t id)
  848. {
  849. circuit_t *circ;
  850. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  851. if (CIRCUIT_IS_ORIGIN(circ) &&
  852. TO_ORIGIN_CIRCUIT(circ)->global_identifier == id) {
  853. if (circ->marked_for_close)
  854. return NULL;
  855. else
  856. return TO_ORIGIN_CIRCUIT(circ);
  857. }
  858. }
  859. return NULL;
  860. }
  861. /** Return a circ such that:
  862. * - circ-\>n_circ_id or circ-\>p_circ_id is equal to <b>circ_id</b>, and
  863. * - circ is attached to <b>chan</b>, either as p_chan or n_chan.
  864. * Return NULL if no such circuit exists.
  865. *
  866. * If <b>found_entry_out</b> is provided, set it to true if we have a
  867. * placeholder entry for circid/chan, and leave it unset otherwise.
  868. */
  869. static INLINE circuit_t *
  870. circuit_get_by_circid_channel_impl(circid_t circ_id, channel_t *chan,
  871. int *found_entry_out)
  872. {
  873. chan_circid_circuit_map_t search;
  874. chan_circid_circuit_map_t *found;
  875. if (_last_circid_chan_ent &&
  876. circ_id == _last_circid_chan_ent->circ_id &&
  877. chan == _last_circid_chan_ent->chan) {
  878. found = _last_circid_chan_ent;
  879. } else {
  880. search.circ_id = circ_id;
  881. search.chan = chan;
  882. found = HT_FIND(chan_circid_map, &chan_circid_map, &search);
  883. _last_circid_chan_ent = found;
  884. }
  885. if (found && found->circuit) {
  886. log_debug(LD_CIRC,
  887. "circuit_get_by_circid_channel_impl() returning circuit %p for"
  888. " circ_id %u, channel ID " U64_FORMAT " (%p)",
  889. found->circuit, (unsigned)circ_id,
  890. U64_PRINTF_ARG(chan->global_identifier), chan);
  891. if (found_entry_out)
  892. *found_entry_out = 1;
  893. return found->circuit;
  894. }
  895. log_debug(LD_CIRC,
  896. "circuit_get_by_circid_channel_impl() found %s for"
  897. " circ_id %u, channel ID " U64_FORMAT " (%p)",
  898. found ? "placeholder" : "nothing",
  899. (unsigned)circ_id,
  900. U64_PRINTF_ARG(chan->global_identifier), chan);
  901. if (found_entry_out)
  902. *found_entry_out = found ? 1 : 0;
  903. return NULL;
  904. /* The rest of this checks for bugs. Disabled by default. */
  905. /* We comment it out because coverity complains otherwise.
  906. {
  907. circuit_t *circ;
  908. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  909. if (! CIRCUIT_IS_ORIGIN(circ)) {
  910. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  911. if (or_circ->p_chan == chan && or_circ->p_circ_id == circ_id) {
  912. log_warn(LD_BUG,
  913. "circuit matches p_chan, but not in hash table (Bug!)");
  914. return circ;
  915. }
  916. }
  917. if (circ->n_chan == chan && circ->n_circ_id == circ_id) {
  918. log_warn(LD_BUG,
  919. "circuit matches n_chan, but not in hash table (Bug!)");
  920. return circ;
  921. }
  922. }
  923. return NULL;
  924. } */
  925. }
  926. /** Return a circ such that:
  927. * - circ-\>n_circ_id or circ-\>p_circ_id is equal to <b>circ_id</b>, and
  928. * - circ is attached to <b>chan</b>, either as p_chan or n_chan.
  929. * - circ is not marked for close.
  930. * Return NULL if no such circuit exists.
  931. */
  932. circuit_t *
  933. circuit_get_by_circid_channel(circid_t circ_id, channel_t *chan)
  934. {
  935. circuit_t *circ = circuit_get_by_circid_channel_impl(circ_id, chan, NULL);
  936. if (!circ || circ->marked_for_close)
  937. return NULL;
  938. else
  939. return circ;
  940. }
  941. /** Return a circ such that:
  942. * - circ-\>n_circ_id or circ-\>p_circ_id is equal to <b>circ_id</b>, and
  943. * - circ is attached to <b>chan</b>, either as p_chan or n_chan.
  944. * Return NULL if no such circuit exists.
  945. */
  946. circuit_t *
  947. circuit_get_by_circid_channel_even_if_marked(circid_t circ_id,
  948. channel_t *chan)
  949. {
  950. return circuit_get_by_circid_channel_impl(circ_id, chan, NULL);
  951. }
  952. /** Return true iff the circuit ID <b>circ_id</b> is currently used by a
  953. * circuit, marked or not, on <b>chan</b>, or if the circ ID is reserved until
  954. * a queued destroy cell can be sent.
  955. *
  956. * (Return 1 if the circuit is present, marked or not; Return 2
  957. * if the circuit ID is pending a destroy.)
  958. **/
  959. int
  960. circuit_id_in_use_on_channel(circid_t circ_id, channel_t *chan)
  961. {
  962. int found = 0;
  963. if (circuit_get_by_circid_channel_impl(circ_id, chan, &found) != NULL)
  964. return 1;
  965. if (found)
  966. return 2;
  967. return 0;
  968. }
  969. /** Helper for debugging 12184. Returns the time since which 'circ_id' has
  970. * been marked unusable on 'chan'. */
  971. time_t
  972. circuit_id_when_marked_unusable_on_channel(circid_t circ_id, channel_t *chan)
  973. {
  974. chan_circid_circuit_map_t search;
  975. chan_circid_circuit_map_t *found;
  976. memset(&search, 0, sizeof(search));
  977. search.circ_id = circ_id;
  978. search.chan = chan;
  979. found = HT_FIND(chan_circid_map, &chan_circid_map, &search);
  980. if (! found || found->circuit)
  981. return 0;
  982. return found->made_placeholder_at;
  983. }
  984. /** Return the circuit that a given edge connection is using. */
  985. circuit_t *
  986. circuit_get_by_edge_conn(edge_connection_t *conn)
  987. {
  988. circuit_t *circ;
  989. circ = conn->on_circuit;
  990. tor_assert(!circ ||
  991. (CIRCUIT_IS_ORIGIN(circ) ? circ->magic == ORIGIN_CIRCUIT_MAGIC
  992. : circ->magic == OR_CIRCUIT_MAGIC));
  993. return circ;
  994. }
  995. /** For each circuit that has <b>chan</b> as n_chan or p_chan, unlink the
  996. * circuit from the chan,circid map, and mark it for close if it hasn't
  997. * been marked already.
  998. */
  999. void
  1000. circuit_unlink_all_from_channel(channel_t *chan, int reason)
  1001. {
  1002. smartlist_t *detached = smartlist_new();
  1003. /* #define DEBUG_CIRCUIT_UNLINK_ALL */
  1004. channel_unlink_all_circuits(chan, detached);
  1005. #ifdef DEBUG_CIRCUIT_UNLINK_ALL
  1006. {
  1007. circuit_t *circ;
  1008. smartlist_t *detached_2 = smartlist_new();
  1009. int mismatch = 0, badlen = 0;
  1010. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  1011. if (circ->n_chan == chan ||
  1012. (!CIRCUIT_IS_ORIGIN(circ) &&
  1013. TO_OR_CIRCUIT(circ)->p_chan == chan)) {
  1014. smartlist_add(detached_2, circ);
  1015. }
  1016. }
  1017. if (smartlist_len(detached) != smartlist_len(detached_2)) {
  1018. log_warn(LD_BUG, "List of detached circuits had the wrong length! "
  1019. "(got %d, should have gotten %d)",
  1020. (int)smartlist_len(detached),
  1021. (int)smartlist_len(detached_2));
  1022. badlen = 1;
  1023. }
  1024. smartlist_sort_pointers(detached);
  1025. smartlist_sort_pointers(detached_2);
  1026. SMARTLIST_FOREACH(detached, circuit_t *, c,
  1027. if (c != smartlist_get(detached_2, c_sl_idx))
  1028. mismatch = 1;
  1029. );
  1030. if (mismatch)
  1031. log_warn(LD_BUG, "Mismatch in list of detached circuits.");
  1032. if (badlen || mismatch) {
  1033. smartlist_free(detached);
  1034. detached = detached_2;
  1035. } else {
  1036. log_notice(LD_CIRC, "List of %d circuits was as expected.",
  1037. (int)smartlist_len(detached));
  1038. smartlist_free(detached_2);
  1039. }
  1040. }
  1041. #endif
  1042. SMARTLIST_FOREACH_BEGIN(detached, circuit_t *, circ) {
  1043. int mark = 0;
  1044. if (circ->n_chan == chan) {
  1045. circuit_set_n_circid_chan(circ, 0, NULL);
  1046. mark = 1;
  1047. /* If we didn't request this closure, pass the remote
  1048. * bit to mark_for_close. */
  1049. if (chan->reason_for_closing != CHANNEL_CLOSE_REQUESTED)
  1050. reason |= END_CIRC_REASON_FLAG_REMOTE;
  1051. }
  1052. if (! CIRCUIT_IS_ORIGIN(circ)) {
  1053. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  1054. if (or_circ->p_chan == chan) {
  1055. circuit_set_p_circid_chan(or_circ, 0, NULL);
  1056. mark = 1;
  1057. }
  1058. }
  1059. if (!mark) {
  1060. log_warn(LD_BUG, "Circuit on detached list which I had no reason "
  1061. "to mark");
  1062. continue;
  1063. }
  1064. if (!circ->marked_for_close)
  1065. circuit_mark_for_close(circ, reason);
  1066. } SMARTLIST_FOREACH_END(circ);
  1067. smartlist_free(detached);
  1068. }
  1069. /** Return a circ such that
  1070. * - circ-\>rend_data-\>onion_address is equal to
  1071. * <b>rend_data</b>-\>onion_address,
  1072. * - circ-\>rend_data-\>rend_cookie is equal to
  1073. * <b>rend_data</b>-\>rend_cookie, and
  1074. * - circ-\>purpose is equal to CIRCUIT_PURPOSE_C_REND_READY.
  1075. *
  1076. * Return NULL if no such circuit exists.
  1077. */
  1078. origin_circuit_t *
  1079. circuit_get_ready_rend_circ_by_rend_data(const rend_data_t *rend_data)
  1080. {
  1081. circuit_t *circ;
  1082. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  1083. if (!circ->marked_for_close &&
  1084. circ->purpose == CIRCUIT_PURPOSE_C_REND_READY) {
  1085. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1086. if (ocirc->rend_data &&
  1087. !rend_cmp_service_ids(rend_data->onion_address,
  1088. ocirc->rend_data->onion_address) &&
  1089. tor_memeq(ocirc->rend_data->rend_cookie,
  1090. rend_data->rend_cookie,
  1091. REND_COOKIE_LEN))
  1092. return ocirc;
  1093. }
  1094. }
  1095. return NULL;
  1096. }
  1097. /** Return the first circuit originating here in global_circuitlist after
  1098. * <b>start</b> whose purpose is <b>purpose</b>, and where
  1099. * <b>digest</b> (if set) matches the rend_pk_digest field. Return NULL if no
  1100. * circuit is found. If <b>start</b> is NULL, begin at the start of the list.
  1101. */
  1102. origin_circuit_t *
  1103. circuit_get_next_by_pk_and_purpose(origin_circuit_t *start,
  1104. const char *digest, uint8_t purpose)
  1105. {
  1106. circuit_t *circ;
  1107. tor_assert(CIRCUIT_PURPOSE_IS_ORIGIN(purpose));
  1108. if (start == NULL)
  1109. circ = TOR_LIST_FIRST(&global_circuitlist);
  1110. else
  1111. circ = TOR_LIST_NEXT(TO_CIRCUIT(start), head);
  1112. for ( ; circ; circ = TOR_LIST_NEXT(circ, head)) {
  1113. if (circ->marked_for_close)
  1114. continue;
  1115. if (circ->purpose != purpose)
  1116. continue;
  1117. if (!digest)
  1118. return TO_ORIGIN_CIRCUIT(circ);
  1119. else if (TO_ORIGIN_CIRCUIT(circ)->rend_data &&
  1120. tor_memeq(TO_ORIGIN_CIRCUIT(circ)->rend_data->rend_pk_digest,
  1121. digest, DIGEST_LEN))
  1122. return TO_ORIGIN_CIRCUIT(circ);
  1123. }
  1124. return NULL;
  1125. }
  1126. /** Map from rendezvous cookie to or_circuit_t */
  1127. static digestmap_t *rend_cookie_map = NULL;
  1128. /** Map from introduction point digest to or_circuit_t */
  1129. static digestmap_t *intro_digest_map = NULL;
  1130. /** Return the OR circuit whose purpose is <b>purpose</b>, and whose
  1131. * rend_token is the REND_TOKEN_LEN-byte <b>token</b>. If <b>is_rend_circ</b>,
  1132. * look for rendezvous point circuits; otherwise look for introduction point
  1133. * circuits. */
  1134. static or_circuit_t *
  1135. circuit_get_by_rend_token_and_purpose(uint8_t purpose, int is_rend_circ,
  1136. const char *token)
  1137. {
  1138. or_circuit_t *circ;
  1139. digestmap_t *map = is_rend_circ ? rend_cookie_map : intro_digest_map;
  1140. if (!map)
  1141. return NULL;
  1142. circ = digestmap_get(map, token);
  1143. if (!circ ||
  1144. circ->base_.purpose != purpose ||
  1145. circ->base_.marked_for_close)
  1146. return NULL;
  1147. if (!circ->rendinfo) {
  1148. char *t = tor_strdup(hex_str(token, REND_TOKEN_LEN));
  1149. log_warn(LD_BUG, "Wanted a circuit with %s:%d, but lookup returned a "
  1150. "circuit with no rendinfo set.",
  1151. safe_str(t), is_rend_circ);
  1152. tor_free(t);
  1153. return NULL;
  1154. }
  1155. if (! bool_eq(circ->rendinfo->is_rend_circ, is_rend_circ) ||
  1156. tor_memneq(circ->rendinfo->rend_token, token, REND_TOKEN_LEN)) {
  1157. char *t = tor_strdup(hex_str(token, REND_TOKEN_LEN));
  1158. log_warn(LD_BUG, "Wanted a circuit with %s:%d, but lookup returned %s:%d",
  1159. safe_str(t), is_rend_circ,
  1160. safe_str(hex_str(circ->rendinfo->rend_token, REND_TOKEN_LEN)),
  1161. (int)circ->rendinfo->is_rend_circ);
  1162. tor_free(t);
  1163. return NULL;
  1164. }
  1165. return circ;
  1166. }
  1167. /** Clear the rendezvous cookie or introduction point key digest that's
  1168. * configured on <b>circ</b>, if any, and remove it from any such maps. */
  1169. static void
  1170. circuit_clear_rend_token(or_circuit_t *circ)
  1171. {
  1172. or_circuit_t *found_circ;
  1173. digestmap_t *map;
  1174. if (!circ || !circ->rendinfo)
  1175. return;
  1176. map = circ->rendinfo->is_rend_circ ? rend_cookie_map : intro_digest_map;
  1177. if (!map) {
  1178. log_warn(LD_BUG, "Tried to clear rend token on circuit, but found no map");
  1179. return;
  1180. }
  1181. found_circ = digestmap_get(map, circ->rendinfo->rend_token);
  1182. if (found_circ == circ) {
  1183. /* Great, this is the right one. */
  1184. digestmap_remove(map, circ->rendinfo->rend_token);
  1185. } else if (found_circ) {
  1186. log_warn(LD_BUG, "Tried to clear rend token on circuit, but "
  1187. "it was already replaced in the map.");
  1188. } else {
  1189. log_warn(LD_BUG, "Tried to clear rend token on circuit, but "
  1190. "it not in the map at all.");
  1191. }
  1192. tor_free(circ->rendinfo); /* Sets it to NULL too */
  1193. }
  1194. /** Set the rendezvous cookie (if is_rend_circ), or the introduction point
  1195. * digest (if ! is_rend_circ) of <b>circ</b> to the REND_TOKEN_LEN-byte value
  1196. * in <b>token</b>, and add it to the appropriate map. If it previously had a
  1197. * token, clear it. If another circuit previously had the same
  1198. * cookie/intro-digest, mark that circuit and remove it from the map. */
  1199. static void
  1200. circuit_set_rend_token(or_circuit_t *circ, int is_rend_circ,
  1201. const uint8_t *token)
  1202. {
  1203. digestmap_t **map_p, *map;
  1204. or_circuit_t *found_circ;
  1205. /* Find the right map, creating it as needed */
  1206. map_p = is_rend_circ ? &rend_cookie_map : &intro_digest_map;
  1207. if (!*map_p)
  1208. *map_p = digestmap_new();
  1209. map = *map_p;
  1210. /* If this circuit already has a token, we need to remove that. */
  1211. if (circ->rendinfo)
  1212. circuit_clear_rend_token(circ);
  1213. if (token == NULL) {
  1214. /* We were only trying to remove this token, not set a new one. */
  1215. return;
  1216. }
  1217. found_circ = digestmap_get(map, (const char *)token);
  1218. if (found_circ) {
  1219. tor_assert(found_circ != circ);
  1220. circuit_clear_rend_token(found_circ);
  1221. if (! found_circ->base_.marked_for_close) {
  1222. circuit_mark_for_close(TO_CIRCUIT(found_circ), END_CIRC_REASON_FINISHED);
  1223. if (is_rend_circ) {
  1224. log_fn(LOG_PROTOCOL_WARN, LD_REND,
  1225. "Duplicate rendezvous cookie (%s...) used on two circuits",
  1226. hex_str((const char*)token, 4)); /* only log first 4 chars */
  1227. }
  1228. }
  1229. }
  1230. /* Now set up the rendinfo */
  1231. circ->rendinfo = tor_malloc(sizeof(*circ->rendinfo));
  1232. memcpy(circ->rendinfo->rend_token, token, REND_TOKEN_LEN);
  1233. circ->rendinfo->is_rend_circ = is_rend_circ ? 1 : 0;
  1234. digestmap_set(map, (const char *)token, circ);
  1235. }
  1236. /** Return the circuit waiting for a rendezvous with the provided cookie.
  1237. * Return NULL if no such circuit is found.
  1238. */
  1239. or_circuit_t *
  1240. circuit_get_rendezvous(const uint8_t *cookie)
  1241. {
  1242. return circuit_get_by_rend_token_and_purpose(
  1243. CIRCUIT_PURPOSE_REND_POINT_WAITING,
  1244. 1, (const char*)cookie);
  1245. }
  1246. /** Return the circuit waiting for intro cells of the given digest.
  1247. * Return NULL if no such circuit is found.
  1248. */
  1249. or_circuit_t *
  1250. circuit_get_intro_point(const uint8_t *digest)
  1251. {
  1252. return circuit_get_by_rend_token_and_purpose(
  1253. CIRCUIT_PURPOSE_INTRO_POINT, 0,
  1254. (const char *)digest);
  1255. }
  1256. /** Set the rendezvous cookie of <b>circ</b> to <b>cookie</b>. If another
  1257. * circuit previously had that cookie, mark it. */
  1258. void
  1259. circuit_set_rendezvous_cookie(or_circuit_t *circ, const uint8_t *cookie)
  1260. {
  1261. circuit_set_rend_token(circ, 1, cookie);
  1262. }
  1263. /** Set the intro point key digest of <b>circ</b> to <b>cookie</b>. If another
  1264. * circuit previously had that intro point digest, mark it. */
  1265. void
  1266. circuit_set_intro_point_digest(or_circuit_t *circ, const uint8_t *digest)
  1267. {
  1268. circuit_set_rend_token(circ, 0, digest);
  1269. }
  1270. /** Return a circuit that is open, is CIRCUIT_PURPOSE_C_GENERAL,
  1271. * has a timestamp_dirty value of 0, has flags matching the CIRCLAUNCH_*
  1272. * flags in <b>flags</b>, and if info is defined, does not already use info
  1273. * as any of its hops; or NULL if no circuit fits this description.
  1274. *
  1275. * The <b>purpose</b> argument (currently ignored) refers to the purpose of
  1276. * the circuit we want to create, not the purpose of the circuit we want to
  1277. * cannibalize.
  1278. *
  1279. * If !CIRCLAUNCH_NEED_UPTIME, prefer returning non-uptime circuits.
  1280. */
  1281. origin_circuit_t *
  1282. circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info,
  1283. int flags)
  1284. {
  1285. circuit_t *circ_;
  1286. origin_circuit_t *best=NULL;
  1287. int need_uptime = (flags & CIRCLAUNCH_NEED_UPTIME) != 0;
  1288. int need_capacity = (flags & CIRCLAUNCH_NEED_CAPACITY) != 0;
  1289. int internal = (flags & CIRCLAUNCH_IS_INTERNAL) != 0;
  1290. const or_options_t *options = get_options();
  1291. /* Make sure we're not trying to create a onehop circ by
  1292. * cannibalization. */
  1293. tor_assert(!(flags & CIRCLAUNCH_ONEHOP_TUNNEL));
  1294. log_debug(LD_CIRC,
  1295. "Hunting for a circ to cannibalize: purpose %d, uptime %d, "
  1296. "capacity %d, internal %d",
  1297. purpose, need_uptime, need_capacity, internal);
  1298. TOR_LIST_FOREACH(circ_, &global_circuitlist, head) {
  1299. if (CIRCUIT_IS_ORIGIN(circ_) &&
  1300. circ_->state == CIRCUIT_STATE_OPEN &&
  1301. !circ_->marked_for_close &&
  1302. circ_->purpose == CIRCUIT_PURPOSE_C_GENERAL &&
  1303. !circ_->timestamp_dirty) {
  1304. origin_circuit_t *circ = TO_ORIGIN_CIRCUIT(circ_);
  1305. if ((!need_uptime || circ->build_state->need_uptime) &&
  1306. (!need_capacity || circ->build_state->need_capacity) &&
  1307. (internal == circ->build_state->is_internal) &&
  1308. !circ->unusable_for_new_conns &&
  1309. circ->remaining_relay_early_cells &&
  1310. circ->build_state->desired_path_len == DEFAULT_ROUTE_LEN &&
  1311. !circ->build_state->onehop_tunnel &&
  1312. !circ->isolation_values_set) {
  1313. if (info) {
  1314. /* need to make sure we don't duplicate hops */
  1315. crypt_path_t *hop = circ->cpath;
  1316. const node_t *ri1 = node_get_by_id(info->identity_digest);
  1317. do {
  1318. const node_t *ri2;
  1319. if (tor_memeq(hop->extend_info->identity_digest,
  1320. info->identity_digest, DIGEST_LEN))
  1321. goto next;
  1322. if (ri1 &&
  1323. (ri2 = node_get_by_id(hop->extend_info->identity_digest))
  1324. && nodes_in_same_family(ri1, ri2))
  1325. goto next;
  1326. hop=hop->next;
  1327. } while (hop!=circ->cpath);
  1328. }
  1329. if (options->ExcludeNodes) {
  1330. /* Make sure no existing nodes in the circuit are excluded for
  1331. * general use. (This may be possible if StrictNodes is 0, and we
  1332. * thought we needed to use an otherwise excluded node for, say, a
  1333. * directory operation.) */
  1334. crypt_path_t *hop = circ->cpath;
  1335. do {
  1336. if (routerset_contains_extendinfo(options->ExcludeNodes,
  1337. hop->extend_info))
  1338. goto next;
  1339. hop = hop->next;
  1340. } while (hop != circ->cpath);
  1341. }
  1342. if (!best || (best->build_state->need_uptime && !need_uptime))
  1343. best = circ;
  1344. next: ;
  1345. }
  1346. }
  1347. }
  1348. return best;
  1349. }
  1350. /** Return the number of hops in circuit's path. */
  1351. int
  1352. circuit_get_cpath_len(origin_circuit_t *circ)
  1353. {
  1354. int n = 0;
  1355. if (circ && circ->cpath) {
  1356. crypt_path_t *cpath, *cpath_next = NULL;
  1357. for (cpath = circ->cpath; cpath_next != circ->cpath; cpath = cpath_next) {
  1358. cpath_next = cpath->next;
  1359. ++n;
  1360. }
  1361. }
  1362. return n;
  1363. }
  1364. /** Return the <b>hopnum</b>th hop in <b>circ</b>->cpath, or NULL if there
  1365. * aren't that many hops in the list. */
  1366. crypt_path_t *
  1367. circuit_get_cpath_hop(origin_circuit_t *circ, int hopnum)
  1368. {
  1369. if (circ && circ->cpath && hopnum > 0) {
  1370. crypt_path_t *cpath, *cpath_next = NULL;
  1371. for (cpath = circ->cpath; cpath_next != circ->cpath; cpath = cpath_next) {
  1372. cpath_next = cpath->next;
  1373. if (--hopnum <= 0)
  1374. return cpath;
  1375. }
  1376. }
  1377. return NULL;
  1378. }
  1379. /** Go through the circuitlist; mark-for-close each circuit that starts
  1380. * at us but has not yet been used. */
  1381. void
  1382. circuit_mark_all_unused_circs(void)
  1383. {
  1384. circuit_t *circ;
  1385. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  1386. if (CIRCUIT_IS_ORIGIN(circ) &&
  1387. !circ->marked_for_close &&
  1388. !circ->timestamp_dirty)
  1389. circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED);
  1390. }
  1391. }
  1392. /** Go through the circuitlist; for each circuit that starts at us
  1393. * and is dirty, frob its timestamp_dirty so we won't use it for any
  1394. * new streams.
  1395. *
  1396. * This is useful for letting the user change pseudonyms, so new
  1397. * streams will not be linkable to old streams.
  1398. */
  1399. void
  1400. circuit_mark_all_dirty_circs_as_unusable(void)
  1401. {
  1402. circuit_t *circ;
  1403. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  1404. if (CIRCUIT_IS_ORIGIN(circ) &&
  1405. !circ->marked_for_close &&
  1406. circ->timestamp_dirty) {
  1407. mark_circuit_unusable_for_new_conns(TO_ORIGIN_CIRCUIT(circ));
  1408. }
  1409. }
  1410. }
  1411. /** Mark <b>circ</b> to be closed next time we call
  1412. * circuit_close_all_marked(). Do any cleanup needed:
  1413. * - If state is onionskin_pending, remove circ from the onion_pending
  1414. * list.
  1415. * - If circ isn't open yet: call circuit_build_failed() if we're
  1416. * the origin, and in either case call circuit_rep_hist_note_result()
  1417. * to note stats.
  1418. * - If purpose is C_INTRODUCE_ACK_WAIT, report the intro point
  1419. * failure we just had to the hidden service client module.
  1420. * - If purpose is C_INTRODUCING and <b>reason</b> isn't TIMEOUT,
  1421. * report to the hidden service client module that the intro point
  1422. * we just tried may be unreachable.
  1423. * - Send appropriate destroys and edge_destroys for conns and
  1424. * streams attached to circ.
  1425. * - If circ->rend_splice is set (we are the midpoint of a joined
  1426. * rendezvous stream), then mark the other circuit to close as well.
  1427. */
  1428. MOCK_IMPL(void,
  1429. circuit_mark_for_close_, (circuit_t *circ, int reason, int line,
  1430. const char *file))
  1431. {
  1432. int orig_reason = reason; /* Passed to the controller */
  1433. assert_circuit_ok(circ);
  1434. tor_assert(line);
  1435. tor_assert(file);
  1436. if (circ->marked_for_close) {
  1437. log_warn(LD_BUG,
  1438. "Duplicate call to circuit_mark_for_close at %s:%d"
  1439. " (first at %s:%d)", file, line,
  1440. circ->marked_for_close_file, circ->marked_for_close);
  1441. return;
  1442. }
  1443. if (reason == END_CIRC_AT_ORIGIN) {
  1444. if (!CIRCUIT_IS_ORIGIN(circ)) {
  1445. log_warn(LD_BUG, "Specified 'at-origin' non-reason for ending circuit, "
  1446. "but circuit was not at origin. (called %s:%d, purpose=%d)",
  1447. file, line, circ->purpose);
  1448. }
  1449. reason = END_CIRC_REASON_NONE;
  1450. }
  1451. if (CIRCUIT_IS_ORIGIN(circ)) {
  1452. if (pathbias_check_close(TO_ORIGIN_CIRCUIT(circ), reason) == -1) {
  1453. /* Don't close it yet, we need to test it first */
  1454. return;
  1455. }
  1456. /* We don't send reasons when closing circuits at the origin. */
  1457. reason = END_CIRC_REASON_NONE;
  1458. }
  1459. if (reason & END_CIRC_REASON_FLAG_REMOTE)
  1460. reason &= ~END_CIRC_REASON_FLAG_REMOTE;
  1461. if (reason < END_CIRC_REASON_MIN_ || reason > END_CIRC_REASON_MAX_) {
  1462. if (!(orig_reason & END_CIRC_REASON_FLAG_REMOTE))
  1463. log_warn(LD_BUG, "Reason %d out of range at %s:%d", reason, file, line);
  1464. reason = END_CIRC_REASON_NONE;
  1465. }
  1466. if (circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
  1467. onion_pending_remove(TO_OR_CIRCUIT(circ));
  1468. }
  1469. /* If the circuit ever became OPEN, we sent it to the reputation history
  1470. * module then. If it isn't OPEN, we send it there now to remember which
  1471. * links worked and which didn't.
  1472. */
  1473. if (circ->state != CIRCUIT_STATE_OPEN) {
  1474. if (CIRCUIT_IS_ORIGIN(circ)) {
  1475. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1476. circuit_build_failed(ocirc); /* take actions if necessary */
  1477. circuit_rep_hist_note_result(ocirc);
  1478. }
  1479. }
  1480. if (circ->state == CIRCUIT_STATE_CHAN_WAIT) {
  1481. if (circuits_pending_chans)
  1482. smartlist_remove(circuits_pending_chans, circ);
  1483. }
  1484. if (CIRCUIT_IS_ORIGIN(circ)) {
  1485. control_event_circuit_status(TO_ORIGIN_CIRCUIT(circ),
  1486. (circ->state == CIRCUIT_STATE_OPEN)?CIRC_EVENT_CLOSED:CIRC_EVENT_FAILED,
  1487. orig_reason);
  1488. }
  1489. if (circ->purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) {
  1490. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1491. int timed_out = (reason == END_CIRC_REASON_TIMEOUT);
  1492. tor_assert(circ->state == CIRCUIT_STATE_OPEN);
  1493. tor_assert(ocirc->build_state->chosen_exit);
  1494. tor_assert(ocirc->rend_data);
  1495. /* treat this like getting a nack from it */
  1496. log_info(LD_REND, "Failed intro circ %s to %s (awaiting ack). %s",
  1497. safe_str_client(ocirc->rend_data->onion_address),
  1498. safe_str_client(build_state_get_exit_nickname(ocirc->build_state)),
  1499. timed_out ? "Recording timeout." : "Removing from descriptor.");
  1500. rend_client_report_intro_point_failure(ocirc->build_state->chosen_exit,
  1501. ocirc->rend_data,
  1502. timed_out ?
  1503. INTRO_POINT_FAILURE_TIMEOUT :
  1504. INTRO_POINT_FAILURE_GENERIC);
  1505. } else if (circ->purpose == CIRCUIT_PURPOSE_C_INTRODUCING &&
  1506. reason != END_CIRC_REASON_TIMEOUT) {
  1507. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1508. if (ocirc->build_state->chosen_exit && ocirc->rend_data) {
  1509. log_info(LD_REND, "Failed intro circ %s to %s "
  1510. "(building circuit to intro point). "
  1511. "Marking intro point as possibly unreachable.",
  1512. safe_str_client(ocirc->rend_data->onion_address),
  1513. safe_str_client(build_state_get_exit_nickname(ocirc->build_state)));
  1514. rend_client_report_intro_point_failure(ocirc->build_state->chosen_exit,
  1515. ocirc->rend_data,
  1516. INTRO_POINT_FAILURE_UNREACHABLE);
  1517. }
  1518. }
  1519. if (circ->n_chan) {
  1520. circuit_clear_cell_queue(circ, circ->n_chan);
  1521. /* Only send destroy if the channel isn't closing anyway */
  1522. if (!(circ->n_chan->state == CHANNEL_STATE_CLOSING ||
  1523. circ->n_chan->state == CHANNEL_STATE_CLOSED ||
  1524. circ->n_chan->state == CHANNEL_STATE_ERROR)) {
  1525. channel_send_destroy(circ->n_circ_id, circ->n_chan, reason);
  1526. }
  1527. circuitmux_detach_circuit(circ->n_chan->cmux, circ);
  1528. circuit_set_n_circid_chan(circ, 0, NULL);
  1529. }
  1530. if (! CIRCUIT_IS_ORIGIN(circ)) {
  1531. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  1532. edge_connection_t *conn;
  1533. for (conn=or_circ->n_streams; conn; conn=conn->next_stream)
  1534. connection_edge_destroy(or_circ->p_circ_id, conn);
  1535. or_circ->n_streams = NULL;
  1536. while (or_circ->resolving_streams) {
  1537. conn = or_circ->resolving_streams;
  1538. or_circ->resolving_streams = conn->next_stream;
  1539. if (!conn->base_.marked_for_close) {
  1540. /* The client will see a DESTROY, and infer that the connections
  1541. * are closing because the circuit is getting torn down. No need
  1542. * to send an end cell. */
  1543. conn->edge_has_sent_end = 1;
  1544. conn->end_reason = END_STREAM_REASON_DESTROY;
  1545. conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED;
  1546. connection_mark_for_close(TO_CONN(conn));
  1547. }
  1548. conn->on_circuit = NULL;
  1549. }
  1550. if (or_circ->p_chan) {
  1551. circuit_clear_cell_queue(circ, or_circ->p_chan);
  1552. /* Only send destroy if the channel isn't closing anyway */
  1553. if (!(or_circ->p_chan->state == CHANNEL_STATE_CLOSING ||
  1554. or_circ->p_chan->state == CHANNEL_STATE_CLOSED ||
  1555. or_circ->p_chan->state == CHANNEL_STATE_ERROR)) {
  1556. channel_send_destroy(or_circ->p_circ_id, or_circ->p_chan, reason);
  1557. }
  1558. circuitmux_detach_circuit(or_circ->p_chan->cmux, circ);
  1559. circuit_set_p_circid_chan(or_circ, 0, NULL);
  1560. }
  1561. } else {
  1562. origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
  1563. edge_connection_t *conn;
  1564. for (conn=ocirc->p_streams; conn; conn=conn->next_stream)
  1565. connection_edge_destroy(circ->n_circ_id, conn);
  1566. ocirc->p_streams = NULL;
  1567. }
  1568. circ->marked_for_close = line;
  1569. circ->marked_for_close_file = file;
  1570. if (!CIRCUIT_IS_ORIGIN(circ)) {
  1571. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  1572. if (or_circ->rend_splice) {
  1573. if (!or_circ->rend_splice->base_.marked_for_close) {
  1574. /* do this after marking this circuit, to avoid infinite recursion. */
  1575. circuit_mark_for_close(TO_CIRCUIT(or_circ->rend_splice), reason);
  1576. }
  1577. or_circ->rend_splice = NULL;
  1578. }
  1579. }
  1580. }
  1581. /** Given a marked circuit <b>circ</b>, aggressively free its cell queues to
  1582. * recover memory. */
  1583. static void
  1584. marked_circuit_free_cells(circuit_t *circ)
  1585. {
  1586. if (!circ->marked_for_close) {
  1587. log_warn(LD_BUG, "Called on non-marked circuit");
  1588. return;
  1589. }
  1590. cell_queue_clear(&circ->n_chan_cells);
  1591. if (! CIRCUIT_IS_ORIGIN(circ))
  1592. cell_queue_clear(& TO_OR_CIRCUIT(circ)->p_chan_cells);
  1593. }
  1594. /** Aggressively free buffer contents on all the buffers of all streams in the
  1595. * list starting at <b>stream</b>. Return the number of bytes recovered. */
  1596. static size_t
  1597. marked_circuit_streams_free_bytes(edge_connection_t *stream)
  1598. {
  1599. size_t result = 0;
  1600. for ( ; stream; stream = stream->next_stream) {
  1601. connection_t *conn = TO_CONN(stream);
  1602. if (conn->inbuf) {
  1603. result += buf_allocation(conn->inbuf);
  1604. buf_clear(conn->inbuf);
  1605. }
  1606. if (conn->outbuf) {
  1607. result += buf_allocation(conn->outbuf);
  1608. buf_clear(conn->outbuf);
  1609. }
  1610. }
  1611. return result;
  1612. }
  1613. /** Aggressively free buffer contents on all the buffers of all streams on
  1614. * circuit <b>c</b>. Return the number of bytes recovered. */
  1615. static size_t
  1616. marked_circuit_free_stream_bytes(circuit_t *c)
  1617. {
  1618. if (CIRCUIT_IS_ORIGIN(c)) {
  1619. return marked_circuit_streams_free_bytes(TO_ORIGIN_CIRCUIT(c)->p_streams);
  1620. } else {
  1621. return marked_circuit_streams_free_bytes(TO_OR_CIRCUIT(c)->n_streams);
  1622. }
  1623. }
  1624. /** Return the number of cells used by the circuit <b>c</b>'s cell queues. */
  1625. STATIC size_t
  1626. n_cells_in_circ_queues(const circuit_t *c)
  1627. {
  1628. size_t n = c->n_chan_cells.n;
  1629. if (! CIRCUIT_IS_ORIGIN(c)) {
  1630. circuit_t *cc = (circuit_t *) c;
  1631. n += TO_OR_CIRCUIT(cc)->p_chan_cells.n;
  1632. }
  1633. return n;
  1634. }
  1635. /**
  1636. * Return the age of the oldest cell queued on <b>c</b>, in milliseconds.
  1637. * Return 0 if there are no cells queued on c. Requires that <b>now</b> be
  1638. * the current time in milliseconds since the epoch, truncated.
  1639. *
  1640. * This function will return incorrect results if the oldest cell queued on
  1641. * the circuit is older than 2**32 msec (about 49 days) old.
  1642. */
  1643. STATIC uint32_t
  1644. circuit_max_queued_cell_age(const circuit_t *c, uint32_t now)
  1645. {
  1646. uint32_t age = 0;
  1647. packed_cell_t *cell;
  1648. if (NULL != (cell = TOR_SIMPLEQ_FIRST(&c->n_chan_cells.head)))
  1649. age = now - cell->inserted_time;
  1650. if (! CIRCUIT_IS_ORIGIN(c)) {
  1651. const or_circuit_t *orcirc = CONST_TO_OR_CIRCUIT(c);
  1652. if (NULL != (cell = TOR_SIMPLEQ_FIRST(&orcirc->p_chan_cells.head))) {
  1653. uint32_t age2 = now - cell->inserted_time;
  1654. if (age2 > age)
  1655. return age2;
  1656. }
  1657. }
  1658. return age;
  1659. }
  1660. /** Return the age in milliseconds of the oldest buffer chunk on any stream in
  1661. * the linked list <b>stream</b>, where age is taken in milliseconds before
  1662. * the time <b>now</b> (in truncated milliseconds since the epoch). */
  1663. static uint32_t
  1664. circuit_get_streams_max_data_age(const edge_connection_t *stream, uint32_t now)
  1665. {
  1666. uint32_t age = 0, age2;
  1667. for (; stream; stream = stream->next_stream) {
  1668. const connection_t *conn = TO_CONN(stream);
  1669. if (conn->outbuf) {
  1670. age2 = buf_get_oldest_chunk_timestamp(conn->outbuf, now);
  1671. if (age2 > age)
  1672. age = age2;
  1673. }
  1674. if (conn->inbuf) {
  1675. age2 = buf_get_oldest_chunk_timestamp(conn->inbuf, now);
  1676. if (age2 > age)
  1677. age = age2;
  1678. }
  1679. }
  1680. return age;
  1681. }
  1682. /** Return the age in milliseconds of the oldest buffer chunk on any stream
  1683. * attached to the circuit <b>c</b>, where age is taken in milliseconds before
  1684. * the time <b>now</b> (in truncated milliseconds since the epoch). */
  1685. STATIC uint32_t
  1686. circuit_max_queued_data_age(const circuit_t *c, uint32_t now)
  1687. {
  1688. if (CIRCUIT_IS_ORIGIN(c)) {
  1689. return circuit_get_streams_max_data_age(
  1690. CONST_TO_ORIGIN_CIRCUIT(c)->p_streams, now);
  1691. } else {
  1692. return circuit_get_streams_max_data_age(
  1693. CONST_TO_OR_CIRCUIT(c)->n_streams, now);
  1694. }
  1695. }
  1696. /** Return the age of the oldest cell or stream buffer chunk on the circuit
  1697. * <b>c</b>, where age is taken in milliseconds before the time <b>now</b> (in
  1698. * truncated milliseconds since the epoch). */
  1699. STATIC uint32_t
  1700. circuit_max_queued_item_age(const circuit_t *c, uint32_t now)
  1701. {
  1702. uint32_t cell_age = circuit_max_queued_cell_age(c, now);
  1703. uint32_t data_age = circuit_max_queued_data_age(c, now);
  1704. if (cell_age > data_age)
  1705. return cell_age;
  1706. else
  1707. return data_age;
  1708. }
  1709. /** Helper to sort a list of circuit_t by age of oldest item, in descending
  1710. * order. */
  1711. static int
  1712. circuits_compare_by_oldest_queued_item_(const void **a_, const void **b_)
  1713. {
  1714. const circuit_t *a = *a_;
  1715. const circuit_t *b = *b_;
  1716. uint32_t age_a = a->age_tmp;
  1717. uint32_t age_b = b->age_tmp;
  1718. if (age_a < age_b)
  1719. return 1;
  1720. else if (age_a == age_b)
  1721. return 0;
  1722. else
  1723. return -1;
  1724. }
  1725. #define FRACTION_OF_DATA_TO_RETAIN_ON_OOM 0.90
  1726. /** We're out of memory for cells, having allocated <b>current_allocation</b>
  1727. * bytes' worth. Kill the 'worst' circuits until we're under
  1728. * FRACTION_OF_DATA_TO_RETAIN_ON_OOM of our maximum usage. */
  1729. void
  1730. circuits_handle_oom(size_t current_allocation)
  1731. {
  1732. /* Let's hope there's enough slack space for this allocation here... */
  1733. smartlist_t *circlist = smartlist_new();
  1734. circuit_t *circ;
  1735. size_t mem_to_recover;
  1736. size_t mem_recovered=0;
  1737. int n_circuits_killed=0;
  1738. struct timeval now;
  1739. uint32_t now_ms;
  1740. log_notice(LD_GENERAL, "We're low on memory. Killing circuits with "
  1741. "over-long queues. (This behavior is controlled by "
  1742. "MaxMemInQueues.)");
  1743. {
  1744. const size_t recovered = buf_shrink_freelists(1);
  1745. if (recovered >= current_allocation) {
  1746. log_warn(LD_BUG, "We somehow recovered more memory from freelists "
  1747. "than we thought we had allocated");
  1748. current_allocation = 0;
  1749. } else {
  1750. current_allocation -= recovered;
  1751. }
  1752. }
  1753. {
  1754. size_t mem_target = (size_t)(get_options()->MaxMemInQueues *
  1755. FRACTION_OF_DATA_TO_RETAIN_ON_OOM);
  1756. if (current_allocation <= mem_target)
  1757. return;
  1758. mem_to_recover = current_allocation - mem_target;
  1759. }
  1760. tor_gettimeofday_cached_monotonic(&now);
  1761. now_ms = (uint32_t)tv_to_msec(&now);
  1762. /* This algorithm itself assumes that you've got enough memory slack
  1763. * to actually run it. */
  1764. TOR_LIST_FOREACH(circ, &global_circuitlist, head) {
  1765. circ->age_tmp = circuit_max_queued_item_age(circ, now_ms);
  1766. smartlist_add(circlist, circ);
  1767. }
  1768. /* This is O(n log n); there are faster algorithms we could use instead.
  1769. * Let's hope this doesn't happen enough to be in the critical path. */
  1770. smartlist_sort(circlist, circuits_compare_by_oldest_queued_item_);
  1771. /* Okay, now the worst circuits are at the front of the list. Let's mark
  1772. * them, and reclaim their storage aggressively. */
  1773. SMARTLIST_FOREACH_BEGIN(circlist, circuit_t *, circ) {
  1774. size_t n = n_cells_in_circ_queues(circ);
  1775. size_t freed;
  1776. if (! circ->marked_for_close) {
  1777. circuit_mark_for_close(circ, END_CIRC_REASON_RESOURCELIMIT);
  1778. }
  1779. marked_circuit_free_cells(circ);
  1780. freed = marked_circuit_free_stream_bytes(circ);
  1781. ++n_circuits_killed;
  1782. mem_recovered += n * packed_cell_mem_cost();
  1783. mem_recovered += freed;
  1784. if (mem_recovered >= mem_to_recover)
  1785. break;
  1786. } SMARTLIST_FOREACH_END(circ);
  1787. #ifdef ENABLE_MEMPOOLS
  1788. clean_cell_pool(); /* In case this helps. */
  1789. #endif /* ENABLE_MEMPOOLS */
  1790. buf_shrink_freelists(1); /* This is necessary to actually release buffer
  1791. chunks. */
  1792. log_notice(LD_GENERAL, "Removed "U64_FORMAT" bytes by killing %d circuits; "
  1793. "%d circuits remain alive.",
  1794. U64_PRINTF_ARG(mem_recovered),
  1795. n_circuits_killed,
  1796. smartlist_len(circlist) - n_circuits_killed);
  1797. smartlist_free(circlist);
  1798. }
  1799. /** Verify that cpath layer <b>cp</b> has all of its invariants
  1800. * correct. Trigger an assert if anything is invalid.
  1801. */
  1802. void
  1803. assert_cpath_layer_ok(const crypt_path_t *cp)
  1804. {
  1805. // tor_assert(cp->addr); /* these are zero for rendezvous extra-hops */
  1806. // tor_assert(cp->port);
  1807. tor_assert(cp);
  1808. tor_assert(cp->magic == CRYPT_PATH_MAGIC);
  1809. switch (cp->state)
  1810. {
  1811. case CPATH_STATE_OPEN:
  1812. tor_assert(cp->f_crypto);
  1813. tor_assert(cp->b_crypto);
  1814. /* fall through */
  1815. case CPATH_STATE_CLOSED:
  1816. /*XXXX Assert that there's no handshake_state either. */
  1817. tor_assert(!cp->rend_dh_handshake_state);
  1818. break;
  1819. case CPATH_STATE_AWAITING_KEYS:
  1820. /* tor_assert(cp->dh_handshake_state); */
  1821. break;
  1822. default:
  1823. log_fn(LOG_ERR, LD_BUG, "Unexpected state %d", cp->state);
  1824. tor_assert(0);
  1825. }
  1826. tor_assert(cp->package_window >= 0);
  1827. tor_assert(cp->deliver_window >= 0);
  1828. }
  1829. /** Verify that cpath <b>cp</b> has all of its invariants
  1830. * correct. Trigger an assert if anything is invalid.
  1831. */
  1832. static void
  1833. assert_cpath_ok(const crypt_path_t *cp)
  1834. {
  1835. const crypt_path_t *start = cp;
  1836. do {
  1837. assert_cpath_layer_ok(cp);
  1838. /* layers must be in sequence of: "open* awaiting? closed*" */
  1839. if (cp != start) {
  1840. if (cp->state == CPATH_STATE_AWAITING_KEYS) {
  1841. tor_assert(cp->prev->state == CPATH_STATE_OPEN);
  1842. } else if (cp->state == CPATH_STATE_OPEN) {
  1843. tor_assert(cp->prev->state == CPATH_STATE_OPEN);
  1844. }
  1845. }
  1846. cp = cp->next;
  1847. tor_assert(cp);
  1848. } while (cp != start);
  1849. }
  1850. /** Verify that circuit <b>c</b> has all of its invariants
  1851. * correct. Trigger an assert if anything is invalid.
  1852. */
  1853. void
  1854. assert_circuit_ok(const circuit_t *c)
  1855. {
  1856. edge_connection_t *conn;
  1857. const or_circuit_t *or_circ = NULL;
  1858. const origin_circuit_t *origin_circ = NULL;
  1859. tor_assert(c);
  1860. tor_assert(c->magic == ORIGIN_CIRCUIT_MAGIC || c->magic == OR_CIRCUIT_MAGIC);
  1861. tor_assert(c->purpose >= CIRCUIT_PURPOSE_MIN_ &&
  1862. c->purpose <= CIRCUIT_PURPOSE_MAX_);
  1863. if (CIRCUIT_IS_ORIGIN(c))
  1864. origin_circ = CONST_TO_ORIGIN_CIRCUIT(c);
  1865. else
  1866. or_circ = CONST_TO_OR_CIRCUIT(c);
  1867. if (c->n_chan) {
  1868. tor_assert(!c->n_hop);
  1869. if (c->n_circ_id) {
  1870. /* We use the _impl variant here to make sure we don't fail on marked
  1871. * circuits, which would not be returned by the regular function. */
  1872. circuit_t *c2 = circuit_get_by_circid_channel_impl(c->n_circ_id,
  1873. c->n_chan, NULL);
  1874. tor_assert(c == c2);
  1875. }
  1876. }
  1877. if (or_circ && or_circ->p_chan) {
  1878. if (or_circ->p_circ_id) {
  1879. /* ibid */
  1880. circuit_t *c2 =
  1881. circuit_get_by_circid_channel_impl(or_circ->p_circ_id,
  1882. or_circ->p_chan, NULL);
  1883. tor_assert(c == c2);
  1884. }
  1885. }
  1886. if (or_circ)
  1887. for (conn = or_circ->n_streams; conn; conn = conn->next_stream)
  1888. tor_assert(conn->base_.type == CONN_TYPE_EXIT);
  1889. tor_assert(c->deliver_window >= 0);
  1890. tor_assert(c->package_window >= 0);
  1891. if (c->state == CIRCUIT_STATE_OPEN) {
  1892. tor_assert(!c->n_chan_create_cell);
  1893. if (or_circ) {
  1894. tor_assert(or_circ->n_crypto);
  1895. tor_assert(or_circ->p_crypto);
  1896. tor_assert(or_circ->n_digest);
  1897. tor_assert(or_circ->p_digest);
  1898. }
  1899. }
  1900. if (c->state == CIRCUIT_STATE_CHAN_WAIT && !c->marked_for_close) {
  1901. tor_assert(circuits_pending_chans &&
  1902. smartlist_contains(circuits_pending_chans, c));
  1903. } else {
  1904. tor_assert(!circuits_pending_chans ||
  1905. !smartlist_contains(circuits_pending_chans, c));
  1906. }
  1907. if (origin_circ && origin_circ->cpath) {
  1908. assert_cpath_ok(origin_circ->cpath);
  1909. }
  1910. if (c->purpose == CIRCUIT_PURPOSE_REND_ESTABLISHED) {
  1911. tor_assert(or_circ);
  1912. if (!c->marked_for_close) {
  1913. tor_assert(or_circ->rend_splice);
  1914. tor_assert(or_circ->rend_splice->rend_splice == or_circ);
  1915. }
  1916. tor_assert(or_circ->rend_splice != or_circ);
  1917. } else {
  1918. tor_assert(!or_circ || !or_circ->rend_splice);
  1919. }
  1920. }