circuitlist.c 72 KB

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