circuitlist.c 81 KB

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