circuitlist.c 75 KB

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