relay.c 104 KB

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