relay.c 107 KB

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