relay.c 86 KB

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