relay.c 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117
  1. /* Copyright (c) 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 relay.c
  8. * \brief Handle relay cell encryption/decryption, plus packaging and
  9. * receiving from circuits, plus queuing on circuits.
  10. *
  11. * This is a core modules that makes Tor work. It's responsible for
  12. * dealing with RELAY cells (the ones that travel more than one hop along a
  13. * circuit), by:
  14. * <ul>
  15. * <li>constructing relays cells,
  16. * <li>encrypting relay cells,
  17. * <li>decrypting relay cells,
  18. * <li>demultiplexing relay cells as they arrive on a connection,
  19. * <li>queueing relay cells for retransmission,
  20. * <li>or handling relay cells that are for us to receive (as an exit or a
  21. * client).
  22. * </ul>
  23. *
  24. * RELAY cells are generated throughout the code at the client or relay side,
  25. * using relay_send_command_from_edge() or one of the functions like
  26. * connection_edge_send_command() that calls it. Of particular interest is
  27. * connection_edge_package_raw_inbuf(), which takes information that has
  28. * arrived on an edge connection socket, and packages it as a RELAY_DATA cell
  29. * -- this is how information is actually sent across the Tor network. The
  30. * cryptography for these functions is handled deep in
  31. * circuit_package_relay_cell(), which either adds a single layer of
  32. * encryption (if we're an exit), or multiple layers (if we're the origin of
  33. * the circuit). After construction and encryption, the RELAY cells are
  34. * passed to append_cell_to_circuit_queue(), which queues them for
  35. * transmission and tells the circuitmux (see circuitmux.c) that the circuit
  36. * is waiting to send something.
  37. *
  38. * Incoming RELAY cells arrive at circuit_receive_relay_cell(), called from
  39. * command.c. There they are decrypted and, if they are for us, are passed to
  40. * connection_edge_process_relay_cell(). If they're not for us, they're
  41. * re-queued for retransmission again with append_cell_to_circuit_queue().
  42. *
  43. * The connection_edge_process_relay_cell() function handles all the different
  44. * types of relay cells, launching requests or transmitting data as needed.
  45. **/
  46. #define RELAY_PRIVATE
  47. #include "or.h"
  48. #include "addressmap.h"
  49. #include "backtrace.h"
  50. #include "buffers.h"
  51. #include "channel.h"
  52. #include "circpathbias.h"
  53. #include "circuitbuild.h"
  54. #include "circuitlist.h"
  55. #include "circuituse.h"
  56. #include "compress.h"
  57. #include "config.h"
  58. #include "connection.h"
  59. #include "connection_edge.h"
  60. #include "connection_or.h"
  61. #include "control.h"
  62. #include "geoip.h"
  63. #include "hs_cache.h"
  64. #include "main.h"
  65. #include "networkstatus.h"
  66. #include "nodelist.h"
  67. #include "onion.h"
  68. #include "policies.h"
  69. #include "reasons.h"
  70. #include "relay.h"
  71. #include "rendcache.h"
  72. #include "rendcommon.h"
  73. #include "router.h"
  74. #include "routerlist.h"
  75. #include "routerparse.h"
  76. #include "scheduler.h"
  77. #include "rephist.h"
  78. static edge_connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell,
  79. cell_direction_t cell_direction,
  80. crypt_path_t *layer_hint);
  81. static int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
  82. edge_connection_t *conn,
  83. crypt_path_t *layer_hint);
  84. static void circuit_consider_sending_sendme(circuit_t *circ,
  85. crypt_path_t *layer_hint);
  86. static void circuit_resume_edge_reading(circuit_t *circ,
  87. crypt_path_t *layer_hint);
  88. static int circuit_resume_edge_reading_helper(edge_connection_t *conn,
  89. circuit_t *circ,
  90. crypt_path_t *layer_hint);
  91. static int circuit_consider_stop_edge_reading(circuit_t *circ,
  92. crypt_path_t *layer_hint);
  93. static int circuit_queue_streams_are_blocked(circuit_t *circ);
  94. static void adjust_exit_policy_from_exitpolicy_failure(origin_circuit_t *circ,
  95. entry_connection_t *conn,
  96. node_t *node,
  97. const tor_addr_t *addr);
  98. #if 0
  99. static int get_max_middle_cells(void);
  100. #endif
  101. /** Stop reading on edge connections when we have this many cells
  102. * waiting on the appropriate queue. */
  103. #define CELL_QUEUE_HIGHWATER_SIZE 256
  104. /** Start reading from edge connections again when we get down to this many
  105. * cells. */
  106. #define CELL_QUEUE_LOWWATER_SIZE 64
  107. /** Stats: how many relay cells have originated at this hop, or have
  108. * been relayed onward (not recognized at this hop)?
  109. */
  110. uint64_t stats_n_relay_cells_relayed = 0;
  111. /** Stats: how many relay cells have been delivered to streams at this
  112. * hop?
  113. */
  114. uint64_t stats_n_relay_cells_delivered = 0;
  115. /** Used to tell which stream to read from first on a circuit. */
  116. static tor_weak_rng_t stream_choice_rng = TOR_WEAK_RNG_INIT;
  117. /** Update digest from the payload of cell. Assign integrity part to
  118. * cell.
  119. */
  120. static void
  121. relay_set_digest(crypto_digest_t *digest, cell_t *cell)
  122. {
  123. char integrity[4];
  124. relay_header_t rh;
  125. crypto_digest_add_bytes(digest, (char*)cell->payload, CELL_PAYLOAD_SIZE);
  126. crypto_digest_get_digest(digest, integrity, 4);
  127. // log_fn(LOG_DEBUG,"Putting digest of %u %u %u %u into relay cell.",
  128. // integrity[0], integrity[1], integrity[2], integrity[3]);
  129. relay_header_unpack(&rh, cell->payload);
  130. memcpy(rh.integrity, integrity, 4);
  131. relay_header_pack(cell->payload, &rh);
  132. }
  133. /** Does the digest for this circuit indicate that this cell is for us?
  134. *
  135. * Update digest from the payload of cell (with the integrity part set
  136. * to 0). If the integrity part is valid, return 1, else restore digest
  137. * and cell to their original state and return 0.
  138. */
  139. static int
  140. relay_digest_matches(crypto_digest_t *digest, cell_t *cell)
  141. {
  142. uint32_t received_integrity, calculated_integrity;
  143. relay_header_t rh;
  144. crypto_digest_t *backup_digest=NULL;
  145. backup_digest = crypto_digest_dup(digest);
  146. relay_header_unpack(&rh, cell->payload);
  147. memcpy(&received_integrity, rh.integrity, 4);
  148. memset(rh.integrity, 0, 4);
  149. relay_header_pack(cell->payload, &rh);
  150. // log_fn(LOG_DEBUG,"Reading digest of %u %u %u %u from relay cell.",
  151. // received_integrity[0], received_integrity[1],
  152. // received_integrity[2], received_integrity[3]);
  153. crypto_digest_add_bytes(digest, (char*) cell->payload, CELL_PAYLOAD_SIZE);
  154. crypto_digest_get_digest(digest, (char*) &calculated_integrity, 4);
  155. if (calculated_integrity != received_integrity) {
  156. // log_fn(LOG_INFO,"Recognized=0 but bad digest. Not recognizing.");
  157. // (%d vs %d).", received_integrity, calculated_integrity);
  158. /* restore digest to its old form */
  159. crypto_digest_assign(digest, backup_digest);
  160. /* restore the relay header */
  161. memcpy(rh.integrity, &received_integrity, 4);
  162. relay_header_pack(cell->payload, &rh);
  163. crypto_digest_free(backup_digest);
  164. return 0;
  165. }
  166. crypto_digest_free(backup_digest);
  167. return 1;
  168. }
  169. /** Apply <b>cipher</b> to CELL_PAYLOAD_SIZE bytes of <b>in</b>
  170. * (in place).
  171. *
  172. * If <b>encrypt_mode</b> is 1 then encrypt, else decrypt.
  173. *
  174. * Returns 0.
  175. */
  176. static int
  177. relay_crypt_one_payload(crypto_cipher_t *cipher, uint8_t *in,
  178. int encrypt_mode)
  179. {
  180. (void)encrypt_mode;
  181. crypto_cipher_crypt_inplace(cipher, (char*) in, CELL_PAYLOAD_SIZE);
  182. return 0;
  183. }
  184. /**
  185. * Update channel usage state based on the type of relay cell and
  186. * circuit properties.
  187. *
  188. * This is needed to determine if a client channel is being
  189. * used for application traffic, and if a relay channel is being
  190. * used for multihop circuits and application traffic. The decision
  191. * to pad in channelpadding.c depends upon this info (as well as
  192. * consensus parameters) to decide what channels to pad.
  193. */
  194. static void
  195. circuit_update_channel_usage(circuit_t *circ, cell_t *cell)
  196. {
  197. if (CIRCUIT_IS_ORIGIN(circ)) {
  198. /*
  199. * The client state was first set much earlier in
  200. * circuit_send_next_onion_skin(), so we can start padding as early as
  201. * possible.
  202. *
  203. * However, if padding turns out to be expensive, we may want to not do
  204. * it until actual application traffic starts flowing (which is controlled
  205. * via consensus param nf_pad_before_usage).
  206. *
  207. * So: If we're an origin circuit and we've created a full length circuit,
  208. * then any CELL_RELAY cell means application data. Increase the usage
  209. * state of the channel to indicate this.
  210. *
  211. * We want to wait for CELL_RELAY specifically here, so we know that
  212. * the channel was definitely being used for data and not for extends.
  213. * By default, we pad as soon as a channel has been used for *any*
  214. * circuits, so this state is irrelevant to the padding decision in
  215. * the default case. However, if padding turns out to be expensive,
  216. * we would like the ability to avoid padding until we're absolutely
  217. * sure that a channel is used for enough application data to be worth
  218. * padding.
  219. *
  220. * (So it does not matter that CELL_RELAY_EARLY can actually contain
  221. * application data. This is only a load reducing option and that edge
  222. * case does not matter if we're desperately trying to reduce overhead
  223. * anyway. See also consensus parameter nf_pad_before_usage).
  224. */
  225. if (BUG(!circ->n_chan))
  226. return;
  227. if (circ->n_chan->channel_usage == CHANNEL_USED_FOR_FULL_CIRCS &&
  228. cell->command == CELL_RELAY) {
  229. circ->n_chan->channel_usage = CHANNEL_USED_FOR_USER_TRAFFIC;
  230. }
  231. } else {
  232. /* If we're a relay circuit, the question is more complicated. Basically:
  233. * we only want to pad connections that carry multihop (anonymous)
  234. * circuits.
  235. *
  236. * We assume we're more than one hop if either the previous hop
  237. * is not a client, or if the previous hop is a client and there's
  238. * a next hop. Then, circuit traffic starts at RELAY_EARLY, and
  239. * user application traffic starts when we see RELAY cells.
  240. */
  241. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  242. if (BUG(!or_circ->p_chan))
  243. return;
  244. if (!channel_is_client(or_circ->p_chan) ||
  245. (channel_is_client(or_circ->p_chan) && circ->n_chan)) {
  246. if (cell->command == CELL_RELAY_EARLY) {
  247. if (or_circ->p_chan->channel_usage < CHANNEL_USED_FOR_FULL_CIRCS) {
  248. or_circ->p_chan->channel_usage = CHANNEL_USED_FOR_FULL_CIRCS;
  249. }
  250. } else if (cell->command == CELL_RELAY) {
  251. or_circ->p_chan->channel_usage = CHANNEL_USED_FOR_USER_TRAFFIC;
  252. }
  253. }
  254. }
  255. }
  256. /** Receive a relay cell:
  257. * - Crypt it (encrypt if headed toward the origin or if we <b>are</b> the
  258. * origin; decrypt if we're headed toward the exit).
  259. * - Check if recognized (if exitward).
  260. * - If recognized and the digest checks out, then find if there's a stream
  261. * that the cell is intended for, and deliver it to the right
  262. * connection_edge.
  263. * - If not recognized, then we need to relay it: append it to the appropriate
  264. * cell_queue on <b>circ</b>.
  265. *
  266. * Return -<b>reason</b> on failure.
  267. */
  268. int
  269. circuit_receive_relay_cell(cell_t *cell, circuit_t *circ,
  270. cell_direction_t cell_direction)
  271. {
  272. channel_t *chan = NULL;
  273. crypt_path_t *layer_hint=NULL;
  274. char recognized=0;
  275. int reason;
  276. tor_assert(cell);
  277. tor_assert(circ);
  278. tor_assert(cell_direction == CELL_DIRECTION_OUT ||
  279. cell_direction == CELL_DIRECTION_IN);
  280. if (circ->marked_for_close)
  281. return 0;
  282. if (relay_crypt(circ, cell, cell_direction, &layer_hint, &recognized) < 0) {
  283. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  284. "relay crypt failed. Dropping connection.");
  285. return -END_CIRC_REASON_INTERNAL;
  286. }
  287. circuit_update_channel_usage(circ, cell);
  288. if (recognized) {
  289. edge_connection_t *conn = NULL;
  290. if (circ->purpose == CIRCUIT_PURPOSE_PATH_BIAS_TESTING) {
  291. pathbias_check_probe_response(circ, cell);
  292. /* We need to drop this cell no matter what to avoid code that expects
  293. * a certain purpose (such as the hidserv code). */
  294. return 0;
  295. }
  296. conn = relay_lookup_conn(circ, cell, cell_direction, layer_hint);
  297. if (cell_direction == CELL_DIRECTION_OUT) {
  298. ++stats_n_relay_cells_delivered;
  299. log_debug(LD_OR,"Sending away from origin.");
  300. if ((reason=connection_edge_process_relay_cell(cell, circ, conn, NULL))
  301. < 0) {
  302. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  303. "connection_edge_process_relay_cell (away from origin) "
  304. "failed.");
  305. return reason;
  306. }
  307. }
  308. if (cell_direction == CELL_DIRECTION_IN) {
  309. ++stats_n_relay_cells_delivered;
  310. log_debug(LD_OR,"Sending to origin.");
  311. if ((reason = connection_edge_process_relay_cell(cell, circ, conn,
  312. layer_hint)) < 0) {
  313. /* If a client is trying to connect to unknown hidden service port,
  314. * END_CIRC_AT_ORIGIN is sent back so we can then close the circuit.
  315. * Do not log warn as this is an expected behavior for a service. */
  316. if (reason != END_CIRC_AT_ORIGIN) {
  317. log_warn(LD_OR,
  318. "connection_edge_process_relay_cell (at origin) failed.");
  319. }
  320. return reason;
  321. }
  322. }
  323. return 0;
  324. }
  325. /* not recognized. pass it on. */
  326. if (cell_direction == CELL_DIRECTION_OUT) {
  327. cell->circ_id = circ->n_circ_id; /* switch it */
  328. chan = circ->n_chan;
  329. } else if (! CIRCUIT_IS_ORIGIN(circ)) {
  330. cell->circ_id = TO_OR_CIRCUIT(circ)->p_circ_id; /* switch it */
  331. chan = TO_OR_CIRCUIT(circ)->p_chan;
  332. } else {
  333. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  334. "Dropping unrecognized inbound cell on origin circuit.");
  335. /* If we see unrecognized cells on path bias testing circs,
  336. * it's bad mojo. Those circuits need to die.
  337. * XXX: Shouldn't they always die? */
  338. if (circ->purpose == CIRCUIT_PURPOSE_PATH_BIAS_TESTING) {
  339. TO_ORIGIN_CIRCUIT(circ)->path_state = PATH_STATE_USE_FAILED;
  340. return -END_CIRC_REASON_TORPROTOCOL;
  341. } else {
  342. return 0;
  343. }
  344. }
  345. if (!chan) {
  346. // XXXX Can this splice stuff be done more cleanly?
  347. if (! CIRCUIT_IS_ORIGIN(circ) &&
  348. TO_OR_CIRCUIT(circ)->rend_splice &&
  349. cell_direction == CELL_DIRECTION_OUT) {
  350. or_circuit_t *splice_ = TO_OR_CIRCUIT(circ)->rend_splice;
  351. tor_assert(circ->purpose == CIRCUIT_PURPOSE_REND_ESTABLISHED);
  352. tor_assert(splice_->base_.purpose == CIRCUIT_PURPOSE_REND_ESTABLISHED);
  353. cell->circ_id = splice_->p_circ_id;
  354. cell->command = CELL_RELAY; /* can't be relay_early anyway */
  355. if ((reason = circuit_receive_relay_cell(cell, TO_CIRCUIT(splice_),
  356. CELL_DIRECTION_IN)) < 0) {
  357. log_warn(LD_REND, "Error relaying cell across rendezvous; closing "
  358. "circuits");
  359. /* XXXX Do this here, or just return -1? */
  360. circuit_mark_for_close(circ, -reason);
  361. return reason;
  362. }
  363. return 0;
  364. }
  365. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  366. "Didn't recognize cell, but circ stops here! Closing circ.");
  367. return -END_CIRC_REASON_TORPROTOCOL;
  368. }
  369. log_debug(LD_OR,"Passing on unrecognized cell.");
  370. ++stats_n_relay_cells_relayed; /* XXXX no longer quite accurate {cells}
  371. * we might kill the circ before we relay
  372. * the cells. */
  373. append_cell_to_circuit_queue(circ, chan, cell, cell_direction, 0);
  374. return 0;
  375. }
  376. /** Do the appropriate en/decryptions for <b>cell</b> arriving on
  377. * <b>circ</b> in direction <b>cell_direction</b>.
  378. *
  379. * If cell_direction == CELL_DIRECTION_IN:
  380. * - If we're at the origin (we're the OP), for hops 1..N,
  381. * decrypt cell. If recognized, stop.
  382. * - Else (we're not the OP), encrypt one hop. Cell is not recognized.
  383. *
  384. * If cell_direction == CELL_DIRECTION_OUT:
  385. * - decrypt one hop. Check if recognized.
  386. *
  387. * If cell is recognized, set *recognized to 1, and set
  388. * *layer_hint to the hop that recognized it.
  389. *
  390. * Return -1 to indicate that we should mark the circuit for close,
  391. * else return 0.
  392. */
  393. int
  394. relay_crypt(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction,
  395. crypt_path_t **layer_hint, char *recognized)
  396. {
  397. relay_header_t rh;
  398. tor_assert(circ);
  399. tor_assert(cell);
  400. tor_assert(recognized);
  401. tor_assert(cell_direction == CELL_DIRECTION_IN ||
  402. cell_direction == CELL_DIRECTION_OUT);
  403. if (cell_direction == CELL_DIRECTION_IN) {
  404. if (CIRCUIT_IS_ORIGIN(circ)) { /* We're at the beginning of the circuit.
  405. * We'll want to do layered decrypts. */
  406. crypt_path_t *thishop, *cpath = TO_ORIGIN_CIRCUIT(circ)->cpath;
  407. thishop = cpath;
  408. if (thishop->state != CPATH_STATE_OPEN) {
  409. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  410. "Relay cell before first created cell? Closing.");
  411. return -1;
  412. }
  413. do { /* Remember: cpath is in forward order, that is, first hop first. */
  414. tor_assert(thishop);
  415. if (relay_crypt_one_payload(thishop->b_crypto, cell->payload, 0) < 0)
  416. return -1;
  417. relay_header_unpack(&rh, cell->payload);
  418. if (rh.recognized == 0) {
  419. /* it's possibly recognized. have to check digest to be sure. */
  420. if (relay_digest_matches(thishop->b_digest, cell)) {
  421. *recognized = 1;
  422. *layer_hint = thishop;
  423. return 0;
  424. }
  425. }
  426. thishop = thishop->next;
  427. } while (thishop != cpath && thishop->state == CPATH_STATE_OPEN);
  428. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  429. "Incoming cell at client not recognized. Closing.");
  430. return -1;
  431. } else { /* we're in the middle. Just one crypt. */
  432. if (relay_crypt_one_payload(TO_OR_CIRCUIT(circ)->p_crypto,
  433. cell->payload, 1) < 0)
  434. return -1;
  435. // log_fn(LOG_DEBUG,"Skipping recognized check, because we're not "
  436. // "the client.");
  437. }
  438. } else /* cell_direction == CELL_DIRECTION_OUT */ {
  439. /* we're in the middle. Just one crypt. */
  440. if (relay_crypt_one_payload(TO_OR_CIRCUIT(circ)->n_crypto,
  441. cell->payload, 0) < 0)
  442. return -1;
  443. relay_header_unpack(&rh, cell->payload);
  444. if (rh.recognized == 0) {
  445. /* it's possibly recognized. have to check digest to be sure. */
  446. if (relay_digest_matches(TO_OR_CIRCUIT(circ)->n_digest, cell)) {
  447. *recognized = 1;
  448. return 0;
  449. }
  450. }
  451. }
  452. return 0;
  453. }
  454. /** Package a relay cell from an edge:
  455. * - Encrypt it to the right layer
  456. * - Append it to the appropriate cell_queue on <b>circ</b>.
  457. */
  458. static int
  459. circuit_package_relay_cell(cell_t *cell, circuit_t *circ,
  460. cell_direction_t cell_direction,
  461. crypt_path_t *layer_hint, streamid_t on_stream,
  462. const char *filename, int lineno)
  463. {
  464. channel_t *chan; /* where to send the cell */
  465. if (cell_direction == CELL_DIRECTION_OUT) {
  466. crypt_path_t *thishop; /* counter for repeated crypts */
  467. chan = circ->n_chan;
  468. if (!chan) {
  469. log_warn(LD_BUG,"outgoing relay cell sent from %s:%d has n_chan==NULL."
  470. " Dropping.", filename, lineno);
  471. log_backtrace(LOG_WARN,LD_BUG,"");
  472. return 0; /* just drop it */
  473. }
  474. if (!CIRCUIT_IS_ORIGIN(circ)) {
  475. log_warn(LD_BUG,"outgoing relay cell sent from %s:%d on non-origin "
  476. "circ. Dropping.", filename, lineno);
  477. log_backtrace(LOG_WARN,LD_BUG,"");
  478. return 0; /* just drop it */
  479. }
  480. relay_set_digest(layer_hint->f_digest, cell);
  481. thishop = layer_hint;
  482. /* moving from farthest to nearest hop */
  483. do {
  484. tor_assert(thishop);
  485. /* XXXX RD This is a bug, right? */
  486. log_debug(LD_OR,"crypting a layer of the relay cell.");
  487. if (relay_crypt_one_payload(thishop->f_crypto, cell->payload, 1) < 0) {
  488. return -1;
  489. }
  490. thishop = thishop->prev;
  491. } while (thishop != TO_ORIGIN_CIRCUIT(circ)->cpath->prev);
  492. } else { /* incoming cell */
  493. or_circuit_t *or_circ;
  494. if (CIRCUIT_IS_ORIGIN(circ)) {
  495. /* We should never package an _incoming_ cell from the circuit
  496. * origin; that means we messed up somewhere. */
  497. log_warn(LD_BUG,"incoming relay cell at origin circuit. Dropping.");
  498. assert_circuit_ok(circ);
  499. return 0; /* just drop it */
  500. }
  501. or_circ = TO_OR_CIRCUIT(circ);
  502. chan = or_circ->p_chan;
  503. relay_set_digest(or_circ->p_digest, cell);
  504. if (relay_crypt_one_payload(or_circ->p_crypto, cell->payload, 1) < 0)
  505. return -1;
  506. }
  507. ++stats_n_relay_cells_relayed;
  508. append_cell_to_circuit_queue(circ, chan, cell, cell_direction, on_stream);
  509. return 0;
  510. }
  511. /** If cell's stream_id matches the stream_id of any conn that's
  512. * attached to circ, return that conn, else return NULL.
  513. */
  514. static edge_connection_t *
  515. relay_lookup_conn(circuit_t *circ, cell_t *cell,
  516. cell_direction_t cell_direction, crypt_path_t *layer_hint)
  517. {
  518. edge_connection_t *tmpconn;
  519. relay_header_t rh;
  520. relay_header_unpack(&rh, cell->payload);
  521. if (!rh.stream_id)
  522. return NULL;
  523. /* IN or OUT cells could have come from either direction, now
  524. * that we allow rendezvous *to* an OP.
  525. */
  526. if (CIRCUIT_IS_ORIGIN(circ)) {
  527. for (tmpconn = TO_ORIGIN_CIRCUIT(circ)->p_streams; tmpconn;
  528. tmpconn=tmpconn->next_stream) {
  529. if (rh.stream_id == tmpconn->stream_id &&
  530. !tmpconn->base_.marked_for_close &&
  531. tmpconn->cpath_layer == layer_hint) {
  532. log_debug(LD_APP,"found conn for stream %d.", rh.stream_id);
  533. return tmpconn;
  534. }
  535. }
  536. } else {
  537. for (tmpconn = TO_OR_CIRCUIT(circ)->n_streams; tmpconn;
  538. tmpconn=tmpconn->next_stream) {
  539. if (rh.stream_id == tmpconn->stream_id &&
  540. !tmpconn->base_.marked_for_close) {
  541. log_debug(LD_EXIT,"found conn for stream %d.", rh.stream_id);
  542. if (cell_direction == CELL_DIRECTION_OUT ||
  543. connection_edge_is_rendezvous_stream(tmpconn))
  544. return tmpconn;
  545. }
  546. }
  547. for (tmpconn = TO_OR_CIRCUIT(circ)->resolving_streams; tmpconn;
  548. tmpconn=tmpconn->next_stream) {
  549. if (rh.stream_id == tmpconn->stream_id &&
  550. !tmpconn->base_.marked_for_close) {
  551. log_debug(LD_EXIT,"found conn for stream %d.", rh.stream_id);
  552. return tmpconn;
  553. }
  554. }
  555. }
  556. return NULL; /* probably a begin relay cell */
  557. }
  558. /** Pack the relay_header_t host-order structure <b>src</b> into
  559. * network-order in the buffer <b>dest</b>. See tor-spec.txt for details
  560. * about the wire format.
  561. */
  562. void
  563. relay_header_pack(uint8_t *dest, const relay_header_t *src)
  564. {
  565. set_uint8(dest, src->command);
  566. set_uint16(dest+1, htons(src->recognized));
  567. set_uint16(dest+3, htons(src->stream_id));
  568. memcpy(dest+5, src->integrity, 4);
  569. set_uint16(dest+9, htons(src->length));
  570. }
  571. /** Unpack the network-order buffer <b>src</b> into a host-order
  572. * relay_header_t structure <b>dest</b>.
  573. */
  574. void
  575. relay_header_unpack(relay_header_t *dest, const uint8_t *src)
  576. {
  577. dest->command = get_uint8(src);
  578. dest->recognized = ntohs(get_uint16(src+1));
  579. dest->stream_id = ntohs(get_uint16(src+3));
  580. memcpy(dest->integrity, src+5, 4);
  581. dest->length = ntohs(get_uint16(src+9));
  582. }
  583. /** Convert the relay <b>command</b> into a human-readable string. */
  584. static const char *
  585. relay_command_to_string(uint8_t command)
  586. {
  587. static char buf[64];
  588. switch (command) {
  589. case RELAY_COMMAND_BEGIN: return "BEGIN";
  590. case RELAY_COMMAND_DATA: return "DATA";
  591. case RELAY_COMMAND_END: return "END";
  592. case RELAY_COMMAND_CONNECTED: return "CONNECTED";
  593. case RELAY_COMMAND_SENDME: return "SENDME";
  594. case RELAY_COMMAND_EXTEND: return "EXTEND";
  595. case RELAY_COMMAND_EXTENDED: return "EXTENDED";
  596. case RELAY_COMMAND_TRUNCATE: return "TRUNCATE";
  597. case RELAY_COMMAND_TRUNCATED: return "TRUNCATED";
  598. case RELAY_COMMAND_DROP: return "DROP";
  599. case RELAY_COMMAND_RESOLVE: return "RESOLVE";
  600. case RELAY_COMMAND_RESOLVED: return "RESOLVED";
  601. case RELAY_COMMAND_BEGIN_DIR: return "BEGIN_DIR";
  602. case RELAY_COMMAND_ESTABLISH_INTRO: return "ESTABLISH_INTRO";
  603. case RELAY_COMMAND_ESTABLISH_RENDEZVOUS: return "ESTABLISH_RENDEZVOUS";
  604. case RELAY_COMMAND_INTRODUCE1: return "INTRODUCE1";
  605. case RELAY_COMMAND_INTRODUCE2: return "INTRODUCE2";
  606. case RELAY_COMMAND_RENDEZVOUS1: return "RENDEZVOUS1";
  607. case RELAY_COMMAND_RENDEZVOUS2: return "RENDEZVOUS2";
  608. case RELAY_COMMAND_INTRO_ESTABLISHED: return "INTRO_ESTABLISHED";
  609. case RELAY_COMMAND_RENDEZVOUS_ESTABLISHED:
  610. return "RENDEZVOUS_ESTABLISHED";
  611. case RELAY_COMMAND_INTRODUCE_ACK: return "INTRODUCE_ACK";
  612. case RELAY_COMMAND_EXTEND2: return "EXTEND2";
  613. case RELAY_COMMAND_EXTENDED2: return "EXTENDED2";
  614. default:
  615. tor_snprintf(buf, sizeof(buf), "Unrecognized relay command %u",
  616. (unsigned)command);
  617. return buf;
  618. }
  619. }
  620. /** Make a relay cell out of <b>relay_command</b> and <b>payload</b>, and send
  621. * it onto the open circuit <b>circ</b>. <b>stream_id</b> is the ID on
  622. * <b>circ</b> for the stream that's sending the relay cell, or 0 if it's a
  623. * control cell. <b>cpath_layer</b> is NULL for OR->OP cells, or the
  624. * destination hop for OP->OR cells.
  625. *
  626. * If you can't send the cell, mark the circuit for close and return -1. Else
  627. * return 0.
  628. */
  629. MOCK_IMPL(int,
  630. relay_send_command_from_edge_,(streamid_t stream_id, circuit_t *circ,
  631. uint8_t relay_command, const char *payload,
  632. size_t payload_len, crypt_path_t *cpath_layer,
  633. const char *filename, int lineno))
  634. {
  635. cell_t cell;
  636. relay_header_t rh;
  637. cell_direction_t cell_direction;
  638. /* XXXX NM Split this function into a separate versions per circuit type? */
  639. tor_assert(circ);
  640. tor_assert(payload_len <= RELAY_PAYLOAD_SIZE);
  641. memset(&cell, 0, sizeof(cell_t));
  642. cell.command = CELL_RELAY;
  643. if (CIRCUIT_IS_ORIGIN(circ)) {
  644. tor_assert(cpath_layer);
  645. cell.circ_id = circ->n_circ_id;
  646. cell_direction = CELL_DIRECTION_OUT;
  647. } else {
  648. tor_assert(! cpath_layer);
  649. cell.circ_id = TO_OR_CIRCUIT(circ)->p_circ_id;
  650. cell_direction = CELL_DIRECTION_IN;
  651. }
  652. memset(&rh, 0, sizeof(rh));
  653. rh.command = relay_command;
  654. rh.stream_id = stream_id;
  655. rh.length = payload_len;
  656. relay_header_pack(cell.payload, &rh);
  657. if (payload_len)
  658. memcpy(cell.payload+RELAY_HEADER_SIZE, payload, payload_len);
  659. log_debug(LD_OR,"delivering %d cell %s.", relay_command,
  660. cell_direction == CELL_DIRECTION_OUT ? "forward" : "backward");
  661. if (relay_command == RELAY_COMMAND_DROP)
  662. rep_hist_padding_count_write(PADDING_TYPE_DROP);
  663. /* If we are sending an END cell and this circuit is used for a tunneled
  664. * directory request, advance its state. */
  665. if (relay_command == RELAY_COMMAND_END && circ->dirreq_id)
  666. geoip_change_dirreq_state(circ->dirreq_id, DIRREQ_TUNNELED,
  667. DIRREQ_END_CELL_SENT);
  668. if (cell_direction == CELL_DIRECTION_OUT && circ->n_chan) {
  669. /* if we're using relaybandwidthrate, this conn wants priority */
  670. channel_timestamp_client(circ->n_chan);
  671. }
  672. if (cell_direction == CELL_DIRECTION_OUT) {
  673. origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
  674. if (origin_circ->remaining_relay_early_cells > 0 &&
  675. (relay_command == RELAY_COMMAND_EXTEND ||
  676. relay_command == RELAY_COMMAND_EXTEND2 ||
  677. cpath_layer != origin_circ->cpath)) {
  678. /* If we've got any relay_early cells left and (we're sending
  679. * an extend cell or we're not talking to the first hop), use
  680. * one of them. Don't worry about the conn protocol version:
  681. * append_cell_to_circuit_queue will fix it up. */
  682. cell.command = CELL_RELAY_EARLY;
  683. --origin_circ->remaining_relay_early_cells;
  684. log_debug(LD_OR, "Sending a RELAY_EARLY cell; %d remaining.",
  685. (int)origin_circ->remaining_relay_early_cells);
  686. /* Memorize the command that is sent as RELAY_EARLY cell; helps debug
  687. * task 878. */
  688. origin_circ->relay_early_commands[
  689. origin_circ->relay_early_cells_sent++] = relay_command;
  690. } else if (relay_command == RELAY_COMMAND_EXTEND ||
  691. relay_command == RELAY_COMMAND_EXTEND2) {
  692. /* If no RELAY_EARLY cells can be sent over this circuit, log which
  693. * commands have been sent as RELAY_EARLY cells before; helps debug
  694. * task 878. */
  695. smartlist_t *commands_list = smartlist_new();
  696. int i = 0;
  697. char *commands = NULL;
  698. for (; i < origin_circ->relay_early_cells_sent; i++)
  699. smartlist_add(commands_list, (char *)
  700. relay_command_to_string(origin_circ->relay_early_commands[i]));
  701. commands = smartlist_join_strings(commands_list, ",", 0, NULL);
  702. log_warn(LD_BUG, "Uh-oh. We're sending a RELAY_COMMAND_EXTEND cell, "
  703. "but we have run out of RELAY_EARLY cells on that circuit. "
  704. "Commands sent before: %s", commands);
  705. tor_free(commands);
  706. smartlist_free(commands_list);
  707. }
  708. }
  709. if (circuit_package_relay_cell(&cell, circ, cell_direction, cpath_layer,
  710. stream_id, filename, lineno) < 0) {
  711. log_warn(LD_BUG,"circuit_package_relay_cell failed. Closing.");
  712. circuit_mark_for_close(circ, END_CIRC_REASON_INTERNAL);
  713. return -1;
  714. }
  715. return 0;
  716. }
  717. /** Make a relay cell out of <b>relay_command</b> and <b>payload</b>, and
  718. * send it onto the open circuit <b>circ</b>. <b>fromconn</b> is the stream
  719. * that's sending the relay cell, or NULL if it's a control cell.
  720. * <b>cpath_layer</b> is NULL for OR->OP cells, or the destination hop
  721. * for OP->OR cells.
  722. *
  723. * If you can't send the cell, mark the circuit for close and
  724. * return -1. Else return 0.
  725. */
  726. int
  727. connection_edge_send_command(edge_connection_t *fromconn,
  728. uint8_t relay_command, const char *payload,
  729. size_t payload_len)
  730. {
  731. /* XXXX NM Split this function into a separate versions per circuit type? */
  732. circuit_t *circ;
  733. crypt_path_t *cpath_layer = fromconn->cpath_layer;
  734. tor_assert(fromconn);
  735. circ = fromconn->on_circuit;
  736. if (fromconn->base_.marked_for_close) {
  737. log_warn(LD_BUG,
  738. "called on conn that's already marked for close at %s:%d.",
  739. fromconn->base_.marked_for_close_file,
  740. fromconn->base_.marked_for_close);
  741. return 0;
  742. }
  743. if (!circ) {
  744. if (fromconn->base_.type == CONN_TYPE_AP) {
  745. log_info(LD_APP,"no circ. Closing conn.");
  746. connection_mark_unattached_ap(EDGE_TO_ENTRY_CONN(fromconn),
  747. END_STREAM_REASON_INTERNAL);
  748. } else {
  749. log_info(LD_EXIT,"no circ. Closing conn.");
  750. fromconn->edge_has_sent_end = 1; /* no circ to send to */
  751. fromconn->end_reason = END_STREAM_REASON_INTERNAL;
  752. connection_mark_for_close(TO_CONN(fromconn));
  753. }
  754. return -1;
  755. }
  756. #ifdef MEASUREMENTS_21206
  757. /* Keep track of the number of RELAY_DATA cells sent for directory
  758. * connections. */
  759. connection_t *linked_conn = TO_CONN(fromconn)->linked_conn;
  760. if (linked_conn && linked_conn->type == CONN_TYPE_DIR) {
  761. ++(TO_DIR_CONN(linked_conn)->data_cells_sent);
  762. }
  763. #endif
  764. return relay_send_command_from_edge(fromconn->stream_id, circ,
  765. relay_command, payload,
  766. payload_len, cpath_layer);
  767. }
  768. /** How many times will I retry a stream that fails due to DNS
  769. * resolve failure or misc error?
  770. */
  771. #define MAX_RESOLVE_FAILURES 3
  772. /** Return 1 if reason is something that you should retry if you
  773. * get the end cell before you've connected; else return 0. */
  774. static int
  775. edge_reason_is_retriable(int reason)
  776. {
  777. return reason == END_STREAM_REASON_HIBERNATING ||
  778. reason == END_STREAM_REASON_RESOURCELIMIT ||
  779. reason == END_STREAM_REASON_EXITPOLICY ||
  780. reason == END_STREAM_REASON_RESOLVEFAILED ||
  781. reason == END_STREAM_REASON_MISC ||
  782. reason == END_STREAM_REASON_NOROUTE;
  783. }
  784. /** Called when we receive an END cell on a stream that isn't open yet,
  785. * from the client side.
  786. * Arguments are as for connection_edge_process_relay_cell().
  787. */
  788. static int
  789. connection_ap_process_end_not_open(
  790. relay_header_t *rh, cell_t *cell, origin_circuit_t *circ,
  791. entry_connection_t *conn, crypt_path_t *layer_hint)
  792. {
  793. node_t *exitrouter;
  794. int reason = *(cell->payload+RELAY_HEADER_SIZE);
  795. int control_reason;
  796. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(conn);
  797. (void) layer_hint; /* unused */
  798. if (rh->length > 0) {
  799. if (reason == END_STREAM_REASON_TORPROTOCOL ||
  800. reason == END_STREAM_REASON_DESTROY) {
  801. /* Both of these reasons could mean a failed tag
  802. * hit the exit and it complained. Do not probe.
  803. * Fail the circuit. */
  804. circ->path_state = PATH_STATE_USE_FAILED;
  805. return -END_CIRC_REASON_TORPROTOCOL;
  806. } else if (reason == END_STREAM_REASON_INTERNAL) {
  807. /* We can't infer success or failure, since older Tors report
  808. * ENETUNREACH as END_STREAM_REASON_INTERNAL. */
  809. } else {
  810. /* Path bias: If we get a valid reason code from the exit,
  811. * it wasn't due to tagging.
  812. *
  813. * We rely on recognized+digest being strong enough to make
  814. * tags unlikely to allow us to get tagged, yet 'recognized'
  815. * reason codes here. */
  816. pathbias_mark_use_success(circ);
  817. }
  818. }
  819. if (rh->length == 0) {
  820. reason = END_STREAM_REASON_MISC;
  821. }
  822. control_reason = reason | END_STREAM_REASON_FLAG_REMOTE;
  823. if (edge_reason_is_retriable(reason) &&
  824. /* avoid retry if rend */
  825. !connection_edge_is_rendezvous_stream(edge_conn)) {
  826. const char *chosen_exit_digest =
  827. circ->build_state->chosen_exit->identity_digest;
  828. log_info(LD_APP,"Address '%s' refused due to '%s'. Considering retrying.",
  829. safe_str(conn->socks_request->address),
  830. stream_end_reason_to_string(reason));
  831. exitrouter = node_get_mutable_by_id(chosen_exit_digest);
  832. switch (reason) {
  833. case END_STREAM_REASON_EXITPOLICY: {
  834. tor_addr_t addr;
  835. tor_addr_make_unspec(&addr);
  836. if (rh->length >= 5) {
  837. int ttl = -1;
  838. tor_addr_make_unspec(&addr);
  839. if (rh->length == 5 || rh->length == 9) {
  840. tor_addr_from_ipv4n(&addr,
  841. get_uint32(cell->payload+RELAY_HEADER_SIZE+1));
  842. if (rh->length == 9)
  843. ttl = (int)ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+5));
  844. } else if (rh->length == 17 || rh->length == 21) {
  845. tor_addr_from_ipv6_bytes(&addr,
  846. (char*)(cell->payload+RELAY_HEADER_SIZE+1));
  847. if (rh->length == 21)
  848. ttl = (int)ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+17));
  849. }
  850. if (tor_addr_is_null(&addr)) {
  851. log_info(LD_APP,"Address '%s' resolved to 0.0.0.0. Closing,",
  852. safe_str(conn->socks_request->address));
  853. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  854. return 0;
  855. }
  856. if ((tor_addr_family(&addr) == AF_INET &&
  857. !conn->entry_cfg.ipv4_traffic) ||
  858. (tor_addr_family(&addr) == AF_INET6 &&
  859. !conn->entry_cfg.ipv6_traffic)) {
  860. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  861. "Got an EXITPOLICY failure on a connection with a "
  862. "mismatched family. Closing.");
  863. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  864. return 0;
  865. }
  866. if (get_options()->ClientDNSRejectInternalAddresses &&
  867. tor_addr_is_internal(&addr, 0)) {
  868. log_info(LD_APP,"Address '%s' resolved to internal. Closing,",
  869. safe_str(conn->socks_request->address));
  870. connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL);
  871. return 0;
  872. }
  873. client_dns_set_addressmap(conn,
  874. conn->socks_request->address, &addr,
  875. conn->chosen_exit_name, ttl);
  876. {
  877. char new_addr[TOR_ADDR_BUF_LEN];
  878. tor_addr_to_str(new_addr, &addr, sizeof(new_addr), 1);
  879. if (strcmp(conn->socks_request->address, new_addr)) {
  880. strlcpy(conn->socks_request->address, new_addr,
  881. sizeof(conn->socks_request->address));
  882. control_event_stream_status(conn, STREAM_EVENT_REMAP, 0);
  883. }
  884. }
  885. }
  886. /* check if the exit *ought* to have allowed it */
  887. adjust_exit_policy_from_exitpolicy_failure(circ,
  888. conn,
  889. exitrouter,
  890. &addr);
  891. if (conn->chosen_exit_optional ||
  892. conn->chosen_exit_retries) {
  893. /* stop wanting a specific exit */
  894. conn->chosen_exit_optional = 0;
  895. /* A non-zero chosen_exit_retries can happen if we set a
  896. * TrackHostExits for this address under a port that the exit
  897. * relay allows, but then try the same address with a different
  898. * port that it doesn't allow to exit. We shouldn't unregister
  899. * the mapping, since it is probably still wanted on the
  900. * original port. But now we give away to the exit relay that
  901. * we probably have a TrackHostExits on it. So be it. */
  902. conn->chosen_exit_retries = 0;
  903. tor_free(conn->chosen_exit_name); /* clears it */
  904. }
  905. if (connection_ap_detach_retriable(conn, circ, control_reason) >= 0)
  906. return 0;
  907. /* else, conn will get closed below */
  908. break;
  909. }
  910. case END_STREAM_REASON_CONNECTREFUSED:
  911. if (!conn->chosen_exit_optional)
  912. break; /* break means it'll close, below */
  913. /* Else fall through: expire this circuit, clear the
  914. * chosen_exit_name field, and try again. */
  915. /* Falls through. */
  916. case END_STREAM_REASON_RESOLVEFAILED:
  917. case END_STREAM_REASON_TIMEOUT:
  918. case END_STREAM_REASON_MISC:
  919. case END_STREAM_REASON_NOROUTE:
  920. if (client_dns_incr_failures(conn->socks_request->address)
  921. < MAX_RESOLVE_FAILURES) {
  922. /* We haven't retried too many times; reattach the connection. */
  923. circuit_log_path(LOG_INFO,LD_APP,circ);
  924. /* Mark this circuit "unusable for new streams". */
  925. mark_circuit_unusable_for_new_conns(circ);
  926. if (conn->chosen_exit_optional) {
  927. /* stop wanting a specific exit */
  928. conn->chosen_exit_optional = 0;
  929. tor_free(conn->chosen_exit_name); /* clears it */
  930. }
  931. if (connection_ap_detach_retriable(conn, circ, control_reason) >= 0)
  932. return 0;
  933. /* else, conn will get closed below */
  934. } else {
  935. log_notice(LD_APP,
  936. "Have tried resolving or connecting to address '%s' "
  937. "at %d different places. Giving up.",
  938. safe_str(conn->socks_request->address),
  939. MAX_RESOLVE_FAILURES);
  940. /* clear the failures, so it will have a full try next time */
  941. client_dns_clear_failures(conn->socks_request->address);
  942. }
  943. break;
  944. case END_STREAM_REASON_HIBERNATING:
  945. case END_STREAM_REASON_RESOURCELIMIT:
  946. if (exitrouter) {
  947. policies_set_node_exitpolicy_to_reject_all(exitrouter);
  948. }
  949. if (conn->chosen_exit_optional) {
  950. /* stop wanting a specific exit */
  951. conn->chosen_exit_optional = 0;
  952. tor_free(conn->chosen_exit_name); /* clears it */
  953. }
  954. if (connection_ap_detach_retriable(conn, circ, control_reason) >= 0)
  955. return 0;
  956. /* else, will close below */
  957. break;
  958. } /* end switch */
  959. log_info(LD_APP,"Giving up on retrying; conn can't be handled.");
  960. }
  961. log_info(LD_APP,
  962. "Edge got end (%s) before we're connected. Marking for close.",
  963. stream_end_reason_to_string(rh->length > 0 ? reason : -1));
  964. circuit_log_path(LOG_INFO,LD_APP,circ);
  965. /* need to test because of detach_retriable */
  966. if (!ENTRY_TO_CONN(conn)->marked_for_close)
  967. connection_mark_unattached_ap(conn, control_reason);
  968. return 0;
  969. }
  970. /** Called when we have gotten an END_REASON_EXITPOLICY failure on <b>circ</b>
  971. * for <b>conn</b>, while attempting to connect via <b>node</b>. If the node
  972. * told us which address it rejected, then <b>addr</b> is that address;
  973. * otherwise it is AF_UNSPEC.
  974. *
  975. * If we are sure the node should have allowed this address, mark the node as
  976. * having a reject *:* exit policy. Otherwise, mark the circuit as unusable
  977. * for this particular address.
  978. **/
  979. static void
  980. adjust_exit_policy_from_exitpolicy_failure(origin_circuit_t *circ,
  981. entry_connection_t *conn,
  982. node_t *node,
  983. const tor_addr_t *addr)
  984. {
  985. int make_reject_all = 0;
  986. const sa_family_t family = tor_addr_family(addr);
  987. if (node) {
  988. tor_addr_t tmp;
  989. int asked_for_family = tor_addr_parse(&tmp, conn->socks_request->address);
  990. if (family == AF_UNSPEC) {
  991. make_reject_all = 1;
  992. } else if (node_exit_policy_is_exact(node, family) &&
  993. asked_for_family != -1 && !conn->chosen_exit_name) {
  994. make_reject_all = 1;
  995. }
  996. if (make_reject_all) {
  997. log_info(LD_APP,
  998. "Exitrouter %s seems to be more restrictive than its exit "
  999. "policy. Not using this router as exit for now.",
  1000. node_describe(node));
  1001. policies_set_node_exitpolicy_to_reject_all(node);
  1002. }
  1003. }
  1004. if (family != AF_UNSPEC)
  1005. addr_policy_append_reject_addr(&circ->prepend_policy, addr);
  1006. }
  1007. /** Helper: change the socks_request-&gt;address field on conn to the
  1008. * dotted-quad representation of <b>new_addr</b>,
  1009. * and send an appropriate REMAP event. */
  1010. static void
  1011. remap_event_helper(entry_connection_t *conn, const tor_addr_t *new_addr)
  1012. {
  1013. tor_addr_to_str(conn->socks_request->address, new_addr,
  1014. sizeof(conn->socks_request->address),
  1015. 1);
  1016. control_event_stream_status(conn, STREAM_EVENT_REMAP,
  1017. REMAP_STREAM_SOURCE_EXIT);
  1018. }
  1019. /** Extract the contents of a connected cell in <b>cell</b>, whose relay
  1020. * header has already been parsed into <b>rh</b>. On success, set
  1021. * <b>addr_out</b> to the address we're connected to, and <b>ttl_out</b> to
  1022. * the ttl of that address, in seconds, and return 0. On failure, return
  1023. * -1. */
  1024. STATIC int
  1025. connected_cell_parse(const relay_header_t *rh, const cell_t *cell,
  1026. tor_addr_t *addr_out, int *ttl_out)
  1027. {
  1028. uint32_t bytes;
  1029. const uint8_t *payload = cell->payload + RELAY_HEADER_SIZE;
  1030. tor_addr_make_unspec(addr_out);
  1031. *ttl_out = -1;
  1032. if (rh->length == 0)
  1033. return 0;
  1034. if (rh->length < 4)
  1035. return -1;
  1036. bytes = ntohl(get_uint32(payload));
  1037. /* If bytes is 0, this is maybe a v6 address. Otherwise it's a v4 address */
  1038. if (bytes != 0) {
  1039. /* v4 address */
  1040. tor_addr_from_ipv4h(addr_out, bytes);
  1041. if (rh->length >= 8) {
  1042. bytes = ntohl(get_uint32(payload + 4));
  1043. if (bytes <= INT32_MAX)
  1044. *ttl_out = bytes;
  1045. }
  1046. } else {
  1047. if (rh->length < 25) /* 4 bytes of 0s, 1 addr, 16 ipv4, 4 ttl. */
  1048. return -1;
  1049. if (get_uint8(payload + 4) != 6)
  1050. return -1;
  1051. tor_addr_from_ipv6_bytes(addr_out, (char*)(payload + 5));
  1052. bytes = ntohl(get_uint32(payload + 21));
  1053. if (bytes <= INT32_MAX)
  1054. *ttl_out = (int) bytes;
  1055. }
  1056. return 0;
  1057. }
  1058. /** Drop all storage held by <b>addr</b>. */
  1059. STATIC void
  1060. address_ttl_free(address_ttl_t *addr)
  1061. {
  1062. if (!addr)
  1063. return;
  1064. tor_free(addr->hostname);
  1065. tor_free(addr);
  1066. }
  1067. /** Parse a resolved cell in <b>cell</b>, with parsed header in <b>rh</b>.
  1068. * Return -1 on parse error. On success, add one or more newly allocated
  1069. * address_ttl_t to <b>addresses_out</b>; set *<b>errcode_out</b> to
  1070. * one of 0, RESOLVED_TYPE_ERROR, or RESOLVED_TYPE_ERROR_TRANSIENT, and
  1071. * return 0. */
  1072. STATIC int
  1073. resolved_cell_parse(const cell_t *cell, const relay_header_t *rh,
  1074. smartlist_t *addresses_out, int *errcode_out)
  1075. {
  1076. const uint8_t *cp;
  1077. uint8_t answer_type;
  1078. size_t answer_len;
  1079. address_ttl_t *addr;
  1080. size_t remaining;
  1081. int errcode = 0;
  1082. smartlist_t *addrs;
  1083. tor_assert(cell);
  1084. tor_assert(rh);
  1085. tor_assert(addresses_out);
  1086. tor_assert(errcode_out);
  1087. *errcode_out = 0;
  1088. if (rh->length > RELAY_PAYLOAD_SIZE)
  1089. return -1;
  1090. addrs = smartlist_new();
  1091. cp = cell->payload + RELAY_HEADER_SIZE;
  1092. remaining = rh->length;
  1093. while (remaining) {
  1094. const uint8_t *cp_orig = cp;
  1095. if (remaining < 2)
  1096. goto err;
  1097. answer_type = *cp++;
  1098. answer_len = *cp++;
  1099. if (remaining < 2 + answer_len + 4) {
  1100. goto err;
  1101. }
  1102. if (answer_type == RESOLVED_TYPE_IPV4) {
  1103. if (answer_len != 4) {
  1104. goto err;
  1105. }
  1106. addr = tor_malloc_zero(sizeof(*addr));
  1107. tor_addr_from_ipv4n(&addr->addr, get_uint32(cp));
  1108. cp += 4;
  1109. addr->ttl = ntohl(get_uint32(cp));
  1110. cp += 4;
  1111. smartlist_add(addrs, addr);
  1112. } else if (answer_type == RESOLVED_TYPE_IPV6) {
  1113. if (answer_len != 16)
  1114. goto err;
  1115. addr = tor_malloc_zero(sizeof(*addr));
  1116. tor_addr_from_ipv6_bytes(&addr->addr, (const char*) cp);
  1117. cp += 16;
  1118. addr->ttl = ntohl(get_uint32(cp));
  1119. cp += 4;
  1120. smartlist_add(addrs, addr);
  1121. } else if (answer_type == RESOLVED_TYPE_HOSTNAME) {
  1122. if (answer_len == 0) {
  1123. goto err;
  1124. }
  1125. addr = tor_malloc_zero(sizeof(*addr));
  1126. addr->hostname = tor_memdup_nulterm(cp, answer_len);
  1127. cp += answer_len;
  1128. addr->ttl = ntohl(get_uint32(cp));
  1129. cp += 4;
  1130. smartlist_add(addrs, addr);
  1131. } else if (answer_type == RESOLVED_TYPE_ERROR_TRANSIENT ||
  1132. answer_type == RESOLVED_TYPE_ERROR) {
  1133. errcode = answer_type;
  1134. /* Ignore the error contents */
  1135. cp += answer_len + 4;
  1136. } else {
  1137. cp += answer_len + 4;
  1138. }
  1139. tor_assert(((ssize_t)remaining) >= (cp - cp_orig));
  1140. remaining -= (cp - cp_orig);
  1141. }
  1142. if (errcode && smartlist_len(addrs) == 0) {
  1143. /* Report an error only if there were no results. */
  1144. *errcode_out = errcode;
  1145. }
  1146. smartlist_add_all(addresses_out, addrs);
  1147. smartlist_free(addrs);
  1148. return 0;
  1149. err:
  1150. /* On parse error, don't report any results */
  1151. SMARTLIST_FOREACH(addrs, address_ttl_t *, a, address_ttl_free(a));
  1152. smartlist_free(addrs);
  1153. return -1;
  1154. }
  1155. /** Helper for connection_edge_process_resolved_cell: given an error code,
  1156. * an entry_connection, and a list of address_ttl_t *, report the best answer
  1157. * to the entry_connection. */
  1158. static void
  1159. connection_ap_handshake_socks_got_resolved_cell(entry_connection_t *conn,
  1160. int error_code,
  1161. smartlist_t *results)
  1162. {
  1163. address_ttl_t *addr_ipv4 = NULL;
  1164. address_ttl_t *addr_ipv6 = NULL;
  1165. address_ttl_t *addr_hostname = NULL;
  1166. address_ttl_t *addr_best = NULL;
  1167. /* If it's an error code, that's easy. */
  1168. if (error_code) {
  1169. tor_assert(error_code == RESOLVED_TYPE_ERROR ||
  1170. error_code == RESOLVED_TYPE_ERROR_TRANSIENT);
  1171. connection_ap_handshake_socks_resolved(conn,
  1172. error_code,0,NULL,-1,-1);
  1173. return;
  1174. }
  1175. /* Get the first answer of each type. */
  1176. SMARTLIST_FOREACH_BEGIN(results, address_ttl_t *, addr) {
  1177. if (addr->hostname) {
  1178. if (!addr_hostname) {
  1179. addr_hostname = addr;
  1180. }
  1181. } else if (tor_addr_family(&addr->addr) == AF_INET) {
  1182. if (!addr_ipv4 && conn->entry_cfg.ipv4_traffic) {
  1183. addr_ipv4 = addr;
  1184. }
  1185. } else if (tor_addr_family(&addr->addr) == AF_INET6) {
  1186. if (!addr_ipv6 && conn->entry_cfg.ipv6_traffic) {
  1187. addr_ipv6 = addr;
  1188. }
  1189. }
  1190. } SMARTLIST_FOREACH_END(addr);
  1191. /* Now figure out which type we wanted to deliver. */
  1192. if (conn->socks_request->command == SOCKS_COMMAND_RESOLVE_PTR) {
  1193. if (addr_hostname) {
  1194. connection_ap_handshake_socks_resolved(conn,
  1195. RESOLVED_TYPE_HOSTNAME,
  1196. strlen(addr_hostname->hostname),
  1197. (uint8_t*)addr_hostname->hostname,
  1198. addr_hostname->ttl,-1);
  1199. } else {
  1200. connection_ap_handshake_socks_resolved(conn,
  1201. RESOLVED_TYPE_ERROR,0,NULL,-1,-1);
  1202. }
  1203. return;
  1204. }
  1205. if (conn->entry_cfg.prefer_ipv6) {
  1206. addr_best = addr_ipv6 ? addr_ipv6 : addr_ipv4;
  1207. } else {
  1208. addr_best = addr_ipv4 ? addr_ipv4 : addr_ipv6;
  1209. }
  1210. /* Now convert it to the ugly old interface */
  1211. if (! addr_best) {
  1212. connection_ap_handshake_socks_resolved(conn,
  1213. RESOLVED_TYPE_ERROR,0,NULL,-1,-1);
  1214. return;
  1215. }
  1216. connection_ap_handshake_socks_resolved_addr(conn,
  1217. &addr_best->addr,
  1218. addr_best->ttl,
  1219. -1);
  1220. remap_event_helper(conn, &addr_best->addr);
  1221. }
  1222. /** Handle a RELAY_COMMAND_RESOLVED cell that we received on a non-open AP
  1223. * stream. */
  1224. STATIC int
  1225. connection_edge_process_resolved_cell(edge_connection_t *conn,
  1226. const cell_t *cell,
  1227. const relay_header_t *rh)
  1228. {
  1229. entry_connection_t *entry_conn = EDGE_TO_ENTRY_CONN(conn);
  1230. smartlist_t *resolved_addresses = NULL;
  1231. int errcode = 0;
  1232. if (conn->base_.state != AP_CONN_STATE_RESOLVE_WAIT) {
  1233. log_fn(LOG_PROTOCOL_WARN, LD_APP, "Got a 'resolved' cell while "
  1234. "not in state resolve_wait. Dropping.");
  1235. return 0;
  1236. }
  1237. tor_assert(SOCKS_COMMAND_IS_RESOLVE(entry_conn->socks_request->command));
  1238. resolved_addresses = smartlist_new();
  1239. if (resolved_cell_parse(cell, rh, resolved_addresses, &errcode)) {
  1240. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1241. "Dropping malformed 'resolved' cell");
  1242. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TORPROTOCOL);
  1243. goto done;
  1244. }
  1245. if (get_options()->ClientDNSRejectInternalAddresses) {
  1246. int orig_len = smartlist_len(resolved_addresses);
  1247. SMARTLIST_FOREACH_BEGIN(resolved_addresses, address_ttl_t *, addr) {
  1248. if (addr->hostname == NULL && tor_addr_is_internal(&addr->addr, 0)) {
  1249. log_info(LD_APP, "Got a resolved cell with answer %s; dropping that "
  1250. "answer.",
  1251. safe_str_client(fmt_addr(&addr->addr)));
  1252. address_ttl_free(addr);
  1253. SMARTLIST_DEL_CURRENT(resolved_addresses, addr);
  1254. }
  1255. } SMARTLIST_FOREACH_END(addr);
  1256. if (orig_len && smartlist_len(resolved_addresses) == 0) {
  1257. log_info(LD_APP, "Got a resolved cell with only private addresses; "
  1258. "dropping it.");
  1259. connection_ap_handshake_socks_resolved(entry_conn,
  1260. RESOLVED_TYPE_ERROR_TRANSIENT,
  1261. 0, NULL, 0, TIME_MAX);
  1262. connection_mark_unattached_ap(entry_conn,
  1263. END_STREAM_REASON_TORPROTOCOL);
  1264. goto done;
  1265. }
  1266. }
  1267. connection_ap_handshake_socks_got_resolved_cell(entry_conn,
  1268. errcode,
  1269. resolved_addresses);
  1270. connection_mark_unattached_ap(entry_conn,
  1271. END_STREAM_REASON_DONE |
  1272. END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED);
  1273. done:
  1274. SMARTLIST_FOREACH(resolved_addresses, address_ttl_t *, addr,
  1275. address_ttl_free(addr));
  1276. smartlist_free(resolved_addresses);
  1277. return 0;
  1278. }
  1279. /** An incoming relay cell has arrived from circuit <b>circ</b> to
  1280. * stream <b>conn</b>.
  1281. *
  1282. * The arguments here are the same as in
  1283. * connection_edge_process_relay_cell() below; this function is called
  1284. * from there when <b>conn</b> is defined and not in an open state.
  1285. */
  1286. static int
  1287. connection_edge_process_relay_cell_not_open(
  1288. relay_header_t *rh, cell_t *cell, circuit_t *circ,
  1289. edge_connection_t *conn, crypt_path_t *layer_hint)
  1290. {
  1291. if (rh->command == RELAY_COMMAND_END) {
  1292. if (CIRCUIT_IS_ORIGIN(circ) && conn->base_.type == CONN_TYPE_AP) {
  1293. return connection_ap_process_end_not_open(rh, cell,
  1294. TO_ORIGIN_CIRCUIT(circ),
  1295. EDGE_TO_ENTRY_CONN(conn),
  1296. layer_hint);
  1297. } else {
  1298. /* we just got an 'end', don't need to send one */
  1299. conn->edge_has_sent_end = 1;
  1300. conn->end_reason = *(cell->payload+RELAY_HEADER_SIZE) |
  1301. END_STREAM_REASON_FLAG_REMOTE;
  1302. connection_mark_for_close(TO_CONN(conn));
  1303. return 0;
  1304. }
  1305. }
  1306. if (conn->base_.type == CONN_TYPE_AP &&
  1307. rh->command == RELAY_COMMAND_CONNECTED) {
  1308. tor_addr_t addr;
  1309. int ttl;
  1310. entry_connection_t *entry_conn = EDGE_TO_ENTRY_CONN(conn);
  1311. tor_assert(CIRCUIT_IS_ORIGIN(circ));
  1312. if (conn->base_.state != AP_CONN_STATE_CONNECT_WAIT) {
  1313. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1314. "Got 'connected' while not in state connect_wait. Dropping.");
  1315. return 0;
  1316. }
  1317. CONNECTION_AP_EXPECT_NONPENDING(entry_conn);
  1318. conn->base_.state = AP_CONN_STATE_OPEN;
  1319. log_info(LD_APP,"'connected' received for circid %u streamid %d "
  1320. "after %d seconds.",
  1321. (unsigned)circ->n_circ_id,
  1322. rh->stream_id,
  1323. (int)(time(NULL) - conn->base_.timestamp_lastread));
  1324. if (connected_cell_parse(rh, cell, &addr, &ttl) < 0) {
  1325. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1326. "Got a badly formatted connected cell. Closing.");
  1327. connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  1328. connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TORPROTOCOL);
  1329. }
  1330. if (tor_addr_family(&addr) != AF_UNSPEC) {
  1331. const sa_family_t family = tor_addr_family(&addr);
  1332. if (tor_addr_is_null(&addr) ||
  1333. (get_options()->ClientDNSRejectInternalAddresses &&
  1334. tor_addr_is_internal(&addr, 0))) {
  1335. log_info(LD_APP, "...but it claims the IP address was %s. Closing.",
  1336. fmt_addr(&addr));
  1337. connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  1338. connection_mark_unattached_ap(entry_conn,
  1339. END_STREAM_REASON_TORPROTOCOL);
  1340. return 0;
  1341. }
  1342. if ((family == AF_INET && ! entry_conn->entry_cfg.ipv4_traffic) ||
  1343. (family == AF_INET6 && ! entry_conn->entry_cfg.ipv6_traffic)) {
  1344. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1345. "Got a connected cell to %s with unsupported address family."
  1346. " Closing.", fmt_addr(&addr));
  1347. connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  1348. connection_mark_unattached_ap(entry_conn,
  1349. END_STREAM_REASON_TORPROTOCOL);
  1350. return 0;
  1351. }
  1352. client_dns_set_addressmap(entry_conn,
  1353. entry_conn->socks_request->address, &addr,
  1354. entry_conn->chosen_exit_name, ttl);
  1355. remap_event_helper(entry_conn, &addr);
  1356. }
  1357. circuit_log_path(LOG_INFO,LD_APP,TO_ORIGIN_CIRCUIT(circ));
  1358. /* don't send a socks reply to transparent conns */
  1359. tor_assert(entry_conn->socks_request != NULL);
  1360. if (!entry_conn->socks_request->has_finished)
  1361. connection_ap_handshake_socks_reply(entry_conn, NULL, 0, 0);
  1362. /* Was it a linked dir conn? If so, a dir request just started to
  1363. * fetch something; this could be a bootstrap status milestone. */
  1364. log_debug(LD_APP, "considering");
  1365. if (TO_CONN(conn)->linked_conn &&
  1366. TO_CONN(conn)->linked_conn->type == CONN_TYPE_DIR) {
  1367. connection_t *dirconn = TO_CONN(conn)->linked_conn;
  1368. log_debug(LD_APP, "it is! %d", dirconn->purpose);
  1369. switch (dirconn->purpose) {
  1370. case DIR_PURPOSE_FETCH_CERTIFICATE:
  1371. if (consensus_is_waiting_for_certs())
  1372. control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_KEYS, 0);
  1373. break;
  1374. case DIR_PURPOSE_FETCH_CONSENSUS:
  1375. control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_STATUS, 0);
  1376. break;
  1377. case DIR_PURPOSE_FETCH_SERVERDESC:
  1378. case DIR_PURPOSE_FETCH_MICRODESC:
  1379. if (TO_DIR_CONN(dirconn)->router_purpose == ROUTER_PURPOSE_GENERAL)
  1380. control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
  1381. count_loading_descriptors_progress());
  1382. break;
  1383. }
  1384. }
  1385. /* This is definitely a success, so forget about any pending data we
  1386. * had sent. */
  1387. if (entry_conn->pending_optimistic_data) {
  1388. buf_free(entry_conn->pending_optimistic_data);
  1389. entry_conn->pending_optimistic_data = NULL;
  1390. }
  1391. /* handle anything that might have queued */
  1392. if (connection_edge_package_raw_inbuf(conn, 1, NULL) < 0) {
  1393. /* (We already sent an end cell if possible) */
  1394. connection_mark_for_close(TO_CONN(conn));
  1395. return 0;
  1396. }
  1397. return 0;
  1398. }
  1399. if (conn->base_.type == CONN_TYPE_AP &&
  1400. rh->command == RELAY_COMMAND_RESOLVED) {
  1401. return connection_edge_process_resolved_cell(conn, cell, rh);
  1402. }
  1403. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1404. "Got an unexpected relay command %d, in state %d (%s). Dropping.",
  1405. rh->command, conn->base_.state,
  1406. conn_state_to_string(conn->base_.type, conn->base_.state));
  1407. return 0; /* for forward compatibility, don't kill the circuit */
  1408. // connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  1409. // connection_mark_for_close(conn);
  1410. // return -1;
  1411. }
  1412. /** An incoming relay cell has arrived on circuit <b>circ</b>. If
  1413. * <b>conn</b> is NULL this is a control cell, else <b>cell</b> is
  1414. * destined for <b>conn</b>.
  1415. *
  1416. * If <b>layer_hint</b> is defined, then we're the origin of the
  1417. * circuit, and it specifies the hop that packaged <b>cell</b>.
  1418. *
  1419. * Return -reason if you want to warn and tear down the circuit, else 0.
  1420. */
  1421. static int
  1422. connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
  1423. edge_connection_t *conn,
  1424. crypt_path_t *layer_hint)
  1425. {
  1426. static int num_seen=0;
  1427. relay_header_t rh;
  1428. unsigned domain = layer_hint?LD_APP:LD_EXIT;
  1429. int reason;
  1430. int optimistic_data = 0; /* Set to 1 if we receive data on a stream
  1431. * that's in the EXIT_CONN_STATE_RESOLVING
  1432. * or EXIT_CONN_STATE_CONNECTING states. */
  1433. tor_assert(cell);
  1434. tor_assert(circ);
  1435. relay_header_unpack(&rh, cell->payload);
  1436. // log_fn(LOG_DEBUG,"command %d stream %d", rh.command, rh.stream_id);
  1437. num_seen++;
  1438. log_debug(domain, "Now seen %d relay cells here (command %d, stream %d).",
  1439. num_seen, rh.command, rh.stream_id);
  1440. if (rh.length > RELAY_PAYLOAD_SIZE) {
  1441. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1442. "Relay cell length field too long. Closing circuit.");
  1443. return - END_CIRC_REASON_TORPROTOCOL;
  1444. }
  1445. if (rh.stream_id == 0) {
  1446. switch (rh.command) {
  1447. case RELAY_COMMAND_BEGIN:
  1448. case RELAY_COMMAND_CONNECTED:
  1449. case RELAY_COMMAND_END:
  1450. case RELAY_COMMAND_RESOLVE:
  1451. case RELAY_COMMAND_RESOLVED:
  1452. case RELAY_COMMAND_BEGIN_DIR:
  1453. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Relay command %d with zero "
  1454. "stream_id. Dropping.", (int)rh.command);
  1455. return 0;
  1456. default:
  1457. ;
  1458. }
  1459. }
  1460. /* either conn is NULL, in which case we've got a control cell, or else
  1461. * conn points to the recognized stream. */
  1462. if (conn && !connection_state_is_open(TO_CONN(conn))) {
  1463. if (conn->base_.type == CONN_TYPE_EXIT &&
  1464. (conn->base_.state == EXIT_CONN_STATE_CONNECTING ||
  1465. conn->base_.state == EXIT_CONN_STATE_RESOLVING) &&
  1466. rh.command == RELAY_COMMAND_DATA) {
  1467. /* Allow DATA cells to be delivered to an exit node in state
  1468. * EXIT_CONN_STATE_CONNECTING or EXIT_CONN_STATE_RESOLVING.
  1469. * This speeds up HTTP, for example. */
  1470. optimistic_data = 1;
  1471. } else if (rh.stream_id == 0 && rh.command == RELAY_COMMAND_DATA) {
  1472. log_warn(LD_BUG, "Somehow I had a connection that matched a "
  1473. "data cell with stream ID 0.");
  1474. } else {
  1475. return connection_edge_process_relay_cell_not_open(
  1476. &rh, cell, circ, conn, layer_hint);
  1477. }
  1478. }
  1479. switch (rh.command) {
  1480. case RELAY_COMMAND_DROP:
  1481. rep_hist_padding_count_read(PADDING_TYPE_DROP);
  1482. // log_info(domain,"Got a relay-level padding cell. Dropping.");
  1483. return 0;
  1484. case RELAY_COMMAND_BEGIN:
  1485. case RELAY_COMMAND_BEGIN_DIR:
  1486. if (layer_hint &&
  1487. circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED) {
  1488. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1489. "Relay begin request unsupported at AP. Dropping.");
  1490. return 0;
  1491. }
  1492. if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED &&
  1493. layer_hint != TO_ORIGIN_CIRCUIT(circ)->cpath->prev) {
  1494. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1495. "Relay begin request to Hidden Service "
  1496. "from intermediary node. Dropping.");
  1497. return 0;
  1498. }
  1499. if (conn) {
  1500. log_fn(LOG_PROTOCOL_WARN, domain,
  1501. "Begin cell for known stream. Dropping.");
  1502. return 0;
  1503. }
  1504. if (rh.command == RELAY_COMMAND_BEGIN_DIR &&
  1505. circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED) {
  1506. /* Assign this circuit and its app-ward OR connection a unique ID,
  1507. * so that we can measure download times. The local edge and dir
  1508. * connection will be assigned the same ID when they are created
  1509. * and linked. */
  1510. static uint64_t next_id = 0;
  1511. circ->dirreq_id = ++next_id;
  1512. TO_OR_CIRCUIT(circ)->p_chan->dirreq_id = circ->dirreq_id;
  1513. }
  1514. return connection_exit_begin_conn(cell, circ);
  1515. case RELAY_COMMAND_DATA:
  1516. ++stats_n_data_cells_received;
  1517. if (( layer_hint && --layer_hint->deliver_window < 0) ||
  1518. (!layer_hint && --circ->deliver_window < 0)) {
  1519. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1520. "(relay data) circ deliver_window below 0. Killing.");
  1521. if (conn) {
  1522. /* XXXX Do we actually need to do this? Will killing the circuit
  1523. * not send an END and mark the stream for close as appropriate? */
  1524. connection_edge_end(conn, END_STREAM_REASON_TORPROTOCOL);
  1525. connection_mark_for_close(TO_CONN(conn));
  1526. }
  1527. return -END_CIRC_REASON_TORPROTOCOL;
  1528. }
  1529. log_debug(domain,"circ deliver_window now %d.", layer_hint ?
  1530. layer_hint->deliver_window : circ->deliver_window);
  1531. circuit_consider_sending_sendme(circ, layer_hint);
  1532. if (rh.stream_id == 0) {
  1533. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Relay data cell with zero "
  1534. "stream_id. Dropping.");
  1535. return 0;
  1536. } else if (!conn) {
  1537. log_info(domain,"data cell dropped, unknown stream (streamid %d).",
  1538. rh.stream_id);
  1539. return 0;
  1540. }
  1541. if (--conn->deliver_window < 0) { /* is it below 0 after decrement? */
  1542. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1543. "(relay data) conn deliver_window below 0. Killing.");
  1544. return -END_CIRC_REASON_TORPROTOCOL;
  1545. }
  1546. stats_n_data_bytes_received += rh.length;
  1547. connection_write_to_buf((char*)(cell->payload + RELAY_HEADER_SIZE),
  1548. rh.length, TO_CONN(conn));
  1549. #ifdef MEASUREMENTS_21206
  1550. /* Count number of RELAY_DATA cells received on a linked directory
  1551. * connection. */
  1552. connection_t *linked_conn = TO_CONN(conn)->linked_conn;
  1553. if (linked_conn && linked_conn->type == CONN_TYPE_DIR) {
  1554. ++(TO_DIR_CONN(linked_conn)->data_cells_received);
  1555. }
  1556. #endif
  1557. if (!optimistic_data) {
  1558. /* Only send a SENDME if we're not getting optimistic data; otherwise
  1559. * a SENDME could arrive before the CONNECTED.
  1560. */
  1561. connection_edge_consider_sending_sendme(conn);
  1562. }
  1563. return 0;
  1564. case RELAY_COMMAND_END:
  1565. reason = rh.length > 0 ?
  1566. get_uint8(cell->payload+RELAY_HEADER_SIZE) : END_STREAM_REASON_MISC;
  1567. if (!conn) {
  1568. log_info(domain,"end cell (%s) dropped, unknown stream.",
  1569. stream_end_reason_to_string(reason));
  1570. return 0;
  1571. }
  1572. /* XXX add to this log_fn the exit node's nickname? */
  1573. log_info(domain,TOR_SOCKET_T_FORMAT": end cell (%s) for stream %d. "
  1574. "Removing stream.",
  1575. conn->base_.s,
  1576. stream_end_reason_to_string(reason),
  1577. conn->stream_id);
  1578. if (conn->base_.type == CONN_TYPE_AP) {
  1579. entry_connection_t *entry_conn = EDGE_TO_ENTRY_CONN(conn);
  1580. if (entry_conn->socks_request &&
  1581. !entry_conn->socks_request->has_finished)
  1582. log_warn(LD_BUG,
  1583. "open stream hasn't sent socks answer yet? Closing.");
  1584. }
  1585. /* We just *got* an end; no reason to send one. */
  1586. conn->edge_has_sent_end = 1;
  1587. if (!conn->end_reason)
  1588. conn->end_reason = reason | END_STREAM_REASON_FLAG_REMOTE;
  1589. if (!conn->base_.marked_for_close) {
  1590. /* only mark it if not already marked. it's possible to
  1591. * get the 'end' right around when the client hangs up on us. */
  1592. connection_mark_and_flush(TO_CONN(conn));
  1593. }
  1594. return 0;
  1595. case RELAY_COMMAND_EXTEND:
  1596. case RELAY_COMMAND_EXTEND2: {
  1597. static uint64_t total_n_extend=0, total_nonearly=0;
  1598. total_n_extend++;
  1599. if (rh.stream_id) {
  1600. log_fn(LOG_PROTOCOL_WARN, domain,
  1601. "'extend' cell received for non-zero stream. Dropping.");
  1602. return 0;
  1603. }
  1604. if (cell->command != CELL_RELAY_EARLY &&
  1605. !networkstatus_get_param(NULL,"AllowNonearlyExtend",0,0,1)) {
  1606. #define EARLY_WARNING_INTERVAL 3600
  1607. static ratelim_t early_warning_limit =
  1608. RATELIM_INIT(EARLY_WARNING_INTERVAL);
  1609. char *m;
  1610. if (cell->command == CELL_RELAY) {
  1611. ++total_nonearly;
  1612. if ((m = rate_limit_log(&early_warning_limit, approx_time()))) {
  1613. double percentage = ((double)total_nonearly)/total_n_extend;
  1614. percentage *= 100;
  1615. log_fn(LOG_PROTOCOL_WARN, domain, "EXTEND cell received, "
  1616. "but not via RELAY_EARLY. Dropping.%s", m);
  1617. log_fn(LOG_PROTOCOL_WARN, domain, " (We have dropped %.02f%% of "
  1618. "all EXTEND cells for this reason)", percentage);
  1619. tor_free(m);
  1620. }
  1621. } else {
  1622. log_fn(LOG_WARN, domain,
  1623. "EXTEND cell received, in a cell with type %d! Dropping.",
  1624. cell->command);
  1625. }
  1626. return 0;
  1627. }
  1628. return circuit_extend(cell, circ);
  1629. }
  1630. case RELAY_COMMAND_EXTENDED:
  1631. case RELAY_COMMAND_EXTENDED2:
  1632. if (!layer_hint) {
  1633. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1634. "'extended' unsupported at non-origin. Dropping.");
  1635. return 0;
  1636. }
  1637. log_debug(domain,"Got an extended cell! Yay.");
  1638. {
  1639. extended_cell_t extended_cell;
  1640. if (extended_cell_parse(&extended_cell, rh.command,
  1641. (const uint8_t*)cell->payload+RELAY_HEADER_SIZE,
  1642. rh.length)<0) {
  1643. log_warn(LD_PROTOCOL,
  1644. "Can't parse EXTENDED cell; killing circuit.");
  1645. return -END_CIRC_REASON_TORPROTOCOL;
  1646. }
  1647. if ((reason = circuit_finish_handshake(TO_ORIGIN_CIRCUIT(circ),
  1648. &extended_cell.created_cell)) < 0) {
  1649. circuit_mark_for_close(circ, -reason);
  1650. return 0; /* We don't want to cause a warning, so we mark the circuit
  1651. * here. */
  1652. }
  1653. }
  1654. if ((reason=circuit_send_next_onion_skin(TO_ORIGIN_CIRCUIT(circ)))<0) {
  1655. log_info(domain,"circuit_send_next_onion_skin() failed.");
  1656. return reason;
  1657. }
  1658. return 0;
  1659. case RELAY_COMMAND_TRUNCATE:
  1660. if (layer_hint) {
  1661. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1662. "'truncate' unsupported at origin. Dropping.");
  1663. return 0;
  1664. }
  1665. if (circ->n_hop) {
  1666. if (circ->n_chan)
  1667. log_warn(LD_BUG, "n_chan and n_hop set on the same circuit!");
  1668. extend_info_free(circ->n_hop);
  1669. circ->n_hop = NULL;
  1670. tor_free(circ->n_chan_create_cell);
  1671. circuit_set_state(circ, CIRCUIT_STATE_OPEN);
  1672. }
  1673. if (circ->n_chan) {
  1674. uint8_t trunc_reason = get_uint8(cell->payload + RELAY_HEADER_SIZE);
  1675. circuit_clear_cell_queue(circ, circ->n_chan);
  1676. channel_send_destroy(circ->n_circ_id, circ->n_chan,
  1677. trunc_reason);
  1678. circuit_set_n_circid_chan(circ, 0, NULL);
  1679. }
  1680. log_debug(LD_EXIT, "Processed 'truncate', replying.");
  1681. {
  1682. char payload[1];
  1683. payload[0] = (char)END_CIRC_REASON_REQUESTED;
  1684. relay_send_command_from_edge(0, circ, RELAY_COMMAND_TRUNCATED,
  1685. payload, sizeof(payload), NULL);
  1686. }
  1687. return 0;
  1688. case RELAY_COMMAND_TRUNCATED:
  1689. if (!layer_hint) {
  1690. log_fn(LOG_PROTOCOL_WARN, LD_EXIT,
  1691. "'truncated' unsupported at non-origin. Dropping.");
  1692. return 0;
  1693. }
  1694. circuit_truncated(TO_ORIGIN_CIRCUIT(circ), layer_hint,
  1695. get_uint8(cell->payload + RELAY_HEADER_SIZE));
  1696. return 0;
  1697. case RELAY_COMMAND_CONNECTED:
  1698. if (conn) {
  1699. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1700. "'connected' unsupported while open. Closing circ.");
  1701. return -END_CIRC_REASON_TORPROTOCOL;
  1702. }
  1703. log_info(domain,
  1704. "'connected' received on circid %u for streamid %d, "
  1705. "no conn attached anymore. Ignoring.",
  1706. (unsigned)circ->n_circ_id, rh.stream_id);
  1707. return 0;
  1708. case RELAY_COMMAND_SENDME:
  1709. if (!rh.stream_id) {
  1710. if (layer_hint) {
  1711. if (layer_hint->package_window + CIRCWINDOW_INCREMENT >
  1712. CIRCWINDOW_START_MAX) {
  1713. static struct ratelim_t exit_warn_ratelim = RATELIM_INIT(600);
  1714. log_fn_ratelim(&exit_warn_ratelim, LOG_WARN, LD_PROTOCOL,
  1715. "Unexpected sendme cell from exit relay. "
  1716. "Closing circ.");
  1717. return -END_CIRC_REASON_TORPROTOCOL;
  1718. }
  1719. layer_hint->package_window += CIRCWINDOW_INCREMENT;
  1720. log_debug(LD_APP,"circ-level sendme at origin, packagewindow %d.",
  1721. layer_hint->package_window);
  1722. circuit_resume_edge_reading(circ, layer_hint);
  1723. } else {
  1724. if (circ->package_window + CIRCWINDOW_INCREMENT >
  1725. CIRCWINDOW_START_MAX) {
  1726. static struct ratelim_t client_warn_ratelim = RATELIM_INIT(600);
  1727. log_fn_ratelim(&client_warn_ratelim,LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1728. "Unexpected sendme cell from client. "
  1729. "Closing circ (window %d).",
  1730. circ->package_window);
  1731. return -END_CIRC_REASON_TORPROTOCOL;
  1732. }
  1733. circ->package_window += CIRCWINDOW_INCREMENT;
  1734. log_debug(LD_APP,
  1735. "circ-level sendme at non-origin, packagewindow %d.",
  1736. circ->package_window);
  1737. circuit_resume_edge_reading(circ, layer_hint);
  1738. }
  1739. return 0;
  1740. }
  1741. if (!conn) {
  1742. log_info(domain,"sendme cell dropped, unknown stream (streamid %d).",
  1743. rh.stream_id);
  1744. return 0;
  1745. }
  1746. conn->package_window += STREAMWINDOW_INCREMENT;
  1747. log_debug(domain,"stream-level sendme, packagewindow now %d.",
  1748. conn->package_window);
  1749. if (circuit_queue_streams_are_blocked(circ)) {
  1750. /* Still waiting for queue to flush; don't touch conn */
  1751. return 0;
  1752. }
  1753. connection_start_reading(TO_CONN(conn));
  1754. /* handle whatever might still be on the inbuf */
  1755. if (connection_edge_package_raw_inbuf(conn, 1, NULL) < 0) {
  1756. /* (We already sent an end cell if possible) */
  1757. connection_mark_for_close(TO_CONN(conn));
  1758. return 0;
  1759. }
  1760. return 0;
  1761. case RELAY_COMMAND_RESOLVE:
  1762. if (layer_hint) {
  1763. log_fn(LOG_PROTOCOL_WARN, LD_APP,
  1764. "resolve request unsupported at AP; dropping.");
  1765. return 0;
  1766. } else if (conn) {
  1767. log_fn(LOG_PROTOCOL_WARN, domain,
  1768. "resolve request for known stream; dropping.");
  1769. return 0;
  1770. } else if (circ->purpose != CIRCUIT_PURPOSE_OR) {
  1771. log_fn(LOG_PROTOCOL_WARN, domain,
  1772. "resolve request on circ with purpose %d; dropping",
  1773. circ->purpose);
  1774. return 0;
  1775. }
  1776. connection_exit_begin_resolve(cell, TO_OR_CIRCUIT(circ));
  1777. return 0;
  1778. case RELAY_COMMAND_RESOLVED:
  1779. if (conn) {
  1780. log_fn(LOG_PROTOCOL_WARN, domain,
  1781. "'resolved' unsupported while open. Closing circ.");
  1782. return -END_CIRC_REASON_TORPROTOCOL;
  1783. }
  1784. log_info(domain,
  1785. "'resolved' received, no conn attached anymore. Ignoring.");
  1786. return 0;
  1787. case RELAY_COMMAND_ESTABLISH_INTRO:
  1788. case RELAY_COMMAND_ESTABLISH_RENDEZVOUS:
  1789. case RELAY_COMMAND_INTRODUCE1:
  1790. case RELAY_COMMAND_INTRODUCE2:
  1791. case RELAY_COMMAND_INTRODUCE_ACK:
  1792. case RELAY_COMMAND_RENDEZVOUS1:
  1793. case RELAY_COMMAND_RENDEZVOUS2:
  1794. case RELAY_COMMAND_INTRO_ESTABLISHED:
  1795. case RELAY_COMMAND_RENDEZVOUS_ESTABLISHED:
  1796. rend_process_relay_cell(circ, layer_hint,
  1797. rh.command, rh.length,
  1798. cell->payload+RELAY_HEADER_SIZE);
  1799. return 0;
  1800. }
  1801. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1802. "Received unknown relay command %d. Perhaps the other side is using "
  1803. "a newer version of Tor? Dropping.",
  1804. rh.command);
  1805. return 0; /* for forward compatibility, don't kill the circuit */
  1806. }
  1807. /** How many relay_data cells have we built, ever? */
  1808. uint64_t stats_n_data_cells_packaged = 0;
  1809. /** How many bytes of data have we put in relay_data cells have we built,
  1810. * ever? This would be RELAY_PAYLOAD_SIZE*stats_n_data_cells_packaged if
  1811. * every relay cell we ever sent were completely full of data. */
  1812. uint64_t stats_n_data_bytes_packaged = 0;
  1813. /** How many relay_data cells have we received, ever? */
  1814. uint64_t stats_n_data_cells_received = 0;
  1815. /** How many bytes of data have we received relay_data cells, ever? This would
  1816. * be RELAY_PAYLOAD_SIZE*stats_n_data_cells_packaged if every relay cell we
  1817. * ever received were completely full of data. */
  1818. uint64_t stats_n_data_bytes_received = 0;
  1819. /** If <b>conn</b> has an entire relay payload of bytes on its inbuf (or
  1820. * <b>package_partial</b> is true), and the appropriate package windows aren't
  1821. * empty, grab a cell and send it down the circuit.
  1822. *
  1823. * If *<b>max_cells</b> is given, package no more than max_cells. Decrement
  1824. * *<b>max_cells</b> by the number of cells packaged.
  1825. *
  1826. * Return -1 (and send a RELAY_COMMAND_END cell if necessary) if conn should
  1827. * be marked for close, else return 0.
  1828. */
  1829. int
  1830. connection_edge_package_raw_inbuf(edge_connection_t *conn, int package_partial,
  1831. int *max_cells)
  1832. {
  1833. size_t bytes_to_process, length;
  1834. char payload[CELL_PAYLOAD_SIZE];
  1835. circuit_t *circ;
  1836. const unsigned domain = conn->base_.type == CONN_TYPE_AP ? LD_APP : LD_EXIT;
  1837. int sending_from_optimistic = 0;
  1838. entry_connection_t *entry_conn =
  1839. conn->base_.type == CONN_TYPE_AP ? EDGE_TO_ENTRY_CONN(conn) : NULL;
  1840. const int sending_optimistically =
  1841. entry_conn &&
  1842. conn->base_.type == CONN_TYPE_AP &&
  1843. conn->base_.state != AP_CONN_STATE_OPEN;
  1844. crypt_path_t *cpath_layer = conn->cpath_layer;
  1845. tor_assert(conn);
  1846. if (conn->base_.marked_for_close) {
  1847. log_warn(LD_BUG,
  1848. "called on conn that's already marked for close at %s:%d.",
  1849. conn->base_.marked_for_close_file, conn->base_.marked_for_close);
  1850. return 0;
  1851. }
  1852. if (max_cells && *max_cells <= 0)
  1853. return 0;
  1854. repeat_connection_edge_package_raw_inbuf:
  1855. circ = circuit_get_by_edge_conn(conn);
  1856. if (!circ) {
  1857. log_info(domain,"conn has no circuit! Closing.");
  1858. conn->end_reason = END_STREAM_REASON_CANT_ATTACH;
  1859. return -1;
  1860. }
  1861. if (circuit_consider_stop_edge_reading(circ, cpath_layer))
  1862. return 0;
  1863. if (conn->package_window <= 0) {
  1864. log_info(domain,"called with package_window %d. Skipping.",
  1865. conn->package_window);
  1866. connection_stop_reading(TO_CONN(conn));
  1867. return 0;
  1868. }
  1869. sending_from_optimistic = entry_conn &&
  1870. entry_conn->sending_optimistic_data != NULL;
  1871. if (PREDICT_UNLIKELY(sending_from_optimistic)) {
  1872. bytes_to_process = buf_datalen(entry_conn->sending_optimistic_data);
  1873. if (PREDICT_UNLIKELY(!bytes_to_process)) {
  1874. log_warn(LD_BUG, "sending_optimistic_data was non-NULL but empty");
  1875. bytes_to_process = connection_get_inbuf_len(TO_CONN(conn));
  1876. sending_from_optimistic = 0;
  1877. }
  1878. } else {
  1879. bytes_to_process = connection_get_inbuf_len(TO_CONN(conn));
  1880. }
  1881. if (!bytes_to_process)
  1882. return 0;
  1883. if (!package_partial && bytes_to_process < RELAY_PAYLOAD_SIZE)
  1884. return 0;
  1885. if (bytes_to_process > RELAY_PAYLOAD_SIZE) {
  1886. length = RELAY_PAYLOAD_SIZE;
  1887. } else {
  1888. length = bytes_to_process;
  1889. }
  1890. stats_n_data_bytes_packaged += length;
  1891. stats_n_data_cells_packaged += 1;
  1892. if (PREDICT_UNLIKELY(sending_from_optimistic)) {
  1893. /* XXXX We could be more efficient here by sometimes packing
  1894. * previously-sent optimistic data in the same cell with data
  1895. * from the inbuf. */
  1896. fetch_from_buf(payload, length, entry_conn->sending_optimistic_data);
  1897. if (!buf_datalen(entry_conn->sending_optimistic_data)) {
  1898. buf_free(entry_conn->sending_optimistic_data);
  1899. entry_conn->sending_optimistic_data = NULL;
  1900. }
  1901. } else {
  1902. connection_fetch_from_buf(payload, length, TO_CONN(conn));
  1903. }
  1904. log_debug(domain,TOR_SOCKET_T_FORMAT": Packaging %d bytes (%d waiting).",
  1905. conn->base_.s,
  1906. (int)length, (int)connection_get_inbuf_len(TO_CONN(conn)));
  1907. if (sending_optimistically && !sending_from_optimistic) {
  1908. /* This is new optimistic data; remember it in case we need to detach and
  1909. retry */
  1910. if (!entry_conn->pending_optimistic_data)
  1911. entry_conn->pending_optimistic_data = buf_new();
  1912. write_to_buf(payload, length, entry_conn->pending_optimistic_data);
  1913. }
  1914. if (connection_edge_send_command(conn, RELAY_COMMAND_DATA,
  1915. payload, length) < 0 )
  1916. /* circuit got marked for close, don't continue, don't need to mark conn */
  1917. return 0;
  1918. if (!cpath_layer) { /* non-rendezvous exit */
  1919. tor_assert(circ->package_window > 0);
  1920. circ->package_window--;
  1921. } else { /* we're an AP, or an exit on a rendezvous circ */
  1922. tor_assert(cpath_layer->package_window > 0);
  1923. cpath_layer->package_window--;
  1924. }
  1925. if (--conn->package_window <= 0) { /* is it 0 after decrement? */
  1926. connection_stop_reading(TO_CONN(conn));
  1927. log_debug(domain,"conn->package_window reached 0.");
  1928. circuit_consider_stop_edge_reading(circ, cpath_layer);
  1929. return 0; /* don't process the inbuf any more */
  1930. }
  1931. log_debug(domain,"conn->package_window is now %d",conn->package_window);
  1932. if (max_cells) {
  1933. *max_cells -= 1;
  1934. if (*max_cells <= 0)
  1935. return 0;
  1936. }
  1937. /* handle more if there's more, or return 0 if there isn't */
  1938. goto repeat_connection_edge_package_raw_inbuf;
  1939. }
  1940. /** Called when we've just received a relay data cell, when
  1941. * we've just finished flushing all bytes to stream <b>conn</b>,
  1942. * or when we've flushed *some* bytes to the stream <b>conn</b>.
  1943. *
  1944. * If conn->outbuf is not too full, and our deliver window is
  1945. * low, send back a suitable number of stream-level sendme cells.
  1946. */
  1947. void
  1948. connection_edge_consider_sending_sendme(edge_connection_t *conn)
  1949. {
  1950. circuit_t *circ;
  1951. if (connection_outbuf_too_full(TO_CONN(conn)))
  1952. return;
  1953. circ = circuit_get_by_edge_conn(conn);
  1954. if (!circ) {
  1955. /* this can legitimately happen if the destroy has already
  1956. * arrived and torn down the circuit */
  1957. log_info(LD_APP,"No circuit associated with conn. Skipping.");
  1958. return;
  1959. }
  1960. while (conn->deliver_window <= STREAMWINDOW_START - STREAMWINDOW_INCREMENT) {
  1961. log_debug(conn->base_.type == CONN_TYPE_AP ?LD_APP:LD_EXIT,
  1962. "Outbuf %d, Queuing stream sendme.",
  1963. (int)conn->base_.outbuf_flushlen);
  1964. conn->deliver_window += STREAMWINDOW_INCREMENT;
  1965. if (connection_edge_send_command(conn, RELAY_COMMAND_SENDME,
  1966. NULL, 0) < 0) {
  1967. log_warn(LD_APP,"connection_edge_send_command failed. Skipping.");
  1968. return; /* the circuit's closed, don't continue */
  1969. }
  1970. }
  1971. }
  1972. /** The circuit <b>circ</b> has received a circuit-level sendme
  1973. * (on hop <b>layer_hint</b>, if we're the OP). Go through all the
  1974. * attached streams and let them resume reading and packaging, if
  1975. * their stream windows allow it.
  1976. */
  1977. static void
  1978. circuit_resume_edge_reading(circuit_t *circ, crypt_path_t *layer_hint)
  1979. {
  1980. if (circuit_queue_streams_are_blocked(circ)) {
  1981. log_debug(layer_hint?LD_APP:LD_EXIT,"Too big queue, no resuming");
  1982. return;
  1983. }
  1984. log_debug(layer_hint?LD_APP:LD_EXIT,"resuming");
  1985. if (CIRCUIT_IS_ORIGIN(circ))
  1986. circuit_resume_edge_reading_helper(TO_ORIGIN_CIRCUIT(circ)->p_streams,
  1987. circ, layer_hint);
  1988. else
  1989. circuit_resume_edge_reading_helper(TO_OR_CIRCUIT(circ)->n_streams,
  1990. circ, layer_hint);
  1991. }
  1992. void
  1993. stream_choice_seed_weak_rng(void)
  1994. {
  1995. crypto_seed_weak_rng(&stream_choice_rng);
  1996. }
  1997. /** A helper function for circuit_resume_edge_reading() above.
  1998. * The arguments are the same, except that <b>conn</b> is the head
  1999. * of a linked list of edge streams that should each be considered.
  2000. */
  2001. static int
  2002. circuit_resume_edge_reading_helper(edge_connection_t *first_conn,
  2003. circuit_t *circ,
  2004. crypt_path_t *layer_hint)
  2005. {
  2006. edge_connection_t *conn;
  2007. int n_packaging_streams, n_streams_left;
  2008. int packaged_this_round;
  2009. int cells_on_queue;
  2010. int cells_per_conn;
  2011. edge_connection_t *chosen_stream = NULL;
  2012. int max_to_package;
  2013. if (first_conn == NULL) {
  2014. /* Don't bother to try to do the rest of this if there are no connections
  2015. * to resume. */
  2016. return 0;
  2017. }
  2018. /* How many cells do we have space for? It will be the minimum of
  2019. * the number needed to exhaust the package window, and the minimum
  2020. * needed to fill the cell queue. */
  2021. max_to_package = circ->package_window;
  2022. if (CIRCUIT_IS_ORIGIN(circ)) {
  2023. cells_on_queue = circ->n_chan_cells.n;
  2024. } else {
  2025. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  2026. cells_on_queue = or_circ->p_chan_cells.n;
  2027. }
  2028. if (CELL_QUEUE_HIGHWATER_SIZE - cells_on_queue < max_to_package)
  2029. max_to_package = CELL_QUEUE_HIGHWATER_SIZE - cells_on_queue;
  2030. /* Once we used to start listening on the streams in the order they
  2031. * appeared in the linked list. That leads to starvation on the
  2032. * streams that appeared later on the list, since the first streams
  2033. * would always get to read first. Instead, we just pick a random
  2034. * stream on the list, and enable reading for streams starting at that
  2035. * point (and wrapping around as if the list were circular). It would
  2036. * probably be better to actually remember which streams we've
  2037. * serviced in the past, but this is simple and effective. */
  2038. /* Select a stream uniformly at random from the linked list. We
  2039. * don't need cryptographic randomness here. */
  2040. {
  2041. int num_streams = 0;
  2042. for (conn = first_conn; conn; conn = conn->next_stream) {
  2043. num_streams++;
  2044. if (tor_weak_random_one_in_n(&stream_choice_rng, num_streams)) {
  2045. chosen_stream = conn;
  2046. }
  2047. /* Invariant: chosen_stream has been chosen uniformly at random from
  2048. * among the first num_streams streams on first_conn.
  2049. *
  2050. * (Note that we iterate over every stream on the circuit, so that after
  2051. * we've considered the first stream, we've chosen it with P=1; and
  2052. * after we consider the second stream, we've switched to it with P=1/2
  2053. * and stayed with the first stream with P=1/2; and after we've
  2054. * considered the third stream, we've switched to it with P=1/3 and
  2055. * remained with one of the first two streams with P=(2/3), giving each
  2056. * one P=(1/2)(2/3) )=(1/3).) */
  2057. }
  2058. }
  2059. /* Count how many non-marked streams there are that have anything on
  2060. * their inbuf, and enable reading on all of the connections. */
  2061. n_packaging_streams = 0;
  2062. /* Activate reading starting from the chosen stream */
  2063. for (conn=chosen_stream; conn; conn = conn->next_stream) {
  2064. /* Start reading for the streams starting from here */
  2065. if (conn->base_.marked_for_close || conn->package_window <= 0)
  2066. continue;
  2067. if (!layer_hint || conn->cpath_layer == layer_hint) {
  2068. connection_start_reading(TO_CONN(conn));
  2069. if (connection_get_inbuf_len(TO_CONN(conn)) > 0)
  2070. ++n_packaging_streams;
  2071. }
  2072. }
  2073. /* Go back and do the ones we skipped, circular-style */
  2074. for (conn = first_conn; conn != chosen_stream; conn = conn->next_stream) {
  2075. if (conn->base_.marked_for_close || conn->package_window <= 0)
  2076. continue;
  2077. if (!layer_hint || conn->cpath_layer == layer_hint) {
  2078. connection_start_reading(TO_CONN(conn));
  2079. if (connection_get_inbuf_len(TO_CONN(conn)) > 0)
  2080. ++n_packaging_streams;
  2081. }
  2082. }
  2083. if (n_packaging_streams == 0) /* avoid divide-by-zero */
  2084. return 0;
  2085. again:
  2086. cells_per_conn = CEIL_DIV(max_to_package, n_packaging_streams);
  2087. packaged_this_round = 0;
  2088. n_streams_left = 0;
  2089. /* Iterate over all connections. Package up to cells_per_conn cells on
  2090. * each. Update packaged_this_round with the total number of cells
  2091. * packaged, and n_streams_left with the number that still have data to
  2092. * package.
  2093. */
  2094. for (conn=first_conn; conn; conn=conn->next_stream) {
  2095. if (conn->base_.marked_for_close || conn->package_window <= 0)
  2096. continue;
  2097. if (!layer_hint || conn->cpath_layer == layer_hint) {
  2098. int n = cells_per_conn, r;
  2099. /* handle whatever might still be on the inbuf */
  2100. r = connection_edge_package_raw_inbuf(conn, 1, &n);
  2101. /* Note how many we packaged */
  2102. packaged_this_round += (cells_per_conn-n);
  2103. if (r<0) {
  2104. /* Problem while packaging. (We already sent an end cell if
  2105. * possible) */
  2106. connection_mark_for_close(TO_CONN(conn));
  2107. continue;
  2108. }
  2109. /* If there's still data to read, we'll be coming back to this stream. */
  2110. if (connection_get_inbuf_len(TO_CONN(conn)))
  2111. ++n_streams_left;
  2112. /* If the circuit won't accept any more data, return without looking
  2113. * at any more of the streams. Any connections that should be stopped
  2114. * have already been stopped by connection_edge_package_raw_inbuf. */
  2115. if (circuit_consider_stop_edge_reading(circ, layer_hint))
  2116. return -1;
  2117. /* XXXX should we also stop immediately if we fill up the cell queue?
  2118. * Probably. */
  2119. }
  2120. }
  2121. /* If we made progress, and we are willing to package more, and there are
  2122. * any streams left that want to package stuff... try again!
  2123. */
  2124. if (packaged_this_round && packaged_this_round < max_to_package &&
  2125. n_streams_left) {
  2126. max_to_package -= packaged_this_round;
  2127. n_packaging_streams = n_streams_left;
  2128. goto again;
  2129. }
  2130. return 0;
  2131. }
  2132. /** Check if the package window for <b>circ</b> is empty (at
  2133. * hop <b>layer_hint</b> if it's defined).
  2134. *
  2135. * If yes, tell edge streams to stop reading and return 1.
  2136. * Else return 0.
  2137. */
  2138. static int
  2139. circuit_consider_stop_edge_reading(circuit_t *circ, crypt_path_t *layer_hint)
  2140. {
  2141. edge_connection_t *conn = NULL;
  2142. unsigned domain = layer_hint ? LD_APP : LD_EXIT;
  2143. if (!layer_hint) {
  2144. or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
  2145. log_debug(domain,"considering circ->package_window %d",
  2146. circ->package_window);
  2147. if (circ->package_window <= 0) {
  2148. log_debug(domain,"yes, not-at-origin. stopped.");
  2149. for (conn = or_circ->n_streams; conn; conn=conn->next_stream)
  2150. connection_stop_reading(TO_CONN(conn));
  2151. return 1;
  2152. }
  2153. return 0;
  2154. }
  2155. /* else, layer hint is defined, use it */
  2156. log_debug(domain,"considering layer_hint->package_window %d",
  2157. layer_hint->package_window);
  2158. if (layer_hint->package_window <= 0) {
  2159. log_debug(domain,"yes, at-origin. stopped.");
  2160. for (conn = TO_ORIGIN_CIRCUIT(circ)->p_streams; conn;
  2161. conn=conn->next_stream) {
  2162. if (conn->cpath_layer == layer_hint)
  2163. connection_stop_reading(TO_CONN(conn));
  2164. }
  2165. return 1;
  2166. }
  2167. return 0;
  2168. }
  2169. /** Check if the deliver_window for circuit <b>circ</b> (at hop
  2170. * <b>layer_hint</b> if it's defined) is low enough that we should
  2171. * send a circuit-level sendme back down the circuit. If so, send
  2172. * enough sendmes that the window would be overfull if we sent any
  2173. * more.
  2174. */
  2175. static void
  2176. circuit_consider_sending_sendme(circuit_t *circ, crypt_path_t *layer_hint)
  2177. {
  2178. // log_fn(LOG_INFO,"Considering: layer_hint is %s",
  2179. // layer_hint ? "defined" : "null");
  2180. while ((layer_hint ? layer_hint->deliver_window : circ->deliver_window) <=
  2181. CIRCWINDOW_START - CIRCWINDOW_INCREMENT) {
  2182. log_debug(LD_CIRC,"Queuing circuit sendme.");
  2183. if (layer_hint)
  2184. layer_hint->deliver_window += CIRCWINDOW_INCREMENT;
  2185. else
  2186. circ->deliver_window += CIRCWINDOW_INCREMENT;
  2187. if (relay_send_command_from_edge(0, circ, RELAY_COMMAND_SENDME,
  2188. NULL, 0, layer_hint) < 0) {
  2189. log_warn(LD_CIRC,
  2190. "relay_send_command_from_edge failed. Circuit's closed.");
  2191. return; /* the circuit's closed, don't continue */
  2192. }
  2193. }
  2194. }
  2195. #ifdef ACTIVE_CIRCUITS_PARANOIA
  2196. #define assert_cmux_ok_paranoid(chan) \
  2197. assert_circuit_mux_okay(chan)
  2198. #else
  2199. #define assert_cmux_ok_paranoid(chan)
  2200. #endif
  2201. /** The total number of cells we have allocated. */
  2202. static size_t total_cells_allocated = 0;
  2203. /** Release storage held by <b>cell</b>. */
  2204. static inline void
  2205. packed_cell_free_unchecked(packed_cell_t *cell)
  2206. {
  2207. --total_cells_allocated;
  2208. tor_free(cell);
  2209. }
  2210. /** Allocate and return a new packed_cell_t. */
  2211. STATIC packed_cell_t *
  2212. packed_cell_new(void)
  2213. {
  2214. ++total_cells_allocated;
  2215. return tor_malloc_zero(sizeof(packed_cell_t));
  2216. }
  2217. /** Return a packed cell used outside by channel_t lower layer */
  2218. void
  2219. packed_cell_free(packed_cell_t *cell)
  2220. {
  2221. if (!cell)
  2222. return;
  2223. packed_cell_free_unchecked(cell);
  2224. }
  2225. /** Log current statistics for cell pool allocation at log level
  2226. * <b>severity</b>. */
  2227. void
  2228. dump_cell_pool_usage(int severity)
  2229. {
  2230. int n_circs = 0;
  2231. int n_cells = 0;
  2232. SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, c) {
  2233. n_cells += c->n_chan_cells.n;
  2234. if (!CIRCUIT_IS_ORIGIN(c))
  2235. n_cells += TO_OR_CIRCUIT(c)->p_chan_cells.n;
  2236. ++n_circs;
  2237. }
  2238. SMARTLIST_FOREACH_END(c);
  2239. tor_log(severity, LD_MM,
  2240. "%d cells allocated on %d circuits. %d cells leaked.",
  2241. n_cells, n_circs, (int)total_cells_allocated - n_cells);
  2242. }
  2243. /** Allocate a new copy of packed <b>cell</b>. */
  2244. static inline packed_cell_t *
  2245. packed_cell_copy(const cell_t *cell, int wide_circ_ids)
  2246. {
  2247. packed_cell_t *c = packed_cell_new();
  2248. cell_pack(c, cell, wide_circ_ids);
  2249. return c;
  2250. }
  2251. /** Append <b>cell</b> to the end of <b>queue</b>. */
  2252. void
  2253. cell_queue_append(cell_queue_t *queue, packed_cell_t *cell)
  2254. {
  2255. TOR_SIMPLEQ_INSERT_TAIL(&queue->head, cell, next);
  2256. ++queue->n;
  2257. }
  2258. /** Append a newly allocated copy of <b>cell</b> to the end of the
  2259. * <b>exitward</b> (or app-ward) <b>queue</b> of <b>circ</b>. If
  2260. * <b>use_stats</b> is true, record statistics about the cell.
  2261. */
  2262. void
  2263. cell_queue_append_packed_copy(circuit_t *circ, cell_queue_t *queue,
  2264. int exitward, const cell_t *cell,
  2265. int wide_circ_ids, int use_stats)
  2266. {
  2267. packed_cell_t *copy = packed_cell_copy(cell, wide_circ_ids);
  2268. (void)circ;
  2269. (void)exitward;
  2270. (void)use_stats;
  2271. copy->inserted_time = (uint32_t) monotime_coarse_absolute_msec();
  2272. cell_queue_append(queue, copy);
  2273. }
  2274. /** Initialize <b>queue</b> as an empty cell queue. */
  2275. void
  2276. cell_queue_init(cell_queue_t *queue)
  2277. {
  2278. memset(queue, 0, sizeof(cell_queue_t));
  2279. TOR_SIMPLEQ_INIT(&queue->head);
  2280. }
  2281. /** Remove and free every cell in <b>queue</b>. */
  2282. void
  2283. cell_queue_clear(cell_queue_t *queue)
  2284. {
  2285. packed_cell_t *cell;
  2286. while ((cell = TOR_SIMPLEQ_FIRST(&queue->head))) {
  2287. TOR_SIMPLEQ_REMOVE_HEAD(&queue->head, next);
  2288. packed_cell_free_unchecked(cell);
  2289. }
  2290. TOR_SIMPLEQ_INIT(&queue->head);
  2291. queue->n = 0;
  2292. }
  2293. /** Extract and return the cell at the head of <b>queue</b>; return NULL if
  2294. * <b>queue</b> is empty. */
  2295. STATIC packed_cell_t *
  2296. cell_queue_pop(cell_queue_t *queue)
  2297. {
  2298. packed_cell_t *cell = TOR_SIMPLEQ_FIRST(&queue->head);
  2299. if (!cell)
  2300. return NULL;
  2301. TOR_SIMPLEQ_REMOVE_HEAD(&queue->head, next);
  2302. --queue->n;
  2303. return cell;
  2304. }
  2305. /** Return the total number of bytes used for each packed_cell in a queue.
  2306. * Approximate. */
  2307. size_t
  2308. packed_cell_mem_cost(void)
  2309. {
  2310. return sizeof(packed_cell_t);
  2311. }
  2312. /* DOCDOC */
  2313. STATIC size_t
  2314. cell_queues_get_total_allocation(void)
  2315. {
  2316. return total_cells_allocated * packed_cell_mem_cost();
  2317. }
  2318. /** How long after we've been low on memory should we try to conserve it? */
  2319. #define MEMORY_PRESSURE_INTERVAL (30*60)
  2320. /** The time at which we were last low on memory. */
  2321. static time_t last_time_under_memory_pressure = 0;
  2322. /** Check whether we've got too much space used for cells. If so,
  2323. * call the OOM handler and return 1. Otherwise, return 0. */
  2324. STATIC int
  2325. cell_queues_check_size(void)
  2326. {
  2327. size_t alloc = cell_queues_get_total_allocation();
  2328. alloc += buf_get_total_allocation();
  2329. alloc += tor_compress_get_total_allocation();
  2330. const size_t rend_cache_total = rend_cache_get_total_allocation();
  2331. alloc += rend_cache_total;
  2332. if (alloc >= get_options()->MaxMemInQueues_low_threshold) {
  2333. last_time_under_memory_pressure = approx_time();
  2334. if (alloc >= get_options()->MaxMemInQueues) {
  2335. /* If we're spending over 20% of the memory limit on hidden service
  2336. * descriptors, free them until we're down to 10%.
  2337. */
  2338. if (rend_cache_total > get_options()->MaxMemInQueues / 5) {
  2339. const size_t bytes_to_remove =
  2340. rend_cache_total - (size_t)(get_options()->MaxMemInQueues / 10);
  2341. alloc -= hs_cache_handle_oom(time(NULL), bytes_to_remove);
  2342. }
  2343. circuits_handle_oom(alloc);
  2344. return 1;
  2345. }
  2346. }
  2347. return 0;
  2348. }
  2349. /** Return true if we've been under memory pressure in the last
  2350. * MEMORY_PRESSURE_INTERVAL seconds. */
  2351. int
  2352. have_been_under_memory_pressure(void)
  2353. {
  2354. return last_time_under_memory_pressure + MEMORY_PRESSURE_INTERVAL
  2355. < approx_time();
  2356. }
  2357. /**
  2358. * Update the number of cells available on the circuit's n_chan or p_chan's
  2359. * circuit mux.
  2360. */
  2361. void
  2362. update_circuit_on_cmux_(circuit_t *circ, cell_direction_t direction,
  2363. const char *file, int lineno)
  2364. {
  2365. channel_t *chan = NULL;
  2366. or_circuit_t *or_circ = NULL;
  2367. circuitmux_t *cmux = NULL;
  2368. tor_assert(circ);
  2369. /* Okay, get the channel */
  2370. if (direction == CELL_DIRECTION_OUT) {
  2371. chan = circ->n_chan;
  2372. } else {
  2373. or_circ = TO_OR_CIRCUIT(circ);
  2374. chan = or_circ->p_chan;
  2375. }
  2376. tor_assert(chan);
  2377. tor_assert(chan->cmux);
  2378. /* Now get the cmux */
  2379. cmux = chan->cmux;
  2380. /* Cmux sanity check */
  2381. if (! circuitmux_is_circuit_attached(cmux, circ)) {
  2382. log_warn(LD_BUG, "called on non-attached circuit from %s:%d",
  2383. file, lineno);
  2384. return;
  2385. }
  2386. tor_assert(circuitmux_attached_circuit_direction(cmux, circ) == direction);
  2387. assert_cmux_ok_paranoid(chan);
  2388. /* Update the number of cells we have for the circuit mux */
  2389. if (direction == CELL_DIRECTION_OUT) {
  2390. circuitmux_set_num_cells(cmux, circ, circ->n_chan_cells.n);
  2391. } else {
  2392. circuitmux_set_num_cells(cmux, circ, or_circ->p_chan_cells.n);
  2393. }
  2394. assert_cmux_ok_paranoid(chan);
  2395. }
  2396. /** Remove all circuits from the cmux on <b>chan</b>.
  2397. *
  2398. * If <b>circuits_out</b> is non-NULL, add all detached circuits to
  2399. * <b>circuits_out</b>.
  2400. **/
  2401. void
  2402. channel_unlink_all_circuits(channel_t *chan, smartlist_t *circuits_out)
  2403. {
  2404. tor_assert(chan);
  2405. tor_assert(chan->cmux);
  2406. circuitmux_detach_all_circuits(chan->cmux, circuits_out);
  2407. chan->num_n_circuits = 0;
  2408. chan->num_p_circuits = 0;
  2409. }
  2410. /** Block (if <b>block</b> is true) or unblock (if <b>block</b> is false)
  2411. * every edge connection that is using <b>circ</b> to write to <b>chan</b>,
  2412. * and start or stop reading as appropriate.
  2413. *
  2414. * If <b>stream_id</b> is nonzero, block only the edge connection whose
  2415. * stream_id matches it.
  2416. *
  2417. * Returns the number of streams whose status we changed.
  2418. */
  2419. static int
  2420. set_streams_blocked_on_circ(circuit_t *circ, channel_t *chan,
  2421. int block, streamid_t stream_id)
  2422. {
  2423. edge_connection_t *edge = NULL;
  2424. int n = 0;
  2425. if (circ->n_chan == chan) {
  2426. circ->streams_blocked_on_n_chan = block;
  2427. if (CIRCUIT_IS_ORIGIN(circ))
  2428. edge = TO_ORIGIN_CIRCUIT(circ)->p_streams;
  2429. } else {
  2430. circ->streams_blocked_on_p_chan = block;
  2431. tor_assert(!CIRCUIT_IS_ORIGIN(circ));
  2432. edge = TO_OR_CIRCUIT(circ)->n_streams;
  2433. }
  2434. for (; edge; edge = edge->next_stream) {
  2435. connection_t *conn = TO_CONN(edge);
  2436. if (stream_id && edge->stream_id != stream_id)
  2437. continue;
  2438. if (edge->edge_blocked_on_circ != block) {
  2439. ++n;
  2440. edge->edge_blocked_on_circ = block;
  2441. }
  2442. if (!conn->read_event) {
  2443. /* This connection is a placeholder for something; probably a DNS
  2444. * request. It can't actually stop or start reading.*/
  2445. continue;
  2446. }
  2447. if (block) {
  2448. if (connection_is_reading(conn))
  2449. connection_stop_reading(conn);
  2450. } else {
  2451. /* Is this right? */
  2452. if (!connection_is_reading(conn))
  2453. connection_start_reading(conn);
  2454. }
  2455. }
  2456. return n;
  2457. }
  2458. /** Extract the command from a packed cell. */
  2459. static uint8_t
  2460. packed_cell_get_command(const packed_cell_t *cell, int wide_circ_ids)
  2461. {
  2462. if (wide_circ_ids) {
  2463. return get_uint8(cell->body+4);
  2464. } else {
  2465. return get_uint8(cell->body+2);
  2466. }
  2467. }
  2468. /** Extract the circuit ID from a packed cell. */
  2469. circid_t
  2470. packed_cell_get_circid(const packed_cell_t *cell, int wide_circ_ids)
  2471. {
  2472. if (wide_circ_ids) {
  2473. return ntohl(get_uint32(cell->body));
  2474. } else {
  2475. return ntohs(get_uint16(cell->body));
  2476. }
  2477. }
  2478. /** Pull as many cells as possible (but no more than <b>max</b>) from the
  2479. * queue of the first active circuit on <b>chan</b>, and write them to
  2480. * <b>chan</b>-&gt;outbuf. Return the number of cells written. Advance
  2481. * the active circuit pointer to the next active circuit in the ring. */
  2482. MOCK_IMPL(int,
  2483. channel_flush_from_first_active_circuit, (channel_t *chan, int max))
  2484. {
  2485. circuitmux_t *cmux = NULL;
  2486. int n_flushed = 0;
  2487. cell_queue_t *queue, *destroy_queue=NULL;
  2488. circuit_t *circ;
  2489. or_circuit_t *or_circ;
  2490. int streams_blocked;
  2491. packed_cell_t *cell;
  2492. /* Get the cmux */
  2493. tor_assert(chan);
  2494. tor_assert(chan->cmux);
  2495. cmux = chan->cmux;
  2496. /* Main loop: pick a circuit, send a cell, update the cmux */
  2497. while (n_flushed < max) {
  2498. circ = circuitmux_get_first_active_circuit(cmux, &destroy_queue);
  2499. if (destroy_queue) {
  2500. /* this code is duplicated from some of the logic below. Ugly! XXXX */
  2501. tor_assert(destroy_queue->n > 0);
  2502. cell = cell_queue_pop(destroy_queue);
  2503. channel_write_packed_cell(chan, cell);
  2504. /* Update the cmux destroy counter */
  2505. circuitmux_notify_xmit_destroy(cmux);
  2506. cell = NULL;
  2507. ++n_flushed;
  2508. continue;
  2509. }
  2510. /* If it returns NULL, no cells left to send */
  2511. if (!circ) break;
  2512. assert_cmux_ok_paranoid(chan);
  2513. if (circ->n_chan == chan) {
  2514. queue = &circ->n_chan_cells;
  2515. streams_blocked = circ->streams_blocked_on_n_chan;
  2516. } else {
  2517. or_circ = TO_OR_CIRCUIT(circ);
  2518. tor_assert(or_circ->p_chan == chan);
  2519. queue = &TO_OR_CIRCUIT(circ)->p_chan_cells;
  2520. streams_blocked = circ->streams_blocked_on_p_chan;
  2521. }
  2522. /* Circuitmux told us this was active, so it should have cells */
  2523. if (/*BUG(*/ queue->n == 0 /*)*/) {
  2524. log_warn(LD_BUG, "Found a supposedly active circuit with no cells "
  2525. "to send. Trying to recover.");
  2526. circuitmux_set_num_cells(cmux, circ, 0);
  2527. if (! circ->marked_for_close)
  2528. circuit_mark_for_close(circ, END_CIRC_REASON_INTERNAL);
  2529. continue;
  2530. }
  2531. tor_assert(queue->n > 0);
  2532. /*
  2533. * Get just one cell here; once we've sent it, that can change the circuit
  2534. * selection, so we have to loop around for another even if this circuit
  2535. * has more than one.
  2536. */
  2537. cell = cell_queue_pop(queue);
  2538. /* Calculate the exact time that this cell has spent in the queue. */
  2539. if (get_options()->CellStatistics ||
  2540. get_options()->TestingEnableCellStatsEvent) {
  2541. uint32_t msec_waiting;
  2542. uint32_t msec_now = (uint32_t)monotime_coarse_absolute_msec();
  2543. msec_waiting = msec_now - cell->inserted_time;
  2544. if (get_options()->CellStatistics && !CIRCUIT_IS_ORIGIN(circ)) {
  2545. or_circ = TO_OR_CIRCUIT(circ);
  2546. or_circ->total_cell_waiting_time += msec_waiting;
  2547. or_circ->processed_cells++;
  2548. }
  2549. if (get_options()->TestingEnableCellStatsEvent) {
  2550. uint8_t command = packed_cell_get_command(cell, chan->wide_circ_ids);
  2551. testing_cell_stats_entry_t *ent =
  2552. tor_malloc_zero(sizeof(testing_cell_stats_entry_t));
  2553. ent->command = command;
  2554. ent->waiting_time = msec_waiting / 10;
  2555. ent->removed = 1;
  2556. if (circ->n_chan == chan)
  2557. ent->exitward = 1;
  2558. if (!circ->testing_cell_stats)
  2559. circ->testing_cell_stats = smartlist_new();
  2560. smartlist_add(circ->testing_cell_stats, ent);
  2561. }
  2562. }
  2563. /* If we just flushed our queue and this circuit is used for a
  2564. * tunneled directory request, possibly advance its state. */
  2565. if (queue->n == 0 && chan->dirreq_id)
  2566. geoip_change_dirreq_state(chan->dirreq_id,
  2567. DIRREQ_TUNNELED,
  2568. DIRREQ_CIRC_QUEUE_FLUSHED);
  2569. /* Now send the cell */
  2570. channel_write_packed_cell(chan, cell);
  2571. cell = NULL;
  2572. /*
  2573. * Don't packed_cell_free_unchecked(cell) here because the channel will
  2574. * do so when it gets out of the channel queue (probably already did, in
  2575. * which case that was an immediate double-free bug).
  2576. */
  2577. /* Update the counter */
  2578. ++n_flushed;
  2579. /*
  2580. * Now update the cmux; tell it we've just sent a cell, and how many
  2581. * we have left.
  2582. */
  2583. circuitmux_notify_xmit_cells(cmux, circ, 1);
  2584. circuitmux_set_num_cells(cmux, circ, queue->n);
  2585. if (queue->n == 0)
  2586. log_debug(LD_GENERAL, "Made a circuit inactive.");
  2587. /* Is the cell queue low enough to unblock all the streams that are waiting
  2588. * to write to this circuit? */
  2589. if (streams_blocked && queue->n <= CELL_QUEUE_LOWWATER_SIZE)
  2590. set_streams_blocked_on_circ(circ, chan, 0, 0); /* unblock streams */
  2591. /* If n_flushed < max still, loop around and pick another circuit */
  2592. }
  2593. /* Okay, we're done sending now */
  2594. assert_cmux_ok_paranoid(chan);
  2595. return n_flushed;
  2596. }
  2597. #if 0
  2598. /** Indicate the current preferred cap for middle circuits; zero disables
  2599. * the cap. Right now it's just a constant, ORCIRC_MAX_MIDDLE_CELLS, but
  2600. * the logic in append_cell_to_circuit_queue() is written to be correct
  2601. * if we want to base it on a consensus param or something that might change
  2602. * in the future.
  2603. */
  2604. static int
  2605. get_max_middle_cells(void)
  2606. {
  2607. return ORCIRC_MAX_MIDDLE_CELLS;
  2608. }
  2609. #endif
  2610. /** Add <b>cell</b> to the queue of <b>circ</b> writing to <b>chan</b>
  2611. * transmitting in <b>direction</b>. */
  2612. void
  2613. append_cell_to_circuit_queue(circuit_t *circ, channel_t *chan,
  2614. cell_t *cell, cell_direction_t direction,
  2615. streamid_t fromstream)
  2616. {
  2617. or_circuit_t *orcirc = NULL;
  2618. cell_queue_t *queue;
  2619. int streams_blocked;
  2620. #if 0
  2621. uint32_t tgt_max_middle_cells, p_len, n_len, tmp, hard_max_middle_cells;
  2622. #endif
  2623. int exitward;
  2624. if (circ->marked_for_close)
  2625. return;
  2626. exitward = (direction == CELL_DIRECTION_OUT);
  2627. if (exitward) {
  2628. queue = &circ->n_chan_cells;
  2629. streams_blocked = circ->streams_blocked_on_n_chan;
  2630. } else {
  2631. orcirc = TO_OR_CIRCUIT(circ);
  2632. queue = &orcirc->p_chan_cells;
  2633. streams_blocked = circ->streams_blocked_on_p_chan;
  2634. }
  2635. /*
  2636. * Disabling this for now because of a possible guard discovery attack
  2637. */
  2638. #if 0
  2639. /* Are we a middle circuit about to exceed ORCIRC_MAX_MIDDLE_CELLS? */
  2640. if ((circ->n_chan != NULL) && CIRCUIT_IS_ORCIRC(circ)) {
  2641. orcirc = TO_OR_CIRCUIT(circ);
  2642. if (orcirc->p_chan) {
  2643. /* We are a middle circuit if we have both n_chan and p_chan */
  2644. /* We'll need to know the current preferred maximum */
  2645. tgt_max_middle_cells = get_max_middle_cells();
  2646. if (tgt_max_middle_cells > 0) {
  2647. /* Do we need to initialize middle_max_cells? */
  2648. if (orcirc->max_middle_cells == 0) {
  2649. orcirc->max_middle_cells = tgt_max_middle_cells;
  2650. } else {
  2651. if (tgt_max_middle_cells > orcirc->max_middle_cells) {
  2652. /* If we want to increase the cap, we can do so right away */
  2653. orcirc->max_middle_cells = tgt_max_middle_cells;
  2654. } else if (tgt_max_middle_cells < orcirc->max_middle_cells) {
  2655. /*
  2656. * If we're shrinking the cap, we can't shrink past either queue;
  2657. * compare tgt_max_middle_cells rather than tgt_max_middle_cells *
  2658. * ORCIRC_MAX_MIDDLE_KILL_THRESH so the queues don't shrink enough
  2659. * to generate spurious warnings, either.
  2660. */
  2661. n_len = circ->n_chan_cells.n;
  2662. p_len = orcirc->p_chan_cells.n;
  2663. tmp = tgt_max_middle_cells;
  2664. if (tmp < n_len) tmp = n_len;
  2665. if (tmp < p_len) tmp = p_len;
  2666. orcirc->max_middle_cells = tmp;
  2667. }
  2668. /* else no change */
  2669. }
  2670. } else {
  2671. /* tgt_max_middle_cells == 0 indicates we should disable the cap */
  2672. orcirc->max_middle_cells = 0;
  2673. }
  2674. /* Now we know orcirc->max_middle_cells is set correctly */
  2675. if (orcirc->max_middle_cells > 0) {
  2676. hard_max_middle_cells =
  2677. (uint32_t)(((double)orcirc->max_middle_cells) *
  2678. ORCIRC_MAX_MIDDLE_KILL_THRESH);
  2679. if ((unsigned)queue->n + 1 >= hard_max_middle_cells) {
  2680. /* Queueing this cell would put queue over the kill theshold */
  2681. log_warn(LD_CIRC,
  2682. "Got a cell exceeding the hard cap of %u in the "
  2683. "%s direction on middle circ ID %u on chan ID "
  2684. U64_FORMAT "; killing the circuit.",
  2685. hard_max_middle_cells,
  2686. (direction == CELL_DIRECTION_OUT) ? "n" : "p",
  2687. (direction == CELL_DIRECTION_OUT) ?
  2688. circ->n_circ_id : orcirc->p_circ_id,
  2689. U64_PRINTF_ARG(
  2690. (direction == CELL_DIRECTION_OUT) ?
  2691. circ->n_chan->global_identifier :
  2692. orcirc->p_chan->global_identifier));
  2693. circuit_mark_for_close(circ, END_CIRC_REASON_RESOURCELIMIT);
  2694. return;
  2695. } else if ((unsigned)queue->n + 1 == orcirc->max_middle_cells) {
  2696. /* Only use ==, not >= for this test so we don't spam the log */
  2697. log_warn(LD_CIRC,
  2698. "While trying to queue a cell, reached the soft cap of %u "
  2699. "in the %s direction on middle circ ID %u "
  2700. "on chan ID " U64_FORMAT ".",
  2701. orcirc->max_middle_cells,
  2702. (direction == CELL_DIRECTION_OUT) ? "n" : "p",
  2703. (direction == CELL_DIRECTION_OUT) ?
  2704. circ->n_circ_id : orcirc->p_circ_id,
  2705. U64_PRINTF_ARG(
  2706. (direction == CELL_DIRECTION_OUT) ?
  2707. circ->n_chan->global_identifier :
  2708. orcirc->p_chan->global_identifier));
  2709. }
  2710. }
  2711. }
  2712. }
  2713. #endif
  2714. cell_queue_append_packed_copy(circ, queue, exitward, cell,
  2715. chan->wide_circ_ids, 1);
  2716. if (PREDICT_UNLIKELY(cell_queues_check_size())) {
  2717. /* We ran the OOM handler */
  2718. if (circ->marked_for_close)
  2719. return;
  2720. }
  2721. /* If we have too many cells on the circuit, we should stop reading from
  2722. * the edge streams for a while. */
  2723. if (!streams_blocked && queue->n >= CELL_QUEUE_HIGHWATER_SIZE)
  2724. set_streams_blocked_on_circ(circ, chan, 1, 0); /* block streams */
  2725. if (streams_blocked && fromstream) {
  2726. /* This edge connection is apparently not blocked; block it. */
  2727. set_streams_blocked_on_circ(circ, chan, 1, fromstream);
  2728. }
  2729. update_circuit_on_cmux(circ, direction);
  2730. if (queue->n == 1) {
  2731. /* This was the first cell added to the queue. We just made this
  2732. * circuit active. */
  2733. log_debug(LD_GENERAL, "Made a circuit active.");
  2734. }
  2735. /* New way: mark this as having waiting cells for the scheduler */
  2736. scheduler_channel_has_waiting_cells(chan);
  2737. }
  2738. /** Append an encoded value of <b>addr</b> to <b>payload_out</b>, which must
  2739. * have at least 18 bytes of free space. The encoding is, as specified in
  2740. * tor-spec.txt:
  2741. * RESOLVED_TYPE_IPV4 or RESOLVED_TYPE_IPV6 [1 byte]
  2742. * LENGTH [1 byte]
  2743. * ADDRESS [length bytes]
  2744. * Return the number of bytes added, or -1 on error */
  2745. int
  2746. append_address_to_payload(uint8_t *payload_out, const tor_addr_t *addr)
  2747. {
  2748. uint32_t a;
  2749. switch (tor_addr_family(addr)) {
  2750. case AF_INET:
  2751. payload_out[0] = RESOLVED_TYPE_IPV4;
  2752. payload_out[1] = 4;
  2753. a = tor_addr_to_ipv4n(addr);
  2754. memcpy(payload_out+2, &a, 4);
  2755. return 6;
  2756. case AF_INET6:
  2757. payload_out[0] = RESOLVED_TYPE_IPV6;
  2758. payload_out[1] = 16;
  2759. memcpy(payload_out+2, tor_addr_to_in6_addr8(addr), 16);
  2760. return 18;
  2761. case AF_UNSPEC:
  2762. default:
  2763. return -1;
  2764. }
  2765. }
  2766. /** Given <b>payload_len</b> bytes at <b>payload</b>, starting with an address
  2767. * encoded as by append_address_to_payload(), try to decode the address into
  2768. * *<b>addr_out</b>. Return the next byte in the payload after the address on
  2769. * success, or NULL on failure. */
  2770. const uint8_t *
  2771. decode_address_from_payload(tor_addr_t *addr_out, const uint8_t *payload,
  2772. int payload_len)
  2773. {
  2774. if (payload_len < 2)
  2775. return NULL;
  2776. if (payload_len < 2+payload[1])
  2777. return NULL;
  2778. switch (payload[0]) {
  2779. case RESOLVED_TYPE_IPV4:
  2780. if (payload[1] != 4)
  2781. return NULL;
  2782. tor_addr_from_ipv4n(addr_out, get_uint32(payload+2));
  2783. break;
  2784. case RESOLVED_TYPE_IPV6:
  2785. if (payload[1] != 16)
  2786. return NULL;
  2787. tor_addr_from_ipv6_bytes(addr_out, (char*)(payload+2));
  2788. break;
  2789. default:
  2790. tor_addr_make_unspec(addr_out);
  2791. break;
  2792. }
  2793. return payload + 2 + payload[1];
  2794. }
  2795. /** Remove all the cells queued on <b>circ</b> for <b>chan</b>. */
  2796. void
  2797. circuit_clear_cell_queue(circuit_t *circ, channel_t *chan)
  2798. {
  2799. cell_queue_t *queue;
  2800. cell_direction_t direction;
  2801. if (circ->n_chan == chan) {
  2802. queue = &circ->n_chan_cells;
  2803. direction = CELL_DIRECTION_OUT;
  2804. } else {
  2805. or_circuit_t *orcirc = TO_OR_CIRCUIT(circ);
  2806. tor_assert(orcirc->p_chan == chan);
  2807. queue = &orcirc->p_chan_cells;
  2808. direction = CELL_DIRECTION_IN;
  2809. }
  2810. /* Clear the queue */
  2811. cell_queue_clear(queue);
  2812. /* Update the cell counter in the cmux */
  2813. if (chan->cmux && circuitmux_is_circuit_attached(chan->cmux, circ))
  2814. update_circuit_on_cmux(circ, direction);
  2815. }
  2816. /** Fail with an assert if the circuit mux on chan is corrupt
  2817. */
  2818. void
  2819. assert_circuit_mux_okay(channel_t *chan)
  2820. {
  2821. tor_assert(chan);
  2822. tor_assert(chan->cmux);
  2823. circuitmux_assert_okay(chan->cmux);
  2824. }
  2825. /** Return 1 if we shouldn't restart reading on this circuit, even if
  2826. * we get a SENDME. Else return 0.
  2827. */
  2828. static int
  2829. circuit_queue_streams_are_blocked(circuit_t *circ)
  2830. {
  2831. if (CIRCUIT_IS_ORIGIN(circ)) {
  2832. return circ->streams_blocked_on_n_chan;
  2833. } else {
  2834. return circ->streams_blocked_on_p_chan;
  2835. }
  2836. }