relay.c 94 KB

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