relay.c 92 KB

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