relay.c 104 KB

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